diff options
Diffstat (limited to 'next-lib/src')
| -rw-r--r-- | next-lib/src/parse/oald/src/README | 12 | ||||
| -rw-r--r-- | next-lib/src/parse/oald/src/asc2lex | 320 | ||||
| -rw-r--r-- | next-lib/src/parse/oald/src/ascii_0710-1.txt | 70648 | ||||
| -rw-r--r-- | next-lib/src/parse/oald/src/ascii_0710-2.txt | 1662 | ||||
| -rw-r--r-- | next-lib/src/parse/oald/src/lexicon2.pl | 42757 |
5 files changed, 115399 insertions, 0 deletions
diff --git a/next-lib/src/parse/oald/src/README b/next-lib/src/parse/oald/src/README new file mode 100644 index 000000000..fd1e79cee --- /dev/null +++ b/next-lib/src/parse/oald/src/README @@ -0,0 +1,12 @@ +This directory contains the Oxford Advanced Learner's Dictionary of Current English +(expanded computer-usable version), available from the Oxford Text Archive (http://ota.ahds.ac.uk). + +It has a flat structure but contains part-of-speech, verb subcategorisation & pronunciation info. + +Files: +ascii_0710-1.txt the original plain ASCII version of the OALD +ascii_0710-2.txt the information to go with it +asc2lex a Perl script to process ASCII -> Prolog +lexicon2.pl the resulting Prolog version, hand-corrected for irregulars etc. + +Matthew Purver, Jan 2001 diff --git a/next-lib/src/parse/oald/src/asc2lex b/next-lib/src/parse/oald/src/asc2lex new file mode 100644 index 000000000..1bbcabf2f --- /dev/null +++ b/next-lib/src/parse/oald/src/asc2lex @@ -0,0 +1,320 @@ +#! /usr/bin/perl +# +# Perl script to process OALD machine-readable ASCII file +# into a Prolog-readable lexicon usable by SHARDS +# +# Usage: ./asc2lex < ascii_0710-1.txt [> OUTPUT.PL] +# +# Matthew Purver, 11/2001 + +# print a nice comment at the top +print "% Prolog lexicon for SHARDS, from OALD machine-readable dictionary\n"; +print "% Produced by asc2lex, Matthew Purver 11/2001\n\n"; + +# skip header section +while ( <STDIN> ) { + last if /<\/TEIHEADER>/; +} + +# read a line from stdin +while ( $line = <STDIN> ) { + + # remove SGML tags + $line =~ s/<[^<>]+>//g; + + # split line into fields according to spec (line may be empty now) + if ( $line =~ /^(.{23}).{23}(.{23}).{1}(.{58})$/ ) { + + # trim white space + for ( ( $word, $pos, $cat ) = ( $1, $2, $3 ) ) { + s/\s*$//; + } + + # make word lower-case atomic string + $word =~ s/\'/\\\'/g; # ' -> \' + $word =~ s/\"/\\\"/g; # " -> \" + $word =~ tr/A-Z/a-z/; # lower case + + # get PoS & subcat info + @pos = split( /,/, $pos ); + $cat =~ s/,/\',\'/g; + ( $cat = "\'$cat\'" ) unless ( $cat eq '' ); + + # set up Prolog-style string & put into array + foreach ( @pos ) { + ( $pcode, $infl, $freq )=split(//); + # for verbs, get inflected forms + if ( $pcode =~ /^[GHIJ]/ ) { + $pos = 'verb'; + $pcode =~ s/^G/unknown/; + $pcode =~ s/^H/tran/; + $pcode =~ s/^I/intran/; + $pcode =~ s/^J/_/; + # if this is a root form, work out the inflected forms + if ( $infl =~ /^\d/ ) { + if ( $infl == 0 ) { + ( $vbz = $word ) =~ s/$/s/; + ( $vbg = $word ) =~ s/$/ing/; + ( $vbd = $word ) =~ s/$/ed/; + } + elsif ( $infl == 1 ) { + ( $vbz = $word ) =~ s/$/es/; + ( $vbg = $word ) =~ s/$/ing/; + ( $vbd = $word ) =~ s/$/ed/; + } + elsif ( $infl == 2 ) { + ( $vbz = $word ) =~ s/e$/es/; + ( $vbg = $word ) =~ s/e$/ing/; + ( $vbd = $word ) =~ s/e$/ed/; + } + elsif ( $infl == 3 ) { + ( $vbz = $word ) =~ s/y$/ies/; + ( $vbg = $word ) =~ s/y$/ying/; + ( $vbd = $word ) =~ s/y$/ied/; + } + elsif ( $infl == 4 ) { + ( $vbz = $word ) =~ s/$/s/; + ( $vbg = $word ) =~ s/(\w)$/$1$1ing/; + ( $vbd = $word ) =~ s/(\w)$/$1$1ed/; + } + elsif ( $infl == 5 ) { + # for irregulars, just mark as such for now, we'll guess later + $vbz = 'IRREG'; + $vbg = 'IRREG'; + $vbd = 'IRREG'; + } + # add the full spec to @verb array + push( @verb, + "$pos( \'$word\', \'$vbz\', \'$vbg\', \'$vbd\', \'$vbd\', $pcode, [$cat] ).\n" ); + } + # if this is an inflected form, save for guessing irregulars later + elsif ( $infl =~ /^a/ ) { + push( @vbz, $word ); + } + elsif ( $infl =~ /^b/ ) { + push( @vbg, $word ); + } + elsif ( $infl =~ /^c/ ) { + push( @vbd, $word ); + } + elsif ( $infl =~ /^d/ ) { + push( @vbn, $word ); + } + } + # for nouns, get plural form + elsif( $pcode =~ /^[KLMNY]/ ) { + $pos = 'noun'; + $pcode =~ s/^K/count/; + $pcode =~ s/^L/mass/; + $pcode =~ s/^M/both/; + $pcode =~ s/^N/proper/; + if ( $pcode =~ /^Y/ ) { + $pcode = 'count' if $infl =~ /^[>\)\]]/; + $pcode = 'mass' if $infl =~ /^\}/; + $pcode = 'proper' if $infl =~ /^[:=~]/; + } + # if this is a singular form, work out plural form + unless ( $infl =~ /^j/ ) { + $pl = '-'; + if ( $infl == 6 ) { + ( $pl = $word ) =~ s/$/s/; + } + elsif ( $infl == 7 ) { + ( $pl = $word ) =~ s/$/es/; + } + elsif ( $infl == 8 ) { + ( $pl = $word ) =~ s/y$/ies/; + } + elsif ( $infl =~ /^[9k\]]/ ) { + $pl = $word; + } + elsif ( $infl =~ /^i/ ) { + # for irregulars, let's just make a guess and mark with '*' + # this could be done better, as for verbs, but I can't be bothered now + $pl = $word; + ( $pl =~ s/^((wo)?m)an/$1en\*/ ) or + ( $pl =~ s/man(-|$)/men$1\*/ ) or + ( $pl =~ s/-in-law/s-in-law\*/ ) or + ( $pl =~ s/um$/a\*/ ) or + ( $pl =~ s/us$/i\*/ ) or + ( $pl =~ s/a$/ae\*/ ) or + ( $pl =~ s/on$/a\*/ ) or + ( $pl =~ s/is$/es\*/ ) or + ( $pl =~ s/o$/i\*/ ) or + ( $pl =~ s/child$/children\*/ ) or + ( $pl =~ s/oot$/eet\*/ ) or + ( $pl =~ s/ooth$/eeth\*/ ) or + ( $pl =~ s/([lm])ouse$/$1ice\*/ ) or + ( $pl =~ s/f(e)?$/ves\*/ ) or + ( $pl =~ s/[ei]x$/ices\*/ ) or + ( $pl =~ s/eau$/eaux\*/ ) or + ( $pl = 'IRREG' ); + } + # if plural-only, swap root form & plural + elsif ( $infl =~ /^\)/ ) { + $pl = $word; + $word = '-'; + } + # and add full spec to @noun array + ( $infl =~ s/^[:l]/per/ ) or ( $infl =~ s/^[mn]/loc/ ) or ( $infl = '_' ); + push( @noun, "$pos( \'$word\', \'$pl\', $pcode, $infl ).\n" ) + } + } + # for adjectives, get comparative & superlative forms + elsif( $pcode =~ /^O/ ) { + $pos = 'adj'; + # if this is root form, work out inflected forms + unless ( $infl =~ /^[rs]/ ) { + if ( $infl =~ /^[Apqt]/ ) { + $comp = $sup = '-'; + } + elsif ( $infl =~ /^B/ ) { + ( $comp = $word ) =~ s/$/r/; + ( $sup = $word ) =~ s/$/st/; + } + elsif ( $infl =~ /^C/ ) { + ( $comp = $word ) =~ s/$/er/; + ( $sup = $word ) =~ s/$/est/; + } + elsif ( $infl =~ /^D/ ) { + ( $comp = $word ) =~ s/y$/ier/; + ( $sup = $word ) =~ s/y$/iest/; + } + elsif ( $infl =~ /^E/ ) { + # for irregulars, let's just have a guess and mark with '*' + # (there aren't very many of these) + ( $comp = $word ) =~ s/(\w)$/$1$1er\*/; + ( $sup = $word ) =~ s/(\w)$/$1$1est\*/; + } + $infl =~ s/^[ABCDE]/normal/; + $infl =~ s/^p/pred/; + $infl =~ s/^q/attr/; + $infl =~ s/^t/affix/; + # and add full spec to @adj array + push( @adj, "$pos( \'$word\', \'$comp\', \'$sup\', $infl ).\n" ); + } + } + # for adverbs, just add all info to @adv array + elsif( $pcode =~ /^P/ ) { + $pos = 'adv'; + $infl =~ s/^[u\+]/normal/; + $infl =~ s/^w/whrel/; + $infl =~ s/^v/whq/; + push( @adv, "$pos( \'$word\', $infl ).\n" ); + } + # for pronouns, work out some case/person info + elsif( $pcode =~ s/^Q/_/ ) { + $pos = 'pron'; + $infl =~ s/^x/normal/; + $infl =~ s/^y/whq/; + $infl =~ s/^z/whrel/; + $class = '_'; + # reflexive pronouns + if ( ( $word =~ /self$/ ) or + ( $word =~ /selves$/ ) ) { + $pcode = 'acc'; + } + # accusative personal pronouns + if ( ( $word =~ /^him/ ) or + ( $word =~ /^her/ ) or + ( $word =~ /^them/ ) or + ( $word eq 'us' ) or + ( $word eq 'thee' ) or + ( $word eq 'me' ) ) { + $pcode = 'acc'; + $class = 'per'; + } + # nominative personal pronouns + if ( ( $word eq 'he' ) or + ( $word eq 'she' ) or + ( $word eq 'they' ) or + ( $word eq 'we' ) or + ( $word eq 'thou' ) or + ( $word eq 'i' ) ) { + $pcode = 'nom'; + $class = 'per'; + } + # other personal pronouns + if ( ( $word =~ /.+one/ ) or + ( $word =~ /one.+/ ) or + ( $word =~ /body/ ) or + ( $word =~ /^you/ ) or + ( $word =~ /^who/ ) ) { + $class = 'per'; + } + # non-personal pronouns + if ( $word =~ /thing/ ) { + $class = 'nper'; + } + # otherwise case/person info will be '_' (anon variable) + # add full spec to @pron array + push( @pron, "$pos( \'$word\', $pcode, $infl, $class ).\n" ); + } + # for determiners, leave anon variable as placeholder for semantics + elsif( $pcode =~ /^[RS]/ ) { + $pos = 'det'; + $pcode =~ s/^R/def/; + $pcode =~ s/^S/indef/; + push( @det, "$pos( \'$word\', $pcode, _ ).\n" ); + } + # for prepositions - nothing to say + elsif( $pcode =~ s/^T/prep/ ) { + $pos = 'prep'; + push( @prep, "$pos( \'$word\', $pcode ).\n" ); + } + # for conjunctions - nothing to say + elsif( $pcode =~ s/^V/conj/ ) { + $pos = 'conj'; + push( @conj, "$pos( \'$word\', $pcode ).\n" ); + } + # for miscellaneous, leave '-' as placeholder for illocutionary info + elsif( $pcode =~ /^[UWXZ]/ ) { + $pos = 'misc'; + push( @prefix, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^U/prefix/ ); + push( @interj, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^W/interj/ ); + push( @partcl, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^X/partcl/ ); + push( @unknown, "$pos( \'$word\', $pcode, '-' ).\n" ) if ( $pcode =~ s/^Z/unknown/ ); + } + } + } +} + +# now have a guess at irregular verb forms (marking the best guess with '*') +foreach $verb ( @verb ) { + if ( $verb =~ /verb\( \'([^\']+)\', \'IRREG/ ) { + $word = $1; + $vbz = findbest( $word, @vbz ); + $vbg = findbest( $word, @vbg ); + $vbd = findbest( $word, @vbd ); + $vbn = findbest( $word, @vbn ); + $verb =~ s/($word\', \')IRREG(\', \')IRREG(\', \')IRREG(\', \')IRREG/\*$1$vbz$2$vbg$3$vbd$4$vbn/; + } +} + +# now print everything out (so we can group PoSs together) +print @verb, "\n", @noun, "\n", @adj, "\n", @adv; +print "\n", @pron, "\n", @det, "\n", @prep, "\n", @conj; +print "\n", @prefix, "\n", @interj, "\n", @partcl, "\n", @unknown; + + +# find closest string match +# similarity measure is just the length of identical prefix +# prefer shorter strings in the case of equal similarity +sub findbest +{ + my ( $word, @array ) = @_; + + $bestlen = 0; + foreach $test ( @array ) { + if ( ( substr( $word, 0, $bestlen-1 ) eq substr( $test, 0, $bestlen-1 ) ) && + ( length( $test ) < length( $best ) ) ) { + $best = $test; + } + while ( ( substr( $word, 0, $bestlen ) eq substr( $test, 0, $bestlen ) ) && + ( $bestlen <= length( $test ) ) ) { + $bestlen++; + $best = $test; + } + } + return $best; +} diff --git a/next-lib/src/parse/oald/src/ascii_0710-1.txt b/next-lib/src/parse/oald/src/ascii_0710-1.txt new file mode 100644 index 000000000..ac11534c1 --- /dev/null +++ b/next-lib/src/parse/oald/src/ascii_0710-1.txt @@ -0,0 +1,70648 @@ +<!DOCTYPE tei.2 PUBLIC "-//TEI//DTD TEI Lite 1.0//EN"><TEI.2><TEIHEADER TYPE='TEXT' DATE.CREATED='1998-01-12'><FILEDESC><TITLESTMT><TITLE TYPE="main"> Oxford advanced learner's dictionary of current English : expanded "computer usable" version / compiled by Roger Mitton</TITLE><TITLE TYPE=SUB>A machine readable edition</TITLE><RESPSTMT><RESP>unspecified</RESP><NAME>Hornby, Albert Sydney</NAME></RESPSTMT><RESPSTMT><RESP>unspecified</RESP><NAME>Cowie, Anthony Paul</NAME></RESPSTMT><RESPSTMT><RESP>unspecified</RESP><NAME>Lewis, John Windsor, 1926-</NAME></RESPSTMT><RESPSTMT><RESP>com (Compiler)</RESP><NAME>Mitton, Roger</NAME></RESPSTMT></TITLESTMT><EXTENT><SEG TYPE="designation">Text data</SEG><SEG TYPE=size>greater than 5 Mb</SEG><SEG TYPE=format> Contains markup characters</SEG><SEG TYPE="location">offline</SEG></EXTENT><PUBLICATIONSTMT><authority><!-- Not publicly available --></authority><DISTRIBUTOR><NAME KEY="ota" TYPE="organisation">Oxford Text Archive</NAME><NAME TYPE="place">Oxford</NAME><ADDRESS><ADDRLINE><NAME KEY="oucs" TYPE="organisation">Oxford University Computing Services</NAME></ADDRLINE><ADDRLINE>13 Banbury Road</ADDRLINE><ADDRLINE>Oxford</ADDRLINE><ADDRLINE>OX2 6NN</ADDRLINE><ADDRLINE><NAME TYPE="email">info@ota.ahds.ac.uk</NAME></ADDRLINE></ADDRESS></DISTRIBUTOR><IDNO TYPE="ota">dict0710</IDNO><AVAILABILITY STATUS='FREE'><P>Freely available for non-commercial use provided that this header is included in its entirety with any copy distributed</P></AVAILABILITY></PUBLICATIONSTMT><NOTESSTMT><NOTE TYPE="creationdate">[198-?]</NOTE><NOTE TYPE="general">In English</NOTE><NOTE TYPE="general">Title from title page of source text</NOTE><NOTE TYPE="general">"[Entries have] all inflected forms included in full - but ... no definitions or examples"--Compiler, in OTA records</NOTE><NOTE TYPE="publrel">Publication based on this text: Literary and Linguistic Computing. -- Vol. 1, No. 4, 1986.</NOTE></NOTESSTMT><SOURCEDESC><BIBL> Transcribed from: Oxford advanced learner's dictionary of current English / A.S. Hornby ; with the assistance of A.P. Cowie [and] J. Windsor Lewis. -- 3rd. ed. -- London : Oxford University Press, 1974.</BIBL></SOURCEDESC></FILEDESC><ENCODINGDESC><EDITORIALDECL><P>Editorial practices unknown</P></EDITORIALDECL><REFSDECL><P>Reference system unknown</P></REFSDECL><CLASSDECL><TAXONOMY ID=OTASH><BIBL>Oxford Text Archive Subject Headings</BIBL></TAXONOMY><TAXONOMY ID=LCSH><BIBL>Library of Congress Subject Headings</BIBL></TAXONOMY></CLASSDECL></ENCODINGDESC><PROFILEDESC><CREATION><DATE>Unspecified</DATE></CREATION><LANGUSAGE><LANGUAGE USAGE=100 ID="eng">English</LANGUAGE></LANGUSAGE><TEXTCLASS><KEYWORDS SCHEME="otash"><TERM TYPE="genre">Dictionaries</TERM></KEYWORDS><KEYWORDS SCHEME='LCSH'><TERM TYPE=topical>English language -- Dictionaries</TERM><TERM TYPE=genre>Dictionaries -- 20th century</TERM></KEYWORDS></TEXTCLASS></PROFILEDESC><REVISIONDESC><CHANGE><DATE VALUE='1998-01-14'>14 Jan 1998</DATE><RESPSTMT><NAME>Burnard, Lou</NAME><RESP>cvt (converter)</RESP></RESPSTMT><ITEM>Header auto-generated from TOMES</ITEM></CHANGE><CHANGE><DATE>1990-1991</DATE><RESPSTMT><NAME>Day, Michael</NAME><RESP>edt (Editor)</RESP></RESPSTMT><ITEM>The following information was at the beginning of a MARC record used to to generate this TEI header, and may contain useful information:"computer usable" version</ITEM></CHANGE></REVISIONDESC></TEIHEADER> +<TEXT>'em @m Qx$ 1 +'neath niT T-$ 1 +'shun SVn W-$ 1 +'twas tw0z Gf$ 1 +'tween twin Pu$,T-$ 1 +'tween-decks 'twin-deks Pu$ 2 +'twere tw3R Gf$ 1 +'twill twIl Gf$ 1 +'twixt twIkst T-$ 1 +'twould twUd Gf$ 1 +'un @n Qx$ 1 +A eI Ki$ 1 +A's eIz Kj$ 1 +A-bomb 'eI-b0m K6$ 2 +A-bombs 'eI-b0mz Kj$ 2 +A-level 'eI-levl K6% 3 +A-levels 'eI-levlz Kj% 3 +AA ,eI'eI Y>% 2 +ABC ,eI,bi'si Y>% 3 +ABCs ,eI,bi'siz Y)$ 3 +AD ,eI'di Y~% 2 +AGM ,eIdZI'em Y>% 2 +AIDS eIdz Y}% 1 +AWOL 'eIw0l Y~% 2 +Aachen 'Ak@n Nn$ 2 +Aarhus 'Ahus Nn$ 2 +Abe eIb Nl$ 1 +Abercarn '&b@kAn Nn$ 3 +Aberdare ,&b@'de@R Nn$ 3 +Aberdeen ,&b@'din Nn% 3 +Abergavenny ,&b@g@'venI Nn% 5 +Abergele ,&b@'gelI Nn$ 4 +Abertillery ,&b@tI'le@rI Nn% 5 +Aberystwyth ,&b@'rIstwIT Nn% 4 +Abingdon '&bINd@n Nn% 3 +Abo '&b@U K6$ 2 +Aborigine ,&b@'rIdZ@nI K6% 5 +Aborigines ,&b@'rIdZ@nIz Kj% 5 +Abos '&b@Uz Kj$ 2 +Abraham 'eIbr@h&m Nl% 3 +Accra @'krA Nn% 2 +Accrington '&krINt@n Nn% 3 +Achilles @'kIliz Nl% 3 +Ada 'eId@ Nl% 2 +Adam '&d@m Nl% 2 +Addis Ababa ,&dIs '&b@b@ Nn% 5 +Addressograph @'dres@UgrAf K6$ 4 +Addressographs @'dres@UgrAfs Kj$ 4 +Adelaide '&d@leId Nn% 3 +Adrian 'eIdrI@n Nl% 3 +Adventist '&dv@ntIst K6$ 3 +Adventists '&dv@ntIsts Kj$ 3 +Afghan '&fg&n M6%,OA% 2 +Afghanistan &f,g&nI'stAn Nm% 4 +Afghanistani &f,g&nI'stAnI K6$,OA$ 5 +Afghanistanis &f,g&nI'stAnIz Kj$ 5 +Afghans '&fg&nz Mj% 2 +Africa '&frIk@ Nm% 3 +African '&frIk@n K6%,OA% 3 +Africans '&frIk@nz Kj% 3 +Afrikaans ,&frI'kAns L@% 3 +Afrikaner ,&frI'kAn@R K6%,OA% 4 +Afrikaners ,&frI'kAn@z Kj% 4 +Afro- ,&fr@U- U-% 2 +Afro-American ,&fr@U-@'merIk@n K6% 6 +Afro-Americans ,&fr@U-@'merIk@nz Kj% 6 +Afro-Asian ,&fr@U-'eISn OA% 4 +Afro-wig ,&fr@U-'wIg K6$ 3 +Afro-wigs ,&fr@U-'wIgz Kj$ 3 +Agatha '&g@T@ Nl% 3 +Aggie '&gI Nl$ 2 +Agnes '&gnIs Nl% 2 +Agra 'Agr@ Nn$ 2 +Ahmedabad A'med@b&d Nn$ 4 +Airdrie 'e@drI Nn% 2 +Aireborough 'e@b@r@ Nn$ 3 +Airedale 'e@deIl K6$ 2 +Airedales 'e@deIlz Kj$ 2 +Akron '&kr0n Nn$ 2 +Al &l Nl% 1 +Alabama ,&l@'b&m@ Nm% 4 +Alan '&l@n Nl% 2 +Alaska @'l&sk@ Nm% 3 +Albania &l'beInI@ Nm% 4 +Albanian &l'beInI@n M6%,OA% 4 +Albanians &l'beInI@nz Mj% 4 +Albert '&lb@t Nl% 2 +Alberta &l'b3t@ Nm% 3 +Aldershot 'Old@S0t Nn% 3 +Aleppo @'lep@U Nn$ 3 +Alessandria ,&lI's&ndrI@ Nn$ 5 +Alex '&lIks Nl% 2 +Alexander ,&lIg'zAnd@R Nl% 4 +Alexandra ,&lIg'zAndr@ Nl% 4 +Alexandria ,&lIg'zAndrI@ Nn% 5 +Alf &lf Nl% 1 +Alfred '&lfrId Nl% 2 +Alfreton 'OlfrIt@n Nn$ 3 +Alger '&ldZ@R Nn$ 2 +Algeria &l'dZI@rI@ Nm% 4 +Algerian &l'dZI@rI@n K6%,OA% 4 +Algerians &l'dZI@rI@nz Kj% 4 +Ali '&lI Nl% 2 +Alicante &lI'k&ntI Nn$ 4 +Alice '&lIs Nl% 2 +Alison '&lIsn Nl% 3 +All right ,Ol 'raIt W-% 2 +Allah '&l@ No% 2 +Allahabad ,&l@h@'bAd Nn$ 4 +Allan '&l@n Nl% 2 +Allen '&l@n Nl% 2 +Alloa '&l@U@ Nn$ 3 +Alma Mater ,&lm@ 'mAt@R K6$ 4 +Alma Maters ,&lm@ 'mAt@z Kj$ 4 +Alma-Ata ,&lm@-'At@ Nn$ 4 +Almeria ,&lm@'rI@ Nn$ 4 +Alnwick '&nIk Nn$ 2 +Alright ,Ol'raIt W-% 2 +Alsatian &l'seISn K6% 3 +Alsatians &l'seISnz Kj% 3 +Alton 'Olt@n Nn% 2 +Altrincham 'OltrIN@m Nn% 3 +Alvechurch 'OlvtS3tS Nn$ 2 +Amanda @'m&nd@ Nl% 3 +Amazon '&m@z@n K6% 3 +Amazons '&m@z@nz Kj% 3 +America @'merIk@ Nm% 4 +American @'merIk@n K6*,OA* 4 +Americanism @'merIk@nIz@m M6% 6 +Americanisms @'merIk@nIz@mz Mj% 6 +Americans @'merIk@nz Kj% 4 +Amesbury 'eImzb@rI Nn$ 3 +Amharic &m'h&rIk L@% 3 +Amiens '&mI@nz Nn% 3 +Ammanford '&m@nf@d Nn$ 3 +Amsterdam ,&mst@'d&m Nn% 3 +Amy 'eImI Nl% 2 +Ancona &n'k@Un@ Nn$ 3 +Andorra &n'dOr@ Nm% 3 +Andorran &n'dOr@n K6%,OA% 3 +Andorrans &n'dOr@nz Kj% 3 +Andover '&nd@Uv@R Nn% 3 +Andrew '&ndru Nl% 2 +Andy '&ndI Nl% 2 +Angela '&ndZ@l@ Nl% 3 +Angers &n'Ze@z Nn$ 2 +Angie '&ndZI Nl% 2 +Anglican '&NglIk@n K6%,OA% 3 +Anglicans '&NglIk@nz Kj% 3 +Anglo- ,&Ngl@U- U-% 2 +Anglo-Catholic ,&Ngl@U-'k&TlIk K6%,OA% 4 +Anglo-Catholics ,&Ngl@U-'k&TlIks Kj% 4 +Anglo-Indian ,&Ngl@U-'IndI@n K6%,OA% 5 +Anglo-Indians ,&Ngl@U-'IndI@nz Kj% 5 +Anglo-Saxon ,&Ngl@U-'s&ks@n K6%,OA% 4 +Anglo-Saxons ,&Ngl@U-'s&ks@nz Kj% 4 +Anglomania ,&Ngl@U'meInI@ L@$ 5 +Anglophil '&Ngl@UfIl K6$ 3 +Anglophile '&Ngl@UfaIl K6% 3 +Anglophiles '&Ngl@UfaIlz Kj% 3 +Anglophils '&Ngl@UfIlz Kj$ 3 +Anglophobe '&Ngl@Uf@Ub K6$ 3 +Anglophobes '&Ngl@Uf@Ubz Kj$ 3 +Anglophobia ,&Ngl@U'f@UbI@ L@$ 5 +Angola &N'g@Ul@ Nm% 3 +Angolan &N'g@Ul@n K6%,OA% 3 +Angolans &N'g@Ul@nz Kj% 3 +Anguilla &N'gwIl@ Nm$ 3 +Anguillan &N'gwIl@n K6$,OA$ 3 +Anguillans &N'gwIl@nz Kj$ 3 +Angus '&Ng@s Nl% 2 +Anita @'nit@ Nl% 3 +Ankara '&Nk@r@ Nn% 3 +Ann &n Nl% 1 +Annabel '&n@bel Nl% 3 +Annan '&n@n Nn$ 2 +Anne &n Nl% 1 +Annfield '&nfild Nn$ 2 +Annfield Plain ,&nfild 'pleIn Nn$ 3 +Annie '&nI Nl% 2 +Anno Domini ,&n@U 'd0mInaI Z-% 5 +Anon @'n0n Y=% 2 +Anshan '&nSn Nn$ 2 +Anthea '&nTI@ Nl% 3 +Anthony '&nt@nI Nl% 3 +Antigua &n'tig@ Nm% 3 +Antiguan &n'tig@n K6%,OA% 3 +Antiguans &n'tig@nz Kj% 3 +Antony '&nt@nI Nl% 3 +Antrim '&ntrIm Nm% 2 +Antwerp '&ntw3p Nn% 2 +Apeldoorn '&pldOn Nn$ 3 +Apocrypha @'p0krIf@ Lk% 4 +Apr 'eIprIl Y=% 2 +April 'eIpr@l K6%,Nl% 2 +Aprils 'eIpr@lz Kj$ 2 +Aquarius @'kwe@rI@s No% 4 +Arab '&r@b K6% 2 +Arabian @'reIbI@n K6%,OA% 4 +Arabians @'reIbI@nz Kj% 4 +Arabic '&r@bIk L@%,OA% 3 +Arabist '&r@bIst K6$ 3 +Arabists '&r@bIsts Kj$ 3 +Arabs '&r@bz Kj% 2 +Arbroath A'br@UT Nn% 2 +Arcadian A'keIdI@n K6%,OA% 4 +Arcadians A'keIdI@nz Kj% 4 +Ardrossan A'dr0s@n Nn$ 3 +Argentina ,AdZ@n'tin@ Nm% 4 +Argentine 'AdZ@ntaIn Nm% 3 +Argentinian ,AdZ@n'tinI@n K6%,OA% 5 +Argentinians ,AdZ@n'tinI@nz Kj% 5 +Argonaut 'Ag@nOt K6% 3 +Argonauts 'Ag@nOts Kj% 3 +Argus 'Ag@s K7$ 2 +Argus-eyed 'Ag@s-aId OA$ 3 +Arguses 'Ag@sIz Kj$ 3 +Aries 'e@riz No% 2 +Arizona ,&rI'z@Un@ Nm% 4 +Arkansas 'Ak@nsO Nm% 3 +Armadale 'Am@deIl Nn$ 3 +Armageddon ,Am@'gedn No% 4 +Armagh A'mA Nm% 2 +Arnhem 'An@m Nn% 2 +Arnold 'Anld Nl% 2 +Art At Nl% 1 +Arthur 'AT@R Nl% 2 +Artie 'AtI Nl% 2 +Aryan 'e@rI@n K6%,OA% 3 +Aryans 'e@rI@nz Kj% 3 +Ascot '&sk@t Nn% 2 +Ashbourne '&SbOn Nn% 2 +Ashby '&SbI Nn$ 2 +Ashby Woulds ,&SbI 'w@Uldz Nn$ 3 +Ashby de la Zouch ,&SbI d@ l@ 'zuS Nn$ 5 +Ashford '&Sf@d Nn% 2 +Ashington '&SINt@n Nn$ 3 +Ashton-in-Makerfield ,&St@n-In-'meIk@fild Nn$ 6 +Ashton-under-Lyne ,&St@n-Vnd@-'laIn Nn$ 5 +Asian 'eISn K6%,OA% 2 +Asians 'eISnz Kj% 2 +Asiatic ,eISI'&tIk K6%,OA% 4 +Asiatics ,eISI'&tIks Kj% 4 +Askern '&sk@n Nn$ 2 +Aspull '&sp@l Nn$ 2 +Aston '&st@n Nn% 2 +Athenian @'TinI@n K6%,OA% 4 +Athenians @'TinI@nz Kj% 4 +Athens '&TInz Nn% 2 +Atherstone '&T@st@n Nn$ 3 +Athlone &T'l@Un Nn% 2 +Atlanta &t'l&nt@ Nn% 3 +Atlantic @t'l&ntIk No% 3 +Attic '&tIk OA$ 2 +Auckland 'Okl@nd Nm% 2 +Audley 'Odli Nn$ 2 +Audrey 'OdrI Nl% 2 +Aug 'Og@st Y=% 2 +Augsburg 'aUgzb3g Nn$ 2 +August 'Og@st K6%,No% 2 +Augustan O'gVst@n OA% 3 +Augusts 'Og@sts Kj$ 2 +Aussie '0zI K6% 2 +Aussies '0zIz Kj% 2 +Australia 0'streIlI@ Nm% 4 +Australian 0'streIlI@n K6%,OA% 4 +Australians 0'streIlI@nz Kj% 4 +Austria '0strI@ Nm% 3 +Austrian '0strI@n K6%,OA% 3 +Austrians '0strI@nz Kj% 3 +Ave &v Y=% 1 +Aveley 'eIvlI Nn$ 2 +Avignon '&vINj0n Nn% 3 +Avon 'eIv@n Nm% 2 +Aycliffe 'eIklIf Nn$ 2 +Aylesbury 'eIlzb@rI Nn% 3 +Aylesford 'eIlzf@d Nn$ 2 +Ayr e@R Nn% 1 +B bi Ki$ 1 +B Ed ,bi 'ed Y>% 2 +B's biz Kj$ 1 +BA ,bi'eI Y>% 2 +BBC ,bi,bi'si Y>% 3 +BC ,bi'si Y~% 2 +BMA ,bi,em'eI Y>% 3 +BMus ,bi'mVz Y>% 2 +BST ,bi,es'ti Y~% 3 +BSc ,bi,es'si Y>% 3 +BVM ,bi,vi'em Y>% 3 +Babs b&bz Nl% 1 +Backworth 'b&kw@T Nn$ 2 +Bacup 'beIk@p Nn$ 2 +Badajoz 'b&d@h0z Nn$ 3 +Badalona ,b&d@'l@Un@ Nn$ 4 +Baghdad b&g'd&d Nn% 2 +Bahamas b@'hAm@z Nm% 3 +Bahamian b@'hAmI@n K6%,OA% 4 +Bahamians b@'hAmI@nz Kj% 4 +Bahasa b@'hAz@ L@$ 3 +Bahrain bA'reIn Nm% 2 +Bahraini bA'reInI K6$,OA$ 3 +Bahrainis bA'reInIz Kj$ 3 +Bailey 'beIlI No% 2 +Baku 'b&ku Nn$ 2 +Baldock 'bOld0k Nn$ 2 +Baltimore 'bOltImOR Nn% 3 +Banbury 'b&nb@rI Nn% 3 +Bandung 'b&nd@N Nn$ 2 +Bangalore ,b&Ng@'lOR Nn$ 3 +Bangkok b&N'k0k Nn% 2 +Bangladesh ,b&Ngl@'deS Nm% 3 +Bangladeshi ,b&Ngl@'deSI K6%,OA% 4 +Bangladeshis ,b&Ngl@'deSIz Kj% 4 +Bangor 'b&Ng@R Nn% 2 +Bannockburn 'b&n@kb3n Nn% 3 +Bantry 'b&ntrI Nn$ 2 +Bantu b&n'tu K9%,OA% 2 +Bantus b&n'tuz Kj% 2 +Baptist 'b&ptIst K6%,OA% 2 +Baptists 'b&ptIsts Kj% 2 +Baracaldo ,b&r@'k&ld@U Nn$ 4 +Barbadian bA'beIdI@n K6%,OA% 4 +Barbadians bA'beIdI@nz Kj% 4 +Barbados bA'beId@s Nm% 3 +Barbara 'bAbr@ Nl% 2 +Barcelona ,bAsI'l@Un@ Nn% 4 +Bargoed bA'g@UId Nn$ 2 +Bari 'bAri Nn$ 2 +Barking 'bAkIN Nn% 2 +Barnard Castle ,bAn@d 'kAsl Nn% 4 +Barnet 'bAnIt Nn% 2 +Barnoldswick 'bAn@ldzwIk Nn$ 3 +Barnsley 'bAnzlI Nn% 2 +Barnstaple 'bAnst@pl Nn% 3 +Barranquilla ,b&r@n'ki@ Nn$ 4 +Barrhead 'bAhed Nn$ 2 +Barrow-in-Furness ,b&r@U-In-'f3nIs Nn% 5 +Barry 'b&rI Nl% 2 +Bart bAt Nl$,Y:$ 1 +Bartholomew bA'T0l@mju Nl% 4 +Barton-upon-Humber ,bAt@n-@p0n-'hVmb@R Nn$ 6 +Basel 'bAzl Nn% 2 +Basil 'b&zl Nl% 2 +Basildon 'b&zIld@n Nn% 3 +Basingstoke 'beIziNst@Uk Nn% 3 +Bass b&s L@$ 1 +Bath bAT Nn% 1 +Bath-chair 'bAT-tSe@R K6% 2 +Bath-chairs 'bAT-tSe@z Kj% 2 +Bathgate 'bATgeIt Nn$ 2 +Batley 'b&tlI Nn% 2 +Beaconsfield 'bek@nzfild Nn% 3 +Bearsden 'be@zd@n Nn$ 2 +Beatrice 'bI@trIs Nl% 3 +Beaujolais 'b@UZ@leI L@% 3 +Beaumaris b@U'm&rIs Nn% 3 +Bebington 'bebINt@n Nn$ 3 +Beccles 'beklz Nn% 2 +Beddau 'beDaU Nn$ 2 +Bedford 'bedf@d Nn% 2 +Bedfordshire 'bedf@dS@R Nm% 3 +Bedlington 'bedlINt@n Nn$ 3 +Bedouin 'bedUIn K9% 3 +Beduin 'bedUIn K9$ 3 +Bedwas 'bedw0z Nn$ 2 +Beirut ,beI'rut Nn% 2 +Beith biT Nn$ 1 +Belem 'bel@m Nn$ 2 +Belfast 'belfAst Nn% 2 +Belgian 'beldZ@n K6%,OA% 2 +Belgians 'beldZ@nz Kj% 2 +Belgium 'beldZ@m Nm% 2 +Belgrade ,bel'greId Nn% 2 +Belinda b@'lInd@ Nl% 3 +Bella 'bel@ Nl% 2 +Belle bel Nl% 1 +Bellshill 'belzhIl Nn$ 2 +Belo Horizonte ,bel@U h0rI'z0ntI Nn$ 6 +Belper 'belp@R Nn% 2 +Ben ben Nl% 1 +Benedictine ,benI'dIktIn M6%,OA% 4 +Benedictines ,benI'dIktInz Mj% 4 +Bengali beN'gOlI M6%,OA% 3 +Bengalis beN'gOlIz Mj% 3 +Benin be'nIn Nm% 2 +Beninese benI'niz K9%,OA% 3 +Benjamin 'bendZ@mIn Nl% 3 +Benny 'benI Nl% 2 +Benzedrine 'benz@drin K6% 3 +Benzedrines 'benz@drinz Kj$ 3 +Beograd 'beI@Ugr&d Nn$ 3 +Bergamo b3'gAm@U Nn$ 3 +Bergen 'b3g@n Nn% 2 +Berkhamsted 'b3k@mstId Nn% 3 +Berkshire 'bAkS@R Nm% 2 +Berlin b3'lIn Nn% 2 +Bermuda b@'mjud@ Nm% 3 +Bermudan b@'mjud@n K6$,OA$ 3 +Bermudans b@'mjud@nz Kj$ 3 +Bern b3n Nn$ 1 +Bernard 'b3n@d Nl% 2 +Bernie 'b3nI Nl% 2 +Bert b3t Nl% 1 +Bertha 'b3T@ Nl% 2 +Bertie 'b3tI Nl% 2 +Berwick-upon-Tweed ,berIk-@p0n-'twid Nn% 5 +Beryl 'ber@l Nl% 2 +Bess bes Nl% 1 +Bessie 'besI Nl% 2 +Bethune be'Tun Nn$ 2 +Betsy 'betsI Nl% 2 +Betty 'betI Nl% 2 +Beverley 'bev@lI Nn% 3 +Bewdley 'bjudlI Nn$ 2 +Bexhill ,beks'hIl Nn% 2 +Bexley 'bekslI Nn% 2 +Bhutan bu'tAn Nm% 2 +Bhutani bu'tAnI K6$,OA$ 3 +Bhutanis bu'tAnIz Kj$ 3 +Bible 'baIbl K6% 2 +Bibles 'baIblz Kj% 2 +Bicester 'bIst@R Nn% 2 +Biddulph 'bIdVlf Nn$ 2 +Bideford 'bIdIf@d Nn% 3 +Bielefeld 'bil@felt Nn$ 3 +Biggleswade 'bIglzweId Nn% 3 +Bilbao bIl'bA@U Nn% 3 +Bill bIl Nl% 1 +Billericay bIl@'rIkI Nn% 4 +Billington 'bIlINt@n Nn$ 3 +Billy 'bIlI Nl% 2 +Bingley 'bINlI Nn% 2 +Birkenhead 'b3k@nhed Nn% 3 +Birstall 'b3stOl Nn$ 2 +Birtley 'b3tlI Nn$ 2 +Bishop Auckland ,bIS@p 'Okl@nd Nn% 4 +Bishop's Cleeve ,bIS@ps 'kliv Nn$ 3 +Bishop's Stortford ,bIS@p 'stOf@d Nn% 4 +Bishopbriggs 'bIS@pbrIgz Nn$ 3 +Blackburn 'bl&kb3n Nn% 2 +Blackhall 'bl&khOl Nn$ 2 +Blackpool 'bl&kpul Nn% 2 +Blackshirt 'bl&kS3t K6$ 2 +Blackshirts 'bl&kS3ts Kj$ 2 +Blackwood 'bl&kwUd Nn$ 2 +Blaenau-Ffestiniog ,bleIn@-fes'tInI0g Nn% 6 +Blaenavon bleI'n&v@n Nn$ 3 +Blaengwrach bleIN'grAk Nn$ 2 +Blaina 'blaIn@ Nn$ 2 +Blairgowrie ble@'gaUrI Nn$ 3 +Blantyre bl&n'teI@R Nn% 2 +Bldg 'bIldIN Y=% 2 +Bldgs 'bIldINz Y=% 2 +Bletchley 'bletSlI Nn% 2 +Blidworth 'blIdw@T Nn$ 2 +Blighty 'blaItI Ki% 2 +Blvd 'bul@vAd Y>% 3 +Blyth blaI Nn$ 1 +Bo'ness ,b@U'nes Nn$ 2 +Bob b0b Nl% 1 +Bobby 'b0bI Nl% 2 +Boche b0S Kj$,OA$ 1 +Bochum 'b0k@m Nn$ 2 +Bodmin 'b0dmIn Nn% 2 +Boer 'b@U@R K6%,OA% 2 +Boers 'b@U@z Kj% 2 +Bognor 'b0gn@R Nn% 2 +Bognor Regis ,b0gn@ 'ridZIs Nn% 4 +Bogota ,b0g@'tA Nn% 3 +Boldon 'b0ld@n Nn$ 2 +Bolivia b@'lIvI@ Nm% 4 +Bolivian b@'lIvI@n K6%,OA% 4 +Bolivians b@'lIvI@nz Kj% 4 +Bollington 'b0lINt@n Nn$ 3 +Bologna b@'l0nj@ Nn% 3 +Bolshevik 'b0lS@vIk K6% 3 +Bolsheviks 'b0lS@vIks Kj% 3 +Bolsover 'b0ls@Uv@R Nn% 3 +Bolton 'b@Ult@n Nn% 2 +Bolton-le-Sands ,b@Ult@n-lI-'s&ndz Nn% 4 +Bolzano b0l'zAn@U Nn$ 3 +Bombay b0m'beI Nn% 2 +Bonn b0n Nn% 1 +Bonnybridge 'b0nIbrIdZ Nn$ 3 +Bonnyrigg 'b0nIrIg Nn$ 3 +Bootle 'butl Nn% 2 +Bordeaux bO'd@U L@%,Nn% 2 +Borders 'bOd@z Nm% 2 +Bordon 'bOd@n Nn$ 2 +Boris 'b0rIs Nl% 2 +Boston 'b0st@n Nn% 2 +Botswana b0'tswAn@ Nm% 3 +Bottrop 'b0tr@p Nn$ 2 +Bourne bOn Nn$ 1 +Bournemouth 'bOnm@T Nn% 2 +Bow Bells ,b@U 'belz Kj% 2 +Bowburn 'b@Ub@n Nn$ 2 +Boxing Day 'b0ksIN deI K6%,No% 3 +Boxing Days 'b0ksIN deIz Kj$ 3 +Bracknell 'br&kn@l Nn% 2 +Bradford 'br&df@d Nn% 2 +Bradford-on-Avon ,br&df@d-0n-'eIv@n Nn% 5 +Brahmin 'brAmIn K6% 2 +Brahmins 'brAmInz Kj% 2 +Braintree 'breIntri Nn% 2 +Branderburgh 'br&nd@b@r@ Nn$ 4 +Brasilia br@'zIlI@ Nn% 4 +Bratislava ,br&tI'slAv@ Nn% 4 +Braunschweig 'brOnSveIg Nn% 2 +Braunton 'brOnt@n Nn$ 2 +Brazil br@'zIl Nm% 2 +Brazilian br@'zIlI@n K6%,OA% 4 +Brazilians br@'zIlI@nz Kj% 4 +Breaston 'brist@n Nn$ 2 +Brecknock 'brekn0k Nn% 2 +Breda 'brid@ Nn$ 2 +Breedsall 'bridsOl Nn$ 2 +Bremen 'breIm@n Nn% 2 +Bremerhaven 'breIm@hAv@n Nn% 4 +Bren bren K6$ 1 +Bren-gun 'bren-gVn K6% 2 +Bren-guns 'bren-gVnz Kj% 2 +Brenda 'brend@ Nl% 2 +Brens brenz Kj$ 1 +Brent brent Nn% 1 +Brentwood 'brentwUd Nn% 2 +Brescia 'breSI@ Nn$ 3 +Brest brest Nn$ 1 +Brian 'braI@n Nl% 2 +Bricket Wood ,brIkIt 'wUd Nn% 3 +Bridgend brIdZ'end Nn% 2 +Bridget 'brIdZIt Nl% 2 +Bridgnorth 'brIdZnOT Nn% 2 +Bridgwater 'brIdZwOt@R Nn% 3 +Bridlington 'brIdlINt@n Nn% 3 +Bridport 'brIdpOt Nn% 2 +Brig brIg Y:% 1 +Brigadier ,brIg@'dI@R K6% 4 +Brigadiers ,brIg@'dI@z Kj% 4 +Brighouse 'brIghaUs Nn% 2 +Brightlingsea 'braItlINsi Nn% 3 +Brighton 'braItn Nn% 2 +Brisbane 'brIzb@n Nn% 2 +Bristol 'brIstl Nn% 2 +Brit brIt K6% 1 +Britain 'brItn Nm% 2 +Britannic brI't&nIk OA% 3 +British 'brItIS OA% 2 +Britisher 'brItIS@R K6% 3 +Britishers 'brItIS@z Kj% 3 +Briton 'brItn K6%,OA% 2 +Britons 'brItnz Kj% 2 +Brits brIts Kj% 1 +Brixham 'brIks@m Nn% 2 +Brno 'b3n@U Nn% 2 +Bromley 'br0mlI Nn% 2 +Bromsgrove 'br0mzgr@Uv Nn% 2 +Bros br0s Y=% 1 +Broughton 'brOtn Nn$ 2 +Broxburn 'br0ksb3n Nn$ 2 +Bruce brus Nl% 1 +Bruges bruZ Nn% 1 +Brunei 'brunaI Nm% 2 +Bruneian 'brunaI@n K6$,OA$ 3 +Bruneians 'brunaI@nz Kj$ 3 +Brunswick 'brVnzwIk Nm% 2 +Brussels 'brVslz Nn% 2 +Bryan 'braI@n Nl% 2 +Bt bAt Y:% 1 +Bucarest ,bjuk@'rest Nn% 3 +Buckhaven 'bVkheIvn Nn$ 3 +Buckie 'bVkI Nn$ 2 +Buckingham 'bVkIN@m Nn% 3 +Buckinghamshire 'bVkIN@mS@R Nm% 4 +Buckley 'bVklI Nn$ 2 +Bucksburn 'bVksb3n Nn$ 2 +Budapest 'bjud@pest Nn% 3 +Buddhism 'bUdIz@m L@% 3 +Buddhist 'bUdIst K6% 2 +Buddhists 'bUdIsts Kj% 2 +Buenos Aires ,bwen@s 'eI@rIz Nn% 4 +Buffalo 'bVf@l@U Nn% 3 +Bulgaria bVl'ge@rI@ Nm% 4 +Bulgarian bVl'ge@rI@n K6%,OA% 4 +Bulgarians bVl'ge@rI@nz Kj% 4 +Bulkington 'bVlkINtn Nn$ 3 +Bunsen 'bVnsn K6% 2 +Bunsens 'bVnsnz Kj$ 2 +Burberries 'b3b@rIz Kj$ 3 +Burberry 'b3b@rI K8% 3 +Burgess 'b3dZIs Nn% 2 +Burgos 'b3g0s Nn$ 2 +Burgundy 'b3g@ndI L@% 3 +Burley 'b3lI Nn$ 2 +Burma 'b3m@ Nm% 2 +Burmese b3'miz M9%,OA% 2 +Burnham-on-sea ,b3n@m-0n-'si Nn% 4 +Burnley 'b3nlI Nn% 2 +Burntisland b3nt'aIl@nd Nn$ 3 +Burntwood 'b3ntwUd Nn$ 2 +Burry Port 'bVrI pOt Nn$ 3 +Burscough 'b3sk@U Nn$ 2 +Burton-upon-Trent ,b3tn-@p0n-'trent Nn% 5 +Burundi bU'rUndI Nm% 3 +Burundian bU'rUndI@n K6$,OA$ 4 +Burundians bU'rUndI@nz Kj$ 4 +Bury 'berI Nn% 2 +Bury St. Edmunds ,berI snt 'edm@nz Nn% 5 +Bushman 'bVSm@n Ki% 2 +Bushmen 'bVSm@n Kj% 2 +Buxton 'bVkst@n Nn% 2 +C si Ki$ 1 +C of E ,si @v 'i Y>% 3 +C's siz Kj$ 1 +C-in-C ,siIn'si Y:% 3 +CBI ,si,bi'aI Y>% 3 +CD ,si'di Y>% 2 +CIA ,sI,aI'eI Y>% 3 +CID ,si,aI'di Y>% 3 +CO ,si'@U Y>% 1 +COD ,si@U'di Y~$ 3 +Cadiz k@'dIz Nn% 2 +Caen keIn Nn% 1 +Caerleon kA'li@n Nn% 3 +Caernarfon k@'nAv@n Nn% 3 +Caerphilly k@'fIlI Nn% 3 +Caesar 'siz@R K6% 2 +Caesarian sI'ze@rI@n OA% 4 +Caesars 'siz@z Kj% 2 +Cagliari k&'ljArI Nn$ 3 +Cairo 'kaIr@U Nn% 2 +Calcutta k&l'kVt@ Nn% 3 +Caldicot 'kOldIk0t Nn$ 3 +Cali 'kAlI Nn$ 2 +California ,k&lI'fOnI@ Nm% 4 +Californian ,k&lI'fOnI@n K6%,OA% 5 +Californians ,k&lI'fOnI@nz Kj% 5 +Calne kAn Nn$ 1 +Calor 'k&l@ No% 2 +Calvaries 'k&lv@rIz Kj$ 3 +Calvary 'k&lv@rI K8% 3 +Calverton 'k&lv@t@n Nn$ 3 +Calvinism 'k&lvInIz@m L@% 4 +Calvinist 'k&lvInIst K6% 3 +Calvinists 'k&lvInIsts Kj% 3 +Cambodia k&m'b@UdI@ Nm% 4 +Cambodian k&m'b@UdI@n K6%,OA% 4 +Cambodians k&m'b@UdI@nz Kj% 4 +Cambourne 'k&mbOn Nn$ 2 +Cambridge 'keImbrIdZ Nn% 2 +Cambridgeshire 'keImbrIdZ+S@R Nm% 3 +Cambuslang 'k&mb@sl&N Nn$ 3 +Camden 'k&md@n Nn% 2 +Camembert 'k&m@mbe@R K6% 3 +Camemberts 'k&m@mbe@z Kj$ 3 +Cameroon ,k&m@'run Nm% 3 +Cameroonian ,k&m@'runI@n K6%,OA% 5 +Cameroonians ,k&m@'runI@nz Kj% 5 +Campbeltown 'k&mb@ltaUn Nn% 3 +Canada 'k&n@d@ Nm% 3 +Canadian k@'neIdI@n K6%,OA% 4 +Canadians k@'neIdI@nz Kj% 4 +Canberra 'k&nb@r@ Nn% 3 +Cancer 'k&ns@R No% 2 +Cannes k&n Nn% 1 +Cannock 'k&n@k Nn% 2 +Cantab 'k&nt&b Y~$ 2 +Canterbury 'k&nt@brI Nn% 3 +Canton ,k&n't0n Nn% 2 +Canuck k@'nUk K6$ 2 +Canucks k@'nUks Kj$ 2 +Canvey 'k&nvI Nn% 2 +Canvey Island ,k&nvI 'aIl@nd Nn% 4 +Cape Town 'keIp taUn Nn% 2 +Capitol 'k&pItl K6$ 3 +Capitols 'k&pItlz Kj$ 3 +Capricorn 'k&prIkOn No% 3 +Capt k&pt Y:% 1 +Caracas k@'r&k@s Nn% 3 +Cardenden 'kAdnd@n Nn$ 3 +Cardiff 'kAdIf Nn% 2 +Cardigan 'kAdIg@n Nn% 3 +Carl kAl Nl% 1 +Carlisle kA'laIl Nn% 2 +Carlow 'kAl@U Nm$ 2 +Carluke kA'luk Nn$ 2 +Carmarthen k@'mAD@n Nn% 3 +Carmelite 'kAm@laIt K6%,OA% 3 +Carmelites 'kAm@laIts Kj% 3 +Carnforth 'kAnf@T Nn% 2 +Carnoustie kA'nustI Nn% 3 +Carol 'k&r@l Nl% 2 +Carole 'k&r@l Nl% 2 +Carolina ,k&r@'laIn@ Nm% 4 +Caroline 'k&r@laIn Nl% 3 +Carolyn 'k&r@lIn Nl% 3 +Carrie 'k&rI Nl% 2 +Carron 'k&r@n Nn$ 2 +Cartagena ,kAt@'dZin@ Nn$ 4 +Casablanca ,k&s@'bl&Nk@ Nn% 4 +Castleford 'kAslf@d Nn% 3 +Catalan 'k&t@l&n L@%,OA% 3 +Catania k@'teInI@ Nn$ 4 +Cath k&T Nl% 1 +Catherine 'k&TrIn Nl% 2 +Catholic 'k&TlIk K6%,OA% 2 +Catholicism k@'T0lIsizm L@% 5 +Catholics 'k&TlIks Kj% 2 +Cathy 'k&TI Nl% 2 +Caucasian kO'keIzI@n K6%,OA% 4 +Caucasians kO'keIzI@nz Kj% 4 +Cavan 'k&v@n Nm$ 2 +Cdr k@'mAnd@R Y:% 3 +Cdre 'k0m@dOR Y:% 3 +Cecil 'sesl Nl% 2 +Cecilia sI'silI@ Nl% 4 +Cecily 'ses@lI Nl% 3 +Cedric 'sedrIk Nl% 2 +Cefn-mawr ,kefn-'maUR Nn$ 3 +Celia 'silI@ Nl% 3 +Celsius 'selsI@s Z-% 3 +Celt kelt K6% 1 +Celtic 'keltIk K6%,OA% 2 +Celtics 'keltIks Kj$ 2 +Celts kelts Kj% 1 +Cesarean sI'ze@rI@n OA% 4 +Ceylon sI'l0n Nm% 2 +Chad tS&d Nm% 1 +Chadian 'tS&dI@n K6$,OA$ 3 +Chadians 'tS&dI@nz Kj$ 3 +Chalfont 'tS&lf@nt Nn% 2 +Chalfont St Giles ,tS&lf@nt snt 'dZaIlz Nn% 4 +Chalfont St Peter ,tS&lf@nt snt 'pit@R Nn% 5 +Changchun ,tS&N'tSUn Nn$ 2 +Changsha ,tS&N'SA Nn$ 2 +Chard tSAd Nn$ 1 +Charles tSAlz Nl% 1 +Charleston 'tSAlst@n K6% 2 +Charlestons 'tSAlst@nz Kj$ 2 +Charlie 'tSAlI Nl% 2 +Charlotte 'SAl@t Nl% 2 +Chartism 'tSAtIz@m L@% 3 +Chartist 'tSAtIst K6% 2 +Chartists 'tSAtIsts Kj% 2 +Charybdis k@'rIbdIs No% 3 +Chas tS&z Nl% 1 +Chatham 'tS&t@m Nn% 2 +Cheadle 'tSidl Nn% 2 +Cheddar 'tSed@R L@% 2 +Cheers tSI@z W-% 1 +Chelmsford 'tSelmzf@d Nn% 2 +Chelsea 'tSelsI Nn% 2 +Cheltenham 'tSeltn@m Nn% 2 +Chelyabinsk ,tSIlI@'bInsk Nn$ 3 +Chengchow ,tSeN'tSaU Nn$ 2 +Chengtu ,tSeN'tu Nn$ 2 +Chepstow 'tSepst@U Nn% 2 +Chesham 'tSeS@m Nn% 2 +Cheshire 'tSeS@R Nm% 2 +Chester 'tSest@R Nn% 2 +Chester-le-Street ,tSest@-lI-'strit Nn% 4 +Chesterfield 'tSest@fild Nn% 3 +Chianti kI'&ntI L@% 3 +Chicago SI'kAg@U Nn% 3 +Chichester 'tSItSIst@R Nn% 3 +Chile 'tSIlI Nm% 2 +Chilean 'tSIlI@n K6%,OA% 3 +Chileans 'tSIlI@nz Kj% 3 +China 'tSaIn@ Nm% 2 +Chinchow ,tSIn'tSaU Nn$ 2 +Chinese tSaI'niz M9%,OA% 2 +Chippendale 'tSIp@ndeIl K6% 3 +Chippendales 'tSIp@ndeIlz Kj% 3 +Chippenham 'tSIpn@m Nn% 3 +Chloe 'kl@UI Nl% 2 +Chopwell 'tS0pwIl Nn$ 2 +Chorley 'tSOlI Nn% 2 +Chris krIs Nl% 1 +Chrissie 'krIsI Nl% 2 +Chrissy 'krIsI Nl% 2 +Christ kraIst No% 1 +Christchurch 'kraIstS3tS Nn% 2 +Christendom 'krIsnd@m K6% 3 +Christendoms 'krIsnd@mz Kj$ 3 +Christian 'krIstS@n K6%,Nl%,OA% 2 +Christianity ,krIstI'&nItI L@% 5 +Christians 'krIstS@nz Kj% 2 +Christina krI'stin@ Nl% 3 +Christine 'krIstin Nl% 2 +Christlike 'kraIslaIk OA% 2 +Christmas 'krIsm@s K7%,No% 2 +Christmas-box 'krIsm@s-b0ks K7% 3 +Christmas-boxes 'krIsm@s-b0ksIz Kj% 4 +Christmas-tree 'krIsm@s-tri K6% 3 +Christmas-trees 'krIsm@s-triz Kj% 3 +Christmases 'krIsm@sIz Kj% 3 +Christmastide 'krIsm@staId K6% 3 +Christmastides 'krIsm@staIdz Kj$ 3 +Christmastime 'krIsm@staIm K6% 3 +Christmastimes 'krIsm@staImz Kj$ 3 +Christopher 'krIst@f@R Nl% 3 +Chungking ,tSUN'kIN Nn$ 2 +Cincinnati ,sInsI'n&tI Nn% 4 +Cinderella ,sInd@'rel@ K6% 4 +Cinderellas ,sInd@'rel@z Kj$ 4 +Cinderford 'sInd@f@d Nn$ 3 +Cirencester 'saIr@nsest@R Nn% 4 +Civvy Street 'sIvI strit No$ 3 +Clackmannon kl&k'm&n@n Nn$ 3 +Clacton 'kl&kt@n Nn% 2 +Clare kle@R Nl% 1 +Clarkston 'klAkst@n Nn$ 2 +Clarrie 'kl&rI Nl$ 2 +Classics 'kl&sIks Lk% 2 +Claud klOd Nl% 1 +Claude klOd Nl% 1 +Clay Cross ,kleI 'kr0s Nn$ 2 +Cleator Moor ,klit@ 'mU@R Nn$ 3 +Cleethorpes 'kliTOps Nn% 2 +Clem klem Nl% 1 +Clement 'klem@nt Nl% 2 +Clermont-Ferrand ,kle@m0N-fe'r0N Nn% 4 +Clevedon 'klivd@n Nn% 2 +Cleveland 'klivl@nd Nm% 2 +Cliff klIf Nl% 1 +Clifford 'klIf@d Nl% 2 +Clitheroe 'klID@r@U Nn% 3 +Clive klaIv Nl% 1 +Clowne klaUn Nn$ 1 +Clwyd 'kluId Nm% 2 +Clydach 'klId&k Nn$ 2 +Clydebank 'klaIdb&Nk Nn% 2 +Co k@U Y>% 1 +Co-op k@U-'0p Y>% 2 +Coalville 'k@UlvIl Nn$ 2 +Coatbridge 'k@UtbrIdZ Nn$ 2 +Cobham 'k0b@m Nn% 2 +Coca-Cola ,k@Uk@-'k@Ul@ M6% 4 +Coca-Colas ,k@Uk@-'k@Ul@z Mj% 4 +Cockermouth 'k0k@m@T Nn% 3 +Codsall 'k0ds@l Nn$ 2 +Coimbatore ,kOImb@'tOR Nn$ 4 +Col 'k3nl Y:% 2 +Colchester 'k0ltSest@R Nn% 3 +Coleshill 'k@UlzhIl Nn$ 2 +Colin 'k0lIn Nl% 2 +Coll 'k0lIdZ Y=% 2 +Colne k@Un Nn$ 1 +Cologne k@'l@Un Nn% 2 +Colombia k@'l0mbI@ Nm% 4 +Colombian k@'l0mbI@n K6%,OA% 4 +Colombians k@'l0mbI@nz Kj% 4 +Colombo k@'l0mb@U Nn% 3 +Colorado ,k0l@'rAd@U Nm% 4 +Columbia k@'lVmbI@ Nm% 4 +Columbus k@'lVmb@s Nn% 3 +Colwyn Bay ,k0lwIn 'beI Nn% 3 +Confucian k@n'fjuSn K6%,OA% 3 +Confucians k@n'fjuSnz Kj% 3 +Congleton 'k0Nglt@n Nn% 3 +Congo 'k0Ng@U Nm% 2 +Congolese ,k0Ng@'liz K9%,OA% 3 +Congregational ,k0NgrI'geIS@n@l OA% 5 +Connah's Quay ,k0n@z 'ki Nn$ 3 +Connaught 'k0nOt Nm% 2 +Connecticut k@'netIk@t Nm% 4 +Connie 'k0nI Nl% 2 +Cons k0ns Y~% 1 +Consett 'k0nsIt Nn$ 2 +Constance 'k0nst@ns Nl% 2 +Conwy 'k0nweI Nn% 2 +Cookham 'kUk@m Nn% 2 +Copenhagen ,k@Up@n'heIg@n Nn% 4 +Copernican k@'p3nIk@n OA% 4 +Coppull 'k0p@l Nn$ 2 +Copt k0pt K6$,OA$ 1 +Coptic 'k0ptIk K6% 2 +Coptics 'k0ptIks Kj% 2 +Copts k0pts Kj$ 1 +Corby 'kObI Nn% 2 +Cordoba 'kOd@b@ Nn% 3 +Corinthian k@'rInTI@n K6%,OA% 4 +Corinthians k@'rInTI@nz Kj% 4 +Cork kOk Nn% 1 +Cornwall 'kOnwOl Nm% 2 +Corp kOp Y=% 1 +Corps Diplomatique ,kO ,dIpl@m&'tik Ki% 5 +Corsham 'kOS@m Nn$ 2 +Corunna k@'rVn@ Nn% 3 +Cosenza k@'senz@ Nn$ 3 +Costa Rica ,k0st@ 'rik@ Nm% 4 +Costa Rican ,k0st@ 'rik@n K6%,OA% 4 +Costa Ricans ,k0st@ 'rik@nz Kj% 4 +Coventry 'k0vntrI Nn% 3 +Cowdenbeath ,kaUd@n'biT Nn% 3 +Cowes kaUz Nn% 1 +Cpl 'kOpr@l Y:% 2 +Cramlington 'kr&mlINt@n Nn$ 3 +Crawley 'krOlI Nn% 2 +Creole 'kri@Ul M6%,OA% 2 +Creoles 'kri@Ulz Mj$ 2 +Cres krez Y=% 1 +Creswell 'kreswIl Nn$ 2 +Crewe kru Nn% 1 +Crieff krif Nn$ 1 +Croesus 'kris@s Nl% 2 +Cromer 'kr@Um@R Nn% 2 +Crook krUk Nn$ 1 +Crosby 'kr0sbI Nn% 2 +Crowborough 'kr@Ub@r@ Nn% 3 +Crowthorne 'kr@UTOn Nn% 2 +Croydon 'kroId@n Nn% 2 +Cuba 'kjub@ Nm% 2 +Cuban 'kjub@n K6%,OA% 2 +Cubans 'kjub@nz Kj% 2 +Cudworth 'kVdw@T Nn$ 2 +Cuffley 'kVflI Nn$ 2 +Culcheth 'kVltS@T Nn$ 2 +Cumberland 'kVmb@l@nd Nm% 3 +Cumbernauld 'kVmb@nOld Nn% 3 +Cumbria 'kVmbrI@ Nm% 3 +Cumnock 'kVmn@k Nn$ 2 +Cupar 'kup@R Nn$ 2 +Cupid 'kjupId Nl% 2 +Curitiba ,kU@rI'tib@ Nn$ 4 +Currie 'kVrI Nn$ 2 +Cwmbran kum'brAn Nn% 2 +Cyclopean saI'kl@UpI@n OA% 4 +Cynthia 'sInTI@ Nl% 3 +Cyprian 'sIprI@n OA$ 3 +Cypriot 'sIprI@t K6%,OA% 3 +Cypriots 'sIprI@ts Kj% 3 +Cyprus 'saIpr@s Nm% 2 +Cyril 'sIr@l Nl% 2 +Cyrillic sI'rIlIk OA% 3 +Czech tSek M6%,OA% 1 +Czechoslovak ,tSek@U'sl@Uv&k K6%,OA% 4 +Czechoslovakia ,tSek@Usl@'v&kI@ Nm% 6 +Czechoslovakian ,tSek@Usl@'v&kI@n K6%,OA% 6 +Czechoslovakians ,tSek@Usl@'v&kI@nz Kj% 6 +Czechoslovaks ,tSek@U'sl@Uv&ks Kj% 4 +Czechs tSeks Mj% 1 +D di Ki$ 1 +D's diz Kj$ 1 +D-day 'di-deI No% 2 +DDT ,di,di'ti Y}% 3 +DES ,di,i'es Y>% 3 +DG ,di'dZi Y:$ 2 +DIY ,di,aI'waI Y}% 3 +DJ ,di'dZeI Y>% 2 +DJs ,di'dZeIz Y)% 2 +DLitt ,di'lIt Y>$ 2 +DM 'doItSmAk Y]% 2 +DNA ,di,en'eI Y}% 3 +DPhil ,di'fIl Y>% 2 +DSS ,di,es'es Y>% 3 +DSc ,di,es'si Y>% 3 +DTI ,di,ti'aI Y>% 3 +DTs ,di'tiz Y)$ 2 +Dacca 'd&k@ Nn% 2 +Dail Eireann ,doIl 'e@r@n Ki% 3 +Daisy 'deIzI Nl% 2 +Dakar 'd&k@R Nn$ 2 +Dakota d@'k@Ut@ Nm% 3 +Dalkeith d&l'kiT Nn% 2 +Dallas 'd&l@s Nn% 2 +Dalry d&l'raI Nn$ 2 +Dalton 'd0ltn Nn$ 2 +Damascus d@'m&sk@s Nn% 3 +Damocles 'd&m@kliz Nl% 3 +Dan d&n Nl% 1 +Dane deIn K6% 1 +Danes deInz Kj% 1 +Daniel 'dAnI@l K6%,Nl% 2 +Daniels 'dAnI@lz Kj% 2 +Danish 'deInIS L@%,OA% 2 +Danny 'd&nI Nl% 2 +Daphne 'd&fnI Nl% 2 +Darby 'dAbI Nl$ 2 +Darenth 'd&r@nT Nn$ 2 +Darfield 'dAfild Nn$ 2 +Darkey 'dAkI K6$ 2 +Darkeys 'dAkIz Kj$ 2 +Darkie 'dAkI K6% 2 +Darkies 'dAkIz Kj% 2 +Darky 'dAkI K8% 2 +Darlington 'dAlINt@n Nn% 3 +Darmstadt 'dAmst&t Nn% 2 +Dartford 'dAtf@d Nn% 2 +Dartmouth 'dAtm@T Nn% 2 +Darwen 'dAwIn Nn% 2 +Dave deIv Nl% 1 +Daventry 'd&vIntrI Nn% 3 +Davey 'deIvI Nl% 2 +David 'deIvId Nl% 2 +Dawley 'dOlI Nn$ 2 +Dawlish 'dOlIS Nn% 2 +Dawn dOn Nl% 1 +Dayton 'deItn Nn$ 2 +Deal dil Nn$ 1 +Dean din Nl% 1 +Debbie 'debI Nl% 2 +Debby 'debI Nl% 2 +Deborah 'deb@r@ Nl% 3 +Dec dek Y=% 1 +Decalogue 'dek@l0g K6% 3 +Decalogues 'dek@l0gz Kj$ 3 +December dI'semb@R K6%,No% 3 +Decembers dI'semb@z Kj$ 3 +Deirdre 'dI@drI Nl% 2 +Delaware 'del@we@R Nm% 3 +Delhi 'delI Nn% 2 +Delphic 'delfIk OA% 2 +Denain d@'neIn Nn$ 2 +Denbigh 'denbI Nn$ 2 +Denis 'denIs Nl% 2 +Denise d@'niz Nl% 2 +Denmark 'denmAk Nm% 2 +Dennis 'denIs Nl% 2 +Denny 'denI Nn% 2 +Denver 'denv@R Nn% 2 +Dept dI'pAtm@nt Y=% 3 +Derby 'dAbI Nn% 2 +Derbyshire 'dAbIS@R Nm% 3 +Dereham 'dI@r@m Nn$ 2 +Derek 'derIk Nl% 2 +Des dez Nl% 1 +Desmond 'dezm@nd Nl% 2 +Dessau 'desaU Nn$ 2 +Detroit dI'troIt Nn% 2 +Deutschmark 'doItSmAk K6% 2 +Deutschmarks 'doItSmAks Kj% 2 +Devizes dI'vaIzIz Nn% 3 +Devon 'devn Nm% 2 +Dewsbury 'djuzb@rI Nn% 3 +Di daI Nl% 1 +Diana daI'&n@ Nl% 3 +Diaspora daI'&sp@r@ K6% 4 +Diasporas daI'&sp@r@z Kj$ 4 +Dick dIk Nl% 1 +Dicky 'dIkI Nl% 2 +Dictaphone 'dIkt@f@Un K6% 3 +Dictaphones 'dIkt@f@Unz Kj$ 3 +Didcot 'dIdk@t Nn% 2 +Dijon 'diZ0N Nn% 2 +Dingle 'dINgl Nn% 2 +Dinnington 'dInINt@n Nn$ 3 +Dip dIp Y>% 1 +Dip Ed ,dIp 'ed Y>% 2 +Dir dI'rekt@R Y>% 3 +Dives 'daIviz Nl$ 2 +Djibouti dZI'butI Nm% 3 +Djiboutian dZI'butI@n K6$,OA$ 4 +Djiboutians dZI'butI@nz Kj$ 4 +Dnepropetrovsk nI,pr0pI'tr0fsk Nn$ 4 +DoE ,di,@U'i Y>% 3 +Dolly 'd0lI Nl% 2 +Domesday 'dumzdeI No% 2 +Dominic 'd0mInik Nl% 3 +Dominica d@'mInIk@ Nm% 4 +Dominican d@'mInIk@n K6%,OA% 4 +Dominicans d@'mInIk@nz Kj% 4 +Don d0n Nl% 1 +Donald 'd0nld Nl% 2 +Doncaster 'd0Nk&st@R Nn% 3 +Donegal 'd0nIgOl Nm% 3 +Donetsk d@'netsk Nn$ 2 +Doomsday 'dumzdeI No% 2 +Dora 'dOr@ Nl% 2 +Dorchester 'dOtSIst@R Nn% 3 +Dordrecht 'dOdrIkt Nn$ 2 +Doreen 'dOrin Nl% 2 +Doric 'd0rIk OA$ 2 +Doris 'd0rIs Nl% 2 +Dorking 'dOkIN Nn% 2 +Dorothy 'd0r@TI Nl% 3 +Dorset 'dOsIt Nm% 2 +Dortmund 'dOtm@nd Nn% 2 +Douai 'dueI Nn$ 2 +Doug dVg Nl% 1 +Douglas 'dVgl@s Nl% 2 +Dover 'd@Uv@R Nn% 2 +Down daUn Nm$ 1 +Downing Street 'daUnIN strit No% 3 +Dr 'd0kt@R Y:% 2 +Drayton 'dreItn Nn$ 2 +Dresden 'drezd@n Nn% 2 +Driffield 'drIfild Nn$ 2 +Drogheda 'droIId@ Nn% 3 +Droitwich 'droItwItS Nn% 2 +Dronfield 'dr0nfild Nn$ 2 +Druid 'druId K6% 2 +Druids 'druIdz Kj% 2 +Dublin 'dVblIn Nn% 2 +Dubliner 'dVblIn@R K6% 3 +Dubliners 'dVblIn@z Kj% 3 +Duce 'dutSeI Ki$ 2 +Dudley 'dVdlI Nn% 2 +Duisburg 'dusb3g Nn$ 2 +Dukinfield 'dVkInfild Nn$ 3 +Dumbarton dVm'bAtn Nn% 3 +Dumfries dVm'fris Nn% 2 +Dun Laoghaire dVn 'lI@rI Nn% 3 +Duncan 'dVnk@n Nl% 2 +Dundalk dVn'dOk Nn$ 2 +Dundee dVn'di Nn% 2 +Dunfermline dVn'f3mlIn Nn% 3 +Dunkirk dVn'k3k Nn% 2 +Dunoon dV'nun Nn$ 2 +Dunstable 'dVnst@bl Nn% 3 +Durban 'd3b@n Nn% 2 +Durham 'dVr@m Nn% 2 +Durrington 'dVrINt@n Nn$ 3 +Dursley 'd3zlI Nn$ 2 +Dusseldorf 'dVsldOf Nn% 3 +Dutch dVtS L@%,OA% 1 +Dutchman 'dVtSm@n Ki% 2 +Dutchmen 'dVtSm@n Kj% 2 +Dyfed 'dVvId Nm% 2 +E i Ki$ 1 +E's iz Kj$ 1 +EC ,i'si Y>% 2 +EDP ,i,di'pi Y}$ 3 +EEC ,i,i'si Y>% 3 +EEG ,i,i'dZi Y>% 3 +EFTA 'eft@ Y>% 2 +ESP ,i,es'pi Y}% 3 +Eaglescliffe 'iglzklIf Nn$ 3 +Ealing 'ilIN Nn% 2 +Earl Shilton ,3l 'SIltn Nn$ 3 +Easington 'izINt@n Nn$ 3 +East Dereham ,ist 'dI@r@m Nn$ 3 +East Grinstead ,ist 'grInstId Nn% 3 +East Kilbride ,ist kIl'braId Nn% 3 +East Retford ,ist 'retf@d Nn$ 3 +Eastbourne 'isbOn Nn% 2 +Easter 'ist@R K6%,No% 2 +Easters 'ist@z Kj$ 2 +Eastleigh 'istli Nn$ 2 +Ebbw Vale ,ebU 'veIl Nn% 3 +Eccles 'eklz Nn% 2 +Ecuador 'ekw@dOR Nm% 3 +Ecuadorian ,ekw@'dOrI@n K6%,OA% 5 +Ecuadorians ,ekw@'dOrI@nz Kj% 5 +Ed ed Nl% 1 +Eddie 'edI Nl% 2 +Eddy 'edI Nl% 2 +Eden 'idn No% 2 +Edenbridge 'idnbrIdZ Nn% 3 +Edgar 'edg@R Nl% 2 +Edinburgh 'edInbr@ Nn% 3 +Edith 'idIT Nl% 2 +Edmund 'edm@nd Nl% 2 +Edward 'edw@d Nl% 2 +Edwardian Id'wOdI@n K6%,OA% 4 +Edwardians Id'wOdI@nz Kj% 4 +Egremont 'egrIm0nt Nn$ 3 +Egypt 'idZIpt Nm% 2 +Egyptian I'dZIpSn K6%,OA% 3 +Egyptians I'dZIpSnz Kj% 3 +Eiche 'aIk@ Nn$ 2 +Eileen 'aIlin Nl% 2 +Eindhoven 'aIndh0vn Nn% 3 +El Dorado ,el d@'rAd@U Ki% 4 +El Dorados ,el d@'rAd@Uz Kj$ 4 +El Salvador el 's&lv@dOR Nm% 4 +Elaine I'leIn Nl% 2 +Elastoplast I'l&st@,plAst L@% 3 +Elderslie 'eld@zlI Nn$ 3 +Eleanor 'el@n@R Nl% 3 +Elgin 'elgIn Nn$ 2 +Eliza I'laIz@ Nl% 3 +Elizabeth I'lIz@b@T Nl% 4 +Elizabethan I,lIz@'biTn K6%,OA% 5 +Elizabethans I,lIz@'biTnz Kj% 5 +Elland 'el@nd Nn$ 2 +Ellen 'el@n Nl% 2 +Ellesmere 'elzmI@R Nn% 3 +Ellesmere Port ,elzmI@ 'pOt Nn% 3 +Ellie 'elI Nl% 2 +Elloughton 'el@t@n Nn$ 3 +Elsie 'elsI Nl% 2 +Elstree 'elstri Nn% 2 +Ely 'ilI Nn% 2 +Elysian I'lIzI@n OA% 4 +Elysium I'lIzI@m No% 4 +Emily 'emlI Nl% 2 +Emma 'em@ Nl% 2 +Emsworth 'emzw@T Nn$ 2 +Enfield 'enfild Nn% 2 +England 'INgl@nd Nm% 2 +English 'INglIS L@*,OA* 2 +Englishman 'INglISm@n Ki% 3 +Englishmen 'INglISm@n Kj% 3 +Englishwoman 'INglISwUm@n Ki% 4 +Englishwomen 'INglISwImIn Kj% 4 +Enoch 'in0k Nl% 2 +Enschede 'ensk@dI Nn$ 3 +Epiphany I'pIf@nI No% 4 +Epping 'epIN Nn% 2 +Epsom 'eps@m Nn% 2 +Erfurt 'e@f3t Nn$ 2 +Eric 'erik Nl% 2 +Erica 'erIk@ Nl% 3 +Erin 'erIn Nm% 2 +Eritrea ,erI'treI@ Nm% 4 +Eritrean ,erI'treI@n K6%,OA% 4 +Eritreans ,erI'treI@nz Kj% 4 +Erlangen '3l&N@n Nn$ 3 +Ernest '3nIst Nl% 2 +Ernie '3nI Nl% 2 +Erse 3s L@$ 1 +Esfahan ,Isf@'hAn Nn$ 3 +Eskimo 'eskIm@U K6% 3 +Eskimoes 'eskIm@Uz Kj% 3 +Eskimos 'eskIm@Uz Kj% 3 +Esperanto ,esp@'r&nt@U L@% 4 +Esq esk Y:% 1 +Esquire I'skwaI@R K6% 2 +Esquires I'skwaI@z Kj% 2 +Essen 'es@n Nn$ 2 +Essex 'esIks Nm% 2 +Esther 'est@R Nl% 2 +Ethel 'eTl Nl% 2 +Ethiopia ,iTI'@UpI@ Nm% 5 +Ethiopian ,iTI'@UpI@n K6%,OA% 5 +Ethiopians ,iTI'@UpI@nz Kj% 5 +Eucharist 'juk@rIst K6% 3 +Eucharists 'juk@rIsts Kj$ 3 +Euclidean ju'klIdI@n OA% 4 +Eugene ju'dZin Nl% 2 +Eunice 'junIs Nl% 2 +Eurasia jU@'reIZ@ Nm$ 3 +Eurasian jU@'reIZn K6%,OA% 3 +Eurasians jU@'reIZnz Kj% 3 +Eurodollar 'jU@r@Ud0l@R K6% 4 +Eurodollars 'jU@r@Ud0l@z Kj% 4 +Europe 'jU@r@p Nm% 2 +European ,jU@r@'pI@n K6%,OA% 4 +Europeans ,jU@r@'pI@nz Kj% 4 +Eurovision 'jU@r@vIZn No% 4 +Eustachian ju'steISn Oq% 3 +Eva 'iv@ Nl% 2 +Eve iv Nl% 1 +Evelyn 'ivlIn Nl% 2 +Evesham 'ivS@m Nn% 2 +Ewell 'ju@l Nn$ 2 +Excellencies 'eks@l@nsIz Kj% 4 +Excellency 'eks@l@nsI K8% 4 +Exeter 'eksIt@R Nn% 3 +Exmouth 'eksm@T Nn% 2 +F ef Ki$ 1 +F's efs Kj$ 1 +FA ,ef'eI Y>% 2 +FAO ,ef,eI'@U Y>% 3 +FBI ,efbI'aI Y>% 3 +FM ,ef'em Y}% 2 +FO ,ef'@U Y>% 2 +FRS ,efA'res Y>% 3 +Fabian 'feIbI@n K6%,OA% 3 +Fabians 'feIbI@nz Kj% 3 +Fahrenheit 'f&r@nhaIt Z-% 3 +Falkirk 'fOlk3k Nn% 2 +Fallopian f@'l@UpI@n Oq% 4 +Falmouth 'f&lm@T Nn% 2 +Fanny 'f&nI Nl% 2 +Farnham 'fAn@m Nn% 2 +Farnworth 'fAnw@T Nn$ 2 +Farsi 'fAsI L@$ 2 +Fauldhouse 'fOldhaUs Nn$ 2 +Faversham 'f&v@S@m Nn% 3 +Fawley 'fOlI Nn% 2 +Featherstone 'feD@st@n Nn% 3 +Feb feb Y=% 1 +Februaries 'febjU@rIz Kj$ 4 +February 'febjU@rI K8%,No% 4 +Fed fed Y>% 1 +Felicity f@'lIsItI Nl% 4 +Felix 'filIks Nl% 2 +Felixstowe 'filIkst@U Nn% 3 +Fermanagh f@'m&n@ Nm% 3 +Ferrara f@'rAr@ Nn$ 3 +Ferryhill 'ferIhIl Nn$ 3 +Fife faIf Nm% 1 +Fiji ,fi'dZi Nm% 2 +Fijian ,fi'dZI@n K6%,OA% 3 +Fijians ,fi'dZI@nz Kj% 3 +Filipino ,fIlI'pin@U K6%,OA% 4 +Filipinos ,fIlI'pin@Uz Kj% 4 +Finland 'fInl@nd Nm% 2 +Finn fIn K6% 1 +Finnish 'fInIS L@%,OA% 2 +Finns fInz Kj% 1 +Fiona fI'@Un@ Nl% 3 +Firenze fI'renzI Nn% 3 +Fleet flit Nn% 1 +Fleet Street 'flit strit No% 2 +Fleetwood 'flitwUd Nn% 2 +Flemish 'flemIS L@%,OA% 2 +Flint flInt Nn$ 1 +Flora 'flOr@ Nl% 2 +Florence 'fl0r@ns Nl% 2 +Florida 'fl0rId@ Nm% 3 +Florrie 'flOrI Nl% 2 +Foggia 'f0dZI@ Nn$ 3 +Folkestone 'f@Ukst@n Nn% 2 +Foochow ,fu'tSaU Nn$ 2 +Forfar 'fOf@R Nn% 2 +Forli 'fOlI Nn$ 2 +Formby 'fOmbI Nn% 2 +Formica fO'maIk@ L@% 3 +Formosa fO'm@Us@ Nm% 3 +Fort Lauderdale ,fOt 'lOd@deIl Nn% 4 +Fort William ,fOt 'wIlI@m Nn% 4 +Fort Worth ,fOt 'w3T Nn% 2 +Fortaleza ,fOt@'leIz@ Nn$ 4 +Fowey foI Nn% 1 +Fr 'fAD@R Y:% 2 +Fr"aulein 'froIlaIn K6% 2 +Fr"auleins 'froIlaInz Kj% 2 +Frampton Cotterell ,fr&mpt@n 'k0trIl Nn$ 4 +Fran fr&n Nl% 1 +France frAns Nm% 1 +Frances 'frAnsIs Nl% 2 +Francis 'frAnsIs Nl% 2 +Franciscan fr&n'sIsk@n K6%,OA% 3 +Franciscans fr&n'sIsk@nz Kj% 3 +Franco- 'fr&Nk@U- U-% 2 +Frank fr&Nk K6%,Nl% 1 +Frankfurt 'fr&nkf@t Nn% 2 +Frankie 'fr&nkI Nl% 2 +Franks fr&Nks Kj% 1 +Fraserburgh 'freIz@b@r@ Nn$ 4 +Frau fraU Ki% 1 +Frauen 'fraU@n Kj$ 2 +Freckleton 'freklt@n Nn$ 3 +Fred fred Nl% 1 +Freda 'frid@ Nl% 2 +Freddie 'fredI Nl% 2 +Freddy 'fredI Nl% 2 +Frederick 'fredrIk Nl% 2 +Frederiksberg 'fredrIksb3g Nn% 3 +Freemason 'frimeIsn K6% 3 +Freemasonry 'frimeIs@nrI L@% 4 +Freemasons 'frimeIsnz Kj% 3 +Freiburg 'fraIb3g Nn% 2 +French frentS L@%,OA% 1 +Frenchman 'frentSm@n Ki% 2 +Frenchmen 'frentSm@n Kj% 2 +Frenchwoman 'frentSwUm@n Ki% 3 +Frenchwomen 'frentSwImIn Kj% 3 +Freshwater 'freSwOt@R Nn$ 3 +Freudian 'froIdI@n OA% 3 +Fri 'fraIdeI Y=% 2 +Friday 'fraIdI K6%,No% 2 +Fridays 'fraIdIz Kj% 2 +Frinton 'frIntn Nn$ 2 +Frodsham 'fr0dS@m Nn$ 2 +Frome frum Nn$ 1 +Furth f3T Nn$ 1 +Fushun ,fu'SUn Nn$ 2 +G dZi Ki$ 1 +G's dZiz Kj$ 1 +G-man 'dZi-m&n Ki$ 2 +G-men 'dZi-men Kj$ 2 +GATT g&t Y>% 1 +GB ,dZi'bi Y=% 2 +GCSE ,dZisIe'si Y>% 4 +GCSEs ,dZisIe'siz Y)% 4 +GHQ ,dZi,eItS'kju Y=% 3 +GI ,dZi'aI Y>% 2 +GIs ,dZi'aIz Y)% 2 +GMT ,dZi,em'ti Y~% 3 +GNP ,dZI,en'pi Y>% 3 +GP ,dZi'pi Y>% 2 +GP's ,dZi'piz Y)% 2 +Gabon g&'b0n Nm% 2 +Gabonese ,g&b@'niz K9%,OA% 3 +Gael geIl K6$ 1 +Gaelic 'geIlIk K6%,OA% 2 +Gaelics 'geIlIks Kj% 2 +Gaels geIlz Kj$ 1 +Gainsborough 'geInzbr@ K6%,Nn% 2 +Gainsboroughs 'geInzbr@z Kj% 2 +Galashiels 'g&l@SI@lz Nn% 3 +Gallic 'g&lIk OA% 2 +Galloway 'g&l@weI Nm% 3 +Gallup 'g&l@p No% 2 +Galway 'gOlweI Nm% 2 +Gambia 'g&mbI@ Nm% 3 +Gambian 'g&mbI@n K6%,OA% 3 +Gambians 'g&mbI@nz Kj% 3 +Gareth 'g&r@T Nl% 2 +Garforth 'gAf@T Nn$ 2 +Garrowhill 'g&r@hIl Nn$ 3 +Gary 'g&rI Nl% 2 +Gateshead 'geItshed Nn% 2 +Gaul gOl K6% 1 +Gauls gOlz Kj% 1 +Gavin 'g&vIn Nl% 2 +Gdansk gd&nsk Nn% 1 +Gdn 'gAdn Y=% 2 +Gdns 'gAdnz Y=% 2 +Geiger 'gaIg@R K6% 2 +Geigers 'gaIg@z Kj$ 2 +Gelligaer 'gelIg@R Nn$ 3 +Gelsenkirchen 'gelz@nk3kn Nn$ 4 +Gemini 'dZemInI No% 3 +Gen 'dZenr@l Y:% 2 +Gene dZin Nl% 1 +Geneva dZI'niv@ Nn% 3 +Genoa 'dZen@U@ Nn% 3 +Genova 'dZen@v@ Nn% 3 +Geoff dZef Nl% 1 +Geoffrey 'dZefrI Nl% 2 +George dZOdZ Nl% 1 +Georges 'dZOdZIz Kj$ 2 +Georgia 'dZOdZ@ Nm% 2 +Georgian 'dZOdZ@n OA% 2 +Georgian 'dZOdZj@n K6%,OA% 2 +Georgians 'dZOdZj@nz Kj% 2 +Georgie 'dZOdZI Nl% 2 +Gerald 'dZer@ld Nl% 2 +Geraldine 'dZer@ldin Nl% 3 +Gerard 'dZer@d Nl% 2 +German 'dZ3m@n M6%,OA% 2 +Germanic dZ@'m&nIk OA% 3 +Germans 'dZ3m@nz Mj% 2 +Germany 'dZ3m@nI Nm% 3 +Gerry 'dZerI Nl% 2 +Gertie 'g3tI Nl% 2 +Gertrude 'g3trud Nl% 2 +Gestapo ge'stAp@U K6% 3 +Gestapos ge'stAp@Uz Kj$ 3 +Ghana 'gAn@ Nm% 2 +Ghanaian gA'neI@n K6%,OA% 3 +Ghanaians gA'neI@nz Kj% 3 +Ghent gent Nn% 1 +Gibraltar dZI'brOlt@R Nm% 3 +Gibraltarian ,dZIbrOl'te@rI@n K6%,OA% 5 +Gibraltarians ,dZIbrOl'te@rI@nz Kj% 5 +Giffnock 'gIfn0k Nn$ 2 +Gilbert 'gIlb@t Nl% 2 +Gilbertian gIl'b3tI@n OA$ 4 +Giles dZaIlz Nl% 1 +Gilfach Goch ,gilf&k 'g0k Nn$ 3 +Gill dZIl Nl% 1 +Gillian 'dZIlI@n Nl% 3 +Gillingham 'dZIlIN@m Nn% 3 +Gina 'dZin@ Nl% 2 +Girvan 'g3vn Nn$ 2 +Gladys 'gl&dIs Nl% 2 +Glamorgan gl@'mOg@n Nm% 3 +Glasgow 'gl&zg@U Nn% 2 +Glastonbury 'gl&st@nbrI Nn% 3 +Glaswegian gl&z'widZ@n K6%,OA% 3 +Glaswegians gl&z'widZ@nz Kj% 3 +Glen glen Nl% 1 +Glengarries ,glen'g&rIz Kj$ 3 +Glengarry ,glen'g&rI K8$ 3 +Glenrothes glen'r0TIs Nn$ 3 +Gloria 'glOrI@ Nl% 3 +Glossop 'gl0s@p Nn% 2 +Gloucester 'gl0st@R Nn% 2 +Gloucestershire 'gl0st@S@R Nm% 3 +Glusburn 'glVzb3n Nn$ 2 +God g0d No% 1 +Godalming 'g0dlmIN Nn% 3 +Godfrey 'g0dfrI Nl% 2 +Godmanchester 'g0dm@n,tSest@R Nn% 4 +Goffs Oak ,g0fs '@Uk Nn$ 2 +Golbourne 'g0lbOn Nn$ 2 +Goliath g@'laI@T K6% 3 +Goliaths g@'laI@Ts Kj$ 3 +Goole gul Nn$ 1 +Gordian 'gOdI@n OA% 3 +Gordon 'gOdn Nl% 2 +Gorgon 'gOg@n K6% 2 +Gorgons 'gOg@nz Kj$ 2 +Gorgonzola ,gOg@n'z@Ul@ L@% 4 +Gorky 'gOkI Nn$ 2 +Gorseinon gO'seIn@n Nn$ 3 +Gosport 'g0spOt Nn% 2 +Goteborg 'g0t@bOg Nn% 3 +Goth g0T K6% 1 +Gothenburg 'g0T@nb3g Nn% 3 +Gothic 'g0TIk L@%,OA% 2 +Goths g0Ts Kj% 1 +Gottingen 'g0tIN@n Nn% 3 +Gourock 'gVr@k Nn$ 2 +Gov 'gVv@n@R Y:% 3 +Governor-General ,gVvn@-'dZenr@l K6% 4 +Governor-Generals ,gVvn@-'dZenr@lz Kj$ 4 +Grampian 'gr&mpI@n Nm% 3 +Granada gr@'nAd@ Nn% 3 +Grand Prix ,grAn 'pri Ki% 2 +Grands Prix ,grAn 'pri Kj$ 2 +Grangemouth 'greIndZm@T Nn$ 2 +Grantham 'gr&nT@m Nn% 2 +Gravenhage ,grAvn'hAg@ Nn% 4 +Gravesend ,greIv'zend Nn% 2 +Graz grAts Nn% 1 +Great Harwood ,greIt 'hAwUd Nn$ 3 +Great Malvern ,greIt 'm0lv@n Nn$ 3 +Great Shelford ,greIt 'Self@d Nn$ 3 +Great Yarmouth ,greIt 'jAm@T Nn% 3 +Grecian 'griSn OA% 2 +Greece grIs Nm% 1 +Greek grik M6%,OA% 1 +Greeks griks Mj% 1 +Greenock 'grin@k Nn% 2 +Greenwich 'grenItS Nn% 2 +Greg greg Nl% 1 +Gregorian grI'gOrI@n OA% 4 +Gregory 'greg@rI Nl% 3 +Grenada grI'neId@ Nm% 3 +Grenadian grI'neIdI@n K6%,OA% 4 +Grenadians grI'neIdI@nz Kj% 4 +Grimethorpe 'graImTOp Nn% 2 +Grimsby 'grImzbI Nn% 2 +Grinstead 'grInstId Nn$ 2 +Groningen 'gr@UnIN@n Nn$ 3 +Grundyism 'grVndIIz@m L@$ 4 +Guadalajara ,gwAdl@'hAr@ Nn% 5 +Guatemala ,gwAt@'mAl@ Nm% 4 +Guatemala City ,gw&tI,mAl@ 'sItI Nn% 6 +Guatemalan ,gwAt@'mAl@n K6%,OA% 4 +Guatemalans ,gwAt@'mAl@nz Kj% 4 +Guayaquil ,gwaI@'kil Nn% 3 +Guild-hall 'gIld-hOl K6% 2 +Guild-halls 'gIld-hOlz Kj% 2 +Guildford 'gIlf@d Nn% 2 +Guildhall 'gIldhOl K6% 2 +Guildhalls 'gIldhOlz Kj% 2 +Guinea 'gInI Nm% 2 +Guinean 'gInI@n K6$,OA$ 3 +Guineans 'gInI@nz Kj$ 3 +Guinness 'gInIs K7% 2 +Guinnesses 'gInIsIz Kj% 3 +Guisborough 'gIzbr@ Nn$ 2 +Gurkha 'g3k@ K6% 2 +Gurkhas 'g3k@z Kj% 2 +Guy gaI Nl% 1 +Guy's gaIz No$ 1 +Guyana gaI'&n@ Nm% 3 +Guyanese ,gaI@'niz K9%,OA% 3 +Gwen gwen Nl% 1 +Gwendoline 'gwend@lIn Nl% 3 +Gwent gwent Nm% 1 +Gwersyllt 'gw3sIlt Nn$ 2 +Gwynedd 'gwIn@D Nm% 2 +Gypsies 'dZIpsIz Kj% 2 +Gypsy 'dZIpsI K8% 2 +H eItS Ki$ 1 +H's 'eItSIz Kj$ 2 +H-bomb 'eItS-b0m K6% 2 +H-bombs 'eItS-b0mz Kj% 2 +HM ,eI'tSem Y:% 2 +HMSO ,eItS,em,e's@U Y=% 4 +HP ,eItS'pi Y}% 2 +HQ ,eItS'kju Y=% 2 +HRH ,eItSA'reItS Y:% 3 +Haarlem 'hAl@m Nn% 2 +Hackney 'h&knI Nn% 2 +Haddington 'h&dINt@n Nn$ 3 +Hades 'heIdiz No% 2 +Hadji 'h&dZI K6$ 2 +Hadjis 'h&dZIz Kj$ 2 +Hagen 'hAg@n Nn$ 2 +Hagley 'h&glI Nn$ 2 +Hailsham 'heIlS@m Nn$ 2 +Haiphong ,haI'f0N Nn$ 2 +Haiti 'heItI Nm% 2 +Haitian 'heISn K6%,OA% 2 +Haitians 'heISnz Kj% 2 +Hal h&l Nl% 1 +Halesowen heIl'z@UIn Nn$ 3 +Halifax 'h&lIf&ks Nn% 3 +Halle 'h&lI Nn% 2 +Hallowe'en ,h&l@U'in K6%,No% 3 +Hallowe'ens ,h&l@U'inz Kj$ 3 +Halstead 'h0lstId Nn$ 2 +Hamburg 'h&mb3g Nn% 2 +Hamhung ,h&m'hUN Nn$ 2 +Hamilton 'h&mIltn Nn% 3 +Hammersmith 'h&m@smIT Nn% 3 +Hampreston 'h&mprIstn Nn$ 3 +Hampshire 'h&mpS@R Nm% 2 +Hangchon ,h&N'tS0n Nn$ 2 +Hanoi h&'noI Nn% 2 +Hanover 'h&n@Uv@R Nn% 3 +Hansard 'h&nsAd K6% 2 +Hansards 'h&nsAdz Kj$ 2 +Harbin 'hAbIn Nn$ 2 +Haringey 'h&rINgeI Nn% 3 +Harley Street 'hAlI strit No% 3 +Harlow 'hAl@U Nn% 2 +Harold 'h&r@ld Nl% 2 +Harpenden 'hApInd@n Nn% 3 +Harriet 'h&rI@t Nl% 3 +Harrogate 'h&r@gIt Nn% 3 +Harrow 'h&r@U Nn% 2 +Harry 'h&rI Nl% 2 +Hartlepool 'hAtlIpul Nn% 3 +Hartley 'hAtlI Nn$ 2 +Harvey 'hAvI Nl% 2 +Harwich 'h&rItS Nn% 2 +Harwood 'hAwUd Nn$ 2 +Harworth 'hAw@T Nn$ 2 +Haslemere 'heIzlmI@R Nn$ 3 +Haslingden 'h&zlINd@n Nn$ 3 +Hastings 'heIstINz Nn% 2 +Hatfield 'h&tfild Nn% 2 +Havana h@'v&n@ K6%,Nn% 3 +Havanas h@'v&n@z Kj% 3 +Haverfordwest ,h&v@f@d'west Nn% 4 +Haverhill 'heIv@rIl Nn$ 3 +Havering 'heIv@rIN Nn% 3 +Hawaii h@'waIi Nm% 3 +Hawick 'hOIk Nn$ 2 +Hawke's Bay ,hOks 'beI Nm$ 2 +Hayling 'heIlIN Nn% 2 +Haywards Heath ,heIw@dz 'hiT Nn% 3 +Hazel 'heIzl Nl% 2 +Heanor 'hin@R Nn$ 2 +Heather 'heD@R Nl% 2 +Heaviside 'hevIsaId No$ 3 +Hebden Royal ,hebd@n 'roI@l Nn$ 4 +Hebraic hi'breIIk OA$ 3 +Hebrew 'hibru M6%,OA% 2 +Hebrews 'hibruz Mj% 2 +Hedge End ,hedZ 'end Nn$ 2 +Hegira 'hedZIr@ K6$ 3 +Hegiras 'hedZIr@z Kj$ 3 +Heidelburg 'haIdlb3g Nn% 3 +Hejira 'hedZIr@ K6$ 3 +Hejiras 'hedZIr@z Kj$ 3 +Helen 'hel@n Nl% 2 +Helensburgh 'helInzbr@ Nn% 3 +Hellene 'helin K6% 2 +Hellenes 'helinz Kj% 2 +Hellenic he'linIk OA% 3 +Helsinki 'helsINkI Nn% 3 +Helston 'helst@n Nn$ 2 +Hemel Hempstead ,heml 'hempstId Nn% 4 +Hemsworth 'hemzw@T Nn$ 2 +Henley-on-Thames ,henlI-0n-'temz Nn% 4 +Henry 'henrI Nl% 2 +Herb h3b Nl% 1 +Herbert 'h3b@t Nl% 2 +Hereford 'herIf@d Nm% 3 +Herne h3n Nn$ 1 +Herne Bay ,h3n 'beI Nn% 2 +Herr he@R Ki% 1 +Herren 'her@n Kj$ 2 +Hertford 'hAtf@d Nn% 2 +Hertfordshire 'hAtf@dS@R Nm% 3 +Hertzian 'h3tsI@n OA$ 3 +Hetton 'hetn Nn$ 2 +Hexham 'heks@m Nn$ 2 +Hey presto ,heI 'prest@U W-$ 3 +Heysham 'hiS@m Nn$ 2 +Heywood 'heIwUd Nn$ 2 +High Spen ,haI 'spen Nn$ 2 +High Wycombe ,haI 'wIk@m Nn% 3 +Highland 'haIl@nd Nm% 2 +Highlander 'haIl@nd@R K6% 3 +Highlanders 'haIl@nd@z Kj% 3 +Hilary 'hIl@rI Nl% 3 +Hilda 'hIld@ Nl% 2 +Hillingdon 'hIlINd@n Nn% 3 +Hinckley 'hINklI Nn$ 2 +Hindi 'hIndi L@%,OA% 2 +Hindu ,hIn'du K6%,OA% 2 +Hinduism 'hInduIz@m L@% 4 +Hindus ,hIn'duz Kj% 2 +Hindustani ,hIndU'stAnI K6%,OA% 4 +Hindustanis ,hIndU'stAnIz Kj% 4 +Hippocratic ,hIp@'kr&tIk OA% 4 +Hiroshima hI'r0SIm@ Nn% 4 +Hitchin 'hItSIn Nn% 2 +Hobson 'h0bsn No$ 2 +Hockley 'h0klI Nn$ 2 +Hoddesdon 'h0dzd@n Nn$ 2 +Hofei ,h@U'feI Nn$ 2 +Hogmanay 'h0gm@neI K6%,No% 3 +Hogmanays 'h0gm@neIz Kj$ 3 +Holland 'h0l@nd Nm% 2 +Hollander 'h0l@nd@R K6$,OA$ 3 +Hollanders 'h0l@nd@z Kj$ 3 +Hollywood 'h0lIwUd No% 3 +Holmfirth 'h@Umf@T Nn% 2 +Holyhead 'h0lIhed Nn% 3 +Homeric h@U'merIk OA% 3 +Hon h0n Y:% 1 +Honduran h0n'djU@r@n K6%,OA% 3 +Hondurans h0n'djU@r@nz Kj% 3 +Honduras h0n'djU@r@s Nm% 3 +Hong Kong ,h0N 'k0N Nm% 2 +Honiton 'h0nItn Nn% 3 +Hoo hu Nn$ 1 +Hoover 'huv@R H0%,K6% 26A +Hoovered 'huv@d Hc%,Hd% 26A +Hoovering 'huv@rIN Hb% 36A +Hoovers 'huv@z Ha%,Kj% 26A +Hope h@Up Nn% 1 +Horace 'h0rIs Nl% 2 +Horley 'hOlI Nn$ 2 +Hornsea 'hOnzI Nn$ 2 +Horsham 'hOS@m Nn$ 2 +Horsley 'hOzlI Nn$ 2 +Horwich 'h0rItS Nn% 2 +Hosp h0sp Y=% 1 +Host h@Ust Ki$ 1 +Houghton 'hOtn Nn$ 2 +Hounslow 'haUnzl@U Nn% 2 +Houston 'hjustn Nn% 2 +Hove h@Uv Nn% 1 +Howard 'haU@d Nl% 2 +Hoylake 'hoIleIk Nn% 2 +Hoyland Nether ,hoIlnd 'neD@R Nn$ 4 +Hubert 'hjub@t Nl% 2 +Hucknall 'hVknl Nn$ 2 +Huddersfield 'hVd@sfild Nn% 3 +Hugh hju Nl% 1 +Hughie 'hjuI Nl% 2 +Huguenot 'hjug@n@U K6% 3 +Huguenots 'hjug@n@Uz Kj% 3 +Huhehot ,huhI'h0t Nn$ 3 +Humberside 'hVmb@saId Nm% 3 +Humberston 'hVmb@st@n Nn$ 3 +Humphrey 'hVmfrI Nl% 2 +Hun hVn K6$ 1 +Hungarian ,hVN'ge@rI@n M6%,OA% 4 +Hungarians ,hVN'ge@rI@nz Mj% 4 +Hungary 'hVNg@rI Nm% 3 +Huns hVnz Kj$ 1 +Huntingdon 'hVntINd@n Nn% 3 +Hurstpierpoint ,h3spi@'poInt Nn$ 3 +Hwainan ,hwaI'n&n Nn$ 2 +Hyde haId Nn% 1 +Hyderabad 'haIdr@b&d Nn% 3 +Hythe haID Nn% 1 +I aI Ki$,Qx* 1 +I'd aId Gf% 1 +I'll aIl Gf* 1 +I'm aIm Gf* 1 +I's aIz Kj$ 1 +I've aIv Gf% 1 +IBA ,aI,bi'eI Y>% 3 +ICBM ,aI,si,bi'em Y>% 4 +ILO ,aI,e'l@U Y>% 3 +IMF ,aI,e'mef Y>% 3 +IOU ,aI@U'ju Y>% 3 +IOUs ,aI@U'juz Y)% 3 +IQ ,aI'kju Y}% 2 +IRA ,aI,A'reI Y>% 3 +ITV ,aI,ti'vi Y>% 3 +IUD ,aI,ju'di Y>% 3 +Ian 'I@n Nl% 2 +Ibadan I'b&dn Nn% 3 +Iceland 'aIsl@nd Nm% 2 +Icelander 'aIsl@nd@R K6%,OA% 3 +Icelanders 'aIsl@nd@z Kj% 3 +Icelandic aIs'l@ndIk L@%,OA% 3 +Ida 'aId@ Nl% 2 +Idaho 'aId@h@U Nm% 3 +Ilfracombe 'Ilfr@kum Nn% 3 +Ilkeston 'Ilkst@n Nn% 2 +Ilkley 'IlklI Nn% 2 +Illinois ,Il@'noI Nm% 3 +Immingham 'ImIN@m Nn$ 3 +Inc INk Y~% 1 +Inchon ,In'tS0n Nn$ 2 +India 'IndI@ Nm% 3 +India-rubber 'IndI@-rVb@R M6% 5 +India-rubbers 'IndI@-rVb@z Mj$ 5 +Indiaman 'IndI@m@n Ki$ 4 +Indiamen 'IndI@m@n Kj$ 4 +Indian 'IndI@n K6%,OA% 3 +Indiana ,IndI'&n@ Nm% 4 +Indianapolis ,Indi@'n&p@lIs Nn% 6 +Indians 'IndI@nz Kj% 3 +Indies 'IndIz Nm% 2 +Indo- ,Ind@U- U-% 2 +Indo-European ,Ind@U-,jU@r@'pi@n OA% 6 +Indonesia ,Ind@'nizI@ Nm% 5 +Indonesian ,Ind@'nizI@n M6%,OA% 5 +Indonesians ,Ind@'nizI@nz Mj% 5 +Indore In'dOR Nn$ 2 +Ingatestone 'INgeItst@Un Nn$ 3 +Ingrid 'INgrId Nl% 2 +Innsbruck 'InzbrUk Nn% 2 +Inst Inst Y=% 1 +Interpol 'Int@p0l No% 3 +Inverkeithing ,Inv@'kiDIN Nn$ 4 +Inverness ,Inv@'nes Nn% 3 +Inverurie ,Inv@'rurI Nn$ 4 +Ionic aI'0nIk OA% 3 +Iowa 'aI@w@ Nm% 3 +Ipswich 'IpswItS Nn% 2 +Iran I'rAn Nm% 2 +Iranian I'reInI@n M6%,OA% 4 +Iranians I'reInI@nz Mj% 4 +Iraq I'rAk Nm% 2 +Iraqi I'rAkI K6%,OA% 3 +Iraqis I'rAkIz Kj% 3 +Ireland 'aI@l@nd Nm% 2 +Irene 'aIrin Nl% 2 +Iris 'aIrIs Nl% 2 +Irish 'aIrIS L@%,OA% 2 +Irishman 'aIrISm@n Ki% 3 +Irishmen 'aIrISm@n Kj% 3 +Irishwoman 'aIrISwUm@n Ki% 4 +Irishwomen 'aIrISwImIn Kj% 4 +Irthlingborough '3TlINbr@ Nn$ 3 +Irvine '3vaIn Nn% 2 +Isaac 'aIz@k Nl% 2 +Isabel 'Iz@bel Nl% 3 +Isabella ,Iz@'bel@ Nl% 4 +Islam Iz'lAm L@% 2 +Islamic Iz'l&mIk OA% 3 +Islington 'IzlINt@n Nn% 3 +Isobel 'Iz@bel Nl% 3 +Israel 'IzreIl Nm% 2 +Israeli Iz'reIlI K6%,OA% 3 +Israelis Iz'reIlIz Kj% 3 +Istanbul ,Ist&n'bUl Nn% 3 +Italian I't&lI@n M6%,OA% 4 +Italians I't&lI@nz Mj% 4 +Italy 'It@lI Nm% 3 +Ivan 'aIv@n Nl% 2 +Iver 'aIv@R Nn$ 2 +Ivor 'aIv@R Nl% 2 +Ivy 'aIvI Nl% 2 +Izmir Iz'mI@R Nn$ 2 +J dZeI Ki$ 1 +J's dZeIz Kj$ 1 +JC ,dZeI'si Y=$ 2 +JP ,dZeI'pi Y>% 2 +Jabalpur ,dZAbl'pU@R Nn$ 3 +Jack dZ&k Nl% 1 +Jackie 'dZ&kI Nl% 2 +Jacksonville 'dZ&ks@nvIl Nn$ 3 +Jacob 'dZeIk@b Nl% 2 +Jacobean ,dZ&k@'bI@n OA% 4 +Jacobin 'dZ&k@bIn K6$,OA$ 3 +Jacobinism 'dZ&k@bInIz@m L@$ 5 +Jacobins 'dZ&k@bInz Kj$ 3 +Jacobite 'dZ&k@baIt K6% 3 +Jacobites 'dZ&k@baIts Kj% 3 +Jacqueline 'dZ&k@lin Nl% 3 +Jaipur ,dZaI'pU@R Nn% 2 +Jakarta dZ@'kAt@ Nn% 3 +Jake dZeIk Nl% 1 +Jamaica dZ@'meIk@ Nm% 3 +Jamaican dZ@'meIk@n K6%,OA% 3 +Jamaicans dZ@'meIk@nz Kj% 3 +James dZeImz Nl% 1 +Jan dZ&n Nl%,Y=% 1 +Jane dZeIn Nl% 1 +Janet 'dZ&nIt Nl% 2 +Janice 'dZ&nIs Nl% 2 +Janie 'dZeInI Nl% 2 +Januaries 'dZ&njUrIz Kj$ 3 +January 'dZ&njUrI K8%,No% 3 +Janus 'dZeIn@s No$ 2 +Japan dZ@'p&n Nm% 2 +Japanese ,dZ&p@'niz M9%,OA% 3 +Jarrow 'dZ&r@U Nn% 2 +Jason 'dZeIs@n Nl% 2 +Java 'dZAv@ Nm% 2 +Javanese ,dZAv@'niz K9%,OA% 3 +Jean dZin Nl% 1 +Jeanie 'dZinI Nl% 2 +Jedburgh 'dZedbr@ Nn% 2 +Jeff dZef Nl% 1 +Jeffrey 'dZefrI Nl% 2 +Jehovah dZI'h@Uv@ No% 3 +Jekyll-and-Hyde ,dZekl-@n-'haId No% 4 +Jennifer 'dZenIf@R Nl% 3 +Jenny 'dZenI Nl% 2 +Jeremy 'dZer@mI Nl% 3 +Jerome dZe'r@Um Nl% 2 +Jerry 'dZerI Nl% 2 +Jersey 'dZ3zI Nm% 2 +Jess dZes Nl% 1 +Jessica 'dZesIk@ Nl% 3 +Jessie 'dZesI Nl% 2 +Jesuit 'dZezjUIt K6% 3 +Jesuitical ,dZezjU'ItIkl OA% 5 +Jesuits 'dZezjUIts Kj% 3 +Jesus 'dZiz@z Nl% 2 +Jew dZu K6% 1 +Jewess dZuIs K7% 2 +Jewesses 'dZuIsIz Kj% 3 +Jewish 'dZuIS OA% 2 +Jews dZuz Kj% 1 +Jezebel 'dZez@bl K6% 3 +Jezebels 'dZez@blz Kj$ 3 +Jill dZIl Nl% 1 +Jim dZIm Nl% 1 +Jim Crow ,dZIm 'kr@U Ki$ 2 +Jimmy 'dZImI Nl% 2 +Jnr 'dZunI@R Y~% 3 +Jo dZ@U Nl% 1 +Joan dZ@Un Nl% 1 +Joanie 'dZ@UnI Nl% 2 +Joann dZ@U'&n Nl% 2 +Joanna dZ@U'&n@ Nl% 3 +Joanne dZ@U'&n Nl% 2 +Job dZ@Ub Nl$ 1 +Jobs dZ@Ubz Kj$ 1 +Jocelyn 'dZ0slIn Nl% 2 +Joe dZ@U Nl% 1 +Joey 'dZ@UI Nl% 2 +Johannesburg dZ@'h&n@zb3g Nn% 4 +John dZ0n Nl% 1 +John Bull ,dZ0n 'bUl Ki$ 2 +Johnny 'dZ0nI Nl% 2 +Johnstone 'dZ0nst@n Nn$ 2 +Jonah 'dZ@Un@ Nl% 2 +Jonathan 'dZ0n@T@n Nl% 3 +Jordan 'dZOdn Nm% 2 +Jordanian dZO'deInI@n K6%,OA% 4 +Jordanians dZO'deInI@nz Kj% 4 +Joseph 'dZ@UzIf Nl% 2 +Josephine 'dZ@Uz@fin Nl% 3 +Josh dZ0S Nl% 1 +Joshua 'dZ0SU@ Nl% 3 +Jove dZ@Uv No% 1 +Joy dZoI Nl% 1 +Joyce dZoIs Nl% 1 +Judaic dZu'deIIk OA% 3 +Judaism 'dZudeIIz@m L@% 4 +Judas 'dZud@s K7%,Nl% 2 +Judases 'dZud@sIz Kj$ 3 +Judith 'dZudiT Nl% 2 +Judy 'dZudI Nl% 2 +Jul dZ@'laI Y=% 2 +Julia 'dZulI@ Nl% 3 +Julian 'dZulI@n Nl%,OA% 3 +Julie 'dZulI Nl% 2 +Juliet 'dZUlIet Nl% 3 +July dZu'laI Ki% 2 +Jun dZun Y=% 1 +June dZun K6%,Nl% 1 +Junes dZunz Kj% 1 +Junoesque ,dZun@U'esk OA$ 3 +Jupiter 'dZupIt@R No% 3 +Justin 'dZVstIn Nl% 2 +K keI Ki$ 1 +K's keIz Kj$ 1 +KGB ,keI,dZi'bi Y>% 3 +KO ,keI'@U Y>% 2 +Kaiser 'kaIz@R K6% 2 +Kaisers 'kaIz@z Kj% 2 +Kalgan ,kAl'gAn Nn$ 2 +Kampuchea k&mpU'tSI@ Nm% 4 +Kampuchean k&mpU'tSI@n K6%,OA% 4 +Kampucheans k&mpU'tSI@nz Kj% 4 +Kanpur ,kAn'pU@R Nn% 2 +Kansas 'k&nz@s Nm% 2 +Kansas City ,k&nz@s 'sItI Nn% 4 +Kaohsiung ,kaU'SjUN Nn$ 2 +Karachi k@'rAtSI Nn% 3 +Karaganda ,k&r@'g&nd@ Nn$ 4 +Karen 'k&r@n Nl% 2 +Karlsruhe 'kAlzrU@ Nn% 3 +Kashmir k&S'mI@R Nm% 2 +Kashmiri k&S'mI@rI K6%,OA% 3 +Kashmiris k&S'mI@rIz Kj% 3 +Kassel 'k&s@l Nn$ 2 +Kate keIt Nl% 1 +Kath k&T Nl% 1 +Katherine 'k&TrIn Nl% 2 +Kathy 'k&Ti Nl% 2 +Katie 'keItI Nl% 2 +Katowice ,k&t@'vitS@ Nn$ 4 +Kay keI Nl% 1 +Kazan k@'z&n Nn$ 2 +Keighley 'kiTlI Nn% 2 +Keith kiT Nl% 1 +Kelso 'kels@U Nn% 2 +Kelt kelt K6$ 1 +Kelts kelts Kj$ 1 +Kelty 'keltI Nn$ 2 +Kemsing 'kemzIN Nn$ 2 +Ken ken Nl% 1 +Kendal 'kendl Nn% 2 +Kenilworth 'kenlw@T Nn% 3 +Kenneth 'kenIT Nl% 2 +Kenny 'kenI Nl% 2 +Kensington 'kenzINt@n Nn% 3 +Kent kent Nm% 1 +Kentucky ken'tVkI Nm% 3 +Kenya 'kenj@ Nm% 2 +Kenyan 'kenj@n K6%,OA% 2 +Kenyans 'kenj@nz Kj% 2 +Kerry 'kerI Nm% 2 +Kettering 'ket@rIN Nn% 3 +Kevin 'kevIn Nl% 2 +Keynsham 'keInS@m Nn$ 2 +Keyworth 'kiw@T Nn$ 2 +Khalka 'k&lk@ L@$ 2 +Kharkov 'kAk0f Nn$ 2 +Khartoum ,kA'tum Nn% 2 +Khmer kme@R L@$ 1 +Kidderminster 'kId@mInst@R Nn% 4 +Kidlington 'kIdlINt@n Nn% 3 +Kidsgrove 'kIdzgr@Uv Nn% 2 +Kiev 'kief Nn% 2 +Kilbirnie kIl'b3nI Nn$ 3 +Kildare kIl'de@R Nm$ 2 +Kilkenny kIl'kenI Nm% 3 +Killarney kI'lAnI Nn% 3 +Kilmarnock kIl'mAn@k Nn% 3 +Kilsyth kIl'saIT Nn$ 2 +Kilwinning kIl'wInIN Nn$ 3 +Kimberley 'kImb@lI Nn% 3 +King's Lynn ,kINz 'lIn Nn% 2 +Kingsbury 'kINzb@rI Nn$ 3 +Kingsteignton kIN'steIntn Nn$ 3 +Kingston 'kINst@n Nn% 2 +Kingston upon Hull ,kINst@n Vp0n 'hVl Nn% 5 +Kingston upon Thames ,kINst@n Vp0n 'temz Nn% 5 +Kinshasa kIn'SAs@ Nn% 3 +Kippax 'kIp&ks Nn$ 2 +Kirin ,kI'rIn Nn$ 2 +Kirkby 'k3bI Nn% 2 +Kirkby in Ashfield ,k3bI In '&Sfild Nn$ 5 +Kirkcaldy k@'kOdI Nn% 3 +Kirkham 'k3k@m Nn$ 2 +Kirkintilloch ,k3kIn'tIl@k Nn$ 4 +Kirkwall 'k3kwOl Nn$ 2 +Kitakyushu ,kIt@'kjuSu Nn$ 4 +Kitty 'kItI Nl% 2 +Knaresborough 'ne@zbr@ Nn% 3 +Knesset 'kneset K6% 2 +Knessets 'knesets Kj$ 2 +Knottingley 'n0tINlI Nn$ 3 +Knutsford 'nVtsf@d Nn% 2 +Kobe 'k@UbI Nn$ 2 +Koblenz k@'blents Nn% 2 +Koln k3ln Nn% 1 +Koran k@'rAn K6% 2 +Koranic k@'r&nIk OA% 3 +Korans k@'rAnz Kj$ 2 +Korea k@'rI@ Nm% 3 +Korean k@'rI@n M6%,OA% 3 +Koreans k@'rI@nz Mj% 3 +Krakow 'krAk0f Nn% 2 +Krasnoyarsk ,kr&zn@'jAsk Nn$ 3 +Krefeld 'kreIfelt Nn% 2 +Kremlin 'kremlIn K6% 2 +Kremlins 'kremlInz Kj$ 2 +Krivoi Rog krI,voI 'r0k Nn$ 3 +Kunming ,kUn'mIN Nn$ 2 +Kuwait kU'weIt Nm% 2 +Kuwait City ,kUweIt 'sItI Nn% 4 +Kuwaiti kU'weItI K6%,OA% 3 +Kuwaitis kU'weItIz Kj% 3 +Kuybyshev 'kUbISef Nn$ 3 +Kweiyang ,kweI'jAN Nn$ 2 +Kyoto kI'@Ut@U Nn% 3 +L el Ki$ 1 +L's elz Kj$ 1 +L-plate 'el-pleIt K6% 2 +L-plates 'el-pleIts Kj% 2 +LA ,e'leI Y=% 2 +LEA ,el,i'eI Y>% 3 +LLB ,el,el'bi Y>% 3 +LP ,el'pi Y>% 2 +LPs ,el'piz Y)% 2 +LSD ,el,es'di Y}% 3 +La Habana l& h@'bAn@ Nn$ 4 +La Paz l& 'p&z Nn% 2 +La Plata l& 'plAt@ Nn% 3 +La Spezia l& 'spetsI@ Nn% 4 +Lab l&b Y~% 1 +Labourite 'leIb@raIt K6% 3 +Labourites 'leIb@raIts Kj% 3 +Labrador 'l&br@dOR Nm% 3 +Lady-chapel 'leIdI-tS&pl K6% 4 +Lady-chapels 'leIdI-tS&plz Kj% 4 +Lagos 'leIg0s Nn% 2 +Lahore l@'hOR Nn% 2 +Lakenheath 'leIknhiT Nn$ 3 +Lambeth 'l&mb@T Nn% 2 +Lammas 'l&m@s K7$,No$ 2 +Lammases 'l&m@sIz Kj$ 3 +Lanark 'l&n@k Nn% 2 +Lancashire 'l&Nk@S@R Nm% 3 +Lancaster 'l&NkIst@R Nn% 3 +Lancastrian l&N'k&strI@n K6%,OA% 4 +Lancastrians l&N'k&strI@nz Kj% 4 +Lanchow ,l&n'tSaU Nn$ 2 +Lancing 'lAnsIN Nn% 2 +Landrover 'l&ndr@Uv@R K6% 3 +Landrovers 'l&ndr@Uv@z Kj% 3 +Lao 'l&@U L@$ 2 +Laos 'lA0s Nm% 2 +Laotian 'lA0Sn M6%,OA% 3 +Laotians 'lA0Snz Mj% 3 +Largs lAgz Nn$ 1 +Larkhall 'lAkhOl Nn$ 2 +Larne lAn Nn$ 1 +Larry 'l&rI Nl% 2 +Las Palmas l&s 'p&lm@s Nn% 3 +Latin 'l&tIn K6%,OA% 2 +Latinist 'l&tInIst K6% 3 +Latinists 'l&tInIsts Kj$ 3 +Latinize 'l&tInaIz H2% 3 +Latinized 'l&tInaIzd Hc%,Hd% 3 +Latinizes 'l&tInaIzIz Ha% 4 +Latinizing 'l&tInaIzIN Hb% 4 +Latins 'l&tInz Kj% 2 +Laura 'lOr@ Nl% 2 +Laurence 'l0r@ns Nl% 2 +Lausanne l@U'z&n Nn% 2 +Lawrence 'l0r@ns Nl% 2 +Lazarus 'l&z@r@s Ki%,Nl% 3 +Lazaruses 'l&z@r@sIz Kj$ 4 +Le Havre l@ 'hAvr@ Nn% 3 +Le Mans l@ 'm0N Nn% 2 +Leamington Spa ,lemINt@n 'spA Nn% 4 +Leatherhead 'leD@hed Nn% 3 +Lebanese ,leb@'niz K9%,OA% 3 +Lebanon 'leb@n@n Nm% 3 +Leeds lidz Nn% 1 +Leek lik Nn$ 1 +Leicester 'lest@R Nn% 2 +Leicestershire 'lest@S@R Nm% 3 +Leiden 'laIdn Nn% 2 +Leigh li Nn% 1 +Leighton-Linslade ,leItn-'lInzleId Nn$ 4 +Leinster 'lenst@R Nm% 2 +Leipzig 'laIpzIg Nn% 2 +Leitrim 'litrIm Nm$ 2 +Leix liS Nm$ 1 +Len len Nl% 1 +Leningrad 'lenIngr&d Nn% 3 +Lenny 'lenI Nl% 2 +Lens l0ns Nn$ 1 +Lent lent K6%,No% 1 +Lenten 'lent@n OA% 2 +Lents lents Kj$ 1 +Leo 'li@U Nl% 2 +Leominster 'lemst@R Nn$ 2 +Leon 'li@n Nn% 2 +Leonard 'len@d Nl% 2 +Lerwick 'l3wIk Nn% 2 +Les lez Nl% 1 +Lesley 'lezlI Nl% 2 +Leslie 'lezlI Nl% 2 +Lesotho l@'sutu Nm% 3 +Letchworth 'letSw@T Nn% 2 +Lethe 'liTI No$ 2 +Levant lI'v&nt No% 2 +Levantine l@'v&ntaIn K6%,OA% 3 +Levantines l@'v&ntaInz Kj% 3 +Leven 'levn Nn$ 2 +Leverkusen 'leIv@kuzn Nn$ 4 +Lewes 'luIs Nn% 2 +Lewis 'luIs Nl% 2 +Lewisham 'luIS@m Nn% 3 +Leyland 'leIl@nd Nn% 2 +Lib lIb Y~% 1 +Liberia laI'bI@rI@ Nm% 4 +Liberian laI'bI@rI@n K6%,OA% 4 +Liberians laI'bI@rI@nz Kj% 4 +Libra 'libr@ No% 2 +Libya 'lIbI@ Nm% 3 +Libyan 'lIbI@n K6%,OA% 3 +Libyans 'lIbI@nz Kj% 3 +Lichfield 'lItSfild Nn% 2 +Liechtenstein 'lIkt@nstaIn Nm% 3 +Liechtensteiner 'lIkt@nstaIn@R K6%,OA% 4 +Liechtensteiners 'lIkt@nstaIn@z Kj% 4 +Liege lI'eIZ Nn% 2 +Lilian 'lIlI@n Nl% 3 +Lille lil Nn% 1 +Lilliputian ,lIlI'pjuSn K6$,OA$ 4 +Lilliputians ,lIlI'pjuSnz Kj$ 4 +Lily 'lIlI Nl% 2 +Lima 'lim@ Nn% 2 +Limerick 'lIm@rIk Nn% 3 +Limoges lI'm@UZ Nn% 2 +Lincoln 'lINk@n Nn% 2 +Lincolnshire 'lINk@nS@R Nm% 3 +Linda 'lInd@ Nl% 2 +Linlithgow lIn'lITg@U Nn$ 3 +Linwood 'lInwUd Nn$ 2 +Linz lInts Nn$ 1 +Lionel 'laI@nl Nl% 3 +Lisa 'lis@ Nl% 2 +Lisbon 'lIzb@n Nn% 2 +Liskeard lIs'kAd Nn$ 2 +Littlehampton 'lItlh&mt@n Nn% 4 +Liverpool 'lIv@pul Nn% 3 +Liverpudlian ,lIv@'pVdlI@n K6%,OA% 5 +Liverpudlians ,lIv@'pVdlI@nz Kj% 5 +Livingston 'lIvINst@n Nn% 3 +Livorno lI'vOn@U Nn% 3 +Liz lIz Nl% 1 +Liza 'laIz@ Nl% 2 +Lizzy 'lIzI Nl% 2 +Ljubljana ,ljublI'An@ Nn% 4 +Llandudno l&n'dIdn@U Nn% 3 +Llanelli l&'neTlI Nn% 3 +Llangollen l&n'g0Tl@n Nn% 3 +Llantrisant l&n'trIznt Nn$ 3 +Llantwit Major ,l&ntwIt 'meIdZ@R Nn$ 4 +Lloyd's loIdz No% 1 +Loanhead 'l@Unhed Nn$ 2 +Lochgelly l0k'gelI Nn$ 3 +Lodz l0dz Nn$ 1 +Loftus 'l0ft@s Nn$ 2 +Lois 'l@UIs Nl% 2 +London 'lVnd@n Nn% 2 +Londonderry 'lVnd@nderI Nn% 4 +Londoner 'lVnd@n@R K6% 3 +Londoners 'lVnd@n@z Kj% 3 +Long Eaton ,l0N 'itn Nn$ 3 +Longridge 'l0NrIdZ Nn$ 2 +Longton 'l0Nt@n Nn$ 2 +Lorna 'lOn@ Nl% 2 +Los Angeles l0s '&ndZIliz Nn% 4 +Lossiemouth 'l0sIm@T Nn% 3 +Lothian 'l@UDI@n Nm% 3 +Loughborough 'lVfbr@ Nn% 2 +Louis 'luI Nl% 2 +Louise lu'iz Nl% 2 +Louisiana lu,izI'&n@ Nm% 5 +Louisville 'luIvIl Nn% 3 +Louth laUD Nm$ 1 +Lowestoft 'l@UIst0ft Nn% 3 +Loyang ,l@U'jAN Nn$ 2 +Lt ,lef'ten@nt Y:% 3 +Ltd 'lImItId Y=% 3 +Lubeck 'lubek Nn% 2 +Lucifer 'lusIf@R K6% 3 +Lucifers 'lusIf@z Kj% 3 +Lucknow 'lVknaU Nn% 2 +Lucy 'lusI Nl% 2 +Luddite 'lVdaIt K6% 2 +Luddites 'lVdaIts Kj% 2 +Ludlow 'lVdl@U Nn% 2 +Ludwigshafen 'lVdvIgzhAfn Nn$ 4 +Luke luk Nl% 1 +Luta 'lut@ Nn$ 2 +Lutheran 'luT@r@n K6%,OA% 3 +Lutherans 'luT@r@nz Kj% 3 +Luton 'lutn Nn% 2 +Luxembourg 'lVks@mb3g Nn% 3 +Luxemburg 'lVks@mb3g Nm% 3 +Luxemburger 'lVks@mb3g@R K6%,OA% 4 +Luxemburgers 'lVks@mb3g@z Kj% 4 +Lvov l@'v0f Nn$ 2 +Lyallpur ,laI@l'pu@R Nn$ 3 +Lydia 'lIdI@ Nl% 3 +Lydney 'lIdnI Nn$ 2 +Lymington 'lImINt@n Nn% 3 +Lymm lIm Nn$ 1 +Lynn lIn Nl% 1 +Lynne lIn Nl% 1 +Lyons 'laI@nz Nn% 2 +Lytham 'lID@m Nn% 2 +Lytham St Annes ,lIDm snt '&nz Nn% 3 +M em Ki$ 1 +M's emz Kj$ 1 +MA ,em'eI Y>% 2 +MB ,em'bi Y>% 2 +MC ,em'si Y>% 2 +MCC ,em,si'si Y>% 3 +MD ,em'di Y>% 2 +MI5 ,em,aI'faIv Y=% 3 +MI6 ,em,aI'sIks Y=% 3 +MP ,em'pi Y>% 2 +MP's ,em'piz Y)% 2 +MS 'm&nj@skrIpt Y>% 3 +MSc ,em,es'si Y>% 3 +Maastricht 'mAstrIkt Nn% 2 +Mabel 'meIbl Nl% 2 +Macclesfield 'm&klzfild Nn% 3 +Macedonian ,m&sI'd@UnI@n M6%,OA% 5 +Macedonians ,m&sI'd@UnI@nz Mj% 5 +Mach mAk No% 1 +Madagascan ,m&d@'g&sk@n K6%,OA% 4 +Madagascans ,m&d@'g&sk@nz Kj% 4 +Madagascar ,m&d@'g&sk@R Nm% 4 +Madame m@'dAm K6% 2 +Madames m@'dAmz Kj$ 2 +Maddy 'm&dI Nl% 2 +Madeira m@'dI@r@ K6% 3 +Madeiras m@'dI@r@z Kj% 3 +Madeleine 'm&d@lIn Nl% 3 +Mademoiselle ,m&dmw@'zel K6% 3 +Mademoiselles ,m&dmw@'zelz Kj% 3 +Madge m&dZ Nl% 1 +Madonna m@'d0n@ K6% 3 +Madonnas m@'d0n@z Kj% 3 +Madras m@'drAs Nn% 2 +Madrid m@'drId Nn% 2 +Madurai 'm&djVraI Nn$ 3 +Maecenas maI'sin@s No$ 3 +Maesteg 'maIsteg Nn% 2 +Mafia 'm&fI@ K6% 3 +Mafias 'm&fI@z Kj$ 3 +Magdeburg 'm&gdIb3g Nn$ 3 +Maggie 'm&gI Nl% 2 +Maghull m@'gVl Nn% 2 +Magi 'meIdZaI Kj% 2 +Magnificat m&g'nIfIk&t K6% 4 +Magnificats m&g'nIfIk&ts Kj$ 4 +Magyar 'm&gjAR M6%,OA% 2 +Magyars 'm&gjAz Mj% 2 +Maharaja ,mAh@'rAdZ@ K6% 4 +Maharajah ,mAh@'rAdZ@ K6% 4 +Maharajahs ,mAh@'rAdZ@z Kj% 4 +Maharajas ,mAh@'rAdZ@z Kj% 4 +Maharanee ,mAh@'rAni K6$ 4 +Maharanees ,mAh@'rAniz Kj$ 4 +Mahatma m@'h&tm@ K6% 3 +Mahatmas m@'h&tm@z Kj$ 3 +Maidenhead 'meIdnhed Nn% 3 +Maidstone 'meIdst@n Nn% 2 +Maine meIn Nm% 1 +Mainz meInts Nn% 1 +Maj 'meIdZ@R Y:% 2 +Malaga 'm&l@g@ Nn% 3 +Malawi m@'lAwI Nm% 3 +Malawian m@'lAwI@n K6%,OA% 4 +Malawians m@'lAwI@nz Kj% 4 +Malay m@'leI M6%,OA% 2 +Malaya m@'leI@ Nm% 3 +Malayan m@'leI@n K6%,OA% 3 +Malayans m@'leI@nz Kj% 3 +Malays m@'leIz Mj% 2 +Malaysia m@'leIzI@ Nm% 4 +Malaysian m@'leIzI@n K6%,OA% 4 +Malaysians m@'leIzI@nz Kj% 4 +Malcolm 'm&lk@m Nl% 2 +Maldon 'm0ldn Nn% 2 +Mali 'mAlI Nm% 2 +Malian 'mAlI@n K6$,OA$ 3 +Malians 'mAlI@nz Kj$ 3 +Mallow 'm&l@U Nn$ 2 +Malmo 'm&lm@U Nn% 2 +Malta 'mOlt@ Nm% 2 +Maltby 'm0ltbI Nn$ 2 +Maltese mOl'tiz M9%,OA% 2 +Malthusian m&l'TjuzI@n OA$ 4 +Malvern 'm0lvn Nn% 2 +Mamie 'meImI Nl$ 2 +Manchester 'm&ntSIst@R Nn% 3 +Mancunian m&n'kjunI@n K6%,OA% 4 +Mancunians m&n'kjunI@nz Kj% 4 +Mandy 'm&ndI Nl% 2 +Manila m@'nIl@ Nn% 3 +Manilla m@'nIl@ K6% 3 +Manillas m@'nIl@z Kj$ 3 +Manitoba ,m&nI't@Ub@ Nm% 4 +Mannheim 'm&nhaIm Nn% 2 +Mansfield 'm&nsfild Nn% 2 +Manx m&Nks L@%,OA% 1 +Maoism 'maUIz@m L@% 3 +Maoist 'maUIst K6% 2 +Maoists 'maUIsts Kj% 2 +Maori 'maUrI K6% 2 +Maoris 'maUrIz Kj% 2 +Mar mAtS Y=% 1 +Maracaibo ,m&r@'kaIb@U Nn$ 4 +March mAtS K7%,Nn% 1 +Marches 'mAtSIz Kj$ 2 +Mardi Gras ,mAdI 'grA K9% 3 +Margaret 'mAgrIt Nl% 2 +Margate 'mAgeIt Nn% 2 +Marge mAdZ Nl% 1 +Margery 'mAdZ@rI Nl% 3 +Margie 'mAdZI Nl% 2 +Margrave 'mAgreIv K6$ 2 +Margraves 'mAgreIvz Kj$ 2 +Maria m@'rI@ Nl% 3 +Marian 'm&rI@n Nl% 3 +Marie m@'ri Nl% 2 +Marilyn 'm&rIlIn Nl% 3 +Marion 'm&rI@n Nl% 3 +Marjorie 'mAdZ@rI Nl% 3 +Mark mAk Nl% 1 +Market Drayton ,mAkIt 'dreItn Nn% 4 +Market Harborough ,mAkIt 'hAbr@ Nn% 4 +Marlborough 'mAlbr@ Nn% 2 +Marlene mA'lin Nl% 2 +Marlow 'mAl@U Nn% 2 +Marple 'mApl Nn$ 2 +Mars mAz No% 1 +Marsala mA'sAl@ L@$ 3 +Marseillaise ,mAs@'leIz K6% 3 +Marseillaises ,mAs@'leIzIz Kj$ 4 +Marseilles mA'seIlz Nn% 2 +Marske mAsk Nn$ 1 +Martha 'mAT@ Nl% 2 +Martian 'mASn K6%,OA% 2 +Martians 'mASnz Kj% 2 +Martin 'mAtIn Nl% 2 +Marxism 'mAksIz@m L@% 3 +Marxist 'mAksIst K6% 2 +Marxists 'mAksIsts Kj% 2 +Mary 'me@rI Nl% 2 +Maryland 'me@rIl@nd Nm% 3 +Maryport 'me@rIpOt Nn$ 3 +Mason-Dixon ,meIsn-'dIksn No$ 4 +Mass m&s M7% 1 +Massachusetts ,m&s@'tSusIts Nm% 4 +Masses 'm&sIz Mj% 2 +Matlock 'm&tl0k Nn% 2 +Matt m&t Nl% 1 +Matthew 'm&Tju Nl% 2 +Maud mOd Nl% 1 +Maudie 'mOdI Nl% 2 +Maundy Thursday ,mOndI 'T3zdI K6%,No% 4 +Maundy Thursdays ,mOndI 'T3zdIz Kj$ 4 +Maureen 'mOrin Nl% 2 +Maurice 'm0rIs Nl% 2 +Mauritania ,m0rI'teInI@ Nm% 5 +Mauritanian ,m0rI'teInI@n K6%,OA% 5 +Mauritanians ,m0rI'teInI@nz Kj% 5 +Mauritian m@'rIS@n K6%,OA% 3 +Mauritians m@'rIS@nz Kj% 3 +Mauritius m@'rIS@s Nm% 3 +Mavis 'meIvIs Nl% 2 +Max m&ks Nl% 1 +Maxine 'm&ksin Nl% 2 +May meI K6%,Nl% 1 +Mayfair 'meIfe@R No% 2 +Mayfield 'meIfild Nn$ 2 +Mayo 'meI@U Nm% 2 +Mays meIz Kj$ 1 +McCarthyism m@'kATIIz@m L@% 5 +Meath miT Nm$ 1 +Mecca 'mek@ Nn% 2 +Med med Y>% 1 +Medan m@'dAn Nn$ 2 +Medellin ,med@'lin Nn$ 3 +Medicare 'medIke@R L@% 3 +Mediterranean ,medIt@'reInI@n OA% 6 +Meg meg Nl% 1 +Melbourne 'melb@n Nn% 2 +Melcombe 'melk@m Nn$ 2 +Melcombe Regis ,melk@m 'ridZIs Nn$ 4 +Melksham 'melkS@m Nn$ 2 +Meltham 'melT@m Nn$ 2 +Melton Mowbray ,meltn 'm@UbreI Nn% 4 +Memphis 'memfIs Nn% 2 +Mendelian men'dilI@n OA$ 4 +Meopham 'mep@m Nn$ 2 +Mephistophelian ,mefIst@'filI@n OA% 6 +Mercator m@'keIt@R No% 3 +Mercury 'm3kjUrI No% 3 +Merthyr Tydfil ,m3T@ 'tIdvIl Nn% 4 +Merton 'm3tn Nn% 2 +Mesdames meI'dAm Kj% 2 +Mesdemoiselles ,meIdmw@'zel Kj% 4 +Messiah mI'saI@ K6% 3 +Messiahs mI'saI@z Kj% 3 +Messieurs meI'sj3R Kj% 2 +Messina me'sin@ Nn% 3 +Messrs 'mes@z Kj% 2 +Met met No$ 1 +Methodism 'meT@dIz@m L@% 4 +Methodist 'meT@dIst K6%,OA% 3 +Methodists 'meT@dIsts Kj% 3 +Methuselah mI'Tjuz@l@ No% 4 +Metro 'metr@U K6% 2 +Metros 'metr@Uz Kj% 2 +Metz mets Nn% 1 +Mexican 'meksIk@n K6%,OA% 3 +Mexicans 'meksIk@nz Kj% 3 +Mexico 'meksIk@U Nm% 3 +Mexico City ,meksIk@U 'sItI Nn% 5 +Mgr ,m0n'sinj@R Y:% 3 +Miami maI'&mI Nn% 3 +Michael 'maIkl Nl% 2 +Michaelmas 'mIklm@s K7%,No% 3 +Michaelmases 'mIklm@sIz Kj$ 4 +Michelle mI'Sel Nl% 2 +Michigan 'mISIg@n Nm% 3 +Mick mIk Nl% 1 +Mickey 'mIkI Nl% 2 +Middlesex 'mIdlseks Nm% 3 +Middleton 'mIdlt@n Nn% 3 +Middlewich 'mIdlwItS Nn$ 3 +Midlands 'mIdl@ndz Nm% 2 +Midwest mId'west No% 2 +Midwestern mId'westn OA% 3 +Mike maIk Nl% 1 +Milan mI'l&n Nn% 2 +Milano mI'lAn@U Nn% 3 +Mildenhall 'mIld@nhAl Nn$ 3 +Mildred 'mIldrId Nl% 2 +Miles maIlz Nl% 1 +Milford 'mIlf@d Nn$ 2 +Milford Haven ,mIlf@d 'heIvn Nn% 4 +Millicent 'mIlIsnt Nl% 3 +Millie 'mIlI Nl% 2 +Millom 'mIl@m Nn$ 2 +Milly 'mIlI Nl% 2 +Milngavie mIl'gaI Nn% 2 +Milnrow mIln'r@U Nn$ 2 +Milton Keynes ,mIltn 'kinz Nn% 3 +Milwaukee mIl'wOkI Nn% 3 +Minehead 'maInhed Nn% 2 +Minneapolis ,mInI'&p@lIs Nn% 5 +Minnesota ,mInI's@Ut@ Nm% 4 +Minotaur 'maIn@tOR K6% 3 +Minotaurs 'maIn@tOz Kj$ 3 +Minsk mInsk Nn% 1 +Minster-in-Sheppey ,mInst@r-In-'SepI Nn$ 5 +Miranda mI'r&nd@ Nl% 3 +Miriam 'mIrI@m Nl% 3 +Miss mIs K7% 1 +Misses 'mIsIz Kj% 2 +Mississippi ,mIsI'sIpI Nm% 4 +Missouri mI'zU@rI Nm% 3 +Mlle m&m'zel Y:$ 2 +Mme m&'d&m Y:$ 2 +Mo m@U Nl% 1 +Mod m0d K6$ 1 +Modena m@'din@ Nn% 3 +Mods m0dz Kj$ 1 +Mohammedan m@'h&mId@n K6% 4 +Mohammedans m@'h&mId@nz Kj% 4 +Moira 'moIr@ Nl% 2 +Mold m@Uld Nn$ 1 +Molly 'm0lI Nl% 2 +Moloch 'm@Ul0k No$ 2 +Mon 'mVndeI Y=% 2 +Monaco 'm0n@k@U Nm% 3 +Monaghan 'm0n@h@n Nm% 3 +Monchengladbach ,mVntSIn'gl&db&k Nn% 4 +Monday 'mVndI K6%,No% 2 +Mondays 'mVndIz Kj% 2 +Monegasque ,m0n@'g&sk K6$,OA$ 3 +Monegasques ,m0n@'g&sks Kj$ 3 +Mongol 'm0Ngl M6%,OA% 2 +Mongolia m0N'g@UlI@ Nm% 4 +Mongolian m0N'g@UlI@n M6%,OA% 4 +Mongolians m0N'g@UlI@nz Mj% 4 +Mongols 'm0Nglz Mj% 2 +Monica 'm0nIk@ Nl% 3 +Monifieth 'm0nIfiT Nn$ 3 +Monmouth 'm0nm@T Nn% 2 +Monsieur m@'sj3R Ki% 2 +Monsignor m0n'sinj@R K6% 3 +Monsignors m0n'sinj@z Kj% 3 +Montana m0n't&n@ Nm% 3 +Monterrey ,m0nt@'reI Nn% 3 +Montevideo ,m0ntIvI'deI@U Nn% 5 +Montreal ,m0ntrI'Ol Nn% 3 +Montrose m@n'tr@Uz Nn% 2 +Montserrat ,m0nts@'r&t Nm$ 3 +Montserratian ,m0nts@'r&Sn K6$,OA$ 4 +Montserratians ,m0nts@'r&Snz Kj$ 4 +Monza 'm0nz@ Nn% 2 +Moor mU@R K6$ 1 +Moorish 'mU@rIS OA$ 2 +Moors mU@z Kj$ 1 +Morecambe 'mOk@m Nn% 2 +Moresque mO'resk OA$ 2 +Morley 'mOlI Nn$ 2 +Mormon 'mOm@n K6%,OA% 2 +Mormonism 'mOm@nIz@m L@% 4 +Mormons 'mOm@nz Kj% 2 +Moroccan m@'r0k@n K6%,OA% 3 +Moroccans m@'r0k@nz Kj% 3 +Morocco m@'r0k@U Nm% 3 +Morpeth 'mOpIT Nn$ 2 +Morpheus 'mOfI@s No$ 3 +Morse mOs L@% 1 +Mosaic m@U'zeIIk OA$ 3 +Moscow 'm0sk@U Nn% 2 +Moslem 'm0zl@m K6%,OA% 2 +Moslems 'm0zl@mz Kj% 2 +Mossley 'm0slI Nn$ 2 +Motherwell 'mVD@wel Nn% 3 +Mountain Ash ,maUntIn '&S Nn$ 3 +Mountie 'maUntI K6% 2 +Mounties 'maUntIz Kj% 2 +Mozambican ,m@Uz&m'bik@n K6%,OA% 4 +Mozambicans ,m@Uz&m'bik@nz Kj% 4 +Mozambique ,m@Uz&m'bik Nm% 3 +Mr 'mIst@R Y:* 2 +Mrs 'mIsIz Y:* 2 +Ms mIz Y:% 1 +Mt maUnt Y=% 1 +Muhammad m@'h&mId No% 3 +Muhammadan m@'h&mId@n K6%,OA% 4 +Muhammadanism m@'h&mId@nIz@m L@% 6 +Muhammadans m@'h&mId@nz Kj% 4 +Mukden 'mUkd@n Nn$ 2 +Mulheim 'mUlhaIm Nn$ 2 +Mulhouse 'mUlhaUs Nn$ 2 +Multan ,mUl'tAn Nn$ 2 +Munich 'mjunIk Nn% 2 +Munster 'mVnst@R Nm% 2 +Muriel 'mjurI@l Nl% 3 +Murton 'm3tn Nn$ 2 +Muscovies 'mVsk@vIz Kj$ 3 +Muscovite 'mVsk@vaIt K6%,OA% 3 +Muscovites 'mVsk@vaIts Kj% 3 +Muscovy 'mVsk@vI K8$ 3 +Muslim 'mUzlIm K6% 2 +Muslims 'mUzlImz Kj% 2 +Musselburgh 'mVslbr@ Nn% 3 +Myra 'maI@r@ Nl% 2 +N en Ki$ 1 +N's enz Kj$ 1 +NAAFI 'n&fI Y>% 2 +NASA 'nAs@ Y=% 2 +NATO 'neIt@U Y=% 2 +NB ,en'bi Y~% 2 +NCO ,ensI'@U Y>% 3 +NHS ,en,eI'tSes Y>% 3 +NSPCC ,en,es,pi,si'si Y>% 5 +NT ,en'ti Y>% 2 +Nagoya 'nAg@Uj@ Nn$ 3 +Nagpur n&g'pU@R Nn$ 2 +Nailsea 'neIlzI Nn$ 2 +Nairn ne@n Nn$ 1 +Nairobi naI'r@UbI Nn% 3 +Namibia n@'mIbI@ Nm% 4 +Namibian n@'mIbI@n K6%,OA% 4 +Namibians n@'mIbI@nz Kj% 4 +Nanchang ,n&n'tS&N Nn$ 2 +Nancy 'n&nsI Nl% 2 +Nanking ,n&n'kIN Nn% 2 +Nanning ,n&n'nIN Nn$ 2 +Nantwich 'n&ntwItS Nn% 2 +Naomi 'neI@mI Nl% 3 +Naples 'neIplz Nn% 2 +Napoleonic n@,p@UlI'0nIk OA% 5 +Napoli 'nAp@lI Nn% 3 +Narborough 'nAbr@ Nn$ 2 +Nat n&t Nl% 1 +Natalie 'n&t@lI Nl% 3 +Nathaniel n@'T&nI@l Nl% 4 +Nauru 'naUru Nm$ 2 +Nauruan 'naUru@n M6$,OA$ 3 +Nauruans 'naUru@nz Mj$ 3 +Nazi 'nAtsI K6%,OA% 2 +Nazis 'nAtsIz Kj% 2 +Nazism 'nAtsIz@m L@% 3 +Neanderthal ni'&nd@tAl OA% 4 +Neapolitan nI@'p0lIt@n K6%,OA% 5 +Neapolitans nI@'p0lIt@nz Kj% 5 +Neath niT Nn$ 1 +Nebraska n@'br&sk@ Nm% 3 +Ned ned Nl% 1 +Neddy 'nedI Nl% 2 +Negress 'nigres K7% 2 +Negresses 'nigresIz Kj% 3 +Negro 'nigr@U K7% 2 +Negroes 'nigr@Uz Kj% 2 +Negroid 'nigroId K6$,OA% 2 +Negroids 'nigroIdz Kj$ 2 +Negus 'nig@s K7$ 2 +Neguses 'nig@sIz Kj$ 3 +Neil nil Nl% 1 +Nell nel Nl% 1 +Nelly 'nelI Ki%,Nl% 2 +Nelson 'nelsn Nn% 2 +Nepal nI'pOl Nm% 2 +Nepalese ,nep@'liz K9%,OA% 3 +Nepali nI'pOlI M6%,OA% 3 +Nepalis nI'pOlIz Mj% 3 +Neptune 'neptjun No% 2 +Neston 'nest@n Nn$ 2 +Nestor 'nest@R No$ 2 +Netherlander 'neD@l@nd@R K6% 4 +Netherlanders 'neD@l@nd@z Kj% 4 +Netherlands 'neD@l@ndz Nm% 3 +Netley 'netlI Nn$ 2 +Neuss noIs Nn$ 1 +Nevada n@'vAd@ Nm% 3 +Neville 'nevl Nl% 2 +New Cumnock ,nju 'kVmn@k Nn$ 3 +New Mills ,nju 'mIlz Nn$ 2 +New Orleans ,nju 'OlI@nz Nn% 3 +New Tredegar ,nju trI'dig@R Nn$ 4 +New Windsor ,nju 'wInz@R Nn$ 3 +New York ,nju 'jOk Nn% 2 +Newark 'nju@k Nn% 2 +Newarthill ,nju@t'hIl Nn$ 3 +Newbiggin 'njubIgIn Nn% 3 +Newbury 'njub@rI Nn% 3 +Newcastle 'njuk&sl Nn% 3 +Newcastle upon Tyne ,njuk&sl Vp0n 'taIn Nn% 6 +Newcastle-under-Lyme ,njuk&sl-,Vnd@-'laIm Nn% 6 +Newfoundland 'njuf@nl@nd Nm% 3 +Newham 'nju@m Nn% 2 +Newhaven 'njuheIvn Nn% 3 +Newmains 'njumeInz Nn$ 2 +Newmarket 'njumAkIt L@%,Nn% 3 +Newport 'njupOt Nn% 2 +Newport Pagnell ,njupOt 'p&gnIl Nn% 4 +Newquay 'njuki Nn% 2 +Newry 'njU@rI Nn% 2 +Newton Abbot ,njutn '&b@t Nn% 4 +Newton Aycliffe ,njutn 'eIklIf Nn$ 4 +Newton Mearns ,njutn 'mI@nz Nn$ 3 +Newton-le-Willows ,njutn-lI-'wIl@Uz Nn$ 5 +Newtonian nju't@UnI@n K6$,OA% 4 +Newtonians nju't@UnI@nz Kj$ 4 +Newtown 'njut@Un Nn$ 2 +Nicaragua ,nIk@'r&gjU@ Nm% 5 +Nicaraguan ,nIk@'r&gjU@n K6%,OA% 5 +Nicaraguans ,nIk@'r&gjU@nz Kj% 5 +Nice nis Nn% 1 +Nicholas 'nIk@l@s Nl% 3 +Nick nIk Nl% 1 +Nicola 'nIk@l@ Nl% 3 +Nicole nI'k0l Nl% 2 +Nigel 'naIdZl Nl% 2 +Niger ni'Ze@R Nm% 2 +Nigeria naI'dZI@rI@ Nm% 4 +Nigerian naI'dZI@rI@n K6%,OA% 4 +Nigerians naI'dZI@rI@nz Kj% 4 +Nigerien ni'Ze@rI@n K6$,OA$ 4 +Nigeriens ni'Ze@rI@nz Kj$ 4 +Nijmegen 'naImeIgn Nn% 3 +Nilotic naI'l0tIk OA$ 3 +Nimrod 'nImr0d No$ 2 +Niobe 'naI@bI No$ 3 +Nipponese ,nIp@'niz OA$ 3 +Nissen 'nIsn No$ 2 +Noah 'n@U@ No$ 2 +Nobel n@U'bel No$ 2 +Noel 'n@U@l K6$,Nl% 2 +Noels 'n@U@lz Kj$ 2 +Nora 'nOr@ Nl% 2 +Nordic 'nOdIk K6$,OA% 2 +Nordics 'nOdIks Kj$ 2 +Norfolk 'nOf@k Nm% 2 +Norman 'nOm@n K6%,Nl%,OA% 2 +Normans 'nOm@nz Kj% 2 +Normanton 'nOm@nt@n Nn$ 3 +Normantown 'nOm@ntaUn Nn$ 3 +Norse nOs L@%,OA% 1 +North Walsham ,nOT 'w0lS@m Nn$ 3 +Northallerton nOT'&l@t@n Nn% 4 +Northam 'nOT@m Nn$ 2 +Northampton nO'T&mpt@n Nn% 3 +Northamptonshire nO'T&mpt@nS@R Nm% 4 +Northman 'nOTm@n Ki$ 2 +Northmen 'nOTm@n Kj$ 2 +Northumberland nO'TVmb@l@nd Nm% 4 +Northwich 'nOTwItS Nn$ 2 +Norton 'nOtn Nn% 2 +Norway 'nOweI Nm% 2 +Norwegian nO'widZ@n M6%,OA% 3 +Norwegians nO'widZ@nz Mj% 3 +Norwich 'n0rItS Nn% 2 +Nottingham 'n0tIN@m Nn% 3 +Nottinghamshire 'n0tIN@mS@R Nm% 4 +Nov n0v Y=% 1 +Nova Scotia ,n@Uv@ 'sk@US@ Nm% 4 +Novara n@'vAr@ Nn$ 3 +November n@U'vemb@R K6%,No% 3 +Novembers n@U'vemb@z Kj$ 3 +Novokuznetsk ,n0v@kUz'njetsk Nn$ 4 +Novosibirsk ,n0v@sI'bI@sk Nn$ 4 +Nuneaton nVn'itn Nn% 3 +Nurenburg 'njU@r@nb3g Nn% 3 +O @U Ki$,W-$ 1 +O's @Uz Kj$ 1 +O-level '@U-levl K6% 3 +O-levels '@U-levlz Kj% 3 +OAP ,@U,eI'pi Y>% 3 +OAP's ,@U,eI'piz Y)% 3 +OAU ,@U,eI'ju Y>% 3 +OECD ,@U,i,si'di Y>% 4 +OED ,@U,i'di Y>% 3 +OK ,@U'keI W-% 2 +OPEC '@Upek Y=% 2 +OT ,@U'ti Y>% 2 +Oakengates '@UkngeIts Nn$ 3 +Oban '@Ub@n Nn% 2 +Oberhausen '@Ub@haUzn Nn$ 4 +Occident '0ksId@nt No% 3 +Occidental ,0ksI'dentl K6$,OA% 4 +Occidentals ,0ksI'dentlz Kj$ 4 +Ockbrook '0kbrUk Nn$ 2 +Ockendon '0knd@n Nn$ 3 +Oct 0kt Y=% 1 +October 0k't@Ub@R K6%,No% 3 +Octobers 0k't@Ub@z Kj$ 3 +Odessa @U'des@ Nn% 3 +Oedipus 'idIp@s No% 3 +Offaly '0f@lI Nm% 3 +Offenbach '0fnbAk Nn% 3 +Ogmore Valley ,0gmO 'v&lI Nn$ 4 +Ohio @U'haI@U Nm% 3 +Oklahoma ,@Ukl@'h@Um@ Nm% 4 +Oklahoma City ,@Ukl@,h@Um@ 'sItI Nn% 6 +Old Windsor ,@Uld 'wInz@R Nn$ 3 +Oldenburg '@Uldnb3g Nn$ 3 +Oldham '@Uld@m Nn% 2 +Oldland '@Uldl&nd Nn$ 2 +Olive '0lIv Nl% 2 +Oliver '0lIv@R Nl% 3 +Olivia @'lIvI@ Nl% 4 +Ollerton '0l@t@n Nn$ 3 +Ollie '0lI Nl% 2 +Olympiad @'lImpI&d K6% 4 +Olympiads @'lImpI&dz Kj$ 4 +Olympian @'lImpI@n K6%,OA% 4 +Olympians @'lImpI@nz Kj% 4 +Olympic @'lImpIk OA% 3 +Olympics @'lImpIks No% 3 +Oman @U'mAn Nm% 2 +Omani @U'mAnI K6%,OA% 3 +Omanis @U'mAnIz Kj% 3 +Omsk 0msk Nn% 1 +Ongar '0Ng@R Nn% 2 +Ontario 0n'te@rI@U Nm% 4 +Orangeman '0rIndZm&n Ki% 3 +Orangemen '0rIndZmen Kj% 3 +Oregon '0rIg@n Nm% 3 +Orkney 'OknI Nm% 2 +Orleans O'lI@nz Nn% 2 +Ormskirk 'Omzk3k Nn% 2 +Osaka @U'sAk@ Nn% 3 +Oscar '0sk@R K6%,Nl% 2 +Oscars '0sk@z Kj% 2 +Oslo '0zl@U Nn% 2 +Osnabruck '0zn@brUk Nn$ 3 +Ossett '0sIt Nn$ 2 +Oswald '0zw@ld Nl% 2 +Oswestry '0zwIstrI Nn% 3 +Otago @U'tAg@U Nm$ 3 +Otley '0tlI Nn% 2 +Ottawa '0t@w@ Nn% 3 +Oviedo ,0vI'eId@U Nn$ 4 +Oxbridge '0ksbrIdZ No% 2 +Oxford '0ksf@d Nn% 2 +Oxfordshire '0ksf@dS@R Nm% 3 +Oxon '0ksn Y~$ 2 +Oxonian 0k's@UnI@n K6$,OA$ 4 +Oxonians 0k's@UnI@nz Kj$ 4 +Oxted '0kstId Nn$ 2 +Ozzie '0zI Nl% 2 +P pi Ki$ 1 +P's piz Kj$ 1 +PA ,pi'eI Y>% 2 +PAYE ,pi,eI,waI'i Y=% 4 +PC ,pi'si Y:% 2 +PDSA ,pi,di,es'eI Y>% 4 +PE ,pi'i Y}% 2 +PLC ,pi,el'si Y=% 3 +PM ,pi'em Y>% 2 +PO ,pi'@U Y>% 2 +POW ,pi,@U'dVblju Y>% 5 +PR ,pi'AR Y}% 2 +PT ,pi'ti Y}% 2 +PTA ,pi,ti'eI Y>% 3 +PTO ,pi,ti'@U Y~% 3 +Pacific p@'sIfIk No% 3 +Paddies 'p&dIz Kj$ 2 +Paddy 'p&dI K8$,Nl% 2 +Paddy-wagon 'p&dI-w&gn K6$ 4 +Paddy-wagons 'p&dI-w&gnz Kj$ 4 +Padova 'pAd@v@ Nn$ 3 +Padua 'p&dZU@ Nn% 3 +Paisley 'peIzlI Nn% 2 +Pakistan ,pAkI'stAn Nm% 3 +Pakistani ,pAkI'stAnI K6%,OA% 4 +Pakistanis ,pAkI'stAnIz Kj% 4 +Palembang pA'lembAN Nn$ 3 +Palermo p@'l3m@U Nn% 3 +Palestine 'p&l@staIn Nm% 3 +Palestinian ,p&l@'stInI@n K6%,OA% 5 +Palestinians ,p&l@'stInI@nz Kj% 5 +Pam p&m Nl% 1 +Pamela 'p&m@l@ Nl% 3 +Pamplona p&m'pl@Un@ Nn% 3 +Panama ,p&n@'mA Nm% 3 +Panamanian ,p&n@'meInI@n K6%,OA% 5 +Panamanians ,p&n@'meInI@nz Kj% 5 +Paotow ,paU'taU Nn$ 2 +Papua 'p&pjU@ Nm% 3 +Papuan 'p&pjU@n K6%,OA% 3 +Papuans 'p&pjU@nz Kj% 3 +Paraguay 'p&r@gwaI Nm% 3 +Paraguayan ,p&r@'gwaI@n K6%,OA% 4 +Paraguayans ,p&r@'gwaI@nz Kj% 4 +Paris 'p&rIs Nn% 2 +Parisian p@'rIzI@n K6%,OA% 4 +Parisians p@'rIzI@nz Kj% 4 +Parkinson's 'pAkInsnz OA$ 3 +Parma 'pAm@ Nn% 2 +Parmesan 'pAmIz&n L@% 3 +Parsee pA'si K6$ 2 +Parsees pA'siz Kj$ 2 +Parthian 'pATI@n OA$ 3 +Pashto 'pVSt@U L@$ 2 +Passover 'pAs@Uv@R K6% 3 +Passovers 'pAs@Uv@z Kj$ 3 +Pat p&t Nl% 1 +Patience 'peISns Nl% 2 +Patrai 'p&trI Nn$ 2 +Patricia p@'trIS@ Nl% 3 +Patrick 'p&trIk Nl% 2 +Patty 'p&tI Nl% 2 +Paul pOl Nl% 1 +Paula 'pOl@ Nl% 2 +Pauline 'pOlin Nl% 2 +Pax Romana ,p&ks r@U'mAn@ Ki$ 4 +Peacehaven 'pisheIvn Nn$ 3 +Pearl p3l Nl% 1 +Peebles 'piblz Nn% 2 +Peg peg Nl% 1 +Peggy 'pegI Nl% 2 +Peking ,pi'kIN Nn% 2 +Pelton 'peltn Nn$ 2 +Pembroke 'pembr@k Nn% 2 +Penarth pI'nAT Nn% 2 +Pendlebury 'pendlbrI Nn$ 3 +Penelope p@'nel@pI Nl% 4 +Penicuik 'penIkUk Nn$ 3 +Penki ,pen'tSi Nn$ 2 +Pennsylvania ,pensl'veInI@ Nm% 5 +Penny 'penI Nl% 2 +Penrhyn 'penrIn Nn% 2 +Penrith 'penrIT Nn% 2 +Penryn 'penrIn Nn% 2 +Pentateuch 'pent@tjuk K6% 3 +Pentateuchs 'pent@tjuks Kj$ 3 +Pentecost 'pentIk0st L@% 3 +Pentecostal ,pentI'k0stl OA% 4 +Penzance pen'z&ns Nn% 2 +Percy 'p3sI Nl% 2 +Perm pjerm Nn$ 1 +Pershore 'p3SOR Nn% 2 +Persia 'p3S@ Nm% 2 +Persian 'p3Sn K6%,OA% 2 +Persians 'p3Snz Kj% 2 +Perth p3T Nn% 1 +Peru p@'ru Nm% 2 +Perugia p@'rudZI@ Nn% 4 +Peruvian p@'rUvI@n K6%,OA% 4 +Peruvians p@'rUvI@nz Kj% 4 +Pescara pes'kAr@ Nn$ 3 +Pete pit Nl% 1 +Peter 'pit@R Nl% 2 +Peterborough 'pit@br@ Nn% 3 +Peterhead 'pit@hed Nn% 3 +Peterlee 'pit@li Nn% 3 +Petersfield 'pit@zfild Nn$ 3 +PhD ,pi,eItS'di Y>% 3 +Pharaoh 'fe@r@U K6% 2 +Pharaohs 'fe@r@Uz Kj% 2 +Pharisee 'f&rIsi K6% 3 +Pharisees 'f&rIsiz Kj% 3 +Phil fIl Nl% 1 +Philadelphia ,fIl@'delfI@ Nn% 5 +Philip 'fIlIp Nl% 2 +Philippa 'fIlIp@ Nl% 3 +Philippine 'fIlIpin K6%,OA% 3 +Philippines 'fIlIpinz Nm% 3 +Philistine 'fIlIstaIn K6% 3 +Philistines 'fIlIstaInz Kj% 3 +Philistinism 'fIlIstInIzm L@% 5 +Phnom-Penh ,n0m-'pen Nn% 2 +Phoebe 'fibI Nl% 2 +Phoenix 'finIks Nn% 2 +Phyllis 'fIlIs Nl% 2 +Piacenza ,pI@'tSenz@ Nn$ 4 +Pill pIl Nn$ 1 +Piraeus paI'ri@s Nn% 3 +Pisa 'piz@ Nn% 2 +Pisces 'paIsiz No% 2 +Pittsburgh 'pItsb3g Nn% 2 +Platonic pl@'t0nIk OA% 3 +Plimsoll 'plIms@l K6$ 2 +Plimsolls 'plIms@lz Kj$ 2 +Pluto 'plut@U No% 2 +Plutos 'plut@Uz Kj$ 2 +Plymouth 'plIm@T Nn% 2 +Poland 'p@Ul@nd Nm% 2 +Polaris p@U'l&rIs Ki% 3 +Polaroid 'p@Ul@roId L@% 3 +Pole p@Ul K6% 1 +Poles p@Ulz Kj% 1 +Polish 'p@UlIS L@%,OA% 2 +Polly 'p0lI Nl% 2 +Pont-Llan-Fraith ,p0nt-l&n-'freIT Nn$ 3 +Pontardawe ,p0nt@'d@UI Nn$ 4 +Pontardulais ,p0nt@'duleIs Nn$ 4 +Pontefract 'p0ntIfr&kt Nn% 3 +Pontycymmer ,p0ntI'kIm@R Nn$ 4 +Pontypool ,p0ntI'pul Nn% 3 +Poole pul Nn% 1 +Poona 'pun@ Nn% 2 +Pope p@Up K6% 1 +Popes p@Ups Kj% 1 +Port Glasgow ,pOt 'gl&zg@U Nn$ 3 +Port Talbot ,pOt 't0lb@t Nn% 3 +Porthcawl pOT'kOl Nn% 2 +Porthmadog pOt'm&d@k Nn% 3 +Portishead 'pOtIzhed Nn% 3 +Portland 'pOtl@nd Nn% 2 +Porto Alegre ,pOt@U @'leIgrI Nn$ 5 +Portsmouth 'pOtsm@T Nn% 2 +Portugal 'pOtSUgl Nm% 3 +Portuguese ,pOtSU'giz M9%,OA% 3 +Potsdam 'p0tsd&m Nn% 2 +Potters Bar ,p0t@z 'bAR Nn$ 3 +Powys 'paUIs Nm% 2 +Poynton 'poInt@n Nn$ 2 +Poznan p0z'nAn Nn$ 2 +Prague prAg Nn% 1 +Prato 'prAt@U Nn$ 2 +Pre-Raphaelite ,pri'r&f@laIt K6%,OA% 4 +Pre-Raphaelites ,pri'r&f@laIts Kj% 4 +Pres prez Y>% 1 +Presbyterian ,prezbI'tI@rI@n K6%,OA% 5 +Presbyterianism ,presbI'tI@rI@nIz@m L@% 7 +Presbyterians ,prezbI'tI@rI@nz Kj% 5 +Prescot 'presk@t Nn$ 2 +Prestatyn pres't&tIn Nn% 3 +Preston 'prestn Nn% 2 +Prestonpans 'prestnp&nz Nn$ 3 +Prestwich 'prestwItS Nn$ 2 +Prestwick 'prestwIk Nn$ 2 +Pretoria prI'tOrI@ Nn% 4 +Princes Risborough ,prInsIz 'rIzbr@ Nn$ 4 +Priscilla prI'sIl@ Nl% 3 +Prof pr0f Y:% 1 +Protestant 'pr0tIst@nt K6%,OA% 3 +Protestantism 'pr0tIst@ntIz@m L@% 5 +Protestants 'pr0tIst@nts Kj% 3 +Providence 'pr0vIdns Nn% 3 +Pru pru Nl% 1 +Prudence 'prudns Nl% 2 +Prudhoe 'prud@U Nn$ 2 +Prussian 'prVSn K6%,OA% 2 +Prussians 'prVSnz Kj% 2 +Pte 'praIvIt Y:% 2 +Pty pr@'praI@t@rI Y=% 5 +Pudsey 'pVdzI Nn$ 2 +Pullman 'pUlm@n K6% 2 +Pullmans 'pUlm@nz Kj% 2 +Punch pVntS K7% 1 +Punches 'pVntSIz Kj$ 2 +Punic 'pjunIk OA$ 2 +Pusan ,pu's&n Nn$ 2 +Pwllheli pU'TelI Nn% 3 +Pyle paIl Nn$ 1 +Pyongyang ,pj0N'j&N Nn$ 2 +Pyrrhic 'pIrIk OA$ 2 +Q kju Ki$ 1 +Q's kjuz Kj$ 1 +QC ,kju'si Y>% 2 +QED ,kju,i'di Y~% 3 +Qatar kV'tAR Nm% 2 +Qatari kV'tArI K6%,OA% 3 +Qataris kV'tArIz Kj% 3 +Quai d'Orsay ,keI dO'seI Ki% 3 +Quaker 'kweIk@R K6% 2 +Quakers 'kweIk@z Kj% 2 +Quebec kwI'bek Nm% 2 +Queenborough-in-Sheppey,kwinbr@-In-'SepI Nn$ 5 +Queensbury 'kwinzb@rI Nn$ 3 +Queensferry 'kwinzferI Nn$ 3 +Queensland 'kwinzl@nd Nm% 2 +Quentin 'kwentIn Nl% 2 +Quinquagesima ,kwINkw@'dZesIm@ K6$,No$ 5 +Quinquagesimas ,kwINkw@'dZesIm@z Kj$ 5 +Quito 'kit@U Nn$ 2 +Quonset 'kw0nsIt K6$ 2 +Quonsets 'kw0nsIts Kj$ 2 +R AR Ki$ 1 +R"ontgen 'r0ntj@n K6% 2 +R"ontgens 'r0ntj@nz Kj$ 2 +R's Az Kj$ 1 +RA ,A'reI Y>% 2 +RADA 'rAd@ Y=% 2 +RAF ,A,reI'ef Y>% 3 +RC ,A'si Y~% 2 +RIP ,A,raI'pi Y~% 3 +RM ,A'rem Y>$ 2 +RN ,A'ren Y>% 2 +RSPCA ,A,res,pi,si'eI Y>% 5 +RSVP ,A,res,vi'pi Y~% 4 +Rabelaisian ,r&b@'leIzI@n OA$ 5 +Rachel 'reItSl Nl% 2 +Radcliffe 'r&dklIf Nn$ 2 +Radcliffe on Trent ,r&dklIf 0n 'trent Nn$ 4 +Radlett 'r&dlIt Nn$ 2 +Radstock 'r&dst0k Nn$ 2 +Rainford 'reInf@d Nn$ 2 +Ralph r&lf Nl% 1 +Ramadan ,r&m@'dAn K6%,No% 3 +Ramadans ,r&m@'dAnz Kj$ 3 +Ramsbottom 'r&mzb0t@m Nn$ 3 +Ramsgate 'r&mzgeIt Nn% 2 +Randolph 'r&nd0lf Nl% 2 +Rangoon r&N'gun Nn% 2 +Ravenna r@'ven@ Nn% 3 +Rawtenstall 'r0tnstOl Nn$ 3 +Ray reI Nl% 1 +Raymond 'reIm@nd Nl% 2 +Rd r@Ud Y=% 1 +Reading 'redIN Nn% 2 +Realtor 'rI@lt@R K6$ 3 +Realtors 'rI@lt@z Kj$ 3 +Rebecca r@'bek@ Nl% 3 +Recife re'sif@ Nn% 3 +Recklinghausen 'reklINhaUzn Nn$ 4 +Redbrick 'redbrIk OA% 2 +Redbridge 'redbrIdZ Nn$ 2 +Redditch 'redItS Nn$ 2 +Redruth 'redruT Nn$ 2 +Reg redZ Nl% 1 +Regensburg 'reIg@nzb3g Nn$ 3 +Regina rI'dZaIn@ No% 3 +Reginald 'redZInld Nl% 3 +Reich raIk K6% 1 +Reichs raIks Kj$ 1 +Reigate 'raIgeIt Nn% 2 +Remscheid 'remSaId Nn$ 2 +Renfrew 'renfru Nn% 2 +Rennes ren Nn% 1 +Retford 'retf@d Nn$ 2 +Rev rev Y:% 1 +Revd 'rev@r@nd Y:% 3 +Rex reks Nl% 1 +Reykjavik 'reIkj@vIk Nn% 3 +Rheims rimz Nn% 1 +Rhenish 'renIS OA$ 2 +Rheydt raIt Nn$ 1 +Rhine raIn No% 1 +Rhinestone 'raInst@Un K6% 2 +Rhinestones 'raInst@Unz Kj% 2 +Rhode r@Ud Nm% 1 +Rhondda 'r0nd@ Nn% 2 +Rhosllanerchrugog ,r0sl&n@'krug0g Nn$ 5 +Rhyl rIl Nn% 1 +Rhymney 'rImnI Nn$ 2 +Richard 'rItS@d Nl% 2 +Richmond 'rItSm@nd Nn% 2 +Richmond upon Thames ,rItSm@nd Vp0n 'temz Nn% 5 +Rick rIk Nl% 1 +Rickmansworth 'rIkm@nzw@T Nn% 3 +Ricky 'rIkI Nl% 2 +Riesling 'rislIN K6% 2 +Rieslings 'rislINz Kj$ 2 +Riga 'rig@ Nn$ 2 +Rijeka rI'ek@ Nn$ 3 +Rimini 'rImInI Nn% 3 +Ringwood 'rINwUd Nn$ 2 +Rio de Janeiro ,rI@U d@ dZ@'nI@r@U Nn% 6 +Ripley 'rIplI Nn$ 2 +Ripon 'rIpn Nn% 2 +Risborough 'rizbr@ Nn$ 2 +Risca 'rIsk@ Nn$ 2 +Rishton 'rISt@n Nn$ 2 +Rita 'rit@ Nl% 2 +Riviera ,rIvI'e@r@ No% 4 +Rob r0b Nl% 1 +Robert 'r0b@t Nl% 2 +Robin 'r0bIn Nl% 2 +Rochdale 'r0tSdeIl Nn% 2 +Rochester 'r0tSIst@R Nn% 3 +Rod r0d Nl% 1 +Rodney 'r0dnI Nl% 2 +Roentgen 'r0ntj@n K6% 2 +Roentgens 'r0ntj@nz Kj% 2 +Roger 'r0dZ@R Nl% 2 +Romaic r@U'meIIk L@$,OA$ 3 +Roman 'r@Um@n K6%,OA% 2 +Romance r@'m&ns OA% 2 +Romanesque ,r@Um@'nesk L@% 3 +Romania r@'meInI@ Nm% 4 +Romanian r@'meInI@n M6%,OA% 4 +Romanians r@'meInI@nz Mj% 4 +Romanies 'r0m@nIz Mj% 3 +Romans 'r@Um@nz Kj% 2 +Romany 'r0m@nI M8%,OA% 3 +Rome r@Um Nn% 1 +Romish 'r@UmIS OA$ 2 +Romsey 'rVmzI Nn$ 2 +Ron r0n Nl% 1 +Ronald 'r0nld Nl% 2 +Roneo 'r@UnI@U H0%,K6% 3 +Roneoed 'r@UnI@Ud Hc%,Hd% 3 +Roneoing 'r@UnI@UIN Hb$ 4 +Roneos 'r@UnI@Uz Ha$,Kj$ 3 +Ronnie 'r0nI Nl% 2 +Roquefort 'r0kfOR L@% 2 +Rosalie 'r@Uz@lI Nl% 3 +Rosalind 'r0z@lInd Nl% 3 +Rosamund 'r0z@m@nd Nl% 3 +Rosario r@'zArI@U Nn$ 4 +Roscommon r0s'k0m@n Nm$ 3 +Rose r@Uz Nl% 1 +Rosemary 'r@Uzm@rI Nl% 3 +Rosie 'r@UzI Nl% 2 +Roslyn 'r0zlIn Nl% 2 +Ross-on-Wye ,r0s-0n-'waI Nn% 3 +Rossington 'r0sINt@n Nn$ 3 +Rosslare 'r0sle@R Nn% 2 +Rostock 'r0st0k Nn$ 2 +Rostov-Na-Donu ,r0st0f-n@-'d@Unu Nn$ 5 +Rotarian r@U'te@rI@n K6% 4 +Rotarians r@U'te@rI@nz Kj% 4 +Rotherham 'r0D@r@m Nn% 3 +Rothesay 'r0TsI Nn$ 2 +Rothwell 'r0Twel Nn$ 2 +Rotterdam 'r0t@d&m Nn% 3 +Roubaix 'rubeI Nn$ 2 +Rouen 'ru0N Nn% 2 +Roundhead 'raUndhed K6% 2 +Roundheads 'raUndhedz Kj% 2 +Rowlands Gill ,r@Ul@nz 'gIl Nn$ 3 +Roy roI Nl% 1 +Royston 'roIst@n Nn$ 2 +Rt Hon 'raIt ,h0n Y~% 2 +Rubicon 'rubIk@n K6% 3 +Rubicons 'rubIk@nz Kj$ 3 +Ruddington 'rVdINt@n Nn$ 3 +Rudolf 'rud0lf Nl% 2 +Rudy 'rudI Nl% 2 +Rugby 'rVgbI Nn% 2 +Rugeley 'rudZlI Nn% 2 +Runcorn 'rVNkOn Nn% 2 +Rupert 'rup@t Nl% 2 +Ruritanian ,rU@rI'teInI@n OA% 5 +Russia 'rVS@ Nm% 2 +Russian 'rVS@n M6%,OA% 2 +Russians 'rVS@nz Mj% 2 +Ruth ruT Nl% 1 +Rutherglen 'rVD@glen Nn$ 3 +Rutland 'rVtl@nd Nm% 2 +Rwanda rU'&nd@ Nm% 3 +Rwandan rU'&nd@n K6%,OA% 3 +Rwandans rU'&nd@nz Kj% 3 +Ryde raId Nn$ 1 +Ryehill 'raIhIl Nn$ 2 +S es Ki$ 1 +S's 'esIz Kj$ 2 +SALT s0lt Y~% 1 +SOS ,es@U'es Y>% 3 +SOSs ,es@U'esIz Y)% 4 +SRN ,es,A'ren Y>% 3 +SS ,es'es Y>% 2 +STD ,es,ti'di Y~% 3 +Saarbrucken 'zAbrUk@n Nn% 3 +Sabadeli ,s&b@'delI Nn$ 4 +Sabah 'sVb@ Nm$ 2 +Sabahan 'sVb@h@n K6$,OA$ 3 +Sabahans 'sVb@h@nz Kj$ 3 +Sabbath 's&b@T K6% 2 +Sabbaths 's&b@Ts Kj$ 2 +Sacramento ,s&kr@'ment@U Nn% 4 +Saffron Walden ,s&fr@n 'w0ldn Nn% 4 +Sagittarius ,s&dZI'te@rI@s No% 5 +Saigon saI'g0n Nn% 2 +Salamanca ,s&l@'m&Nk@ Nn$ 4 +Sale seIl Nn$ 1 +Salerno s@'l3n@U Nn% 3 +Salford 's0lf@d Nn% 2 +Salisbury 's0lzb@rI Nn% 3 +Sally 's&lI Nl% 2 +Saltash 's0lt&S Nn$ 2 +Saltburn 's0ltb3n Nn$ 2 +Saltcoats 's0ltk@Uts Nn$ 2 +Salvador 's&lv@dOR Nn% 3 +Salvadorean ,s&lv@'dOrI@n K6%,OA% 5 +Salvadoreans ,s&lv@'dOrI@nz Kj% 5 +Salzburg 's0ltsb3g Nn% 2 +Sam s&m Nl% 1 +Samantha s@'m&nT@ Nl% 3 +Samaritan s@'m&rIt@n K6% 4 +Samaritans s@'m&rIt@nz Kj% 4 +Sammy 's&mI Nl% 2 +Samoa s@'m@U@ Nm% 3 +Samoan s@'m@U@n K6%,OA% 3 +Samoans s@'m@U@nz Kj% 3 +Samuel 's&mju@l Nl% 3 +San Antonio ,s&n &n't@UnI@U Nn% 5 +San Bernardino ,s&n ,b3n@'din@U Nn$ 5 +San Diego ,s&n dI'eIg@U Nn% 4 +San Francisco ,s&n fr@n'sisk@U Nn% 4 +San Jose ,s&n h@'zeI Nn% 3 +San Juan ,s&n 'hwAn Nn% 2 +San Marinese ,s&n ,m&rI'niz K9$,OA$ 4 +San Marino ,s&n m@'rin@U Nm$ 4 +San Sebastian ,s&n sI'b&stI@n Nn% 5 +Sandbach 's&nb&tS Nn$ 2 +Sandown 's&ndaUn Nn% 2 +Sandra 'sAndr@ Nl% 2 +Sandy 's&ndI Nl% 2 +Sango 'sANg@U L@$ 2 +Sanskrit 's&nskrIt L@% 2 +Santa Claus 's&nt@ klOz K7%,No% 3 +Santa Clauses 's&nt@ klOzIz Kj$ 4 +Santander ,s&nt@n'de@R Nn% 3 +Santiago ,s&ntI'Ag@U Nn% 4 +Santo Domingo ,s&nt@U d@'mINg@U Nn$ 5 +Santos 's&nt0s Nn$ 2 +Sao Paolo ,saU 'paUl@U Nn% 3 +Sapphic 's&fIk OA$ 2 +Sapporo 'sAp@Ur@U Nn$ 3 +Sara 'se@r@ Nl% 2 +Saracen 's&r@sn K6% 3 +Saracens 's&r@snz Kj% 3 +Sarah 'se@r@ Nl% 2 +Sarajevo ,s&r@'jeIv@U Nn% 4 +Saratov sI'rAt0f Nn$ 3 +Sarawak s@'rAw&k Nm% 3 +Sarawakian ,s&r@'w&kI@n K6$,OA$ 5 +Sarawakians ,s&r@'w&kI@nz Kj$ 5 +Sarisbury 'se@zb@rI Nn$ 3 +Saskatchewan s@'sk&tS@w@n Nm% 4 +Sassari 's&s@rI Nn$ 3 +Sassenach 's&s@n&k K6% 3 +Sassenachs 's&s@n&ks Kj% 3 +Sat 's&t@deI Y=% 3 +Satan 'seItn K6% 2 +Satanic s@'t&nIk OA% 3 +Satans 'seItnz Kj$ 2 +Saturday 's&t@dI K6%,No% 3 +Saturdays 's&t@dIz Kj% 3 +Saturn 's&t@n No% 2 +Sauchie 'sOkI Nn$ 2 +Saudi Arabia ,saUdI @'reIbI@ Nm% 6 +Saudi Arabian ,saUdI @'reIbI@n K6%,OA% 6 +Saudi Arabians ,saUdI @'reIbI@nz Kj% 6 +Sawbridgeworth 'sObrIdZw@T Nn$ 3 +Saxon 's&ksn K6%,OA% 2 +Saxons 's&ksnz Kj% 2 +Scandinavian ,sk&ndI'neIvI@n K6%,OA% 5 +Scandinavians ,sk&ndI'neIvI@nz Kj% 5 +Scarborough 'skAbr@ Nn% 2 +Schwerin Sve'rin Nn$ 2 +Sci Fi ,saI 'faI Y}% 2 +Scorpio 'skOpI@U No% 3 +Scot sk0t K6% 1 +Scotch sk0tS M7%,OA% 1 +Scotches 'sk0tSIz Mj% 2 +Scotchman 'sk0tSm@n Ki$ 2 +Scotchmen 'sk0tSm@n Kj$ 2 +Scotchwoman 'sk0tSwUm@n Ki$ 3 +Scotchwomen 'sk0tSwImIn Kj$ 3 +Scotland 'sk0tl@nd Nm% 2 +Scotland Yard ,sk0tl@nd 'jAd No% 3 +Scots sk0ts Kj%,OA% 1 +Scotsman 'sk0tsm@n Ki% 2 +Scotsmen 'sk0tsm@n Kj% 2 +Scotswoman 'sk0tswUm@n Ki% 3 +Scotswomen 'sk0tswImIn Kj% 3 +Scottish 'sk0tIS OA% 2 +Scrooge skrudZ K6% 1 +Scrooges 'skrudZIz Kj$ 2 +Scunthorpe 'skVnTOp Nn% 2 +Scylla 'sIl@ K6$ 2 +Scyllas 'sIl@z Kj$ 2 +Seaford 'sif@d Nn$ 2 +Seaham 'si@m Nn$ 2 +Sealyham 'silI@m K6$ 3 +Sealyhams 'silI@mz Kj$ 3 +Seamus 'SeIm@s Nl% 2 +Sean SOn Nl% 1 +Seaton Burn ,sitn 'b3n Nn$ 3 +Seaton Delaval ,sitn 'del@vAl Nn$ 5 +Seattle sI'&tl Nn% 3 +Secretary-General ,sekrIterI-'dZenr@l K6% 6 +Secretary-Generals ,sekrIterI-'dZenr@lz Kj% 6 +Securicor sI'kjU@rIkOR No% 4 +Selby 'selbI Nn% 2 +Selkirk 'selk3k Nn% 2 +Selsey 'selsI Nn% 2 +Selston 'selst@n Nn$ 2 +Semarang s@'mArAN Nn$ 3 +Semite 'simaIt K6$,OA$ 2 +Semites 'simaIts Kj$ 2 +Semitic sI'mItIk OA% 3 +Senegal ,senI'gOl Nm% 3 +Senegalese ,senIg@'liz K9%,OA% 4 +Seoul s@Ul Nn% 1 +Sept sept Y=% 1 +September sep'temb@R K6%,No% 3 +Septembers sep'temb@z Kj$ 3 +Septuagint 'septjU@dZInt K6$ 4 +Septuagints 'septjU@dZInts Kj$ 4 +Serbo-Croat ,s3b@U-'kr@U&t L@% 4 +Serjeant-at-arms ,sAdZ@nt-@t-'Amz Ki$ 4 +Serjeants-at-arms ,sAdZ@nts-@t-'Amz Kj$ 4 +Sesotho sI'sutu L@$ 3 +Setswana sI'tswAn@ L@$ 3 +Seven Sisters ,sevn 'sist@z Nn$ 4 +Sevenoaks 'sevn@Uks Nn% 3 +Sevilla s@'vilj@ Nn$ 3 +Seville s@'vIl Nn% 2 +Seychelles 'seISelz Nm% 2 +Seychellois seI'SelwA K9%,OA% 3 +Sgt 'sAdZ@nt Y:% 2 +Shakespearian SeIk'spI@rI@n OA% 4 +Shanghai ,S&N'haI Nn% 2 +Shanklin 'S&NklIn Nn$ 2 +Sharon 'S&r@n Nl% 2 +Shavian 'SeIvI@n K6$,OA$ 3 +Shavians 'SeIvI@nz Kj$ 3 +Sheerness ,SI@'nes Nn% 3 +Sheffield 'Sefild Nn% 2 +Sheila 'Sil@ Nl% 2 +Shelford 'Self@d Nn$ 2 +Shepshed 'SepSed Nn$ 2 +Shepton Mallet ,Sept@n 'm&lIt Nn% 4 +Sheraton 'Ser@t@n L@$ 3 +Sherbourne 'S3bOn Nn% 2 +Sheringham 'SerIN@m Nn$ 3 +Shetland 'Setl@nd Nm% 2 +Shevington 'SevINt@n Nn$ 3 +Shihkiachwang ,SitSA'tSw&N Nn$ 3 +Shildon 'SIldn Nn$ 2 +Shirebrook 'SaI@brUk Nn$ 2 +Shiremoor 'SaI@mU@R Nn$ 2 +Shirley 'S3lI Nl% 2 +Shotton 'S0tn Nn$ 2 +Shotts S0ts Nn$ 1 +Shrewsbury 'Sr@UzbrI Nn% 2 +Shropshire 'Sr0pS@R Nm% 2 +Shrove Tuesday ,Sr@Uv 'tjuzdI K6%,No% 3 +Shrove Tuesdays ,Sr@Uv 'tjuzdIz Kj$ 3 +Shucks SVks W-$ 1 +Siam saI'&m Nm% 2 +Siamese ,saI@'miz K9%,OA% 3 +Sian SjAn Nn$ 1 +Siberian saI'bI@rI@n OA% 4 +Sicilian sI'sIlI@n K6%,OA% 4 +Sicilians sI'sIlI@nz Kj% 4 +Sid sId Nl% 1 +Sidmouth 'sIdm@T Nn% 2 +Sidney 'sIdnI Nl% 2 +Sierra Leone sI,er@ lI'@Un Nm% 5 +Sierra Leonian sI,er@ lI'@UnI@n K6%,OA% 7 +Sierra Leonians sI,er@ lI'@UnI@nz Kj% 7 +Sikh sik K6% 1 +Sikhs siks Kj% 1 +Sileby 'saIlbI Nn$ 2 +Silsden 'sIlzd@n Nn$ 2 +Silvia 'sIlvI@ Nl% 3 +Simon 'saIm@n Nl% 2 +Singapore ,sIN@'pOR Nm% 3 +Singaporean ,sIN@'pOrI@n K6%,OA% 5 +Singaporeans ,sIN@'pOrI@nz Kj% 5 +Singhalese ,sINh@'liz OA$ 3 +Sinhala sIn'hAl@ L@$ 3 +Sinhalese ,sInh@'liz K9$,OA$ 3 +Sining ,Si'nIN Nn$ 2 +Sinn Fein ,SIn 'feIn No% 2 +Sinologist saI'n0l@dZIst K6$ 4 +Sinologists saI'n0l@dZIsts Kj$ 4 +Sinology saI'n0l@dZI L@$ 4 +Sioux su K9% 1 +Sir Roger de Coverley s3 ,r0dZ@ d@ 'kVv@lI Ki$ 7 +Siracusa ,sIr@'kuz@ Nn$ 4 +Siswati sI'swAtI L@$ 3 +Sittingbourne 'sItINbOn Nn% 3 +Skegness skeg'nes Nn% 2 +Skelmanthorpe 'skelm@nTOp Nn$ 3 +Skelmersdale 'skelm@zdeIl Nn$ 3 +Skewen 'skjuIn Nn$ 2 +Skipton 'skIpt@n Nn% 2 +Skopje 'skOpjI Nn$ 2 +Slav slAv K6%,OA% 1 +Slavonic sl@'v0nIk OA% 3 +Slavs slAvz Kj% 1 +Sleaford 'slif@d Nn$ 2 +Sligo 'slaIg@U Nm% 2 +Slough slaU Nn% 1 +Slovak 'sl@Uv&k L@% 2 +Slovenian sl@'vinI@n M6$,OA$ 4 +Slovenians sl@'vinI@nz Mj$ 4 +Snr 'sinI@R Y~% 3 +Soc s0k Y>% 1 +Socratic s@'kr&tIk OA% 3 +Sofia 's@UfI@ Nn% 3 +Soho 's@Uh@U No% 2 +Sol s0l No$ 1 +Solicitor-General s@,lIsIt@-'dZenr@l K6% 6 +Solicitor-Generals s@,lIsIt@-'dZenr@lz Kj$ 6 +Solihull ,s@UlI'hVl Nn% 3 +Solingen 'zOlIN@n Nn$ 3 +Solon 's@Ul0n No$ 2 +Somali s@'mAlI M6%,OA% 3 +Somalia s@'mAlI@ Nm% 4 +Somalian s@'mAlI@n K6%,OA% 4 +Somalians s@'mAlI@nz Kj% 4 +Somalis s@'mAlIz Mj% 3 +Somercotes 'sVm@k@Uts Nn$ 3 +Somerset 'sVm@s@t Nm% 3 +Sonia 's0nI@ Nl% 2 +Soochow ,su'tSaU Nn$ 2 +Sophia s@'faI@ Nl% 3 +Sophie 's@UfI Nl% 2 +Sotho 'sutu M6$,OA$ 2 +Sothos 'sutuz Mj$ 2 +South Kirkby ,saUT 'k3kbI Nn$ 3 +South Normantown ,saUT 'nOm@ntaUn Nn$ 4 +South Ockendon ,saUT '0knd@n Nn$ 4 +South Shields ,saUT 'Silz Nn% 2 +Southampton saUT'&mt@n Nn% 3 +Southend-on-Sea ,saUTend-0n-'si Nn% 4 +Southport 'saUTpOt Nn% 2 +Southwark 'sVD@k Nn% 2 +Soviet 's@UvI@t K6%,OA% 3 +Soviets 's@UvI@ts Kj% 3 +Spain speIn Nm% 1 +Spalding 'sp0ldIN Nn$ 2 +Spaniard 'sp&nI@d K6% 3 +Spaniards 'sp&nI@dz Kj% 3 +Spanish 'sp&nIS L@%,OA% 2 +Spartan 'spAtn K6%,OA% 2 +Spartans 'spAtnz Kj% 2 +Spenborough 'spenb@r@ Nn$ 3 +Spennymoor 'spenImU@R Nn$ 3 +Split splIt Nn$ 1 +Spode sp@Ud L@$ 1 +Springfield 'sprINfild Nn$ 2 +Sq skwe@R Y=% 1 +Sr 'sIst@R Y:% 2 +Sri Lanka ,srI 'l&nk@ Nm% 3 +Sri Lankan ,srI 'l&nk@n K6%,OA% 3 +Sri Lankans ,srI 'l&nk@nz Kj% 3 +St seInt Y=% 1 +St Albans snt '0lbnz Nn% 3 +St Andrews snt '&ndruz Nn% 3 +St Andrews Major snt ,&ndruz 'meIdZ@R Nn$ 5 +St Austell snt '0stl Nn% 3 +St Blazey snt 'bleIzI Nn$ 3 +St Helens snt 'helnz Nn% 3 +St Ives snt 'aIvz Nn% 2 +St Louis snt 'luI Nn% 3 +St Neots snt 'nI@ts Nn$ 3 +St Paul snt 'pOl Nn% 2 +St Petersburg snt 'pit@zb3g Nn% 4 +St Stephen snt 'stivn Nn$ 3 +Sta 'steISn Y=% 2 +Stafford 'st&f@d Nn% 2 +Staffordshire 'st&f@dS@R Nm% 3 +Stakeford 'steIkf@d Nn$ 2 +Stalybridge 'steIlIbrIdZ Nn$ 3 +Stamford 'st&mf@d Nn% 2 +Stan st&n Nl% 1 +Stanford 'st&nf@d Nn% 2 +Stanley 'st&nlI Nl% 2 +Statehouse 'steIthaUs K6$ 2 +Statehouses 'steIthaUzIz Kj$ 3 +Stella 'stel@ Nl% 2 +Sten sten No$ 1 +Stephanie 'stef@nI Nl% 3 +Stephen 'stivn Nl% 2 +Steve stiv Nl% 1 +Steven 'stivn Nl% 2 +Stevenage 'stivnIdZ Nn% 3 +Stevenston 'stivnst@n Nn$ 3 +Stewart 'stju@t Nl% 2 +Steyning 'stenIN Nn$ 2 +Stilton 'stIlt@n M6% 2 +Stiltons 'stIlt@nz Mj$ 2 +Stirling 'st3lIN Nn% 2 +Stockholm 'st0kh@Um Nn% 2 +Stockport 'st0kpOt Nn% 2 +Stocksbridge 'st0ksbrIdZ Nn$ 2 +Stoke-on-Trent ,st@Uk-0n-'trent Nn% 3 +Stone st@Un Nn$ 1 +Stonehouse 'st@UnhaUs Nn$ 2 +Stornoway 'stOn@weI Nn% 3 +Stotfold 'st0tf@Uld Nn$ 2 +Stourbridge 'staU@brIdZ Nn$ 3 +Stourport-on-Severn ,staU@pOt-0n-'sevn Nn$ 6 +Stowmarket 'st@UmAkIt Nn$ 3 +Stranraer str&n'rAR Nn% 2 +Strasbourg 'str&sb3g Nn% 2 +Stratford-on-Avon ,str&tf@d-0n-'eIvn Nn% 5 +Strathaven 'streIvn Nn$ 2 +Strathclyde str&T'klaId Nm% 2 +Street strit Nn$ 1 +Stretford 'stretf@d Nn$ 2 +Stroud straUd Nn$ 1 +Stuart 'stju@t Nl% 2 +Studley 'stVdlI Nn$ 2 +Stuttgart 'StVtgAt Nn% 2 +Stygian 'stIdZI@n OA$ 3 +Styx stIks No$ 1 +Suchow ,su'tSaU Nn$ 2 +Sudan su'dAn Nm% 2 +Sudanese ,sud@'niz K9%,OA% 3 +Sudbury 'sVdbrI Nn$ 2 +Sue su Nl% 1 +Suffolk 'sVf@k Nm% 2 +Sumatra su'mAtr@ Nm% 3 +Sumatran su'mAtr@n K6%,OA% 3 +Sumatrans su'mAtr@nz Kj% 3 +Sun 'sVndeI Y=% 2 +Sunday 'sVndI K6%,No% 2 +Sundays 'sVndIz Kj% 2 +Sunderland 'sVnd@l@nd Nn% 3 +Supt ,sup@rIn'tend@nt Y:% 5 +Surabaja ,sU@r@'baI@ Nn$ 4 +Surrey 'sVrI Nm% 2 +Susan 'suzn Nl% 2 +Susanna su'z&n@ Nl% 3 +Susie 'sUzI Nl% 2 +Sussex 'sVsIks Nm% 2 +Sutton 'sVtn Nn$ 2 +Sutton Coldfield ,sVtn 'k@Ulfild Nn% 4 +Sutton in Ashfield ,sVtn In '&Sfild Nn$ 5 +Sutton-at-Hone ,sVtn-&t-'h@Un Nn$ 4 +Suzanne su'z&n Nl% 2 +Sverdlovsk ,sf3d'l0fsk Nn$ 2 +Swadlincote 'sw0dlINk0t Nn$ 3 +Swahili sw@'hilI L@% 3 +Swanage 'sw0nIdZ Nn% 2 +Swanley 'sw0nlI Nn$ 2 +Swansea 'sw0nzI Nn% 2 +Swazi 'swAzI M6%,OA% 2 +Swaziland 'swAzIl&nd Nm% 3 +Swazis 'swAzIz Mj% 2 +Swede swid K6%,OA% 1 +Sweden 'swidn Nm% 2 +Swedes swidz Kj% 1 +Swedish 'swidIS L@%,OA% 2 +Swindon 'swInd@n Nn% 2 +Swinton 'swInt@n Nn$ 2 +Swiss swIs K9%,OA% 1 +Switzerland 'swIts@l@nd Nm% 3 +Sydney 'sIdnI Nn% 2 +Sylvia 'sIlvI@ Nl% 3 +Syracuse 'saIr@kjuz Nn% 3 +Syria 'sIrI@ Nm% 3 +Syrian 'sIrI@n K6%,OA% 3 +Syrians 'sIrI@nz Kj% 3 +Syston 'sIst@n Nn$ 2 +T ti Ki$ 1 +T's tiz Kj$ 1 +T-junction 'ti-dZVNkSn K6% 3 +T-junctions 'ti-dZVNkSnz Kj% 3 +T-shirt 'ti-S3t K6% 2 +T-shirts 'ti-S3ts Kj% 2 +T-square 'ti-skwe@R K6% 2 +T-squares 'ti-skwe@z Kj% 2 +TB ,ti'bi Y}% 2 +TNT ,ti,en'ti Y}% 3 +TUC ,ti,ju'si Y>% 3 +TV ,ti'vi Y>% 2 +TVs ,ti'viz Y)% 2 +Tadley 't&dlI Nn$ 2 +Taegu ,teI'gu Nn$ 2 +Taffies 't&fIz Kj$ 2 +Taffy 't&fI K8$ 2 +Tahiti tA'hitI Nm% 3 +Tahitian tA'hiSn K6%,OA% 3 +Tahitians tA'hiSnz Kj% 3 +Taipei ,taI'peI Nn$ 2 +Taiwan taI'wAn Nm% 2 +Taiwanese ,taIw@'niz K9%,OA% 3 +Taiyuan ,taIju'An Nn$ 3 +Talmud 't&lmUd K6% 2 +Talmuds 't&lmUdz Kj% 2 +Tamil 't&mIl M6%,OA% 2 +Tamils 't&mIlz Mj% 2 +Tammany 't&m@nI Ki$ 3 +Tampere 't&mp@r@ Nn$ 3 +Tamworth 't&mw@T Nn$ 2 +Tangshan ,t&N'S&n Nn$ 2 +Tanzania ,t&nz@'nI@ Nm% 4 +Tanzanian ,t&nz@'nI@n K6%,OA% 4 +Tanzanians ,t&nz@'nI@nz Kj% 4 +Taranaki ,t&r@'nAkI Nm$ 4 +Taranto t@'t&nt@U Nn$ 3 +Tarrasa t@'r&s@ Nn$ 3 +Tashkent ,t&S'kent Nn% 2 +Tasmania t&z'meInI@ Nm% 4 +Taunton 'tOnt@n Nn% 2 +Taurus 'tOr@s No% 2 +Taverham 't&v@r@m Nn$ 3 +Tavistock 't&vIst0k Nn$ 3 +Tayside 'teIsaId Nm$ 2 +Tbilisi dbI'lisI Nn$ 3 +Te Deum ti 'di@m K6$ 3 +Te Deums ti 'di@mz Kj$ 3 +Tech tek Y>% 1 +Technicolor 'teknIkVl@R L@% 4 +Ted ted K6%,Nl% 1 +Teddy 'tedI Nl% 2 +Teddy boy 'tedI bOI K6% 3 +Teddy boys 'tedI bOIz Kj% 3 +Teds tedz Kj$ 1 +Teesside 'tiz+saId Nn% 2 +Teheran ,tI@'rAn Nn% 3 +Teignmouth 'tInm@T Nn% 2 +Tel-Aviv ,tel-@'viv Nn% 3 +Telford 'telf@d Nn% 2 +Telstar 'telstAR No% 2 +Tenby 'tenbI Nn% 2 +Tennessee ,ten@'si Nm% 3 +Tenterden 'tent@d@n Nn$ 3 +Terence 'ter@ns Nl% 2 +Teresa t@'riz@ Nl% 3 +Termi 'te@mI Nn$ 2 +Terpsichorean ,t3psIk@'ri@n OA% 5 +Terr 'ter@s Y=% 2 +Terry 'terI Nl% 2 +Tess tes Nl% 1 +Tessa 'tes@ Nl% 2 +Teuton 'tjut@n K6$ 2 +Teutonic tju't0nIk OA% 3 +Teutons 'tjut@nz Kj$ 2 +Tewkesbury 'tjuksb@rI Nn% 3 +Texan 'teks@n K6%,OA% 2 +Texans 'teks@nz Kj% 2 +Texas 'teks@s Nm% 2 +Thai taI M6%,OA% 1 +Thailand 'taIl&nd Nm% 2 +Thais taIz Mj% 1 +Thame teIm Nn$ 1 +Thanksgiving 'T&NksgIvIN K6% 3 +Thanksgivings 'T&NksgIvINz Kj$ 3 +Thatcham 'T&tS@m Nn$ 2 +Theo 'Ti@U Nl% 2 +Theodore 'Ti@dOR Nl% 3 +Theresa t@'riz@ Nl% 3 +Thespian 'TespI@n K6%,OA% 3 +Thespians 'TespI@nz Kj% 3 +Thessaloniki ,Tes@'l0nIkI Nn% 5 +Thetford 'Tetf@d Nn% 2 +Thionville 'tI0Nvil Nn$ 3 +Thirsk T3sk Nn$ 1 +Thomas 't0m@s Nl% 2 +Thornbury 'TOnbrI Nn$ 2 +Thorne TOn Nn$ 1 +Thurcroft 'T3kr0ft Nn$ 2 +Thurmaston 'T3mIstn Nn$ 3 +Thurrock 'TVr@k Nn$ 2 +Thurs 'T3zdeI Y=% 2 +Thursday 'T3zdI K6%,No% 2 +Thursdays 'T3zdIz Kj% 2 +Thurso 'T3s@U Nn$ 2 +Tibet tI'bet Nm% 2 +Tibetan tI'betn M6%,OA% 3 +Tibetans tI'betnz Mj% 3 +Tidworth 'tIdw@T Nn$ 2 +Tientsin ,tIen'tsIn Nn$ 2 +Tilburg 'tIlb3g Nn$ 2 +Tilbury 'tIlbrI Nn% 2 +Tim tIm Nl% 1 +Timmy 'tImI Nl% 2 +Timothy 'tIm@TI Nl% 3 +Tina 'tin@ Nl% 2 +Tipperary ,tIp@'re@rI Nm% 4 +Tiverton 'tIv@t@n Nn$ 3 +Tobago t@'beIg@U Nm% 3 +Tobagonian ,t@Ub@'g@UnI@n K6$,OA$ 5 +Tobagonians ,t@Ub@'g@UnI@nz Kj$ 5 +Toby 't@UbI Nl% 2 +Todmorden 't0dm@d@n Nn$ 3 +Togo 't@Ug@U Nm% 2 +Togolese ,t@Ug@'liz K9$,OA$ 3 +Tokay t@U'keI L@$ 2 +Tokyo 't@Ukj@U Nn% 2 +Tom t0m Nl% 1 +Tommy 't0mI Nl% 2 +Tonbridge 't0nbrIdZ Nn% 2 +Tonga 't0N@ Nm% 2 +Tongan 't0N@n M6%,OA% 2 +Tongans 't0N@nz Mj% 2 +Tony 't@UnI Nl% 2 +Tonyrefail ,t0nI'refeIl Nn$ 4 +Torbay ,tO'beI Nn% 2 +Tories 'tOrIz Kj% 2 +Torino t@'rin@U Nn$ 3 +Toronto t@'r0nt@U Nn% 3 +Tory 'tOrI K8% 2 +Totnes 't0tnIs Nn% 2 +Toulon tu'l0n Nn% 2 +Toulouse tu'luz Nn% 2 +Tours 'tU@R Nn% 1 +Tower Hamlets ,taU@ 'h&mlIts Nn% 4 +Tracy 'treIsI Nl% 2 +Tralee tr@'li Nn$ 2 +Tranent tr@'nent Nn$ 2 +Trappist 'tr&pIst K6$ 2 +Trappists 'tr&pIsts Kj$ 2 +Tredegar trI'dig@R Nn$ 3 +Trevor 'trev@R Nl% 2 +Trieste trI'est Nn% 2 +Tring trIN Nn% 1 +Trinidad 'trInId&d Nm% 3 +Trinidadian ,trInI'd&dI@n K6%,OA% 5 +Trinidadians ,trInI'd&dI@nz Kj% 5 +Trojan 'tr@UdZ@n K6%,OA% 2 +Trojans 'tr@UdZ@nz Kj% 2 +Troon trun Nn$ 1 +Trowbridge 'tr@UbrIdZ Nn$ 2 +Truro 'trU@r@U Nn% 2 +Tsar zAR K6% 1 +Tsarina zA'rin@ K6% 3 +Tsarinas zA'rin@z Kj$ 3 +Tsars zAz Kj% 1 +Tsinan ,tsi'n&n Nn$ 2 +Tsingtao ,tsIN'taU Nn$ 2 +Tsitsihar ,tsItsI'hAR Nn$ 3 +Tswana 'tswAn@ M6$,OA$ 2 +Tswanas 'tswAn@z Mj$ 2 +Tues 'tjuzdeI Y=% 2 +Tuesday 'tjuzdI K6%,No% 2 +Tuesdays 'tjuzdIz Kj% 2 +Tullibody ,tVlI'b0dI Nn$ 4 +Tunbridge Wells ,tVnbrIdZ 'welz Nn% 3 +Tunis 'tjunIs Nn% 2 +Tunisia tju'nIzI@ Nm% 4 +Tunisian tju'nIzI@n K6%,OA% 4 +Tunisians tju'nIzI@nz Kj% 4 +Turin tjU'rIn Nn% 2 +Turk t3k K6% 1 +Turkey 't3kI Nm% 2 +Turkish 't3kIS L@%,OA% 2 +Turks t3ks Kj% 1 +Turku 't3ku Nn$ 2 +Twelfth-night ,twelfT-'naIt K6%,No% 2 +Twelfth-nights ,twelfT-'naIts Kj$ 2 +Tyne taIn Nm% 1 +Tynemouth 'taInmaUT Nn% 2 +Tyrone tI'r@Un Nm% 2 +Tzupo ,tsu'p@U Nn$ 2 +U ju Ki$ 1 +U's juz Kj$ 1 +U-boat 'ju-b@Ut K6% 2 +U-boats 'ju-b@Uts Kj% 2 +U-turn 'ju-t3n K6% 2 +U-turns 'ju-t3nz Kj% 2 +UDI ,judI'aI Y~% 3 +UFO ,ju,e'f@U Y>% 3 +UFO's ,ju,e'f@Uz Y)% 3 +UK ,ju'keI Y>% 2 +UN ,ju'en Y>% 2 +UNESCO ju'nesk@U Y=% 3 +UNICEF 'junIsef Y=% 3 +US ,ju'es Y>% 2 +USA ,ju,es'eI Y>% 3 +USAF ,ju,es,eI'ef Y>% 4 +USN ,ju,es'en Y>% 3 +USS ,ju,es'es Y>% 3 +USSR ,ju,es,es'AR Y>% 4 +Uddingston 'VdINst@n Nn$ 3 +Udine 'udin@ Nn$ 3 +Ufa u'fA Nn$ 2 +Uganda ju'g&nd@ Nm% 3 +Ugandan ju'g&nd@n K6%,OA% 3 +Ugandans ju'g&nd@nz Kj% 3 +Ulster 'Vlst@R Nm% 2 +Ulverston 'Vlv@st@n Nn% 3 +Unitarian ,junI'te@rI@n K6%,OA% 5 +Unitarianism ,junI'te@rI@nIz@m L@% 7 +Unitarians ,junI'te@rI@nz Kj% 5 +Univ ,junI'v3sItI Y=% 5 +Up Holland Vp 'h0l@nd Nn$ 3 +Upton 'Vpt@n Nn$ 2 +Uranus jU'reIn@s No% 3 +Urdu 'U@du L@%,OA% 2 +Ursula '3sjUl@ Nl% 3 +Uruguay 'jU@r@gwaI Nm% 3 +Uruguayan ,jU@r@'gwaI@n K6%,OA% 4 +Uruguayans ,jU@r@'gwaI@nz Kj% 4 +Urumchi u'rumtSI Nn$ 3 +Ushaw Moor 'VSO mU@R Nn$ 3 +Utah 'jutO Nm% 2 +Utopia ju't@UpI@ K6% 4 +Utopian ju't@UpI@n OA% 4 +Utopias ju't@UpI@z Kj% 4 +Utrecht 'jutrekt Nn% 2 +Uttoxeter ju't0ksIt@R Nn% 4 +V vi Ki$ 1 +V and A ,vi @n 'eI Y>% 3 +V's viz Kj$ 1 +VAT ,vi,eI'ti Y}% 3 +VC ,vi'si Y>% 2 +VD ,vi'di Y}% 2 +VHF ,vi,eI'tSef Y~% 3 +VIP ,vi,aI'pi Y>% 3 +VIPs ,vi,aI'piz Y)% 3 +VP ,vi'pi Y>% 2 +VSO ,vi,es'@U Y=% 3 +Valencia v@'lensI@ Nn% 4 +Valenciennes v@,l0nsI'en Nn% 4 +Valladolid ,v&l@d0'lid Nn$ 4 +Vancouver v&n'kuv@R Nn% 3 +Vandal 'v&ndl K6% 2 +Vandals 'v&ndlz Kj% 2 +Vanessa v@'nes@ Nl% 3 +Varanasi v@'rAn@sI Nn$ 4 +Vasteras ,vest@'rOs Nn$ 3 +Vatican 'v&tIk@n K6% 3 +Vaticans 'v&tIk@nz Kj$ 3 +Venetian v@'niSn OA% 3 +Venezia v@'netsI@ Nn$ 4 +Venezuela ,venI'zweIl@ Nm% 4 +Venezuelan ,venI'zweIl@n K6%,OA% 4 +Venezuelans ,venI'zweIl@nz Kj% 4 +Venice 'venIs Nn% 2 +Ventnor 'ventn@R Nn$ 2 +Venus 'vin@s No% 2 +Vera 'vI@r@ Nl% 2 +Verey 'verI OA$ 2 +Vermont v3'm0nt Nm% 2 +Vernon 'v3n@n Nl% 2 +Verona v@'r@Un@ Nn% 3 +Veronica v@'r0nIk@ Nl% 4 +Very 'verI OA$ 2 +Vic vIk Nl% 1 +Vicenza vI'tSenz@ Nn$ 3 +Vicky 'vIkI Nl% 2 +Victor 'vIkt@R Nl% 2 +Victoria vIk'tOrI@ Nl% 4 +Victorian vIk'tOrI@n K6%,OA% 4 +Victoriana vIk,tOrI'An@ L@% 5 +Victorians vIk'tOrI@nz Kj% 4 +Vienna vI'en@ Nn% 3 +Vietnam ,vIet'nAm Nm% 2 +Vietnamese ,vIetn@'miz M9%,OA% 4 +Viewpark 'vjupAk Nn$ 2 +Vigo 'vig@U Nn$ 2 +Viking 'vaIkIN K6% 2 +Vikings 'vaIkINz Kj% 2 +Vince vIns Nl% 1 +Vincent 'vInsnt Nl% 2 +Viola 'vaI@l@ Nl% 3 +Violet 'vaI@l@t Nl% 3 +Virginia v@'dZInI@ L@%,Nl% 4 +Virginia Water v@'dZInI@ ,wOt@R Nn% 6 +Virgo 'v3g@U No% 2 +Vitoria vI'tOrI@ Nn$ 4 +Viv vIv Nl% 1 +Vivian 'vIvI@n Nl% 3 +Vivien 'vIvI@n Nl% 3 +Vivienne 'vIvI@n Nl% 3 +Volgograd 'v0lg@gr&d Nn% 3 +Voronezh v@'r@UnI Nn$ 3 +Vulgate 'vVlgeIt K6$ 2 +Vulgates 'vVlgeIts Kj$ 2 +W 'dVblju Ki$ 3 +W's 'dVbljuz Kj$ 3 +WC ,dVblju'si Y>% 4 +WCs ,dVblju'siz Y)% 4 +WHO ,dVblju,eItS'@U Y>% 5 +WI ,dVblju'aI Y>% 4 +WRAC ,dVblju,A,reI'si Y>% 6 +WRAF ,dVblju,A,reI'ef Y>% 6 +WRNS renz Y>% 1 +Wakefield 'weIkfild Nn% 2 +Wales weIlz Nm% 1 +Wall Street 'wOl strit No% 2 +Wallace 'w0l@s Nl% 2 +Wallasey 'w0l@sI Nn% 3 +Wallingford 'w0lINf@d Nn$ 3 +Wallsend 'wOlzend Nn$ 2 +Wally 'w0lI Nl% 2 +Walsall 'w0lsOl Nn% 2 +Walsham 'w0lS@m Nn$ 2 +Walter 'wOlt@R Nl% 2 +Waltham Forest ,w0lT@m 'f0rIst Nn% 4 +Walton 'w0ltn Nn$ 2 +Wandsworth 'w0nzw@T Nn% 2 +Wantage 'w0ntIdZ Nn$ 2 +Ware we@R Nn$ 1 +Warley 'wOlI Nn$ 2 +Warminster 'wOmInst@R Nn$ 3 +Warrington 'w0rINt@n Nn% 3 +Warsaw 'wOsO Nn% 2 +Warsop 'wOs0p Nn$ 2 +Warwick 'w0rIk Nn% 2 +Warwickshire 'w0rIkS@R Nm% 3 +Washington 'w0SINt@n Nn% 3 +Washington DC ,w0SINt@n ,di 'si Nn% 5 +Waterford 'wOt@f@d Nn% 3 +Waterloo ,wOt@'lu No% 3 +Watford 'w0tf@d Nn% 2 +Wayne weIn Nl% 1 +Wear wI@R Nm$ 1 +Wed 'wenzdeI Y=% 2 +Wednesday 'wenzdeI K6%,No% 2 +Wednesdays 'wenzdeIz Kj% 2 +Wellingborough 'welINbr@ Nn$ 3 +Wellington 'welINt@n Nm% 3 +Wells welz Nn% 1 +Welsh welS L@%,OA% 1 +Welshman 'welSm@n Ki% 2 +Welshmen 'welSm@n Kj% 2 +Welshpool 'welSpul Nn$ 2 +Welwyn 'welIn Nn% 2 +Welwyn Garden City ,welIn ,gAdn 'sItI Nn% 6 +Wendover 'wend@UveR Nn$ 3 +Wendy 'wendI Nl% 2 +Wesleyan 'wezlI@n K6%,OA% 3 +Wesleyans 'wezlI@nz Kj% 3 +West Bromwich ,west 'br0mItS Nn% 3 +Westbury 'wesb@rI Nn$ 3 +Westhoughton west'hOtn Nn$ 3 +Westmeath west'miD Nm$ 2 +Westminster 'westmInst@R Nn% 3 +Westmoreland 'westm@l@nd Nm% 3 +Weston-super-Mare ,westn-,sup@-'me@R Nn% 5 +Wetherby 'weD@bI Nn% 3 +Wexford 'weksf@d Nm% 2 +Weymouth 'weIm@T Nn% 2 +Whaley Bridge ,weIlI 'brIdZ Nn$ 3 +Wheatley Hill ,witlI 'hIl Nn$ 3 +Whig wIg K6$ 1 +Whigs wIgz Kj$ 1 +Whit wIt K6$ 1 +Whitburn 'wItb3n Nn$ 2 +Whitby 'wItbI Nn% 2 +Whitchurch 'wItS3tS Nn$ 2 +Whitehall waIt'hOl No% 2 +Whitehaven 'waItheIvn Nn% 3 +Whitley Bay ,wItlI 'beI Nn$ 3 +Whits wIts Kj$ 1 +Whitstable 'wItst@bl Nn% 3 +Whitsun 'wItsn K6%,No% 2 +Whitsuns 'wItsnz Kj$ 2 +Whitsuntide 'wIts@ntaId K6%,No% 3 +Whitsuntides 'wIts@ntaIdz Kj$ 3 +Whittle-le-Woods ,wItl-I-'wUdz Nn$ 4 +Whittlesey 'wItlsI Nn$ 3 +Whitworth 'wItw@T Nn$ 2 +Wick wIk Nn$ 1 +Wickford 'wIkf@d Nn$ 2 +Wicklow 'wIkl@U Nm% 2 +Widnes 'wIdnIs Nn% 2 +Wiesbaden 'visbAdn Nn% 3 +Wigan 'wIgn Nn% 2 +Wight waIt Nm% 1 +Wilf wIlf Nl% 1 +Wilfrid 'wIlfrId Nl% 2 +Wilhelmshaven 'vIlhelmzhAvn Nn$ 4 +Will wIl Nl% 1 +William 'wIlI@m Nl% 3 +Willie 'wIlI Nl% 2 +Willington 'wIlINt@n Nn$ 3 +Willy 'wIlI Nl% 2 +Wilmslow 'wIlmzl@U Nn$ 2 +Wilton 'wIlt@n K6$ 2 +Wiltons 'wIlt@nz Kj$ 2 +Wiltshire 'wIltS@R Nm% 2 +Wimbourne 'wImbOn Nn$ 2 +Wimbourne Minster ,wImbOn 'mInst@R Nn$ 4 +Winchester 'wIntSIst@R Nn% 3 +Windermere 'wInd@mI@R Nn% 3 +Windsor 'wInz@R Nn% 2 +Wingate 'wINgeIt Nn$ 2 +Winifred 'wInIfrId Nl% 3 +Winnie 'wInI Nl% 2 +Winnipeg 'wInIpeg Nn% 3 +Winsford 'wInzf@d Nn$ 2 +Wisbech 'wIzbitS Nn$ 2 +Wisconsin wIs'k0nsIn Nm% 3 +Witham 'wIt@m Nn$ 2 +Withernsea 'wID@nsi Nn$ 3 +Witney 'wItnI Nn$ 2 +Woburn 'w@Ub@n Nn$ 2 +Wokingham 'w@UkIN@m Nn$ 3 +Wolverhampton 'wUlv@,h&mpt@n Nn% 4 +Wolverton 'wUlv@t@n Nn$ 3 +Wombourne 'w0mbOn Nn$ 2 +Woodbridge 'wUdbrIdZ Nn$ 2 +Wootton Bassett ,wUtn 'b&sIt Nn$ 4 +Worcester 'wUst@R Nn% 2 +Workington 'w3kINt@n Nn% 3 +Worksop 'w3ks0p Nn$ 2 +Worthing 'w3DIN Nn% 2 +Wrexham 'reks@m Nn% 2 +Writtle 'rItl Nn$ 2 +Wroclaw 'r0tslAf Nn$ 2 +Wroughton 'rOtn Nn$ 2 +Wuhan ,wU'hAn Nn$ 2 +Wuppertal 'vUp@tAl Nn$ 3 +Wurzburg 'v3tsb3g Nn$ 2 +Wusih ,wU'si Nn$ 2 +Wycombe 'wIk@m Nn$ 2 +Wymondham 'wIm@nd@m Nn$ 3 +Wyoming waI'@UmIN Nm% 3 +Wythall 'wItl Nn$ 2 +X eks Ki$ 1 +X's 'eksIz Kj$ 2 +X-ray 'eks-reI H0%,K6% 26A +X-rayed 'eks-reId Hc%,Hd% 26A +X-raying 'eks-reIIN Hb% 36A +X-rays 'eks-reIz Ha%,Kj% 26A +Xerox 'zI@r0ks H1%,K7% 2 +Xeroxed 'zI@r0kst Hc%,Hd% 2 +Xeroxes 'zI@r0ksIz Ha%,Kj% 3 +Xeroxing 'zI@r0ksIN Hb% 3 +Xmas 'eksm@s K7%,No% 2 +Xmases 'eksm@sIz Kj$ 3 +Y waI Ki$ 1 +Y's waIz Kj$ 1 +YHA ,waI,eI'tSeI Y>% 3 +YMCA ,waI,em,si'eI Y>% 4 +YWCA ,waI,dVblju,si'eI Y>% 4 +Yank j&Nk K6% 1 +Yankee 'j&NkI K6% 2 +Yankees 'j&NkIz Kj% 2 +Yanks j&Nks Kj% 1 +Yarmouth 'jAm@T Nn% 2 +Yaroslavi ,j&r@'slAvI Nn$ 4 +Yate jeIt Nn$ 1 +Yateley 'jeItlI Nn$ 2 +Yemen 'jem@n Nm% 2 +Yemeni 'jem@nI K6$,OA$ 3 +Yemenis 'jem@nIz Kj$ 3 +Yeovil 'j@UvIl Nn% 2 +Yerevan ,jerI'vAn Nn$ 3 +Yiddish 'jIdIS L@% 2 +Yokohama ,j@Uk@'hAm@ Nn% 4 +York jOk Nn% 1 +Yorkley 'jOklI Nn$ 2 +Yorkshire 'jOkS@R Nm% 2 +Ystradgynlais ,Istr&d'gInlaIs Nn$ 4 +Yugoslav 'jug@UslAv K6%,OA% 3 +Yugoslavia ,jug@U'slAvI@ Nm% 5 +Yugoslavian ,jug@U'slAvI@n K6%,OA% 5 +Yugoslavians ,jug@U'slAvI@nz Kj% 5 +Yugoslavs 'jug@UslAvz Kj% 3 +Yukon 'juk0n Nm$ 2 +Yvonne I'v0n Nl% 2 +Z zed Ki$ 1 +Z's zedz Kj$ 1 +Zagreb 'zAgreb Nn% 2 +Zaire zA'I@R Nm% 3 +Zairean zA'I@rI@n K6$,OA$ 4 +Zaireans zA'I@rI@nz Kj$ 4 +Zambia 'z&mbI@ Nm% 3 +Zambian 'z&mbI@n K6%,OA% 3 +Zambians 'z&mbI@nz Kj% 3 +Zaporozhye ,z&p@'rOZI Nn$ 4 +Zaragoza ,z&r@'g@Uz@ Nn$ 4 +Zealand 'zIl@nd Nm$ 2 +Zealander 'zIl@nd@R K6$,OA$ 3 +Zealanders 'zIl@nd@z Kj$ 3 +Zen zen L@% 1 +Zimbabwe zIm'bAbwI Nm% 3 +Zimbabwean zIm'bAbwI@n K6$,OA$ 4 +Zimbabweans zIm'bAbwI@nz Kj$ 4 +Zion 'zaI@n K6% 2 +Zionism 'zaI@nIz@m L@% 4 +Zionist 'zaI@nIst K6%,OA% 3 +Zionists 'zaI@nIsts Kj% 3 +Zions 'zaI@nz Kj$ 2 +Zoe 'z@UI Nl% 2 +Zurich 'zjU@rIk Nn% 2 +_eclair I'kle@R K6% 2 +_eclairs I'kle@z Kj% 2 +_eclat 'eIklA L@$ 2 +_elan eI'lAn L@$ 2 +_elite eI'lit K6% 2 +_elites eI'lits Kj$ 2 +_emigr_e 'emIgreI K6% 3 +_emigr_es 'emIgreIz Kj% 3 +_ep_ee eI'peI K6$ 2 +_ep_ees eI'peIz Kj$ 2 +`a la carte ,A lA 'kAt Pu% 3 +`a la mode ,A lA 'm@Ud Pu% 3 +a @ S-* 1 +a eI Ki$ 1 +a fortiori ,eI ,fOtI'OraI Pu$ 5 +a posteriori ,eI ,p0sterI'OraI OA$,Pu$ 6 +a priori ,eI ,praI'OraI OA$,Pu$ 4 +a's eIz Kj$ 1 +ab initio ,&b I'nISI@U Pu$ 5 +abaci '&b@saI Kj$ 3 +aback @'b&k Pu% 2 +abacus '&b@k@s K7% 3 +abacuses '&b@k@sIz Kj% 4 +abaft @'bAft Pu$,T-$ 2 +abandon @'b&nd@n H0%,L@% 36A,14 +abandoned @'b&nd@nd Hc%,Hd%,OA% 36A,14 +abandoning @'b&nd@nIN Hb% 46A,14 +abandonment @'b&nd@nm@nt L@% 4 +abandons @'b&nd@nz Ha% 36A,14 +abase @'beIs H2% 26B +abased @'beIst Hc%,Hd% 26B +abasement @'beIsm@nt L@% 3 +abases @'beIsIz Ha% 36B +abash @'b&S H1% 26A +abashed @'b&St Hc%,Hd% 26A +abashes @'b&SIz Ha$ 36A +abashing @'b&SIN Hb$ 36A +abasing @'beIsIN Hb% 36B +abate @'beIt J2% 22A,6A +abated @'beItId Jc%,Jd% 32A,6A +abatement @'beItm@nt L@% 3 +abates @'beIts Ja% 22A,6A +abating @'beItIN Jb% 32A,6A +abattoir '&b@twAR K6% 3 +abattoirs '&b@twAz Kj% 3 +abb_e '&beI K6$ 2 +abb_es '&beIz Kj$ 2 +abbess '&bes K7% 2 +abbesses '&besIz Kj% 3 +abbey '&bI K6% 2 +abbeys '&bIz Kj% 2 +abbot '&b@t K6% 2 +abbots '&b@ts Kj% 2 +abbreviate @'brivIeIt H2% 46A,14 +abbreviated @'brivIeItId Hc%,Hd% 56A,14 +abbreviates @'brivIeIts Ha% 46A,14 +abbreviating @'brivIeItIN Hb% 56A,14 +abbreviation @,brivI'eISn M6% 5 +abbreviations @,brivI'eISnz Mj% 5 +abdicate '&bdIkeIt J2% 32A,6A +abdicated '&bdIkeItId Jc%,Jd% 42A,6A +abdicates '&bdIkeIts Ja% 32A,6A +abdicating '&bdIkeItIN Jb% 42A,6A +abdication ,&bdI'keISn M6% 4 +abdications ,&bdI'keISnz Mj% 4 +abdomen '&bd@m@n K6% 3 +abdomens '&bd@m@nz Kj% 3 +abdominal &b'd0mInl OA% 4 +abduct &b'dVkt H0% 26A +abducted &b'dVktId Hc%,Hd% 36A +abducting &b'dVktIN Hb% 36A +abduction &b'dVkSn K6% 3 +abductions &b'dVkSnz Kj% 3 +abducts &b'dVkts Ha% 26A +abeam @'bim Pu$ 2 +abed @'bed Pu% 2 +aberrant &'ber@nt OA% 3 +aberration ,&b@'reISn M6% 4 +aberrations ,&b@'reISnz Mj% 4 +abet @'bet H4% 26A,14 +abets @'bets Ha% 26A,14 +abetted @'betId Hc%,Hd% 36A,14 +abetting @'betIN Hb% 36A,14 +abeyance @'beI@ns L@% 3 +abhor @b'hOR H4% 26A +abhorred @b'hOd Hc%,Hd% 26A +abhorrence @b'h0r@ns L@% 3 +abhorrent @b'h0r@nt OA% 3 +abhorring @b'hOrIN Hb% 36A +abhors @b'hOz Ha% 26A +abide @'baId J2% 22C,3A,6A +abided @'baIdId Jc%,Jd% 32C,3A,6A +abides @'baIdz Ja% 22C,3A,6A +abiding @'baIdIN Jb%,OA% 32C,3A,6A +abilities @'bIlItIz Mj% 4 +ability @'bIlItI M8% 4 +abject '&bdZekt OA% 2 +abjection &b'dZekSn K6% 3 +abjections &b'dZekSnz Kj$ 3 +abjectly '&bdZektlI Pu% 3 +abjuration ,&bdZU@'reISn M6$ 4 +abjurations ,&bdZU@'reISnz Mj$ 4 +abjure @b'dZU@R H2$ 26A +abjured @b'dZU@d Hc$,Hd$ 26A +abjures @b'dZU@z Ha$ 26A +abjuring @b'dZU@rIN Hb$ 36A +ablative '&bl@tIv K6$,OA$ 3 +ablatives '&bl@tIvz Kj$ 3 +ablaut '&blaUt K6$ 2 +ablauts '&blaUts Kj$ 2 +ablaze @'bleIz Op%,Pu% 2 +able 'eIbl OB* 2 +able-bodied ,eIb@l-'b0dId OA% 4 +abler 'eIbl@R Or% 2 +ablest 'eIblIst Os% 2 +ablution @'bluSn K6% 3 +ablutions @'bluSnz Kj% 3 +ably 'eIblI Pu% 2 +abnegation ,&bnI'geISn L@$ 4 +abnormal &b'nOml OA% 3 +abnormalities ,&bnO'm&lItIz Mj% 5 +abnormality ,&bnO'm&lItI M8% 5 +abnormally &b'nOm@lI Pu% 4 +aboard @'bOd Pu%,T-% 2 +abode @'b@Ud Ic%,K6% 22C +abodes @'b@Udz Kj% 2 +abolish @'b0lIS H1% 36A +abolished @'b0lISt Hc%,Hd% 36A +abolishes @'b0lISIz Ha% 46A +abolishing @'b0lISIN Hb% 46A +abolition ,&b@'lISn L@% 4 +abolitionist ,&b@'lIS@nIst K6% 5 +abolitionists ,&b@'lIS@nIsts Kj% 5 +abominable @'b0mIn@bl OA% 5 +abominably @'b0mIn@blI Pu% 5 +abominate @'b0mIneIt H2% 46A,6C +abominated @'b0mIneItId Hc%,Hd% 56A,6C +abominates @'b0mIneIts Ha% 46A,6C +abominating @'b0mIneItIN Hb% 56A,6C +abomination @,b0mI'neISn M6% 5 +abominations @,b0mI'neISnz Mj% 5 +aboriginal ,&b@'rIdZ@nl K6$,OA$ 5 +aboriginals ,&b@'rIdZ@nlz Kj$ 5 +aborigine ,&b@'rIdZ@nI K6% 5 +aborigines ,&b@'rIdZ@nIz Kj% 5 +abort @'bOt J0% 22A,6A +aborted @'bOtId Jc%,Jd% 32A,6A +aborting @'bOtIN Jb% 32A,6A +abortion @'bOSn M6% 3 +abortionist @'bOS@nIst K6% 4 +abortionists @'bOS@nIsts Kj% 4 +abortions @'bOSnz Mj% 3 +abortive @'bOtIv OA% 3 +abortively @'bOtIvlI Pu% 4 +aborts @'bOts Ja% 22A,6A +abound @'baUnd I0% 23A +abounded @'baUndId Ic%,Id% 33A +abounding @'baUndIN Ib% 33A +abounds @'baUndz Ia% 23A +about @'baUt P+*,T-* 2 +about-face @,baUt-'feIs I2%,Ki% 3 +about-faced @,baUt-'feIst Ic%,Id% 3 +about-faces @,baUt-'feIsIz Ia% 4 +about-facing @,baUt-'feIsIN Ib% 4 +above @'bVv Pu*,T-* 2 +above board @,bVv 'bOd Op%,Pu% 3 +above-mentioned ,@bVv-'menS@nd OA% 4 +above-named ,@bVv-'neImd OA% 3 +abracadabra ,&br@k@'d&br@ L@$,W-% 5 +abrade @'breId H2$ 26A +abraded @'breIdId Hc$,Hd$ 36A +abrades @'breIdz Ha$ 26A +abrading @'breIdIN Hb$ 36A +abrasion @'breIZn M6% 3 +abrasions @'breIZnz Mj% 3 +abrasive @'breIsIv M6%,OA% 3 +abrasives @'breIsIvz Mj% 3 +abreast @'brest Pu% 2 +abridge @'brIdZ H2% 26A +abridged @'brIdZd Hc%,Hd% 26A +abridgement @'brIdZm@nt M6% 3 +abridgements @'brIdZm@nts Mj% 3 +abridges @'brIdZIz Ha% 36A +abridging @'brIdZIN Hb% 36A +abridgment @'brIdZm@nt M6% 3 +abridgments @'brIdZm@nts Mj% 3 +abroad @'brOd Pu% 2 +abrogate '&br@geIt H2$ 36A +abrogated '&br@geItId Hc$,Hd$ 46A +abrogates '&br@geIts Ha$ 36A +abrogating '&br@geItIN Hb$ 46A +abrogation ,&br@'geISn K6$ 4 +abrogations ,&br@'geISnz Kj$ 4 +abrupt @'brVpt OA% 2 +abruptly @'brVptlI Pu% 3 +abruptness @'brVptn@s L@% 3 +abscess '&bses K7% 2 +abscesses '&bsesIz Kj% 3 +abscond @b'sk0nd I0% 22A,3A +absconded @b'sk0ndId Ic%,Id% 32A,3A +absconding @b'sk0ndIN Ib% 32A,3A +absconds @b'sk0ndz Ia% 22A,3A +absence '&bs@ns M6% 2 +absences '&bs@nsIz Mj% 3 +absent '&bs@nt OA% 2 +absent @b'sent H0% 26B,14 +absent-minded ,&bs@nt-'maIndId OA% 4 +absent-mindedly ,&bs@nt-'maIndIdlI Pu% 5 +absent-mindedness ,&bs@nt-'maIndIdn@s L@% 5 +absented @b'sentId Hc%,Hd% 36B,14 +absentee ,&bs@n'ti K6% 3 +absenteeism ,&bs@n'tiIz@m L@% 5 +absentees ,&bs@n'tiz Kj% 3 +absenting @b'sentIN Hb% 36B,14 +absently '&bs@ntlI Pu% 3 +absents @b'sents Ha% 26B,14 +absinth '&bsInT L@% 2 +absinthe '&bsInT L@% 2 +absolute '&bs@lut OA% 3 +absolutely '&bs@lutlI Pu% 4 +absolution ,&bs@'luSn L@% 4 +absolutism ,&bs@'lutIz@m L@% 5 +absolve @b'z0lv H2% 26A,14 +absolved @b'z0lvd Hc%,Hd% 26A,14 +absolves @b'z0lvz Ha% 26A,14 +absolving @b'z0lvIN Hb% 36A,14 +absorb @b'sOb H0% 26A +absorbed @b'sObd Hc%,Hd% 26A +absorbent @b'sOb@nt K6%,OA% 3 +absorbents @b'sOb@nts Kj% 3 +absorbing @b'sObIN Hb% 36A +absorbs @b'sObz Ha% 26A +absorption @b'sOpSn L@% 3 +abstain @b'steIn I0% 22A,3A +abstained @b'steInd Ic%,Id% 22A,3A +abstainer @b'steIn@R K6% 3 +abstainers @b'steIn@z Kj% 3 +abstaining @b'steInIN Ib% 32A,3A +abstains @b'steInz Ia% 22A,3A +abstemious @b'stimI@s OA% 4 +abstemiously @b'stimI@slI Pu% 5 +abstemiousness @b'stimI@sn@s L@% 5 +abstention @b'stenSn M6$ 3 +abstentions @b'stenSnz Mj$ 3 +abstinence '&bstIn@ns L@% 3 +abstract '&bstr&kt K6%,OA% 2 +abstract @b'str&kt H0% 26A,14 +abstracted @b'str&ktId Hc%,Hd%,OA% 36A,14 +abstractedly @b'str&ktIdlI Pu% 4 +abstracting @b'str&ktIN Hb% 36A,14 +abstraction @b'str&kSn M6% 3 +abstractions @b'str&kSnz Mj% 3 +abstracts '&bstr&kts Kj% 2 +abstracts @b'str&kts Ha% 26A,14 +abstruse @b'strus OA% 2 +abstrusely @b'struslI Pu% 3 +abstruseness @b'strusn@s L@% 3 +absurd @b's3d OA% 2 +absurdities @b's3dItIz Mj% 4 +absurdity @b's3dItI M8% 4 +absurdly @b's3dlI Pu% 3 +abundance @'bVnd@ns L@% 3 +abundant @'bVnd@nt OA% 3 +abundantly @'bVnd@ntlI Pu% 4 +abuse @'bjus M6% 2 +abuse @'bjuz H2% 26A +abused @'bjuzd Hc%,Hd% 26A +abuses @'bjusIz Mj% 3 +abuses @'bjuzIz Ha% 36A +abusing @'bjuzIN Hb% 36A +abusive @'bjusIv OA% 3 +abusively @'bjusIvlI Pu% 4 +abut @'bVt I4% 23A +abutment @'bVtm@nt K6% 3 +abutments @'bVtm@nts Kj% 3 +abuts @'bVts Ia% 23A +abutted @'bVtId Ic%,Id% 33A +abutting @'bVtIN Ib% 33A +abysm @'bIz@m K6$ 3 +abysmal @'bIzml OA% 3 +abysmally @'bIzm@lI Pu% 4 +abysms @'bIz@mz Kj$ 3 +abyss @'bIs K7% 2 +abysses @'bIsIz Kj% 3 +acacia @'keIS@ K6$ 3 +acacias @'keIS@z Kj$ 3 +academic ,&k@'demIk K6%,OA% 4 +academically ,&k@'demIklI Pu% 5 +academicals ,&k@'demIklz Kj$ 5 +academician @,k&d@'mISn K6% 5 +academicians @,k&d@'mISnz Kj% 5 +academics ,&k@'demIks Kj% 4 +academies @'k&d@mIz Kj% 4 +academy @'k&d@mI K8% 4 +accede @k'sid I2% 22A,3A +acceded @k'sidId Ic%,Id% 32A,3A +accedes @k'sidz Ia% 22A,3A +acceding @k'sidIN Ib% 32A,3A +accelerando &k,sel@'r&nd@U K6$,OA$,Pu$ 5 +accelerandos &k,sel@'r&nd@Uz Kj$ 5 +accelerate @k'sel@reIt J2% 42A,6A +accelerated @k'sel@reItId Jc%,Jd% 52A,6A +accelerates @k'sel@reIts Ja% 42A,6A +accelerating @k'sel@reItIN Jb% 52A,6A +acceleration @k,sel@'reISn L@% 5 +accelerator @k'sel@reIt@R K6% 5 +accelerators @k'sel@reIt@z Kj% 5 +accent &k'sent H0% 26A +accent '&ks@nt M6% 2 +accented &k'sentId Hc%,Hd% 36A +accenting &k'sentIN Hb% 36A +accents &k'sents Ha% 26A +accents '&ks@nts Mj% 2 +accentuate @k'sentSUeIt H2% 46A +accentuated @k'sentSUeItId Hc%,Hd% 56A +accentuates @k'sentSUeIts Ha% 46A +accentuating @k'sentSUeItIN Hb% 56A +accentuation @k,sentSU'eISn K6% 5 +accentuations @k,sentSU'eISnz Kj% 5 +accept @k'sept J0% 22A,6A,9,16B +acceptability @k,sept@'bIlItI L@% 6 +acceptable @k'sept@bl OA% 4 +acceptably @k'sept@blI Pu% 4 +acceptance @k'sept@ns L@% 3 +acceptation ,&ksep'teISn K6$ 4 +acceptations ,&ksep'teISnz Kj$ 4 +accepted @k'septId Jc%,Jd% 32A,6A,9,16B +accepting @k'septIN Jb% 32A,6A,9,16B +accepts @k'septs Ja% 22A,6A,9,16B +access '&kses L@% 2 +accessaries @k'ses@rIz Kj% 4 +accessary @k'ses@rI K8% 4 +accessibility @k,ses@'bIlItI L@% 6 +accessible @k'ses@bl OA% 4 +accession &k'seSn M6% 3 +accessions &k'seSnz Mj% 3 +accessories @k'ses@rIz Kj% 4 +accessory @k'ses@rI K8% 4 +accidence '&ksId@ns L@$ 3 +accident '&ksId@nt M6% 3 +accident-prone '&ksId@nt-,pr@Un OA% 4 +accidental ,&ksI'dentl OA% 4 +accidentally ,&ksI'dent@lI Pu% 5 +accidents '&ksId@nts Mj% 3 +acclaim @'kleIm H0%,L@% 26A,16B,23 +acclaimed @'kleImd Hc%,Hd% 26A,16B,23 +acclaiming @'kleImIN Hb% 36A,16B,23 +acclaims @'kleImz Ha% 26A,16B,23 +acclamation ,&kl@'meISn L@% 4 +acclimate '&klImeIt J2$ 3 +acclimated '&klImeItId Jc$,Jd$ 4 +acclimates '&klImeIts Ja$ 3 +acclimating '&klImeItIN Jb$ 4 +acclimation ,&klaI'meISn L@$ 4 +acclimatization @,klaIm@taI'zeISn L@% 6 +acclimatize @'klaIm@taIz J2% 42A,14 +acclimatized @'klaIm@taIzd Jc%,Jd% 42A,14 +acclimatizes @'klaIm@taIzIz Ja% 52A,14 +acclimatizing @'klaIm@taIzIN Jb% 52A,14 +acclivities @'klIvItIz Kj$ 4 +acclivity @'klIvItI K8$ 4 +accolade '&k@leId K6% 3 +accolades '&k@leIdz Kj% 3 +accommodate @'k0m@deIt H2% 46A,14 +accommodated @'k0m@deItId Hc%,Hd% 56A,14 +accommodates @'k0m@deIts Ha% 46A,14 +accommodating @'k0m@deItIN Hb%,OA% 56A,14 +accommodation @,k0m@'deISn M6% 5 +accommodations @,k0m@'deISnz Mj% 5 +accompanied @'kVmp@nId Hc%,Hd% 46A,14 +accompanies @'kVmp@nIz Ha% 46A,14 +accompaniment @'kVmp@nIm@nt K6% 5 +accompaniments @'kVmp@nIm@nts Kj% 5 +accompanist @'kVmp@nIst K6% 4 +accompanists @'kVmp@nIsts Kj% 4 +accompany @'kVmp@nI H3% 46A,14 +accompanying @'kVmp@nIIN Hb% 56A,14 +accomplice @'kVmplIs K6% 3 +accomplices @'kVmplIsIz Kj% 4 +accomplish @'kVmplIS H1% 36A +accomplished @'kVmplISt Hc%,Hd%,OA% 36A +accomplishes @'kVmplISIz Ha% 46A +accomplishing @'kVmplISIN Hb% 46A +accomplishment @'kVmplISm@nt M6% 4 +accomplishments @'kVmplISm@nts Mj% 4 +accord @'kOd J0%,M6% 22A,2C,3A,12A,13A +accordance @'kOd@ns K6% 3 +accordances @'kOd@nsIz Kj$ 4 +accorded @'kOdId Jc%,Jd% 32A,2C,3A,12A,13A +according @'kOdIN Jb% 32A,2C,3A,12A,13A +according as @'kOdIN &z V-% 4 +according to @'kOdIN t@ T-% 4 +accordingly @'kOdINlI Pu% 4 +accordion @'kOdI@n K6% 4 +accordions @'kOdI@nz Kj% 4 +accords @'kOdz Ja%,Mj% 22A,2C,3A,12A,13A +accost @'k0st H0% 26A +accosted @'k0stId Hc%,Hd% 36A +accosting @'k0stIN Hb% 36A +accosts @'k0sts Ha% 26A +accouchement @'kuSm0N K6$ 3 +accouchements @'kuSm0Nz Kj$ 3 +account @'kaUnt J0%,M6% 23A,25 +accountable @'k@Unt@bl OA% 4 +accountancy @'kaUnt@nsI L@% 4 +accountant @'kaUnt@nt K6% 3 +accountants @'kaUnt@nts Kj% 3 +accounted @'kaUntId Jc%,Jd% 33A,25 +accounting @'kaUntIN Jb% 33A,25 +accounts @'kaUnts Ja%,Mj% 23A,25 +accoutrements @'kut@m@nts Kj$ 4 +accredit @'kredIt H0% 314 +accredited @'kredItId Hc%,Hd%,OA% 414 +accrediting @'kredItIN Hb% 414 +accredits @'kredIts Ha% 314 +accretion @'kriSn M6% 3 +accretions @'kriSnz Mj% 3 +accrue @'kru I2% 22A,3A +accrued @'krud Ic%,Id% 22A,3A +accrues @'kruz Ia% 22A,3A +accruing @'kruIN Ib% 32A,3A +accumulate @'kjumjUleIt J2% 42A,6A +accumulated @'kjumjUleItId Jc%,Jd% 52A,6A +accumulates @'kjumjUleIts Ja% 42A,6A +accumulating @'kjumjUleItIN Jb% 52A,6A +accumulation @,kjumjU'leISn M6% 5 +accumulations @,kjumjU'leISnz Mj% 5 +accumulative @'kjumjUl@tIv OA% 5 +accumulator @'kjumjUleIt@R K6% 5 +accumulators @'kjumjUleIt@z Kj% 5 +accuracies '&kj@r@sIz Mj% 4 +accuracy '&kj@r@sI M8% 4 +accurate '&kj@r@t OA% 3 +accurately '&kj@r@tlI Pu% 4 +accursed @'k3sId OA% 3 +accurst @'k3st OA% 2 +accusation ,&kju'zeISn M6% 4 +accusations ,&kju'zeISnz Mj% 4 +accusative @'kjuz@tIv K6%,OA% 4 +accusatives @'kjuz@tIvz Kj% 4 +accuse @'kjuz H2% 26A,14 +accused @'kjuzd Hc%,Hd% 26A,14 +accuser @'kjuz@R K6% 3 +accusers @'kjuz@z Kj% 3 +accuses @'kjuzIz Ha% 36A,14 +accusing @'kjuzIN Hb% 36A,14 +accusingly @'kjuzINlI Pu% 4 +accustom @'kVst@m H0% 314 +accustomed @'kVst@md Hc%,Hd%,OA% 314 +accustoming @'kVst@mIN Hb% 414 +accustoms @'kVst@mz Ha% 314 +ace eIs K6% 1 +acerbities @'s3bItIz Mj$ 4 +acerbity @'s3bItI M8% 4 +aces 'eIsIz Kj% 2 +acetate '&sIteIt K6$ 3 +acetates '&sIteIts Kj$ 3 +acetic @'sitIk OA% 3 +acetylene @'setIlin L@% 4 +ache eIk I2%,K6% 12A,3A,4A +ached eIkt Ic%,Id% 12A,3A,4A +aches eIks Ia%,Kj% 12A,3A,4A +achievable @'tSiv@bl OA% 4 +achieve @'tSiv H2% 26A +achieved @'tSivd Hc%,Hd% 26A +achievement @'tSivm@nt M6% 3 +achievements @'tSivm@nts Mj% 3 +achieves @'tSivz Ha% 26A +achieving @'tSivIN Hb% 36A +aching 'eIkIN Ib% 22A,3A,4A +acid '&sId M6%,OA% 2 +acidic @'sIdIk OA% 3 +acidified @'sIdIfaId Jc%,Jd% 42A,6A +acidifies @'sIdIfaIz Ja% 42A,6A +acidify @'sIdIfaI J3% 42A,6A +acidifying @'sIdIfaIIN Jb% 52A,6A +acidity @'sIdItI L@% 4 +acids '&sIdz Mj% 2 +acidulated @'sIdjUleItId OA$ 5 +acidulous @'sIdjUl@s OA$ 4 +ack-ack ,&k-'&k L@$ 2 +acknowledge @k'n0lIdZ H2% 36A,6C,9,16B,24A,25 +acknowledged @k'n0lIdZd Hc%,Hd% 36A,6C,9,16B,24A,25 +acknowledgement @k'n0lIdZm@nt K6% 4 +acknowledgements @k'n0lIdZm@nts Kj% 4 +acknowledges @k'n0lIdZIz Ha% 46A,6C,9,16B,24A,25 +acknowledging @k'n0lIdZIN Hb% 46A,6C,9,16B,24A,25 +acme '&kmI Ki% 2 +acne '&knI L@% 2 +acolyte '&k@laIt K6$ 3 +acolytes '&k@laIts Kj$ 3 +aconite '&k@naIt K6$ 3 +aconites '&k@naIts Kj$ 3 +acorn 'eIkOn K6% 2 +acorn-cup 'eIkOn-kVp K6$ 3 +acorn-cups 'eIkOn-kVps Kj$ 3 +acorns 'eIkOnz Kj% 2 +acoustic @'kustIk K6%,OA% 3 +acoustics @'kustIks Lk% 3 +acquaint @'kweInt H0% 214 +acquaintance @'kweInt@ns M6% 3 +acquaintances @'kweInt@nsIz Mj% 4 +acquaintanceship @'kweInt@nSIp K6% 4 +acquaintanceships @'kweInt@nSIps Kj% 4 +acquainted @'kweIntId Hc%,Hd% 314 +acquainting @'kweIntIN Hb% 314 +acquaints @'kweInts Ha% 214 +acquiesce ,&kwI'es I2% 32A,3A +acquiesced ,&kwI'est Ic%,Id% 32A,3A +acquiescence ,&kwI'esns K6% 4 +acquiescences ,&kwI'esnsIz Kj$ 5 +acquiescent ,&kwI'esnt OA% 4 +acquiesces ,&kwI'esIz Ia% 42A,3A +acquiescing ,&kwI'esIN Ib% 42A,3A +acquire @'kwaI@R H2% 26A +acquired @'kwaI@d Hc%,Hd% 26A +acquirement @'kwaI@m@nt M6% 3 +acquirements @'kwaI@m@nts Mj% 3 +acquires @'kwaI@z Ha% 26A +acquiring @'kwaI@rIN Hb% 36A +acquisition ,&kwI'zISn M6% 4 +acquisitions ,&kwI'zISnz Mj% 4 +acquisitive @'kwIz@tIv OA% 4 +acquit @'kwIt H4% 26A,14,16B +acquits @'kwIts Ha% 26A,14,16B +acquittal @'kwItl M6% 3 +acquittals @'kwItlz Mj% 3 +acquitted @'kwItId Hc%,Hd% 36A,14,16B +acquitting @'kwItIN Hb% 36A,14,16B +acre 'eIk@R K6% 2 +acreage 'eIk@rIdZ L@% 3 +acres 'eIk@z Kj% 2 +acrid '&krId OA% 2 +acrimonious ,&krI'm@UnI@s OA% 5 +acrimony '&krIm@nI L@% 4 +acrobat '&kr@b&t K6% 3 +acrobatic ,&kr@'b&tIk OA% 4 +acrobatics ,&kr@'b&tIks Lk% 4 +acrobats '&kr@b&ts Kj% 3 +acronym '&kr@nIm K6% 3 +acronyms '&kr@nImz Kj% 3 +acropolis @'kr0p@lIs K7$ 4 +acropolises @'kr0p@lIsIz Kj$ 5 +across @'kr0s Pu*,T-* 2 +acrostic @'kr0stIk K6$ 3 +acrostics @'kr0stIks Kj$ 3 +acrylic @'krIlIk K6% 3 +acrylics @'krIlIks Kj% 3 +act &kt J0%,K6% 12A,2C,3A,6A,15B +acted '&ktId Jc%,Jd% 22A,2C,3A,6A,15B +acting '&ktIN Jb%,L@%,OA% 22A,2C,3A,6A,15B +actinic &k'tInIk OA$ 3 +actinism '&ktInIz@m L@$ 4 +action '&kSn M6% 2 +actionable '&kS@n@bl OA% 4 +actions '&kSnz Mj% 2 +activate '&ktIveIt H2% 36A +activated '&ktIveItId Hc%,Hd% 46A +activates '&ktIveIts Ha% 36A +activating '&ktIveItIN Hb% 46A +activation ,&ktI'veISn K6% 4 +activations ,&ktI'veISnz Kj% 4 +active '&ktIv OA% 2 +actively '&ktIvlI Pu% 3 +activist '&ktIvIst K6% 3 +activists '&ktIvIsts Kj% 3 +activities &k'tIvItIz Mj% 4 +activity &k'tIvItI M8% 4 +actor '&kt@R K6% 2 +actors '&kt@z Kj% 2 +actress '&ktrIs K7% 2 +actresses '&ktrIsIz Kj% 3 +acts &kts Ja%,Kj% 12A,2C,3A,6A,15B +actual '&ktSU@l OA% 3 +actualities ,&ktSU'&lItIz Mj% 5 +actuality ,&ktSU'&lItI M8% 5 +actually '&ktSUlI Pu% 3 +actuarial ,&ktSU'e@rI@l OA% 5 +actuaries '&ktSU@rIz Kj% 4 +actuary '&ktSU@rI K8% 4 +actuate '&ktSUeIt H2% 36A +actuated '&ktSUeItId Hc%,Hd% 46A +actuates '&ktSUeIts Ha% 36A +actuating '&ktSUeItIN Hb% 46A +acuity @'kjuItI L@$ 4 +acumen '&kjUm@n L@$ 3 +acupuncture '&kjUpVNktS@R L@% 4 +acute @'kjut OA% 2 +acutely @'kjutlI Pu% 3 +acuteness @'kjutn@s L@% 3 +ad &d K6% 1 +ad hoc ,&d 'h0k OA%,Pu% 2 +ad infinitum ,&d ,InfI'naIt@m Pu% 5 +ad interim ,&d 'Int@rIm Pu$ 4 +ad lib ,&d 'lIb Pu% 2 +ad libitum ,&d 'lIbIt@m Pu$ 4 +ad nauseam ,&d 'nOzI&m Pu% 4 +ad valorem ,&d v@'lOr@m Pu$ 4 +ad-lib &d-'lIb I4%,OA% 22A +ad-libbed &d-'lIbd Ic%,Id% 22A +ad-libbing &d-'lIbIN Ib% 32A +ad-libs &d-'lIbz Ia% 22A +ad-man '&d-m&n Ki$ 2 +ad-men '&d-men Kj$ 2 +adage '&dIdZ K6% 2 +adages '&dIdZIz Kj% 3 +adagio @'dAdZI@U K6%,OA%,Pu% 4 +adagios @'dAdZI@Uz Kj$ 4 +adamant '&d@m@nt K6%,Op% 3 +adamantine ,&d@'m&ntaIn OA$ 4 +adamants '&d@m@nts Kj$ 3 +adapt @'d&pt H0% 26A,14 +adaptability @,d&pt@'bIlItI L@% 6 +adaptable @'d&pt@bl OA% 4 +adaptation ,&d&p'teISn M6% 4 +adaptations ,&d&p'teISnz Mj% 4 +adapted @'d&ptId Hc%,Hd% 36A,14 +adapter @'d&pt@R K6% 3 +adapters @'d&pt@z Kj% 3 +adapting @'d&ptIN Hb% 36A,14 +adaptor @'d&pt@R K6% 3 +adaptors @'d&pt@z Kj% 3 +adapts @'d&pts Ha% 26A,14 +add &d J0% 12C,3A,6A,9,14,15B +added '&dId Jc%,Jd% 22C,3A,6A,9,14,15B +addenda @'dend@ Kj% 3 +addendum @'dend@m Ki% 3 +adder '&d@R K6% 2 +adders '&d@z Kj% 2 +addict '&dIkt K6% 2 +addict @'dIkt H0% 2 +addicted @'dIktId Hc%,Hd% 3 +addicting @'dIktIN Hb% 3 +addiction @'dIkSn M6% 3 +addictions @'dIkSnz Mj% 3 +addictive @'dIktIv OA% 3 +addicts '&dIkts Kj% 2 +addicts @'dIkts Ha% 2 +adding '&dIN Jb% 22C,3A,6A,9,14,15B +adding-machine '&dIN-m@Sin K6% 4 +adding-machines '&dIN-m@Sinz Kj% 4 +addition @'dISn M6% 3 +additional @'dIS@nl OA% 4 +additionally @'dIS@n@lI Pu% 5 +additions @'dISnz Mj% 3 +additive '&dItIv K6% 3 +additives '&dItIvz Kj% 3 +addle '&dl J2%,OA% 22A,6A +addle-brained '&dl-breInd OA% 3 +addle-head '&dl-hed K6$ 3 +addle-heads '&dl-hedz Kj$ 3 +addle-pated '&dl-,peItId OA% 4 +addled '&dld Jc%,Jd% 22A,6A +addles '&dlz Ja$ 22A,6A +addling '&dlIN Jb$ 22A,6A +address @'dres H1%,M7% 26A,14,16B +addressed @'drest Hc%,Hd% 26A,14,16B +addressee ,&dre'si K6% 3 +addressees ,&dre'siz Kj% 3 +addresses @'dresIz Ha%,Mj% 36A,14,16B +addressing @'dresIN Hb% 36A,14,16B +adds &dz Ja% 12C,3A,6A,9,14,15B +adduce @'djus H2% 26A +adduced @'djust Hc%,Hd% 26A +adduces @'djusIz Ha% 36A +adducing @'djusIN Hb% 36A +adenoidal ,&dI'noIdl OA% 4 +adenoids '&dInoIdz Kj% 3 +adept '&dept K6$,OA% 2 +adepts '&depts Kj$ 2 +adequacy '&dIkw@sI L@% 4 +adequate '&dIkw@t OA% 3 +adequately '&dIkw@tlI Pu% 4 +adhere @d'hI@R I2% 22A,3A +adhered @d'hI@d Ic%,Id% 22A,3A +adherence @d'hI@r@ns K6% 3 +adherences @d'hI@r@nsIz Kj$ 4 +adherent @d'hI@r@nt K6% 3 +adherents @d'hI@r@nts Kj% 3 +adheres @d'hI@z Ia% 22A,3A +adhering @d'hI@rIN Ib% 32A,3A +adhesion @d'hiZn M6% 3 +adhesions @d'hiZnz Mj$ 3 +adhesive @d'hisIv M6%,OA% 3 +adhesives @d'hisIvz Mj% 3 +adieu @'dju K6%,W-% 2 +adieus @'djuz Kj% 2 +adieux @'djuz Kj$ 2 +adipose '&dIp@Us OA$ 3 +adjacent @'dZeIsnt OA% 3 +adjectival ,&dZIk'taIvl OA% 4 +adjective '&dZIktIv K6% 3 +adjectives '&dZIktIvz Kj% 3 +adjoin @'dZoIn J0% 22A,6A +adjoined @'dZoInd Jc%,Jd% 22A,6A +adjoining @'dZoInIN Jb%,OA% 32A,6A +adjoins @'dZoInz Ja% 22A,6A +adjourn @'dZ3n J0% 22A,2C,6A +adjourned @'dZ3nd Jc%,Jd% 22A,2C,6A +adjourning @'dZ3nIN Jb% 32A,2C,6A +adjournment @'dZ3nm@nt K6% 3 +adjournments @'dZ3nm@nts Kj% 3 +adjourns @'dZ3nz Ja% 22A,2C,6A +adjudge @'dZVdZ H2% 29,14,25 +adjudged @'dZVdZd Hc%,Hd% 29,14,25 +adjudges @'dZVdZIz Ha% 39,14,25 +adjudging @'dZVdZIN Hb% 39,14,25 +adjudicate @'dZudIkeIt J2% 42A,3A,6A,14,25 +adjudicated @'dZudIkeItId Jc%,Jd% 52A,3A,6A,14,25 +adjudicates @'dZudIkeIts Ja% 42A,3A,6A,14,25 +adjudicating @'dZudIkeItIN Jb% 52A,3A,6A,14,25 +adjudication @,dZudI'keISn K6% 5 +adjudications @,dZudI'keISnz Kj% 5 +adjudicator '@dZudIkeIt@R K6% 5 +adjudicators '@dZudIkeIt@z Kj% 5 +adjunct '&dZVNkt K6$ 2 +adjuncts '&dZVNkts Kj$ 2 +adjuration ,&dZU@'reISn M6$ 4 +adjurations ,&dZU@'reISnz Mj$ 4 +adjure @'dZU@R H2$ 217 +adjured @'dZU@d Hc$,Hd$ 217 +adjures @'dZU@z Ha$ 217 +adjuring @'dZU@rIN Hb$ 317 +adjust @'dZVst H0% 26A,14 +adjustable @'dZVst@bl OA% 4 +adjusted @'dZVstId Hc%,Hd% 36A,14 +adjuster @'dZVst@R K6% 3 +adjusters @'dZVst@z Kj% 3 +adjusting @'dZVstIN Hb% 36A,14 +adjustment @'dZVstm@nt M6% 3 +adjustments @'dZVstm@nts Mj% 3 +adjusts @'dZVsts Ha% 26A,14 +adjutant '&dZUt@nt K6% 3 +adjutants '&dZUt@nts Kj% 3 +admass '&dm&s L@$ 2 +administer @d'mInIst@R J0% 46A,14 +administered @d'mInIst@d Jc%,Jd% 46A,14 +administering @d'mInIst@rIN Jb% 56A,14 +administers @d'mInIst@z Ja% 46A,14 +administration @d,mInI'streISn M6% 5 +administrations @d,mInI'streISnz Mj% 5 +administrative @d'mInIstr@tIv OA% 5 +administratively @d'mInIstr@tIvlI Pu% 6 +administrator @d'mInIstreIt@R K6% 5 +administrators @d'mInIstreIt@z Kj% 5 +admirable '&dm@r@bl OA% 4 +admirably '&dmIr@blI Pu% 4 +admiral '&dm@r@l K6% 3 +admirals '&dm@r@lz Kj% 3 +admiralties '&dm@r@ltIz Kj% 4 +admiralty '&dm@r@ltI K8% 4 +admiration ,&dm@'reISn L@% 4 +admire @d'maI@R H2% 26A +admired @d'maI@d Hc%,Hd% 26A +admirer @d'maIr@R K6% 3 +admirers @d'maIr@z Kj% 3 +admires @d'maI@z Ha% 26A +admiring @d'maI@rIN Hb%,OA% 36A +admiringly @d'maI@rINlI Pu% 4 +admissibility @d,mIs@'bIlItI L@% 6 +admissible @d'mIs@bl OA% 4 +admission @d'mISn M6% 3 +admissions @d'mISnz Mj% 3 +admit @d'mIt J4% 23A,6A,6C,9,14,25 +admits @d'mIts Ja% 23A,6A,6C,9,14,25 +admittance @d'mItns L@% 3 +admitted @d'mItId Jc%,Jd% 33A,6A,6C,9,14,25 +admittedly @d'mItIdlI Pu% 4 +admitting @d'mItIN Jb% 33A,6A,6C,9,14,25 +admix &d'mIks J1$ 22A,6A +admixed &d'mIkst Jc$,Jd$ 22A,6A +admixes &d'mIksIz Ja$ 32A,6A +admixing &d'mIksIN Jb$ 32A,6A +admixture &d'mIkstS@R K6% 3 +admixtures &d'mIkstS@z Kj$ 3 +admonish @d'm0nIS H1% 36A,14 +admonished @d'm0nISt Hc%,Hd% 36A,14 +admonishes @d'm0nISIz Ha% 46A,14 +admonishing @d'm0nISIN Hb% 46A,14 +admonition ,&dm@'nISn M6% 4 +admonitions ,&dm@'nISnz Mj% 4 +admonitory @d'm0nItrI OA% 4 +ado @'du L@% 2 +adobe @'d@UbI L@$ 3 +adolescence ,&d@'lesns L@% 4 +adolescent ,&d@'lesnt K6%,OA% 4 +adolescents ,&d@'lesnts Kj% 4 +adopt @'d0pt H0% 26A +adopted @'d0ptId Hc%,Hd% 36A +adopting @'d0ptIN Hb% 36A +adoption @'d0pSn K6% 3 +adoptions @'d0pSnz Kj% 3 +adoptive @'d0ptIv OA% 3 +adopts @'d0pts Ha% 26A +adorable @'dOr@bl OA% 4 +adorably @'dOr@blI Pu% 4 +adoration ,&d@'reISn L@% 4 +adore @'dOR H2% 26A,6C +adored @'dOd Hc%,Hd% 26A,6C +adorer @'dOr@R K6% 3 +adorers @'dOr@z Kj% 3 +adores @'dOz Ha% 26A,6C +adoring @'dOrIN Hb%,OA% 36A,6C +adoringly @'dOrINlI Pu% 4 +adorn @'dOn H0% 26A,14 +adorned @'dOnd Hc%,Hd% 26A,14 +adorning @'dOnIN Hb% 36A,14 +adornment @'dOnm@nt M6% 3 +adornments @'dOnm@nts Mj% 3 +adorns @'dOnz Ha% 26A,14 +adrenal @'drinl OA$ 3 +adrenalin @'dren@lIn L@% 4 +adrift @'drIft Op%,Pu% 2 +adroit @'droIt OA% 2 +adroitly @'droItlI Pu% 3 +adroitness @'droItn@s L@% 3 +ads &dz Kj% 1 +adulation ,&djU'leISn L@% 4 +adult '&dVlt K6%,OA% 2 +adulterant @'dVlt@r@nt K6% 4 +adulterants @'dVlt@r@nts Kj% 4 +adulterate @'dVlt@reIt H2% 46A,14 +adulterated @'dVlt@reItId Hc%,Hd% 56A,14 +adulterates @'dVlt@reIts Ha% 46A,14 +adulterating @'dVlt@reItIN Hb% 56A,14 +adulteration @,dVlt@'reISn K6% 5 +adulterations @,dVlt@'reISnz Kj% 5 +adulterer @'dVlt@r@R K6% 4 +adulterers @'dVlt@r@z Kj% 4 +adulteress @'dVlt@rIs K7% 4 +adulteresses @'dVlt@rIsIz Kj% 5 +adulteries @'dVlt@rIz Mj$ 4 +adulterous @'dVlt@r@s OA% 4 +adultery @'dVlt@rI M8% 4 +adulthood '&d@lthUd M6% 3 +adulthoods '&d@lthUdz Mj$ 3 +adults '&dVlts Kj% 2 +adumbrate '&dVmbreIt H2$ 36A +adumbrated '&dVmbreItId Hc$,Hd$ 46A +adumbrates '&dVmbreIts Ha$ 36A +adumbrating '&dVmbreItIN Hb$ 46A +advance @d'vAns J2%,M6% 22A,2B,3A,6A,12A,13A,14 +advanced @d'vAnst Jc%,Jd%,OA% 22A,2B,3A,6A,12A,13A,14 +advancement @d'vAnsm@nt L@% 3 +advances @d'vAnsIz Ja%,Mj% 32A,2B,3A,6A,12A,13A,14 +advancing @d'vAnsIN Jb% 32A,2B,3A,6A,12A,13A,14 +advantage @d'vAntIdZ H2%,M6% 36A +advantaged @d'vAntIdZd Hc%,Hd% 36A +advantageous ,&dv@n'teIdZ@s OA% 4 +advantageously ,&dv@n'teIdZ@slI Pu% 5 +advantages @d'vAntIdZIz Ha%,Mj% 46A +advantaging @d'vAntIdZIN Hb% 46A +advent '&dv@nt K6% 2 +adventitious ,&dven'tIS@s OA$ 4 +advents '&dv@nts Kj% 2 +adventure @d'ventS@R H2%,M6% 3 +adventured @d'ventS@d Hc%,Hd% 3 +adventurer @d'ventS@r@R K6% 4 +adventurers @d'ventS@r@z Kj% 4 +adventures @d'ventS@z Ha%,Mj% 3 +adventuresome @d'ventS@s@m OA% 4 +adventuress @d'ventS@rIs K7% 4 +adventuresses @d'ventS@rIsIz Kj% 5 +adventuring @d'ventS@rIN Hb% 4 +adventurous @d'ventS@r@s OA% 4 +adverb '&dv3b K6% 2 +adverbial &d'v3bI@l OA% 4 +adverbially &d'v3bI@lI Pu% 5 +adverbs '&dv3bz Kj% 2 +adversaries '&dv@s@rIz Kj% 4 +adversary '&dv@s@rI K8% 4 +adverse '&dv3s OA% 2 +adversely &d'v3slI Pu% 3 +adversities @d'v3sItIz Mj% 4 +adversity @d'v3sItI M8% 4 +advert '&dv3t K6% 2 +advert @d'v3t I0$ 23A +adverted @d'v3tId Ic$,Id$ 33A +adverting @d'v3tIN Ib$ 33A +advertise '&dv@taIz J2% 32A,3A,6A +advertised '&dv@taIzd Jc%,Jd% 32A,3A,6A +advertisement @d'v3tIsm@nt M6% 4 +advertisements @d'v3tIsm@nts Mj% 4 +advertiser '&dv@taIz@R K6% 4 +advertisers '&dv@taIz@z Kj% 4 +advertises '&dv@taIzIz Ja% 42A,3A,6A +advertising '&dv@taIzIN Jb% 42A,3A,6A +adverts '&dv3ts Kj% 2 +adverts @d'v3ts Ia$ 23A +advice @d'vaIs M6% 2 +advices @d'vaIsIz Mj$ 3 +advisability @d,vaIz@'bIlItI L@% 6 +advisable @d'vaIz@bl OA% 4 +advise @d'vaIz J2% 23A,6A,6C,14,17,20,21 +advised @d'vaIzd Jc%,Jd%,OA% 23A,6A,6C,14,17,20,21 +advisedly @d'vaIzIdlI Pu% 4 +adviser @d'vaIz@R K6% 3 +advisers @d'vaIz@z Kj% 3 +advises @d'vaIzIz Ja% 33A,6A,6C,14,17,20,21 +advising @d'vaIzIN Jb% 33A,6A,6C,14,17,20,21 +advisory @d'vaIz@rI OA% 4 +advocacy '&dv@k@sI L@% 4 +advocate '&dv@k@t K6% 3 +advocate '&dv@keIt H2% 36A,6C +advocated '&dv@keItId Hc%,Hd% 46A,6C +advocates '&dv@k@ts Kj% 3 +advocates '&dv@keIts Ha% 36A,6C +advocating '&dv@keItIN Hb% 46A,6C +advowson ,&d'vaUzn K6$ 3 +advowsons ,&d'vaUznz Kj$ 3 +adz &dz K7$ 1 +adze &dz K6$ 1 +adzes '&dzIz Kj$ 2 +aegis 'idZIs K7$ 2 +aegises 'idZIsIz Kj$ 3 +aeon 'i@n K6$ 2 +aeons 'i@nz Kj$ 2 +aerate 'e@reIt H2% 26A +aerated 'e@reItId Hc%,Hd% 36A +aerates 'e@reIts Ha% 26A +aerating 'e@reItIN Hb% 36A +aeration e@'reISn K6% 3 +aerations e@'reISnz Kj% 3 +aerial 'e@rI@l K6%,OA% 3 +aerials 'e@rI@lz Kj% 3 +aerie 'e@rI K6$ 2 +aeries 'e@rIz Kj$ 2 +aerobatics ,e@r@'b&tIks Lk% 4 +aerodrome 'e@r@dr@Um K6% 3 +aerodromes 'e@r@dr@Umz Kj% 3 +aerodynamic ,e@r@UdaI'n&mIk OA% 4 +aerodynamics ,e@r@UdaI'n&mIks Lk% 5 +aeronaut 'e@r@nOt K6% 3 +aeronautics ,e@r@'nOtIks Lk% 4 +aeronauts 'e@r@nOts Kj% 3 +aeroplane 'e@r@pleIn K6% 3 +aeroplanes 'e@r@pleInz Kj% 3 +aerosol 'e@r@s0l M6% 3 +aerosols 'e@r@s0lz Mj% 3 +aerospace 'e@r@UspeIs L@% 3 +aertex 'e@teks L@% 2 +aery 'e@rI K8$ 2 +aesthete 'isTit K6% 2 +aesthetes 'isTits Kj% 2 +aesthetic is'TetIk L@%,OA% 3 +aesthetical is'TetIkl OA% 4 +aesthetically is'TetIklI Pu% 4 +aesthetics is'TetIks Lk% 3 +aether 'iT@R L@$ 2 +aetiologies ,itI'0l@dZIz Kj% 5 +aetiology ,itI'0l@dZI K8% 5 +afar @'fAR Pu% 2 +affability ,&f@'bIlItI L@% 5 +affable '&f@bl OA% 3 +affably '&f@blI Pu% 3 +affair @'fe@R K6% 2 +affairs @'fe@z Kj% 2 +affect @'fekt H0% 26A,7A +affectation ,&fek'teISn M6% 4 +affectations ,&fek'teISnz Mj% 4 +affected @'fektId Hc%,Hd%,OA% 36A,7A +affecting @'fektIN Hb%,OA% 36A,7A +affectingly @'fektINlI Pu% 4 +affection @'fekSn M6% 3 +affectionate @'fekS@n@t OA% 4 +affectionately @'fekS@n@tlI Pu% 5 +affections @'fekSnz Mj% 3 +affects @'fekts Ha% 26A,7A +affiance @'faI@ns H2$ 36A +affianced @'faI@nst Hc$,Hd$ 36A +affiances @'faI@nsIz Ha$ 46A +affiancing @'faI@nsIN Hb$ 46A +affidavit ,&fI'deIvIt K6% 4 +affidavits ,&fI'deIvIts Kj% 4 +affiliate @'fIlIeIt J2% 42A,6A,14 +affiliated @'fIlIeItId Jc%,Jd% 52A,6A,14 +affiliates @'fIlIeIts Ja% 42A,6A,14 +affiliating @'fIlIeItIN Jb% 52A,6A,14 +affiliation @,fIlI'eISn M6% 5 +affiliations @,fIlI'eISnz Mj% 5 +affinities @'fInItIz Mj% 4 +affinity @'fInItI M8% 4 +affirm @'f3m J0% 22A,6A,9,14 +affirmation ,&f@'meISn M6% 4 +affirmations ,&f@'meISnz Mj% 4 +affirmative @'f3m@tIv K6%,OA% 4 +affirmatives @'f3m@tIvz Kj% 4 +affirmed @'f3md Jc%,Jd% 22A,6A,9,14 +affirming @'f3mIN Jb% 32A,6A,9,14 +affirms @'f3mz Ja% 22A,6A,9,14 +affix '&fIks K7% 2 +affix @'fIks H1% 26A,14 +affixed @'fIkst Hc%,Hd% 26A,14 +affixes '&fIksIz Kj% 3 +affixes @'fIksIz Ha% 36A,14 +affixing @'fIksIN Hb% 36A,14 +afflatus @'fleIt@s L@$ 3 +afflict @'flIkt H0% 26A,14 +afflicted @'flIktId Hc%,Hd% 36A,14 +afflicting @'flIktIN Hb% 36A,14 +affliction @'flIkSn M6% 3 +afflictions @'flIkSnz Mj% 3 +afflicts @'flIkts Ha% 26A,14 +affluence '&flU@ns L@% 3 +affluent '&flU@nt K6%,OA% 3 +affluents '&flU@nts Kj% 3 +afford @'fOd H0% 26A,7A,12A,13A +afforded @'fOdId Hc%,Hd% 36A,7A,12A,13A +affording @'fOdIN Hb% 36A,7A,12A,13A +affords @'fOdz Ha% 26A,7A,12A,13A +afforest @'f0rIst H0% 36A +afforestation @,f0rI'steISn K6% 5 +afforestations @,f0rI'steISnz Kj% 5 +afforested @'f0rIstId Hc%,Hd% 46A +afforesting @'f0rIstIN Hb% 46A +afforests @'f0rIsts Ha% 36A +affranchise @'fr&ntSaIz H2$ 36A +affranchised @'fr&ntSaIzd Hc$,Hd$ 36A +affranchises @'fr&ntSaIzIz Ha$ 46A +affranchising @'fr&ntSaIzIN Hb$ 46A +affray @'freI K6$ 2 +affrays @'freIz Kj$ 2 +affront @'frVnt H0$,K6% 26A +affronted @'frVntId Hc$,Hd% 36A +affronting @'frVntIN Hb$ 36A +affronts @'frVnts Ha$,Kj$ 26A +afield @'fild Pu% 2 +afire @'faI@R Op% 2 +aflame @'fleIm Op% 2 +afloat @'fl@Ut Op% 2 +afoot @'fUt Op% 2 +afore @'fOR Pu%,T-% 2 +aforesaid @'fOsed OA%,Qx% 3 +aforethought @'fOTOt Pu% 3 +afoul @'faUl Pu$ 2 +afraid @'freId Op% 2 +afresh @'freS Pu% 2 +aft Aft Pu% 1 +after 'Aft@R OA%,Pu*,T-*,V-* 2 +after- 'Aft@R- U-% 2 +aftercare 'Aft@ke@R L@% 3 +afterdamp 'Aft@d&mp L@$ 3 +aftereffect 'Aft@rIfekt K6% 4 +aftereffects 'Aft@rIfekts Kj% 4 +afterglow 'Aft@gl@U Ki% 3 +aftermath 'Aft@m&T Ki% 3 +afternoon ,Aft@'nun M6% 3 +afternoons ,Aft@'nunz Mj% 3 +afters 'Aft@z Kj% 2 +afterthought 'Aft@TOt M6% 3 +afterthoughts 'Aft@TOts Mj% 3 +afterwards 'Aft@w@dz Pu% 3 +again @'gen Pu* 2 +against @'genst T-* 2 +agape @'geIp Op% 2 +agar-agar ,eIgAr-'eIgAR L@$ 4 +agate '&g@t K6$ 2 +agates '&g@ts Kj$ 2 +agave @'geIvI K6$ 3 +agaves @'geIvIz Kj$ 3 +age eIdZ J2%,M6* 12A,6A +age-bracket 'eIdZ-br&kIt K6$ 3 +age-brackets 'eIdZ-br&kIts Kj$ 3 +age-group 'eIdZ-grup K6% 2 +age-groups 'eIdZ-grups Kj% 2 +age-long 'eIdZ-l0N OA$ 2 +age-old 'eIdZ-@Uld OA% 2 +aged 'eIdZId Oq% 2 +aged eIdZd Jc%,Jd%,Op% 12A,6A +ageing 'eIdZIN Jb%,L@% 22A,6A +ageless 'eIdZl@s OA% 2 +agencies 'eIdZ@nsIz Mj% 3 +agency 'eIdZ@nsI M8% 3 +agenda @'dZend@ K6% 3 +agendas @'dZend@z Kj% 3 +agent 'eIdZ@nt K6% 2 +agent provocateur ,&Z0n pr@,v0k@'t3R Ki$ 6 +agents 'eIdZ@nts Kj% 2 +agents provocateurs ,&Z0n pr@,v0k@'t3R Kj$ 6 +ages 'eIdZIz Ja%,Mj% 22A,6A +agglomerate @'gl0m@r@t OA$ 4 +agglomerate @'gl0m@reIt J2$ 42A,6A +agglomerated @'gl0m@reItId Jc$,Jd$ 52A,6A +agglomerates @'gl0m@reIts Ja$ 42A,6A +agglomerating @'gl0m@reItIN Jb$ 52A,6A +agglomeration @,gl0m@'reISn M6$ 5 +agglomerations @,gl0m@'reISnz Mj$ 5 +agglutinate @'glutIneIt H2$ 42A,6A +agglutinated @'glutIneItId Hc$,Hd$ 52A,6A +agglutinates @'glutIneIts Ha$ 42A,6A +agglutinating @'glutIneItIN Hb$ 52A,6A +agglutinative @'glutIn@tIv OA$ 5 +aggrandize @'gr&ndaIz H2$ 36A +aggrandized @'gr&ndaIzd Hc$,Hd$ 36A +aggrandizement @'gr&ndIzm@nt K6$ 4 +aggrandizements @'gr&ndIzm@nts Kj$ 4 +aggrandizes @'gr&ndaIzIz Ha$ 46A +aggrandizing @'gr&ndaIzIN Hb$ 46A +aggravate '&gr@veIt H2% 36A +aggravated '&gr@veItId Hc%,Hd% 46A +aggravates '&gr@veIts Ha% 36A +aggravating '&gr@veItIN Hb% 46A +aggravation ,&gr@'veISn M6% 4 +aggravations ,&gr@'veISnz Mj% 4 +aggregate '&grIg@t K6% 3 +aggregate '&grIgeIt J2$ 32A,2E,6A +aggregated '&grIgeItId Jc$,Jd% 42A,2E,6A +aggregates '&grIg@ts Kj$ 3 +aggregates '&grIgeIts Ja$ 32A,2E,6A +aggregating '&grIgeItIN Jb$ 42A,2E,6A +aggregation ,&grI'geISn M6$ 4 +aggregations ,&grI'geISnz Mj$ 4 +aggression @'greSn M6% 3 +aggressions @'greSnz Mj$ 3 +aggressive @'gresIv OA% 3 +aggressively @'gresIvlI Pu% 4 +aggressiveness @'gresIvn@s L@% 4 +aggressor @'gres@R K6% 3 +aggressors @'gres@z Kj% 3 +aggrieve @'griv H2$ 2 +aggrieved @'grivd Hc$,Hd% 2 +aggrieves @'grivz Ha$ 2 +aggrieving @'grivIN Hb$ 3 +aggro '&gr@U L@% 2 +aghast @'gAst Op% 2 +agile '&dZaIl OA% 2 +agilely '&dZaIlI Pu% 3 +agility @'dZIlItI L@% 4 +agin @'gIn T-$ 2 +aging 'eIdZIN Jb%,L@% 22A,6A +agitate '&dZIteIt J2% 33A,6A +agitated '&dZIteItId Jc%,Jd%,OA% 43A,6A +agitates '&dZIteIts Ja% 33A,6A +agitating '&dZIteItIN Jb%,OA% 43A,6A +agitation ,&dZI'teISn M6% 4 +agitations ,&dZI'teISnz Mj% 4 +agitator '&dZIteIt@R K6% 4 +agitators '&dZIteIt@z Kj% 4 +aglow @'gl@U Op% 2 +agnail '&gneIl L@$ 2 +agnostic &g'n0stIk K6%,OA% 3 +agnosticism &g'n0stIsIz@m L@% 5 +agnostics &g'n0stIks Kj% 3 +ago @'g@U Pu* 2 +agog @'g0g Op% 2 +agonies '&g@nIz Mj% 3 +agonized '&g@naIzd OA% 3 +agonizing '&g@naIzIN OA% 4 +agonizingly '&g@naIzINlI Pu% 5 +agony '&g@nI M8% 3 +agora '&g@r@ K6$ 3 +agoraphobia ,&g@r@'f@UbI@ L@% 6 +agoras '&g@r@z Kj$ 3 +agrarian @'gre@rI@n OA$ 4 +agree @'gri J5% 22A,2C,3A,3B,4C,6A,7A +agreeable @'gri@bl OA% 4 +agreeably @'gri@blI Pu% 4 +agreed @'grid Jc%,Jd% 22A,2C,3A,3B,4C,6A,7A +agreeing @'griIN Jb% 32A,2C,3A,3B,4C,6A,7A +agreement @'grim@nt M6% 3 +agreements @'grim@nts Mj% 3 +agrees @'griz Ja% 22A,2C,3A,3B,4C,6A,7A +agricultural ,&grI'kVltS@r@l OA% 5 +agriculture '&grIkVltS@R L@% 4 +aground @'graUnd Op%,Pu% 2 +ague 'eIgju K6$ 2 +agues 'eIgjuz Kj$ 2 +ah A W-% 1 +aha A'hA W-% 2 +ahead @'hed Pu% 2 +ahem @'h@m W-% 2 +ahoy @'hoI W-% 2 +aid eId H0%,M6% 16A,14,17 +aide-de-camp ,eId-d@-'k0m Ki% 3 +aide-m_emoire ,eId-,mem'wAR K6% 3 +aide-m_emoires ,eId-,mem'wAz Kj% 3 +aided 'eIdId Hc%,Hd% 26A,14,17 +aides-de-camp ,eId-d@-'k0m Kj% 3 +aiding 'eIdIN Hb% 26A,14,17 +aids eIdz Ha%,Mj% 16A,14,17 +aigret 'eIgret K6$ 2 +aigrets 'eIgrets Kj$ 2 +aigrette 'eIgret K6$ 2 +aigrettes 'eIgrets Kj$ 2 +ail eIl J0% 12A,2B,6A +ailed eIld Jc$,Jd$ 12A,2B,6A +aileron 'eIl@r0n K6$ 3 +ailerons 'eIl@r0nz Kj$ 3 +ailing 'eIlIN Jb% 22A,2B,6A +ailment 'eIlm@nt K6% 2 +ailments 'eIlm@nts Kj% 2 +ails eIlz Ja% 12A,2B,6A +aim eIm J0%,M6% 12A,3A,4A,6A,14 +aimed eImd Jc%,Jd% 12A,3A,4A,6A,14 +aiming 'eImIN Jb% 22A,3A,4A,6A,14 +aimless 'eIml@s OA% 2 +aimlessly 'eIml@slI Pu% 3 +aims eImz Ja%,Mj% 12A,3A,4A,6A,14 +ain't eInt Gg% 1 +air e@R H0%,M6* 16A +air-bladder 'e@-bl&d@R K6% 3 +air-bladders 'e@-bl&d@z Kj% 3 +air-conditioned 'e@-k@n,dISnd OA% 4 +air-conditioning 'e@-k@ndISnIN L@% 5 +air-cooled 'e@-kuld OA% 2 +air-minded e@-'maIndId OA$ 3 +air-pump 'e@-pVmp K6% 2 +air-pumps 'e@-pVmps Kj% 2 +air-raid 'e@-reId K6% 2 +air-raids 'e@-reIdz Kj% 2 +air-shaft 'e@-SAft K6% 2 +air-shafts 'e@-SAfts Kj% 2 +air-sick 'e@-sIk OA% 2 +air-sickness 'e@-sIkn@s L@% 3 +air-to-air ,e@-tU-'e@R OA% 3 +air-to-ground ,e@-tU-'graUnd OA% 3 +airbed 'e@bed K6% 2 +airbeds 'e@bedz Kj% 2 +airborne 'e@bOn OA% 2 +airbrake 'e@breIk K6% 2 +airbrakes 'e@breIks Kj% 2 +aircraft 'e@krAft K9% 2 +aircraftman 'e@kr&ftm@n Ki$ 3 +aircraftmen 'e@kr&ftm@n Kj$ 3 +aircrew 'e@kru K6% 2 +aircrews 'e@kruz Kj% 2 +airdrome 'e@dr@Um K6$ 2 +airdromes 'e@dr@Umz Kj$ 2 +aired e@d Hc%,Hd% 16A +airfield 'e@fild K6% 2 +airfields 'e@fildz Kj% 2 +airflow 'e@fl@U K6% 2 +airflows 'e@fl@Uz Kj$ 2 +airframe 'e@freIm K6$ 2 +airframes 'e@freImz Kj$ 2 +airily 'e@r@lI Pu% 3 +airing 'e@rIN Hb%,K6% 26A +airing-cupboard 'e@rIN-,kVb@d K6% 4 +airing-cupboards 'e@rIN-,kVb@dz Kj% 4 +airings 'e@rINz Kj% 2 +airless 'e@lIs OA% 2 +airline 'e@laIn K6% 2 +airliner 'e@laIn@R K6% 3 +airliners 'e@laIn@z Kj% 3 +airlines 'e@laInz Kj% 2 +airmail 'e@meIl L@% 2 +airman 'e@m@n Ki% 2 +airmen 'e@m@n Kj% 2 +airplane 'e@pleIn K6% 2 +airplanes 'e@pleInz Kj% 2 +airport 'e@pOt K6% 2 +airports 'e@pOts Kj% 2 +airs e@z Ha%,Mj% 16A +airscrew 'e@skru K6$ 2 +airscrews 'e@skruz Kj$ 2 +airship 'e@SIp K6% 2 +airships 'e@SIps Kj% 2 +airstrip 'e@strIp K6% 2 +airstrips 'e@strIps Kj% 2 +airtight 'e@taIt OA% 2 +airway 'e@weI K6% 2 +airways 'e@weIz Kj% 2 +airwoman 'e@wUm@n Ki$ 3 +airwomen 'e@wImIn Kj$ 3 +airworthiness 'e@w3DIn@s L@% 4 +airworthy 'e@w3DI OA% 3 +airy 'e@rI OA% 2 +aisle aIl K6% 1 +aisles aIlz Kj% 1 +aitch eItS K7% 1 +aitch-bone 'eItS-b@Un K6% 2 +aitch-bones 'eItS-b@Unz Kj$ 2 +aitches 'eItSIz Kj% 2 +ajar @'dZAR Op% 2 +akimbo @'kImb@U Pu% 3 +akin @'kIn Op% 2 +alabaster '&l@bAst@R L@%,OA% 4 +alack @'l&k W-$ 2 +alacrity @'l&krItI L@% 4 +alarm @'lAm H0%,M6% 26A +alarm-clock @'lAm-kl0k K6% 3 +alarm-clocks @'lAm-kl0ks Kj% 3 +alarmed @'lAmd Hc%,Hd% 26A +alarming @'lAmIN Hb%,OA% 36A +alarmingly @'lAmINlI Pu% 4 +alarmist @'lAmIst K6% 3 +alarmists @'lAmIsts Kj% 3 +alarms @'lAmz Ha%,Mj% 26A +alas @'l&s W-% 2 +alb &lb K6$ 1 +albatross '&lb@tr0s K7% 3 +albatrosses '&lb@tr0sIz Kj% 4 +albeit ,Ol'biIt V-% 3 +albino &l'bin@U K6% 3 +albinos &l'bin@Uz Kj% 3 +albs &lbz Kj$ 1 +album '&lb@m K6% 2 +albumen '&lbjUm@n L@% 3 +albums '&lb@mz Kj% 2 +alchemist '&lkImIst K6% 3 +alchemists '&lkImIsts Kj% 3 +alchemy '&lkImI L@% 3 +alcohol '&lk@h0l M6% 3 +alcoholic ,&lk@'h0lIk K6%,OA% 4 +alcoholics ,&lk@'h0lIks Kj% 4 +alcoholism '&lk@h0lIz@m L@% 5 +alcohols '&lk@h0lz Mj% 3 +alcove '&lk@Uv K6% 2 +alcoves '&lk@Uvz Kj% 2 +alder 'Old@R K6% 2 +alderman 'Old@m@n Ki% 3 +aldermanic ,Old@'m&nIk OA$ 4 +aldermen 'Old@m@n Kj% 3 +alders 'Old@z Kj% 2 +ale eIl M6% 1 +ale-house 'eIl-haUs K6% 2 +ale-houses 'eIl-haUzIz Kj% 3 +alee @'li Op$,Pu$ 2 +alert @'l3t H0%,K6%,OA% 26A +alerted @'l3tId Hc%,Hd% 36A +alerting @'l3tIN Hb% 36A +alertly @'l3tlI Pu% 3 +alertness @'l3tn@s L@% 3 +alerts @'l3ts Ha%,Kj% 26A +ales eIlz Mj% 1 +alexandrine ,&lIg'z&ndraIn K6$ 4 +alexandrines ,&lIg'z&ndraInz Kj$ 4 +alexia @'leksI@ L@$ 4 +alexic @'leksIk K6$,OA$ 3 +alexics @'leksIks Kj$ 3 +alfalfa &l'f&lf@ L@$ 3 +alfresco ,&l'fresk@U OA%,Pu% 3 +alga '&lg@ Ki$ 2 +algae '&ldZi Kj% 2 +algebra '&ldZIbr@ M6% 3 +algebraic ,&ldZI'breIIk OA% 4 +algebraical ,&ldZ@'breIkl OA$ 4 +algebraically ,&ldZ@'breIklI Pu% 4 +algebras '&ldZIbr@z Mj% 3 +alias 'eIlI@s K7%,Pu% 3 +aliases 'eIlI@sIz Kj% 4 +alibi '&lIbaI K6% 3 +alibis '&lIbaIz Kj% 3 +alien 'eIlI@n K6%,OA% 3 +alienate 'eIlI@neIt H2% 46A,14 +alienated 'eIlI@neItId Hc%,Hd% 56A,14 +alienates 'eIlI@neIts Ha% 46A,14 +alienating 'eIlI@neItIN Hb% 56A,14 +alienation ,eIlI@'neISn L@% 5 +alienist 'eIlI@nIst K6$ 4 +alienists 'eIlI@nIsts Kj$ 4 +aliens 'eIlI@nz Kj% 3 +alight @'laIt I0%,Op% 22A,3A +alighted @'laItId Ic%,Id% 32A,3A +alighting @'laItIN Ib% 32A,3A +alights @'laIts Ia% 22A,3A +align @'laIn J0% 22A,3A,6A,14 +aligned @'laInd Jc%,Jd% 22A,3A,6A,14 +aligning @'laInIN Jb% 32A,3A,6A,14 +alignment @'laInm@nt M6% 3 +alignments @'laInm@nts Mj% 3 +aligns @'laInz Ja% 22A,3A,6A,14 +alike @'laIk Op%,Pu% 2 +alimentary ,&lI'ment@rI OA% 5 +alimony '&lIm@nI L@% 4 +alive @'laIv Op% 2 +alkali '&lk@laI M6% 3 +alkaline '&lk@laIn OA% 3 +alkalis '&lk@laIz Mj% 3 +all Ol Ki%,OA*,Pu*,Qx*,U-% 1 +all-mains 'Al-meInz Oq$ 2 +all-round 'Ol-raUnd OA% 2 +all-rounder Ol-'raUnd@R K6% 3 +all-rounders Ol-'raUnd@z Kj% 3 +allay @'leI H0% 26A +allayed @'leId Hc%,Hd% 26A +allaying @'leIIN Hb% 36A +allays @'leIz Ha% 26A +allegation ,&lI'geISn M6% 4 +allegations ,&lI'geISnz Mj% 4 +allege @'ledZ H2% 26A,9 +alleged @'ledZd Hc%,Hd% 26A,9 +allegedly @'ledZIdlI Pu% 4 +alleges @'ledZIz Ha% 36A,9 +allegiance @'lidZ@ns L@% 3 +alleging @'ledZIN Hb% 36A,9 +allegoric ,&lI'g0rIk OA$ 4 +allegorical ,&lI'g0rIk@l OA% 5 +allegories '&lIg@rIz Kj% 4 +allegory '&lIg@rI K8% 4 +allegretto ,&lI'gret@U K6%,OA%,Pu% 4 +allegrettos ,&lI'gret@Uz Kj$ 4 +allegro @'leIgr@U K6%,OA%,Pu% 3 +allegros @'leIgr@Uz Kj% 3 +alleluia ,&lI'luj@ W-% 4 +allergen '&l@dZen K6$ 3 +allergens '&l@dZenz Kj$ 3 +allergic @'l3dZIk OA% 3 +allergies '&l@dZIz Kj% 3 +allergy '&l@dZI K8% 3 +alleviate @'livIeIt H2% 46A +alleviated @'livIeItId Hc%,Hd% 56A +alleviates @'livIeIts Ha% 46A +alleviating @'livIeItIN Hb% 56A +alleviation @,livI'eISn K6% 5 +alleviations @,livI'eISnz Kj$ 5 +alley '&lI K6% 2 +alleys '&lIz Kj% 2 +alleyway '&lIweI K6% 3 +alleyways '&lIweIz Kj% 3 +alliance @'laI@ns M6% 3 +alliances @'laI@nsIz Mj% 4 +allied @'laId Hc%,Hd% 214 +allies '&laIz Kj% 2 +allies @'laIz Ha% 214 +alligator '&lIgeIt@R K6% 4 +alligators '&lIgeIt@z Kj% 4 +alliteration @,lIt@'reISn L@% 5 +alliterative @'lItr@tIv OA% 4 +alliteratively @'lItr@tIvlI Pu% 5 +allocate '&l@keIt H2% 36A,14 +allocated '&l@keItId Hc%,Hd% 46A,14 +allocates '&l@keIts Ha% 36A,14 +allocating '&l@keItIN Hb% 46A,14 +allocation ,&l@'keISn M6% 4 +allocations ,&l@'keISnz Mj% 4 +allot @'l0t H4% 26A,12A,13A,14 +allotment @'l0tm@nt M6% 3 +allotments @'l0tm@nts Mj% 3 +allots @'l0ts Ha% 26A,12A,13A,14 +allotted @'l0tId Hc%,Hd% 36A,12A,13A,14 +allotting @'l0tIN Hb% 36A,12A,13A,14 +allow @'laU J0% 23A,6A,6C,9,12A,13A,14,15B,17,25 +allowable @'l@U@bl OA% 4 +allowance @'laU@ns K6% 3 +allowances @'laU@nsIz Kj% 4 +allowed @'laUd Jc%,Jd% 23A,6A,6C,9,12A,13A,14,15B,17,25 +allowing @'laUIN Jb% 33A,6A,6C,9,12A,13A,14,15B,17,25 +allows @'laUz Ja% 23A,6A,6C,9,12A,13A,14,15B,17,25 +alloy '&loI M6% 2 +alloy @'loI H0% 26A +alloyed @'loId Hc%,Hd% 26A +alloying @'loIIN Hb% 36A +alloys '&loIz Mj% 2 +alloys @'loIz Ha% 26A +allspice 'OlspaIs L@% 2 +allude @'lud I2% 23A +alluded @'ludId Ic%,Id% 33A +alludes @'ludz Ia% 23A +alluding @'ludIN Ib% 33A +allure @'lU@R H2%,M6% 26A,14,17 +allured @'lU@d Hc%,Hd% 26A,14,17 +allurement @'lU@m@nt M6% 3 +allurements @'lU@m@nts Mj$ 3 +allures @'lU@z Ha%,Mj% 26A,14,17 +alluring @'lU@rIN Hb%,OA% 36A,14,17 +allusion @'luZn K6% 3 +allusions @'luZnz Kj% 3 +allusive @'lusIv OA$ 3 +alluvial @'luvI@l OA% 4 +ally '&laI K8% 2 +ally @'laI H3% 214 +allying @'laIIN Hb% 314 +almanac 'Olm@n&k K6% 3 +almanacs 'Olm@n&ks Kj% 3 +almighty Ol'maItI Ki%,OA% 3 +almond 'Am@nd K6% 2 +almond-eyed ,Am@nd-'aId OA% 3 +almonds 'Am@ndz Kj% 2 +almoner 'Am@n@R K6% 3 +almoners 'Am@n@z Kj% 3 +almost 'Olm@Ust Pu* 2 +alms Amz Kj% 1 +alms-box 'Amz-b0ks K7% 2 +alms-boxes 'Amz-b0ksIz Kj% 3 +alms-giving 'Amz-gIvIN L@% 3 +alms-house 'Amz-haUs K6% 2 +alms-houses 'Amz-haUzIz Kj% 3 +aloe '&l@U K6% 2 +aloes '&l@Uz Kj% 2 +aloft @'l0ft Pu% 2 +alone @'l@Un Op*,Pu* 2 +along @'l0N Pu*,T-* 2 +alongside @,l0N'saId Pu%,T-% 3 +aloof @'luf OA%,Pu% 2 +aloofness @'lufn@s L@% 3 +aloud @'laUd Pu% 2 +alp &lp K6% 1 +alpaca &l'p&k@ M6% 3 +alpacas &l'p&k@z Mj$ 3 +alpenstock '&lp@nst0k K6% 3 +alpenstocks '&lp@nst0ks Kj% 3 +alpha '&lf@ K6% 2 +alphabet '&lf@bet K6% 3 +alphabetical ,&lf@'betIkl OA% 5 +alphabetically ,&lf@'betIklI Pu% 5 +alphabets '&lf@bets Kj% 3 +alphas '&lf@z Kj$ 2 +alpine '&lpaIn OA% 2 +alpinist '&lpInIst K6% 3 +alpinists '&lpInIsts Kj% 3 +alps &lps Kj% 1 +already Ol'redI Pu* 3 +alright Ol'raIt OA%,Pu% 2 +alsatian &l'seISn K6% 3 +alsatians &l'seISnz Kj% 3 +also 'Ols@U Pu* 2 +also-ran 'Ols@U-r&n K6% 3 +also-rans 'Ols@U-r&nz Kj% 3 +altar 'Olt@R K6% 2 +altar-piece 'Olt@-pis K6% 3 +altar-pieces 'Olt@-pisIz Kj$ 4 +altars 'Olt@z Kj% 2 +alter 'Olt@R J0% 22A,6A +alter ego ,<@r 'eg@U K6% 4 +alter egos ,<@r 'eg@Uz Kj% 4 +alterable '0lt@r@bl OA% 4 +alteration ,Olt@'reISn M6% 4 +alterations ,Olt@'reISnz Mj% 4 +altercation ,Olt@'keISn M6% 4 +altercations ,Olt@'keISnz Mj% 4 +altered 'Olt@d Jc%,Jd% 22A,6A +altering 'Olt@rIN Jb% 32A,6A +alternate 'Olt@neIt J2% 33A,6A,14 +alternate Ol't3n@t OA% 3 +alternated 'Olt@neItId Jc%,Jd% 43A,6A,14 +alternately Ol't3n@tlI Pu% 4 +alternates 'Olt@neIts Ja% 33A,6A,14 +alternating 'Olt@neItIN Jb% 43A,6A,14 +alternation ,Olt@'neISn K6% 4 +alternations ,Olt@'neISnz Kj$ 4 +alternative Ol't3n@tIv K6%,OA% 4 +alternatively Ol't3n@tIvlI Pu% 5 +alternatives Ol't3n@tIvz Kj% 4 +alters 'Olt@z Ja% 22A,6A +although Ol'D@U V-% 2 +altimeter '<Imit@R K6% 4 +altimeters '<Imit@z Kj% 4 +altitude '<Itjud K6% 3 +altitudes '<Itjudz Kj% 3 +alto '<@U K6% 2 +altogether ,Olt@'geD@R Pu% 4 +altos '<@Uz Kj% 2 +altruism '<ruIz@m M6% 4 +altruisms '<ruIz@mz Mj$ 4 +altruist '<ruIst K6% 3 +altruistic ,<ru'IstIk OA% 4 +altruistically ,<ru'IstIklI Pu% 5 +altruists '<ruIsts Kj$ 3 +alum '&l@m L@$ 2 +aluminium ,&ljU'mInI@m L@% 5 +alumna @'lVmn@ Ki$ 3 +alumnae @'lVmni Kj$ 3 +alumni @'lVmnaI Kj% 3 +alumnus @'lVmn@s Ki% 3 +alveolar &l'vI@l@R K6$,OA$ 4 +alveolars &l'vI@l@z Kj$ 4 +always 'OlweIz Pu* 2 +am &m Ge*,Ie% 11 +am ,eI'em Y~% 2 +amah 'Am@ K6$ 2 +amahs 'Am@z Kj$ 2 +amain @'meIn Pu$ 2 +amalgam @'m&lg@m K6% 3 +amalgamate @'m&lg@meIt J2% 42A,6A +amalgamated @'m&lg@meItId Jc%,Jd% 52A,6A +amalgamates @'m&lg@meIts Ja% 42A,6A +amalgamating @'m&lg@meItIN Jb% 52A,6A +amalgamation @,m&lg@'meISn M6% 5 +amalgamations @,m&lg@'meISnz Mj% 5 +amalgams @'m&lg@mz Kj% 3 +amanuenses @,m&njU'ensiz Kj$ 5 +amanuensis @,m&njU'ensIs Ki$ 5 +amaryllis ,&m@'rIlIs K7$ 4 +amaryllises ,&m@'rIlIsIz Kj$ 5 +amass @'m&s H1% 26A +amassed @'m&st Hc%,Hd% 26A +amasses @'m&sIz Ha% 36A +amassing @'m&sIN Hb% 36A +amateur '&m@t@R K6% 3 +amateurish '&m@t@rIS OA% 4 +amateurism '&m@t@rIz@m L@% 5 +amateurs '&m@t@z Kj% 3 +amatory '&m@t@rI OA% 4 +amaze @'meIz H2% 26A +amazed @'meIzd Hc%,Hd% 26A +amazement @'meIzm@nt L@% 3 +amazes @'meIzIz Ha% 36A +amazing @'meIzIN Hb%,OA% 36A +amazingly @'meIzINlI Pu% 4 +ambassador &m'b&s@d@R K6% 4 +ambassadorial &m,b&s@'dOrI@l OA% 6 +ambassadors &m'b&s@d@z Kj% 4 +ambassadress &m'b&s@drIs K7% 4 +ambassadresses &m'b&s@drIsIz Kj$ 5 +amber '&mb@R L@% 2 +ambergris '&mb@gris L@$ 3 +ambidextrous ,&mbI'dekstr@s OA% 4 +ambience '&mbI@ns Ki% 3 +ambient '&mbI@nt OA% 3 +ambiguities ,&mbI'gjuItIz Mj% 5 +ambiguity ,&mbI'gjuItI M8% 5 +ambiguous &m'bIgjU@s OA% 4 +ambiguously &m'bIgjU@slI Pu% 5 +ambit '&mbIt K6% 2 +ambition &m'bISn M6% 3 +ambitions &m'bISnz Mj% 3 +ambitious &m'bIS@s OA% 3 +ambitiously &m'bIS@slI Pu% 4 +ambits '&mbIts Kj$ 2 +ambivalence &m'bIv@l@ns L@% 4 +ambivalent &m'bIv@l@nt OA% 4 +amble '&mbl I2%,K6% 22A,2C +ambled '&mbld Ic%,Id% 22A,2C +ambles '&mblz Ia%,Kj% 22A,2C +ambling '&mblIN Ib% 22A,2C +ambrosia &m'br@UzI@ L@% 4 +ambulance '&mbjUl@ns K6% 3 +ambulances '&mbjUl@nsIz Kj% 4 +ambuscade ,&mb@'skeId H2$,K6$ 3 +ambuscaded ,&mb@'skeIdId Hc$,Hd$ 4 +ambuscades ,&mb@'skeIdz Ha$,Kj$ 3 +ambuscading ,&mb@'skeIdIN Hb$ 4 +ambush '&mbUS H1%,M7% 26A +ambushed '&mbUSt Hc%,Hd% 26A +ambushes '&mbUSIz Ha%,Mj% 36A +ambushing '&mbUSIN Hb% 36A +ameba @'mib@ K6$ 3 +amebas @'mib@z Kj$ 3 +ameer @'mI@R K6$ 2 +ameers @'mI@z Kj$ 2 +ameliorate @'milI@reIt J2% 42A,6A +ameliorated @'milI@reItId Jc%,Jd% 52A,6A +ameliorates @'milI@reIts Ja% 42A,6A +ameliorating @'milI@reItIN Jb% 52A,6A +amelioration @,milI@'reISn K6% 5 +ameliorations @,milI@'reISnz Kj$ 5 +amen A'men W-% 2 +amenable @'min@bl OA% 4 +amend @'mend J0% 22A,6A +amendable @'mend@bl OA$ 4 +amended @'mendId Jc%,Jd% 32A,6A +amending @'mendIN Jb% 32A,6A +amendment @'mendm@nt M6% 3 +amendments @'mendm@nts Mj% 3 +amends @'mendz Ja%,Kj% 22A,6A +amenities @'minItIz Kj% 4 +amenity @'minItI K8% 4 +amethyst '&mITIst K6% 3 +amethysts '&mITIsts Kj% 3 +amiability ,eImI@'bIlItI L@% 6 +amiable 'eImI@bl OA% 4 +amiably 'eImI@blI Pu% 4 +amicability ,&mIk@'bIlItI L@$ 6 +amicable '&mIk@bl OA% 4 +amicably '&mIk@blI Pu% 4 +amid @'mId T-% 2 +amidships @'mIdSIps Pu% 3 +amidst @'mIdst T-% 2 +amir @'mI@R K6$ 2 +amirs @'mI@z Kj$ 2 +amiss @'mIs Op%,Pu% 2 +amity '&mItI L@$ 3 +ammeter '&mIt@R K6$ 3 +ammeters '&mIt@z Kj$ 3 +ammonia @'m@UnI@ L@% 4 +ammoniated @'m@UnIeItId OA$ 5 +ammonite '&m@naIt K6% 3 +ammonites '&m@naIts Kj% 3 +ammunition ,&mjU'nISn L@% 4 +amnesia &m'nizI@ L@% 4 +amnesties '&mn@stIz Kj% 3 +amnesty '&mn@stI K8% 3 +amoeba @'mib@ K6% 3 +amoebae @'mibi Kj% 3 +amoebas @'mib@z Kj% 3 +amoebic @'mibIk OA% 3 +amok @'m0k Pu% 2 +among @'mVN T-* 2 +amongst @'mVNst T-% 2 +amoral ,eI'm0r@l OA% 3 +amorous '&m@r@s OA% 3 +amorously '&m@r@slI Pu% 4 +amorphous @'mOf@s OA% 3 +amortization @,mOtI'zeISn K6$ 5 +amortizations @,mOtI'zeISnz Kj$ 5 +amortize @'mOtaIz H2$ 36A +amortized @'mOtaIzd Hc$,Hd$ 36A +amortizes @'mOtaIzIz Ha$ 46A +amortizing @'mOtaIzIN Hb$ 46A +amount @'maUnt I0%,K6% 23A +amounted @'maUntId Ic%,Id% 33A +amounting @'maUntIN Ib% 33A +amounts @'maUnts Ia%,Kj% 23A +amour @'mU@R K6% 2 +amour-propre ,&mU@-'pr0pr@ L@% 4 +amours @'mU@z Kj% 2 +amp &mp K6% 1 +ampere '&mpe@R K6% 2 +amperes '&mpe@z Kj% 2 +amphetamine &m'fet@min M6% 4 +amphetamines &m'fet@minz Mj% 4 +amphibian &m'fIbI@n K6% 4 +amphibians &m'fIbI@nz Kj% 4 +amphibious &m'fIbI@s OA% 4 +amphitheatre '&mfITI@t@R K6% 4 +amphitheatres '&mfITI@t@z Kj% 4 +amphora '&mf@r@ K6$ 3 +amphorae '&mf@ri Kj$ 3 +amphoras '&mf@r@z Kj$ 3 +ample '&mpl OB% 2 +ampler '&mpl@R Or% 2 +amplest '&mplIst Os% 2 +amplification ,&mplIfI'keISn K6% 5 +amplifications ,&mplIfI'keISnz Kj% 5 +amplified '&mplIfaId Hc%,Hd% 36A +amplifier '&mplIfaI@R K6% 4 +amplifiers '&mplIfaI@z Kj% 4 +amplifies '&mplIfaIz Ha% 36A +amplify '&mplIfaI H3% 36A +amplifying '&mplIfaIIN Hb% 46A +amplitude '&mplItjud L@% 3 +amply '&mplI Pu% 2 +ampoule '&mpul K6$ 2 +ampoules '&mpulz Kj$ 2 +amps &mps Kj% 1 +amputate '&mpjUteIt H2% 36A +amputated '&mpjUteItId Hc%,Hd% 46A +amputates '&mpjUteIts Ha% 36A +amputating '&mpjUteItIN Hb% 46A +amputation ,&mpjU'teISn K6% 4 +amputations ,&mpjU'teISnz Kj% 4 +amuck @'mVk Pu% 2 +amulet '&mjUlIt K6% 3 +amulets '&mjUlIts Kj% 3 +amuse @'mjuz H2% 26A +amused @'mjuzd Hc%,Hd% 26A +amusement @'mjuzm@nt M6% 3 +amusements @'mjuzm@nts Mj% 3 +amuses @'mjuzIz Ha% 36A +amusing @'mjuzIN Hb%,OA% 36A +amusingly @'mjuzINlI Pu% 4 +an &n V-% 1 +an @n S-* 1 +anachronism @'n&kr@nIz@m K6% 5 +anachronisms @'n&kr@nIz@mz Kj% 5 +anachronistic @,n&kr@'nIstIk OA% 5 +anaconda ,&n@'k0nd@ K6% 4 +anacondas ,&n@'k0nd@z Kj% 4 +anaemia @'nimI@ L@% 4 +anaemic @'nimIk OA% 3 +anaesthesia ,&nIs'TizI@ L@% 5 +anaesthetic ,&nIs'TetIk K6%,OA% 4 +anaesthetics ,&nIs'TetIks Kj% 4 +anaesthetist @'nisT@tIst K6% 4 +anaesthetists @'nisT@tIsts Kj% 4 +anaesthetize @n'isT@taIz H2% 46A +anaesthetized @n'isT@taIzd Hc%,Hd% 46A +anaesthetizes @n'isT@taIzIz Ha% 56A +anaesthetizing @n'isT@taIzIN Hb% 56A +anagram '&n@gr&m K6% 3 +anagrams '&n@gr&mz Kj% 3 +anal 'eInl OA% 2 +analecta ,&n@'lekt@ Kj$ 4 +analects '&n@lekts Kj$ 3 +analgesia ,&n&l'dZizI@ L@% 5 +analgesic ,&n&l'dZizIk K6% 4 +analgesics ,&n&l'dZizIks Kj% 4 +analog '&n@l0g K6$ 3 +analogies @'n&l@dZIz Mj% 4 +analogous @'n&l@g@s OA% 4 +analogously @'n&l@g@slI Pu% 5 +analogs '&n@l0gz Kj$ 3 +analogue '&n@l0g K6% 3 +analogues '&n@l0gz Kj% 3 +analogy @'n&l@dZI M8% 4 +analyse '&n@laIz H2% 36A +analysed '&n@laIzd Hc%,Hd% 36A +analyses '&n@laIzIz Ha% 46A +analyses @'n&l@siz Kj% 4 +analysing '&n@laIzIN Hb% 46A +analysis @'n&l@sIs Mi% 4 +analyst '&n@lIst K6% 3 +analysts '&n@lIsts Kj% 3 +analytic ,&n@'lItIk OA% 4 +analytical ,&n@'lItIkl OA% 5 +analytically ,&n@'lItIklI Pu% 5 +analyze '&n@laIz H2% 36A +analyzed '&n@laIzd Hc%,Hd% 36A +analyzes '&n@laIzIz Ha% 46A +analyzing '&n@laIzIN Hb% 46A +anapaest '&n@pist K6$ 3 +anapaestic ,&n@'pistIk OA$ 4 +anapaests '&n@pists Kj$ 3 +anarchic @'nAkIk OA% 3 +anarchically @n'AkIklI Pu% 4 +anarchism '&n@kIz@m L@% 4 +anarchist '&n@kIst K6% 3 +anarchists '&n@kIsts Kj% 3 +anarchy '&n@kI L@% 3 +anathema @'n&T@m@ K6% 4 +anathemas @'n&T@m@z Kj$ 4 +anathematize @'n&T@m@taIz J2$ 5 +anathematized @'n&T@m@taIzd Jc$,Jd$ 5 +anathematizes @'n&T@m@taIzIz Ja$ 6 +anathematizing @'n&T@m@taIzIN Jb$ 6 +anatomical ,&n@'t0mIkl OA% 5 +anatomically ,&n@'t0mIklI Pu% 5 +anatomist @'n&t@mIst K6% 4 +anatomists @'n&t@mIsts Kj% 4 +anatomy @'n&t@mI L@% 4 +ancestor '&nsest@R K6% 3 +ancestors '&nsest@z Kj% 3 +ancestral &n'sestr@l OA% 3 +ancestress '&nsestrIs K7% 3 +ancestresses '&nsestrIsIz Kj% 4 +ancestries '&nsestrIz Kj% 3 +ancestry '&nsestrI K8% 3 +anchor '&Nk@R J0%,K6% 22A,6A +anchorage '&nk@rIdZ K6% 3 +anchorages '&nk@rIdZIz Kj$ 4 +anchored '&Nk@d Jc%,Jd% 22A,6A +anchoring '&Nk@rIN Jb% 32A,6A +anchorite '&Nk@raIt K6$ 3 +anchorites '&Nk@raIts Kj$ 3 +anchorman '&nk@m@n Ki% 3 +anchormen '&nk@m@n Kj% 3 +anchors '&Nk@z Ja%,Kj% 22A,6A +anchovies '&ntS@vIz Kj% 3 +anchovy '&ntS@vI K8% 3 +ancient 'eInS@nt OA% 2 +ancillary &n'sIl@rI OA% 4 +and &nd V-* 1 +andante &n'd&ntI K6%,OA%,Pu% 3 +andantes &n'd&ntIz Kj$ 3 +andiron '&ndaI@n K6$ 3 +andirons '&ndaI@nz Kj$ 3 +anecdotal ,&nIk'd@Utl OA% 4 +anecdote '&nIkd@Ut K6% 3 +anecdotes '&nIkd@Uts Kj% 3 +anemometer ,&nI'm0mIt@R K6% 5 +anemometers ,&nI'm0mIt@z Kj% 5 +anemone @'nem@nI K6% 4 +anemones @'nem@nIz Kj% 4 +anent @'nent T-$ 2 +aneroid '&n@roId K6$,OA$ 3 +aneroids '&n@roIdz Kj$ 3 +anesthetic ,&nIs'TetIk K6$,OA$ 4 +anesthetics ,&nIs'TetIks Kj$ 4 +anesthetist @'nisT@tIst K6$ 4 +anesthetists @'nisT@tIsts Kj$ 4 +anesthetize @n'isT@taIz H2$ 46A +anesthetized @n'isT@taIzd Hc$,Hd$ 46A +anesthetizes @n'isT@taIzIz Ha$ 56A +anesthetizing @n'isT@taIzIN Hb$ 56A +anew @'nju Pu% 2 +angel 'eIndZl K6% 2 +angelic &n'dZelIk OA% 3 +angelica &n'dZelIk@ L@% 4 +angelically @n'dZelIklI Pu% 4 +angels 'eIndZlz Kj% 2 +angelus '&ndZIl@s K7% 3 +angeluses '&ndZIl@sIz Kj$ 4 +anger '&Ng@R H0%,L@% 26A +angered '&Ng@d Hc%,Hd% 26A +angering '&Ng@rIN Hb% 36A +angers '&Ng@z Ha% 26A +angina &n'dZaIn@ L@% 3 +angle '&Ngl J2%,K6% 22A,3A,6A +angle-dozer '&Ng@l-d@Uz@R K6$ 4 +angle-dozers '&Ng@l-d@Uz@z Kj$ 4 +angle-iron '&Ng@l-aI@n K6% 4 +angle-irons '&Ng@l-aI@nz Kj% 4 +angle-park '&Ng@l-pAk J0$ 3 +angle-parked '&Ng@l-pAkt Jc$,Jd$ 3 +angle-parking '&Ng@l-pAkIN Jb$ 4 +angle-parks '&Ng@l-pAks Ja$ 3 +angled '&Ngld Jc%,Jd% 22A,3A,6A +angler '&Ngl@R K6% 2 +anglers '&Ngl@z Kj% 2 +angles '&Nglz Ja%,Kj% 22A,3A,6A +anglicism '&NglIsIz@m K6% 4 +anglicisms '&NglIsIz@mz Kj$ 4 +anglicize '&NglIsaIz H2% 36A +anglicized '&NglIsaIzd Hc%,Hd% 36A +anglicizes '&NglIsaIzIz Ha% 46A +anglicizing '&NglIsaIzIN Hb% 46A +angling '&NglIN Jb%,L@% 22A,3A,6A +angora &N'gOr@ M6% 3 +angoras &N'gOr@z Mj$ 3 +angostura ,&Ng@'stjU@r@ L@% 4 +angrier '&NgrI@R Or% 3 +angriest '&NgrIIst Os% 3 +angrily '&ngr@lI Pu% 3 +angry '&NgrI OD% 2 +angst &Nst L@% 1 +anguish '&NgwIS L@% 2 +anguished '&NgwISt OA% 2 +angular '&NgjUl@R OA% 3 +angularities ,&NgjU'l&rItIz Mj% 5 +angularity ,&NgjU'l&rItI M8% 5 +aniline '&nIlin M6$ 3 +anilines '&nIlinz Mj$ 3 +animadversion ,&nIm&d'v3Sn K6$ 5 +animadversions ,&nIm&d'v3Snz Kj$ 5 +animadvert ,&nIm&d'v3t I0$ 43A +animadverted ,&nIm&d'v3tId Ic$,Id$ 53A +animadverting ,&nIm&d'v3tIN Ib$ 53A +animadverts ,&nIm&d'v3ts Ia$ 43A +animal '&nIm@l K6% 3 +animalcule ,&nI'm&lkjul K6$ 4 +animalcules ,&nI'm&lkjulz Kj$ 4 +animals '&nIm@lz Kj% 3 +animate '&nIm@t OA% 3 +animate '&nImeIt H2% 36A,14 +animated '&nImeItId Hc%,Hd% 46A,14 +animatedly '&nImeItIdlI OA% 5 +animates '&nImeIts Ha% 36A,14 +animating '&nImeItIN Hb% 46A,14 +animation ,&nI'meISn L@% 4 +animism '&nImIz@m L@% 4 +animosities ,&nI'm0sItIz Mj% 5 +animosity ,&nI'm0sItI M8% 5 +animus '&nIm@s L@% 3 +anise '&nIs K6% 2 +aniseed '&nIsid L@% 3 +anises '&nIsIz Kj$ 3 +ankle '&Nkl K6% 2 +ankles '&Nklz Kj% 2 +anklet '&NklIt K6% 2 +anklets '&NklIts Kj% 2 +anna '&n@ K6$ 2 +annalist '&n@lIst K6$ 3 +annalists '&n@lIsts Kj$ 3 +annals '&nlz Kj% 2 +annas '&n@z Kj$ 2 +anneal @'nil H0$ 26A +annealed @'nild Hc$,Hd$ 26A +annealing @'nilIN Hb$ 36A +anneals @'nilz Ha$ 26A +annex '&neks K7% 2 +annex @'neks H1% 26A,14 +annexation ,&nek'seISn L@% 4 +annexe '&neks K6% 2 +annexed @'nekst Hc%,Hd% 26A,14 +annexes '&neksIz Kj% 3 +annexes @'neksIz Ha% 36A,14 +annexing @'neksIN Hb% 36A,14 +annihilate @'naI@leIt H2% 46A +annihilated @'naI@leItId Hc%,Hd% 56A +annihilates @'naI@leIts Ha% 46A +annihilating @'naI@leItIN Hb% 56A +annihilation @,naI@'leISn L@% 5 +anniversaries ,&nI'v3s@rIz Kj% 5 +anniversary ,&nI'v3s@rI K8% 5 +annotate '&n@teIt H2% 36A +annotated '&n@teItId Hc%,Hd% 46A +annotates '&n@teIts Ha% 36A +annotating '&n@teItIN Hb% 46A +annotation ,&n@'teISn M6% 4 +annotations ,&n@'teISnz Mj% 4 +announce @'naUns H2% 26A,9,14 +announced @'naUnst Hc%,Hd% 26A,9,14 +announcement @'naUnsm@nt K6% 3 +announcements @'naUnsm@nts Kj% 3 +announcer @'naUns@R K6% 3 +announcers @'naUns@z Kj% 3 +announces @'naUnsIz Ha% 36A,9,14 +announcing @'naUnsIN Hb% 36A,9,14 +annoy @'noI H0% 26A +annoyance @'noI@ns M6% 3 +annoyances @'noI@nsIz Mj% 4 +annoyed @'noId Hc%,Hd% 26A +annoying @'noIIN Hb%,OA% 36A +annoys @'noIz Ha% 26A +annual '&njU@l K6%,OA% 3 +annually '&njU@lI Pu% 4 +annuals '&njU@lz Kj% 3 +annuitant @'njuIt@nt K6$ 4 +annuitants @'njuIt@nts Kj$ 4 +annuities @'njuItIz Kj% 4 +annuity @'njuItI K8% 4 +annul @'nVl H4% 26A +annular '&njUl@R OA$ 3 +annulled @'nVld Hc%,Hd% 26A +annulling @'nVlIN Hb% 36A +annulment @'nVlm@nt K6% 3 +annulments @'nVlm@nts Kj% 3 +annuls @'nVlz Ha% 26A +annunciate @'nVnsIeIt H2$ 46A +annunciated @'nVnsIeItId Hc$,Hd$ 56A +annunciates @'nVnsIeIts Ha$ 46A +annunciating @'nVnsIeItIN Hb$ 56A +annunciation @,nVnsI'eISn K6% 5 +annunciations @,nVnsI'eISnz Kj$ 5 +anode '&n@Ud K6% 2 +anodes '&n@Udz Kj$ 2 +anodyne '&n@daIn M6%,OA% 3 +anodynes '&n@daInz Mj$ 3 +anoint @'noInt H0% 26A,14,23 +anointed @'noIntId Hc%,Hd% 36A,14,23 +anointing @'noIntIN Hb% 36A,14,23 +anointment @'noIntm@nt K6% 3 +anointments @'noIntm@nts Kj$ 3 +anoints @'noInts Ha% 26A,14,23 +anomalies @'n0m@lIz Kj% 4 +anomalous @'n0m@l@s OA% 4 +anomalously @'n0m@l@slI Pu% 5 +anomaly @'n0m@lI K8% 4 +anon @'n0n Pu%,Z-% 2 +anonymity ,&n@'nImItI L@% 5 +anonymous @'n0nIm@s OA% 4 +anonymously @'n0nIm@slI Pu% 5 +anopheles @'n0fIliz K9$ 4 +anorak '&n@r&k K6% 3 +anoraks '&n@r&ks Kj% 3 +another @'nVD@R OA*,Qx* 3 +answer 'Ans@R J0*,K6* 22A,2C,3A,6A,9,12A,15B +answerable '&ns@r@bl OA% 4 +answered 'Ans@d Jc%,Jd% 22A,2C,3A,6A,9,12A,15B +answering 'Ans@rIN Jb% 32A,2C,3A,6A,9,12A,15B +answers 'Ans@z Ja%,Kj% 22A,2C,3A,6A,9,12A,15B +ant &nt K6% 1 +ant-eater '&nt-it@R K6% 3 +ant-eaters '&nt-it@z Kj% 3 +ant-hill '&nt-hIl K6% 2 +ant-hills '&nt-hIlz Kj% 2 +antagonism &n't&g@nIz@m M6% 5 +antagonisms &n't&g@nIz@mz Mj% 5 +antagonist &n't&g@nIst K6% 4 +antagonistic &n,t&g@'nIstIk OA% 5 +antagonistically @n,t&g@'nIstIklI Pu% 6 +antagonists &n't&g@nIsts Kj% 4 +antagonize ,&n't&g@naIz H2% 46A +antagonized ,&n't&g@naIzd Hc%,Hd% 46A +antagonizes ,&n't&g@naIzIz Ha% 56A +antagonizing ,&n't&g@naIzIN Hb% 56A +antarctic &n'tAktIk OA% 3 +ante '&ntI K6%,U-% 2 +ante meridiem ,&ntI m@'rIdI@m Pu% 6 +antecedence '&ntIsidns K6$ 4 +antecedences '&ntIsidnsIz Kj$ 5 +antecedent ,&ntI'sidnt K6%,OA% 4 +antecedents ,&ntI'sidnts Kj% 4 +antechamber '&ntItSeImb@R K6% 4 +antechambers '&ntItSeImb@z Kj% 4 +antedate ,&ntI'deIt H2% 36A +antedated ,&ntI'deItId Hc%,Hd% 46A +antedates ,&ntI'deIts Ha% 36A +antedating ,&ntI'deItIN Hb% 46A +antediluvian ,&ntIdI'luvI@n K6%,OA% 6 +antediluvians ,&ntIdI'luvI@nz Kj% 6 +antelope '&ntIl@Up K6% 3 +antelopes '&ntIl@Ups Kj% 3 +antenatal ,&ntI'neItl OA% 4 +antenna &n'ten@ Ki% 3 +antennae &n'teni Kj% 3 +antenuptial ,&ntI'nVpSl OA$ 4 +antepenultimate ,&ntIpI'nVltIm@t OA$ 6 +anterior &n'tI@rI@R OA% 4 +anteroom '&ntIrUm K6% 3 +anterooms '&ntIrUmz Kj% 3 +antes '&ntIz Kj% 2 +anthem '&nT@m K6% 2 +anthems '&nT@mz Kj% 2 +anther '&nT@R K6$ 2 +anthers '&nT@z Kj$ 2 +anthologies ,&n'T0l@dZIz Kj% 4 +anthology ,&n'T0l@dZI K8% 4 +anthracite '&nTr@saIt L@% 3 +anthrax '&nTr&ks L@% 2 +anthropoid '&nTr@poId K6%,OA% 3 +anthropoids '&nTr@poIdz Kj% 3 +anthropological ,&nTr@p@'l0dZIkl OA% 6 +anthropologist ,&nTr@'p0l@dZIst K6% 5 +anthropologists ,&nTr@'p0l@dZIsts Kj% 5 +anthropology ,&nTr@'p0l@dZI L@% 5 +anti- ,&ntI- U-% 2 +anti-Semite ,&ntI-'simaIt K6%,OA% 4 +anti-Semites ,&ntI-'simaIts Kj% 4 +anti-Semitic ,&ntI-sI'mItIk OA% 5 +anti-Semitism ,&ntI-'semItIz@m L@% 6 +anti-aircraft ,&ntI-'e@krAft OA% 4 +anti-hero '&ntI-hI@r@U K7% 4 +anti-heroes '&ntI-hI@r@Uz Kj% 4 +anti-personnel ,&ntI-,p3s@'nel OA% 5 +antibiotic ,&ntIbaI'0tIk K6%,OA% 5 +antibiotics ,&ntIbaI'0tIks Kj% 5 +antibodies '&ntIb0dIz Kj% 4 +antibody '&ntIb0dI K8% 4 +antic '&ntIk K6% 2 +anticipate &n'tIsIpeIt H2% 46A,6C,9 +anticipated &n'tIsIpeItId Hc%,Hd% 56A,6C,9 +anticipates &n'tIsIpeIts Ha% 46A,6C,9 +anticipating &n'tIsIpeItIN Hb% 56A,6C,9 +anticipation &n,tIsI'peISn M6% 5 +anticipations &n,tIsI'peISnz Mj$ 5 +anticipatory &n,tIsI'peIt@rI OA% 6 +anticlimax ,&ntI'klaIm&ks K7% 4 +anticlimaxes ,&ntI'klaIm&ksIz Kj% 5 +anticlockwise ,&ntI'kl0kwaIz Pu% 4 +antics '&ntIks Kj% 2 +anticyclone ,&ntI'saIkl@Un K6% 4 +anticyclones ,&ntI'saIkl@Unz Kj% 4 +antidote '&ntId@Ut K6% 3 +antidotes '&ntId@Uts Kj% 3 +antifreeze '&ntIfriz L@% 3 +antiknock ,&ntI'n0k L@$ 3 +antilogarithm ,&ntI'l0g@rID@m K6% 6 +antilogarithms ,&ntI'l0g@rID@mz Kj% 6 +antimacassar ,&ntIm@'k&s@R K6$ 5 +antimacassars ,&ntIm@'k&s@z Kj$ 5 +antimony '&ntIm@nI L@$ 4 +antipathetic ,&ntIp@'TetIk OA% 5 +antipathies &n'tIp@TIz Mj% 4 +antipathy &n'tIp@TI M8% 4 +antipodes &n'tIp@diz Kj% 4 +antiquarian ,&ntI'kwe@rI@n K6%,OA% 5 +antiquarians ,&ntI'kwe@rI@nz Kj% 5 +antiquaries '&ntIkw@rIz Kj% 4 +antiquary '&ntIkw@rI K8% 4 +antiquated '&ntIkweItId OA% 4 +antique &n'tik K6%,OA% 2 +antiques &n'tiks Kj% 2 +antiquities &n'tIkwItIz Mj% 4 +antiquity &n'tIkwItI M8% 4 +antirrhinum ,&ntI'raIn@m K6% 4 +antirrhinums ,&ntI'raIn@mz Kj% 4 +antiseptic ,&ntI'septIk K6%,OA% 4 +antiseptics ,&ntI'septIks Kj% 4 +antisocial ,&ntI's@USl OA% 4 +antitank ,&ntI't&Nk Oq% 3 +antitheses &n'tIT@siz Kj% 4 +antithesis &n'tIT@sIs Mi% 4 +antithetic ,&ntI'TetIk OA$ 4 +antithetical ,&ntI'TetIkl OA$ 5 +antithetically ,&ntI'TetIklI Pu$ 5 +antitoxin ,&ntI't0ksIn K6% 4 +antitoxins ,&ntI't0ksInz Kj% 4 +antitrade ,&ntI'treId K6$,OA$ 3 +antitrades ,&ntI'treIdz Kj$ 3 +antler '&ntl@R K6% 2 +antlers '&ntl@z Kj% 2 +antonym '&nt@nIm K6% 3 +antonyms '&nt@nImz Kj% 3 +ants &nts Kj% 1 +anus 'eIn@s K7% 2 +anuses 'eIn@sIz Kj$ 3 +anvil '&nvIl K6% 2 +anvils '&nvIlz Kj% 2 +anxieties &N'zaI@tIz Mj% 4 +anxiety &N'zaI@tI M8% 4 +anxious '&NkS@s OA% 2 +anxiously '&NkS@slI Pu% 3 +any 'enI OA*,Pu*,Qx* 2 +anybody 'enIb0dI Ki%,Qx% 4 +anyhow 'enIhaU Pu% 3 +anyone 'enIwVn Ki%,Qx% 3 +anyplace 'enIpleIs Pu% 3 +anything 'enITIN Ki*,Qx* 3 +anyway 'enIweI Pu% 3 +anywhere 'enIwe@R Pu% 3 +aorta eI'Ot@ K6% 3 +aortas eI'Ot@z Kj% 3 +apace @'peIs Pu% 2 +apache @'p&tSI K6% 3 +apaches @'p&tSIz Kj% 3 +apanage '&p@nIdZ L@$ 3 +apart @'pAt Pu% 2 +apartheid @'pAtaIt L@% 3 +apartment @'pAtm@nt K6% 3 +apartments @'pAtm@nts Kj% 3 +apathetic ,&p@'TetIk OA% 4 +apathetically ,&p@'TetIklI Pu% 5 +apathy '&p@TI L@% 3 +ape eIp H2%,K6% 1 +aped eIpt Hc%,Hd% 1 +aperient @'pI@rI@nt K6$,OA$ 4 +aperients @'pI@rI@nts Kj$ 4 +aperitif @'per@tIf K6% 4 +aperitifs @'per@tIfs Kj% 4 +aperture '&p@tS@R K6% 3 +apertures '&p@tS@z Kj% 3 +apes eIps Ha%,Kj% 1 +apex 'eIpeks K7% 2 +apexes 'eIpeksIz Kj% 3 +aphasia @'feIzI@ L@% 4 +aphid 'eIfId K6% 2 +aphides 'eIfIdiz Kj$ 3 +aphids 'eIfIdz Kj% 2 +aphis 'eIfIs Ki% 2 +aphorism '&f@rIz@m K6% 4 +aphorisms '&f@rIz@mz Kj% 4 +aphrodisiac ,&fr@'dIzI&k M6%,OA% 5 +aphrodisiacs ,&fr@'dIzI&ks Mj% 5 +apiaries 'eIpI@rIz Kj% 4 +apiarist 'eIpI@rIst K6% 4 +apiarists 'eIpI@rIsts Kj% 4 +apiary 'eIpI@rI K8% 4 +apices 'eIpIsiz Kj$ 3 +apiculture 'eIpIkVltS@R K6% 4 +apicultures 'eIpIkVltS@z Kj$ 4 +apiece @'pis Pu% 2 +aping 'eIpIN Hb% 2 +apish 'eIpIS OA% 2 +aplomb @'pl0m L@% 2 +apocalypse @'p0k@lIps K6% 4 +apocalypses @'p0k@lIpsIz Kj% 5 +apocalyptic @,p0k@'lIptIk OA% 5 +apocryphal @'p0krIf@l OA% 4 +apogee '&p@dZi K6% 3 +apogees '&p@dZiz Kj$ 3 +apologetic @,p0l@'dZetIk OA% 5 +apologetically @,p0l@'dZetIklI Pu% 6 +apologetics @,p0l@'dZetIks Lk% 5 +apologies @'p0l@dZIz Kj% 4 +apologist @'p0l@dZIst K6% 4 +apologists @'p0l@dZIsts Kj% 4 +apologize @'p0l@dZaIz I2% 42A,3A +apologized @'p0l@dZaIzd Ic%,Id% 42A,3A +apologizes @'p0l@dZaIzIz Ia% 52A,3A +apologizing @'p0l@dZaIzIN Ib% 52A,3A +apology @'p0l@dZI K8% 4 +apophthegm '&p@Tem K6% 3 +apophthegms '&p@Temz Kj$ 3 +apoplectic ,&p@'plektIk OA% 4 +apoplexy '&p@pleksI L@% 4 +apostasies @'p0st@sIz Mj$ 4 +apostasy @'p0st@sI M8% 4 +apostate @'p0steIt K6%,OA% 3 +apostates @'p0steIts Kj% 3 +apostle @'p0sl K6% 3 +apostles @'p0slz Kj% 3 +apostolic ,&p@'st0lIk OA% 4 +apostrophe @'p0str@fI K6% 4 +apostrophes @'p0str@fIz Kj% 4 +apostrophize @'p0str@faIz H2$ 4 +apostrophized @'p0str@faIzd Hc$,Hd$ 4 +apostrophizes @'p0str@faIzIz Ha$ 5 +apostrophizing @'p0str@faIzIN Hb$ 5 +apothecaries @'p0TIk@rIz Kj% 5 +apothecary @'p0TIk@rI K8% 5 +apothegm '&p@Tem K6$ 3 +apothegms '&p@Temz Kj$ 3 +apotheoses @,p0TI'@Usiz Kj$ 5 +apotheosis @,p0TI'@UsIs Ki% 5 +appal @'pOl H4% 26A +appalled @'pOld Hc%,Hd% 26A +appalling @'pOlIN Hb%,OA% 36A +appallingly @'pOlINlI Pu% 4 +appals @'pOlz Ha% 26A +appanage '&p@nIdZ L@$ 3 +apparatus ,&p@'reIt@s M7% 4 +apparatuses ,&p@'reIt@sIz Mj% 5 +apparel @'p&r@l H4$,L@% 3 +apparelled @'p&r@ld Hc$,Hd$ 3 +apparelling @'p&r@lIN Hb$ 4 +apparels @'p&r@lz Ha$ 3 +apparent @'p&r@nt OA% 3 +apparently @'p&r@ntlI Pu% 4 +apparition ,&p@'rISn K6% 4 +apparitions ,&p@'rISnz Kj% 4 +appeal @'pil I0%,M6% 22A,3A +appealed @'pild Ic%,Id% 22A,3A +appealing @'pilIN Ib%,OA% 32A,3A +appealingly @'pilINlI Pu% 4 +appeals @'pilz Ia%,Mj% 22A,3A +appear @'pI@R I0% 22A,2C,4D,4E +appearance @'pI@r@ns K6% 3 +appearances @'pI@r@nsIz Kj% 4 +appeared @'pI@d Ic%,Id% 22A,2C,4D,4E +appearing @'pI@rIN Ib% 32A,2C,4D,4E +appears @'pI@z Ia% 22A,2C,4D,4E +appease @'piz H2% 26A +appeased @'pizd Hc%,Hd% 26A +appeasement @'pizm@nt L@% 3 +appeases @'pizIz Ha% 36A +appeasing @'pizIN Hb% 36A +appellant @'pel@nt K6$,OA$ 3 +appellants @'pel@nts Kj$ 3 +appellation ,&p@'leISn K6% 4 +appellations ,&p@'leISnz Kj$ 4 +append @'pend H0% 26A,14 +appendage @'pendIdZ K6% 3 +appendages @'pendIdZIz Kj% 4 +appendectomies ,&pen'dekt@mIz Kj% 5 +appendectomy ,&pen'dekt@mI K8% 5 +appended @'pendId Hc%,Hd% 36A,14 +appendices @'pendIsiz Kj% 4 +appendicitis @,pendI'saItIs L@% 5 +appending @'pendIN Hb% 36A,14 +appendix @'pendIks K7% 3 +appendixes @'pendIksIz Kj% 4 +appends @'pendz Ha% 26A,14 +appertain ,&p@'teIn I0% 33A +appertained ,&p@'teInd Ic%,Id% 33A +appertaining ,&p@'teInIN Ib% 43A +appertains ,&p@'teInz Ia% 33A +appetite '&pItaIt M6% 3 +appetites '&pItaIts Mj% 3 +appetizer '&pItaIz@R K6% 4 +appetizers '&pItaIz@z Kj% 4 +appetizing '&pItaIzIN OA% 4 +applaud @'plOd J0% 22A,2B,6A +applauded @'plOdId Jc%,Jd% 32A,2B,6A +applauding @'plOdIN Jb% 32A,2B,6A +applauds @'plOdz Ja% 22A,2B,6A +applause @'plOz L@% 2 +apple '&pl M6% 2 +applejack '&pldZ&k L@$ 3 +apples '&plz Mj% 2 +appliance @'plaI@ns K6% 3 +appliances @'plaI@nsIz Kj% 4 +applicability @,plIk@'bIlItI L@% 6 +applicable @'plIk@bl OA% 4 +applicant '&plIk@nt K6% 3 +applicants '&plIk@nts Kj% 3 +application ,&plI'keISn M6% 4 +applications ,&plI'keISnz Mj% 4 +applied @'plaId Jc%,Jd%,OA% 22C,3A,6A,14 +applies @'plaIz Ja% 22C,3A,6A,14 +appliqu_e &'plikeI H0%,L@% 3 +appliqu_eed &'plikeId Hc%,Hd% 3 +appliqu_eing &'plikeIIN Hb% 4 +appliqu_es &'plikeIz Ha% 3 +apply @'plaI J3% 22C,3A,6A,14 +applying @'plaIIN Jb% 32C,3A,6A,14 +appoint @'poInt H0% 26A,9,14,16A,23,25 +appointed @'poIntId Hc%,Hd% 36A,9,14,16A,23,25 +appointee @poIn'ti K6% 3 +appointees @poIn'tiz Kj% 3 +appointing @'poIntIN Hb% 36A,9,14,16A,23,25 +appointment @'poIntm@nt M6% 3 +appointments @'poIntm@nts Mj% 3 +appoints @'poInts Ha% 26A,9,14,16A,23,25 +apportion @'pOSn H0% 36A,12B,13B,14 +apportioned @'pOSnd Hc%,Hd% 36A,12B,13B,14 +apportioning @'pOSnIN Hb% 46A,12B,13B,14 +apportionment @'pOSnm@nt L@% 4 +apportions @'pOSnz Ha% 36A,12B,13B,14 +apposite '&p@zIt OA% 3 +appositely '&p@zItlI Pu% 4 +apposition ,&p@'zISn L@$ 4 +appraisal @'preIzl K6% 3 +appraisals @'preIzlz Kj$ 3 +appraise @'preIz H2% 26A +appraised @'preIzd Hc%,Hd% 26A +appraises @'preIzIz Ha% 36A +appraising @'preIzIN Hb% 36A +appreciable @'priS@bl OA% 4 +appreciably @'priS@blI Pu% 4 +appreciate @'priSIeIt J2% 42B,6A,9,10 +appreciated @'priSIeItId Jc%,Jd% 52B,6A,9,10 +appreciates @'priSIeIts Ja% 42B,6A,9,10 +appreciating @'priSIeItIN Jb% 52B,6A,9,10 +appreciation @,priSI'eISn M6% 5 +appreciations @,priSI'eISnz Mj% 5 +appreciative @'priS@tIv OA% 4 +appreciatively @'priS@tIvlI Pu% 5 +apprehend ,&prI'hend H0% 36A,9 +apprehended ,&prI'hendId Hc%,Hd% 46A,9 +apprehending ,&prI'hendIN Hb% 46A,9 +apprehends ,&prI'hendz Ha% 36A,9 +apprehensible ,&prI'hens@bl OA$ 5 +apprehension ,&prI'henSn M6% 4 +apprehensions ,&prI'henSnz Mj$ 4 +apprehensive ,&prI'hensIv OA% 4 +apprentice @'prentIs H2%,K6% 36A,14 +apprenticed @'prentIst Hc%,Hd% 36A,14 +apprentices @'prentIsIz Ha%,Kj% 46A,14 +apprenticeship @'prentISIp K6% 4 +apprenticeships @'prentISIps Kj% 4 +apprenticing @'prentIsIN Hb% 46A,14 +apprise @'praIz H2% 214 +apprised @'praIzd Hc%,Hd% 214 +apprises @'praIzIz Ha$ 314 +apprising @'praIzIN Hb$ 314 +appro '&pr@U L@$ 2 +approach @'pr@UtS J1%,M7% 22A,6A +approachable @'pr@UtS@bl OA% 4 +approached @'pr@UtSt Jc%,Jd% 22A,6A +approaches @'pr@UtSIz Ja%,Mj% 32A,6A +approaching @'pr@UtSIN Jb% 32A,6A +approbation ,&pr@'beISn L@% 4 +appropriate @'pr@UprI@t OA% 4 +appropriate @'pr@UprIeIt H2% 46A,14 +appropriated @'pr@UprIeItId Hc%,Hd% 56A,14 +appropriately @'pr@UprI@tlI Pu% 5 +appropriates @'pr@UprIeIts Ha% 46A,14 +appropriating @'pr@UprIeItIN Hb% 56A,14 +appropriation @,pr@UprI'eISn M6% 5 +appropriations @,pr@UprI'eISnz Mj% 5 +approval @'pruvl L@% 3 +approve @'pruv J2% 23A,6A +approved @'pruvd Jc%,Jd% 23A,6A +approves @'pruvz Ja% 23A,6A +approving @'pruvIN Jb% 33A,6A +approvingly @'pruvINlI Pu% 4 +approx @'pr0ks Y~% 2 +approximate @'pr0ksIm@t OA% 4 +approximate @'pr0ksImeIt J2% 43A,6A +approximated @'pr0ksImeItId Jc%,Jd% 53A,6A +approximately @'pr0ksIm@tlI Pu% 5 +approximates @'pr0ksImeIts Ja% 43A,6A +approximating @'pr0ksImeItIN Jb% 53A,6A +approximation @,pr0ksI'meISn M6% 5 +approximations @,pr0ksI'meISnz Mj% 5 +appurtenance @'p3tIn@ns K6% 4 +appurtenances @'p3tIn@nsIz Kj% 5 +apr`es-ski ,&preI-'ski Oq% 3 +apricot 'eIprIk0t K6% 3 +apricots 'eIprIk0ts Kj% 3 +apron 'eIpr@n K6% 2 +aprons 'eIpr@nz Kj% 2 +apropos ,&pr@'p@U Op%,Pu% 3 +apse &ps K6$ 1 +apses '&psIz Kj$ 2 +apt &pt OC% 1 +apter '&pt@R Or$ 2 +aptest '&ptIst Os$ 2 +aptitude '&ptItjud M6% 3 +aptitudes '&ptItjudz Mj% 3 +aptly '&ptlI Pu% 2 +aptness '&ptn@s L@% 2 +aqualung '&kw@lVN K6% 3 +aqualungs '&kw@lVNz Kj% 3 +aquamarine ,&kw@m@'rin M6% 4 +aquamarines ,&kw@m@'rinz Mj% 4 +aquanaut '&kw@nOt K6$ 3 +aquanauts '&kw@nOts Kj$ 3 +aquaplane '&kw@pleIn I2%,K6% 3 +aquaplaned '&kw@pleInd Ic%,Id% 3 +aquaplanes '&kw@pleInz Ia%,Kj% 3 +aquaplaning '&kw@pleInIN Ib% 4 +aquaria @'kwe@rI@ Kj$ 4 +aquarium @'kwe@rI@m K6% 4 +aquariums @'kwe@rI@mz Kj% 4 +aquatic @'kw&tIk OA% 3 +aquatint '&kw@tInt M6% 3 +aquatints '&kw@tInts Mj% 3 +aquavit '&kw@vIt L@$ 3 +aqueduct '&kwIdVkt K6% 3 +aqueducts '&kwIdVkts Kj% 3 +aqueous 'eIkwI@s OA$ 3 +aquiline '&kwIlaIn OA% 3 +ar^ete &'reIt K6$ 2 +ar^etes &'reIts Kj$ 2 +arabesque ,&r@'besk K6% 3 +arabesques ,&r@'besks Kj% 3 +arable '&r@bl OA% 3 +arachnid @'r&knId K6% 3 +arachnids @'r&knIdz Kj% 3 +arbiter 'AbIt@R K6% 3 +arbiters 'AbIt@z Kj% 3 +arbitrament A'bItr@m@nt M6$ 4 +arbitraments A'bItr@m@nts Mj$ 4 +arbitrarily ,AbI'tre@rIlI Pu% 5 +arbitrary 'AbItr@rI OA% 4 +arbitrate 'AbItreIt J2% 32A,6A +arbitrated 'AbItreItId Jc%,Jd% 42A,6A +arbitrates 'AbItreIts Ja% 32A,6A +arbitrating 'AbItreItIN Jb% 42A,6A +arbitration ,AbI'treISn M6% 4 +arbitrations ,AbI'treISnz Mj% 4 +arbitrator 'AbItreIt@R K6% 4 +arbitrators 'AbItreIt@z Kj% 4 +arboreal A'bOrI@l OA$ 4 +arbour 'Ab@R K6% 2 +arbours 'Ab@z Kj% 2 +arc Ak K6% 1 +arc-lamp 'Ak-l&mp K6% 2 +arc-lamps 'Ak-l&mps Kj% 2 +arc-light 'Ak-laIt K6% 2 +arc-lights 'Ak-laIts Kj% 2 +arcade A'keId K6% 2 +arcades A'keIdz Kj% 2 +arcane A'keIn OA% 2 +arch AtS J1%,K7%,Oq% 12C,6A +arch- AtS- U-% 1 +archaeological ,AkI@'l0dZIkl OA% 6 +archaeologist ,AkI'0l@dZIst K6% 5 +archaeologists ,AkI'0l@dZIsts Kj% 5 +archaeology ,AkI'0l@dZI L@% 5 +archaic A'keIIk OA% 3 +archaism 'AkeIIz@m M6% 4 +archaisms 'AkeIIz@mz Mj% 4 +archangel 'AkeIndZl K6% 3 +archangels 'AkeIndZlz Kj% 3 +archbishop ,AtS'bIS@p K6% 3 +archbishopric AtS'bIS@prIk K6% 4 +archbishoprics AtS'bIS@prIks Kj$ 4 +archbishops ,AtS'bIS@ps Kj% 3 +archdeacon ,AtS'dik@n K6% 3 +archdeaconries AtS'dik@nrIz Kj$ 4 +archdeaconry AtS'dik@nrI K8% 4 +archdeacons ,AtS'dik@nz Kj% 3 +archdiocese ,AtS'daI@sIs K6% 4 +archdioceses ,AtS'daI@sIsIz Kj$ 5 +archduke ,AtS'djuk K6% 2 +archdukes ,AtS'djuks Kj% 2 +arched AtSt Jc%,Jd% 12C,6A +archeology ,AkI'0l@dZI L@% 5 +archer 'AtS@R K6% 2 +archers 'AtS@z Kj% 2 +archery 'AtS@rI L@% 3 +arches 'AtSIz Ja%,Kj% 22C,6A +archetypal ,AkI'taIpl OA% 4 +archetype 'AkItaIp K6% 3 +archetypes 'AkItaIps Kj% 3 +archimandrite ,AkI'm&ndraIt K6$ 4 +archimandrites ,AkI'm&ndraIts Kj$ 4 +arching 'AtSIN Jb% 22C,6A +archipelago ,AkI'pel@g@U K6% 5 +archipelagoes ,AkI'pel@g@Uz Kj% 5 +archipelagos ,AkI'pel@g@Uz Kj% 5 +architect 'AkItekt K6% 3 +architects 'AkItekts Kj% 3 +architectural ,AkI'tektS@r@l OA% 5 +architecturally ,AkI'tektS@r@lI Pu% 6 +architecture 'AkItektS@R L@% 4 +archives 'AkaIvz Kj% 2 +archivist 'AkIvIst K6% 3 +archivists 'AkIvIsts Kj% 3 +archly 'AtSlI Pu% 2 +archway 'AtSweI K6% 2 +archways 'AtSweIz Kj% 2 +arcs Aks Kj% 1 +arctic 'AktIk OA% 2 +ardent 'Adnt OA% 2 +ardently 'AdntlI Pu% 3 +ardour 'Ad@R M6% 2 +ardours 'Ad@z Mj$ 2 +arduous 'AdjU@s OA% 3 +arduously 'AdjU@slI Pu% 4 +are AR Ge*,Ie*,K6$ 11 +area 'e@rI@ M6* 3 +areas 'e@rI@z Mj% 3 +areca '&rIk@ K6$ 3 +arecas '&rIk@z Kj$ 3 +aren't Ant Gg% 1 +arena @'rin@ K6% 3 +arenas @'rin@z Kj% 3 +ares Az Kj$ 1 +argent 'AdZ@nt K6$,OA$ 2 +argents 'AdZ@nts Kj$ 2 +argon 'Ag0n L@% 2 +argosies 'Ag@sIz Kj$ 3 +argosy 'Ag@sI K8$ 3 +argot 'Ag@U L@$ 2 +arguable 'AgjU@bl OA% 4 +arguably 'AgjU@blI Pu% 4 +argue 'Agju J2% 22A,2C,3A,6A,9,14 +argued 'Agjud Jc%,Jd% 22A,2C,3A,6A,9,14 +argues 'Agjuz Ja% 22A,2C,3A,6A,9,14 +arguing 'AgjuIN Jb% 32A,2C,3A,6A,9,14 +argument 'AgjUm@nt M6% 3 +argumentation ,AgjUmen'teISn L@$ 5 +argumentative ,AgjU'ment@tIv OA% 5 +arguments 'AgjUm@nts Mj% 3 +aria 'ArI@ K6% 3 +arias 'ArI@z Kj% 3 +arid '&rId OA% 2 +aridity @'rIdItI L@% 4 +aright @'raIt Pu% 2 +arise @'raIz I5% 22A,3A +arisen @'rIzn Id% 32A,3A +arises @'raIzIz Ia% 32A,3A +arising @'raIzIN Ib% 32A,3A +aristocracies ,&rI'st0kr@sIz Mj% 5 +aristocracy ,&rI'st0kr@sI M8% 5 +aristocrat '&rIst@kr&t K6% 4 +aristocratic ,&rIst@'kr&tIk OA% 5 +aristocratically ,&rIst@'kr&tIklI Pu% 6 +aristocrats '&rIst@kr&ts Kj% 4 +arithmetic @'rITm@tIk L@% 4 +arithmetical ,&rIT'metIkl OA% 5 +arithmetically ,&rIT'metIklI Pu% 5 +arithmetician @,rITm@'tISn K6$ 5 +arithmeticians @,rITm@'tISnz Kj$ 5 +ark Ak K6% 1 +arks Aks Kj% 1 +arm Am J0%,K6% 12A,6A,14 +arm-hole 'Am-h@Ul K6% 2 +arm-holes 'Am-h@Ulz Kj% 2 +armada A'mAd@ K6% 3 +armadas A'mAd@z Kj% 3 +armadillo ,Am@'dIl@U K6% 4 +armadillos ,Am@'dIl@Uz Kj% 4 +armament 'Am@m@nt M6% 3 +armaments 'Am@m@nts Mj% 3 +armature 'Am@tSU@R K6$ 3 +armatures 'Am@tSU@z Kj$ 3 +armband 'Amb&nd K6% 2 +armbands 'Amb&ndz Kj% 2 +armchair 'AmtSe@R K6% 2 +armchairs 'AmtSe@z Kj% 2 +armed Amd Jc%,Jd% 12A,6A,14 +armful 'AmfUl K6% 2 +armfuls 'AmfUlz Kj% 2 +armies 'AmIz Kj% 2 +arming 'AmIN Jb% 22A,6A,14 +armistice 'AmIstIs K6% 3 +armistices 'AmIstIsIz Kj% 4 +armlet 'AmlIt K6% 2 +armlets 'AmlIts Kj% 2 +armoire 'AmwAR K6$ 2 +armoires 'AmwAz Kj$ 2 +armorial A'mOrI@l OA% 4 +armour 'Am@R L@% 2 +armour-plate 'Am@-pleIt K6% 3 +armour-plates 'Am@-pleIts Kj$ 3 +armoured 'Am@d OA% 2 +armourer 'Am@r@R K6% 3 +armourers 'Am@r@z Kj% 3 +armouries 'Am@rIz Kj% 3 +armoury 'Am@rI K8% 3 +armpit 'AmpIt K6% 2 +armpits 'AmpIts Kj% 2 +arms Amz Ja%,Kj% 12A,6A,14 +arms-race 'Amz-reIs Ki% 2 +arms-runner 'Amz-rVn@R K6% 3 +arms-runners 'Amz-rVn@z Kj% 3 +army 'AmI K8% 2 +arnica 'AnIk@ L@$ 3 +aroma @'r@Um@ K6% 3 +aromas @'r@Um@z Kj% 3 +aromatic ,&r@'m&tIk OA% 4 +arose @'r@Uz Ic% 22A,3A +around @'raUnd Pu*,T-* 2 +arouse @'raUz H2% 26A,14 +aroused @'raUzd Hc%,Hd% 26A,14 +arouses @'raUzIz Ha% 36A,14 +arousing @'raUzIN Hb% 36A,14 +arpeggio A'pedZI@U K6% 4 +arpeggios A'pedZI@Uz Kj% 4 +arquebus 'AkwIb@s K7$ 3 +arquebuses 'AkwIb@sIz Kj$ 4 +arr @'raIv Y~% 2 +arrack '&r&k L@$ 2 +arraign @'reIn H0% 26A,14 +arraigned @'reInd Hc%,Hd% 26A,14 +arraigning @'reInIN Hb% 36A,14 +arraignment @'reInm@nt K6$ 3 +arraignments @'reInm@nts Kj$ 3 +arraigns @'reInz Ha% 26A,14 +arrange @'reIndZ J2% 23A,4C,6A,14,15A +arranged @'reIndZd Jc%,Jd% 23A,4C,6A,14,15A +arrangement @'reIndZm@nt M6% 3 +arrangements @'reIndZm@nts Mj% 3 +arranges @'reIndZIz Ja% 33A,4C,6A,14,15A +arranging @'reIndZIN Jb% 33A,4C,6A,14,15A +arrant '&r@nt OA% 2 +arras '&r@s K7$ 2 +arrases '&r@sIz Kj$ 3 +array @'reI H0%,K6% 26A,15A +arrayed @'reId Hc%,Hd% 26A,15A +arraying @'reIIN Hb% 36A,15A +arrays @'reIz Ha%,Kj% 26A,15A +arrears @'rI@z Kj% 2 +arrest @'rest H0%,K6% 26A +arrested @'restId Hc%,Hd% 36A +arrester @'rest@R K6% 3 +arresters @'rest@z Kj% 3 +arresting @'restIN Hb%,OA% 36A +arrests @'rests Ha%,Kj% 26A +arri`ere pens_ee ,&rIe@ 'p0nseI K6$ 5 +arri`ere pens_ees ,&rIe@ 'p0nseIz Kj$ 5 +arrival @'raIvl M6% 3 +arrivals @'raIvlz Mj% 3 +arrive @'raIv I2% 22A,2C,3A +arrived @'raIvd Ic%,Id% 22A,2C,3A +arrives @'raIvz Ia% 22A,2C,3A +arriving @'raIvIN Ib% 32A,2C,3A +arrogance '&r@g@ns L@% 3 +arrogant '&r@g@nt OA% 3 +arrogantly '&r@g@ntlI Pu% 4 +arrogate '&r@geIt H2$ 314 +arrogated '&r@geItId Hc$,Hd$ 414 +arrogates '&r@geIts Ha$ 314 +arrogating '&r@geItIN Hb% 414 +arrow '&r@U K6% 2 +arrowhead '&r@Uhed K6% 3 +arrowheads '&r@Uhedz Kj% 3 +arrowroot '&r@Urut L@% 3 +arrows '&r@Uz Kj% 2 +arse As K6% 1 +arsehole 'Ash@Ul K6% 2 +arseholes 'Ash@Ulz Kj% 2 +arsenal 'Asn@l K6% 2 +arsenals 'Asn@lz Kj% 2 +arsenic 'AsnIk L@% 2 +arses 'AsIz Kj% 2 +arson 'Asn L@% 2 +art At M6% 1 +artefact 'AtIf&kt K6% 3 +artefacts 'AtIf&kts Kj% 3 +arterial A'tI@rI@l OA% 4 +arteries 'At@rIz Kj% 3 +arteriosclerosis A,tI@rI@Uskl@'r@UsIs L@% 7 +artery 'At@rI K8% 3 +artesian A'tizI@n OA% 4 +artful 'Atf@l OA% 2 +artfully 'Atf@lI Pu% 3 +artfulness 'Atf@ln@s L@% 3 +arthritic A'TrItIk OA% 3 +arthritis ,A'TraItIs L@% 3 +artichoke 'AtItS@Uk K6% 3 +artichokes 'AtItS@Uks Kj% 3 +article 'AtIkl H2%,K6% 3 +articled 'AtIkld Hc%,Hd% 3 +articles 'AtIklz Ha$,Kj% 3 +articling 'AtIklIN Hb$ 3 +articulate A'tIkjUl@t OA% 4 +articulate A'tIkjUleIt J2% 42C,6A,15A +articulated A'tIkjUleItId Jc%,Jd% 52C,6A,15A +articulately A'tIkjUl@tlI Pu% 5 +articulates A'tIkjUleIts Ja% 42C,6A,15A +articulating A'tIkjUleItIN Jb% 52C,6A,15A +articulation A,tIkjU'leISn L@% 5 +artifact 'AtIf&kt K6% 3 +artifacts 'AtIf&kts Kj% 3 +artifice 'AtIfIs M6% 3 +artificer A'tIfIs@R K6$ 4 +artificers A'tIfIs@z Kj$ 4 +artifices 'AtIfIsIz Mj$ 4 +artificial ,AtI'fISl OA% 4 +artificially ,AtI'fIS@lI Pu% 5 +artillery A'tIl@rI L@% 4 +artisan ,AtI'z&n K6% 3 +artisans ,AtI'z&nz Kj% 3 +artist 'AtIst K6% 2 +artiste A'tist K6% 2 +artistes A'tists Kj% 2 +artistic A'tIstIk OA% 3 +artistically A'tIstIklI Pu% 4 +artistry 'AtIstrI L@% 3 +artists 'AtIsts Kj% 2 +artless 'AtlIs OA% 2 +artlessly 'AtlIslI Pu% 3 +artlessness 'AtlIsn@s L@% 3 +arts Ats Mj% 1 +arty 'AtI OA% 2 +arty-crafty ,AtI-'kr&ftI OA% 4 +arum 'e@r@m K6$ 2 +arums 'e@r@mz Kj$ 2 +as &z V-* 1 +asap ,eI,es,eI'pi Y~% 4 +asbestos &z'best0s L@% 3 +ascend @'send J0% 22A,2C,6A +ascendancy @'send@nsI L@% 4 +ascendant @'send@nt K6% 3 +ascendants @'send@nts Kj$ 3 +ascended @'sendId Jc%,Jd% 32A,2C,6A +ascendency @'send@nsI L@% 4 +ascendent @'send@nt K6$ 3 +ascendents @'send@nts Kj$ 3 +ascending @'sendIN Jb% 32A,2C,6A +ascends @'sendz Ja% 22A,2C,6A +ascension @'senSn K6% 3 +ascensions @'senSnz Kj$ 3 +ascent @'sent K6% 2 +ascents @'sents Kj% 2 +ascertain ,&s@'teIn H0% 36A,8,9,10,17 +ascertainable ,&s@'teIn@bl OA% 5 +ascertained ,&s@'teInd Hc%,Hd% 36A,8,9,10,17 +ascertaining ,&s@'teInIN Hb% 46A,8,9,10,17 +ascertains ,&s@'teInz Ha% 36A,8,9,10,17 +ascetic @'setIk K6%,OA% 3 +ascetically @'sitIklI Pu% 4 +asceticism @'setIsIz@m L@% 5 +ascetics @'setIks Kj% 3 +ascorbic @'skObIk OA% 3 +ascribable @s'kraIb@bl OA% 4 +ascribe @'skraIb H2% 214 +ascribed @'skraIbd Hc%,Hd% 214 +ascribes @'skraIbz Ha% 214 +ascribing @'skraIbIN Hb% 314 +ascription @'skrIpSn K6$ 3 +ascriptions @'skrIpSnz Kj$ 3 +asdic '&zdIk K6$ 2 +asdics '&zdIks Kj$ 2 +asepsis ,eI'sepsIs L@$ 3 +aseptic ,eI'septIk OA% 3 +asexual ,eI'sekSU@l OA% 4 +asexuality eI,sekSU'&lItI L@% 6 +ash &S M7% 1 +ash-bin '&S-bIn K6% 2 +ash-bins '&S-bInz Kj% 2 +ash-can '&S-k&n K6% 2 +ash-cans '&S-k&nz Kj% 2 +ash-key '&S-ki K6$ 2 +ash-keys '&S-kiz Kj$ 2 +ash-pan '&S-p&n K6% 2 +ash-pans '&S-p&nz Kj% 2 +ashamed @'SeImd Op% 2 +ashamedly @'SeImIdlI Pu% 4 +ashen '&Sn OA% 2 +ashes '&SIz Mj% 2 +ashore @'SOR Pu% 2 +ashtray '&StreI K6% 2 +ashtrays '&StreIz Kj% 2 +ashy '&SI OA% 2 +aside @'saId K6%,Pu% 2 +asides @'saIdz Kj% 2 +asinine '&sInaIn OA% 3 +ask Ask J0% 13A,6A,7A,8,9,10,12C,14,15B,17,20,21 +askance @'sk&ns Pu% 2 +asked Askt Jc*,Jd* 13A,6A,7A,8,9,10,12C,14,15B,17,20,21 +askew @'skju Op%,Pu% 2 +asking 'AskIN Jb%,Ki% 23A,6A,7A,8,9,10,12C,14,15B,17,20,21 +asks Asks Ja% 13A,6A,7A,8,9,10,12C,14,15B,17,20,21 +aslant @'slAnt Pu%,T-% 2 +asleep @'slip Op%,Pu% 2 +asp &sp K6% 1 +asparagus @'sp&r@g@s L@% 4 +aspect '&spekt K6% 2 +aspects '&spekts Kj% 2 +aspectual &'spektSU@l OA$ 4 +aspen '&sp@n K6$ 2 +aspens '&sp@nz Kj$ 2 +asperities &'sperItIz Mj$ 4 +asperity &'sperItI M8% 4 +asperse @'sp3s H2$ 26A +aspersed @'sp3st Hc$,Hd$ 26A +asperses @'sp3sIz Ha$ 36A +aspersing @'sp3sIN Hb$ 36A +aspersion @'sp3Sn K6% 3 +aspersions @'sp3Snz Kj% 3 +asphalt '&sf< H0%,L@% 26A +asphalted '&sf<Id Hc%,Hd% 36A +asphalting '&sf<IN Hb% 36A +asphalts '&sf<s Ha% 26A +asphodel '&sf@del K6$ 3 +asphodels '&sf@delz Kj$ 3 +asphyxia &s'fIksI@ L@% 4 +asphyxiate @s'fIksIeIt H2% 46A +asphyxiated @s'fIksIeItId Hc%,Hd% 56A +asphyxiates @s'fIksIeIts Ha% 46A +asphyxiating @s'fIksIeItIN Hb% 56A +asphyxiation @s,fIksI'eISn L@% 5 +aspic '&spIk L@% 2 +aspidistra ,&spI'dIstr@ K6% 4 +aspidistras ,&spI'dIstr@z Kj% 4 +aspirant '&spIr@nt K6% 3 +aspirants '&spIr@nts Kj% 3 +aspirate '&spIr@t K6% 3 +aspirate '&spIreIt H2% 3 +aspirated '&spIreItId Hc%,Hd% 4 +aspirates '&spIr@ts Kj% 3 +aspirates '&spIreIts Ha% 3 +aspirating '&spIreItIN Hb% 4 +aspiration ,&spI'reISn M6% 4 +aspirations ,&spI'reISnz Mj% 4 +aspire @'spaI@R I2% 23A,4A +aspired @'spaI@d Ic%,Id% 23A,4A +aspires @'spaI@z Ia% 23A,4A +aspirin '&sprIn M6% 3 +aspiring @'spaI@rIN Ib% 33A,4A +aspirins '&sprInz Mj% 3 +asps &sps Kj% 1 +ass &s K7% 1 +assagai '&s@gaI K6$ 3 +assagais '&s@gaIz Kj$ 3 +assail @'seIl H0% 26A,14 +assailable @'seIl@bl OA$ 4 +assailant @'seIl@nt K6% 3 +assailants @'seIl@nts Kj% 3 +assailed @'seIld Hc%,Hd% 26A,14 +assailing @'seIlIN Hb% 36A,14 +assails @'seIlz Ha% 26A,14 +assassin @'s&sIn K6% 3 +assassinate @'s&sIneIt H2% 46A +assassinated @'s&sIneItId Hc%,Hd% 56A +assassinates @'s&sIneIts Ha% 46A +assassinating @'s&sIneItIN Hb% 56A +assassination @,s&sI'neISn M6% 5 +assassinations @,s&sI'neISnz Mj% 5 +assassins @'s&sInz Kj% 3 +assault @'sOlt H0%,K6% 26A +assaulted @'sOltId Hc%,Hd% 36A +assaulting @'sOltIN Hb% 36A +assaults @'sOlts Ha%,Kj% 26A +assay @'seI H0$,K6$ 26A,7A +assayed @'seId Hc$,Hd$ 26A,7A +assaying @'seIIN Hb$ 36A,7A +assays @'seIz Ha$,Kj$ 26A,7A +assegai '&s@gaI K6% 3 +assegais '&s@gaIz Kj% 3 +assemblage @'semblIdZ M6% 3 +assemblages @'semblIdZIz Mj$ 4 +assemble @'sembl J2% 32A,6A +assembled @'sembld Jc%,Jd% 32A,6A +assembles @'semblz Ja% 32A,6A +assemblies @'semblIz Kj% 3 +assembling @'semblIN Jb% 32A,6A +assembly @'semblI K8% 3 +assent @'sent I0%,K6% 22A,3A +assented @'sentId Ic%,Id% 32A,3A +assenting @'sentIN Ib% 32A,3A +assents @'sents Ia%,Kj% 22A,3A +assert @'s3t H0% 26A,9,25 +asserted @'s3tId Hc%,Hd% 36A,9,25 +asserting @'s3tIN Hb% 36A,9,25 +assertion @'s3Sn M6% 3 +assertions @'s3Snz Mj% 3 +assertive @'s3tIv OA% 3 +assertively @'s3tIvlI Pu% 4 +asserts @'s3ts Ha% 26A,9,25 +asses '&sIz Kj% 2 +assess @'ses H1% 26A,14 +assessed @'sest Hc%,Hd% 26A,14 +assesses @'sesIz Ha% 36A,14 +assessing @'sesIN Hb% 36A,14 +assessment @'sesm@nt M6% 3 +assessments @'sesm@nts Mj% 3 +assessor @'ses@R K6% 3 +assessors @'ses@z Kj% 3 +asset '&set K6% 2 +assets '&sets Kj% 2 +asseverate @'sev@reIt H2$ 46A,9 +asseverated @'sev@reItId Hc$,Hd$ 56A,9 +asseverates @'sev@reIts Ha$ 46A,9 +asseverating @'sev@reItIN Hb$ 56A,9 +asseveration @,sev@'reISn K6$ 5 +asseverations @,sev@'reISnz Kj$ 5 +asshole '&sh@Ul K6% 2 +assholes '&sh@Ulz Kj% 2 +assiduities ,&sI'djuItIz Mj$ 5 +assiduity ,&sI'djuItI M8% 5 +assiduous @'sIdjU@s OA% 4 +assiduously @'sIdjU@slI Pu% 5 +assign @'saIn H0% 212A,13A,13B,14,17 +assignable @'saIn@bl OA% 4 +assignation ,&sIg'neISn K6% 4 +assignations ,&sIg'neISnz Kj% 4 +assigned @'saInd Hc%,Hd% 212A,13A,13B,14,17 +assigning @'saInIN Hb% 312A,13A,13B,14,17 +assignment @'saInm@nt M6% 3 +assignments @'saInm@nts Mj% 3 +assigns @'saInz Ha% 212A,13A,13B,14,17 +assimilate @'sIm@leIt J2% 42A,3A,6A +assimilated @'sIm@leItId Jc%,Jd% 52A,3A,6A +assimilates @'sIm@leIts Ja% 42A,3A,6A +assimilating @'sIm@leItIN Jb% 52A,3A,6A +assimilation @,sIm@'leISn L@% 5 +assist @'sIst J0% 22A,3A,6A,14,17 +assistance @'sIst@ns L@% 3 +assistant @'sIst@nt K6% 3 +assistants @'sIst@nts Kj% 3 +assisted @'sIstId Jc%,Jd% 32A,3A,6A,14,17 +assisting @'sIstIN Jb% 32A,3A,6A,14,17 +assists @'sIsts Ja% 22A,3A,6A,14,17 +assize @'saIz L@$ 2 +assizes @'saIzIz Kj% 3 +assoc @'s0k Y>% 2 +associate @'s@USI@t K6%,OA% 4 +associate @'s@USIeIt J2% 43A,14 +associated @'s@USIeItId Jc%,Jd% 53A,14 +associates @'s@USI@ts Kj% 4 +associates @'s@USIeIts Ja% 43A,14 +associating @'s@USIeItIN Jb% 53A,14 +association @,s@UsI'eISn M6% 5 +associations @,s@UsI'eISnz Mj% 5 +assonance '&s@n@ns K6% 3 +assonances '&s@n@nsIz Kj$ 4 +assorted @'sOtId OA% 3 +assortment @'sOtm@nt K6% 3 +assortments @'sOtm@nts Kj% 3 +asst @'sIst@nt Y>% 3 +assuage @'sweIdZ H2% 26A +assuaged @'sweIdZd Hc%,Hd% 26A +assuages @'sweIdZIz Ha% 36A +assuaging @'sweIdZIN Hb% 36A +assume @'sjum H2% 26A,9,25 +assumed @'sjumd Hc%,Hd% 26A,9,25 +assumes @'sjumz Ha% 26A,9,25 +assuming @'sjumIN Hb% 36A,9,25 +assumption @'sVmpSn K6% 3 +assumptions @'sVmpSnz Kj% 3 +assurance @'SU@r@ns M6% 3 +assurances @'SU@r@nsIz Mj% 4 +assure @'SU@R H2% 26A,11,14 +assured @'SU@d Hc%,Hd%,OA% 26A,11,14 +assuredly @'SU@rIdlI Pu% 4 +assuredness @'SU@rIdnIs L@% 4 +assures @'SU@z Ha% 26A,11,14 +assuring @'SU@rIN Hb% 36A,11,14 +aster '&st@R K6% 2 +asterisk '&st@rIsk K6% 3 +asterisks '&st@rIsks Kj% 3 +astern @'st3n Pu% 2 +asteroid '&st@roId K6% 3 +asteroids '&st@roIdz Kj% 3 +asters '&st@z Kj% 2 +asthma '&sm@ L@% 2 +asthmatic &s'm&tIk OA% 3 +astigmatic ,&stIg'm&tIk OA% 4 +astigmatism @'stIgm@tIz@m L@% 5 +astir @'st3R Op$,Pu$ 2 +astonish @'st0nIS H1% 36A +astonished @'st0nISt Hc%,Hd% 36A +astonishes @'st0nISIz Ha% 46A +astonishing @'st0nISIN Hb%,OA% 46A +astonishingly @'st0nISINlI Pu% 5 +astonishment @'st0nISm@nt L@% 4 +astound @'staUnd H0% 26A +astounded @'staUndId Hc%,Hd% 36A +astounding @'staUndIN Hb% 36A +astounds @'staUndz Ha% 26A +astrakhan ,&str@'k&n L@% 3 +astral '&str@l OA% 2 +astray @'streI Op%,Pu% 2 +astride @'straId Op%,Pu%,T-% 2 +astringency @'strIndZ@nsI L@% 4 +astringent @'strIndZ@nt K6%,OA% 3 +astringents @'strIndZ@nts Kj% 3 +astrodome '&str@d@Um K6$ 3 +astrodomes '&str@d@Umz Kj$ 3 +astrolabe '&str@leIb K6$ 3 +astrolabes '&str@leIbz Kj$ 3 +astrologer @s'tr0l@dZ@R K6% 4 +astrologers @s'tr0l@dZ@z Kj% 4 +astrological ,&str@'l0dZIkl OA% 5 +astrology @'str0l@dZI L@% 4 +astronaut '&str@nOt K6% 3 +astronautics ,&str@'nOtIks Lk$ 4 +astronauts '&str@nOts Kj% 3 +astronomer @'str0n@m@R K6% 4 +astronomers @'str0n@m@z Kj% 4 +astronomical ,&str@'n0mIkl OA% 5 +astronomically ,&str@'n0mIklI Pu% 5 +astronomy @'str0n@mI L@% 4 +astrophysics ,&str@U'fIzIks Lk% 4 +astute @'stjut OA% 2 +astutely @'stjutlI Pu% 3 +astuteness @'stjutn@s L@% 3 +asunder @'sVnd@R Pu% 3 +asylum @'saIl@m M6% 3 +asylums @'saIl@mz Mj% 3 +asymmetric ,eIsI'metrIk OA% 4 +asymmetrical ,eIsI'metrIkl OA% 5 +asymmetrically ,eIsI'metrIklI Pu% 5 +asymmetry eI'sImItrI L@% 4 +asymptote '&sImt@Ut K6% 3 +asymptotes '&sImt@Uts Kj$ 3 +asymptotic ,&sIm't0tIk OA% 4 +asymptotically ,&sIm't0tIklI Pu% 5 +at &t T-* 1 +at-home @t-'h@Um K6% 2 +at-homes @t-'h@Umz Kj% 2 +atabrine '&t@brin L@$ 3 +atavism '&t@vIz@m K6% 4 +atavisms '&t@vIz@mz Kj$ 4 +atavistic ,&t@'vIstIk OA% 4 +ate et Jc% 12A,2C,3A,4A,6A,15B +atelier &'telIeI K6$ 4 +ateliers &'telIeIz Kj$ 4 +atheism 'eITIIz@m L@% 4 +atheist 'eITIIst K6% 3 +atheistic ,eITI'IstIk OA% 4 +atheists 'eITIIsts Kj% 3 +athirst @'T3st Op$ 2 +athlete '&Tlit K6% 2 +athletes '&Tlits Kj% 2 +athletic &T'letIk OA% 3 +athletics &T'letIks Lk% 3 +athwart @'TwOt Pu%,T-% 2 +atishoo @'tISu W-% 3 +atlas '&tl@s K7% 2 +atlases '&tl@sIz Kj% 3 +atmosphere '&tm@sfI@R M6% 3 +atmospheres '&tm@sfI@z Mj% 3 +atmospheric ,&tm@s'ferIk OA% 4 +atmospherics ,&tm@s'ferIks Lk% 4 +atoll '&t0l K6$ 2 +atolls '&t0lz Kj$ 2 +atom '&t@m K6% 2 +atomic @'t0mIk OA% 3 +atomize '&t@maIz H2% 3 +atomized '&t@maIzd Hc%,Hd% 3 +atomizer '&t@maIz@R K6% 4 +atomizers '&t@maIz@z Kj% 4 +atomizes '&t@maIzIz Ha% 4 +atomizing '&t@maIzIN Hb% 4 +atoms '&t@mz Kj% 2 +atonal eI't@Unl OA% 3 +atonality ,eIt@U'n&lItI L@$ 5 +atone @'t@Un I2% 22A,3A +atoned @'t@Und Ic%,Id% 22A,3A +atonement @'t@Unm@nt L@% 3 +atones @'t@Unz Ia% 22A,3A +atoning @'t@UnIN Ib% 32A,3A +atop @'t0p Pu% 2 +atrabilious ,&tr@'bIlI@s OA$ 5 +atrocious @'tr@US@s OA% 3 +atrociously @'tr@US@slI Pu% 4 +atrocities @'tr0sItIz Mj% 4 +atrocity @'tr0sItI M8% 4 +atrophied '&tr@fId Jc%,Jd% 32A,2B,6A +atrophies '&tr@fIz Ja% 32A,2B,6A +atrophy '&tr@fI J3%,L@% 32A,2B,6A +atrophying '&tr@fIIN Jb% 42A,2B,6A +attaboy ,&t@'boI W-% 3 +attach @'t&tS J1% 23A,6A,14 +attach_e @'t&SeI K6% 3 +attach_es @'t&SeIz Kj% 3 +attached @'t&tSt Jc%,Jd% 23A,6A,14 +attaches @'t&tSIz Ja% 33A,6A,14 +attaching @'t&tSIN Jb% 33A,6A,14 +attachment @'t&tSm@nt M6% 3 +attachments @'t&tSm@nts Mj% 3 +attack @'t&k H0%,M6% 26A +attacked @'t&kt Hc%,Hd% 26A +attacker @'t&k@R K6% 3 +attackers @'t&k@z Kj% 3 +attacking @'t&kIN Hb% 36A +attacks @'t&ks Ha%,Mj% 26A +attain @'teIn J0% 23A,6A +attainable @'taIn@bl OA% 4 +attainder @'teInd@R K6$ 3 +attainders @'teInd@z Kj$ 3 +attained @'teInd Jc%,Jd% 23A,6A +attaining @'teInIN Jb% 33A,6A +attainment @'teInm@nt M6% 3 +attainments @'teInm@nts Mj% 3 +attains @'teInz Ja% 23A,6A +attar '&t@R L@$ 2 +attempt @'tempt H0%,K6% 26A,7A +attempted @'temptId Hc%,Hd% 36A,7A +attempting @'temptIN Hb% 36A,7A +attempts @'tempts Ha%,Kj% 26A,7A +attend @'tend J0% 22A,3A,6A +attendance @'tend@ns M6% 3 +attendances @'tend@nsIz Mj% 4 +attendant @'tend@nt K6%,OA% 3 +attendants @'tend@nts Kj% 3 +attended @'tendId Jc%,Jd% 32A,3A,6A +attending @'tendIN Jb% 32A,3A,6A +attends @'tendz Ja% 22A,3A,6A +attention @'tenSn M6% 3 +attentions @'tenSnz Mj% 3 +attentive @'tentIv OA% 3 +attentively @'tentIvlI Pu% 4 +attentiveness @'tentIvnIs L@% 4 +attenuate @'tenjUeIt H2$ 46A +attenuated @'tenjUeItId Hc$,Hd% 56A +attenuates @'tenjUeIts Ha$ 46A +attenuating @'tenjUeItIN Hb$ 56A +attenuation @,tenjU'eISn L@% 5 +attest @'test J0% 22A,3A,6A +attested @'testId Jc%,Jd% 32A,3A,6A +attesting @'testIN Jb% 32A,3A,6A +attests @'tests Ja% 22A,3A,6A +attic '&tIk K6% 2 +attics '&tIks Kj% 2 +attire @'taI@R H2%,L@% 26A +attired @'taI@d Hc%,Hd% 26A +attires @'taI@z Ha% 26A +attiring @'taI@rIN Hb% 36A +attitude '&tItjud K6% 3 +attitudes '&tItjudz Kj% 3 +attitudinize ,&tI'tjudInaIz I2$ 52A +attitudinized ,&tI'tjudInaIzd Ic$,Id$ 52A +attitudinizes ,&tI'tjudInaIzIz Ia$ 62A +attitudinizing ,&tI'tjudInaIzIN Ib$ 62A +attorney @'t3nI K6% 3 +attorneys @'t3nIz Kj% 3 +attract @'tr&kt H0% 26A +attracted @'tr&ktId Hc%,Hd% 36A +attracting @'tr&ktIN Hb% 36A +attraction @'tr&kSn M6% 3 +attractions @'tr&kSnz Mj% 3 +attractive @'tr&ktIv OA% 3 +attractively @'tr&ktIvlI Pu% 4 +attracts @'tr&kts Ha% 26A +attributable @'trIbjUt@bl OA% 5 +attribute '&trIbjut K6% 3 +attribute @'trIbjut H2% 314 +attributed @'trIbjutId Hc%,Hd% 414 +attributes '&trIbjuts Kj% 3 +attributes @'trIbjuts Ha% 314 +attributing @'trIbjutIN Hb% 414 +attribution ,&trI'bjuSn M6% 4 +attributions ,&trI'bjuSnz Mj$ 4 +attributive @'trIbjUtIv OA% 4 +attributively @'trIbjUtIvlI Pu% 5 +attrition @'trISn L@% 3 +attune @'tjun H2% 214 +attuned @'tjund Hc%,Hd% 214 +attunes @'tjunz Ha% 214 +attuning @'tjunIN Hb% 314 +atypical eI'tIpIkl OA% 4 +atypically eI'tIpIklI Pu% 4 +au fait ,@U 'feI Op% 2 +au fond ,@U 'f0n Pu$ 2 +au pair ,@U 'pe@R K6% 2 +au pairs ,@U 'pe@z Kj% 2 +au revoir ,@U r@'vwAR W-% 3 +aubergine '@Ub@Zin K6% 3 +aubergines '@Ub@Zinz Kj% 3 +aubrietia O'briS@ K6$ 3 +aubrietias O'briS@z Kj$ 3 +auburn 'Ob@n OA% 2 +auction 'OkSn H0%,M6% 26A,15B +auctioned 'OkSnd Hc%,Hd% 26A,15B +auctioneer ,OkS@'nI@R K6% 4 +auctioneers ,OkS@'nI@z Kj% 4 +auctioning 'OkSnIN Hb% 36A,15B +auctions 'OkSnz Ha%,Mj% 26A,15B +audacious O'deIS@s OA% 3 +audaciously O'deIS@slI Pu% 4 +audacity O'd&sItI L@% 4 +audibility ,OdI'bIlItI L@% 5 +audible 'Od@bl OA% 3 +audibly 'Od@blI Pu% 3 +audience 'OdI@ns K6% 3 +audiences 'OdI@nsIz Kj% 4 +audio- ,OdI@U- U-% 3 +audio-lingual ,OdI@U-'lINgw@l OA$ 5 +audit 'OdIt H0%,K6% 26A +audited 'OdItId Hc%,Hd% 36A +auditing 'OdItIN Hb% 36A +audition O'dISn H0%,M6% 36A +auditioned O'dISnd Hc%,Hd% 36A +auditioning O'dISnIN Hb% 46A +auditions O'dISnz Ha%,Mj% 36A +auditor 'OdIt@R K6% 3 +auditorium ,OdI'tOrI@m K6% 5 +auditoriums ,OdI'tOrI@mz Kj% 5 +auditors 'OdIt@z Kj% 3 +auditory 'OdItrI OA% 3 +audits 'OdIts Ha%,Kj% 26A +auger 'Og@R K6$ 2 +augers 'Og@z Kj$ 2 +aught Ot L@$ 1 +augment Og'ment J0% 22A,6A +augmentation ,Ogmen'teISn M6% 4 +augmentations ,Ogmen'teISnz Mj% 4 +augmented Og'mentId Jc%,Jd% 32A,6A +augmenting Og'mentIN Jb% 32A,6A +augments Og'ments Ja% 22A,6A +augur 'Og@R J0%,K6$ 22A,6A +augured 'Og@d Jc%,Jd% 22A,6A +auguries 'OgjUrIz Kj$ 3 +auguring 'Og@rIN Jb$ 32A,6A +augurs 'Og@z Ja%,Kj$ 22A,6A +augury 'OgjUrI K8$ 3 +august O'gVst OA% 2 +auk Ok K6% 1 +auks Oks Kj% 1 +auld lang syne ,Old l&N 'zaIn Ki% 3 +aunt Ant K6% 1 +auntie 'AntI K6% 2 +aunties 'AntIz Kj% 2 +aunts Ants Kj% 1 +aunty 'AntI K8% 2 +aura 'Or@ K6% 2 +aural 'Or@l OA% 2 +auras 'Or@z Kj% 2 +aureole 'OrI@Ul K6$ 3 +aureoles 'OrI@Ulz Kj$ 3 +auricle 'OrIkl K6$ 3 +auricles 'OrIklz Kj$ 3 +auricular O'rIkjUl@R OA$ 4 +auriferous O'rIf@r@s OA$ 4 +aurora O'rOr@ K6% 3 +auroras O'rOr@z Kj% 3 +auspices 'OspIsIz Kj% 3 +auspicious O'spIS@s OA% 3 +auspiciously O'spIS@slI Pu% 4 +austere O'stI@R OA% 2 +austerely O'stI@lI Pu% 3 +austerities O'sterItIz Mj% 4 +austerity O'sterItI M8% 4 +autarchies 'OtAkIz Mj$ 3 +autarchy 'OtAkI M8$ 3 +autarky 'OtAkI L@$ 3 +authentic O'TentIk OA% 3 +authentically O'TentIklI Pu% 4 +authenticate O'TentIkeIt H2% 46A +authenticated O'TentIkeItId Hc%,Hd% 56A +authenticates O'TentIkeIts Ha% 46A +authenticating O'TentIkeItIN Hb% 56A +authentication O,TentI'keISn L@% 5 +authenticity ,OT@n'tIsItI L@% 5 +author 'OT@R K6% 2 +authoress 'OT@rIs K7$ 3 +authoresses 'OT@rIsIz Kj$ 4 +authoritarian O,T0rI'te@rI@n K6%,OA% 6 +authoritarianism OT,0rI'te@rI@nIz@m L@% 8 +authoritarians O,T0rI'te@rI@nz Kj% 6 +authoritative O'T0rIt@tIv OA% 5 +authoritatively O'T0rIt@tIvlI Pu% 6 +authorities O'T0rItIz Mj% 4 +authority O'T0rItI M8% 4 +authorization ,OT@raI'zeISn L@% 5 +authorize 'OT@raIz H2% 36A,17 +authorized 'OT@raIzd Hc%,Hd% 36A,17 +authorizes 'OT@raIzIz Ha% 46A,17 +authorizing 'OT@raIzIN Hb% 46A,17 +authors 'OT@z Kj% 2 +authorship 'OT@SIp L@% 3 +autism 'OtIz@m L@% 3 +autistic O'tIstIk OA% 3 +auto 'Ot@U K6% 2 +auto- ,Ot@U- U-% 2 +auto-changer 'Ot@U-tSeIndZ@R K6$ 4 +auto-changers 'Ot@U-tSeIndZ@z Kj$ 4 +auto-da-f_e ,Ot@U-dA-'feI Ki$ 4 +autobahn 'Ot@bAn K6$ 3 +autobahnen 'Ot@bAn@n Kj$ 4 +autobahns 'Ot@bAnz Kj$ 3 +autobiographic ,Ot@baI@'gr&fIk OA$ 6 +autobiographical ,Ot@,baI@'gr&fIkl OA% 7 +autobiographies ,Ot@baI'0gr@fIz Mj% 6 +autobiography ,Ot@baI'0gr@fI M8% 6 +autocracies O't0kr@sIz Mj% 4 +autocracy O't0kr@sI M8% 4 +autocrat 'Ot@kr&t K6% 3 +autocratic ,Ot@'kr&tIk OA% 4 +autocratically ,Ot@'kr&tIklI Pu% 5 +autocrats 'Ot@kr&ts Kj% 3 +autogiro ,Ot@U'dZaI@r@U K6$ 4 +autogiros ,Ot@U'dZaI@r@Uz Kj$ 4 +autograph 'Ot@grAf H0%,K6% 36A +autographed 'Ot@grAft Hc%,Hd% 36A +autographing 'Ot@grAfIN Hb% 46A +autographs 'Ot@grAfs Ha%,Kj% 36A +autogyro ,Ot@U'dZaI@r@U K6$ 4 +autogyros ,Ot@U'dZaI@r@Uz Kj$ 4 +automat 'Ot@m&t K6$ 3 +automata O't0m@t@ Kj% 4 +automate 'Ot@meIt H2% 3 +automated 'Ot@meItId Hc%,Hd% 4 +automates 'Ot@meIts Ha% 3 +automatic ,Ot@'m&tIk K6%,OA% 4 +automatically ,Ot@'m&tIklI Pu% 5 +automatics ,Ot@'m&tIks Kj% 4 +automating 'Ot@meItIN Hb% 4 +automation ,Ot@'meISn L@% 4 +automaton O't0m@t@n K6% 4 +automatons O't0m@t@nz Kj% 4 +automats 'Ot@m&ts Kj$ 3 +automobile 'Ot@m@bil K6% 4 +automobiles 'Ot@m@bilz Kj% 4 +autonomies O't0n@mIz Mj$ 4 +autonomous O't0n@m@s OA% 4 +autonomy O't0n@mI M8% 4 +autopsies 'Ot0psIz Kj% 3 +autopsy 'Ot0psI K8% 3 +autos 'Ot@Uz Kj% 2 +autos-da-f_e ,Ot@Uz-dA-'feI Kj$ 4 +autostrada ,Ot@U'strAd@ K6$ 4 +autostradas ,Ot@U'strAd@z Kj% 4 +autostrade ,aUt@U'strAdeI Kj$ 4 +autumn 'Ot@m M6% 2 +autumnal O'tVmn@l OA% 3 +autumns 'Ot@mz Mj% 2 +auxiliaries Og'zIlI@rIz Kj% 5 +auxiliary Og'zIlI@rI K8%,OA% 5 +avail @'veIl J0%,L@% 22A,3A,14 +availability @,veIl@'bIlItI L@% 6 +available @'veIl@bl OA% 4 +availed @'veIld Jc%,Jd% 22A,3A,14 +availing @'veIlIN Jb% 32A,3A,14 +avails @'veIlz Ja% 22A,3A,14 +avalanche '&v@lAnS K6% 3 +avalanches '&v@lAnSIz Kj% 4 +avant-garde ,&v0n-'gAd Ki% 3 +avarice '&v@rIs L@% 3 +avaricious ,&v@'rIS@s OA% 4 +avariciously ,&v@'rIS@slI Pu% 5 +avast @'vAst W-% 2 +avatar ,&v@'tAR K6$ 3 +avatars ,&v@'tAz Kj$ 3 +avaunt @'vOnt W-$ 2 +avenge @'vendZ H2% 26A,14 +avenged @'vendZd Hc%,Hd% 26A,14 +avenger @'vendZ@R K6% 3 +avengers @'vendZ@z Kj% 3 +avenges @'vendZIz Ha% 36A,14 +avenging @'vendZIN Hb% 36A,14 +avenue '&v@nju K6% 3 +avenues '&v@njuz Kj% 3 +aver @'v3R H4% 26A,9 +average '&v@rIdZ J2%,M6%,OA% 32B,6A +averaged '&v@rIdZd Jc%,Jd% 32B,6A +averages '&v@rIdZIz Ja%,Mj% 42B,6A +averaging '&v@rIdZIN Jb% 42B,6A +averred @'v3d Hc%,Hd% 26A,9 +averring @'v3rIN Hb% 36A,9 +avers @'v3z Ha% 26A,9 +averse @'v3s OA% 2 +aversion @'v3Sn M6% 3 +aversions @'v3Snz Mj% 3 +avert @'v3t H0% 26A,14 +averted @'v3tId Hc%,Hd% 36A,14 +averting @'v3tIN Hb% 36A,14 +averts @'v3ts Ha% 26A,14 +aviaries 'eIvI@rIz Kj% 4 +aviary 'eIvI@rI K8% 4 +aviation ,eIvI'eISn L@% 4 +aviator 'eIvIeIt@R K6% 4 +aviators 'eIvIeIt@z Kj% 4 +avid '&vId OA% 2 +avidity @'vIdItI L@% 4 +avidly '&vIdlI Pu% 3 +avocado ,&v@'kAd@U K6% 4 +avocados ,&v@'kAd@Uz Kj% 4 +avocation ,&v@'keISn K6$ 4 +avocations ,&v@'keISnz Kj$ 4 +avoid @'voId H0% 26A,6C +avoidable @'voId@bl OA% 4 +avoidance @'voId@ns L@% 3 +avoided @'voIdId Hc%,Hd% 36A,6C +avoiding @'voIdIN Hb% 36A,6C +avoids @'voIdz Ha% 26A,6C +avoirdupois ,&v@d@'poIz L@$ 4 +avouch @'vaUtS J1$ 23A,6A,9 +avouched @'vaUtSt Jc$,Jd$ 23A,6A,9 +avouches @'vaUtSIz Ja$ 33A,6A,9 +avouching @'vaUtSIN Jb$ 33A,6A,9 +avow @'vaU H0$ 26A,25 +avowal @'v@U@l M6$ 3 +avowals @'v@U@lz Mj$ 3 +avowed @'vaUd Hc$,Hd% 26A,25 +avowedly @'vaUIdlI Pu% 4 +avowing @'vaUIN Hb% 36A,25 +avows @'vaUz Ha% 26A,25 +avuncular @'vVNkjUl@R OA% 4 +await @'weIt H0% 26A +awaited @'weItId Hc%,Hd% 36A +awaiting @'weItIN Hb% 36A +awaits @'weIts Ha% 26A +awake @'weIk I5%,Op% 22A,3A,4B +awaken @'weIk@n H0% 36A,14 +awakened @'weIk@nd Hc%,Hd% 36A,14 +awakening @'weIk@nIN Hb% 46A,14 +awakening @'weIknIN K6% 3 +awakenings @'weIknINz Kj% 3 +awakens @'weIk@nz Ha% 36A,14 +awakes @'weIks Ia% 22A,3A,4B +awaking @'weIkIN Ib% 32A,3A,4B +award @'wOd H0%,K6% 26A,12A,13A +awarded @'wOdId Hc%,Hd% 36A,12A,13A +awarding @'wOdIN Hb% 36A,12A,13A +awards @'wOdz Ha%,Kj% 26A,12A,13A +aware @'we@R Op% 2 +awareness @'we@n@s L@% 3 +awash @'w0S Op% 2 +away @'weI OA*,P+* 2 +awe O H2%,L@% 16A,14 +awe-inspiring 'O-InspaIrIN OA% 4 +awe-stricken 'O-strIk@n OA% 3 +awe-struck 'O-strVk OA% 2 +awed Od Hc%,Hd% 16A,14 +aweigh @'weI Pu$ 2 +awes Oz Ha% 16A,14 +awesome 'Os@m OA% 2 +awful 'Of@l OA% 2 +awfully 'OflI Pu% 2 +awhile @'waIl Pu% 2 +awing 'OIN Hb$ 26A,14 +awkward 'Okw@d OA% 2 +awkwardly 'Okw@dlI Pu% 3 +awkwardness 'Okw@dn@s L@% 3 +awl Ol K6$ 1 +awls Olz Kj$ 1 +awning 'OnIN K6% 2 +awnings 'OnINz Kj% 2 +awoke @'w@Uk Ic%,Id% 22A,3A,4B +awoken @'w@Uk@n Id% 32A,3A,4B +awry @'raI Op%,Pu% 2 +ax &ks H1$,K7$ 16A +axe &ks H2%,K6% 16A +axed &kst Hc%,Hd% 16A +axes '&ksIz Ha%,Kj% 26A +axes '&ksiz Kj% 2 +axing '&ksIN Hb% 26A +axiom '&ksI@m K6% 3 +axiomatic ,&ksI@'m&tIk OA% 5 +axiomatically ,&ksI@'m&tIklI Pu% 5 +axioms '&ksI@mz Kj% 3 +axis '&ksIs Ki% 2 +axle '&ksl K6% 2 +axles '&kslz Kj% 2 +ay aI Pu$,W-% 1 +ayah 'aI@ K6$ 2 +ayahs 'aI@z Kj$ 2 +aye aI Pu$,W-% 1 +aye eI Pu$ 1 +ayes aIz Kj$ 1 +ays aIz Kj$ 1 +azalea @'zeIlI@ K6$ 4 +azaleas @'zeIlI@z Kj$ 4 +azimuth '&zIm@T K6$ 3 +azimuths '&zIm@Ts Kj$ 3 +azure '&Z@R K6%,OA% 2 +azures '&Z@z Kj$ 2 +b bi Ki$ 1 +b's biz Kj$ 1 +b^ete noire ,bet 'nwAR Ki% 2 +b^etes noires ,bet 'nwA Kj% 2 +baa bA I0%,K6% 1 +baa'd bAd Ic$ 1 +baa-lamb 'bA-l&m K6% 2 +baa-lambs 'bA-l&mz Kj% 2 +baaed bAd Ic$,Id$ 1 +baaing 'bAIN Ib% 2 +baas bAs Ki$ 1 +baas bAz Ia$,Kj$ 1 +babble 'b&bl J2%,L@% 22A,2B,2C,6A,15B +babbled 'b&bld Jc%,Jd% 22A,2B,2C,6A,15B +babbler 'b&bl@R K6% 2 +babblers 'b&bl@z Kj% 2 +babbles 'b&blz Ja% 22A,2B,2C,6A,15B +babbling 'b&blIN Jb% 22A,2B,2C,6A,15B +babe beIb K6% 1 +babel 'beIbl K6% 2 +babels 'beIblz Kj$ 2 +babes beIbz Kj% 1 +babied 'beIbId Hc%,Hd% 26A +babies 'beIbIz Ha%,Kj% 26A +baboo 'bAbu K6$ 2 +baboon b@'bun K6% 2 +baboons b@'bunz Kj% 2 +baboos 'bAbuz Kj$ 2 +babu 'bAbu K6$ 2 +babus 'bAbuz Kj$ 2 +baby 'beIbI H3%,K8% 26A +baby-faced 'beIbI-feIst OA% 3 +baby-farmer 'beIbI-fAm@R K6$ 4 +baby-farmers 'beIbI-fAm@z Kj$ 4 +baby-minder 'beIbI-maInd@R K6% 4 +baby-minders 'beIbI-maInd@z Kj% 4 +baby-talk 'beIbI-tOk L@% 3 +babyhood 'beIbIhUd Ki% 3 +babying 'beIbIIN Hb% 36A +babyish 'beIbIIS OA% 3 +babysat 'beIbIs&t Ic%,Id% 3 +babysit 'beIbIsIt I5% 3 +babysits 'beIbIsIts Ia% 3 +babysitter 'beIbIsIt@R K6% 4 +babysitters 'beIbIsIt@z Kj% 4 +babysitting 'beIbIsItIN Ib%,L@% 4 +baccalaureate ,b&k@'lOrI@t K6% 5 +baccalaureates ,b&k@'lOrI@ts Kj% 5 +baccarat 'b&k@rA L@$ 3 +bacchanal 'b&k@n@l K6%,OA$ 3 +bacchanalian ,b&k@'neIlI@n OA% 5 +bacchanals 'b&k@n@lz Kj% 3 +baccy 'b&kI L@% 2 +bachelor 'b&tS@l@R K6% 3 +bachelors 'b&tS@l@z Kj% 3 +bacilli b@'sIlaI Kj% 3 +bacillus b@'sIl@s Ki% 3 +back b&k J0%,K6%,P+* 12A,2C,3A,6A,15A,15B +back-blocks 'b&k-bl0ks Kj$ 2 +back-breaking 'b&k-breIkIN OA% 3 +back-down 'b&k-daUn K6% 2 +back-downs 'b&k-daUnz Kj$ 2 +back-formation 'b&k-fO,meISn M6$ 4 +back-formations 'b&k-fO,meISnz Mj$ 4 +back-strokes 'b&k-str@Uks Mj% 2 +back-up 'b&k-Vp K6% 2 +back-ups 'b&k-Vps Kj% 2 +backache 'b&keIk M6% 2 +backaches 'b&keIks Mj% 2 +backband 'b&kb&nd K6$ 2 +backbands 'b&kb&ndz Kj$ 2 +backbench 'b&kbentS K7% 2 +backbencher b&k'bentS@R K6% 3 +backbenchers b&k'bentS@z Kj% 3 +backbenches 'b&kbentSIz Kj% 3 +backbit 'b&kbIt Jc$ 2 +backbite 'b&kbaIt J5% 2 +backbiter 'b&kbaIt@R K6% 3 +backbiters 'b&kbaIt@z Kj% 3 +backbites 'b&kbaIts Ja% 2 +backbiting 'b&kbaItIN Jb% 3 +backbitten 'b&kbIt@n Jd$ 3 +backboard 'b&kbOd K6$ 2 +backboards 'b&kbOdz Kj$ 2 +backbone 'b&kb@Un M6% 2 +backbones 'b&kb@Unz Mj% 2 +backchat 'b&ktS&t L@% 2 +backcloth 'b&k+kl0T K6% 2 +backcloths 'b&k+kl0Ts Kj% 2 +backdate b&k'deIt H2% 2 +backdated b&k'deItId Hc%,Hd% 3 +backdates b&k'deIts Ha% 2 +backdating b&k'deItIN Hb% 3 +backdoor b&k'dOR K6% 2 +backdoors b&k'dOz Kj% 2 +backdrop 'b&kdr0p K6% 2 +backdrops 'b&kdr0ps Kj% 2 +backed b&kt Jc%,Jd% 12A,2C,3A,6A,15A,15B +backer 'b&k@R K6% 2 +backers 'b&k@z Kj% 2 +backfire b&k'faI@R I2%,K6% 2 +backfired b&k'faI@d Ic%,Id% 2 +backfires b&k'faI@z Ia%,Kj% 2 +backfiring b&k'faI@rIN Ib% 3 +backgammon b&k'g&m@n L@% 3 +background 'b&kgraUnd K6% 2 +backgrounds 'b&kgraUndz Kj% 2 +backhand 'b&kh&nd OA% 2 +backhanded 'b&kh&ndId OA% 3 +backing 'b&kIN Jb%,M6% 22A,2C,3A,6A,15A,15B +backings 'b&kINz Mj% 2 +backlash 'b&kl&S L@% 2 +backless 'b&kl@s OA% 2 +backlog 'b&kl0g K6% 2 +backlogs 'b&kl0gz Kj$ 2 +backmost 'b&km@Ust OA$ 2 +backpedal b&k'ped@l I4% 3 +backpedalled b&k'ped@ld Ic%,Id% 3 +backpedalling b&k'ped@lIN Ib% 4 +backpedals b&k'ped@lz Ia% 3 +backroom 'b&krum K6% 2 +backrooms 'b&krumz Kj% 2 +backs b&ks Ja%,Kj% 12A,2C,3A,6A,15A,15B +backscratcher 'b&kskr&tS@R K6% 3 +backscratchers 'b&kskr&tS@z Kj% 3 +backseat b&k'sit K6% 2 +backseats b&k'sits Kj% 2 +backsheesh 'b&kSiS M9% 2 +backside 'b&ksaId K6% 2 +backsides 'b&ksaIdz Kj% 2 +backslid b&k'slId Ic$,Id$ 22A +backslide b&k'slaId I5% 22A +backslides b&k'slaIdz Ia% 22A +backsliding b&k'slaIdIN Ib% 32A +backspace 'b&kspeIs I2% 2 +backspaced 'b&kspeIst Ic%,Id% 2 +backspaces 'b&kspeIsIz Ia% 3 +backspacing 'b&kspeIsIN Ib% 3 +backstage 'b&ksteIdZ Pu% 2 +backstair 'b&kste@R OA$ 2 +backstairs 'b&kste@z Kj% 2 +backstays 'b&ksteIz Kj$ 2 +backstroke 'b&kstr@Uk M6% 2 +backsword 'b&ksOd K6$ 2 +backswords 'b&ksOdz Kj$ 2 +backtalk 'b&ktOk L@% 2 +backward 'b&kw@d OA%,Pu% 2 +backwards 'b&kw@dz OA%,Pu% 2 +backwash 'b&kw0S L@% 2 +backwater 'b&kwOt@R K6% 3 +backwaters 'b&kwOt@z Kj% 3 +backwoods 'b&kwUdz Kj% 2 +backwoodsman b&k'wUdzm@n Ki% 3 +backwoodsmen b&k'wUdzm@n Kj% 3 +bacon 'beIk@n L@% 2 +bacteria b&k'tI@rI@ Kj% 4 +bacterial b&k'tI@rI@l OA% 4 +bacteriologist b&k,tI@rI'0l@dZIst K6% 6 +bacteriologists b&k,tI@rI'0l@dZIsts Kj% 6 +bacteriology b&k,tI@rI'0l@dZI L@% 6 +bacterium b&k'tI@rI@m Ki% 4 +bad b&d L@%,OE% 1 +bade b&d Jc% 112A,13A,17,18B +badge b&dZ K6% 1 +badger 'b&dZ@R H0%,K6% 26A,14,16A +badgered 'b&dZ@d Hc%,Hd% 26A,14,16A +badgering 'b&dZ@rIN Hb% 36A,14,16A +badgers 'b&dZ@z Ha%,Kj% 26A,14,16A +badges 'b&dZIz Kj% 2 +badinage 'b&dInAZ L@% 3 +badlands 'b&dl&ndz Kj% 2 +badly 'b&dlI Pu% 2 +badly-behaved ,b&dlI-bI'heIvd OA% 4 +badminton 'b&dmInt@n L@% 3 +badness 'b&dn@s L@% 2 +baffle 'b&fl H2%,K6% 26A +baffled 'b&fld Hc%,Hd% 26A +baffles 'b&flz Ha%,Kj% 26A +baffling 'b&flIN Hb% 26A +bag b&g J4%,K6% 12A,2C,6A,15B +bagatelle ,b&g@'tel M6% 3 +bagatelles ,b&g@'telz Mj% 3 +baggage 'b&gIdZ L@% 2 +bagged b&gd Jc%,Jd% 12A,2C,6A,15B +bagging 'b&gIN Jb% 22A,2C,6A,15B +baggy 'b&gI OA% 2 +bagnio 'bAnI@U K6$ 3 +bagnios 'bAnI@Uz Kj$ 3 +bagpipe 'b&gpaIp K6$ 2 +bagpipes 'b&gpaIps Kj% 2 +bags b&gz Ja%,Kj% 12A,2C,6A,15B +bah bA W-% 1 +bail beIl J0%,M6% 12A,2C,6A,15B +bailed beIld Jc%,Jd% 12A,2C,6A,15B +bailee ,beI'li K6$ 2 +bailees ,beI'liz Kj$ 2 +bailey 'beIlI K6% 2 +baileys 'beIlIz Kj% 2 +bailiff 'beIlIf K6% 2 +bailiffs 'beIlIfs Kj% 2 +bailing 'beIlIN Jb% 22A,2C,6A,15B +bailment 'beIlm@nt K6$ 2 +bailments 'beIlm@nts Kj$ 2 +bailor 'beIlOR K6$ 2 +bailors 'beIlOz Kj$ 2 +bails beIlz Ja%,Mj% 12A,2C,6A,15B +bairn be@n K6% 1 +bairns be@nz Kj% 1 +bait beIt J0%,K6% 12A,6A +baited 'beItId Jc%,Jd% 22A,6A +baiting 'beItIN Jb% 22A,6A +baits beIts Ja%,Kj% 12A,6A +baize beIz L@% 1 +bake beIk J2% 12A,2C,6A,22 +baked beIkt Jc%,Jd% 12A,2C,6A,22 +bakelite 'beIk@laIt L@% 3 +baker 'beIk@R K6% 2 +bakeries 'beIk@rIz Kj% 3 +bakers 'beIk@z Kj% 2 +bakery 'beIk@rI K8% 3 +bakes beIks Ja% 12A,2C,6A,22 +baking 'beIkIN Jb% 22A,2C,6A,22 +baking-hot ,beIkIN-'h0t OA% 3 +baking-powder 'beIkIN-p@Ud@R K6% 4 +baking-powders 'beIkIN-p@Ud@z Kj% 4 +baksheesh 'b&kSiS M9% 2 +balaclava ,b&l@'klAv@ K6% 4 +balaclavas ,b&l@'klAv@z Kj% 4 +balalaika ,b&l@'laIk@ K6% 4 +balalaikas ,b&l@'laIk@z Kj% 4 +balance 'b&l@ns J2%,M6% 22A,6A,14,15A +balance-sheet 'b&l@ns-Sit K6% 3 +balance-sheets 'b&l@ns-Sits Kj% 3 +balance-wheel 'b&l@ns-wil K6% 3 +balance-wheels 'b&l@ns-wilz Kj% 3 +balanced 'b&l@nst Jc%,Jd% 22A,6A,14,15A +balances 'b&l@nsIz Ja%,Mj% 32A,6A,14,15A +balancing 'b&l@nsIN Jb% 32A,6A,14,15A +balconied 'b&lk@nId OA% 3 +balconies 'b&lk@nIz Kj% 3 +balcony 'b&lk@nI K8% 3 +bald bOld OC% 1 +bald-head 'bOld-hed K6$ 2 +bald-heads 'bOld-hedz Kj$ 2 +bald-pate 'bOld-peIt K6% 2 +bald-pates 'bOld-peIts Kj$ 2 +balder 'bOld@R Or% 2 +balderdash 'bOld@d&S L@% 3 +baldest 'bOldIst Os% 2 +baldly 'bOldlI Pu% 2 +baldness 'bOldn@s L@% 2 +baldric 'bOldrIk K6$ 2 +baldrics 'bOldrIks Kj$ 2 +bale beIl H2%,K6% 16A +baled beIld Hc%,Hd% 16A +baleful 'beIlf@l OA% 2 +balefully 'beIlf@lI Pu% 3 +bales beIlz Ha%,Kj% 16A +baling 'beIlIN Hb% 26A +balk bOk J0%,K6% 12A,3A,6A,14 +balked bOkt Jc%,Jd% 12A,3A,6A,14 +balking 'bOkIN Jb% 22A,3A,6A,14 +balks bOks Ja%,Kj% 12A,3A,6A,14 +ball bOl J0$,K6%,W-$ 1 +ball-cartridge bOl-'kAtrIdZ K6$ 3 +ball-cartridges bOl-'kAtrIdZIz Kj$ 4 +ball-dress 'bOl-dres K7% 2 +ball-dresses 'bOl-dresIz Kj% 3 +ballad 'b&l@d K6% 2 +ballade b&'lAd K6$ 2 +ballades b&'lAdz Kj$ 2 +ballads 'b&l@dz Kj% 2 +ballast 'b&l@st H0%,L@% 26A +ballasted 'b&l@stId Hc%,Hd% 36A +ballasting 'b&l@stIN Hb% 36A +ballasts 'b&l@sts Ha% 26A +ballbearing bOl'be@rIN K6% 3 +ballbearings bOl'be@rINz Kj% 3 +ballcock 'bOlk0k K6% 2 +ballcocks 'bOlk0ks Kj% 2 +balled bOld Jc$,Jd$ 1 +ballerina ,b&l@'rin@ K6% 4 +ballerinas ,b&l@'rin@z Kj% 4 +ballet 'b&leI M6% 2 +ballet-dancer 'b&lI-dAns@R K6% 4 +ballet-dancers 'b&lI-dAns@z Kj% 4 +ballet-skirt 'b&lI-sk3t K6% 3 +ballet-skirts 'b&lI-sk3ts Kj% 3 +ballets 'b&leIz Mj% 2 +balling 'bOlIN Jb$ 2 +ballistic b@'lIstIk OA% 3 +ballistics b@'lIstIks Lk% 3 +ballock 'b0l@k K6$ 2 +ballocks 'b0l@ks Kj$ 2 +balloon b@'lun I0%,K6% 22A,2C +ballooned b@'lund Ic%,Id% 22A,2C +ballooning b@'lunIN Ib% 32A,2C +balloonist b@'lunIst K6% 3 +balloonists b@'lunIsts Kj% 3 +balloons b@'lunz Ia%,Kj% 22A,2C +ballot 'b&l@t I0%,M6% 22A,3A +ballot-box 'b&l@t-b0ks K7% 3 +ballot-boxes 'b&l@t-b0ksIz Kj% 4 +balloted 'b&l@tId Ic%,Id% 32A,3A +balloting 'b&l@tIN Ib% 32A,3A +ballots 'b&l@ts Ia%,Mj% 22A,3A +ballpen 'bOlpen K6% 2 +ballpens 'bOlpenz Kj% 2 +ballpoint 'bOlpoInt K6% 2 +ballpoint-pen ,bAlpoInt-'pen K6% 3 +ballpoint-pens ,bAlpoInt-'penz Kj% 3 +ballpoints 'bOlpoInts Kj% 2 +ballroom 'bOlrum K6% 2 +ballrooms 'bOlrumz Kj% 2 +balls bOlz Ja$,Kj%,W-% 1 +balls-up 'bAlz-Vp K6% 2 +balls-ups 'bAlz-Vps Kj% 2 +bally 'b&lI OA$,Pu$ 2 +ballyhoo ,b&lI'hu L@% 3 +balm bAm L@% 1 +balmier 'bAmI@R Or% 3 +balmiest 'bAmIIst Os% 3 +balmy 'bAmI OD% 2 +baloney b@'l@UnI L@% 3 +balsa 'bOls@ M6% 2 +balsam 'bOls@m K6% 2 +balsams 'bOls@mz Kj$ 2 +balsas 'bOls@z Mj$ 2 +baluster 'b&l@st@R K6$ 3 +balusters 'b&l@st@z Kj$ 3 +balustrade ,b&l@'streId K6% 3 +balustrades ,b&l@'streIdz Kj% 3 +bambino b&m'bin@U K6% 3 +bambinos b&m'bin@Uz Kj% 3 +bamboo b&m'bu M6% 2 +bamboos b&m'buz Mj% 2 +bamboozle b&m'buzl H2% 36A,14 +bamboozled b&m'buzld Hc%,Hd% 36A,14 +bamboozles b&m'buzlz Ha% 36A,14 +bamboozling b&m'buzlIN Hb% 36A,14 +ban b&n H4%,K6% 16A,14 +banal b@'nAl OA% 2 +banalities b@'n&lItIz Mj% 4 +banality b@'n&lItI M8% 4 +banana b@'nAn@ K6% 3 +bananas b@'nAn@z Kj% 3 +band b&nd J0%,K6% 12C,6A,14,15B +band-saw 'b&nd-sO K6$ 2 +band-saws 'b&nd-sOz Kj$ 2 +bandage 'b&ndIdZ H2%,K6% 26A,15B +bandaged 'b&ndIdZd Hc%,Hd% 26A,15B +bandages 'b&ndIdZIz Ha%,Kj% 36A,15B +bandaging 'b&ndIdZIN Hb% 36A,15B +bandanna b&n'd&n@ K6$ 3 +bandannas b&n'd&n@z Kj$ 3 +bandbox 'b&ndb0ks K7$ 2 +bandboxes 'b&ndb0ksIz Kj$ 3 +bandeau 'b&nd@U Ki$ 2 +bandeaux 'b&nd@Uz Kj$ 2 +banded 'b&ndId Jc%,Jd% 22C,6A,14,15B +bandied 'b&ndId Hc%,Hd% 26A,14,15B +bandier 'b&ndI@R Or$ 3 +bandies 'b&ndIz Ha% 26A,14,15B +bandiest 'b&ndIIst Os% 3 +banding 'b&ndIN Jb% 22C,6A,14,15B +bandit 'b&ndIt K6% 2 +banditry 'b&ndItrI L@% 3 +bandits 'b&ndIts Kj% 2 +bandleader 'b&ndlid@R K6% 3 +bandleaders 'b&ndlid@z Kj% 3 +bandmaster 'b&ndmAst@R K6% 3 +bandmasters 'b&ndmAst@z Kj% 3 +bandoleer ,b&nd@'lI@R K6$ 3 +bandoleers ,b&nd@'lI@z Kj$ 3 +bandolier ,b&nd@'lI@R K6$ 4 +bandoliers ,b&nd@'lI@z Kj$ 4 +bands b&ndz Ja%,Kj% 12C,6A,14,15B +bandsman 'b&ndzm@n Ki% 2 +bandsmen 'b&ndzm@n Kj% 2 +bandstand 'b&ndst&nd K6% 2 +bandstands 'b&ndst&ndz Kj% 2 +bandwagon 'b&ndw&g@n K6% 3 +bandwagons 'b&ndw&g@nz Kj$ 3 +bandy 'b&ndI H3%,OD% 26A,14,15B +bandy-legged ,b&ndI-'legId OA% 4 +bandying 'b&ndIIN Hb% 36A,14,15B +bane beIn L@% 1 +baneful 'beInf@l OA$ 2 +banefully 'beInf@lI Pu$ 3 +bang b&N J0%,M6%,Pu%,W-% 12A,2C,6A,15B +banged b&Nd Jc%,Jd% 12A,2C,6A,15B +banger 'b&N@R K6% 2 +bangers 'b&N@z Kj% 2 +banging 'b&NIN Jb% 22A,2C,6A,15B +bangle 'b&Ngl K6% 2 +bangles 'b&Nglz Kj% 2 +bangs b&Nz Ja%,Mj% 12A,2C,6A,15B +banian 'b&nj@n K6$ 2 +banian-tree 'b&nj@n-tri K6$ 3 +banian-trees 'b&nj@n-triz Kj$ 3 +banians 'b&nj@nz Kj$ 2 +banish 'b&nIS H1% 26A,14 +banished 'b&nISt Hc%,Hd% 26A,14 +banishes 'b&nISIz Ha% 36A,14 +banishing 'b&nISIN Hb% 36A,14 +banishment 'b&nISm@nt L@% 3 +banister 'b&nIst@R K6% 3 +banisters 'b&nIst@z Kj% 3 +banjo 'b&ndZ@U K6% 2 +banjoes 'b&ndZ@Uz Kj% 2 +banjos 'b&ndZ@Uz Kj% 2 +bank b&Nk J0%,K6% 12A,2C,3A,6A,15B +bank-bill 'b&Nk-bIl K6$ 2 +bank-bills 'b&Nk-bIlz Kj$ 2 +bank-book 'b&Nk-bUk K6% 2 +bank-books 'b&Nk-bUks Kj% 2 +bank-draft 'b&Nk-drAft K6% 2 +bank-drafts 'b&Nk-drAfts Kj% 2 +bank-rate 'b&Nk-reIt K6% 2 +bank-rates 'b&Nk-reIts Kj% 2 +banked b&Nkt Jc%,Jd% 12A,2C,3A,6A,15B +banker 'b&Nk@R K6% 2 +bankers 'b&Nk@z Kj% 2 +banking 'b&NkIN Jb%,L@% 22A,2C,3A,6A,15B +banknote 'b&Nkn@Ut K6% 2 +banknotes 'b&Nkn@Uts Kj% 2 +bankroll 'b&Nkr@Ul K6% 2 +bankrolls 'b&Nkr@Ulz Kj% 2 +bankrupt 'b&NkrVpt H0%,K6%,OA% 26A +bankruptcies 'b&Nkr@psIz Mj% 3 +bankruptcy 'b&Nkr@psI M8% 3 +bankrupted 'b&NkrVptId Hc%,Hd% 36A +bankrupting 'b&NkrVptIN Hb% 36A +bankrupts 'b&NkrVpts Ha%,Kj% 26A +banks b&Nks Ja%,Kj% 12A,2C,3A,6A,15B +banned b&nd Hc%,Hd% 16A,14 +banner 'b&n@R K6% 2 +banners 'b&n@z Kj% 2 +banning 'b&nIN Hb% 26A,14 +banning-order 'b&nIN-Od@R K6% 4 +banning-orders 'b&nIN-Od@z Kj% 4 +bannister 'b&nIst@R K6$ 3 +bannisters 'b&nIst@z Kj$ 3 +bannock 'b&n@k K6$ 2 +bannocks 'b&n@ks Kj$ 2 +banns b&nz Kj% 1 +banquet 'b&NkwIt J0%,K6% 22A,6A +banqueted 'b&NkwItId Jc%,Jd% 32A,6A +banqueting 'b&NkwItIN Jb% 32A,6A +banquets 'b&NkwIts Ja%,Kj% 22A,6A +bans b&nz Ha%,Kj% 16A,14 +banshee b&n'Si K6% 2 +banshees b&n'Siz Kj% 2 +bant b&nt I0$ 12A +bantam 'b&nt@m K6% 2 +bantams 'b&nt@mz Kj% 2 +banted 'b&ntId Ic$,Id$ 22A +banter 'b&nt@R J0%,L@% 22A,6A +bantered 'b&nt@d Jc%,Jd% 22A,6A +bantering 'b&nt@rIN Jb%,OA% 32A,6A +banteringly 'b&nt@rINlI Pu% 4 +banters 'b&nt@z Ja% 22A,6A +banting 'b&ntIN Ib$,L@$ 22A +bants b&nts Ia$ 12A +banyan 'b&nj@n K6% 2 +banyans 'b&nj@nz Kj% 2 +baobab 'beI@b&b K6$ 3 +baobabs 'beI@b&bz Kj$ 3 +baptism 'b&ptIz@m M6% 3 +baptismal b&p'tIzm@l OA% 3 +baptisms 'b&ptIz@mz Mj% 3 +baptize b&p'taIz H2% 26A,23 +baptized b&p'taIzd Hc%,Hd% 26A,23 +baptizes b&p'taIzIz Ha% 36A,23 +baptizing b&p'taIzIN Hb% 36A,23 +bar bAR H4%,K6%,T-% 16A,6C,12C,14,15B +barb bAb K6% 1 +barbarian bA'be@rI@n K6%,OA% 4 +barbarians bA'be@rI@nz Kj% 4 +barbaric bA'b&rIk OA% 3 +barbarism 'bAb@rIz@m M6% 4 +barbarisms 'bAb@rIz@mz Mj$ 4 +barbarities bA'b&rItIz Mj% 4 +barbarity bA'b&rItI M8% 4 +barbarize 'bAb@raIz H2% 36A +barbarized 'bAb@raIzd Hc%,Hd% 36A +barbarizes 'bAb@raIzIz Ha$ 46A +barbarizing 'bAb@raIzIN Hb% 46A +barbarous 'bAb@r@s OA% 3 +barbarously 'bAb@r@slI Pu% 4 +barbecue 'bAbIkju H2%,K6% 3 +barbecued 'bAbIkjud Hc%,Hd% 3 +barbecues 'bAbIkjuz Ha%,Kj% 3 +barbecuing 'bAbIkjuIN Hb% 4 +barbed bAbd OA% 1 +barbel 'bAbl K6$ 2 +barbels 'bAblz Kj$ 2 +barber 'bAb@R K6% 2 +barbers 'bAb@z Kj% 2 +barbican 'bAbIk@n K6$ 3 +barbicans 'bAbIk@nz Kj$ 3 +barbitone 'bAbIt@Un L@$ 3 +barbiturate bA'bItjUr@t M6% 4 +barbiturates bA'bItjUr@ts Mj% 4 +barbs bAbz Kj% 1 +barcarole ,bAk@'r@Ul K6$ 3 +barcaroles ,bAk@'r@Ulz Kj$ 3 +barcarolle ,bAk@'r@Ul K6% 3 +barcarolles ,bAk@'r@Ulz Kj% 3 +bard bAd K6% 1 +bardic 'bAdIk OA% 2 +bardolatry bA'd0l@trI L@$ 4 +bards bAdz Kj% 1 +bare be@R H2%,OB% 16A +bareback 'be@b&k Pu% 2 +barebacked 'be@b&kt OA%,Pu$ 2 +bared be@d Hc%,Hd% 16A +barefaced 'be@feIst OA% 2 +barefacedly 'be@feIstlI Pu% 3 +barefoot be@'fUt Pu% 2 +barefooted be@'fUtId OA%,Pu% 3 +bareheaded be@'hedId OA% 3 +barelegged be@'legId OA% 3 +barely 'be@lI Pu% 2 +bareness 'be@n@s L@% 2 +barer 'be@r@R Or$ 2 +bares be@z Ha% 16A +barest 'be@rIst Os$ 2 +bargain 'bAgIn J0%,K6% 22A,3A,9,15B +bargained 'bAgInd Jc%,Jd% 22A,3A,9,15B +bargaining 'bAgInIN Jb% 32A,3A,9,15B +bargains 'bAgInz Ja%,Kj% 22A,3A,9,15B +barge bAdZ I2%,K6% 12C,3A +barged bAdZd Ic%,Id% 12C,3A +bargee bA'dZi K6% 2 +bargees bA'dZiz Kj% 2 +bargepole 'bAdZp@Ul K6% 2 +bargepoles 'bAdZp@Ulz Kj% 2 +barges 'bAdZIz Ia%,Kj% 22C,3A +barging 'bAdZIN Ib% 22C,3A +baring 'be@rIN Hb% 26A +baritone 'b&rIt@Un K6% 3 +baritones 'b&rIt@Unz Kj% 3 +barium 'be@rI@m L@$ 3 +bark bAk J0%,M6% 12A,2C,3A,6A,15B +barked bAkt Jc%,Jd% 12A,2C,3A,6A,15B +barker 'bAk@R K6% 2 +barkers 'bAk@z Kj% 2 +barking 'bAkIN Jb% 22A,2C,3A,6A,15B +barks bAks Ja%,Mj% 12A,2C,3A,6A,15B +barley 'bAlI L@% 2 +barley-sugar 'bAlI-SUg@R M6% 4 +barley-sugars 'bAlI-SUg@z Mj% 4 +barley-water 'bAlI-wOt@R L@% 4 +barleycorn 'bAlIkOn M6% 3 +barleycorns 'bAlIkOnz Mj% 3 +barm bAm L@$ 1 +barmaid 'bAmeId K6% 2 +barmaids 'bAmeIdz Kj% 2 +barman 'bAm&n Ki% 2 +barmen 'bAmen Kj% 2 +barmy 'bAmI OA% 2 +barn bAn K6% 1 +barn-door bAn-'dOR K6% 2 +barn-doors bAn-'dOz Kj% 2 +barnacle 'bAn@kl K6% 3 +barnacles 'bAn@klz Kj% 3 +barns bAnz Kj% 1 +barnstorm 'bAnstOm I0% 2 +barnstormed 'bAnstOmd Ic$,Id$ 2 +barnstormer 'bAnstOm@R K6$ 3 +barnstormers 'bAnstOm@z Kj$ 3 +barnstorming 'bAnstOmIN Ib$ 3 +barnstorms 'bAnstOmz Ia$ 2 +barnyard 'bAnjAd K6% 2 +barnyards 'bAnjAdz Kj% 2 +barometer b@'r0mIt@R K6% 4 +barometers b@'r0mIt@z Kj% 4 +barometric ,b&r@'metrIk OA$ 4 +baron 'b&r@n K6% 2 +baronage 'b&r@nIdZ K6$ 3 +baronages 'b&r@nIdZIz Kj$ 4 +baroness 'b&r@nes K7% 3 +baronesses 'b&r@nesIz Kj% 4 +baronet 'b&r@net K6% 3 +baronetcies 'b&r@nItsIz Kj$ 4 +baronetcy 'b&r@nItsI K8% 4 +baronets 'b&r@nets Kj% 3 +baronial b@'r@UnI@l OA% 4 +baronies 'b&r@nIz Kj$ 3 +barons 'b&r@nz Kj% 2 +barony 'b&r@nI K8$ 3 +baroque b@'r0k Ki%,OA% 2 +barouche b@'ruS K6$ 2 +barouches b@'ruSIz Kj$ 3 +barque bAk K6$ 1 +barques bAks Kj$ 1 +barrack 'b&r@k J0%,K6% 22A,6A +barracked 'b&r@kt Jc%,Jd% 22A,6A +barracking 'b&r@kIN Jb%,L@% 32A,6A +barracks 'b&r@ks Ja%,Kj% 22A,6A +barracuda ,b&r@'kud@ K6% 4 +barracudas ,b&r@'kud@z Kj% 4 +barrage 'b&rAZ K6% 2 +barrages 'b&rAZIz Kj% 3 +barred bAd Hc%,Hd% 16A,6C,12C,14,15B +barrel 'b&r@l H4$,K6% 2 +barrelled 'b&r@ld Hc$,Hd%,OA% 2 +barrelling 'b&r@lIN Hb$ 3 +barrels 'b&r@lz Ha$,Kj% 2 +barren 'b&r@n OA% 2 +barrenness 'b&r@n+n@s L@% 3 +barricade ,b&rI'keId H2%,K6% 36A,15B +barricaded ,b&rI'keIdId Hc%,Hd% 46A,15B +barricades ,b&rI'keIdz Ha%,Kj% 36A,15B +barricading ,b&rI'keIdIN Hb% 46A,15B +barrier 'b&rI@R K6% 3 +barriers 'b&rI@z Kj% 3 +barring 'bArIN Hb%,T-% 26A,6C,12C,14,15B +barrister 'b&rIst@R K6% 3 +barristers 'b&rIst@z Kj% 3 +barrow 'b&r@U K6% 2 +barrow-boy 'b&r@U-boI K6% 3 +barrow-boys 'b&r@U-boIz Kj% 3 +barrow-man 'b&r@U-m&n Ki$ 3 +barrow-men 'b&r@U-men Kj$ 3 +barrows 'b&r@Uz Kj% 2 +bars bAz Ha%,Kj% 16A,6C,12C,14,15B +bartender 'bAtend@R K6% 3 +bartenders 'bAtend@z Kj% 3 +barter 'bAt@R J0%,L@% 22A,14,15B +bartered 'bAt@d Jc%,Jd% 22A,14,15B +barterer 'bAt@r@R K6% 3 +barterers 'bAt@r@z Kj% 3 +bartering 'bAt@rIN Jb% 32A,14,15B +barters 'bAt@z Ja% 22A,14,15B +bas-relief ,b&s-rI'lif M6% 3 +bas-reliefs ,b&s-rI'lifs Mj% 3 +basal 'beIsl OA% 2 +basalt 'b&sOlt L@% 2 +bascule 'b&skjul K6$ 2 +bascules 'b&skjulz Kj$ 2 +base beIs H2%,K6%,OB% 114 +baseball 'beIsbOl M6% 2 +baseballs 'beIsbOlz Mj% 2 +baseboard 'beIsbOd K6% 2 +baseboards 'beIsbOdz Kj% 2 +based beIst Hc%,Hd% 114 +baseless 'beIslIs OA% 2 +basement 'beIsm@nt K6% 2 +basements 'beIsm@nts Kj% 2 +baser 'beIs@R Or$ 2 +bases 'beIsIz Ha%,Kj% 214 +bases 'beIsiz Kj% 2 +basest 'beIsIst Os% 2 +bash b&S H1%,K7% 16A,15A,15B +bashed b&St Hc%,Hd% 16A,15A,15B +bashes 'b&SIz Ha%,Kj% 26A,15A,15B +bashful 'b&SfUl OA% 2 +bashfully 'b&SfUlI Pu% 3 +bashing 'b&SIN Hb% 26A,15A,15B +basic 'beIsIk OA% 2 +basically 'beIsIklI Pu% 3 +basil 'b&zl L@% 2 +basilica b@'zIlIk@ K6% 4 +basilicas b@'zIlIk@z Kj% 4 +basilisk 'b&sIlIsk K6% 3 +basilisks 'b&sIlIsks Kj% 3 +basin 'beIsn K6% 2 +basing 'beIsIN Hb% 214 +basins 'beIsnz Kj% 2 +basis 'beIsIs Ki% 2 +bask bAsk I0% 12C +basked bAskt Ic%,Id% 12C +basket 'bAskIt K6% 2 +basketball 'bAskItbOl M6% 3 +basketballs 'bAskItbOlz Mj% 3 +basketry 'bAskItrI L@% 3 +baskets 'bAskIts Kj% 2 +basking 'bAskIN Ib% 22C +basks bAsks Ia% 12C +bass b&s K9% 1 +bass beIs K7%,OA% 1 +basses 'beIsIz Kj% 2 +bassinet ,b&sI'net K6$ 3 +bassinets ,b&sI'nets Kj$ 3 +bassoon b@'sun K6% 2 +bassoons b@'sunz Kj% 2 +bast b&st L@$ 1 +bastard 'bAst@d K6% 2 +bastardies 'bAst@dIz Kj$ 3 +bastardize 'b&st@daIz H2$ 3 +bastardized 'b&st@daIzd Hc$,Hd$ 3 +bastardizes 'b&st@daIzIz Ha$ 4 +bastardizing 'b&st@daIzIN Hb$ 4 +bastards 'bAst@dz Kj% 2 +bastardy 'bAst@dI K8% 3 +baste beIst H2% 16A,15B +basted 'beIstId Hc%,Hd% 26A,15B +bastes beIsts Ha% 16A,15B +bastinado ,b&stI'nAd@U H0$,Ki$ 46A +bastinadoed ,b&stI'nAd@Ud Hc$,Hd$ 46A +bastinadoes ,b&stI'nAd@Uz Kj$ 4 +bastinadoing ,b&stI'nAd@UIN Hb$ 56A +bastinados ,b&stI'nAd@Uz Ha$ 46A +basting 'beIstIN Hb% 26A,15B +bastion 'b&stI@n K6% 3 +bastions 'b&stI@nz Kj% 3 +bat b&t J4%,K6% 12A,2B,2C,6A +batch b&tS K7% 1 +batches 'b&tSIz Kj% 2 +bate beIt H2$ 1 +bated 'beItId Hc$,Hd% 2 +bates beIts Ha$ 1 +bath bAT J0%,K6% 12A,6A +bathe beID J2%,K6% 12A,6A +bathed bATt Jc%,Jd% 12A,6A +bathed beIDd Jc%,Jd% 12A,6A +bather 'beID@R K6% 2 +bathers 'beID@z Kj% 2 +bathes beIDz Ja%,Kj% 12A,6A +bathing 'bATIN Jb% 22A,6A +bathing 'beIDIN Jb%,K6% 22A,6A +bathing-cap 'beIDIN-k&p K6% 3 +bathing-caps 'beIDIN-k&ps Kj% 3 +bathing-costume 'beIDIN-k0stjum K6% 4 +bathing-costumes 'beIDIN-k0stjumz Kj% 4 +bathing-machine 'beIDIN-m@Sin K6% 4 +bathing-machines 'beIDIN-m@Sinz Kj% 4 +bathing-suit 'beIDIN-sut K6% 3 +bathing-suits 'beIDIN-suts Kj% 3 +bathings 'beIDINz Kj% 2 +bathos 'beIT0s L@% 2 +bathrobe 'bATr@Ub K6% 2 +bathrobes 'bATr@Ubz Kj% 2 +bathroom 'bATrum K6% 2 +bathrooms 'bATrumz Kj% 2 +baths bADz Kj% 1 +baths bATs Ja% 12A,6A +bathtub 'bATtVb K6% 2 +bathtubs 'bATtVbz Kj% 2 +bathysphere 'b&TIsfI@R K6% 3 +bathyspheres 'b&TIsfI@z Kj% 3 +batik b@'tik M6% 2 +batiks b@'tiks Mj$ 2 +bating 'beItIN Hb% 2 +batiste b&'tist L@$ 2 +batman 'b&tm@n Ki% 2 +batmen 'b&tm@n Kj% 2 +baton 'b&t@n K6% 2 +batons 'b&t@nz Kj% 2 +bats b&ts Ja%,Kj%,Op% 12A,2B,2C,6A +batsman 'b&tsm@n Ki% 2 +batsmen 'b&tsm@n Kj% 2 +battalion b@'t&lI@n K6% 4 +battalions b@'t&lI@nz Kj% 4 +batted 'b&tId Jc%,Jd% 22A,2B,2C,6A +batten 'b&tn J0%,K6% 23A,6A,15B +battened 'b&tnd Jc%,Jd% 23A,6A,15B +battening 'b&tnIN Jb% 23A,6A,15B +battens 'b&tnz Ja%,Kj% 23A,6A,15B +batter 'b&t@R J0%,L@% 22C,6A,15A,15B +battered 'b&t@d Jc%,Jd% 22C,6A,15A,15B +batteries 'b&t@rIz Kj% 3 +battering 'b&t@rIN Jb% 32C,6A,15A,15B +batters 'b&t@z Ja% 22C,6A,15A,15B +battery 'b&t@rI K8% 3 +batting 'b&tIN Jb%,L@% 22A,2B,2C,6A +battle 'b&tl I2%,M6% 23A +battle-axe 'b&tl-&ks K6% 3 +battle-axes 'b&tl-&ksIz Kj% 4 +battle-cruiser 'b&tl-kruz@R K6% 4 +battle-cruisers 'b&tl-kruz@z Kj% 4 +battled 'b&tld Ic%,Id% 23A +battledore 'b&tldOR K6$ 3 +battledores 'b&tldOz Kj$ 3 +battledress 'b&tldres Ki% 3 +battlefield 'b&tlfild K6% 3 +battlefields 'b&tlfildz Kj% 3 +battleground 'b&tlgraUnd K6% 3 +battlegrounds 'b&tlgraUndz Kj% 3 +battlements 'b&tlm@nts Kj% 3 +battles 'b&tlz Ia%,Mj% 23A +battleship 'b&tlSIp K6% 3 +battleships 'b&tlSIps Kj% 3 +battling 'b&tlIN Ib% 23A +battue b&'tu K6$ 2 +battues b&'tuz Kj$ 2 +batty 'b&tI OA% 2 +bauble 'bObl K6% 2 +baubles 'bOblz Kj% 2 +baulk bOk J0%,K6% 12A,3A,6A,14 +baulked bOkt Jc%,Jd% 12A,3A,6A,14 +baulking 'bOkIN Jb% 22A,3A,6A,14 +baulks bOks Ja%,Kj% 12A,3A,6A,14 +bauxite 'bOksaIt L@% 2 +bawbee 'bObi K6$ 2 +bawbees 'bObiz Kj$ 2 +bawd bOd K6% 1 +bawdier 'bOdI@R Or% 3 +bawdiest 'bOdIIst Os% 3 +bawdily 'bOdIlI Pu% 3 +bawds bOdz Kj% 1 +bawdy 'bOdI L@$,OD% 2 +bawl bOl J0% 12C,3A,6A,15A +bawled bOld Jc%,Jd% 12C,3A,6A,15A +bawling 'bOlIN Jb% 22C,3A,6A,15A +bawls bOlz Ja% 12C,3A,6A,15A +bay beI I0%,K6%,OA% 12A +bay-wreath 'beI-riT K6$ 2 +bay-wreaths 'beI-riTs Kj$ 2 +bayed beId Ic%,Id% 12A +baying 'beIIN Ib% 22A +bayonet 'beI@net H0%,K6% 36A +bayoneted 'beI@netId Hc%,Hd% 46A +bayoneting 'beI@netIN Hb% 46A +bayonets 'beI@nets Ha%,Kj% 36A +bayou 'baIu K6$ 2 +bayous 'baIuz Kj$ 2 +bays beIz Ia%,Kj% 12A +bazaar b@'zAR K6% 2 +bazaars b@'zAz Kj% 2 +bazooka b@'zuk@ K6% 3 +bazookas b@'zuk@z Kj% 3 +be bi G5*,I5% 11,4F +be- bI- U-% 1 +beach bitS H1%,K7% 16A +beachcomber 'bitSk@Um@R K6% 3 +beachcombers 'bitSk@Um@z Kj% 3 +beached bitSt Hc%,Hd% 16A +beaches 'bitSIz Ha%,Kj% 26A +beachhead 'bitShed K6% 2 +beachheads 'bitShedz Kj% 2 +beaching 'bitSIN Hb% 26A +beachwear 'bitSwe@R L@% 2 +beacon 'bik@n K6% 2 +beacon-fire 'bik@n-faI@R K6$ 3 +beacon-fires 'bik@n-faI@z Kj$ 3 +beacon-light 'bik@n-laIt K6$ 3 +beacon-lights 'bik@n-laIts Kj$ 3 +beacons 'bik@nz Kj% 2 +bead bid K6% 1 +beading 'bidIN L@% 2 +beadle 'bidl K6% 2 +beadles 'bidlz Kj% 2 +beads bidz Kj% 1 +beady 'bidI OA% 2 +beagle 'bigl K6% 2 +beagles 'biglz Kj% 2 +beagling 'biglIN L@$ 2 +beak bik K6% 1 +beaker 'bik@R K6% 2 +beakers 'bik@z Kj% 2 +beaks biks Kj% 1 +beam bim J0%,K6% 12C,6A,15A +beamed bimd Jc%,Jd% 12C,6A,15A +beaming 'bimIN Jb% 22C,6A,15A +beams bimz Ja%,Kj% 12C,6A,15A +bean bin K6% 1 +beanfeast 'binfist K6% 2 +beanfeasts 'binfists Kj% 2 +beano 'bin@U K6% 2 +beanos 'bin@Uz Kj% 2 +beans binz Kj% 1 +beanstalk 'binstOk K6% 2 +beanstalks 'binstOks Kj% 2 +bear be@R J5%,K6% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +bearable 'be@r@bl OA% 3 +beard bI@d H0%,K6% 16A +bearded 'bI@dId Hc%,Hd%,OA% 26A +bearding 'bI@dIN Hb% 26A +beardless 'bI@dl@s OA% 2 +beards bI@dz Ha%,Kj% 16A +bearer 'be@r@R K6% 2 +bearers 'be@r@z Kj% 2 +bearing 'be@rIN Jb%,M6% 22A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +bearings 'be@rINz Mj% 2 +bearish 'be@rIS OA% 2 +bears be@z Ja%,Kj% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +bearskin 'be@skIn K6% 2 +bearskins 'be@skInz Kj% 2 +beast bist K6% 1 +beastlier 'bistlI@R Or% 3 +beastliest 'bistlIIst Os% 3 +beastliness 'bistlIn@s L@% 3 +beastly 'bistlI OD%,Pu% 2 +beasts bists Kj% 1 +beat bit J5%,Jc%,K6%,Oq% 12A,2C,6A,14,15A,15B,22 +beaten 'bitn Jd%,OA% 22A,2C,6A,14,15A,15B,22 +beater 'bit@R K6% 2 +beaters 'bit@z Kj% 2 +beatific bI@'tIfIk OA% 4 +beatification bI,&tIfI'keISn K6% 6 +beatifications bI,&tIfI'keISnz Kj$ 6 +beatified bI'&tIfaId Hc%,Hd% 46A +beatifies bI'&tIfaIz Ha% 46A +beatify bI'&tIfaI H3% 46A +beatifying bI'&tIfaIIN Hb% 56A +beating 'bitIN Jb%,K6% 22A,2C,6A,14,15A,15B,22 +beatings 'bitINz Kj% 2 +beatitude bI'&tItjud M6% 4 +beatitudes bI'&tItjudz Mj% 4 +beatnik 'bitnIk K6% 2 +beatniks 'bitnIks Kj% 2 +beats bits Ja%,Kj% 12A,2C,6A,14,15A,15B,22 +beau b@U Ki% 1 +beauteous 'bjutI@s OA% 3 +beautician bju'tISn K6% 3 +beauticians bju'tISnz Kj% 3 +beauties 'bjutIz Mj% 2 +beautified 'bjutIfaId Hc%,Hd% 36A +beautifies 'bjutIfaIz Ha% 36A +beautiful 'bjutIf@l OA% 3 +beautifully 'bjut@f@lI Pu% 4 +beautify 'bjutIfaI H3% 36A +beautifying 'bjutIfaIIN Hb% 46A +beauty 'bjutI M8% 2 +beauty-parlour 'bjutI-pAl@R K6% 4 +beauty-parlours 'bjutI-pAl@z Kj% 4 +beauty-salon 'bjutI-s&l0n K6% 4 +beauty-salons 'bjutI-s&l0nz Kj% 4 +beauty-sleep 'bjutI-slip L@% 3 +beauty-spot 'bjutI-sp0t K6% 3 +beauty-spots 'bjutI-sp0ts Kj% 3 +beaux b@Uz Kj$ 1 +beaver 'biv@R I0%,M6% 22A,2C +beavered 'biv@d Ic%,Id% 22A,2C +beavering 'biv@rIN Ib% 32A,2C +beavers 'biv@z Ia%,Mj% 22A,2C +becalmed bI'kAmd Op% 2 +became bI'keIm Jc* 22D,3A,6A +because bI'k0z V-* 2 +beck bek K6% 1 +beckon 'bek@n J0% 22A,6A,15B,16A +beckoned 'bek@nd Jc%,Jd% 22A,6A,15B,16A +beckoning 'bek@nIN Jb% 32A,6A,15B,16A +beckons 'bek@nz Ja% 22A,6A,15B,16A +becks beks Kj% 1 +become bI'kVm J5*,Jd* 22D,3A,6A +becomes bI'kVmz Ja% 22D,3A,6A +becoming bI'kVmIN Jb%,OA% 32D,3A,6A +becomingly bI'kVmINlI Pu% 4 +bed bed H4%,K6% 16A,15A,15B +bedaubed bI'dObd Op% 2 +bedbug 'bedbVg K6% 2 +bedbugs 'bedbVgz Kj% 2 +bedclothes 'bedkl@UDz Kj% 2 +bedded 'bedId Hc%,Hd%,Ot% 26A,15A,15B +bedding 'bedIN Hb%,L@% 26A,15A,15B +bedecked bI'dekt Op% 2 +bedevil bI'devl H4% 3 +bedevilled bI'devld Hc%,Hd% 3 +bedevilling bI'dev@lIN Hb$ 4 +bedevilment bI'devlm@nt K6$ 4 +bedevilments bI'devlm@nts Kj$ 4 +bedevils bI'devlz Ha$ 3 +bedewed bI'djud Op% 2 +bedfellow 'bedfel@U K6% 3 +bedfellows 'bedfel@Uz Kj% 3 +bedimmed bI'dImd Op$ 2 +bedlam 'bedl@m K6% 2 +bedlams 'bedl@mz Kj$ 2 +bedpan 'bedp&n K6% 2 +bedpans 'bedp&nz Kj% 2 +bedpost 'bedp@Ust K6% 2 +bedposts 'bedp@Usts Kj% 2 +bedraggled bI'dr&gld Op% 3 +bedridden 'bedrIdn OA% 3 +bedrock 'bedr0k K6% 2 +bedrocks 'bedr0ks Kj$ 2 +bedroll 'bedr@Ul K6% 2 +bedrolls 'bedr@Ulz Kj% 2 +bedroom 'bedrum K6% 2 +bedroomed 'bedrumd OA% 2 +bedrooms 'bedrumz Kj% 2 +beds bedz Ha%,Kj% 16A,15A,15B +bedside 'bedsaId K6% 2 +bedsides 'bedsaIdz Kj$ 2 +bedsit 'bedsIt K6% 2 +bedsits 'bedsIts Kj% 2 +bedsitter bed'sIt@R K6% 3 +bedsitters bed'sIt@z Kj% 3 +bedsitting-room bed'sItIN-rum K6% 4 +bedsitting-rooms bed'sItIN-rumz Kj% 4 +bedsore 'bedsOR K6% 2 +bedsores 'bedsOz Kj% 2 +bedspread 'bedspred K6% 2 +bedspreads 'bedspredz Kj% 2 +bedstead 'bedsted K6% 2 +bedsteads 'bedstedz Kj% 2 +bedtime 'bedtaIm K6% 2 +bedtimes 'bedtaImz Kj% 2 +bee bi K6% 1 +beech bitS M7% 1 +beeches 'bitSIz Mj% 2 +beef bif I0%,Mi% 1 +beefeater 'bifit@R K6% 3 +beefeaters 'bifit@z Kj% 3 +beefed bift Ic%,Id% 1 +beefier 'bifI@R Or% 3 +beefiest 'bifIIst Os% 3 +beefing 'bifIN Ib% 2 +beefs bifs Ia% 1 +beefsteak 'bifsteIk K6% 2 +beefsteaks 'bifsteIks Kj% 2 +beefy 'bifI OD% 2 +beehive 'bihaIv K6% 2 +beehives 'bihaIvz Kj% 2 +been bin Gd*,Id% 11 +beep bip K6% 1 +beeps bips Kj% 1 +beer bI@R M6% 1 +beerier 'bI@rI@R Or$ 3 +beeriest 'bI@rIIst Os$ 3 +beers bI@z Mj% 1 +beery 'bI@rI OD% 2 +bees biz Kj% 1 +beeswax 'bizw&ks H1$,L@% 2 +beeswaxed 'bizw&kst Hc$,Hd$ 2 +beeswaxes 'bizw&ksIz Ha$ 3 +beeswaxing 'bizw&ksIN Hb$ 3 +beet bit K6% 1 +beetle 'bitl I2%,K6% 22A +beetle-browed 'bitl-braUd OA% 3 +beetled 'bitld Ic%,Id% 22A +beetles 'bitlz Ia%,Kj% 22A +beetling 'bitlIN Ib% 22A +beetroot 'bitrut K6% 2 +beetroots 'bitruts Kj% 2 +beets bits Kj% 1 +beeves bivz Kj$ 1 +befall bI'fOl J5% 26A +befallen bI'fOl@n Jd% 36A +befalling bI'fOlIN Jb$ 36A +befalls bI'fOlz Ja% 26A +befell bI'fel Jc% 26A +befit bI'fIt H4% 26A +befits bI'fIts Ha% 26A +befitted bI'fItId Hc%,Hd% 36A +befitting bI'fItIN Hb%,OA% 36A +befittingly bI'fItINlI Pu% 4 +befogged bI'f0gd Op$ 2 +before bI'fOR Pu*,T-%,V-* 2 +beforehand bI'fOh&nd Op%,Pu% 3 +befoul bI'faUl H0% 2 +befouled bI'faUld Hc%,Hd% 2 +befouling bI'faUlIN Hb% 3 +befouls bI'faUlz Ha% 2 +befriend bI'frend H0% 26A +befriended bI'frendId Hc%,Hd% 36A +befriending bI'frendIN Hb% 36A +befriends bI'frendz Ha% 26A +beg beg J4% 12A,2C,3A,6A,7A,9,14,17 +begad bI'g&d W-$ 2 +began bI'g&n Jc* 22A,3A,6A,6D,7A +begat bI'g&t Hc$ 26A +beget bI'get H5% 26A +begets bI'gets Ha% 26A +begetter bI'get@R K6% 3 +begetters bI'get@z Kj% 3 +beggar 'beg@R H0%,K6% 26A +beggared 'beg@d Hc%,Hd% 26A +beggaring 'beg@rIN Hb% 36A +beggarly 'beg@lI OA% 3 +beggarman 'beg@m&n Ki% 3 +beggarmen 'beg@men Kj% 3 +beggars 'beg@z Ha%,Kj% 26A +beggarwoman 'beg@wUm@n Ki% 4 +beggarwomen 'beg@wImIn Kj% 4 +beggary 'beg@rI L@% 3 +begged begd Jc%,Jd% 12A,2C,3A,6A,7A,9,14,17 +begging 'begIN Jb% 22A,2C,3A,6A,7A,9,14,17 +begin bI'gIn J5% 22A,3A,6A,6D,7A +beginner bI'gIn@R K6% 3 +beginners bI'gIn@z Kj% 3 +beginning bI'gInIN Jb%,K6% 32A,3A,6A,6D,7A +beginnings bI'gInINz Kj% 3 +begins bI'gInz Ja% 22A,3A,6A,6D,7A +begone bI'g0n Z-% 2 +begonia bI'g@UnI@ K6% 4 +begonias bI'g@UnI@z Kj% 4 +begorra bI'g0r@ W-% 3 +begot bI'g0t Hc% 26A +begotten bI'g0tn Hd% 36A +begrimed bI'graImd Op$ 2 +begrudge bI'grVdZ H2% 26C,12A,13A +begrudged bI'grVdZd Hc%,Hd% 26C,12A,13A +begrudges bI'grVdZIz Ha% 36C,12A,13A +begrudging bI'grVdZIN Hb% 36C,12A,13A +begs begz Ja% 12A,2C,3A,6A,7A,9,14,17 +beguile bI'gaIl H2% 26A,14 +beguiled bI'gaIld Hc%,Hd% 26A,14 +beguiles bI'gaIlz Ha% 26A,14 +beguiling bI'gaIlIN Hb% 36A,14 +begum 'beIg@m K6$ 2 +begums 'beIg@mz Kj$ 2 +begun bI'gVn Jd% 22A,3A,6A,6D,7A +behalf bI'hAf Ki% 2 +behalves bI'hAvz Kj$ 2 +behave bI'heIv I2% 22A,2C,6B +behaved bI'heIvd Ic%,Id%,Ot% 22A,2C,6B +behaves bI'heIvz Ia% 22A,2C,6B +behaving bI'heIvIN Ib% 32A,2C,6B +behaviour bI'heIvI@R L@% 3 +behaviourism bI'heIvI@rIz@m L@% 5 +behaviourist bI'heIvI@rIst K6% 4 +behaviourists bI'heIvI@rIsts Kj% 4 +behead bI'hed H0% 26A +beheaded bI'hedId Hc%,Hd% 36A +beheading bI'hedIN Hb% 36A +beheads bI'hedz Ha% 26A +beheld bI'held Hc%,Hd% 26A +behest bI'hest K6% 2 +behests bI'hests Kj$ 2 +behind bI'haInd K6%,Pu*,T-* 2 +behindhand bI'haIndh&nd Op% 3 +behinds bI'haIndz Kj% 2 +behold bI'h@Uld H5% 26A +beholden bI'h@Uld@n Op% 3 +beholder bI'h@Uld@R K6% 3 +beholders bI'h@Uld@z Kj% 3 +beholding bI'h@UldIN Hb% 36A +beholds bI'h@Uldz Ha% 26A +behove bI'h@Uv H2% 2 +behoved bI'h@Uvd Hc%,Hd% 2 +behoves bI'h@Uvz Ha% 2 +behoving bI'h@UvIN Hb% 3 +beige beIZ L@% 1 +being 'biIN Gb*,Ib%,M6% 21 +beings 'biINz Mj% 2 +bejewelled bI'dZu@ld OA% 3 +belabour bI'leIb@R H0% 36A +belaboured bI'leIb@d Hc%,Hd% 36A +belabouring bI'leIb@rIN Hb% 46A +belabours bI'leIb@z Ha% 36A +belated bI'leItId OA% 3 +belatedly bI'leItIdlI Pu% 4 +belay bI'leI H0$,K6$ 26A +belayed bI'leId Hc$,Hd$ 26A +belaying bI'leIIN Hb$ 36A +belaying-pin bI'leIIN-pIn K6$ 4 +belaying-pins bI'leIIN-pInz Kj$ 4 +belays bI'leIz Ha$,Kj$ 26A +belch beltS J1%,K7% 12A,6A,15B +belched beltSt Jc%,Jd% 12A,6A,15B +belches 'beltSIz Ja%,Kj% 22A,6A,15B +belching 'beltSIN Jb% 22A,6A,15B +beldam 'beld@m K6$ 2 +beldame 'beld@m K6$ 2 +beldames 'beld@mz Kj$ 2 +beldams 'beld@mz Kj$ 2 +beleaguer bI'lig@R H0$ 36A +beleaguered bI'lig@d Hc$,Hd% 36A +beleaguering bI'lig@rIN Hb$ 46A +beleaguers bI'lig@z Ha$ 36A +belfries 'belfrIz Kj% 2 +belfry 'belfrI K8% 2 +belie bI'laI H5% 26A +belied bI'laId Hc%,Hd% 26A +belief bI'lif M6% 2 +beliefs bI'lifs Mj% 2 +belies bI'laIz Ha% 26A +believable bI'liv@bl OA% 4 +believe bI'liv J2* 23A,6A,9,10,25 +believed bI'livd Jc%,Jd% 23A,6A,9,10,25 +believer bI'liv@R K6% 3 +believers bI'liv@z Kj% 3 +believes bI'livz Ja% 23A,6A,9,10,25 +believing bI'livIN Jb%,L@% 33A,6A,9,10,25 +belike bI'laIk Pu% 2 +belittle bI'lItl H2% 36A +belittled bI'lItld Hc%,Hd% 36A +belittles bI'lItlz Ha% 36A +belittling bI'lItlIN Hb% 36A +bell bel H0$,K6% 1 +bell-bottomed 'bel-b0t@md OA% 3 +bell-bottoms 'bel-b0t@mz Kj% 3 +bell-buoy 'bel-boI K6$ 2 +bell-buoys 'bel-boIz Kj$ 2 +bell-flower 'bel-flaU@R K6% 3 +bell-flowers 'bel-flaU@z Kj% 3 +bell-founder 'bel-faUnd@R K6$ 3 +bell-founders 'bel-faUnd@z Kj$ 3 +bell-foundries 'bel-faUndrIz Kj% 3 +bell-foundry 'bel-faUndrI K8% 3 +bell-metal 'bel-metl L@$ 3 +bell-push 'bel-pUS K7% 2 +bell-pushes 'bel-pUSIz Kj% 3 +bell-ringer 'bel-rIN@R K6% 3 +bell-ringers 'bel-rIN@z Kj% 3 +bell-tent 'bel-tent K6% 2 +bell-tents 'bel-tents Kj% 2 +belladonna ,bel@'d0n@ M6% 4 +belladonnas ,bel@'d0n@z Mj$ 4 +bellboy 'belboI K6% 2 +bellboys 'belboIz Kj% 2 +belle bel K6% 1 +belled beld Hc$,Hd$ 1 +belles belz Kj% 1 +belles-lettres ,bel-'letr@ Kj% 3 +bellhop 'belh0p K6% 2 +bellhops 'belh0ps Kj% 2 +bellicose 'belIk@Us OA% 3 +bellied 'belId Jc%,Jd%,Ot% 22A,2C,6A,15B +bellies 'belIz Ja%,Kj% 22A,2C,6A,15B +belligerency bI'lIdZ@r@nsI L@% 5 +belligerent bI'lIdZ@r@nt K6$,OA% 4 +belligerently bI'lIdZ@r@ntlI Pu% 5 +belligerents bI'lIdZ@r@nts Kj$ 4 +belling 'belIN Hb$ 2 +bellow 'bel@U J0% 22A,6A,15B +bellowed 'bel@Ud Jc%,Jd% 22A,6A,15B +bellowing 'bel@UIN Jb% 32A,6A,15B +bellows 'bel@Uz Ja%,Kj% 22A,6A,15B +bells belz Ha%,Kj% 1 +bellwether 'belweD@R K6$ 3 +bellwethers 'belweD@z Kj$ 3 +belly 'belI J3$,K8% 22A,2C,6A,15B +bellyache 'belIeIk I2%,K6% 3 +bellyached 'belIeIkt Ic%,Id% 3 +bellyaches 'belIeIks Ia%,Kj% 3 +bellyaching 'belIeIkIN Ib% 4 +bellyflop 'belIfl0p K6% 3 +bellyflops 'belIfl0ps Kj% 3 +bellyful 'belIfUl K6% 3 +bellyfuls 'belIfUlz Kj% 3 +bellying 'belIIN Jb% 32A,2C,6A,15B +bellyland 'belIl&nd I0% 3 +bellylanded 'belIl&ndId Ic%,Id% 4 +bellylanding 'belIl&ndIN Ib% 4 +bellylands 'belIl&ndz Ia$ 3 +bellylaugh 'belIl&f I0$,K6% 3 +bellylaughed 'belIl&ft Ic$,Id$ 3 +bellylaughing 'belIl&fIN Ib$ 4 +bellylaughs 'belIl&fs Ia$,Kj% 3 +belong bI'l0N I0% 22C,3A +belonged bI'l0Nd Ic%,Id% 22C,3A +belonging bI'l0NIN Ib% 32C,3A +belongings bI'l0NINz Kj% 3 +belongs bI'l0Nz Ia% 22C,3A +beloved bI'lVvId K6%,OA% 3 +beloveds bI'lVvIdz Kj% 3 +below bI'l@U Pu%,T-% 2 +belt belt H0%,K6% 12C,3A,6A,15B +belted 'beltId Hc%,Hd% 22C,3A,6A,15B +belting 'beltIN Hb%,K6% 22C,3A,6A,15B +beltings 'beltINz Kj% 2 +belts belts Ha%,Kj% 12C,3A,6A,15B +belying bI'laIIN Hb% 36A +bemoan bI'm@Un H0% 26A +bemoaned bI'm@Und Hc%,Hd% 26A +bemoaning bI'm@UnIN Hb% 36A +bemoans bI'm@Unz Ha% 26A +bemused bI'mjuzd Op% 2 +ben ben K6$ 1 +bench bentS K7% 1 +benches 'bentSIz Kj% 2 +bend bend J0%,K6% 12A,2C,6A,15A,15B +bended 'bendId Jc%,Jd% 22A,2C,6A,15A,15B +bending 'bendIN Jb% 22A,2C,6A,15A,15B +bends bendz Ja%,Kj% 12A,2C,6A,15A,15B +beneath bI'niT Pu%,T-% 2 +benedick 'benIdIk K6% 3 +benedicks 'benIdIks Kj$ 3 +benediction ,benI'dIkSn K6$ 4 +benedictions ,benI'dIkSnz Kj% 4 +benefaction ,benI'f&kSn M6$ 4 +benefactions ,benI'f&kSnz Mj$ 4 +benefactor 'benIf&kt@R K6% 4 +benefactors 'benIf&kt@z Kj% 4 +benefactress 'benIf&ktrIs K7% 4 +benefactresses 'benIf&ktrIsIz Kj$ 5 +benefice 'benIfIs K6$ 3 +beneficed 'benIfIst OA$ 3 +beneficence bI'nefIsns L@% 4 +beneficent bI'nefIsnt OA% 4 +benefices 'benIfIsIz Kj$ 4 +beneficial ,benI'fISl OA% 4 +beneficially ,benI'fIS@lI Pu% 5 +beneficiaries ,benI'fIS@rIz Kj% 5 +beneficiary ,benI'fIS@rI K8% 5 +benefit 'benIfIt J0%,M6% 33A,6A +benefited 'benIfItId Jc%,Jd% 43A,6A +benefiting 'benIfItIN Jb% 43A,6A +benefits 'benIfIts Ja%,Mj% 33A,6A +benevolence bI'nev@l@ns L@% 4 +benevolent bI'nev@l@nt OA% 4 +benevolently bI'nev@l@ntlI Pu% 5 +benighted bI'naItId OA% 3 +benign bI'naIn OA% 2 +benignant bI'nIgn@nt OA$ 3 +benignantly bI'nIgn@ntlI Pu$ 4 +benignities bI'nIgnItIz Mj$ 4 +benignity bI'nIgnItI M8$ 4 +benignly bI'naInlI Pu% 3 +benison 'benIzn K6$ 3 +benisons 'benIznz Kj$ 3 +bens benz Kj$ 1 +bent bent Jc%,Jd%,K6%,Op% 12A,2C,6A,15A,15B +bents bents Kj$ 1 +benumbed bI'nVmd Op% 2 +benzene 'benzin L@% 2 +benzine 'benzin L@% 2 +benzol 'benz0l L@$ 2 +bequeath bI'kwiD H0% 26A,12A,13A +bequeathed bI'kwiDd Hc%,Hd% 26A,12A,13A +bequeathing bI'kwiDIN Hb% 36A,12A,13A +bequeaths bI'kwiDz Ha% 26A,12A,13A +bequest bI'kwest M6% 2 +bequests bI'kwests Mj% 2 +berate bI'reIt H2% 26A +berated bI'reItId Hc%,Hd% 36A +berates bI'reIts Ha% 26A +berating bI'reItIN Hb% 36A +bereave bI'riv H2% 214 +bereaved bI'rivd Hc%,Hd% 214 +bereavement bI'rivm@nt M6% 3 +bereavements bI'rivm@nts Mj% 3 +bereaves bI'rivz Ha% 214 +bereaving bI'rivIN Hb% 314 +bereft bI'reft Hc%,Hd% 214 +beret 'bereI K6% 2 +berets 'bereIz Kj% 2 +berg b3g K6$ 1 +bergs b3gz Kj$ 1 +beri-beri ,berI-'berI L@$ 4 +berries 'berIz Kj% 2 +berry 'berI K8% 2 +berserk b@'s3k Op% 2 +berth b3T J0%,K6% 12C,6A,15A +berthed b3Tt Jc%,Jd% 12C,6A,15A +berthing 'b3TIN Jb% 22C,6A,15A +berths b3Ts Ja%,Kj% 12C,6A,15A +beryl 'ber@l K6$ 2 +beryls 'ber@lz Kj$ 2 +beseech bI'sitS H1% 26A,11,13B,17 +beseeched bI'sitSt Hc%,Hd% 26A,11,13B,17 +beseeches bI'sitSIz Ha% 36A,11,13B,17 +beseeching bI'sitSIN Hb%,OA% 36A,11,13B,17 +beseechingly bI'sitSINlI Pu% 4 +beseem bI'sim H0$ 2 +beseemed bI'simd Hc$,Hd$ 2 +beseeming bI'simIN Hb$ 3 +beseems bI'simz Ha$ 2 +beset bI'set H5%,Hc%,Hd% 26A +besets bI'sets Ha% 26A +besetting bI'setIN Hb% 36A +beshrew bI'Sru H0$ 2 +beshrewed bI'Srud Hc$,Hd$ 2 +beshrewing bI'SruIN Hb$ 3 +beshrews bI'Sruz Ha$ 2 +beside bI'saId T-% 2 +besides bI'saIdz Pu%,T-% 2 +besiege bI'sidZ H2% 26A,14 +besieged bI'sidZd Hc%,Hd% 26A,14 +besieger bI'sidZ@R K6% 3 +besiegers bI'sidZ@z Kj% 3 +besieges bI'sidZIz Ha% 36A,14 +besieging bI'sidZIN Hb% 36A,14 +besmear bI'smI@R H0$ 2 +besmeared bI'smI@d Hc%,Hd% 2 +besmearing bI'smI@rIN Hb$ 3 +besmears bI'smI@z Ha$ 2 +besmirch bI'sm3tS H1$ 2 +besmirched bI'sm3tSt Hc%,Hd% 2 +besmirches bI'sm3tSIz Ha$ 3 +besmirching bI'sm3tSIN Hb$ 3 +besom 'biz@m K6$ 2 +besoms 'biz@mz Kj$ 2 +besotted bI's0tId OA% 3 +besought bI'sOt Hc%,Hd% 26A,11,13B,17 +bespangled bI'sp&Ngld Op% 3 +bespattered bI'sp&t@d Op% 3 +bespeak bI'spik H5$ 26A,25 +bespeaking bI'spikIN Hb$ 36A,25 +bespeaks bI'spiks Ha$ 26A,25 +bespectacled bI'spekt@k@ld OA% 4 +bespoke bI'sp@Uk Hc%,Hd% 26A,25 +bespoken bI'sp@Uk@n Hd$ 36A,25 +best best H0$,Os*,Pu*,Qx% 16A +best-seller best-'sel@R K6% 3 +best-sellers best-'sel@z Kj% 3 +bested 'bestId Hc%,Hd% 26A +bestial 'bestI@l OA% 3 +bestialities ,bestI'&lItIz Mj$ 5 +bestiality ,bestI'&lItI M8% 5 +bestially 'bestI@lI Pu% 4 +bestiaries 'bestI@rIz Kj% 4 +bestiary 'bestI@rI K8% 4 +besting 'bestIN Hb% 26A +bestir bI'st3R H4% 26A,17 +bestirred bI'st3d Hc%,Hd% 26A,17 +bestirring bI'st3rIN Hb% 36A,17 +bestirs bI'st3z Ha% 26A,17 +bestow bI'st@U H0% 26A,14 +bestowal bI'st@U@l K6$ 3 +bestowals bI'st@U@lz Kj$ 3 +bestowed bI'st@Ud Hc%,Hd% 26A,14 +bestowing bI'st@UIN Hb% 36A,14 +bestows bI'st@Uz Ha% 26A,14 +bestrew bI'stru H0% 26A,14 +bestrewed bI'strud Hc%,Hd% 26A,14 +bestrewing bI'struIN Hb% 36A,14 +bestrewn bI'strun Hd% 26A,14 +bestrews bI'struz Ha% 26A,14 +bestrid bI'strId Hd$ 26A +bestridden bI'strIdn Hd$ 36A +bestride bI'straId H5% 26A +bestrides bI'straIdz Ha% 26A +bestriding bI'straIdIN Hb% 36A +bestrode bI'str@Ud Hc$ 26A +bests bests Ha% 16A +bet bet J4%,Jc%,Jd%,K6% 12A,3A,9,11,12C +beta 'bit@ K6% 2 +betake bI'teIk H5$ 214 +betaken bI'teIk@n Hd$ 314 +betakes bI'teIks Ha$ 214 +betaking bI'teIkIN Hb$ 314 +betas 'bit@z Kj$ 2 +betel 'bitl K6$ 2 +betel-nut 'bitl-nVt K6% 3 +betel-nuts 'bitl-nVts Kj% 3 +betels 'bitlz Kj$ 2 +bethel 'beTl K6$ 2 +bethels 'beTlz Kj$ 2 +bethink bI'TINk H5$ 211,14,17,20,21 +bethinking bI'TINkIN Hb$ 311,14,17,20,21 +bethinks bI'TINks Ha$ 211,14,17,20,21 +bethought bI'TOt Hc%,Hd% 211,14,17,20,21 +betide bI'taId H2% 2 +betided bI'taIdId Hc$,Hd$ 3 +betides bI'taIdz Ha$ 2 +betiding bI'taIdIN Hb$ 3 +betimes bI'taImz Pu% 2 +betoken bI't@Uk@n H0% 36A +betokened bI't@Uk@nd Hc%,Hd% 36A +betokening bI't@Uk@nIN Hb$ 46A +betokens bI't@Uk@nz Ha% 36A +betook bI'tUk Hc% 214 +betray bI'treI H0% 26A,14,25 +betrayal bI'treI@l M6% 3 +betrayals bI'treI@lz Mj% 3 +betrayed bI'treId Hc%,Hd% 26A,14,25 +betrayer bI'treI@R K6% 3 +betrayers bI'treI@z Kj% 3 +betraying bI'treIIN Hb% 36A,14,25 +betrays bI'treIz Ha% 26A,14,25 +betroth bI'tr@UD H0$ 26A,14 +betrothal bI'tr@UD@l K6% 3 +betrothals bI'tr@UD@lz Kj$ 3 +betrothed bI'tr@UDd Hc$,Hd%,K6% 26A,14 +betrotheds bI'tr@UDdz Kj$ 2 +betrothing bI'tr@UDIN Hb$ 36A,14 +betroths bI'tr@UDz Ha$ 26A,14 +bets bets Ja%,Kj% 12A,3A,9,11,12C +betted 'betId Jc%,Jd% 22A,3A,9,11,12C +better 'bet@R H0%,K6%,Or*,Pu* 26A +bettered 'bet@d Hc%,Hd% 26A +bettering 'bet@rIN Hb% 36A +betterment 'bet@m@nt L@% 3 +betters 'bet@z Ha%,Kj% 26A +betting 'betIN Jb% 22A,3A,9,11,12C +bettor 'bet@R K6$ 2 +bettors 'bet@z Kj$ 2 +between bI'twin Pu*,T-* 2 +betwixt bI'twIkst Pu%,T-% 2 +bevel 'bevl H4%,K6% 2 +bevelled 'bevld Hc%,Hd% 2 +bevelling 'bev@lIN Hb% 3 +bevels 'bevlz Ha%,Kj% 2 +beverage 'bev@rIdZ K6% 3 +beverages 'bev@rIdZIz Kj% 4 +bevies 'bevIz Kj$ 2 +bevy 'bevI K8% 2 +bewail bI'weIl H0% 26A +bewailed bI'weIld Hc%,Hd% 26A +bewailing bI'weIlIN Hb% 36A +bewails bI'weIlz Ha% 26A +beware bI'we@R J5% 22A,3A,10 +bewilder bI'wIld@R H0% 36A +bewildered bI'wIld@d Hc%,Hd% 36A +bewildering bI'wIld@rIN Hb%,OA% 46A +bewilderment bI'wIld@m@nt L@% 4 +bewilders bI'wIld@z Ha% 36A +bewitch bI'wItS H1% 26A +bewitched bI'wItSt Hc%,Hd% 26A +bewitches bI'wItSIz Ha% 36A +bewitching bI'wItSIN Hb%,OA% 36A +bewitchingly bI'wItSINlI Pu% 4 +bey beI K6$ 1 +beyond bI'j0nd Pu%,T-% 2 +beys beIz Kj$ 1 +bezique b@'zik L@$ 2 +bhang b&N K6$ 1 +bhangs b&Nz Kj$ 1 +bi- ,baI- U-% 1 +bias 'baI@s H1%,K7% 26A,14 +biased 'baI@st Hc%,Hd% 26A,14 +biases 'baI@sIz Ha%,Kj% 36A,14 +biasing 'baI@sIN Hb% 36A,14 +biassed 'baI@st Hc%,Hd% 26A,14 +bib bIb I4$,K6% 1 +bibbed bIbd Ic$,Id$ 1 +bibbing 'bIbIN Ib$ 2 +biblical 'bIblIkl OA% 3 +bibliographer ,bIblI'0gr@f@R K6% 5 +bibliographers ,bIblI'0gr@f@z Kj% 5 +bibliographies ,bIblI'0gr@fIz Mj% 5 +bibliography ,bIblI'0gr@fI M8% 5 +bibliophile 'bIblI@faIl K6% 4 +bibliophiles 'bIblI@faIlz Kj% 4 +bibs bIbz Ia%,Kj% 1 +bibulous 'bIbjUl@s OA$ 3 +bicameral ,baI'k&m@r@l OA$ 4 +bicarbonate ,baI'kAb@n@t L@% 4 +bicentenaries ,baIsen'tin@rIz Kj% 5 +bicentenary ,baIsen'tin@rI K8% 5 +bicentennial ,baIsen'tenI@l K6%,OA% 5 +bicentennials ,baIsen'tenI@lz Kj% 5 +biceps 'baIseps K9% 2 +bicker 'bIk@R I0% 22A,2C,3A +bickered 'bIk@d Ic%,Id% 22A,2C,3A +bickering 'bIk@rIN Ib% 32A,2C,3A +bickers 'bIk@z Ia% 22A,2C,3A +bicycle 'baIsIkl I2%,K6% 32A,2C +bicycled 'baIsIkld Ic%,Id% 32A,2C +bicycles 'baIsIklz Ia%,Kj% 32A,2C +bicycling 'baIsIklIN Ib% 32A,2C +bid bId J5%,Jc%,Jd%,K6% 12A,3A,6A,12A,13A,14,15B,17,18B +biddable 'bId@bl OA% 3 +bidden 'bIdn Jd% 212A,13A,17,18B +bidder 'bId@R K6% 2 +bidders 'bId@z Kj% 2 +bidding 'bIdIN Jb%,L@% 22A,3A,6A,12A,13A,14,15B,17,18B +bide baId H2% 1 +bided 'baIdId Hc%,Hd% 2 +bides baIdz Ha% 1 +bidet 'bideI K6% 2 +bidets 'bideIz Kj% 2 +biding 'baIdIN Hb% 2 +bids bIdz Ja%,Kj% 12A,3A,6A,12A,13A,14,15B,17,18B +biennial baI'enI@l K6%,OA% 4 +biennially baI'enI@lI Pu% 5 +biennials baI'enI@lz Kj% 3 +bier bI@R K6% 1 +biers bI@z Kj% 1 +biff bIf H0%,K6% 1 +biffed bIft Hc%,Hd% 1 +biffing 'bIfIN Hb% 2 +biffs bIfs Ha%,Kj% 1 +bifocal ,baI'f@Ukl OA% 3 +bifocals ,baI'f@Uklz Kj% 3 +bifurcate 'baIf@keIt J2%,OA$ 32A,6A +bifurcated 'baIf@keItId Jc%,Jd%,OA% 42A,6A +bifurcates 'baIf@keIts Ja% 32A,6A +bifurcating 'baIf@keItIN Jb% 42A,6A +bifurcation ,baIf@'keISn K6% 4 +bifurcations ,baIf@'keISnz Kj$ 4 +big bIg OE% 1 +big-boned bIg-'b@Und OA% 2 +bigamist 'bIg@mIst K6% 3 +bigamists 'bIg@mIsts Kj% 3 +bigamous 'bIg@m@s OA% 3 +bigamy 'bIg@mI L@% 3 +bigger 'bIg@R Or% 2 +biggest 'bIgIst Os% 2 +bight baIt K6$ 1 +bights baIts Kj$ 1 +bigot 'bIg@t K6% 2 +bigoted 'bIg@tId OA% 3 +bigotries 'bIg@trIz Mj$ 3 +bigotry 'bIg@trI M8% 3 +bigots 'bIg@ts Kj% 2 +bigwig 'bIgwIg K6% 2 +bigwigs 'bIgwIgz Kj% 2 +bijou 'biZu Ki$,OA% 2 +bike baIk I2%,K6% 1 +biked baIkt Ic%,Id% 1 +bikes baIks Ia%,Kj% 1 +biking 'baIkIN Ib% 2 +bikini bI'kinI K6% 3 +bikinis bI'kinIz Kj% 3 +bilabial ,baI'leIbI@l K6$,OA$ 4 +bilabials ,baI'leIbI@lz Kj$ 4 +bilateral ,baI'l&t@r@l OA% 4 +bilateralism ,baI'l&tr@lIz@m M6% 5 +bilateralisms ,baI'l&tr@lIz@mz Mj$ 5 +bilaterally ,baI'l&t@r@lI Pu% 5 +bilberries 'bIlb@rIz Kj% 3 +bilberry 'bIlb@rI K8% 3 +bile baIl L@% 1 +bile-duct 'baIl-dVkt K6% 2 +bile-ducts 'baIl-dVkts Kj% 2 +bilge bIldZ L@% 1 +bilge-water 'bIldZ-wOt@R L@% 3 +bilharzia ,bIl'hAzI@ L@% 4 +bilingual baI'lINgw@l K6%,OA% 3 +bilinguals baI'lINgw@lz Kj$ 3 +bilious 'bIlI@s OA% 3 +biliousness 'bIlI@sn@s L@% 4 +bilk bIlk H0% 16A,14 +bilked bIlkt Hc%,Hd% 16A,14 +bilking 'bIlkIN Hb% 26A,14 +bilks bIlks Ha% 16A,14 +bill bIl J0%,K6% 16A,14 +bill-poster 'bIl-p@Ust@R K6% 3 +bill-posters 'bIl-p@Ust@z Kj% 3 +bill-sticker 'bIl-stIk@R K6% 3 +bill-stickers 'bIl-stIk@z Kj% 3 +billboard 'bIlbOd K6% 2 +billboards 'bIlbOdz Kj% 2 +billed bIld Jc%,Jd% 16A,14 +billet 'bIlIt H0%,K6% 26A,14 +billet-doux ,bIleI-'du Ki% 3 +billeted 'bIlItId Hc%,Hd% 36A,14 +billeting 'bIlItIN Hb% 36A,14 +billets 'bIlIts Ha%,Kj% 26A,14 +billets-doux ,bIleI-'du Kj% 3 +billfold 'bIlf@Uld K6$ 2 +billfolds 'bIlf@Uldz Kj$ 2 +billhook 'bIlhUk K6% 2 +billhooks 'bIlhUks Kj% 2 +billiard-marker 'bIlI@d-mAk@R K6$ 5 +billiard-markers 'bIlI@d-mAk@z Kj$ 5 +billiard-player 'bIlI@d-pleI@R K6% 5 +billiard-players 'bIlI@d-pleI@z Kj% 5 +billiard-room 'bIlI@d-rum K6% 4 +billiard-rooms 'bIlI@d-rumz Kj% 4 +billiard-table 'bIlI@d-teIbl K6% 5 +billiard-tables 'bIlI@d-teIblz Kj% 5 +billiards 'bIlI@dz Lk% 3 +billies 'bIlIz Kj$ 2 +billing 'bIlIN Jb% 26A,14 +billingsgate 'bIlINzgeIt L@$ 3 +billion 'bIlI@N K6%,OA% 3 +billions 'bIlI@Nz Kj% 3 +billionth 'bIlI@nT K6%,OA% 3 +billionths 'bIlI@nTs Kj% 3 +billow 'bIl@U I0%,K6% 22C +billowed 'bIl@Ud Ic%,Id% 22C +billowing 'bIl@UIN Ib% 32C +billows 'bIl@Uz Ia%,Kj% 22C +billowy 'bIl@UI OA% 3 +bills bIlz Ja%,Kj% 16A,14 +billy 'bIlI K8% 2 +billy-goat 'bIlI-g@Ut K6% 3 +billy-goats 'bIlI-g@Uts Kj% 3 +billy-ho 'bIlI-h@U Ki$ 3 +billy-o 'bIlI-@U L@$ 3 +biltong 'bIlt0N L@$ 2 +bimetallic ,baIm@'t&lIk OA$ 4 +bimetallism ,baI'met@lIz@m L@$ 5 +bin bIn K6% 1 +binary 'baIn@rI OA% 3 +bind baInd J5%,M6% 12A,6A,14,15A,15B,16B,17 +binder 'baInd@R K6% 2 +binderies 'baInd@rIz Kj$ 3 +binders 'baInd@z Kj% 2 +bindery 'baInd@rI K8$ 3 +binding 'baIndIN Jb%,OA% 22A,6A,14,15A,15B,16B,17 +binds baIndz Ja%,Mj$ 12A,6A,14,15A,15B,16B,17 +bindweed 'baIndwid L@% 2 +bine baIn K6$ 1 +bines baInz Kj$ 1 +binge bIndZ K6% 1 +binges 'bIndZIz Kj% 2 +bingo 'bINg@U L@% 2 +binnacle 'bIn@kl K6$ 3 +binnacles 'bIn@klz Kj$ 3 +binoculars bI'n0kjUl@z Kj% 4 +binomial baI'n@UmI@l OA% 4 +bins bInz Kj% 1 +biochemistry ,baI@U'kemIstrI L@% 5 +biodegradable ,baI@UdI'greId@bl OA% 6 +biograph 'baI@grAf K6$ 3 +biographer baI'0gr@f@R K6% 4 +biographers baI'0gr@f@z Kj% 4 +biographic ,baI@'gr&fIk OA$ 4 +biographical ,baI@'gr&fIkl OA% 5 +biographies baI'0gr@fIz Mj% 4 +biographs 'baI@grAfs Kj$ 3 +biography baI'0gr@fI M8% 4 +biological ,baI@'l0dZIkl OA% 5 +biologically ,baI@'l0dZIklI Pu% 5 +biologist baI'0l@dZIst K6% 4 +biologists baI'0l@dZIsts Kj% 4 +biology baI'0l@dZI L@% 4 +bioscope 'baI@sk@Up K6% 3 +bioscopes 'baI@sk@Ups Kj% 3 +bipartisan ,baIpAtI'z&n OA% 4 +biped 'baIped K6% 2 +bipeds 'baIpedz Kj% 2 +biplane 'baIpleIn K6% 2 +biplanes 'baIpleInz Kj% 2 +birch b3tS H1%,M7% 16A +birch-rod 'b3tS-r0d K6% 2 +birch-rods 'b3tS-r0dz Kj% 2 +birched b3tSt Hc%,Hd% 16A +birches 'b3tSIz Ha%,Mj% 26A +birching 'b3tSIN Hb$ 26A +bird b3d K6% 1 +bird's-eye 'b3dz-eI Oq% 2 +bird-fancier 'b3d-f&nsI@R K6% 4 +bird-fanciers 'b3d-f&nsI@z Kj% 4 +birdcage 'b3dkeIdZ K6% 2 +birdcages 'b3dkeIdZIz Kj% 3 +birdlime 'b3dlaIm K6% 2 +birdlimes 'b3dlaImz Kj$ 2 +birdnesting 'b3dnestIN L@% 3 +birds b3dz Kj% 1 +birdwatcher 'b3dw0tS@R K6% 3 +birdwatchers 'b3dw0tS@z Kj% 3 +biretta bI'ret@ K6$ 3 +birettas bI'ret@z Kj$ 3 +biro 'baI@r@U K6% 2 +biros 'baI@r@Uz Kj% 2 +birth b3T M6% 1 +birth-control 'b3T-k@ntr@Ul L@% 3 +birthday 'b3TdeI K6% 2 +birthdays 'b3TdeIz Kj% 2 +birthmark 'b3TmAk K6% 2 +birthmarks 'b3TmAks Kj% 2 +birthplace 'b3TpleIs K6% 2 +birthplaces 'b3TpleIsIz Kj% 3 +birthrate 'b3TreIt K6% 2 +birthrates 'b3TreIts Kj% 2 +birthright 'b3TraIt K6% 2 +birthrights 'b3TraIts Kj$ 2 +births b3Ts Mj% 1 +biscuit 'bIskIt K6% 2 +biscuits 'bIskIts Kj% 2 +bisect baI'sekt H0% 26A +bisected baI'sektId Hc%,Hd% 36A +bisecting baI'sektIN Hb% 36A +bisection baI'sekSn L@$ 3 +bisects baI'sekts Ha% 26A +bisexual ,baI'sekSU@l K6%,OA% 4 +bisexuality ,baIsekSU'&lItI L@% 6 +bisexuals ,baI'sekSU@lz Kj% 4 +bishop 'bIS@p K6% 2 +bishopric 'bIS@prIk K6% 3 +bishoprics 'bIS@prIks Kj% 3 +bishops 'bIS@ps Kj% 2 +bismuth 'bIzm@T L@$ 2 +bison 'baIsn K9% 2 +bistro 'bistr@U K6% 2 +bistros 'bistr@Uz Kj% 2 +bit bIt Jc%,K6% 12A,3A,6A,15B +bitch bItS I1%,K7% 12A +bitched bItSt Ic%,Id% 12A +bitches 'bItSIz Ia%,Kj% 22A +bitchier 'bItSI@R Or% 3 +bitchiest 'bItSIIst Os% 3 +bitching 'bItSIN Ib% 22A +bitchy 'bItSI OD% 2 +bite baIt J5%,M6% 12A,3A,6A,15B +bites baIts Ja%,Mj% 12A,3A,6A,15B +biting 'baItIN Jb%,OA% 22A,3A,6A,15B +bitingly 'baItINlI Pu% 3 +bits bIts Kj% 1 +bitten 'bItn Jd% 22A,3A,6A,15B +bitter 'bIt@R M6%,OA% 2 +bitter-sweet ,bIt@-'swit OA% 3 +bitterly 'bIt@lI Pu% 3 +bittern 'bIt@n K6% 2 +bitterness 'bIt@n@s L@% 3 +bitterns 'bIt@nz Kj% 2 +bitters 'bIt@z Mj% 2 +bitumen 'bItjUm@n L@$ 3 +bituminous bI'tjumIn@s OA$ 4 +bivalve 'baIv&lv K6% 2 +bivalves 'baIv&lvz Kj% 2 +bivouac 'bIvU&k I5%,K6% 32A +bivouacked 'bIvU&kt Ic%,Id% 32A +bivouacking 'bIvU&kIN Ib% 42A +bivouacs 'bIvU&ks Ia$,Kj% 32A +biz bIz L@% 1 +bizarre bI'zAR OA% 2 +bizonal ,baI'z@Unl OA$ 3 +blab bl&b J4% 12A,6A,15B +blabbed bl&bd Jc%,Jd% 12A,6A,15B +blabber 'bl&b@R J0% 2 +blabbered 'bl&b@d Jc%,Jd% 2 +blabbering 'bl&b@rIN Jb% 3 +blabbermouth 'bl&b@maUT K6% 3 +blabbermouths 'bl&b@maUDz Kj% 3 +blabbers 'bl&b@z Ja% 2 +blabbing 'bl&bIN Jb% 22A,6A,15B +blabs bl&bz Ja% 12A,6A,15B +black bl&k H0%,M6%,OC% 16A +black-beetle 'bl&k-bitl K6% 3 +black-beetles 'bl&k-bitlz Kj% 3 +black-lead 'bl&k-led H0%,L@% 2 +black-leaded 'bl&k-ledId Hc%,Hd% 3 +black-leading 'bl&k-ledIN Hb% 3 +black-leads 'bl&k-ledz Ha% 2 +blackamoor 'bl&k@mOR K6$ 3 +blackamoors 'bl&k@mOz Kj$ 3 +blackball 'bl&kbOl H0% 2 +blackballed 'bl&kbOld Hc%,Hd% 2 +blackballing 'bl&kbOlIN Hb% 3 +blackballs 'bl&kbOlz Ha% 2 +blackberries 'bl&kb@rIz Kj% 3 +blackberry 'bl&kb@rI K8% 3 +blackbird 'bl&kb3d K6% 2 +blackbirds 'bl&kb3dz Kj% 2 +blackboard 'bl&kbOd K6% 2 +blackboards 'bl&kbOdz Kj% 2 +blackcurrant bl&k'kVr@nt K6% 3 +blackcurrants bl&k'kVr@nts Kj% 3 +blacked bl&kt Hc%,Hd% 16A +blacken 'bl&k@n J0% 22A,6A +blackened 'bl&k@nd Jc%,Jd% 22A,6A +blackening 'bl&k@nIN Jb% 32A,6A +blackens 'bl&k@nz Ja% 22A,6A +blacker 'bl&k@R Or% 2 +blackest 'bl&kIst Os% 2 +blackguard 'bl&gAd H0$,K6% 2 +blackguarded 'bl&gAdId Hc$,Hd$ 3 +blackguarding 'bl&gAdIN Hb$ 3 +blackguardly 'bl&g@dlI OA% 3 +blackguards 'bl&gAdz Ha$,Kj% 2 +blackhead 'bl&khed K6% 2 +blackheads 'bl&khedz Kj% 2 +blacking 'bl&kIN Hb%,L@% 26A +blackish 'bl&kIS OA% 2 +blackleg 'bl&kleg J4$,K6% 2 +blacklegged 'bl&klegd Jc$,Jd$ 2 +blacklegging 'bl&klegIN Jb$ 3 +blacklegs 'bl&klegz Ja$,Kj% 2 +blacklist 'bl&klIst H0%,K6% 2 +blacklisted 'bl&klIstId Hc%,Hd% 3 +blacklisting 'bl&klIstIN Hb% 3 +blacklists 'bl&klIsts Ha%,Kj% 2 +blackmail 'bl&kmeIl H0%,L@% 2 +blackmailed 'bl&kmeIld Hc%,Hd% 2 +blackmailer 'bl&kmeIl@R K6% 3 +blackmailers 'bl&kmeIl@z Kj% 3 +blackmailing 'bl&kmeIlIN Hb% 3 +blackmails 'bl&kmeIlz Ha% 2 +blackness 'bl&knIs L@% 2 +blackout 'bl&kaUt K6% 2 +blackouts 'bl&kaUts Kj$ 2 +blacks bl&ks Ha%,Mj% 16A +blacksmith 'bl&ksmIT K6% 2 +blacksmiths 'bl&ksmITs Kj% 2 +blackthorn 'bl&kTOn K6% 2 +blackthorns 'bl&kTOnz Kj$ 2 +blackwater 'bl&kwOt@R Oq$ 3 +bladder 'bl&d@R K6% 2 +bladders 'bl&d@z Kj% 2 +blade bleId K6% 1 +blades bleIdz Kj% 1 +blaeberries 'bleIb@rIz Kj$ 3 +blaeberry 'bleIb@rI K8$ 3 +blah blA L@% 1 +blame bleIm H2%,L@% 16A,14 +blamed bleImd Hc%,Hd% 16A,14 +blameless 'bleIml@s OA% 2 +blamelessly 'bleIml@slI Pu% 3 +blames bleImz Ha% 16A,14 +blameworthy 'bleImw3DI OA% 3 +blaming 'bleImIN Hb% 26A,14 +blanch blAntS J1% 12A,6A +blanched blAntSt Jc%,Jd% 12A,6A +blanches 'blAntSIz Ja% 22A,6A +blanching 'blAntSIN Jb% 22A,6A +blancmange bl@'m0nZ M6% 2 +blancmanges bl@'m0nZIz Mj$ 3 +bland bl&nd OC% 1 +blander 'bl&nd@R Or% 2 +blandest 'bl&ndIst Os% 2 +blandishment 'bl&ndISm@nt K6% 3 +blandishments 'bl&ndISm@nts Kj% 3 +blandly 'bl&ndlI Pu% 2 +blandness 'bl&ndn@s L@% 2 +blank bl&Nk M6%,OA% 1 +blanket 'bl&NkIt H0%,K6% 26A,14 +blanketed 'bl&NkItId Hc%,Hd% 36A,14 +blanketing 'bl&NkItIN Hb% 36A,14 +blankets 'bl&NkIts Ha%,Kj% 26A,14 +blankly 'bl&NklI Pu% 2 +blanks bl&Nks Mj% 1 +blare ble@R J2%,L@% 12A,2C,15B +blared ble@d Jc%,Jd% 12A,2C,15B +blares ble@z Ja% 12A,2C,15B +blaring 'ble@rIN Jb% 22A,2C,15B +blarney 'blAnI L@% 2 +blas_e 'blAzeI OA% 2 +blaspheme bl&s'fim J2% 22A,6A +blasphemed bl&s'fimd Jc%,Jd% 22A,6A +blasphemer bl&s'fim@R K6% 3 +blasphemers bl&s'fim@z Kj% 3 +blasphemes bl&s'fimz Ja% 22A,6A +blasphemies 'bl&sf@mIz Mj% 3 +blaspheming bl&s'fimIN Jb% 32A,6A +blasphemous 'bl&sf@m@s OA% 3 +blasphemously 'bl&sf@m@slI Pu% 4 +blasphemy 'bl&sf@mI M8% 3 +blast blAst H0%,M6% 12A,2C,6A,15B +blast-furnace 'blAst-f3nIs K6% 3 +blast-furnaces 'blAst-f3nIsIz Kj% 4 +blast-off 'blAst-0f K6% 2 +blast-offs 'blAst-0fs Kj% 2 +blasted 'blAstId Hc%,Hd%,Oq% 22A,2C,6A,15B +blasting 'blAstIN Hb% 22A,2C,6A,15B +blasts blAsts Ha%,Mj% 12A,2C,6A,15B +blatant 'bleItnt OA% 2 +blatantly 'bleItntlI Pu% 3 +blather 'bl&D@R I0%,M6$ 2 +blathered 'bl&D@d Ic%,Id% 2 +blathering 'bl&D@rIN Ib% 3 +blathers 'bl&D@z Ia%,Mj$ 2 +blaze bleIz J2%,K6% 12A,2C,6A,15B +blazed bleIzd Jc%,Jd% 12A,2C,6A,15B +blazer 'bleIz@R K6% 2 +blazers 'bleIz@z Kj% 2 +blazes 'bleIzIz Ja%,Kj% 22A,2C,6A,15B +blazing 'bleIzIN Jb%,OA% 22A,2C,6A,15B +blazon 'bleIzn H0%,K6% 2 +blazoned 'bleIznd Hc%,Hd% 2 +blazoning 'bleIznIN Hb% 3 +blazonries 'bleIz@nrIz Kj$ 3 +blazonry 'bleIz@nrI K8$ 3 +blazons 'bleIznz Ha%,Kj% 2 +bleach blitS J1%,K7% 12A,6A +bleached blitSt Jc%,Jd% 12A,6A +bleachers 'blitS@z Kj$ 2 +bleaches 'blitSIz Ja%,Kj% 22A,6A +bleaching 'blitSIN Jb% 22A,6A +bleaching-powder 'blitSIN-paUd@R K6% 4 +bleaching-powders 'blitSIN-paUd@z Kj% 4 +bleak blik OC% 1 +bleaker 'blik@R Or% 2 +bleakest 'blikIst Os% 2 +bleakly 'bliklI Pu% 2 +bleary 'blI@rI OA% 2 +bleary-eyed ,blI@rI-'aId OA% 3 +bleat blit J0%,K6% 12A,6A,15B +bleated 'blitId Jc%,Jd% 22A,6A,15B +bleating 'blitIN Jb% 22A,6A,15B +bleats blits Ja%,Kj% 12A,6A,15B +bled bled Jc%,Jd% 12A,2C,3A,6A,14 +bleed blid J5% 12A,2C,3A,6A,14 +bleeding 'blidIN Jb% 22A,2C,3A,6A,14 +bleeds blidz Ja% 12A,2C,3A,6A,14 +bleep blip I0%,K6% 1 +bleeped blipt Ic%,Id% 1 +bleeping 'blipIN Ib% 2 +bleeps blips Ia%,Kj% 1 +blemish 'blemIS H1%,M7% 26A +blemished 'blemISt Hc%,Hd% 26A +blemishes 'blemISIz Ha%,Mj% 36A +blemishing 'blemISIN Hb% 36A +blench blentS I1% 12A +blenched blentSt Ic%,Id% 12A +blenches 'blentSIz Ia% 22A +blenching 'blentSIN Ib% 22A +blend blend J0%,K6% 12A,3A,6A +blended 'blendId Jc%,Jd% 22A,3A,6A +blending 'blendIN Jb% 22A,3A,6A +blends blendz Ja%,Kj% 12A,3A,6A +blent blent Jc$,Jd$ 12A,3A,6A +bless bles H1% 16A +blessed 'blesId OA% 2 +blessed blest Hc%,Hd% 16A +blessedness 'blesIdn@s L@% 3 +blesses 'blesIz Ha% 26A +blessing 'blesIN Hb%,K6% 26A +blessings 'blesINz Kj% 2 +blest blest Hc%,Hd% 16A +blether 'bleD@R I0%,L@% 22A,2C +blethered 'bleD@d Ic%,Id% 22A,2C +blethering 'bleD@rIN Ib% 32A,2C +blethers 'bleD@z Ia% 22A,2C +blew blu Jc% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blight blaIt H0%,M6% 16A +blighted 'blaItId Hc%,Hd% 26A +blighter 'blaIt@R K6% 2 +blighters 'blaIt@z Kj% 2 +blighting 'blaItIN Hb% 26A +blights blaIts Ha%,Mj% 16A +blimey 'blaImI W-% 2 +blimp blImp K6$ 1 +blimps blImps Kj$ 1 +blind blaInd H0%,K6%,OA% 16A,14 +blinded 'blaIndId Hc%,Hd% 26A,14 +blinders 'blaInd@z Kj% 2 +blindfold 'blaIndf@Uld H0%,K6%,OA% 26A +blindfolded 'blaIndf@UldId Hc%,Hd% 36A +blindfolding 'blaIndf@UldIN Hb$ 36A +blindfolds 'blaIndf@Uldz Ha%,Kj% 26A +blinding 'blaIndIN Hb% 26A,14 +blindly 'blaIndlI Pu% 2 +blindman's buff ,blaIndm&nz 'bVf L@% 3 +blindness 'blaIndn@s L@% 2 +blinds blaIndz Ha%,Kj% 16A,14 +blink blINk J0%,K6% 12A,2C,6A,15B +blinked blINkt Jc%,Jd% 12A,2C,6A,15B +blinkers 'blINk@z Kj% 2 +blinking 'blINkIN Jb%,OA% 22A,2C,6A,15B +blinks blINks Ja%,Kj% 12A,2C,6A,15B +blip blIp K6% 1 +blips blIps Kj% 1 +bliss blIs L@% 1 +blissful 'blIsf@l OA% 2 +blissfully 'blIsf@lI Pu% 3 +blister 'blIst@R J0%,K6% 22A,6A +blistered 'blIst@d Jc%,Jd% 22A,6A +blistering 'blIst@rIN Jb% 32A,6A +blisters 'blIst@z Ja%,Kj% 22A,6A +blithe blaID OA% 1 +blithely 'blaIDlI Pu% 2 +blithering 'blID@rIN OA% 3 +blithesome 'blaIDs@m OA$ 2 +blitz blIts H1%,K7% 16A +blitzed blItst Hc%,Hd% 16A +blitzes 'blItsIz Ha$,Kj$ 26A +blitzing 'blItsIN Hb$ 26A +blizzard 'blIz@d K6% 2 +blizzards 'blIz@dz Kj% 2 +bloated 'bl@UtId OA% 2 +bloater 'bl@Ut@R K6% 2 +bloaters 'bl@Ut@z Kj% 2 +blob bl0b K6% 1 +blobs bl0bz Kj% 1 +bloc bl0k K6% 1 +block bl0k H0%,K6% 16A,15B +blockade bl0'keId H2%,K6% 26A +blockade-runner bl0'keId-rVn@R K6% 4 +blockade-runners bl0'keId-rVn@z Kj% 4 +blockaded bl0'keIdId Hc%,Hd% 36A +blockades bl0'keIdz Ha%,Kj% 26A +blockading bl0'keIdIN Hb% 36A +blockage 'bl0kIdZ K6% 2 +blockages 'bl0kIdZIz Kj% 3 +blockbuster 'bl0kbVst@R K6% 3 +blockbusters 'bl0kbVst@z Kj% 3 +blocked bl0kt Hc%,Hd% 16A,15B +blockhead 'bl0khed K6% 2 +blockheads 'bl0khedz Kj% 2 +blockhouse 'bl0khaUs K6$ 2 +blockhouses 'bl0khaUzIz Kj$ 3 +blocking 'bl0kIN Hb% 26A,15B +blocks bl0ks Ha%,Kj% 16A,15B +blocs bl0ks Kj% 1 +bloke bl@Uk K6% 1 +blokes bl@Uks Kj% 1 +blond bl0nd K6$,OC% 1 +blonde bl0nd K6%,OA% 1 +blonder 'bl0nd@R Or% 2 +blondes bl0ndz Kj% 1 +blondest 'bl0ndIst Os% 2 +blonds bl0ndz Kj$ 1 +blood blVd H0%,M6% 16A +blood-bath 'blVd-bAT K6% 2 +blood-baths 'blVd-bADz Kj% 2 +blood-donor 'blVd-d@Un@R K6% 3 +blood-donors 'blVd-d@Un@z Kj% 3 +blood-group 'blVd-grup K6% 2 +blood-groups 'blVd-grups Kj% 2 +blood-heat 'blVd-hit L@% 2 +blood-letting 'blVd-letIN M6% 3 +blood-lettings 'blVd-letINz Mj$ 3 +blood-money 'blVd-mVnI L@% 3 +blood-poisoning 'blVd-poIznIN L@% 4 +blood-pressure 'blVd-preS@R M6% 3 +blood-pressures 'blVd-preS@z Mj$ 3 +blood-relation ,blVd-rI'leISn K6% 4 +blood-relations ,blVd-rI'leISnz Kj% 4 +blood-sports 'blVd-spOts Kj% 2 +blood-transfusion ,blVd-tr&ns'fjuZn K6% 4 +blood-transfusions ,blVd-tr&ns'fjuZnz Kj% 4 +blood-type 'blVd-taIp K6% 2 +blood-types 'blVd-taIps Kj% 2 +blood-vessel 'blVd-vesl K6% 3 +blood-vessels 'blVd-veslz Kj% 3 +bloodcurdling 'blVdk3dlIN OA% 3 +blooded 'blVdId Hc%,Hd% 26A +bloodhound 'blVdhaUnd K6% 2 +bloodhounds 'blVdhaUndz Kj% 2 +bloodier 'blVdI@R Or% 3 +bloodiest 'blVdIIst Os% 3 +blooding 'blVdIN Hb$ 26A +bloodless 'blVdl@s OA% 2 +bloodlessly 'blVdl@slI Pu% 3 +bloodlust 'blVdlVst L@% 2 +bloods blVdz Ha$,Mj$ 16A +bloodshed 'blVdSed K6% 2 +bloodsheds 'blVdSedz Kj$ 2 +bloodshot 'blVdS0t OA% 2 +bloodstain 'blVdsteIn K6% 2 +bloodstained 'blVdsteInd OA% 2 +bloodstains 'blVdsteInz Kj% 2 +bloodstock 'blVdst0k K6% 2 +bloodstocks 'blVdst0ks Kj$ 2 +bloodsucker 'blVdsVk@R K6% 3 +bloodsuckers 'blVdsVk@z Kj% 3 +bloodthirstiness 'blVdT3stIn@s L@% 4 +bloodthirsty 'blUdT3stI OA% 3 +bloody 'blVdI OD%,Pu% 2 +bloody-minded ,blVdI-'maIndId OA% 4 +bloom blum I0%,M6% 12A,2C +bloomed blumd Ic%,Id% 12A,2C +bloomer 'blum@R K6% 2 +bloomers 'blum@z Kj% 2 +blooming 'blumIN Ib%,OA% 22A,2C +blooms blumz Ia%,Mj% 12A,2C +blossom 'bl0s@m I0%,M6% 22A,2C +blossomed 'bl0s@md Ic%,Id% 22A,2C +blossoming 'bl0s@mIN Ib% 32A,2C +blossoms 'bl0s@mz Ia%,Mj% 22A,2C +blot bl0t H4%,K6% 16A,15B +blotch bl0tS K7% 1 +blotches 'bl0tSIz Kj% 2 +blots bl0ts Ha%,Kj% 16A,15B +blotted 'bl0tId Hc%,Hd% 26A,15B +blotter 'bl0t@R K6% 2 +blotters 'bl0t@z Kj% 2 +blotting 'bl0tIN Hb% 26A,15B +blotting-paper 'bl0tIN-peIp@R K6% 4 +blotting-papers 'bl0tIN-peIp@z Kj$ 4 +blotto 'bl0t@U Op% 2 +blouse blaUz K6% 1 +blouses 'blaUzIz Kj% 2 +blow bl@U J5%,K6% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blow-dried 'bl@U-draId Hc%,Hd% 26A +blow-dries 'bl@U-draIz Ha% 26A +blow-dry 'bl@U-draI H3% 26A +blow-drying 'bl@U-draIIN Hb% 36A +blow-up 'bl@U-Vp K6% 2 +blow-ups 'bl@U-Vps Kj$ 2 +blowback 'bl@Ub&k K6% 2 +blowbacks 'bl@Ub&ks Kj$ 2 +blowed bl@Ud Jd% 16A,15A +blower 'bl@U@R K6% 2 +blowers 'bl@U@z Kj% 2 +blowflies 'bl@UflaIz Kj% 2 +blowfly 'bl@UflaI K8% 2 +blowhole 'bl@Uh@Ul K6% 2 +blowholes 'bl@Uh@Ulz Kj% 2 +blowing 'bl@UIN Jb% 22A,2B,2C,2E,3A,6A,12A,15A,15B +blowing-up ,bl@UIN-'Vp K6% 3 +blowing-ups ,bl@UIN-'Vps Kj$ 3 +blowlamp 'bl@Ul&mp K6% 2 +blowlamps 'bl@Ul&mps Kj% 2 +blown bl@Un Jd% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blowout 'bl@UaUt K6% 2 +blowouts 'bl@UaUts Kj% 2 +blowpipe 'bl@UpaIp K6% 2 +blowpipes 'bl@UpaIps Kj% 2 +blows bl@Uz Ja%,Kj% 12A,2B,2C,2E,3A,6A,12A,15A,15B +blowtorch 'bl@UtOtS K7% 2 +blowtorches 'bl@UtOtSIz Kj% 3 +blowzy 'blaUzI OA% 2 +blubber 'blVb@R J0%,L@% 22A,15B +blubbered 'blVb@d Jc%,Jd% 22A,15B +blubbering 'blVb@rIN Jb% 32A,15B +blubbers 'blVb@z Ja% 22A,15B +bludgeon 'blVdZ@n H0%,K6$ 26A,14 +bludgeoned 'blVdZ@nd Hc%,Hd% 26A,14 +bludgeoning 'blVdZ@nIN Hb% 36A,14 +bludgeons 'blVdZ@nz Ha%,Kj$ 26A,14 +blue blu H2%,M6%,OB% 1 +blue-collar 'blu-k0l@R OA% 3 +blue-jacket 'blu-dZ&kIt K6$ 3 +blue-jackets 'blu-dZ&kIts Kj$ 3 +blue-pencil blu-'pensIl H4% 3 +blue-pencilled blu-'pensIld Hc%,Hd% 3 +blue-pencilling blu-'pensIlIN Hb% 4 +blue-pencils blu-'pensIlz Ha% 3 +bluebell 'blubel K6% 2 +bluebells 'blubelz Kj% 2 +bluebottle 'blub0tl K6% 3 +bluebottles 'blub0tlz Kj% 3 +blued blud Hc%,Hd% 1 +blueprint 'bluprInt K6% 2 +blueprints 'bluprInts Kj% 2 +bluer 'blu@R Or% 2 +blues bluz Ha%,Mj% 1 +bluest 'bluIst Os% 2 +bluestocking 'blust0kIN K6% 3 +bluestockings 'blust0kINz Kj% 3 +bluff blVf J0%,M6%,OA% 12A,6A,14,15B +bluffed blVft Jc%,Jd% 12A,6A,14,15B +bluffer 'blVf@R K6% 2 +bluffers 'blVf@z Kj% 2 +bluffing 'blVfIN Jb% 22A,6A,14,15B +bluffly 'blVflI Pu% 2 +bluffness 'blVfn@s L@$ 2 +bluffs blVfs Ja%,Mj$ 12A,6A,14,15B +bluing 'bluIN Hb% 2 +bluish 'bluIS OA% 2 +blunder 'blVnd@R J0%,K6% 22A,2C,3A +blunderbuss 'blVnd@bVs K7% 3 +blunderbusses 'blVnd@bVsIz Kj% 4 +blundered 'blVnd@d Jc%,Jd% 22A,2C,3A +blunderer 'blVnd@r@R K6% 3 +blunderers 'blVnd@r@z Kj% 3 +blundering 'blVnd@rIN Jb% 32A,2C,3A +blunders 'blVnd@z Ja%,Kj% 22A,2C,3A +blunt blVnt H0%,OC% 16A +blunted 'blVntId Hc%,Hd% 26A +blunter 'blVnt@R Or% 2 +bluntest 'blVntIst Os% 2 +blunting 'blVntIN Hb% 26A +bluntly 'blVntlI Pu% 2 +bluntness 'blVntn@s L@% 2 +blunts blVnts Ha% 16A +blur bl3R J4%,K6% 12A,6A +blurb bl3b M6% 1 +blurbs bl3bz Mj$ 1 +blurred bl3d Jc%,Jd% 12A,6A +blurring 'bl3rIN Jb% 22A,6A +blurs bl3z Ja%,Kj$ 12A,6A +blurt bl3t H0% 115B +blurted 'bl3tId Hc%,Hd% 215B +blurting 'bl3tIN Hb% 215B +blurts bl3ts Ha% 115B +blush blVS I1%,K7% 12A,2C,3A,4B +blushed blVSt Ic%,Id% 12A,2C,3A,4B +blushes 'blVSIz Ia%,Kj% 22A,2C,3A,4B +blushing 'blVSIN Ib%,OA% 22A,2C,3A,4B +blushingly 'blVSINlI Pu% 3 +bluster 'blVst@R J0%,M6% 22A,2C,15B +blustered 'blVst@d Jc%,Jd% 22A,2C,15B +blustering 'blVst@rIN Jb% 32A,2C,15B +blusters 'blVst@z Ja%,Mj% 22A,2C,15B +blustery 'blVst@rI OA% 3 +bo b@U W-% 1 +bo'sn 'b@Usn K6$ 2 +bo'sns 'b@Usnz Kj$ 2 +bo'sun 'b@Usn K6% 2 +bo'suns 'b@Usnz Kj$ 2 +boa 'b@U@ K6% 2 +boa-constrictor 'b@U@-k@n,strIkt@R K6% 5 +boa-constrictors 'b@U@-k@n,strIkt@z Kj% 5 +boar bOR K6% 1 +board bOd J0%,K6% 13A,6A,15B +boarded 'bOdId Jc%,Jd% 23A,6A,15B +boarder 'bOd@R K6% 2 +boarders 'bOd@z Kj% 2 +boarding 'bOdIN Jb%,L@% 23A,6A,15B +boarding-card 'bOdIN-kAd K6% 3 +boarding-cards 'bOdIN-kAdz Kj% 3 +boarding-house 'bOdIN-haUs K6% 3 +boarding-houses 'bOdIN-haUzIz Kj% 4 +boarding-school 'bOdIN-skul K6% 3 +boarding-schools 'bOdIN-skulz Kj% 3 +boardroom 'bOdrum K6% 2 +boardrooms 'bOdrumz Kj% 2 +boards bOdz Ja%,Kj% 13A,6A,15B +boardwalk 'bOdwOk K6% 2 +boardwalks 'bOdwOks Kj$ 2 +boars bOz Kj% 1 +boas 'b@U@z Kj% 2 +boast b@Ust J0%,K6% 12A,3A,3B,6A +boasted 'b@UstId Jc%,Jd% 22A,3A,3B,6A +boaster 'b@Ust@R K6% 2 +boasters 'b@Ust@z Kj% 2 +boastful 'b@Ustf@l OA% 2 +boastfully 'b@Ustf@lI Pu% 3 +boasting 'b@UstIN Jb% 22A,3A,3B,6A +boasts b@Usts Ja%,Kj% 12A,3A,3B,6A +boat b@Ut I0$,K6% 12A,2C +boat-hook 'b@Ut-hUk K6% 2 +boat-hooks 'b@Ut-hUks Kj% 2 +boat-house 'b@Ut-haUs K6% 2 +boat-houses 'b@Ut-haUzIz Kj% 3 +boat-race 'b@Ut-reIs K6% 2 +boat-races 'b@Ut-reIsIz Kj% 3 +boat-train 'b@Ut-treIn K6% 2 +boat-trains 'b@Ut-treInz Kj% 2 +boated 'b@UtId Ic$,Id$ 22A,2C +boater 'b@Ut@R K6% 2 +boaters 'b@Ut@z Kj% 2 +boating 'b@UtIN Ib% 22A,2C +boatman 'b@Utm@n Ki% 2 +boatmen 'b@Utm@n Kj% 2 +boats b@Uts Ia%,Kj% 12A,2C +boatswain 'b@Usn K6$ 2 +boatswains 'b@Usnz Kj$ 2 +bob b0b J4%,K9% 12C,6A +bobbed b0bd Jc%,Jd% 12C,6A +bobbies 'b0bIz Kj% 2 +bobbin 'b0bIn K6% 2 +bobbing 'b0bIN Jb% 22C,6A +bobbins 'b0bInz Kj% 2 +bobby 'b0bI K8% 2 +bobby-socks 'b0bI-s0ks Kj$ 3 +bobby-sox 'b0bI-s0ks Kj$ 3 +bobby-soxer 'b0bI-s0ks@R K6$ 4 +bobby-soxers 'b0bI-s0ks@z Kj$ 4 +bobolink 'b0b@lINk K6$ 3 +bobolinks 'b0b@lINks Kj$ 3 +bobs b0bz Ja%,Kj% 12C,6A +bobsled 'b0bsled K6$ 2 +bobsleds 'b0bsledz Kj$ 2 +bobsleigh 'b0bsleI K6% 2 +bobsleighs 'b0bsleIz Kj% 2 +bobtail 'b0bteIl K6% 2 +bobtails 'b0bteIlz Kj% 2 +bode b@Ud J2% 112B,13B +boded 'b@UdId Jc%,Jd% 212B,13B +bodes b@Udz Ja% 112B,13B +bodice 'b0dIs K6% 2 +bodices 'b0dIsIz Kj% 3 +bodied 'b0dId Ot% 2 +bodies 'b0dIz Mj% 2 +bodily 'b0d@lI OA%,Pu% 3 +boding 'b@UdIN Jb%,L@% 212B,13B +bodkin 'b0dkIn K6$ 2 +bodkins 'b0dkInz Kj$ 2 +body 'b0dI M8* 2 +body-servant 'b0dI-s3v@nt K6$ 4 +body-servants 'b0dI-s3v@nts Kj$ 4 +body-snatcher 'b0dI-sn&tS@R K6% 4 +body-snatchers 'b0dI-sn&tS@z Kj% 4 +bodyguard 'b0dIgAd K6% 3 +bodyguards 'b0dIgAdz Kj% 3 +bodywork 'b0dIw3k K6% 3 +bodyworks 'b0dIw3ks Kj$ 3 +boffin 'b0fIn K6% 2 +boffins 'b0fInz Kj% 2 +bog b0g J4%,K6% 12E,15B +bogey 'b@UgI K6% 2 +bogeyman 'b@UgIm&n Ki% 3 +bogeymen 'b@UgImen Kj% 3 +bogeys 'b@UgIz Kj% 2 +bogged b0gd Jc%,Jd% 12E,15B +boggier 'b0gI@R Or$ 3 +boggiest 'b0gIIst Os$ 3 +bogging 'b0gIN Jb% 22E,15B +boggle 'b0gl I2% 22A,3A +boggled 'b0gld Ic%,Id% 22A,3A +boggles 'b0glz Ia% 22A,3A +boggling 'b0glIN Ib% 22A,3A +boggy 'b0gI OD% 2 +bogie 'b@UgI K6$ 2 +bogies 'b@UgIz Kj$ 2 +bogs b0gz Ja%,Kj% 12E,15B +bogus 'b@Ug@s OA% 2 +bogy 'b@UgI K8$ 2 +boh b@U W-% 1 +bohemian b@U'himI@n K6%,OA% 4 +bohemians b@U'himI@nz Kj% 4 +boil boIl J0%,K6% 12A,2B,2C,2D,6A,15B,22 +boiled boIld Jc%,Jd% 12A,2B,2C,2D,6A,15B,22 +boiler 'boIl@R K6% 2 +boilers 'boIl@z Kj% 2 +boilersuit 'boIl@sut K6% 3 +boilersuits 'boIl@suts Kj% 3 +boiling 'boIlIN Jb% 22A,2B,2C,2D,6A,15B,22 +boiling-point 'boIlIN-poInt K6% 3 +boiling-points 'boIlIN-poInts Kj% 3 +boils boIlz Ja%,Kj% 12A,2B,2C,2D,6A,15B,22 +boisterous 'boIst@r@s OA% 3 +boisterously 'boIst@r@slI Pu% 4 +boisterousness 'boIst@r@snIs L@% 4 +bold b@Uld OC% 1 +bolder 'b@Uld@R Or% 2 +boldest 'b@UldIst Os% 2 +boldly 'b@UldlI Pu% 2 +boldness 'b@Uldn@s L@% 2 +bole b@Ul K6$ 1 +bolero b@'le@r@U K6$ 3 +boleros b@'le@r@Uz Kj$ 3 +boles b@Ulz Kj$ 1 +boll b@Ul K6$ 1 +bollard 'b0l@d K6% 2 +bollards 'b0l@dz Kj% 2 +bollock 'b0l@k K6$ 2 +bollocks 'b0l@ks Kj% 2 +bolls b@Ulz Kj$ 1 +boloney b@'l@UnI L@$ 3 +bolshy 'b0lSI OA% 2 +bolster 'b@Ulst@R H0%,K6% 26A,15B +bolstered 'b@Ulst@d Hc%,Hd% 26A,15B +bolstering 'b@Ulst@rIN Hb% 36A,15B +bolsters 'b@Ulst@z Ha%,Kj% 26A,15B +bolt b@Ult J0%,K6%,Pu% 12A,2C,6A,15B +bolt-hole 'b@Ult-h@Ul K6% 2 +bolt-holes 'b@Ult-h@Ulz Kj% 2 +bolted 'b@UltId Jc%,Jd% 22A,2C,6A,15B +bolting 'b@UltIN Jb% 22A,2C,6A,15B +bolts b@Ults Ja%,Kj% 12A,2C,6A,15B +bomb b0m J0%,K6% 12C,6A,15B +bomb-proof 'b0m-pruf OA% 2 +bomb-sight 'b0m-saIt K6% 2 +bomb-sights 'b0m-saIts Kj% 2 +bomb-site 'b0m-saIt K6% 2 +bomb-sites 'b0m-saIts Kj% 2 +bombard b0m'bAd H0% 26A,14 +bombarded b0m'bAdId Hc%,Hd% 36A,14 +bombardier ,b0mb@'dI@R K6% 4 +bombardiers ,b0mb@'dI@z Kj% 4 +bombarding b0m'bAdIN Hb% 36A,14 +bombardment b0m'bAdm@nt M6% 3 +bombardments b0m'bAdm@nts Mj% 3 +bombards b0m'bAdz Ha% 26A,14 +bombast 'b0mb&st L@% 2 +bombastic b0m'b&stIk OA% 3 +bombastically b0m'b&stIklI Pu% 4 +bombed b0md Jc%,Jd% 12C,6A,15B +bomber 'b0m@R K6% 2 +bombers 'b0m@z Kj% 2 +bombing 'b0mIN Jb% 22C,6A,15B +bombs b0mz Ja%,Kj% 12C,6A,15B +bombshell 'b0mSel K6% 2 +bombshells 'b0mSelz Kj% 2 +bon mot ,b0n 'm@U Ki% 2 +bona fide ,b@Un@ 'faIdI OA%,Pu$ 4 +bona fides ,b@Un@ 'faIdIz Kj$ 4 +bonanza b@'n&nz@ K6% 3 +bonanzas b@'n&nz@z Kj$ 3 +bonbon 'b0nb0n K6% 2 +bonbons 'b0nb0nz Kj% 2 +bond b0nd H0%,K6% 16A +bond- b0nd- U-% 1 +bond-holder 'b0nd-h@Uld@R K6% 3 +bond-holders 'b0nd-h@Uld@z Kj% 3 +bondage 'b0ndIdZ L@% 2 +bonded 'b0ndId Hc%,Hd% 26A +bonding 'b0ndIN Hb% 26A +bonds b0ndz Ha%,Kj% 16A +bone b@Un H2%,M6% 16A +bone-dry b@Un-'draI OA% 2 +bone-head 'b@Un-hed K6% 2 +bone-heads 'b@Un-hedz Kj% 2 +bone-idle b@Un-'aIdl OA% 3 +bone-lazy b@Un-'leIzI OA$ 3 +bone-setter 'b@Un-set@R K6% 3 +bone-setters 'b@Un-set@z Kj% 3 +boned b@Und Hc%,Hd% 16A +boneless 'b@UnlIs OA% 2 +bonemeal 'b@Unmil K6% 2 +bonemeals 'b@Unmilz Kj$ 2 +boner 'b@Un@R K6$ 2 +boners 'b@Un@z Kj$ 2 +bones b@Unz Ha%,Mj% 16A +boneshaker 'b@UnSeIk@R K6% 3 +boneshakers 'b@UnSeIk@z Kj% 3 +bonfire 'b0nfaI@R K6% 2 +bonfires 'b0nfaI@z Kj% 2 +bongo 'b0Ng@U K6% 2 +bongos 'b0Ng@Uz Kj% 2 +bonhomie 'b0n@mI L@% 3 +bonier 'b@UnI@R Or% 3 +boniest 'b@UnIIst Os% 3 +boning 'b@UnIN Hb% 26A +bonito b@'nit@U K6$ 3 +bonitos b@'nit@Uz Kj$ 3 +bonkers 'b0Nk@z Op% 2 +bonnet 'b0nIt K6% 2 +bonnets 'b0nIts Kj% 2 +bonnier 'b0nI@R Or% 3 +bonniest 'b0nIIst Os% 3 +bonnily 'b0nIlI Pu% 3 +bonny 'b0nI OD% 2 +bons mots ,b0n 'm@Uz Kj% 2 +bonus 'b@Un@s K7% 2 +bonuses 'b@Un@sIz Kj% 3 +bony 'b@UnI OD% 2 +boo bu J0%,K6% 12A,6A,15B +boob bub I0%,K6% 1 +boobed bubd Ic%,Id% 1 +boobies 'bubIz Kj% 2 +boobing 'bubIN Ib% 2 +boobs bubz Ia%,Kj% 1 +booby 'bubI K8% 2 +booby-trap 'bubI-tr&p K6% 3 +booby-traps 'bubI-tr&ps Kj% 3 +booed bud Jc%,Jd% 12A,6A,15B +boogie 'bugI M6% 2 +boogie-woogie ,bugI-'wugI M6$ 4 +boogie-woogies ,bugI-'wugIz Mj$ 4 +boogies 'bugIz Mj% 2 +booing 'buIN Jb% 22A,6A,15B +book bUk H0%,K6* 16A +book-end 'bUk-end K6% 2 +book-ends 'bUk-endz Kj% 2 +book-keeper 'bUk-kip@R K6% 3 +book-keepers 'bUk-kip@z Kj% 3 +bookable 'bUk@bl OA% 3 +bookcase 'bUk+keIs K6% 2 +bookcases 'bUk+keIsIz Kj% 3 +bookclub 'bUk+klVb K6% 2 +bookclubs 'bUk+klVbz Kj% 2 +booked bUkt Hc%,Hd% 16A +bookie 'bUkI K6% 2 +bookies 'bUkIz Kj% 2 +booking 'bUkIN Hb%,K6% 26A +bookings 'bUkINz Kj% 2 +bookish 'bUkIS OA% 2 +bookishness 'bUkISn@s L@% 3 +bookkeeper 'bUk+kip@R K6% 3 +bookkeepers 'bUk+kip@z Kj% 3 +bookkeeping 'bUk+kipIN L@% 3 +booklet 'bUklIt K6% 2 +booklets 'bUklIts Kj% 2 +bookmaker 'bUkmeIk@R K6% 3 +bookmakers 'bUkmeIk@z Kj% 3 +bookmark 'bUkmAk K6% 2 +bookmarker 'bUkmAk@R K6$ 3 +bookmarkers 'bUkmAk@z Kj$ 3 +bookmarks 'bUkmAks Kj% 2 +bookmobile 'bUkm@Ubil K6$ 3 +bookmobiles 'bUkm@Ubilz Kj$ 3 +books bUks Ha%,Kj% 16A +bookseller 'bUksel@R K6% 3 +booksellers 'bUksel@z Kj% 3 +bookshop 'bUkS0p K6% 2 +bookshops 'bUkS0ps Kj% 2 +bookstall 'bUkstOl K6% 2 +bookstalls 'bUkstOlz Kj% 2 +bookworm 'bUkw3m K6% 2 +bookworms 'bUkw3mz Kj% 2 +boom bum J0%,K6% 12A,2C,15B +boomed bumd Jc%,Jd% 12A,2C,15B +boomerang 'bum@r&N K6% 3 +boomerangs 'bum@r&Nz Kj% 3 +booming 'bumIN Jb% 22A,2C,15B +booms bumz Ja%,Kj% 12A,2C,15B +boon bun K6%,OA$ 1 +boons bunz Kj$ 1 +boor bU@R K6% 1 +boorish 'bU@rIS OA% 2 +boorishly 'bU@rISlI Pu% 3 +boorishness 'bU@rISn@s L@% 3 +boors bU@z Kj% 1 +boos buz Ja%,Kj% 12A,6A,15B +boost bust H0%,K6% 16A +boosted 'bustId Hc%,Hd% 26A +booster 'bust@R K6% 2 +boosters 'bust@z Kj% 2 +boosting 'bustIN Hb% 26A +boosts busts Ha%,Kj% 16A +boot but H0%,K6% 16A,15A,15B +booted 'butId Hc%,Hd%,OA% 26A,15A,15B +bootee bu'ti K6% 2 +bootees bu'tiz Kj% 2 +booth buD K6% 1 +booths buDz Kj% 1 +booting 'butIN Hb% 26A,15A,15B +bootlace 'butleIs K6% 2 +bootlaces 'butleIsIz Kj% 3 +bootleg 'butleg H4$ 2 +bootlegged 'butlegd Hc$,Hd$ 2 +bootlegger 'butleg@R K6% 3 +bootleggers 'butleg@z Kj% 3 +bootlegging 'butlegIN Hb% 3 +bootlegs 'butlegz Ha$ 2 +bootless 'butlIs OA% 2 +boots buts Ha%,Kj% 16A,15A,15B +booty 'butI L@% 2 +booze buz I2%,L@% 12A,2C +booze-up 'buz-Vp K6% 2 +booze-ups 'buz-Vps Kj% 2 +boozed buzd Ic%,Id% 12A,2C +boozer 'buz@R K6% 2 +boozers 'buz@z Kj% 2 +boozes 'buzIz Ia% 22A,2C +boozier 'buzI@R Or% 3 +booziest 'buzIIst Os% 3 +boozing 'buzIN Ib% 22A,2C +boozy 'buzI OD% 2 +bopeep ,b@U'pip L@$ 2 +boracic b@'r&sIk OA% 3 +borage 'b0rIdZ L@$ 2 +borax 'bOr&ks L@$ 2 +border 'bOd@R J0%,K6% 23A,6A +bordered 'bOd@d Jc%,Jd% 23A,6A +borderer 'bOd@r@R K6$ 3 +borderers 'bOd@r@z Kj$ 3 +bordering 'bOd@rIN Jb% 33A,6A +borderland 'bOd@l&nd K6% 3 +borderlands 'bOd@l&ndz Kj% 3 +borderline 'bOd@laIn K6% 3 +borderlines 'bOd@laInz Kj% 3 +borders 'bOd@z Ja%,Kj% 23A,6A +bore bOR J2%,Jc%,K6% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +bore-hole 'bO-h@Ul K6% 2 +bore-holes 'bO-h@Ulz Kj% 2 +bored bOd Jc%,Jd% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +boredom 'bOd@m L@% 2 +borer 'bOr@R K6% 2 +borers 'bOr@z Kj% 2 +bores bOz Ja%,Kj% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +boric 'bOrIk OA% 2 +boring 'bOrIN Jb%,OA% 22A,2C,3A,6A,6D,6E,7A,11,12C,14,15A,15B,16B,17 +born bOn Hd% 1 +borne bOn Jd% 12A,2C,3A,6A,6D,6E,7A,11,12C,14,15B,16B,17 +boron 'bOr0n L@$ 2 +borough 'bVr@ K6% 2 +boroughs 'bVr@z Kj% 2 +borrow 'b0r@U H0% 26A,14 +borrowed 'b0r@Ud Hc%,Hd% 26A,14 +borrower 'b0r@U@R K6% 3 +borrowers 'b0r@U@z Kj% 3 +borrowing 'b0r@UIN Hb% 36A,14 +borrows 'b0r@Uz Ha% 26A,14 +borsch bOS L@$ 1 +borstal 'bOstl K6% 2 +borstals 'bOstlz Kj$ 2 +bortsch bOtS L@$ 1 +borzoi 'bOzoI K6$ 2 +borzois 'bOzoIz Kj$ 2 +bosh b0S L@$,W-$ 1 +bosky 'b0skI OA$ 2 +bosom 'bUz@m K6% 2 +bosoms 'bUz@mz Kj% 2 +boss b0s H1%,K7% 16A,15B +boss-eyed 'b0s-aId OA% 2 +bossed b0st Hc%,Hd% 16A,15B +bosses 'b0sIz Ha%,Kj% 26A,15B +bossier 'b0sI@R Or% 3 +bossiest 'b0sIIst Os% 3 +bossing 'b0sIN Hb% 26A,15B +bossy 'b0sI OD% 2 +botanical b@'t&nIkl OA% 4 +botanist 'b0t@nIst K6% 3 +botanists 'b0t@nIsts Kj% 3 +botanize 'b0t@naIz I2$ 3 +botanized 'b0t@naIzd Ic$,Id$ 3 +botanizes 'b0t@naIzIz Ia$ 4 +botanizing 'b0t@naIzIN Ib$ 4 +botany 'b0t@nI L@% 3 +botch b0tS H1%,K7% 16A,15B +botched b0tSt Hc%,Hd% 16A,15B +botcher 'b0tS@R K6% 2 +botchers 'b0tS@z Kj% 2 +botches 'b0tSIz Ha%,Kj$ 26A,15B +botching 'b0tSIN Hb% 26A,15B +both b@UT OA*,Pu*,Qx* 1 +bother 'b0D@R J0%,L@% 22A,3A,4C,6A,14,16A +botheration ,b0D@'reISn W-% 4 +bothered 'b0D@d Jc%,Jd% 22A,3A,4C,6A,14,16A +bothering 'b0D@rIN Jb% 32A,3A,4C,6A,14,16A +bothers 'b0D@z Ja% 22A,3A,4C,6A,14,16A +bothersome 'b0D@s@m OA% 3 +bottle 'b0tl H2%,M6% 26A,15B +bottle-fed 'b0tl-fed OA% 3 +bottle-green ,b0tl-'grin OA% 3 +bottled 'b0tld Hc%,Hd% 26A,15B +bottleneck 'b0tlnek K6% 3 +bottlenecks 'b0tlneks Kj% 3 +bottles 'b0tlz Ha%,Mj% 26A,15B +bottling 'b0tlIN Hb% 26A,15B +bottom 'b0t@m I0%,K6% 2 +bottomed 'b0t@md Ic%,Id% 2 +bottoming 'b0t@mIN Ib% 3 +bottomless 'b0t@ml@s OA% 3 +bottoms 'b0t@mz Ia%,Kj% 2 +botulism 'b0tjUlIz@m L@$ 4 +boudoir 'budwAR K6% 2 +boudoirs 'budwAz Kj% 2 +bougainvillea ,bug@n'vIlI@ K6% 5 +bougainvilleas ,bug@n'vIlI@z Kj% 5 +bough baU K6% 1 +boughs baUz Kj% 1 +bought bOt Jc%,Jd% 12A,2C,6A,12B,13B,15B +bouillon 'buj0n L@$ 2 +boulder 'b@Uld@R K6% 2 +boulders 'b@Uld@z Kj% 2 +boulevard 'bul@vAd K6% 3 +boulevards 'bul@vAdz Kj% 3 +bounce baUns J2%,M6% 12A,2C,6A +bounced baUnst Jc%,Jd% 12A,2C,6A +bounces 'baUnsIz Ja%,Mj% 22A,2C,6A +bouncier 'baUnsI@R Or$ 3 +bounciest 'baUnsI@st Os% 3 +bouncing 'baUnsIN Jb%,OA% 22A,2C,6A +bouncy 'baUnsI OD% 2 +bound baUnd J0%,Jc%,Jd%,K6%,OA% 12A,2C,4A,6A,14,15A,15B,16B,17 +boundaries 'baUndrIz Kj% 2 +boundary 'baUndrI K8% 2 +bounded 'baUndId Jc%,Jd% 22A,2C,4A,6A,14,15A,15B,16B,17 +bounden 'baUnd@n OA% 2 +bounder 'baUnd@R K6% 2 +bounders 'baUnd@z Kj% 2 +bounding 'baUndIN Jb% 22A,2C,4A,6A,14,15A,15B,16B,17 +boundless 'baUndlIs OA% 2 +boundlessly 'baUndlIslI Pu% 3 +bounds baUndz Ja%,Kj% 12A,2C,4A,6A,14,15A,15B,16B,17 +bounteous 'baUntI@s OA% 3 +bounteously 'baUntI@slI Pu% 4 +bounties 'baUntIz Mj$ 2 +bountiful 'baUntIf@l OA% 3 +bountifully 'baUntIf@lI Pu% 4 +bounty 'baUntI M8% 2 +bouquet bU'keI K6% 2 +bouquets bU'keIz Kj% 2 +bourbon 'b3b@n M6% 2 +bourbons 'b3b@nz Mj$ 2 +bourgeois 'bU@ZwA K9%,OA% 2 +bourgeoisie ,bU@ZwA'zi K6% 3 +bourgeoisies ,bU@ZwA'ziz Kj$ 3 +bourn bU@n K6$ 1 +bourne bU@n K6$ 1 +bournes bU@nz Kj$ 1 +bourns bU@nz Kj$ 1 +bourse bU@s K6$ 1 +bourses 'bU@sIz Kj$ 2 +bout baUt K6% 1 +boutique bu'tik K6% 2 +boutiques bu'tiks Kj% 2 +bouts baUts Kj% 1 +bovine 'b@UvaIn OA% 2 +bovril 'b0vrIl L@% 2 +bow b@U H0%,K6% 1 +bow baU J0%,K6% 12A,2C,3A,6A,15A,15B +bow-wow 'baU-waU K6% 2 +bow-wow ,baU-'waU W-% 2 +bow-wows 'baU-waUz Kj% 2 +bowdlerize 'baUdl@raIz H2$ 3 +bowdlerized 'baUdl@raIzd Hc$,Hd$ 3 +bowdlerizes 'baUdl@raIzIz Ha$ 4 +bowdlerizing 'baUdl@raIzIN Hb$ 4 +bowed b@Ud Hc%,Hd% 1 +bowed baUd Jc%,Jd% 12A,2C,3A,6A,15A,15B +bowel 'baU@l K6% 2 +bowels 'baU@lz Kj% 2 +bower 'baU@R K6% 2 +bowers 'baU@z Kj% 2 +bowie knife 'b@UI naIf Ki% 3 +bowie knives 'b@UI naIvz Kj% 3 +bowing 'b@UIN Hb%,L@% 2 +bowing 'baUIN Jb% 22A,2C,3A,6A,15A,15B +bowl b@Ul J0%,K6% 12A,2C,6A,15B +bowled b@Uld Jc%,Jd% 12A,2C,6A,15B +bowler 'b@Ul@R K6% 2 +bowlers 'b@Ul@z Kj% 2 +bowline 'b@UlIn K6$ 2 +bowlines 'b@UlInz Kj$ 2 +bowling 'b@UlIN Jb% 22A,2C,6A,15B +bowling-green 'b@UlIN-grin K6% 3 +bowling-greens 'b@UlIN-grinz Kj% 3 +bowls b@Ulz Ja%,Kj%,Lk% 12A,2C,6A,15B +bowman 'b@Um@n Ki% 2 +bowmen 'b@Umen Kj% 2 +bows b@Uz Ha%,Kj% 1 +bows baUz Ja%,Kj% 12A,2C,3A,6A,15A,15B +bowsprit 'b@UsprIt K6$ 2 +bowsprits 'b@UsprIts Kj$ 2 +box b0ks J1%,M7% 12A,3A,6A,15B +box-kite 'b0ks-kaIt K6% 2 +box-kites 'b0ks-kaIts Kj% 2 +box-number 'b0ks-nVmb@R K6% 3 +box-numbers 'b0ks-nVmb@z Kj% 3 +box-office 'b0ks-0fIs K6% 3 +box-offices 'b0ks-0fIsIz Kj% 4 +boxed b0kst Jc%,Jd% 12A,3A,6A,15B +boxer 'b0ks@R K6% 2 +boxers 'b0ks@z Kj% 2 +boxes 'b0ksIz Ja%,Mj% 22A,3A,6A,15B +boxful 'b0ksfUl K6% 2 +boxfuls 'b0ksfUlz Kj% 2 +boxing 'b0ksIN Jb%,L@% 22A,3A,6A,15B +boxing-glove 'b0ksIN-glVv K6% 3 +boxing-gloves 'b0ksIN-glVvz Kj% 3 +boxing-match 'b0ksIN-m&tS K7% 3 +boxing-matches 'b0ksIN-m&tSIz Kj% 4 +boxwood 'b0kswUd L@% 2 +boy boI K6* 1 +boycott 'boIk0t H0%,K6% 26A +boycotted 'boIk0tId Hc%,Hd% 36A +boycotting 'boIk0tIN Hb% 36A +boycotts 'boIk0ts Ha%,Kj% 26A +boyfriend 'boIfrend K6% 2 +boyfriends 'boIfrendz Kj% 2 +boyhood 'boIhUd L@% 2 +boyish 'boIIS OA% 2 +boyishly 'boIISlI Pu% 3 +boys boIz Kj% 1 +bra brA K6% 1 +brace breIs J2%,K9% 16A,15B,16A +braced breIst Jc%,Jd% 16A,15B,16A +bracelet 'breIslIt K6% 2 +bracelets 'breIslIts Kj% 2 +braces 'breIsIz Ja%,Kj% 26A,15B,16A +bracing 'breIsIN Jb% 26A,15B,16A +bracken 'br&k@n L@% 2 +bracket 'br&kIt H0%,K6% 26A,15B +bracketed 'br&kItId Hc%,Hd% 36A,15B +bracketing 'br&kItIN Hb% 36A,15B +brackets 'br&kIts Ha%,Kj% 26A,15B +brackish 'br&kIS OA% 2 +bract br&kt K6$ 1 +bracts br&kts Kj$ 1 +brad br&d K6$ 1 +bradawl 'br&dOl K6$ 2 +bradawls 'br&dOlz Kj$ 2 +brads br&dz Kj$ 1 +brae breI K6$ 1 +braes breIz Kj$ 1 +brag br&g I4% 12A,3A +braggart 'br&g@t K6% 2 +braggarts 'br&g@ts Kj% 2 +bragged br&gd Ic%,Id% 12A,3A +bragging 'br&gIN Ib%,L@% 22A,3A +brags br&gz Ia% 12A,3A +braid breId H0%,M6% 16A +braided 'breIdId Hc%,Hd% 26A +braiding 'breIdIN Hb% 26A +braids breIdz Ha%,Mj% 16A +braille breIl L@% 1 +brain breIn H0%,K6% 16A +brain-fag 'breIn-f&g L@$ 2 +brain-teaser 'breIn-tiz@R K6% 3 +brain-teasers 'breIn-tiz@z Kj% 3 +brainchild 'breIntSaIld Ki% 2 +brained breInd Hc%,Hd% 16A +brainier 'breInI@R Or% 3 +brainiest 'breInIIst Os% 3 +braining 'breInIN Hb% 26A +brainless 'breInl@s OA% 2 +brains breInz Ha%,Kj% 16A +brainstorm 'breInstOm K6% 2 +brainstorms 'breInstOmz Kj% 2 +brainwash 'breInw0S H1% 26A +brainwashed 'breInw0St Hc%,Hd%,OA% 26A +brainwashes 'breInw0SIz Ha$ 36A +brainwashing 'breInw0SIN Hb$,L@% 36A +brainwave 'breInweIv K6% 2 +brainwaves 'breInweIvz Kj% 2 +brainy 'breInI OD% 2 +braise breIz H2% 16A +braised breIzd Hc%,Hd% 16A +braises 'breIzIz Ha% 26A +braising 'breIzIN Hb% 26A +brake breIk J2%,Jc%,K6% 12A,2C,2D,3A,6A,15A,15B,22 +braked breIkt Jc%,Jd% 12A,2C,2D,3A,6A,15A,15B,22 +brakeman 'breIkm@n Ki$ 2 +brakemen 'breIkm@n Kj$ 2 +brakes breIks Ja%,Kj% 12A,2C,2D,3A,6A,15A,15B,22 +braking 'breIkIN Jb% 22A,2C,2D,3A,6A,15A,15B,22 +bramble 'br&mbl K6% 2 +brambles 'br&mblz Kj% 2 +bran br&n L@% 1 +bran-new ,br&n-'nju OA$ 2 +branch brAntS I1%,K7% 12A,2C +branched brAntSt Ic%,Id% 12A,2C +branches 'brAntSIz Ia%,Kj% 22A,2C +branchier 'brAntSI@R Or$ 3 +branchiest 'brAntSIIst Os$ 3 +branching 'brAntSIN Ib% 22A,2C +branchy 'brAntSI OD$ 2 +brand br&nd H0%,K6% 16A,16B +brand-new ,br&n-'nju OA% 2 +branded 'br&ndId Hc%,Hd% 26A,16B +brandies 'br&ndIz Mj% 2 +branding 'br&ndIN Hb% 26A,16B +branding-iron 'br&ndIN-aI@n K6% 4 +branding-irons 'br&ndIN-aI@nz Kj% 4 +brandish 'br&ndIS H1% 26A +brandished 'br&ndISt Hc%,Hd% 26A +brandishes 'br&ndISIz Ha% 36A +brandishing 'br&ndISIN Hb% 36A +brands br&ndz Ha%,Kj% 16A,16B +brandy 'br&ndI M8% 2 +brandy-ball 'br&ndI-bOl K6% 3 +brandy-balls 'br&ndI-bOlz Kj% 3 +brandy-snap 'br&ndI-sn&p K6% 3 +brandy-snaps 'br&ndI-sn&ps Kj% 3 +bras brAz Kj% 1 +brash br&S OC% 1 +brasher 'br&S@R Or% 2 +brashest 'br&SIst Os% 2 +brass brAs M7% 1 +brassard 'br&sAd K6$ 2 +brassards 'br&sAdz Kj$ 2 +brasserie 'br&s@rI K6% 3 +brasseries 'br&s@rIz Kj% 3 +brasses 'brAsIz Mj% 2 +brassi`ere 'br&zI@R K6$ 3 +brassi`eres 'br&zI@z Kj$ 3 +brassier 'brAsI@R Or% 3 +brassiere 'br&zI@R K6$ 3 +brassieres 'br&zI@z Kj$ 3 +brassiest 'brAsIIst Os% 3 +brassy 'brAsI OD% 2 +brat br&t K6% 1 +brats br&ts Kj% 1 +bravado br@'vAd@U M6% 3 +bravados br@'vAd@Uz Mj$ 3 +brave breIv H2%,K6%,OB% 16A,15B +braved breIvd Hc%,Hd% 16A,15B +bravely 'breIvlI Pu% 2 +braver 'breIv@R Or% 2 +bravery 'breIv@rI L@% 3 +braves breIvz Ha%,Kj% 16A,15B +bravest 'breIvIst Os% 2 +braving 'breIvIN Hb% 26A,15B +bravo ,brA'v@U K6$,W-% 2 +bravoes ,brA'v@Uz Kj$ 2 +bravos ,brA'v@Uz Kj$ 2 +brawl brOl I0%,K6% 12A +brawled brOld Ic%,Id% 12A +brawler 'brOl@R K6% 2 +brawlers 'brOl@z Kj% 2 +brawling 'brOlIN Ib% 22A +brawls brOlz Ia%,Kj% 12A +brawn brOn L@% 1 +brawnier 'brOnI@R Or% 3 +brawniest 'brOnIIst Os% 3 +brawny 'brOnI OD% 2 +bray breI H0%,K6% 12A +brayed breId Hc%,Hd% 12A +braying 'breIIN Hb% 22A +brays breIz Ha%,Kj% 12A +braze breIz H2$ 16A +brazed breIzd Hc$,Hd$ 16A +brazen 'breIzn H0%,OA% 2 +brazen-faced 'breIzn-feIst OA$ 3 +brazened 'breIznd Hc%,Hd% 2 +brazening 'breIznIN Hb% 3 +brazens 'breIznz Ha% 2 +brazes 'breIzIz Ha$ 26A +brazier 'breIzI@R K6% 3 +braziers 'breIzI@z Kj% 3 +brazing 'breIzIN Hb$ 26A +breach britS H1%,K7% 16A +breached britSt Hc%,Hd% 16A +breaches 'britSIz Ha%,Kj% 26A +breaching 'britSIN Hb% 26A +bread bred L@% 1 +breadcrumb 'bredkrVm K6% 2 +breadcrumbs 'bredkrVmz Kj% 2 +breadfruit 'bredfrut K9% 2 +breadfruits 'bredfruts Kj$ 2 +breadline 'bredlaIn K6% 2 +breadlines 'bredlaInz Kj$ 2 +breadstuffs 'bredstVfs Kj$ 2 +breadth bredT M6% 1 +breadths bredTs Mj% 1 +breadthways 'bredTweIz Pu% 2 +breadthwise 'bredTwaIz Pu% 2 +breadwinner 'bredwIn@R K6% 3 +breadwinners 'bredwIn@z Kj% 3 +break breIk J5%,M6% 12A,2C,2D,3A,6A,15A,15B,22 +break-in 'breIk-In K6% 2 +break-ins 'breIk-Inz Kj% 2 +break-up 'breIk-Vp K6% 2 +break-ups 'breIk-Vps Kj% 2 +breakable 'breIk@bl OA% 3 +breakables 'breIk@blz Kj% 3 +breakage 'breIkIdZ K6% 2 +breakages 'breIkIdZIz Kj% 3 +breakaway 'breIk@weI K6% 3 +breakaways 'breIk@weIz K6$ 3 +breakdown 'breIkdaUn K6% 2 +breakdowns 'breIkdaUnz Kj% 2 +breaker 'breIk@R K6% 2 +breakers 'breIk@z Kj% 2 +breakfast 'brekf@st I0%,K6% 2 +breakfasted 'brekf@stId Ic%,Id% 3 +breakfasting 'brekf@stIN Ib% 3 +breakfasts 'brekf@sts Ia%,Kj% 2 +breaking 'breIkIN Jb% 22A,2C,2D,3A,6A,15A,15B,22 +breakneck 'breIknek OA% 2 +breaks breIks Ja%,Mj% 12A,2C,2D,3A,6A,15A,15B,22 +breakthrough 'breIkTru K6% 2 +breakthroughs 'breIkTruz Kj% 2 +breakwater 'breIkwOt@R K6% 3 +breakwaters 'breIkwOt@z Kj% 3 +bream brim K9% 1 +breast brest H0$,K6% 16A +breast-deep 'brest-dip Pu% 2 +breast-fed 'brest-fed OA% 2 +breast-high 'brest-haI Pu% 2 +breast-plate 'brest-pleIt K6% 2 +breast-plates 'brest-pleIts Kj% 2 +breasted 'brestId Hc$,Hd% 26A +breastfed 'brestfed Jc%,Jd% 2 +breastfeed 'brestfid J5% 2 +breastfeeding 'brestfidIN Jb% 3 +breastfeeds 'brestfidz Ja% 2 +breasting 'brestIN Hb$ 26A +breasts brests Ha$,Kj% 16A +breaststroke 'bres+str@Uk L@% 2 +breastwork 'brestw3k K6$ 2 +breastworks 'brestw3ks Kj$ 2 +breath breT M6% 1 +breathalyser 'breT@laIz@R K6% 4 +breathalysers 'breT@laIz@z Kj% 4 +breathe briD J2% 12A,2C,6A,15B +breathed briDd Jc%,Jd% 12A,2C,6A,15B +breather 'briD@R K6% 2 +breathers 'briD@z Kj% 2 +breathes briDz Ja% 12A,2C,6A,15B +breathing 'briDIN Jb%,L@% 22A,2C,6A,15B +breathing-space 'briDIN-speIs K6% 3 +breathing-spaces 'briDIN-speIsIz Kj$ 4 +breathless 'breTl@s OA% 2 +breathlessly 'breTl@slI Pu% 3 +breaths breTs Mj% 1 +breathtaking 'breTteIkIN OA% 3 +bred bred Jc%,Jd% 12A,6A +breech britS K7% 1 +breech-block 'britS-bl0k K6$ 2 +breech-blocks 'britS-bl0ks Kj$ 2 +breeches 'brItSIz Kj% 2 +breeches 'britSIz Kj% 2 +breeches-buoy ,britSIz-'boI K6% 3 +breeches-buoys ,britSIz-'boIz Kj% 3 +breed brid J5%,K6% 12A,6A +breeder 'brid@R K6% 2 +breeders 'brid@z Kj% 2 +breeding 'bridIN Jb%,L@% 22A,6A +breeds bridz Ja%,Kj% 12A,6A +breeze briz I2%,M6% 12C +breezed brizd Ic%,Id% 12C +breezes 'brizIz Ia%,Mj% 22C +breezier 'brizI@R Or% 3 +breeziest 'brizIIst Os% 3 +breezily 'briz@lI Pu% 3 +breeziness 'brizIn@s L@% 3 +breezing 'brizIN Ib% 22C +breezy 'brizI OD% 2 +brethren 'breDr@n Kj% 2 +breve briv K6$ 1 +breves brivz Kj$ 1 +brevet 'brevIt K6$ 2 +brevets 'brevIts Kj$ 2 +breviaries 'brivI@rIz Kj$ 4 +breviary 'brivI@rI K8$ 4 +brevity 'brevItI L@% 3 +brew bru J0%,K6% 12A,2C,6A +brewed brud Jc%,Jd% 12A,2C,6A +brewer 'bru@R K6% 2 +breweries 'brU@rIz Kj% 3 +brewers 'bru@z Kj% 2 +brewery 'brU@rI K8% 3 +brewing 'bruIN Jb% 22A,2C,6A +brews bruz Ja%,Kj% 12A,2C,6A +briar 'braI@R M6% 2 +briars 'braI@z Mj% 2 +bribable 'braIb@bl OA% 3 +bribe braIb H2%,K6% 16A,15A,17 +bribed braIbd Hc%,Hd% 16A,15A,17 +bribery 'braIb@rI L@% 3 +bribes braIbz Ha%,Kj% 16A,15A,17 +bribing 'braIbIN Hb% 26A,15A,17 +bric-a-brac 'brIk-@-br&k L@% 3 +brick brIk H0%,M6% 115B +brick-field 'brIk-fild K6$ 2 +brick-fields 'brIk-fildz Kj$ 2 +brickbat 'brIkb&t K6% 2 +brickbats 'brIkb&ts Kj% 2 +bricked brIkt Hc%,Hd% 115B +bricking 'brIkIN Hb% 215B +brickkiln 'brIk+kIln K6% 2 +brickkilns 'brIk+kIlnz Kj% 2 +bricklayer 'brIkleI@R K6% 3 +bricklayers 'brIkleI@z Kj% 3 +bricks brIks Ha%,Mj% 115B +brickwork 'brIkw3k K6% 2 +brickworks 'brIkw3ks Kj% 2 +bridal 'braIdl K6$,Oq% 2 +bridals 'braIdlz Kj$ 2 +bride braId K6% 1 +bridecake 'braIdkeIk K6$ 2 +bridecakes 'braIdkeIks Kj$ 2 +bridegroom 'braIdgrUm K6% 2 +bridegrooms 'braIdgrUmz Kj% 2 +brides braIdz Kj% 1 +bridesmaid 'braIdzmeId K6% 2 +bridesmaids 'braIdzmeIdz Kj% 2 +bridge brIdZ H2%,M6% 16A,15B +bridged brIdZd Hc%,Hd% 16A,15B +bridgehead 'brIdZhed K6% 2 +bridgeheads 'brIdZhedz Kj% 2 +bridges 'brIdZIz Ha%,Mj% 26A,15B +bridging 'brIdZIN Hb% 26A,15B +bridle 'braIdl J2%,K6% 22A,2C,6A +bridle-path 'braIdl-pAT K6% 3 +bridle-paths 'braIdl-pADz Kj% 3 +bridle-road 'braIdl-r@Ud K6% 3 +bridle-roads 'braIdl-r@Udz Kj% 3 +bridled 'braIdld Jc%,Jd% 22A,2C,6A +bridles 'braIdlz Ja%,Kj% 22A,2C,6A +bridling 'braIdlIN Jb% 22A,2C,6A +brief brif H0%,K6%,OC% 16A +briefcase 'brifkeIs K6% 2 +briefcases 'brifkeIsIz Kj% 3 +briefed brift Hc%,Hd% 16A +briefer 'brif@R Or% 2 +briefest 'brifIst Os% 2 +briefing 'brifIN Hb%,K6% 26A +briefings 'brifINz Kj% 2 +briefly 'briflI Pu% 2 +briefs brifs Ha%,Kj% 16A +brier 'braI@R K6$ 2 +briers 'braI@z Kj$ 2 +brig brIg K6$ 1 +brigade brI'geId K6% 2 +brigades brI'geIdz Kj% 2 +brigand 'brIg@nd K6% 2 +brigands 'brIg@ndz Kj% 2 +brigantine 'brIg@ntin K6$ 3 +brigantines 'brIg@ntinz Kj$ 3 +bright braIt OC%,Pu% 1 +brighten 'braItn J0% 22A,2C,6A,15B +brightened 'braItnd Jc%,Jd% 22A,2C,6A,15B +brightening 'braItnIN Jb% 22A,2C,6A,15B +brightens 'braItnz Ja% 22A,2C,6A,15B +brighter 'braIt@R Or% 2 +brightest 'braItIst Os% 2 +brightly 'braItlI Pu% 2 +brightness 'braItn@s L@% 2 +brigs brIgz Kj$ 1 +brill brIl K9$ 1 +brilliance 'brIlI@ns L@% 3 +brilliancy 'brIlI@nsI L@$ 4 +brilliant 'brIlI@nt OA% 3 +brilliantine 'brIlI@ntin L@$ 4 +brilliantly 'brIlI@ntlI Pu% 4 +brim brIm I4%,K6% 12A,2C +brimful ,brIm'fUl OA% 2 +brimfull ,brIm'fUl OA$ 2 +brimmed brImd Ic%,Id% 12A,2C +brimming 'brImIN Ib% 22A,2C +brims brImz Ia%,Kj% 12A,2C +brimstone 'brImst@Un L@% 2 +brindled 'brIndld OA$ 2 +brine braIn M6% 1 +brines braInz Mj$ 1 +bring brIN H5% 16A,12A,12C,13A,14,15B,17,19B +bringing 'brININ Hb% 26A,12A,12C,13A,14,15B,17,19B +brings brINz Ha% 16A,12A,12C,13A,14,15B,17,19B +brinier 'braInI@R Or$ 3 +briniest 'braInIIst Os$ 3 +brink brINk K6% 1 +brinkmanship 'brINkm@nSIp L@% 3 +brinks brINks Kj% 1 +briny 'braInI OD% 2 +brioche bri'0S K6% 2 +brioches bri'0SIz Kj$ 3 +briquet brI'ket K6$ 2 +briquets brI'kets Kj$ 2 +briquette brI'ket K6$ 2 +briquettes brI'kets Kj$ 2 +brisk brIsk OC% 1 +brisker 'brIsk@R Or% 2 +briskest 'brIskIst Os% 2 +brisket 'brIskIt L@% 2 +briskly 'brIsklI Pu% 2 +bristle 'brIsl I2%,K6% 22A,2C +bristled 'brIsld Ic%,Id% 22A,2C +bristles 'brIslz Ia%,Kj% 22A,2C +bristlier 'brIslI@R Or% 3 +bristliest 'brIslIIst Os$ 3 +bristling 'brIslIN Ib% 22A,2C +bristly 'brIslI OD% 2 +brittle 'brItl OA% 2 +broach br@UtS J1% 12C,6A,15B +broached br@UtSt Jc%,Jd% 12C,6A,15B +broaches 'br@UtSIz Ja% 22C,6A,15B +broaching 'br@UtSIN Jb% 22C,6A,15B +broad brOd K6%,OC% 1 +broad-minded brOd-'maIndId OA% 3 +broad-mindedness brOd-'maIndIdnIs L@% 4 +broadcast 'brOdkAst J0%,Jc%,Jd%,K6%,Pu% 22A,6A +broadcasted 'brOdkAstId Jc%,Jd% 32A,6A +broadcasting 'brOdkAstIN Jb%,L@%,OA% 32A,6A +broadcasts 'brOdkAsts Ja%,Kj% 22A,6A +broadcloth 'brOdkl0T L@$ 2 +broaden 'brOdn J0% 22A,2C,6A,15B +broadened 'brOdnd Jc%,Jd% 22A,2C,6A,15B +broadening 'brOdnIN Jb% 22A,2C,6A,15B +broadens 'brOdnz Ja% 22A,2C,6A,15B +broader 'brOd@R Or% 2 +broadest 'brOdIst Os% 2 +broadly 'brOdlI Pu% 2 +broadness 'brOdn@s L@% 2 +broads brOdz Kj% 1 +broadsheet 'brOdSit K6% 2 +broadsheets 'brOdSits Kj% 2 +broadside 'brOdsaId K6% 2 +broadsides 'brOdsaIdz Kj% 2 +broadways 'brOdweIz Pu$ 2 +broadwise 'brOdwaIz Pu$ 2 +brocade br@'keId H2$,M6$ 26A +brocaded br@'keIdId Hc$,Hd$ 36A +brocades br@'keIdz Ha$,Mj$ 26A +brocading br@'keIdIN Hb$ 36A +broccoli 'br0k@lI L@% 3 +brochure 'br@US@R K6% 2 +brochures 'br@US@z Kj% 2 +brogue br@Ug K6% 1 +brogues br@Ugz Kj% 1 +broil broIl J0% 12A,6A +broiled broIld Jc%,Jd% 12A,6A +broiler 'broIl@R K6% 2 +broilers 'broIl@z Kj% 2 +broiling 'broIlIN Jb% 22A,6A +broils broIlz Ja% 12A,6A +broke br@Uk Jc%,Op% 12A,2C,2D,3A,6A,15A,15B,22 +broken 'br@Uk@n Jd% 22A,2C,2D,3A,6A,15A,15B,22 +broken-hearted ,br@Uk@n-'hAtId OA% 4 +broker 'br@Uk@R K6% 2 +brokerage 'br@Uk@rIdZ L@% 3 +brokers 'br@Uk@z Kj% 2 +brollies 'br0lIz Kj% 2 +brolly 'br0lI K8% 2 +bromide 'br@UmaId M6% 2 +bromides 'br@UmaIdz Mj% 2 +bromine 'br@Umin L@$ 2 +bronchi 'br0NkaI Kj$ 2 +bronchial 'br0NkI@l OA% 3 +bronchitic br0N'kItIk OA% 3 +bronchitis br0N'kaItIs L@% 3 +bronchus 'br0Nk@s Ki$ 2 +bronco 'br0Nk@U K6% 2 +broncos 'br0Nk@Uz Kj$ 2 +bronze br0nz J2$,M6% 12A,6A +bronzed br0nzd Jc$,Jd% 12A,6A +bronzes 'br0nzIz Ja$,Mj% 22A,6A +bronzing 'br0nzIN Jb$ 22A,6A +brooch br@UtS K7% 1 +brooches 'br@UtSIz Kj% 2 +brood brud I0%,K6% 12A,2C,3A +brood-hen 'brud-hen K6$ 2 +brood-hens 'brud-henz Kj$ 2 +brood-mare 'brud-me@R K6% 2 +brood-mares 'brud-me@z Kj% 2 +brooded 'brudId Ic%,Id% 22A,2C,3A +broodier 'brudI@R Or$ 3 +broodiest 'brudIIst Os$ 3 +brooding 'brudIN Ib% 22A,2C,3A +broods brudz Ia%,Kj% 12A,2C,3A +broody 'brudI OD% 2 +brook brUk H0$,K6% 16A,6B +brooked brUkt Hc$,Hd$ 16A,6B +brooking 'brUkIN Hb$ 26A,6B +brooks brUks Ha$,Kj% 16A,6B +broom brum M6% 1 +brooms brumz Mj% 1 +broomstick 'brumstIk K6% 2 +broomsticks 'brumstIks Kj% 2 +broth br0T L@% 1 +brothel 'br0Tl K6% 2 +brothels 'br0Tlz Kj% 2 +brother 'brVD@R K6% 2 +brother-in-law 'brVD@r-In-lO Ki% 4 +brotherhood 'brVD@hUd M6% 3 +brotherhoods 'brVD@hUdz Mj$ 3 +brotherly 'brVD@lI OA% 3 +brothers 'brVD@z Kj% 2 +brothers-in-law 'brVD@z-In-lO Kj% 4 +brougham 'bru@m K6$ 2 +broughams 'bru@mz Kj$ 2 +brought brOt Hc*,Hd* 16A,12A,12C,13A,14,15B,17,19B +brouhaha 'bruhAhA K6$ 3 +brouhahas 'bruhAhAz Kj$ 3 +brow braU K6% 1 +browbeat 'braUbit H5%,Hc% 26A,14 +browbeaten 'braUbitn Hd% 36A,14 +browbeating 'braUbitIN Hb% 36A,14 +browbeats 'braUbits Ha% 26A,14 +brown braUn J0%,OC% 12A,6A +browned braUnd Jc%,Jd% 12A,6A +browner 'braUn@R Or% 2 +brownest 'braUnIst Os% 2 +brownie 'braUnI K6% 2 +brownies 'braUnIz Kj% 2 +browning 'braUnIN Jb% 22A,6A +brownish 'braUnIS OA% 2 +browns braUnz Ja% 12A,6A +brownstone 'braUnst@Un M6$ 2 +brownstones 'braUnst@Unz Mj$ 2 +brows braUz Kj% 1 +browse braUz I2%,K6% 12A,2C +browsed braUzd Ic%,Id% 12A,2C +browses 'braUzIz Ia%,Kj% 22A,2C +browsing 'braUzIN Ib% 22A,2C +bruin 'bruIn K6$ 2 +bruins 'bruInz Kj$ 2 +bruise bruz J2%,K6% 12A,6A +bruised bruzd Jc%,Jd% 12A,6A +bruiser 'bruz@R K6% 2 +bruisers 'bruz@z Kj% 2 +bruises 'bruzIz Ja%,Kj% 22A,6A +bruising 'bruzIN Jb% 22A,6A +bruit brut H0$ 115B +bruited 'brutId Hc$,Hd$ 215B +bruiting 'brutIN Hb$ 215B +bruits bruts Ha$ 115B +brunch brVntS K7% 1 +brunches 'brVntSIz Kj$ 2 +brunette bru'net K6% 2 +brunettes bru'nets Kj% 2 +brunt brVnt K6% 1 +brunts brVnts Kj$ 1 +brush brVS J1%,M7% 12A,2C,6A,15B,22 +brush-off 'brVS-0f K6% 2 +brush-offs 'brVS-0fs Kj$ 2 +brush-up 'brVS-Vp K6% 2 +brush-ups 'brVS-Vps Kj% 2 +brushed brVSt Jc%,Jd% 12A,2C,6A,15B,22 +brushes 'brVSIz Ja%,Mj% 22A,2C,6A,15B,22 +brushing 'brVSIN Jb% 22A,2C,6A,15B,22 +brushwood 'brVSwUd L@% 2 +brushwork 'brVSw3k K6% 2 +brushworks 'brVSw3ks Kj$ 2 +brusque brusk OA% 1 +brusquely 'brusklI Pu% 2 +brusqueness 'bruskn@s L@% 2 +brutal 'brutl OA% 2 +brutalities bru't&lItIz Mj$ 4 +brutality bru't&lItI M8% 4 +brutalize 'brut@laIz H2% 36A +brutalized 'brut@laIzd Hc%,Hd% 36A +brutalizes 'brut@laIzIz Ha% 46A +brutalizing 'brut@laIzIN Hb% 46A +brutally 'brut@lI Pu% 3 +brute brut K6% 1 +brutes bruts Kj% 1 +brutish 'brutIS OA% 2 +brutishly 'brutISlI Pu% 3 +bubble 'bVbl I2%,K6% 22A,2C +bubbled 'bVbld Ic%,Id% 22A,2C +bubbles 'bVblz Ia%,Kj% 22A,2C +bubblier 'bVblI@R Or% 3 +bubbliest 'bVblIIst Os% 3 +bubbling 'bVblIN Ib% 22A,2C +bubbly 'bVblI L@%,OD% 2 +bubonic bju'b0nIk OA$ 3 +buccaneer ,bVk@'nI@R K6% 3 +buccaneers ,bVk@'nI@z Kj% 3 +buck bVk J0%,K6% 12A,2C,6A,15B +bucked bVkt Jc%,Jd% 12A,2C,6A,15B +bucket 'bVkIt I0%,K6% 2 +bucketed 'bVkItId Ic%,Id% 3 +bucketful 'bVkItfUl K6% 3 +bucketfuls 'bVkItfUlz Kj% 3 +bucketing 'bVkItIN Ib% 3 +buckets 'bVkIts Ia%,Kj% 2 +bucking 'bVkIN Jb% 22A,2C,6A,15B +buckle 'bVkl J2%,K6% 22A,2C,6A,15B +buckled 'bVkld Jc%,Jd% 22A,2C,6A,15B +buckler 'bVkl@R K6$ 2 +bucklers 'bVkl@z Kj$ 2 +buckles 'bVklz Ja%,Kj% 22A,2C,6A,15B +buckling 'bVklIN Jb% 22A,2C,6A,15B +buckram 'bVkr@m L@$ 2 +bucks bVks Ja%,Kj% 12A,2C,6A,15B +buckshot 'bVkS0t L@% 2 +buckskin 'bVkskIn L@% 2 +buckteeth 'bVktiT Kj% 2 +bucktooth 'bVktuT Ki$ 2 +buckwheat 'bVkwit L@% 2 +bucolic bju'k0lIk OA% 3 +bucolics bju'k0lIks Lk$ 3 +bud bVd I4%,K6% 1 +budded 'bVdId Ic%,Id% 2 +buddies 'bVdIz Kj% 2 +budding 'bVdIN Ib%,OA% 2 +buddy 'bVdI K8% 2 +budge bVdZ J2% 12A,2C,6A +budged bVdZd Jc%,Jd% 12A,2C,6A +budgerigar 'bVdZ@rIgAR K6% 4 +budgerigars 'bVdZ@rIgAz Kj% 4 +budges 'bVdZIz Ja% 22A,2C,6A +budget 'bVdZ@t I0%,K6% 23A +budgetary 'bVdZ@t@rI OA% 4 +budgeted 'bVdZ@tId Ic%,Id% 33A +budgeting 'bVdZ@tIN Ib% 33A +budgets 'bVdZ@ts Ia%,Kj% 23A +budgie 'bVdZI K6% 2 +budgies 'bVdZIz Kj% 2 +budging 'bVdZIN Jb% 22A,2C,6A +buds bVdz Ia%,Kj% 1 +buff bVf H0$,M6$ 1 +buffalo 'bVf@l@U K9% 3 +buffalos 'bVf@l@Uz Kj% 3 +buffed bVft Hc$,Hd$ 1 +buffer 'bVf@R K6% 2 +buffers 'bVf@z Kj% 2 +buffet 'bUfeI K6% 2 +buffet 'bVfIt J0%,K6$ 23A,6A +buffeted 'bVfItId Jc%,Jd% 33A,6A +buffeting 'bVfItIN Jb% 33A,6A +buffets 'bUfeIz Kj% 2 +buffets 'bVfIts Ja%,Kj$ 23A,6A +buffing 'bVfIN Hb$ 2 +buffoon b@'fun K6% 2 +buffoonery b@'fun@rI L@% 4 +buffoons b@'funz Kj% 2 +buffs bVfs Ha$,Mj$ 1 +bug bVg H4%,K6% 16A +bug-hunter 'bVg-hVnt@R K6$ 3 +bug-hunters 'bVg-hVnt@z Kj$ 3 +bugaboo 'bVg@bu K6$ 3 +bugaboos 'bVg@buz Kj$ 3 +bugbear 'bVgbe@R K6% 2 +bugbears 'bVgbe@z Kj$ 2 +bugged bVgd Hc%,Hd% 16A +bugger 'bVg@R J0%,K6% 26A +bugger-all ,bVg@r-'Ol L@% 3 +buggered 'bVg@d Jc%,Jd% 26A +buggering 'bVg@rIN Jb% 36A +buggers 'bVg@z Ja%,Kj% 26A +buggery 'bVg@rI L@% 3 +buggies 'bVgIz Kj% 2 +bugging 'bVgIN Hb% 26A +buggy 'bVgI K8% 2 +bugle 'bjugl K6% 2 +bugler 'bjugl@R K6% 2 +buglers 'bjugl@z Kj% 2 +bugles 'bjuglz Kj% 2 +bugs bVgz Ha%,Kj% 16A +buhl bul L@$ 1 +build bIld J5%,L@% 12C,3A,6A,12B,13B,14,15B +build-up 'bIld-Vp K6% 2 +build-ups 'bIld-Vps Kj$ 2 +builder 'bIld@R K6% 2 +builders 'bIld@z Kj% 2 +building 'bIldIN Jb%,M6% 22C,3A,6A,12B,13B,14,15B +building-societies 'bIldIN-s@,saI@tIz Kj% 6 +building-society 'bIldIN-s@,saI@tI K8% 6 +buildings 'bIldINz Mj% 2 +builds bIldz Ja% 12C,3A,6A,12B,13B,14,15B +built bIlt Jc%,Jd% 12C,3A,6A,12B,13B,14,15B +built-in bIlt-'In OA% 2 +built-up bIlt-'Vp OA% 2 +bulb bVlb K6% 1 +bulbous 'bVlb@s OA% 2 +bulbs bVlbz Kj% 1 +bulbul 'bUlbUl K6$ 2 +bulbuls 'bUlbUlz Kj$ 2 +bulge bVldZ J2%,K6% 12A,2C,6A +bulged bVldZd Jc%,Jd% 12A,2C,6A +bulges 'bVldZIz Ja%,Kj% 22A,2C,6A +bulging 'bVldZIN Jb% 22A,2C,6A +bulk bVlk I0%,L@% 1 +bulked bVlkt Ic%,Id% 1 +bulkhead 'bVlkhed K6% 2 +bulkheads 'bVlkhedz Kj% 2 +bulkier 'bVlkI@R Or% 3 +bulkiest 'bVlkIIst Os% 3 +bulking 'bVlkIN Ib% 2 +bulks bVlks Ia% 1 +bulky 'bVlkI OD% 2 +bull bUl K6% 1 +bull's-eye 'bUlz-aI K6% 2 +bull's-eyes 'bUlz-aIz Kj% 2 +bull-headed 'bUl-hedId OA% 3 +bull-neck bUl-'nek K6% 2 +bull-necks bUl-'neks Kj$ 2 +bull-terrier bUl-'terI@R K6% 4 +bull-terriers bUl-'terI@z Kj% 4 +bulldog 'bUld0g K6% 2 +bulldogs 'bUld0gz Kj% 2 +bulldoze 'bUld@Uz H2% 26A,14 +bulldozed 'bUld@Uzd Hc%,Hd% 26A,14 +bulldozer 'bUld@Uz@R K6% 3 +bulldozers 'bUld@Uz@z Kj% 3 +bulldozes 'bUld@UzIz Ha% 36A,14 +bulldozing 'bUld@UzIN Hb% 36A,14 +bullet 'bUlIt K6% 2 +bullet-headed ,bUlIt-'hedId OA% 4 +bulletin 'bUl@tIn K6% 3 +bulletins 'bUl@tInz Kj% 3 +bulletproof 'bUlItpruf OA% 3 +bullets 'bUlIts Kj% 2 +bullfight 'bUlfaIt K6% 2 +bullfighter 'bUlfaIt@R K6% 3 +bullfighters 'bUlfaIt@z Kj% 3 +bullfights 'bUlfaIts Kj% 2 +bullfinch 'bUlfIntS K7% 2 +bullfinches 'bUlfIntSIz Kj% 3 +bullfrog 'bUlfr0g K6% 2 +bullfrogs 'bUlfr0gz Kj% 2 +bullied 'bUlId Jc%,Jd% 22C,6A,14 +bullies 'bUlIz Ja%,Mj% 22C,6A,14 +bullion 'bUlI@n L@% 3 +bullock 'bUl@k K6% 2 +bullocks 'bUl@ks Kj% 2 +bullring 'bUlrIN K6% 2 +bullrings 'bUlrINz Kj% 2 +bulls bUlz Kj% 1 +bullshit 'bUlSIt I4%,L@% 2 +bullshits 'bUlSIts Ia% 2 +bullshitted 'bUlSItId Ic%,Id% 3 +bullshitting 'bUlSItIN Ib% 3 +bully 'bUlI J3%,M8%,OA$ 22C,6A,14 +bullying 'bUlIIN Jb% 32C,6A,14 +bulrush 'bUlrVS K7% 2 +bulrushes 'bUlrVSIz Kj% 3 +bulwark 'bUlw@k K6% 2 +bulwarks 'bUlw@ks Kj% 2 +bum bVm J4%,K6%,OA% 12C,6A,14 +bumblebee 'bVmblbi K6% 3 +bumblebees 'bVmblbiz Kj% 3 +bumboat 'bVmb@Ut K6$ 2 +bumboats 'bVmb@Uts Kj$ 2 +bummed bVmd Jc%,Jd% 12C,6A,14 +bumming 'bVmIN Jb% 22C,6A,14 +bump bVmp J0%,K6%,Pu% 12C,3A,6A,14,15B +bumped bVmpt Jc%,Jd% 12C,3A,6A,14,15B +bumper 'bVmp@R K6% 2 +bumpers 'bVmp@z Kj% 2 +bumpier 'bVmpI@R Or% 3 +bumpiest 'bVmpIIst Os% 3 +bumping 'bVmpIN Jb% 22C,3A,6A,14,15B +bumpkin 'bVmpkIn K6% 2 +bumpkins 'bVmpkInz Kj% 2 +bumps bVmps Ja%,Kj% 12C,3A,6A,14,15B +bumptious 'bVmpS@s OA% 2 +bumptiously 'bVmpS@slI Pu% 3 +bumptiousness 'bVmpS@sn@s L@% 3 +bumpy 'bVmpI OD% 2 +bums bVmz Ja%,Kj% 12C,6A,14 +bun bVn K6% 1 +buna 'bun@ L@$ 2 +bunch bVntS J1%,K7% 12A,2C,15B +bunched bVntSt Jc%,Jd% 12A,2C,15B +bunches 'bVntSIz Ja%,Kj% 22A,2C,15B +bunching 'bVntSIN Jb% 22A,2C,15B +bundle 'bVndl J2%,K6% 22C,15A,15B +bundled 'bVndld Jc%,Jd% 22C,15A,15B +bundles 'bVndlz Ja%,Kj% 22C,15A,15B +bundling 'bVndlIN Jb% 22C,15A,15B +bung bVN H0%,K6% 16A,15B +bung-hole 'bVN-h@Ul K6% 2 +bung-holes 'bVN-h@Ulz Kj% 2 +bungaloid 'bVNg@loId OA$ 3 +bungalow 'bVNg@l@U K6% 3 +bungalows 'bVNg@l@Uz Kj% 3 +bunged bVNd Hc%,Hd% 16A,15B +bunging 'bVNIN Hb% 26A,15B +bungle 'bVNgl J2%,K6% 22A,6A +bungled 'bVNgld Jc%,Jd% 22A,6A +bungler 'bVNgl@R K6% 2 +bunglers 'bVNgl@z Kj% 2 +bungles 'bVNglz Ja%,Kj% 22A,6A +bungling 'bVNglIN Jb% 22A,6A +bungs bVNz Ha%,Kj% 16A,15B +bunion 'bVnI@n K6% 2 +bunions 'bVnI@nz Kj% 2 +bunk bVNk I0$,M6% 1 +bunked bVNkt Ic$,Id$ 1 +bunker 'bVNk@R J0%,K6% 22A,6A +bunkered 'bVNk@d Jc$,Jd$ 22A,6A +bunkering 'bVNk@rIN Jb$ 32A,6A +bunkers 'bVNk@z Ja$,Kj% 22A,6A +bunking 'bVNkIN Ib$ 2 +bunks bVNks Ia$,Mj% 1 +bunkum 'bVNk@m L@% 2 +bunnies 'bVnIz Kj% 2 +bunny 'bVnI K8% 2 +buns bVnz Kj% 1 +bunting 'bVntIN L@% 2 +buoy boI I0%,K6% 16A,15B +buoyancy 'boI@nsI L@% 3 +buoyant 'boI@nt OA% 2 +buoyantly 'boI@ntlI Pu% 3 +buoyed boId Ic%,Id% 26A,15B +buoying 'boIIN Ib% 26A,15B +buoys boIz Ia%,Kj% 16A,15B +bur b3R K6$ 1 +burble 'b3bl I2% 2 +burbled 'b3bld Ic%,Id% 2 +burbles 'b3blz Ia% 2 +burbling 'b3blIN Ib% 2 +burden 'b3dn H0%,M6% 26A,14 +burdened 'b3dnd Hc%,Hd% 26A,14 +burdening 'b3dnIN Hb% 26A,14 +burdens 'b3dnz Ha%,Mj% 26A,14 +burdensome 'b3dns@m OA% 3 +burdock 'b3d0k K6% 2 +burdocks 'b3d0ks Kj$ 2 +bureau 'bjU@r@U Ki% 2 +bureaucracies bjU@'r0kr@sIz Mj% 4 +bureaucracy bjU@'r0kr@sI M8% 4 +bureaucrat 'bjU@r@kr&t K6% 3 +bureaucratic ,bjU@r@'kr&tIk OA% 4 +bureaucratically ,bjU@r@'kr&tIklI Pu% 5 +bureaucrats 'bjU@r@kr&ts Kj% 3 +bureaux 'bjU@r@Uz Kj% 2 +burette bjU@'ret K6$ 2 +burettes bjU@'rets Kj$ 2 +burg b3g K6$ 1 +burgeon 'b3dZ@n I0% 2 +burgeoned 'b3dZ@nd Ic%,Id% 2 +burgeoning 'b3dZ@nIN Ib% 3 +burgeons 'b3dZ@nz Ia% 2 +burgess 'b3dZIs K7$ 2 +burgesses 'b3dZIsIz Kj$ 3 +burgh 'bVr@ K6$ 2 +burgher 'b3g@R K6% 2 +burghers 'b3g@z Kj% 2 +burghs 'bVr@z Kj$ 2 +burglar 'b3gl@R K6% 2 +burglar-alarm 'b3gl@r-@lAm K6% 4 +burglar-alarms 'b3gl@r-@lAmz Kj% 4 +burglar-proof 'b3gl@r-pruf OA% 3 +burglaries 'b3gl@rIz Mj% 3 +burglarious b3'gle@rI@s OA$ 4 +burglars 'b3gl@z Kj% 2 +burglary 'b3gl@rI M8% 3 +burgle 'b3gl J2% 22A,6A +burgled 'b3gld Jc%,Jd% 22A,6A +burgles 'b3glz Ja% 22A,6A +burgling 'b3glIN Jb% 22A,6A +burgomaster 'b3g@mAst@R K6% 4 +burgomasters 'b3g@mAst@z Kj% 4 +burgs b3gz Kj$ 1 +burial 'berI@l M6% 3 +burial-ground 'berI@l-graUnd K6% 4 +burial-grounds 'berI@l-graUndz Kj% 4 +burials 'berI@lz Mj% 3 +buried 'berId Hc%,Hd% 26A,15A,22 +buries 'berIz Ha% 26A,15A,22 +burke b3k H2$ 16A +burked b3kt Hc$,Hd$ 16A +burkes b3ks Ha$ 16A +burking 'b3kIN Hb$ 26A +burlap 'b3l&p L@$ 2 +burlesque b3'lesk H2$,M6% 26A +burlesqued b3'leskt Hc$,Hd$ 26A +burlesques b3'lesks Ha$,Mj% 26A +burlesquing b3'leskIN Hb$ 36A +burlier 'b3lI@R Or% 3 +burliest 'b3lIIst Os% 3 +burly 'b3lI OD% 2 +burn b3n J0%,K6% 12A,2B,2C,4A,6A,14,15B +burn-up 'b3n-Vp K6% 2 +burn-ups 'b3n-Vps Kj$ 2 +burned b3nd Jc%,Jd% 12A,2B,2C,4A,6A,14,15B +burner 'b3n@R K6% 2 +burners 'b3n@z Kj% 2 +burning 'b3nIN Jb%,OA% 22A,2B,2C,4A,6A,14,15B +burnish 'b3nIS J1% 22A,6A +burnished 'b3nISt Jc%,Jd% 22A,6A +burnishes 'b3nISIz Ja% 32A,6A +burnishing 'b3nISIN Jb% 32A,6A +burnouse b3'nus K6$ 2 +burnouses b3'nusIz Kj$ 3 +burns b3nz Ja%,Kj% 12A,2B,2C,4A,6A,14,15B +burnt b3nt Jc%,Jd% 12A,2B,2C,4A,6A,14,15B +burp b3p J0%,K6% 12A,6A +burped b3pt Jc%,Jd% 12A,6A +burping 'b3pIN Jb% 22A,6A +burps b3ps Ja%,Kj% 12A,6A +burr b3R K6$ 1 +burr-drill 'b3-drIl K6$ 2 +burr-drills 'b3-drIlz Kj$ 2 +burrow 'bVr@U J0%,K6% 22A,2C,6A +burrowed 'bVr@Ud Jc%,Jd% 22A,2C,6A +burrowing 'bVr@UIN Jb% 32A,2C,6A +burrows 'bVr@Uz Ja%,Kj% 22A,2C,6A +burrs b3z Kj$ 1 +burs b3z Kj$ 1 +bursar 'b3s@R K6% 2 +bursaries 'b3s@rIz Kj% 3 +bursars 'b3s@z Kj% 2 +bursary 'b3s@rI K8% 3 +burst b3st J5%,Jc%,Jd%,K6% 12A,2C,3A,6A,22 +bursting 'b3stIN Jb% 22A,2C,3A,6A,22 +bursts b3sts Ja%,Kj% 12A,2C,3A,6A,22 +burthen 'b3D@n H0$,K6$ 2 +burthened 'b3D@nd Hc$,Hd$ 2 +burthening 'b3D@nIN Hb$ 3 +burthens 'b3D@nz Ha$,Kj$ 2 +burton 'b3tn K6$ 2 +burtons 'b3tnz Kj$ 2 +bury 'berI H3% 26A,15A,22 +burying 'berIIN Hb% 36A,15A,22 +burying-ground 'berIIN-graUnd K6% 4 +burying-grounds 'berIIN-graUndz Kj% 4 +bus bVs J1%,K7% 12A,6A +busbies 'bVzbIz Kj% 2 +busby 'bVzbI K8% 2 +bused bVst Jc$,Jd$ 12A,6A +buses 'bVsIz Ja$,Kj% 22A,6A +bush bUS M7% 1 +bushel 'bUSl K6% 2 +bushels 'bUSlz Kj% 2 +bushes 'bUSIz Mj% 2 +bushy 'bUSI OA% 2 +busied 'bIzId Hc%,Hd% 26A,14 +busier 'bIzI@R Or% 3 +busies 'bIzIz Ha% 26A,14 +busiest 'bIzIIst Os% 3 +busily 'bIzIlI Pu% 3 +business 'bIzn@s M7* 2 +businesses 'bIzn@sIz Mj% 3 +businesslike 'bIzn@slaIk OA% 3 +businessman 'bIzn@sm&n Ki% 3 +businessmen 'bIzn@smen Kj% 3 +busing 'bVsIN Jb$ 22A,6A +busker 'bVsk@R K6% 2 +buskers 'bVsk@z Kj% 2 +busman 'bVsm@n Ki% 2 +busmen 'bVsm@n Kj% 2 +bussing 'bVsIN Jb% 22A,6A +bust bVst J0%,Jc%,Jd%,K6% 1 +bust-up 'bVst-Vp K6% 2 +bust-ups 'bVst-Vps Kj$ 2 +bustard 'bVst@d K6$ 2 +bustards 'bVst@dz Kj$ 2 +busted 'bVstId Jc%,Jd% 2 +buster 'bVst@R K6% 2 +busters 'bVst@z Kj$ 2 +busting 'bVstIN Jb% 2 +bustle 'bVsl J2%,M6% 22A,2C,15B +bustled 'bVsld Jc%,Jd% 22A,2C,15B +bustles 'bVslz Ja%,Mj% 22A,2C,15B +bustling 'bVslIN Jb% 22A,2C,15B +busts bVsts Ja%,Kj% 1 +busy 'bIzI H3%,OD% 26A,14 +busybodies 'bIzIb0dIz Kj% 4 +busybody 'bIzIb0dI K8% 4 +busying 'bIzIIN Hb% 36A,14 +but bVt Pu*,Qz$,T-*,V-* 1 +butane 'bjuteIn L@% 2 +butch bUtS OA% 1 +butcher 'bUtS@R H0%,K6% 26A +butchered 'bUtS@d Hc%,Hd% 26A +butchering 'bUtS@rIN Hb% 36A +butchers 'bUtS@z Ha%,Kj% 26A +butchery 'bUtS@rI L@% 3 +butler 'bVtl@R K6% 2 +butlers 'bVtl@z Kj% 2 +butt bVt J0%,K6% 12C,3A,6A,15A +butted 'bVtId Jc%,Jd% 22C,3A,6A,15A +butter 'bVt@R H0%,L@% 26A,15B +butterbean 'bVt@bin K6% 3 +butterbeans 'bVt@binz Kj% 3 +buttercup 'bVt@kVp K6% 3 +buttercups 'bVt@kVps Kj% 3 +buttered 'bVt@d Hc%,Hd% 26A,15B +butterfingers 'bVt@fINg@z Ki% 4 +butterflies 'bVt@flaIz Kj% 3 +butterfly 'bVt@flaI K8% 3 +butteries 'bVt@rIz Kj$ 3 +buttering 'bVt@rIN Hb% 36A,15B +buttermilk 'bVt@mIlk L@% 3 +butters 'bVt@z Ha% 26A,15B +butterscotch 'bVt@sk0tS L@% 3 +buttery 'bVt@rI K8% 3 +butting 'bVtIN Jb% 22C,3A,6A,15A +buttock 'bVt@k K6% 2 +buttocks 'bVt@ks Kj% 2 +button 'bVtn J0%,K6% 22A,6A,15B +buttoned 'bVtnd Jc%,Jd% 22A,6A,15B +buttoned-up ,bVtnd-'Vp OA% 3 +buttonhole 'bVtnh@Ul H2%,K6% 36A +buttonholed 'bVtnh@Uld Hc%,Hd% 36A +buttonholes 'bVtnh@Ulz Ha%,Kj% 36A +buttonholing 'bVtnh@UlIN Hb% 46A +buttonhook 'bVtnhUk K6$ 3 +buttonhooks 'bVtnhUks Kj$ 3 +buttoning 'bVtnIN Jb% 32A,6A,15B +buttons 'bVtnz Ja%,Kj% 22A,6A,15B +buttonwood 'bVtnwUd M6$ 3 +buttonwoods 'bVtnwUdz Mj$ 3 +buttress 'bVtr@s H1%,K7% 26A,15B +buttressed 'bVtr@st Hc%,Hd% 26A,15B +buttresses 'bVtr@sIz Ha%,Kj% 36A,15B +buttressing 'bVtr@sIN Hb% 36A,15B +butts bVts Ja%,Kj% 12C,3A,6A,15A +buxom 'bVks@m OA% 2 +buy baI J5%,K6% 12A,2C,6A,12B,13B,15B +buyer 'baI@R K6% 2 +buyers 'baI@z Kj% 2 +buying 'baIIN Jb% 22A,2C,6A,12B,13B,15B +buys baIz Ja%,Kj% 12A,2C,6A,12B,13B,15B +buzz bVz J1%,K7% 12A,2C,6A +buzzard 'bVz@d K6% 2 +buzzards 'bVz@dz Kj% 2 +buzzed bVzd Jc%,Jd% 12A,2C,6A +buzzer 'bVz@R K6% 2 +buzzers 'bVz@z Kj% 2 +buzzes 'bVzIz Ja%,Kj% 22A,2C,6A +buzzing 'bVzIN Jb% 22A,2C,6A +by baI P+*,T-* 1 +by-election 'baI-IlekSn K6% 4 +by-elections 'baI-IlekSnz Kj% 4 +bye baI K6% 1 +bye-bye 'baI-baI K6% 2 +bye-bye ,baI-'baI W-% 2 +bye-byes 'baI-baIz Kj% 2 +bye-law 'baI-lO K6% 2 +bye-laws 'baI-lOz Kj% 2 +byes baIz Kj% 1 +bygone 'baIg0n OA% 2 +bygones 'baIg0nz Kj% 2 +bylaw 'baIlO K6% 2 +bylaws 'baIlOz Kj% 2 +bypass 'baIpAs H1%,K7% 26A +bypassed 'baIpAst Hc%,Hd% 26A +bypasses 'baIpAsIz Ha%,Kj% 36A +bypassing 'baIpAsIN Hb% 36A +bypath 'baIpAT K6$ 2 +bypaths 'baIpADz Kj$ 2 +byplay 'baIpleI L@% 2 +byproduct 'baIpr0dVkt K6% 3 +byproducts 'baIpr0dVkts Kj% 3 +byroad 'baIr@Ud K6% 2 +byroads 'baIr@Udz Kj% 2 +bystander 'baIst&nd@R K6% 3 +bystanders 'baIst&nd@z Kj% 3 +byway 'baIweI K6% 2 +byways 'baIweIz Kj% 2 +byword 'baIw3d K6% 2 +bywords 'baIw3dz Kj% 2 +c si Ki$ 1 +c's siz Kj$ 1 +ca'canny ,kA'k&nI Ki$ 3 +cab k&b K6% 1 +cab-rank 'k&b-r&Nk K6% 2 +cab-ranks 'k&b-r&Nks Kj% 2 +cabal k@'b&l K6$ 2 +cabals k@'b&lz Kj$ 2 +cabaret 'k&b@reI K6% 3 +cabarets 'k&b@reIz Kj% 3 +cabbage 'k&bIdZ M6% 2 +cabbages 'k&bIdZIz Mj% 3 +cabbies 'k&bIz Kj% 2 +cabby 'k&bI K8% 2 +caber 'keIb@R K6$ 2 +cabers 'keIb@z Kj$ 2 +cabin 'k&bIn K6% 2 +cabinet 'k&bIn@t K6% 3 +cabinet-maker 'k&bIn@t-,meIk@R K6% 5 +cabinet-makers 'k&bIn@t-,meIk@z Kj% 5 +cabinets 'k&bIn@ts Kj% 3 +cabins 'k&bInz Kj% 2 +cable 'keIbl J2%,M6% 22A,6A +cable's-length 'keIblz-leNT K6% 3 +cable's-lengths 'keIblz-leNTs Kj% 3 +cable-car 'keIbl-kAR K6% 3 +cable-cars 'keIbl-kAz Kj% 3 +cable-length 'keIbl-leNT K6$ 3 +cable-lengths 'keIbl-leNTs Kj$ 3 +cable-railway ,keIbl-'reIlweI K6% 4 +cable-railways ,keIbl-'reIlweIz Kj% 4 +cabled 'keIbld Jc%,Jd% 22A,6A +cablegram 'keIblgr&m K6$ 3 +cablegrams 'keIblgr&mz Kj$ 3 +cables 'keIblz Ja%,Mj% 22A,6A +cabling 'keIblIN Jb% 22A,6A +cabman 'k&bm&n Ki% 2 +cabmen 'k&bmen Kj% 2 +caboodle k@'budl K6% 3 +caboodles k@'budlz Kj$ 3 +caboose k@'bus K6$ 2 +cabooses k@'busIz Kj$ 3 +cabs k&bz Kj% 1 +cabstand 'k&bst&nd K6$ 2 +cabstands 'k&bst&ndz Kj$ 2 +cacao k@'kA@U K6$ 3 +cacao-bean k@'kA@U-bin K6$ 4 +cacao-beans k@'kA@U-binz Kj$ 4 +cacao-tree k@'kA@U-tri K6$ 4 +cacao-trees k@'kA@U-triz Kj$ 4 +cacaos k@'kA@Uz Kj$ 3 +cache k&S H2$,K6% 1 +cached k&St Hc$,Hd$ 1 +caches 'k&SIz Ha$,Kj$ 2 +cachet 'k&SeI K6% 2 +cachets 'k&SeIz Kj$ 2 +caching 'k&SIN Hb$ 2 +cachou 'k&Su K6$ 2 +cachous 'k&Suz Kj$ 2 +cackle 'k&kl I2%,M6% 2 +cackled 'k&kld Ic%,Id% 2 +cackler 'k&kl@R K6% 2 +cacklers 'k&kl@z Kj% 2 +cackles 'k&klz Ia%,Mj% 2 +cackling 'k&klIN Ib% 2 +cacophonies k&'k0f@nIz Kj$ 4 +cacophonous k&'k0f@n@s OA% 4 +cacophony k&'k0f@nI K8% 4 +cacti 'k&ktaI Kj% 2 +cactus 'k&kt@s K7% 2 +cactuses 'k&kt@sIz Kj% 3 +cad k&d K6% 1 +cadaver k@'dAv@R K6% 3 +cadaverous k@'d&v@r@s OA% 4 +cadavers k@'dAv@z Kj% 3 +caddie 'k&dI K6% 2 +caddies 'k&dIz Kj% 2 +caddish 'k&dIS OA% 2 +caddy 'k&dI K8% 2 +cadence 'keId@ns K6% 2 +cadences 'keId@nsIz Kj% 3 +cadenza k@'denz@ K6% 3 +cadenzas k@'denz@z Kj% 3 +cadet k@'det K6% 2 +cadets k@'dets Kj% 2 +cadge k&dZ J2% 12A,6A,14 +cadged k&dZd Jc%,Jd% 12A,6A,14 +cadger 'k&dZ@R K6% 2 +cadgers 'k&dZ@z Kj% 2 +cadges 'k&dZIz Ja% 22A,6A,14 +cadging 'k&dZIN Jb% 22A,6A,14 +cadmium 'k&dmI@m L@% 3 +cadre 'kAd@R K6$ 2 +cadres 'kAd@z Kj$ 2 +cads k&dz Kj% 1 +caesura sI'zjU@r@ K6$ 3 +caesuras sI'zjU@r@z Kj$ 3 +caf_e 'k&feI K6% 2 +caf_es 'k&feIz Kj% 2 +cafe-au-lait ,k&feI-@U-'leI K6% 4 +cafe-au-laits ,k&feI-@U-'leIz Kj% 4 +cafeteria ,k&f@'tI@rI@ K6% 5 +cafeterias ,k&f@'tI@rI@z Kj% 5 +caff k&f K6% 1 +caffeine 'k&fin L@% 2 +caffs k&fs Kj% 1 +caftan 'k&ft&n K6% 2 +caftans 'k&ft&nz Kj% 2 +cage keIdZ H2%,K6% 16A +caged keIdZd Hc%,Hd% 16A +cages 'keIdZIz Ha%,Kj% 26A +cagey 'keIdZI OA% 2 +cagily 'keIdZIlI Pu% 3 +caging 'keIdZIN Hb% 26A +cagoule k@'gul K6% 2 +cagoules k@'gulz Kj% 2 +cahoots k@'huts Kj% 2 +caiman 'keIm@n K6$ 2 +caimans 'keIm@nz Kj$ 2 +cairn ke@n K6% 1 +cairns ke@nz Kj% 1 +caisson 'keIsn K6$ 2 +caissons 'keIsnz Kj$ 2 +caitiff 'keItIf K6$ 2 +caitiffs 'keItIfs Kj$ 2 +cajole k@'dZ@Ul H2% 26A,14 +cajoled k@'dZ@Uld Hc%,Hd% 26A,14 +cajolery k@'dZ@Ul@rI L@$ 4 +cajoles k@'dZ@Ulz Ha% 26A,14 +cajoling k@'dZ@UlIN Hb% 36A,14 +cake keIk J2%,M6% 12A,6A +caked keIkt Jc%,Jd% 12A,6A +cakes keIks Ja%,Mj% 12A,6A +caking 'keIkIN Jb% 22A,6A +calabash 'k&l@b&S K7$ 3 +calabashes 'k&l@b&SIz Kj$ 4 +calamities k@'l&mItIz Kj% 4 +calamitous k@'l&mIt@s OA% 4 +calamity k@'l&mItI K8% 4 +calcified 'k&lsIfaId Jc%,Jd% 32A,6A +calcifies 'k&lsIfaIz Ja% 32A,6A +calcify 'k&lsIfaI J3% 32A,6A +calcifying 'k&lsIfaIIN Jb% 42A,6A +calcination ,k&lsI'neISn K6% 4 +calcinations ,k&lsI'neISnz Kj$ 4 +calcine 'k&lsaIn J2$ 22A,6A +calcined 'k&lsaInd Jc$,Jd$ 22A,6A +calcines 'k&lsaInz Ja$ 22A,6A +calcining 'k&lsaInIN Jb$ 32A,6A +calcium 'k&lsI@m L@% 3 +calculable 'k&lkjUl@bl OA% 4 +calculate 'k&lkjUleIt J2% 32A,3A,6A,8,9,10 +calculated 'k&lkjUleItId Jc%,Jd% 42A,3A,6A,8,9,10 +calculates 'k&lkjUleIts Ja% 32A,3A,6A,8,9,10 +calculating 'k&lkjUleItIN Jb%,OA% 42A,3A,6A,8,9,10 +calculation ,k&lkjU'leISn M6% 4 +calculations ,k&lkjU'leISnz Mj% 4 +calculator 'k&lkjUleIt@R K6% 4 +calculators 'k&lkjUleIt@z Kj% 4 +calculi 'k&lkjUlaI Kj$ 3 +calculus 'k&lkjUl@s M7% 3 +calculuses 'k&lkjUl@sIz Mj$ 4 +caldron 'kOldr@n K6$ 2 +caldrons 'kOldr@nz Kj$ 2 +calendar 'k&lInd@R K6% 3 +calendars 'k&lInd@z Kj% 3 +calender 'k&lInd@R H0$,K6$ 36A +calendered 'k&lInd@d Hc$,Hd$ 36A +calendering 'k&lInd@rIN Hb$ 46A +calenders 'k&lInd@z Ha$,Kj$ 36A +calends 'k&l@ndz Kj$ 2 +calf kAf Mi% 1 +calf-love 'kAf-lVv L@% 2 +calibrate 'k&lIbreIt H2% 36A +calibrated 'k&lIbreItId Hc%,Hd% 46A +calibrates 'k&lIbreIts Ha% 36A +calibrating 'k&lIbreItIN Hb% 46A +calibration ,k&lI'breISn M6% 4 +calibrations ,k&lI'breISnz Mj% 4 +calibre 'k&lIb@R M6% 3 +calibres 'k&lIb@z Mj$ 3 +calico 'k&lIk@U L@% 3 +calif 'keIlIf K6$ 2 +califs 'keIlIfs Kj$ 2 +calipers 'k&lIp@z Kj% 3 +caliph 'keIlIf K6% 2 +caliphate 'k&lIfeIt K6$ 3 +caliphates 'k&lIfeIts Kj$ 3 +caliphs 'keIlIfs Kj$ 2 +calisthenics ,k&lIs'TenIks Lk$ 4 +calk kOk H0$,K6$ 1 +calked kOkt Hc$,Hd$ 1 +calking 'kOkIN Hb$ 2 +calks kOks Ha$,Kj$ 1 +call kOl J0%,M6% 12A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +call-box 'kOl-b0ks K7% 2 +call-boxes 'kOl-b0ksIz Kj% 3 +call-girl 'kOl-g3l K6% 2 +call-girls 'kOl-g3lz Kj% 2 +call-over 'kOl-@Uv@R K6$ 3 +call-overs 'kOl-@Uv@z Kj$ 3 +call-up 'kOl-Vp K6% 2 +call-ups 'kOl-Vps Kj$ 2 +called kOld Jc*,Jd* 12A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +caller 'kOl@R K6% 2 +callers 'kOl@z Kj% 2 +calligraphy k@'lIgr@fI L@% 4 +calling 'kOlIN Jb%,K6% 22A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +callings 'kOlINz Kj% 2 +calliope k@'laI@pI K6$ 4 +calliopes k@'laI@pIz Kj$ 4 +callipers 'k&lIp@z Kj$ 3 +callisthenics ,k&lIs'TenIks Lk$ 4 +callosities k&'l0sItIz Kj$ 4 +callosity k&'l0sItI K8$ 4 +callous 'k&l@s OA% 2 +callousness 'k&l@sn@s L@% 3 +callow 'k&l@U OA% 2 +callowness 'k&l@Un@s L@$ 3 +calls kOlz Ja%,Mj% 12A,2B,2C,3A,4A,6A,12B,13B,15B,22,23 +callus 'k&l@s K7$ 2 +calluses 'k&l@sIz Kj$ 3 +calm kAm J0%,K6%,OC% 12C,6A,15B +calmed kAmd Jc%,Jd% 12C,6A,15B +calmer 'kAm@R Or% 2 +calmest 'kAmIst Os% 2 +calming 'kAmIN Jb% 22C,6A,15B +calmly 'kAmlI Pu% 2 +calmness 'kAmn@s L@% 2 +calms kAmz Ja%,Kj% 12C,6A,15B +calomel 'k&l@mel L@$ 3 +calorie 'k&l@rI K6% 3 +calories 'k&l@rIz Kj% 3 +calorific ,k&l@'rIfIk OA% 4 +calumniate k@'lVmnIeIt H2$ 46A +calumniated k@'lVmnIeItId Hc$,Hd$ 56A +calumniates k@'lVmnIeIts Ha$ 46A +calumniating k@'lVmnIeItIN Hb$ 56A +calumnies 'k&l@mnIz Mj% 3 +calumny 'k&l@mnI M8% 3 +calve kAv I2% 1 +calved kAvd Ic%,Id% 1 +calves kAvz Ia%,Kj% 1 +calving 'kAvIN Ib% 2 +calyces 'keIlIsiz Kj$ 3 +calypso k@'lIps@U K6% 3 +calypsos k@'lIps@Uz Kj% 3 +calyx 'keIlIks K7$ 2 +calyxes 'keIlIksIz Kj$ 3 +cam k&m K6% 1 +camaraderie ,k&m@'rAd@rI L@% 5 +camber 'k&mb@R J0$,K6% 2 +cambered 'k&mb@d Jc$,Jd% 2 +cambering 'k&mb@rIN Jb$ 3 +cambers 'k&mb@z Ja$,Kj$ 2 +cambric 'keImbrIk L@$ 2 +came keIm Ic* 12A,2B,2C,2D,2E,3A,4A +camel 'k&m@l K6% 2 +camel-hair 'k&m@l-he@R L@% 3 +camellia k@'milI@ K6% 4 +camellias k@'milI@z Kj% 4 +camels 'k&m@lz Kj% 2 +cameo 'k&mI@U K6% 3 +cameos 'k&mI@Uz Kj% 3 +camera 'k&m@r@ K6% 3 +cameraman 'k&m@r@m&n Ki% 4 +cameramen 'k&m@r@men Kj% 4 +cameras 'k&m@r@z Kj% 3 +camion 'k&mI@n K6$ 3 +camions 'k&mI@nz Kj$ 3 +camomile 'k&m@maIl L@% 3 +camouflage 'k&m@flAZ H2%,L@% 36A +camouflaged 'k&m@flAZd Hc$,Hd% 36A +camouflages 'k&m@flAZIz Ha% 46A +camouflaging 'k&m@flAZIN Hb% 46A +camp k&mp J0%,K6%,OA% 12A,2C +camp-bed 'k&mp-bed K6% 2 +camp-beds 'k&mp-bedz Kj% 2 +camp-chair 'k&mp-tSe@R K6$ 2 +camp-chairs 'k&mp-tSe@z Kj$ 2 +camp-fire 'k&mp-faI@R K6% 2 +camp-fires 'k&mp-faI@z Kj% 2 +camp-follower k&mp-'f0l@U@R K6% 4 +camp-followers k&mp-'f0l@U@z Kj% 4 +camp-stool 'k&mp-stul K6% 2 +camp-stools 'k&mp-stulz Kj% 2 +campaign k&m'peIn I0%,K6% 22A,3A +campaigned k&m'peInd Ic%,Id% 22A,3A +campaigner k&m'peIn@R K6% 3 +campaigners k&m'peIn@z Kj% 3 +campaigning k&m'peInIN Ib% 32A,3A +campaigns k&m'peInz Ia%,Kj% 22A,3A +campanile ,k&mp@'nilI K6$ 4 +campaniles ,k&mp@'nilIz Kj$ 4 +campanula k@m'p&njUl@ K6$ 4 +campanulas k@m'p&njUl@z Kj$ 4 +camped k&mpt Jc%,Jd% 12A,2C +camper 'k&mp@R K6% 2 +campers 'k&mp@z Kj% 2 +camphor 'k&mf@R L@% 2 +camphorated 'k&mf@reItId OA% 4 +camping 'k&mpIN Jb%,L@% 22A,2C +campion 'k&mpI@n L@% 3 +camps k&mps Ja%,Kj% 12A,2C +campus 'k&mp@s K7% 2 +campuses 'k&mp@sIz Kj% 3 +cams k&mz Kj% 1 +camshaft 'k&mSAft K6% 2 +camshafts 'k&mSAfts Kj% 2 +can k&n G5*,Ga*,H4%,K6% 15,6A +can't kAnt Gg% 1 +canal k@'n&l K6% 2 +canalization ,k&n@laI'zeISn K6% 5 +canalizations ,k&n@laI'zeISnz Kj$ 5 +canalize 'k&n@laIz H2% 36A,14 +canalized 'k&n@laIzd Hc%,Hd% 36A,14 +canalizes 'k&n@laIzIz Ha% 46A,14 +canalizing 'k&n@laIzIN Hb% 46A,14 +canals k@'n&lz Kj% 2 +canap_e 'k&n@peI K6$ 3 +canap_es 'k&n@peIz Kj$ 3 +canard k&'nAd K6$ 2 +canards k&'nAdz Kj$ 2 +canaries k@'ne@rIz Kj% 3 +canary k@'ne@rI K8% 3 +canary-bird k@'ne@rI-b3d K6$ 4 +canary-birds k@'ne@rI-b3dz Kj$ 4 +canary-wine k@'ne@rI-waIn K6$ 4 +canary-wines k@'ne@rI-waInz Kj$ 4 +canasta k@'n&st@ K6$ 3 +canastas k@'n&st@z Kj$ 3 +cancan 'k&nk&n K6% 2 +cancans 'k&nk&nz Kj% 2 +cancel 'k&ns@l J4% 22C,6A,15B +cancellation ,k&ns@'leISn M6% 4 +cancellations ,k&ns@'leISnz Mj% 4 +cancelled 'k&ns@ld Jc%,Jd% 22C,6A,15B +cancelling 'k&ns@lIN Jb% 32C,6A,15B +cancels 'k&ns@lz Ja% 22C,6A,15B +cancer 'k&ns@R M6% 2 +cancerous 'k&ns@r@s OA% 3 +cancers 'k&ns@z Mj% 2 +candelabra ,k&nd@'lAbr@ Kj% 4 +candelabrum ,k&nd@'lAbr@m Ki$ 4 +candid 'k&ndId OA% 2 +candidate 'k&ndId@t K6% 3 +candidates 'k&ndId@ts Kj% 3 +candidature 'k&ndId@tS@R K6% 4 +candidatures 'k&ndId@tS@z Kj$ 4 +candidly 'k&ndIdlI Pu% 3 +candied 'k&ndId Jc$,Jd%,OA% 22A,6A +candies 'k&ndIz Ja%,Mj% 22A,6A +candle 'k&ndl K6% 2 +candle-power 'k&ndl-paU@R L@% 4 +candlelight 'k&ndl+laIt L@% 3 +candles 'k&ndlz Kj% 2 +candlestick 'k&ndlstIk K6% 3 +candlesticks 'k&ndlstIks Kj% 3 +candlewick 'k&ndlwIk L@% 3 +candour 'k&nd@R L@% 2 +candy 'k&ndI J3$,M8% 22A,6A +candy-floss 'k&ndI-fl0s L@% 3 +candying 'k&ndIIN Jb$ 32A,6A +candytuft 'k&ndItVft K6% 3 +candytufts 'k&ndItVfts Kj$ 3 +cane keIn H2%,M6% 16A +caned keInd Hc%,Hd% 16A +canes keInz Ha%,Mj% 16A +canine 'keInaIn OA% 2 +caning 'keInIN Hb% 26A +canister 'k&nIst@R K6% 3 +canisters 'k&nIst@z Kj% 3 +canker 'k&Nk@R H0$,L@$ 2 +cankered 'k&Nk@d Hc$,Hd$ 2 +cankering 'k&Nk@rIN Hb$ 3 +cankerous 'k&Nk@r@s OA$ 3 +cankers 'k&Nk@z Ha$ 2 +canna 'k&n@ K6$ 2 +cannabis 'k&n@bIs L@% 3 +cannas 'k&n@z Kj$ 2 +canned k&nd Hc%,Hd%,OA% 15,6A +canneries 'k&n@rIz Kj% 3 +cannery 'k&n@rI K8% 3 +cannibal 'k&nIb@l K6% 3 +cannibalism 'k&nIb@lIz@m L@% 5 +cannibalistic ,k&nIb@l'lIstIk OA% 5 +cannibalize 'k&nIb@laIz H2% 4 +cannibalized 'k&nIb@laIzd Hc%,Hd% 4 +cannibalizes 'k&nIb@laIzIz Ha% 5 +cannibalizing 'k&nIb@laIzIN Hb% 5 +cannibals 'k&nIb@lz Kj% 3 +cannier 'k&nI@R Or% 3 +canniest 'k&nIIst Os% 3 +cannily 'k&nIlI Pu% 3 +canning 'k&nIN Hb% 25,6A +cannon 'k&n@n K6% 2 +cannon-fodder 'k&n@n-f0d@R L@% 4 +cannonade ,k&n@'neId K6% 3 +cannonades ,k&n@'neIdz Kj% 3 +cannons 'k&n@nz Kj% 2 +cannot 'k&n@t Gg* 2 +canny 'k&nI OD% 2 +canoe k@'nu H5%,K6% 22A,2C +canoed k@'nud Hc%,Hd% 22A,2C +canoeing k@'nuIN Hb% 32A,2C +canoeist k@'nuIst K6% 3 +canoeists k@'nuIsts Kj% 3 +canoes k@'nuz Ha%,Kj% 22A,2C +canon 'k&n@n K6% 2 +canonical k@'n0nIkl OA% 4 +canonization ,k&n@naI'zeISn K6% 5 +canonizations ,k&n@naI'zeISnz Kj$ 5 +canonize 'k&n@naIz H2% 36A +canonized 'k&n@naIzd Hc%,Hd% 36A +canonizes 'k&n@naIzIz Ha% 46A +canonizing 'k&n@naIzIN Hb% 46A +canons 'k&n@nz Kj% 2 +canopied 'k&n@pId OA% 3 +canopies 'k&n@pIz Kj% 3 +canopy 'k&n@pI K8% 3 +cans k&nz Ha%,Kj% 15,6A +cant k&nt J0%,M6% 12A,2C,6A,15B +cantaloup 'k&nt@lup K6$ 3 +cantaloupe 'k&nt@lup K6% 3 +cantaloupes 'k&nt@lups Kj% 3 +cantaloups 'k&nt@lups Kj$ 3 +cantankerous k&n't&Nk@r@s OA% 4 +cantankerously k&n't&Nk@r@slI Pu% 5 +cantata k&n'tAt@ K6% 3 +cantatas k&n'tAt@z Kj% 3 +canted 'k&ntId Jc$,Jd$ 22A,2C,6A,15B +canteen k&n'tin K6% 2 +canteens k&n'tinz Kj% 2 +canter 'k&nt@R J0%,K6% 2 +cantered 'k&nt@d Jc%,Jd% 2 +cantering 'k&nt@rIN Jb% 3 +canters 'k&nt@z Ja%,Kj% 2 +canticle 'k&ntIkl K6% 3 +canticles 'k&ntIklz Kj% 3 +cantilever 'k&ntIliv@R K6% 4 +cantilevers 'k&ntIliv@z Kj% 4 +canting 'k&ntIN Jb$ 22A,2C,6A,15B +canto 'k&nt@U K6% 2 +canton 'k&nt0n K6% 2 +cantonment k&n'tunm@nt K6$ 3 +cantonments k&n'tunm@nts Kj$ 3 +cantons 'k&nt0nz Kj% 2 +cantor 'k&ntOR K6$ 2 +cantors 'k&ntOz Kj$ 2 +cantos 'k&nt@Uz Kj$ 2 +cants k&nts Ja$,Mj$ 12A,2C,6A,15B +canvas 'k&nv@s M7% 2 +canvases 'k&nv@sIz Mj% 3 +canvass 'k&nv@s J1%,K7% 22A,3A,6A +canvassed 'k&nv@st Jc%,Jd% 22A,3A,6A +canvasses 'k&nv@sIz Ja%,Kj% 32A,3A,6A +canvassing 'k&nv@sIN Jb% 32A,3A,6A +canyon 'k&nj@n K6% 2 +canyons 'k&nj@nz Kj% 2 +cap k&p H4%,K6% 16A +cap-`a-pie ,k&p-@-'pi Pu$ 3 +capabilities ,keIp@'bIlItIz Mj% 5 +capability ,keIp@'bIlItI M8% 5 +capable 'keIp@bl OA% 3 +capably 'keIp@blI Pu% 3 +capacious k@'peIS@s OA% 3 +capacities k@'p&sItIz Mj% 4 +capacity k@'p&sItI M8% 4 +caparison k@'p&rIs@n H0$,K6$ 4 +caparisoned k@'p&rIs@nd Hc$,Hd$ 4 +caparisoning k@'p&rIs@nIN Hb$ 5 +caparisons k@'p&rIs@nz Ha$,Kj$ 4 +cape keIp K6% 1 +caper 'keIp@R I0%,K6% 2 +capered 'keIp@d Ic%,Id% 2 +capering 'keIp@rIN Ib% 3 +capers 'keIp@z Ia%,Kj% 2 +capes keIps Kj% 1 +capillaries k@'pIl@rIz Kj% 4 +capillary k@'pIl@rI K8% 4 +capital 'k&pIt@l M6%,OA% 3 +capitalism 'k&pIt@lIz@m L@%,OA% 5 +capitalist 'k&pIt@lIst K6% 4 +capitalistic ,k&pIt@'lIstIk OA% 5 +capitalists 'k&pIt@lIsts Kj% 4 +capitalization ,k&pIt@laI'zeISn K6% 6 +capitalizations ,k&pIt@laI'zeISnz Kj$ 6 +capitalize 'k&pIt@laIz J2% 43A,6A +capitalized 'k&pIt@laIzd Jc%,Jd% 43A,6A +capitalizes 'k&pIt@laIzIz Ja% 53A,6A +capitalizing 'k&pIt@laIzIN Jb% 53A,6A +capitals 'k&pIt@lz Mj% 3 +capitation ,k&pI'teISn K6% 4 +capitations ,k&pI'teISnz Kj$ 4 +capitulate k@'pItSUleIt H2% 42A +capitulated k@'pItSUleItId Hc%,Hd% 52A +capitulates k@'pItSUleIts Ha% 42A +capitulating k@'pItSUleItIN Hb% 52A +capitulation k@,pItSU'leISn L@% 5 +capon 'keIp@n K6% 2 +capons 'keIp@nz Kj% 2 +capped k&pt Hc%,Hd% 16A +capping 'k&pIN Hb% 26A +caprice k@'pris K6% 2 +caprices k@'prisIz Kj% 3 +capricious k@'prIS@s OA% 3 +capriciously k@'prIS@slI Pu% 4 +capriciousness k@'prIS@snIs L@% 4 +caps k&ps Ha%,Kj% 16A +capsicum 'k&psIk@m K6% 3 +capsicums 'k&psIk@mz Kj% 3 +capsize k&p'saIz J2% 22A,6A +capsized k&p'saIzd Jc%,Jd% 22A,6A +capsizes k&p'saIzIz Ja% 32A,6A +capsizing k&p'saIzIN Jb% 32A,6A +capstan 'k&pst@n K6% 2 +capstans 'k&pst@nz Kj% 2 +capsule 'k&psjul K6% 2 +capsules 'k&psjulz Kj% 2 +captain 'k&ptIn H0%,K6% 26A +captained 'k&ptInd Hc%,Hd% 26A +captaining 'k&ptInIN Hb% 36A +captains 'k&ptInz Ha%,Kj% 26A +caption 'k&pSn K6% 2 +captions 'k&pSnz Kj% 2 +captious 'k&pS@s OA$ 2 +captiously 'k&pS@slI Pu$ 3 +captivate 'k&ptIveIt H2% 36A +captivated 'k&ptIveItId Hc%,Hd% 46A +captivates 'k&ptIveIts Ha% 36A +captivating 'k&ptIveItIN Hb% 46A +captive 'k&ptIv K6%,OA% 2 +captives 'k&ptIvz Kj% 2 +captivity k&p'tIvItI L@% 4 +captor 'k&pt@R K6% 2 +captors 'k&pt@z Kj% 2 +capture 'k&ptS@R H2%,M6% 26A +captured 'k&ptS@d Hc%,Hd% 26A +captures 'k&ptS@z Ha%,Mj% 26A +capturing 'k&ptS@rIN Hb% 36A +car kAR K6* 1 +car-ferries 'kA-ferIz Kj% 3 +car-ferry 'kA-ferI K8% 3 +carafe k@'r&f K6% 2 +carafes k@'r&fs Kj% 2 +caramel 'k&r@m@l M6% 3 +caramels 'k&r@m@lz Mj% 3 +carapace 'k&r@peIs K6$ 3 +carapaces 'k&r@peIsIz Kj$ 4 +carat 'k&r@t K6% 2 +carats 'k&r@ts Kj% 2 +caravan 'k&r@v&n K6% 3 +caravanning ,k&r@'v&nIN L@% 4 +caravans 'k&r@v&nz Kj% 3 +caravansaries ,k&r@'v&ns@rIz Kj$ 5 +caravansary ,k&r@'v&ns@rI K8$ 5 +caravanserai ,k&r@'v&ns@raI K6$ 5 +caravanserais ,k&r@'v&ns@raIz Kj$ 5 +caraway 'k&r@weI K6% 3 +caraways 'k&r@weIz Kj$ 3 +carbide 'kAbaId K6% 2 +carbides 'kAbaIdz Kj% 2 +carbine 'kAbaIn K6% 2 +carbines 'kAbaInz Kj% 2 +carbohydrate ,kAb@'haIdreIt M6% 4 +carbohydrates ,kAb@'haIdreIts Mj% 4 +carbolic kA'b0lIk OA% 3 +carbon 'kAb@n M6% 2 +carbon-paper 'kAb@n-peIp@R L@% 4 +carbonated 'kAb@neItId OA% 4 +carbonic kA'b0nIk OA$ 3 +carboniferous ,kAb@'nIf@r@s OA% 5 +carbonization ,kAb@naI'zeISn M6% 5 +carbonizations ,kAb@naI'zeISnz Mj$ 5 +carbonize 'kAb@naIz H2% 36A +carbonized 'kAb@naIzd Hc%,Hd% 36A +carbonizes 'kAb@naIzIz Ha% 46A +carbonizing 'kAb@naIzIN Hb% 46A +carbons 'kAb@nz Mj% 2 +carborundum ,kAb@'rVnd@m L@% 4 +carboy 'kAboI K6$ 2 +carboys 'kAboIz Kj$ 2 +carbuncle 'kAbVNkl K6% 3 +carbuncles 'kAbVNklz Kj% 3 +carburettor ,kAb@'ret@R K6% 4 +carburettors ,kAb@'ret@z Kj% 4 +carcase 'kAk@s K6$ 2 +carcases 'kAk@sIz Kj$ 3 +carcass 'kAk@s K7% 2 +carcasses 'kAk@sIz Kj% 3 +card kAd H0$,K6% 1 +card-sharper 'kAd-SAp@R K6% 3 +card-sharpers 'kAd-SAp@z Kj% 3 +cardamom 'kAd@m@m L@$ 3 +cardboard 'kAdbOd L@% 2 +carded 'kAdId Hc$,Hd$ 2 +cardiac 'kAdI&k OA% 3 +cardigan 'kAdIg@n K6% 3 +cardigans 'kAdIg@nz Kj% 3 +cardinal 'kAdInl K6%,OA% 3 +cardinals 'kAdInlz Kj% 3 +carding 'kAdIN Hb$ 2 +cards kAdz Ha$,Kj% 1 +care ke@R I2%,M6% 12A,3A,3B,4C +cared ke@d Ic%,Id% 12A,3A,3B,4C +careen k@'rin J0% 22A,6A +careened k@'rind Jc%,Jd% 22A,6A +careening k@'rinIN Jb% 32A,6A +careens k@'rinz Ja% 22A,6A +career k@'rI@R I0%,M6% 22C,3A +careered k@'rI@d Ic%,Id% 22C,3A +careering k@'rI@rIN Ib% 32C,3A +careerist k@'rI@rIst K6% 3 +careerists k@'rI@rIsts Kj% 3 +careers k@'rI@z Ia%,Mj% 22C,3A +carefree 'ke@fri OA% 3 +careful 'ke@fUl OA% 2 +carefully 'ke@f@lI Pu% 3 +carefulness 'ke@f@ln@s L@% 3 +careladen 'ke@leIdn OA$ 3 +careless 'ke@l@s OA% 2 +carelessly 'ke@l@slI Pu% 3 +carelessness 'ke@l@sn@s L@% 3 +cares ke@z Ia%,Mj% 12A,3A,3B,4C +caress k@'res H1%,K7% 26A +caressed k@'rest Hc%,Hd% 26A +caresses k@'resIz Ha%,Kj% 36A +caressing k@'resIN Hb%,OA% 36A +caressingly k@'resINlI Pu% 4 +caret 'k&ret K6$ 2 +caretaker 'ke@teIk@R K6% 3 +caretakers 'ke@teIk@z Kj% 3 +carets 'k&rets Kj$ 2 +careworn 'ke@wOn OA% 2 +cargo 'kAg@U M7% 2 +cargoes 'kAg@Uz Mj% 2 +caribou 'k&rIbu K9% 3 +caribous 'k&rIbuz Kj% 3 +caricature 'k&rIk@tSU@R H2%,M6% 46A +caricatured 'k&rIk@tSU@d Hc%,Hd% 46A +caricatures 'k&rIk@tSU@z Ha%,Mj% 46A +caricaturing 'k&rIk@tSU@rIN Hb% 56A +caricaturist 'k&rIk@tSurIst K6% 5 +caricaturists 'k&rIk@tSurIsts Kj% 5 +caries 'ke@riz L@% 2 +carillon k@'rIlj@n K6$ 3 +carillons k@'rIlj@nz Kj$ 3 +caring 'ke@rIN Ib% 22A,3A,3B,4C +carious 'ke@rI@s OA$ 3 +carmine 'kAmaIn M6%,OA% 2 +carmines 'kAmaInz Mj$ 2 +carnage 'kAnIdZ L@% 2 +carnal 'kAnl OA% 2 +carnally 'kAn@lI Pu% 3 +carnation kA'neISn K6% 3 +carnations kA'neISnz Kj% 3 +carnival 'kAnIvl M6% 3 +carnivals 'kAnIvlz Mj% 3 +carnivore 'kAnIvOR K6% 3 +carnivores 'kAnIvOz Kj% 3 +carnivorous kA'nIv@r@s OA% 4 +carol 'k&r@l H4%,K6% 2 +carolled 'k&r@ld Hc%,Hd% 2 +caroller 'k&r@l@R K6% 3 +carollers 'k&r@l@z Kj% 3 +carolling 'k&r@lIN Hb% 3 +carols 'k&r@lz Ha%,Kj% 2 +carousal k@'raUzl K6$ 3 +carousals k@'raUzlz Kj$ 3 +carouse k@'raUz H2% 22A +caroused k@'raUzd Hc%,Hd% 22A +carousel ,k&r@'sel K6% 3 +carousels ,k&r@'selz Kj$ 3 +carouses k@'raUzIz Ha% 32A +carousing k@'raUzIN Hb% 32A +carp kAp H0%,K9% 12A,3A +carpal 'kApl K6$,OA$ 2 +carpals 'kAplz Kj$ 2 +carped kApt Hc$,Hd$ 12A,3A +carpenter 'kApInt@R K6% 3 +carpenters 'kApInt@z Kj% 3 +carpentry 'kApIntrI L@% 3 +carpet 'kApIt H0%,K6% 26A +carpet-beater 'kApIt-bit@R K6% 4 +carpet-beaters 'kApIt-bit@z Kj% 4 +carpet-knight 'kApIt-naIt K6$ 3 +carpet-knights 'kApIt-naIts Kj$ 3 +carpet-slippers 'kApIt-slIp@z Kj% 4 +carpet-sweeper 'kApIt-swip@R K6% 4 +carpet-sweepers 'kApIt-swip@z Kj% 4 +carpetbag 'kApItb&g K6% 3 +carpetbagger 'kApItb&g@R K6% 4 +carpetbaggers 'kApItb&g@z Kj% 4 +carpetbags 'kApItb&gz Kj% 3 +carpeted 'kApItId Hc%,Hd% 36A +carpeting 'kApItIN Hb% 36A +carpets 'kApIts Ha%,Kj% 26A +carping 'kApIN Hb% 22A,3A +carport 'kApOt K6% 2 +carports 'kApOts Kj% 2 +carps kAps Ha% 12A,3A +carriage 'k&rIdZ M6% 2 +carriages 'k&rIdZIz Mj% 3 +carriageway 'k&rIdZweI K6% 3 +carriageways 'k&rIdZweIz Kj% 3 +carried 'k&rId Jc%,Jd% 22B,2C,6A,15A,15B,16B +carrier 'k&rI@R K6% 3 +carrier-bag 'k&rI@-b&g K6% 4 +carrier-bags 'k&rI@-b&gz Kj% 4 +carrier-pigeon 'k&rI@-pIdZ@n K6% 5 +carrier-pigeons 'k&rI@-pIdZ@nz Kj% 5 +carriers 'k&rI@z Kj% 3 +carries 'k&rIz Ja%,Kj% 22B,2C,6A,15A,15B,16B +carrion 'k&rI@n L@% 3 +carrion-crow 'k&rI@n-kr@U K6% 4 +carrion-crows 'k&rI@n-kr@Uz Kj% 4 +carrot 'k&r@t K6% 2 +carrots 'k&r@ts Kj% 2 +carroty 'k&r@tI OA% 3 +carry 'k&rI J3%,K8% 22B,2C,6A,15A,15B,16B +carrycot 'k&rIk0t K6% 3 +carrycots 'k&rIk0ts Kj% 3 +carrying 'k&rIIN Jb% 32B,2C,6A,15A,15B,16B +carryings-on ,k&rIINz-'0n Kj% 4 +cars kAz Kj% 1 +carsick 'kAsIk OA% 2 +carsickness 'kAsIkn@s L@% 3 +cart kAt H0%,K6% 16A,15B +cart-track 'kAt-tr&k K6% 2 +cart-tracks 'kAt-tr&ks Kj% 2 +cartage 'kAtIdZ L@$ 2 +carte blanche ,kAt 'bl0nS Ki% 2 +carted 'kAtId Hc%,Hd% 26A,15B +cartel kA'tel K6% 2 +cartels kA'telz Kj% 2 +carter 'kAt@R K6% 2 +carters 'kAt@z Kj% 2 +carthorse 'kAthOs K6% 2 +carthorses 'kAthOsIz Kj% 3 +cartilage 'kAtIlIdZ M6% 3 +cartilages 'kAtIlIdZIz Mj$ 4 +cartilaginous ,kAtI'l&dZIn@s OA$ 5 +carting 'kAtIN Hb% 26A,15B +cartload 'kAtl@Ud K6% 2 +cartloads 'kAtl@Udz Kj% 2 +cartographer kA't0gr@f@R K6% 4 +cartographers kA't0gr@f@z Kj% 4 +cartography kA't0gr@fI L@% 4 +carton 'kAtn K6% 2 +cartons 'kAtnz Kj% 2 +cartoon kA'tun H0$,K6% 2 +cartooned kA'tund Hc$,Hd$ 2 +cartooning kA'tunIN Hb$ 3 +cartoonist kA'tunIst K6% 3 +cartoonists kA'tunIsts Kj% 3 +cartoons kA'tunz Ha$,Kj% 2 +cartridge 'kAtrIdZ K6% 2 +cartridge-belt 'kAtrIdZ-belt K6% 3 +cartridge-belts 'kAtrIdZ-belts Kj% 3 +cartridge-paper 'kAtrIdZ-peIp@R K6% 4 +cartridge-papers 'kAtrIdZ-peIp@z Kj% 4 +cartridges 'kAtrIdZIz Kj% 3 +cartroad 'kAtr@Ud K6% 2 +cartroads 'kAtr@Udz Kj% 2 +carts kAts Ha%,Kj% 16A,15B +cartwheel 'kAtwil K6% 2 +cartwheels 'kAtwilz Kj% 2 +carve kAv J2% 16A,14,15A,15B +carved kAvd Jc%,Jd% 16A,14,15A,15B +carver 'kAv@R K6% 2 +carvers 'kAv@z Kj% 2 +carves kAvz Ja% 16A,14,15A,15B +carving 'kAvIN Jb%,M6% 26A,14,15A,15B +carving-fork 'kAvIN-fOk K6% 3 +carving-forks 'kAvIN-fOks Kj% 3 +carving-knife 'kAvIN-naIf Ki% 3 +carving-knives 'kAvIN-naIvz Kj% 3 +carvings 'kAvINz Mj% 2 +caryatid ,k&rI'&tId K6$ 4 +caryatids ,k&rI'&tIdz Kj$ 4 +cascade k&'skeId I2%,K6% 2 +cascaded k&'skeIdId Ic%,Id% 3 +cascades k&'skeIdz Ia%,Kj% 2 +cascading k&'skeIdIN Ib% 3 +case keIs H2%,K6% 16A +case-hardened 'keIs-hAd@nd OA% 3 +case-histories keIs-'hIstrIz Kj% 3 +case-history keIs-'hIstrI K8% 3 +case-law 'keIs-lO K6% 2 +case-laws 'keIs-lOz Kj$ 2 +casebook 'keIsbUk K6% 2 +casebooks 'keIsbUks Kj$ 2 +cased keIst Hc%,Hd% 16A +casein 'keIsin L@$ 2 +casement 'keIsm@nt K6% 2 +casements 'keIsm@nts Kj% 2 +cases 'keIsIz Ha%,Kj% 26A +casework 'keIsw3k K6% 2 +caseworks 'keIsw3ks Kj$ 2 +cash k&S J1%,L@% 12C,6A,12B,13B +cashable 'k&S@bl OA% 3 +cashed k&St Jc%,Jd% 12C,6A,12B,13B +cashes 'k&SIz Ja% 22C,6A,12B,13B +cashew 'k&Su K6% 2 +cashews 'k&Suz Kj% 2 +cashier k&'SI@R H0%,K6% 36A +cashiered k&'SI@d Hc%,Hd% 36A +cashiering k&'SI@rIN Hb% 46A +cashiers k&'SI@z Ha%,Kj% 36A +cashing 'k&SIN Jb% 22C,6A,12B,13B +cashmere k&S'mI@R L@% 2 +casing 'keIsIN Hb%,K6% 26A +casings 'keIsINz Kj% 2 +casino k@'sin@U K6% 3 +casinos k@'sin@Uz Kj% 3 +cask kAsk K6% 1 +casket 'kAskIt K6% 2 +caskets 'kAskIts Kj% 2 +casks kAsks Kj% 1 +cassava k@'sAv@ L@% 3 +casserole 'k&s@r@Ul K6% 3 +casseroles 'k&s@r@Ulz Kj% 3 +cassette k@'set K6% 2 +cassettes k@'sets Kj% 2 +cassock 'k&s@k K6% 2 +cassocks 'k&s@ks Kj% 2 +cassowaries 'k&s@we@rIz Kj$ 4 +cassowary 'k&s@we@rI K8$ 4 +cast kAst J5%,Jc%,Jd%,K6% 12C,6A,15A,15B +cast-iron kAst-'aI@n OA% 3 +cast-off 'kAst-0f Oq% 2 +cast-offs 'kAst-0fs Kj% 2 +castanets ,k&st@'nets Kj% 3 +castaway 'kAst@weI K6% 3 +castaways 'kAst@weIz Kj% 3 +caste kAst M6% 1 +castellated 'k&st@leItId OA% 4 +caster 'kAst@R K6% 2 +casters 'kAst@z Kj% 2 +castes kAsts Mj% 1 +castigate 'k&stIgeIt H2% 36A +castigated 'k&stIgeItId Hc%,Hd% 46A +castigates 'k&stIgeIts Ha% 36A +castigating 'k&stIgeItIN Hb% 46A +castigation ,k&stI'geISn M6% 4 +castigations ,k&stI'geISnz Mj$ 4 +casting 'kAstIN Jb%,K6% 22C,6A,15A,15B +castings 'kAstINz Kj% 2 +castle 'kAsl I2%,K6% 2 +castled 'kAsld Ic%,Id% 2 +castles 'kAslz Ia%,Kj% 2 +castling 'kAslIN Ib% 2 +castor 'kAst@R K6% 2 +castor oil ,kAst@r 'oIl L@% 3 +castors 'kAst@z Kj% 2 +castrate k&'streIt H2% 26A +castrated k&'streItId Hc%,Hd% 36A +castrates k&'streIts Ha% 26A +castrating k&'streItIN Hb% 36A +castration k&'streISn K6% 3 +castrations k&'streISnz Kj$ 3 +casts kAsts Ja%,Kj% 12C,6A,15A,15B +casual 'k&ZU@l OA% 3 +casually 'k&ZU@lI Pu% 4 +casuals 'k&ZU@lz Kj% 3 +casualties 'k&ZU@ltIz Kj% 4 +casualty 'k&ZU@ltI K8% 4 +casuist 'k&zjUIst K6$ 3 +casuistic ,k&zjU'IstIk OA$ 4 +casuistical ,k&zjU'IstIkl OA$ 5 +casuistries 'k&zjUIstrIz Mj$ 4 +casuistry 'k&zjUIstrI M8% 4 +casuists 'k&zjUIsts Kj$ 3 +casus belli ,keIs@s 'belaI Ki$ 4 +cat k&t K6% 1 +cat-nap 'k&t-n&p K6% 2 +cat-naps 'k&t-n&ps Kj% 2 +cat-o'-nine-tails ,k&t-@-'naIn-teIlz Ki% 4 +cat-sleep 'k&t-slip K6$ 2 +cat-sleeps 'k&t-slips Kj$ 2 +cataclysm 'k&t@klIz@m K6% 4 +cataclysmic ,k&t@'klIzmIk OA% 4 +cataclysms 'k&t@klIz@mz Kj% 4 +catacombs 'k&t@kumz Kj% 3 +catafalque 'k&t@f&lk K6$ 3 +catafalques 'k&t@f&lks Kj$ 3 +catalepsy 'k&t@lepsI L@$ 4 +cataleptic ,k&t@'leptIk K6$,OA$ 4 +cataleptics ,k&t@'leptIks Kj$ 4 +catalogue 'k&t@l0g H2%,K6% 36A +catalogued 'k&t@l0gd Hc%,Hd% 36A +catalogues 'k&t@l0gz Ha%,Kj% 36A +cataloguing 'k&t@l0gIN Hb% 46A +catalpa k@'t&lp@ K6$ 3 +catalpas k@'t&lp@z Kj$ 3 +catalysis k@'t&l@sIs L@$ 4 +catalyst 'k&t@lIst K6% 3 +catalysts 'k&t@lIsts Kj% 3 +catalytic ,k&t@'lItIk OA$ 4 +catamaran ,k&t@m@'r&n K6% 4 +catamarans ,k&t@m@'r&nz Kj% 4 +catapult 'k&t@pVlt H0%,K6% 3 +catapulted 'k&t@pVltId Hc%,Hd% 4 +catapulting 'k&t@pVltIN Hb% 4 +catapults 'k&t@pVlts Ha%,Kj% 3 +cataract 'k&t@r&kt K6% 3 +cataracts 'k&t@r&kts Kj% 3 +catarrh k@'tAR L@% 2 +catastrophe k@'t&str@fI K6% 4 +catastrophes k@'t&str@fIz Kj% 4 +catastrophic ,k&t@'str0fIk OA% 4 +catastrophically ,k&t@'str0fIklI Pu% 5 +catcall 'k&tkAl I0%,K6% 2 +catcalled 'k&tkAld Ic%,Id% 2 +catcalling 'k&tkAlIN Ib% 3 +catcalls 'k&tkAlz Ia%,Kj% 2 +catch k&tS J5%,K7% 12C,3A,6A,12C,14,15A,15B,19B,22 +catch-crop 'k&tS-kr0p K6$ 2 +catch-crops 'k&tS-kr0ps Kj$ 2 +catcher 'k&tS@R K6% 2 +catchers 'k&tS@z Kj% 2 +catches 'k&tSIz Ja%,Kj% 22C,3A,6A,12C,14,15A,15B,19B,22 +catchier 'k&tSI@R Or$ 3 +catchiest 'k&tSIIst Os% 3 +catching 'k&tSIN Jb%,OA% 22C,3A,6A,12C,14,15A,15B,19B,22 +catchment 'k&tSm@nt K6% 2 +catchment-area 'k&tSm@nt-e@rI@ K6% 5 +catchment-areas 'k&tSm@nt-e@rI@z Kj% 5 +catchment-basin 'k&tSm@nt-beIsn K6% 4 +catchment-basins 'k&tSm@nt-beIsnz Kj% 4 +catchments 'k&tSm@nts Kj% 2 +catchpenny 'k&tSpenI OA% 3 +catchup 'k&tS@p K6$ 2 +catchups 'k&tS@ps Kj$ 2 +catchword 'k&tSw3d K6% 2 +catchwords 'k&tSw3dz Kj% 2 +catchy 'k&tSI OD% 2 +catechism 'k&t@kIz@m M6% 4 +catechisms 'k&t@kIz@mz Mj$ 4 +catechize 'k&t@kaIz H2$ 36A +catechized 'k&t@kaIzd Hc$,Hd$ 36A +catechizes 'k&t@kaIzIz Ha$ 46A +catechizing 'k&t@kaIzIN Hb$ 46A +categorical ,k&tI'g0rIkl OA% 5 +categorically ,k&tI'g0rIklI Pu% 5 +categories 'k&tIg@rIz Kj% 4 +categorize 'k&tIg@raIz H2% 46A +categorized 'k&tIg@raIzd Hc%,Hd% 46A +categorizes 'k&tIg@raIzIz Ha% 56A +categorizing 'k&tIg@raIzIN Hb% 56A +category 'k&tIg@rI K8% 4 +cater 'keIt@R I0% 23A +catered 'keIt@d Ic%,Id% 23A +caterer 'keIt@r@R K6% 3 +caterers 'keIt@r@z Kj% 3 +catering 'keIt@rIN Ib% 33A +caterpillar 'k&t@pIl@R K6% 4 +caterpillars 'k&t@pIl@z Kj% 4 +caters 'keIt@z Ia% 23A +caterwaul 'k&t@wOl I0%,K6% 3 +caterwauled 'k&t@wOld Ic%,Id% 3 +caterwauling 'k&t@wOlIN Ib% 4 +caterwauls 'k&t@wOlz Ia%,Kj% 3 +catfish 'k&tfIS K9% 2 +catfishes 'k&tfISIz Kj% 3 +catgut 'k&tgVt L@% 2 +catharses k@'TAsiz Kj$ 3 +catharsis k@'TAsIs Mi% 3 +cathartic k@'TAtIk M6% 3 +cathartics k@'TAtIks Mj$ 3 +cathedral k@'Tidr@l K6% 3 +cathedrals k@'Tidr@lz Kj% 3 +cathode 'k&T@Ud K6% 2 +cathodes 'k&T@Udz Kj% 2 +catholic 'k&TlIk OA% 2 +catholicity ,k&T@'lIsItI L@$ 5 +catkin 'k&tkIn K6% 2 +catkins 'k&tkInz Kj% 2 +cats k&ts Kj% 1 +catsup 'k&ts@p M6$ 2 +catsups 'k&ts@ps Mj$ 2 +cattier 'k&tI@R Or% 3 +cattiest 'k&tIIst Os% 3 +cattiness 'k&tIn@s L@% 3 +cattish 'k&tIS OA$ 2 +cattle 'k&tl Kj% 2 +cattle-cake 'k&tl-keIk L@% 3 +cattleman 'k&tlm@n Ki% 3 +cattlemen 'k&tlmen Kj% 3 +catty 'k&tI OD% 2 +catwalk 'k&twOk K6% 2 +catwalks 'k&twOks Kj% 2 +caucus 'kOk@s K7% 2 +caucuses 'kOk@sIz Kj% 3 +caught kOt Jc%,Jd% 12C,3A,6A,12C,14,15A,15B,19B,22 +caul kOl K6$ 1 +cauldron 'kOldr@n K6% 2 +cauldrons 'kOldr@nz Kj% 2 +cauliflower 'k0lIflaU@R M6% 4 +cauliflowers 'k0lIflaU@z Mj% 4 +caulk kOk H0$ 16A +caulked kOkt Hc$,Hd$ 16A +caulking 'kOkIN Hb$ 26A +caulks kOks Ha$ 16A +cauls kOlz Kj$ 1 +causal 'kOzl OA$ 2 +causality kO'z&lItI L@% 4 +causation kO'zeISn L@% 3 +causative 'kOz@tIv OA% 3 +cause kOz H2%,M6% 16A,12A,13A,17 +caused kOzd Hc%,Hd% 16A,12A,13A,17 +causeless 'kOzl@s OA$ 2 +causerie 'k@Uz@rI K6$ 3 +causeries 'k@Uz@rIz Kj$ 3 +causes 'kOzIz Ha%,Mj% 26A,12A,13A,17 +causeway 'kOzweI K6% 2 +causeways 'kOzweIz Kj% 2 +causing 'kOzIN Hb% 26A,12A,13A,17 +caustic 'kOstIk OA% 2 +caustically 'kOstIklI Pu% 3 +cauterize 'kOt@raIz H2% 36A +cauterized 'kOt@raIzd Hc%,Hd% 36A +cauterizes 'kOt@raIzIz Ha% 46A +cauterizing 'kOt@raIzIN Hb% 46A +caution 'kOSn H0%,M6% 26A,14,17 +cautionary 'kOS@nrI OA% 3 +cautioned 'kOSnd Hc%,Hd% 26A,14,17 +cautioning 'kOSnIN Hb% 36A,14,17 +cautions 'kOSnz Ha%,Mj% 26A,14,17 +cautious 'kOS@s OA% 2 +cautiously 'kOS@slI Pu% 3 +cavalcade ,k&v@l'keId K6% 3 +cavalcades ,k&v@l'keIdz Kj% 3 +cavalier ,k&v@'lI@R K6%,OA% 4 +cavalierly ,k&v@'lI@lI Pu$ 5 +cavaliers ,k&v@'lI@z Kj% 4 +cavalries 'k&v@lrIz Kj% 3 +cavalry 'k&v@lrI K8% 3 +cavalryman 'k&v@lrIm@n Ki% 4 +cavalrymen 'k&v@lrImen Kj% 4 +cave keIv J2%,K6% 12C,15B +cave-dweller 'keIv-dwel@R K6% 3 +cave-dwellers 'keIv-dwel@z Kj% 3 +cave-in 'keIv-In K6% 2 +cave-ins 'keIv-Inz Kj% 2 +caveat 'keIvI&t K6% 3 +caveats 'keIvI&ts Kj% 3 +caved keIvd Jc%,Jd% 12C,15B +caveman 'keIvm&n Ki% 2 +cavemen 'keIvmen Kj% 2 +cavern 'k&v@n K6% 2 +cavernous 'k&v@n@s OA% 3 +caverns 'k&v@nz Kj% 2 +caves keIvz Ja%,Kj% 12C,15B +caviar 'k&vIAR L@% 3 +caviare 'k&vIAR L@% 3 +cavil 'k&v@l I4% 22A,3A +cavilled 'k&v@ld Ic%,Id% 22A,3A +cavilling 'k&v@lIN Ib% 32A,3A +cavils 'k&v@lz Ia% 22A,3A +caving 'keIvIN Jb% 22C,15B +cavities 'k&vItIz Kj% 3 +cavity 'k&vItI K8% 3 +cavort k@'vOt I0% 2 +cavorted k@'vOtId Ic%,Id% 3 +cavorting k@'vOtIN Ib% 3 +cavorts k@'vOts Ia% 2 +caw kO J0%,K6% 12A,15B +cawed kOd Jc%,Jd% 12A,15B +cawing 'kOIN Jb% 22A,15B +caws kOz Ja%,Kj% 12A,15B +cayenne keI'en L@% 2 +cayenne pepper ,keIen 'pep@R L@% 4 +cayman 'keIm@n K6$ 2 +caymans 'keIm@nz Kj$ 2 +ca~non 'k&nj@n K6$ 2 +ca~nons 'k&nj@nz Kj$ 2 +cc ,si'si Y]% 2 +cease sis J2%,K6% 12A,3A,6A,6D,7A +cease-fire 'sis-faI@R K6% 2 +cease-fires 'sis-faI@z Kj% 2 +ceased sist Jc%,Jd% 12A,3A,6A,6D,7A +ceaseless 'sisl@s OA% 2 +ceaselessly 'sisl@slI Pu% 3 +ceases 'sisIz Ja%,Kj% 22A,3A,6A,6D,7A +ceasing 'sisIN Jb% 22A,3A,6A,6D,7A +cedar 'sid@R M6% 2 +cedars 'sid@z Mj% 2 +cede sid H2% 16A,14 +ceded 'sidId Hc%,Hd% 26A,14 +cedes sidz Ha% 16A,14 +cedilla sI'dIl@ K6% 3 +cedillas sI'dIl@z Kj% 3 +ceding 'sidIN Hb% 26A,14 +ceiling 'silIN K6% 2 +ceilings 'silINz Kj% 2 +celandine 'sel@ndaIn K6% 3 +celandines 'sel@ndaInz Kj% 3 +celebrant 'selIbr@nt K6% 3 +celebrants 'selIbr@nts Kj% 3 +celebrate 'selIbreIt H2% 36A +celebrated 'selIbreItId Hc%,Hd%,OA% 46A +celebrates 'selIbreIts Ha% 36A +celebrating 'selIbreItIN Hb% 46A +celebration ,selI'breISn M6% 4 +celebrations ,selI'breISnz Mj% 4 +celebrities sI'lebrItIz Mj% 4 +celebrity sI'lebrItI M8% 4 +celerity sI'lerItI L@$ 4 +celery 'sel@rI L@% 3 +celestial sI'lestI@l OA% 4 +celibacy 'selIb@sI L@% 4 +celibate 'selIb@t K6% 3 +celibates 'selIb@ts Kj% 3 +cell sel K6% 1 +cellar 'sel@R K6% 2 +cellarage 'sel@rIdZ M6$ 3 +cellarages 'sel@rIdZIz Mj$ 4 +cellars 'sel@z Kj% 2 +cellist 'tSelIst K6% 2 +cellists 'tSelIsts Kj% 2 +cello 'tSel@U K6% 2 +cellophane 'sel@feIn L@% 3 +cellos 'tSel@Uz Kj% 2 +cells selz Kj% 1 +cellular 'seljUl@R OA% 3 +celluloid 'seljUloId L@% 3 +cellulose 'seljUl@Us L@% 3 +cement sI'ment H0%,L@% 26A,15B +cement-mixer sI'ment-mIks@R K6% 4 +cement-mixers sI'ment-mIks@z Kj% 4 +cemented sI'mentId Hc%,Hd% 36A,15B +cementing sI'mentIN Hb% 36A,15B +cements sI'ments Ha% 26A,15B +cemeteries 'sem@trIz Kj% 3 +cemetery 'sem@trI K8% 3 +cenotaph 'sen@tAf K6% 3 +cenotaphs 'sen@tAfs Kj$ 3 +censer 'sens@R K6$ 2 +censers 'sens@z Kj$ 2 +censor 'sens@R H0%,K6% 26A +censored 'sens@d Hc%,Hd% 26A +censoring 'sens@rIN Hb% 36A +censorious sen'sOrI@s OA% 4 +censors 'sens@z Ha%,Kj% 26A +censorship 'sens@SIp K6% 3 +censorships 'sens@SIps Kj$ 3 +censure 'senS@R H2%,M6% 26A,14 +censured 'senS@d Hc%,Hd% 26A,14 +censures 'senS@z Ha%,Mj% 26A,14 +censuring 'senS@rIN Hb% 36A,14 +census 'sens@s K7% 2 +censuses 'sens@sIz Kj% 3 +cent sent K6% 1 +centaur 'sentOR K6$ 2 +centaurs 'sentOz Kj$ 2 +centenarian ,sentI'ne@rI@n K6%,OA% 5 +centenarians ,sentI'ne@rI@nz Kj% 5 +centenaries sen'tin@rIz Kj% 4 +centenary sen'tin@rI K8%,OA% 4 +centennial sen'tenI@l K6%,OA% 4 +centennially sen'tenI@lI Pu$ 5 +centennials sen'tenI@lz Kj$ 4 +centi- 'sentI- U-% 2 +centigrade 'sentIgreId OA% 3 +centime 's0ntim K6% 2 +centimes 's0ntimz Kj% 2 +centimetre 'sentI,mit@R K6% 4 +centimetres 'sentI,mit@z Kj% 4 +centipede 'sentIpid K6% 3 +centipedes 'sentIpidz Kj% 3 +central 'sentr@l K6$,OA% 2 +centralization ,sentr@laI'zeISn M6% 5 +centralizations ,sentr@laI'zeISnz Mj$ 5 +centralize 'sentr@laIz J2% 32A,6A +centralized 'sentr@laIzd Jc%,Jd% 32A,6A +centralizes 'sentr@laIzIz Ja% 42A,6A +centralizing 'sentr@laIzIN Jb% 42A,6A +centrally 'sentr@lI Pu% 3 +centrals 'sentr@lz Kj$ 2 +centre 'sent@R J2%,K6% 23A,6A,14,15A +centre-bit 'sent@-bIt K6$ 3 +centre-bits 'sent@-bIts Kj$ 3 +centre-board 'sent@-bOd K6% 3 +centre-boards 'sent@-bOdz Kj% 3 +centred 'sent@d Jc%,Jd% 23A,6A,14,15A +centrepiece 'sent@pis K6% 3 +centrepieces 'sent@pisIz Kj$ 4 +centres 'sent@z Ja%,Kj% 23A,6A,14,15A +centrifugal sen'trIfjUgl OA% 4 +centrifuge 'sentrIfjudZ K6% 3 +centrifuges 'sentrIfjudZIz Kj% 4 +centring 'sent@rIN Jb% 23A,6A,14,15A +centripetal sen'trIpItl OA$ 4 +cents sents Kj% 1 +centuries 'sentS@rIz Kj% 3 +centurion sen'tjU@rI@n K6% 4 +centurions sen'tjU@rI@nz Kj% 4 +century 'sentS@rI K8% 3 +ceramic s@'r&mIk OA% 3 +ceramics s@'r&mIks Lk% 3 +cereal 'sI@rI@l M6% 3 +cereals 'sI@rI@lz Mj% 3 +cerebral 'ser@br@l OA% 3 +cerebration ,serI'breISn L@$ 4 +ceremonial ,serI'm@UnI@l M6%,OA% 5 +ceremonially ,serI'm@UnI@lI Pu% 6 +ceremonials ,serI'm@UnI@lz Mj% 5 +ceremonies 'serIm@nIz Mj% 4 +ceremonious ,serI'm@UnI@s OA% 5 +ceremoniously ,serI'm@UnI@slI Pu% 6 +ceremony 'serIm@nI M8% 4 +cerise s@'riz M6%,OA% 2 +cerises s@'rizIz Mj$ 3 +cert s3t K6% 1 +certain 's3tn OA* 2 +certainly 's3tnlI Pu% 3 +certainties 's3tntIz Mj% 3 +certainty 's3tntI M8% 3 +certifiable ,s3tI'faI@bl OA% 5 +certificate s@'tIfIk@t K6% 4 +certificate s@'tIfIkeIt H2$ 4 +certificated s@'tIfIkeItId Hc$,Hd$,OA% 5 +certificates s@'tIfIk@ts Kj% 4 +certificates s@'tIfIkeIts Ha$ 4 +certificating s@'tIfIkeItIN Hb$ 5 +certification ,s3tIfI'keISn M6% 5 +certifications ,s3tIfI'keISnz Mj$ 5 +certified 's3tIfaId Jc%,Jd% 33A,6A,9,16B,25 +certifies 's3tIfaIz Ja% 33A,6A,9,16B,25 +certify 's3tIfaI J3% 33A,6A,9,16B,25 +certifying 's3tIfaIIN Jb% 43A,6A,9,16B,25 +certitude 's3tItjud L@% 3 +certs s3ts Kj% 1 +cerulean sI'rulI@n OA$ 4 +cervical s3'vaIkl OA% 3 +cervices 's3vIsiz Kj$ 3 +cervix 's3vIks K7% 2 +cervixes 's3vIksIz Kj$ 3 +cessation se'seISn L@% 3 +cession 'seSn M6$ 2 +cessions 'seSnz Mj$ 2 +cesspit 'sespIt K6% 2 +cesspits 'sespIts Kj% 2 +cesspool 'sespul K6% 2 +cesspools 'sespulz Kj% 2 +cf ,si'ef Y~% 2 +ch^ateau 'S&t@U Ki% 2 +chafe tSeIf J2%,K6% 12A,3A,6A +chafed tSeIft Jc%,Jd% 12A,3A,6A +chafes tSeIfs Ja%,Kj% 12A,3A,6A +chaff tSAf H0%,L@% 12A,2C,6A,15A +chaffed tSAft Hc%,Hd% 12A,2C,6A,15A +chaffinch 'tS&fIntS K7% 2 +chaffinches 'tS&fIntSIz Kj% 3 +chaffing 'tSAfIN Hb% 22A,2C,6A,15A +chaffs tSAfs Ha% 12A,2C,6A,15A +chafing 'tSeIfIN Jb% 22A,3A,6A +chafing dish 'tSeIfIN dIS K7$ 3 +chafing dishes 'tSeIfIN dISIz Kj$ 4 +chagrin 'S&grIn H0$,L@% 26A +chagrined 'S&grInd Hc$,Hd$ 26A +chagrining 'S&grInIN Hb$ 36A +chagrins 'S&grInz Ha$ 26A +chain tSeIn H0%,K6% 16A,15A,15B +chain-armour tSeIn-'Am@R L@% 3 +chain-gang 'tSeIn-g&N K6% 2 +chain-gangs 'tSeIn-g&Nz Kj% 2 +chain-letter 'tSeIn-let@R K6% 3 +chain-letters 'tSeIn-let@z Kj% 3 +chain-mail 'tSeIn-meIl L@% 2 +chain-smoker 'tSeIn-sm@Uk@R K6% 3 +chain-smokers 'tSeIn-sm@Uk@z Kj% 3 +chain-stitch 'tSeIn-stItS K7% 2 +chain-stitches 'tSeIn-stItSIz Kj$ 3 +chain-store 'tSeIn-stOR K6% 2 +chain-stores 'tSeIn-stOz Kj% 2 +chained tSeInd Hc%,Hd% 16A,15A,15B +chaining 'tSeInIN Hb% 26A,15A,15B +chains tSeInz Ha%,Kj% 16A,15A,15B +chair tSe@R H0%,K6% 16A +chair-lift 'tSe@-lIft K6% 2 +chair-lifts 'tSe@-lIfts Kj% 2 +chaired tSe@d Hc%,Hd% 16A +chairing 'tSe@rIN Hb% 26A +chairman 'tSe@m@n Ki% 2 +chairmanship 'tSe@m@nSIp L@% 3 +chairmen 'tSe@m@n Kj% 2 +chairs tSe@z Ha%,Kj% 16A +chaise SeIz K6% 1 +chaise longue ,SeIz 'l0N K6% 2 +chaise longues ,SeIz 'l0Nz Kj% 2 +chaises 'SeIzIz Kj% 2 +chalet 'S&leI K6% 2 +chalets 'S&leIz Kj% 2 +chalice 'tS&lIs K6% 2 +chalices 'tS&lIsIz Kj% 3 +chalk tSOk H0%,M6% 115B +chalked tSOkt Hc%,Hd% 115B +chalkier 'tSOkI@R Or% 3 +chalkiest 'tSOkIIst Os% 3 +chalking 'tSOkIN Hb% 215B +chalkpit 'tSOkpIt K6% 2 +chalkpits 'tSOkpIts Kj% 2 +chalks tSOks Ha%,Mj% 115B +chalky 'tSOkI OD% 2 +challenge 'tS&l@ndZ H2%,K6% 26A,14,17 +challenged 'tS&l@ndZd Hc%,Hd% 26A,14,17 +challenger 'tS&l@ndZ@R K6% 3 +challengers 'tS&l@ndZ@z Kj% 3 +challenges 'tS&l@ndZIz Ha%,Kj% 36A,14,17 +challenging 'tS&l@ndZIN Hb% 36A,14,17 +chamber 'tSeImb@R K6% 2 +chamberlain 'tSeImb@lIn K6% 3 +chamberlains 'tSeImb@lInz Kj% 3 +chambermaid 'tSeImb@meId K6% 3 +chambermaids 'tSeImb@meIdz Kj% 3 +chamberpot 'tSeImb@p0t K6% 3 +chamberpots 'tSeImb@p0ts Kj% 3 +chambers 'tSeImb@z Kj% 2 +chameleon k@'milI@n K6% 4 +chameleons k@'milI@nz Kj% 4 +chammy-leather 'S&mI-leD@R K6% 4 +chammy-leathers 'S&mI-leD@z Kj% 4 +chamois 'S&mwA K7% 2 +chamois-leather 'S&mI-leD@R K6$ 4 +chamois-leathers 'S&mI-leD@z Kj$ 4 +chamoises 'S&mwAz Kj$ 2 +champ tS&mp J0%,K6% 12A,2C,4A,6A +champagne S&m'peIn K6% 2 +champagnes S&m'peInz Kj% 2 +champed tS&mpt Jc%,Jd% 12A,2C,4A,6A +champing 'tS&mpIN Jb% 22A,2C,4A,6A +champion 'tS&mpI@n H0%,K6%,OA%,Pu% 36A +championed 'tS&mpI@nd Hc%,Hd% 36A +championing 'tS&mpI@nIN Hb% 46A +champions 'tS&mpI@nz Ha%,Kj% 36A +championship 'tS&mpI@nSIp M6% 4 +championships 'tS&mpI@nSIps Mj% 4 +champs tS&mps Ja%,Kj% 12A,2C,4A,6A +chance tSAns J2%,M6% 12A,3A,4E,6A,6C +chanced tSAnst Jc%,Jd% 12A,3A,4E,6A,6C +chancel 'tSAnsl K6% 2 +chancelleries 'tSAns@lrIz Kj$ 3 +chancellery 'tSAns@lrI K8% 3 +chancellor 'tSAns@l@R K6% 3 +chancellors 'tSAns@l@z Kj% 3 +chancels 'tSAnslz Kj% 2 +chanceries 'tSAns@rIz Kj$ 3 +chancery 'tSAns@rI K8% 3 +chances 'tSAnsIz Ja%,Mj% 22A,3A,4E,6A,6C +chancing 'tSAnsIN Jb% 22A,3A,4E,6A,6C +chancy 'tSAnsI OA% 2 +chandelier ,S&nd@'lI@R K6% 4 +chandeliers ,S&nd@'lI@z Kj% 4 +chandler 'tSAndl@R K6% 2 +chandlers 'tSAndl@z Kj% 2 +change tSeIndZ J2*,M6* 12A,2C,6A,14 +changeable 'tSeIndZ@b@l OA% 3 +changeableness 'tSeIndZ@b@ln@s L@% 4 +changed tSeIndZd Jc%,Jd% 12A,2C,6A,14 +changeful 'tSeIndZf@l OA% 2 +changeless 'tSeIndZl@s OA% 2 +changeling 'tSeIndZlIN K6$ 2 +changelings 'tSeIndZlINz Kj$ 2 +changeover 'tSeIndZ@Uv@R K6% 3 +changeovers 'tSeIndZ@Uv@z Kj% 3 +changes 'tSeIndZIz Ja%,Mj% 22A,2C,6A,14 +changing 'tSeIndZIN Jb% 22A,2C,6A,14 +channel 'tS&nl H4%,K6% 26A,14 +channelled 'tS&nld Hc%,Hd% 26A,14 +channelling 'tS&n@lIN Hb% 36A,14 +channels 'tS&nlz Ha%,Kj% 26A,14 +chant tSAnt J0%,K6% 12A,6A +chanted 'tSAntId Jc%,Jd% 22A,6A +chanting 'tSAntIN Jb% 22A,6A +chants tSAnts Ja%,Kj% 12A,6A +chaos 'keI0s L@% 2 +chaotic keI'0tIk OA% 3 +chaotically keI'0tIklI Pu% 4 +chap tS&p J4$,K6% 12A,6A +chapel 'tS&pl K6% 2 +chapelgoer 'tS&plg@U@R K6% 4 +chapelgoers 'tS&plg@U@z Kj% 4 +chapels 'tS&plz Kj% 2 +chaperon 'S&p@r@Un H0%,K6% 36A +chaperoned 'S&p@r@Und Hc%,Hd% 36A +chaperoning 'S&p@r@UnIN Hb% 46A +chaperons 'S&p@r@Unz Ha%,Kj% 36A +chapfallen 'tS&pfOl@n OA$ 3 +chaplain 'tS&plIn K6% 2 +chaplaincies 'tS&plInsIz Kj$ 3 +chaplaincy 'tS&plInsI K8% 3 +chaplains 'tS&plInz Kj% 2 +chaplet 'tS&plIt K6$ 2 +chaplets 'tS&plIts Kj$ 2 +chapman 'tS&pm@n Ki$ 2 +chapmen 'tS&pm@n Kj$ 2 +chapped tS&pt Jc%,Jd% 12A,6A +chapping 'tS&pIN Jb$ 22A,6A +chaps tS&ps Ja$,Kj% 12A,6A +chapter 'tS&pt@R K6% 2 +chapterhouse 'tS&pt@haUs K6% 3 +chapterhouses 'tS&pt@haUzIz Kj% 4 +chapters 'tS&pt@z Kj% 2 +char tSAR J4%,M6% 12A,6A +char`abanc 'S&r@b&N K6$ 3 +char`abancs 'S&r@b&Nz Kj$ 3 +charabanc 'S&r@b&N K6% 3 +charabancs 'S&r@b&Nz Kj% 3 +character 'k&r@kt@R M6% 3 +characteristic ,k&r@kt@'rIstIk K6%,OA% 5 +characteristically ,k&r@kt@'rIstIklI Pu% 6 +characteristics ,k&r@kt@'rIstIks Kj% 5 +characterization ,k&r@kt@raI'zeISn L@% 6 +characterize 'k&r@kt@raIz H2% 46A +characterized 'k&r@kt@raIzd Hc%,Hd% 46A +characterizes 'k&r@kt@raIzIz Ha% 56A +characterizing 'k&r@kt@raIzIN Hb% 56A +characterless 'k&r@kt@l@s OA% 4 +characters 'k&r@kt@z Mj% 3 +charade S@'rAd K6% 2 +charades S@'rAdz Kj% 2 +charcoal 'tSAk@Ul L@% 2 +charcoal-burner 'tSAk@Ul-,b3n@R K6% 4 +charcoal-burners 'tSAk@Ul-,b3n@z Kj% 4 +chard tSAd K6$ 1 +chards tSAdz Kj$ 1 +charg_e d'affaires ,SAZeI d&'fe@R Ki% 4 +charg_es d'affaires ,SAZeI d&'fe@R Kj$ 4 +charge tSAdZ J2%,M6% 12A,2B,2C,6A,14,15A,15B,17 +charge-account 'tSAdZ-@kaUnt K6% 3 +charge-accounts 'tSAdZ-@kaUnts Kj% 3 +charge-sheet 'tSAdZ-Sit K6% 2 +charge-sheets 'tSAdZ-Sits Kj% 2 +chargeable 'tSAdZ@bl OA% 3 +charged tSAdZd Jc%,Jd% 12A,2B,2C,6A,14,15A,15B,17 +charger 'tSAdZ@R K6% 2 +chargers 'tSAdZ@z Kj% 2 +charges 'tSAdZIz Ja%,Mj% 22A,2B,2C,6A,14,15A,15B,17 +charging 'tSAdZIN Jb% 22A,2B,2C,6A,14,15A,15B,17 +charily 'tSe@rIlI Pu% 3 +chariot 'tS&rI@t K6% 3 +charioteer ,tS&rI@'tI@R K6% 4 +charioteers ,tS&rI@'tI@z Kj% 4 +chariots 'tS&rI@ts Kj% 3 +charisma k@'rIzm@ K6% 3 +charismas k@'rIzm@z Kj$ 3 +charismatic ,k&rIz'm&tIk OA% 4 +charitable 'tS&rIt@bl OA% 4 +charitably 'tS&rIt@blI Pu% 4 +charities 'tS&rItIz Mj% 3 +charity 'tS&rItI M8% 3 +charivari ,SArI'vArI L@$ 4 +charladies 'tSAleIdIz Kj% 3 +charlady 'tSAleIdI K8% 3 +charlatan 'SAl@t@n K6% 3 +charlatans 'SAl@t@nz Kj% 3 +charlock 'tSAl0k L@$ 2 +charm tSAm J0%,M6% 12A,6A,15A +charmed tSAmd Jc%,Jd% 12A,6A,15A +charmer 'tSAm@R K6% 2 +charmers 'tSAm@z Kj% 2 +charming 'tSAmIN Jb%,OA% 22A,6A,15A +charmingly 'tSAmINlI Pu% 3 +charms tSAmz Ja%,Mj% 12A,6A,15A +charnel house 'tSAnl haUs K6$ 3 +charnel houses 'tSAnl haUzIz Kj$ 4 +charred tSAd Jc%,Jd% 12A,6A +charring 'tSArIN Jb% 22A,6A +chars tSAz Ja%,Mj% 12A,6A +chart tSAt H0%,K6% 16A +charted 'tSAtId Hc%,Hd% 26A +charter 'tSAt@R H0%,K6% 26A +charter-parties 'tSAt@-,pAtIz Kj$ 4 +charter-party 'tSAt@-,pAtI K8$ 4 +chartered 'tSAt@d Hc%,Hd% 26A +chartering 'tSAt@rIN Hb% 36A +charters 'tSAt@z Ha%,Kj% 26A +charting 'tSAtIN Hb% 26A +chartreuse SA'tr3z L@% 2 +charts tSAts Ha%,Kj% 16A +charwoman 'tSAwUm@n Ki% 3 +charwomen 'tSAwImIn Kj% 3 +chary 'tSe@rI OA% 2 +chase tSeIs J2%,K6% 12C,3A,6A,15A,15B +chased tSeIst Jc%,Jd% 12C,3A,6A,15A,15B +chaser 'tSeIs@R K6% 2 +chasers 'tSeIs@z Kj% 2 +chases 'tSeIsIz Ja%,Kj% 22C,3A,6A,15A,15B +chasing 'tSeIsIN Jb% 22C,3A,6A,15A,15B +chasm 'k&z@m K6% 2 +chasms 'k&z@mz Kj% 2 +chassis 'S&sI K9% 2 +chaste tSeIst OA% 1 +chastely 'tSeIstlI Pu% 2 +chasten 'tSeIsn H0% 26A +chastened 'tSeIsnd Hc%,Hd% 26A +chastening 'tSeIsnIN Hb% 36A +chastens 'tSeIsnz Ha% 26A +chastise tS&'staIz H2% 26A +chastised tS&'staIzd Hc%,Hd% 26A +chastisement tS&'staIzm@nt L@% 3 +chastises tS&'staIzIz Ha% 36A +chastising tS&'staIzIN Hb% 36A +chastity 'tS&stItI L@% 3 +chasuble 'tS&zjUbl K6$ 3 +chasubles 'tS&zjUblz Kj$ 3 +chat tS&t J4%,K6% 12A,2C,15B +chateaux 'S&t@Uz Kj% 2 +chatelaine 'S&t@leIn K6$ 3 +chatelaines 'S&t@leInz Kj$ 3 +chats tS&ts Ja%,Kj% 12A,2C,15B +chatted 'tS&tId Jc%,Jd% 22A,2C,15B +chattel 'tS&tl K6$ 2 +chattels 'tS&tlz Kj% 2 +chatter 'tS&t@R I0%,L@% 22A,2C +chatterbox 'tS&t@b0ks K7% 3 +chatterboxes 'tS&t@b0ksIz Kj% 4 +chattered 'tS&t@d Ic%,Id% 22A,2C +chattering 'tS&t@rIN Ib% 32A,2C +chatters 'tS&t@z Ia% 22A,2C +chattier 'tS&tI@R Or% 3 +chattiest 'tS&tIIst Os% 3 +chattily 'tS&tIlI Pu% 3 +chatting 'tS&tIN Jb% 22A,2C,15B +chatty 'tS&tI OD% 2 +chauffeur 'S@Uf@R K6% 2 +chauffeurs 'S@Uf@z Kj% 2 +chauffeuse 'S@Uf3z Ki% 2 +chauffeuses 'S@Uf3z Kj% 2 +chauvinism 'S@UvInIz@m L@% 4 +chauvinist 'S@UvInIst K6% 3 +chauvinistic ,S@UvIn'IstIk OA% 4 +chauvinists 'S@UvInIsts Kj% 3 +chaw tSO H0$,K6$ 1 +chaw-bacon 'tSO-beIk@n K6$ 3 +chaw-bacons 'tSO-beIk@nz Kj$ 3 +chawed tSOd Hc$,Hd$ 1 +chawing 'tSOIN Hb$ 2 +chaws tSOz Ha$,Kj$ 1 +cheap tSip OC% 1 +cheapen 'tSip@n J0% 22A,6A +cheapened 'tSip@nd Jc%,Jd% 22A,6A +cheapening 'tSip@nIN Jb% 32A,6A +cheapens 'tSip@nz Ja% 22A,6A +cheaper 'tSip@R Or% 2 +cheapest 'tSipIst Os% 2 +cheapjack 'tSipdZ&k OA$ 2 +cheaply 'tSiplI Pu% 2 +cheapness 'tSipn@s L@$ 2 +cheat tSit J0%,K6% 12A,2C,6A,14 +cheated 'tSitId Jc%,Jd% 22A,2C,6A,14 +cheating 'tSitIN Jb% 22A,2C,6A,14 +cheats tSits Ja%,Kj% 12A,2C,6A,14 +check tSek J0%,M6% 12C,6A,15B +checkbook 'tSekbUk K6$ 2 +checkbooks 'tSekbUks Kj$ 2 +checked tSekt Jc%,Jd%,OA% 12C,6A,15B +checker 'tSek@R H0$,K6% 2 +checkered 'tSek@d Hc%,Hd% 2 +checkering 'tSek@rIN Hb$ 3 +checkers 'tSek@z Ha$,Kj%,Lk% 2 +checking 'tSekIN Jb% 22C,6A,15B +checklist 'tSeklIst K6% 2 +checklists 'tSeklIsts Kj% 2 +checkmate 'tSekmeIt H2%,K6% 26A +checkmated 'tSekmeItId Hc%,Hd% 36A +checkmates 'tSekmeIts Ha%,Kj% 26A +checkmating 'tSekmeItIN Hb% 36A +checkout 'tSekaUt K6% 2 +checkouts 'tSekaUts Kj% 2 +checkpoint 'tSekpoInt K6% 2 +checkpoints 'tSekpoInts Kj% 2 +checkroom 'tSekrum K6$ 2 +checkrooms 'tSekrumz Kj$ 2 +checks tSeks Ja%,Mj% 12C,6A,15B +checkup 'tSekVp K6% 2 +checkups 'tSekVps Kj% 2 +cheek tSik H0%,M6% 16A +cheekbone 'tSikb@Un K6% 2 +cheekbones 'tSikb@Unz Kj% 2 +cheeked tSikt Hc%,Hd%,Ot% 16A +cheekier 'tSikI@R Or% 3 +cheekiest 'tSikIIst Os% 3 +cheekily 'tSikIlI Pu% 3 +cheeking 'tSikIN Hb% 26A +cheeks tSiks Ha%,Mj% 16A +cheeky 'tSikI OD% 2 +cheep tSip I0%,K6% 1 +cheeped tSipt Ic%,Id% 1 +cheeping 'tSipIN Ib% 2 +cheeps tSips Ia%,Kj% 1 +cheer tSI@R J0%,M6% 12A,2C,6A,15B +cheered tSI@d Jc%,Jd% 12A,2C,6A,15B +cheerful 'tSI@f@l OA% 2 +cheerfully 'tSI@f@lI Pu% 3 +cheerfulness 'tSI@f@ln@s L@% 3 +cheerily 'tSI@r@lI Pu% 3 +cheering 'tSI@rIN Jb%,L@%,OA% 22A,2C,6A,15B +cheerio ,tSI@rI'@U W-% 3 +cheerleader 'tSI@lid@R K6% 3 +cheerleaders 'tSI@lid@z Kj% 3 +cheerless 'tSI@l@s OA% 2 +cheerlessly 'tSI@l@slI Pu% 3 +cheerlessness 'tSI@l@sn@s L@% 3 +cheers tSI@z Ja%,Mj% 12A,2C,6A,15B +cheery 'tSI@rI OA% 2 +cheese tSiz M6% 1 +cheesecake 'tSizkeIk M6% 2 +cheesecakes 'tSizkeIks Mj% 2 +cheesecloth 'tSizkl0T M6% 2 +cheesecloths 'tSizkl0Ts Mj$ 2 +cheeseparing 'tSizpe@rIN OA% 3 +cheeses 'tSizIz Mj% 2 +cheetah 'tSit@ K6% 2 +cheetahs 'tSit@z Kj% 2 +chef Sef K6% 1 +chef-d'oeuvre ,SeI-'d3vr@ Ki$ 3 +chefs Sefs Kj% 1 +chefs-d'oeuvre ,SeI-'d3vr@ Kj$ 3 +chemical 'kemIkl K6%,OA% 3 +chemically 'kemIklI Pu% 3 +chemicals 'kemIklz Kj% 3 +chemise S@'miz K6% 2 +chemises S@'mizIz Kj$ 3 +chemist 'kemIst K6% 2 +chemistry 'kemIstrI L@% 3 +chemists 'kemIsts Kj% 2 +chemotherapy ,kem@U'Ter@pI L@% 5 +chenille S@'nil L@$ 2 +cheque tSek K6% 1 +chequebook 'tSekbUk K6% 2 +chequebooks 'tSekbUks Kj% 2 +chequer 'tSek@R H0$ 2 +chequered 'tSek@d Hc$,Hd% 2 +chequering 'tSek@rIN Hb$ 3 +chequers 'tSek@z Ha$ 2 +cheques tSeks Kj% 1 +cherish 'tSerIS H1% 26A +cherished 'tSerISt Hc%,Hd% 26A +cherishes 'tSerISIz Ha% 36A +cherishing 'tSerISIN Hb% 36A +cheroot S@'rut K6% 2 +cheroots S@'ruts Kj% 2 +cherries 'tSerIz Kj% 2 +cherry 'tSerI K8%,OA% 2 +cherub 'tSer@b K6% 2 +cherubic tSI'rubIk OA% 3 +cherubs 'tSer@bz Kj% 2 +chervil 'tS3vIl L@% 2 +chess tSes L@% 1 +chessboard 'tSesbOd K6% 2 +chessboards 'tSesbOdz Kj% 2 +chessman 'tSesm&n Ki% 2 +chessmen 'tSesmen Kj% 2 +chest tSest K6% 1 +chesterfield 'tSest@fild K6% 3 +chesterfields 'tSest@fildz Kj% 3 +chestnut 'tSesnVt M6% 2 +chestnuts 'tSesnVts Mj% 2 +chests tSests Kj% 1 +cheval glass S@'v&l glAs K7$ 3 +cheval glasses S@'v&l glAsIz Kj$ 4 +chevron 'Sevr@n K6$ 2 +chevrons 'Sevr@nz Kj$ 2 +chew tSu J0%,K6% 12A,2C,3A,6A,15B +chewed tSud Jc%,Jd% 12A,2C,3A,6A,15B +chewing 'tSuIN Jb% 22A,2C,3A,6A,15B +chewing-gum 'tSuIN-gVm L@% 3 +chews tSuz Ja%,Kj% 12A,2C,3A,6A,15B +chiaroscuro kI,Ar@'skU@r@U L@$ 5 +chic Sik L@%,OA% 1 +chicaneries SI'keIn@rIz Mj$ 4 +chicanery SI'keIn@rI M8% 4 +chichi 'SiSi OA$ 2 +chick tSIk K6% 1 +chicken 'tSIkIn M6% 2 +chicken-hearted ,tSIkIn-'hAtId OA% 4 +chicken-run 'tSIkIn-rVn K6% 3 +chicken-runs 'tSIkIn-rVnz Kj% 3 +chickenfeed 'tSIkInfid L@% 3 +chickenpox 'tSIkInp0ks L@% 3 +chickens 'tSIkInz Mj% 2 +chickpea 'tSIkpi K6% 2 +chickpeas 'tSIkpiz Kj% 2 +chicks tSIks Kj% 1 +chickweed 'tSIkwid L@% 2 +chicle 'tSIkl L@$ 2 +chicory 'tSIk@rI L@% 3 +chid tSId Jc$ 16A,14 +chidden 'tSId@n Jd$ 26A,14 +chide tSaId J2% 16A,14 +chided 'tSaIdId Jc%,Jd% 26A,14 +chides tSaIdz Ja% 16A,14 +chiding 'tSaIdIN Jb% 26A,14 +chief tSif K6%,OA% 1 +chiefly 'tSiflI Pu% 2 +chiefs tSifs Kj% 1 +chieftain 'tSift@n K6% 2 +chieftaincies 'tSift@nsIz Kj$ 3 +chieftaincy 'tSift@nsI K8% 3 +chieftains 'tSift@nz Kj% 2 +chiffon 'SIf0n L@% 2 +chiffonier ,SIf@'nI@R K6$ 4 +chiffoniers ,SIf@'nI@z Kj$ 4 +chignon 'Sinj0n K6% 2 +chignons 'Sinj0nz Kj% 2 +chilblain 'tSIlbleIn K6% 2 +chilblained 'tSIlbleInd OA$ 2 +chilblains 'tSIlbleInz Kj% 2 +child tSaIld Ki* 1 +child's-play 'tSaIlz-pleI L@% 2 +child-bearing 'tSaIl-be@rIN L@% 3 +childbirth 'tSaIldb3T L@% 2 +childhood 'tSaIldhUd L@% 2 +childish 'tSaIldIS OA% 2 +childishly 'tSaIldISlI Pu% 3 +childless 'tSaIldl@s OA% 2 +childlike 'tSaIldlaIk OA% 2 +children 'tSIldr@n Kj* 2 +chill tSIl J0%,K6%,OA% 12A,2C,6A +chilled tSIld Jc%,Jd% 12A,2C,6A +chilli 'tSIlI K7% 2 +chillier 'tSIlI@R Or% 3 +chillies 'tSIlIz Kj% 2 +chilliest 'tSIlIIst Os% 3 +chilling 'tSIlIN Jb% 22A,2C,6A +chills tSIlz Ja%,Kj% 12A,2C,6A +chilly 'tSIlI K8$,OD% 2 +chimaera kaI'mI@r@ K6$ 3 +chimaeras kaI'mI@r@z Kj$ 3 +chime tSaIm J2%,K6% 12A,2C,6A,15A +chimed tSaImd Jc%,Jd% 12A,2C,6A,15A +chimera kaI'mI@r@ K6% 3 +chimeras kaI'mI@r@z Kj% 3 +chimerical kaI'merIkl OA$ 4 +chimes tSaImz Ja%,Kj% 12A,2C,6A,15A +chiming 'tSaImIN Jb% 22A,2C,6A,15A +chimney 'tSImnI K6% 2 +chimney-sweep 'tSImnI-swip K6% 3 +chimney-sweeps 'tSImnI-swips Kj% 3 +chimneybreast 'tSImnIbrest K6% 3 +chimneybreasts 'tSImnIbrests Kj% 3 +chimneypiece 'tSImnIpis K6% 3 +chimneypieces 'tSImnIpisIz Kj% 4 +chimneypot 'tSImnIp0t K6% 3 +chimneypots 'tSImnIp0ts Kj% 3 +chimneys 'tSImnIz Kj% 2 +chimneystack 'tSImnIst&k K6% 3 +chimneystacks 'tSImnIst&ks Kj% 3 +chimneysweep 'tSImnIswip K6% 3 +chimneysweeper 'tSImnIswip@R K6$ 4 +chimneysweepers 'tSImnIswip@z Kj$ 4 +chimneysweeps 'tSImnIswips Kj% 3 +chimp tSImp K6% 1 +chimpanzee ,tSImp&n'zi K6% 3 +chimpanzees ,tSImp&n'ziz Kj% 3 +chimps tSImps Kj% 1 +chin tSIn K6% 1 +chin-strap 'tSIn-str&p K6% 2 +chin-straps 'tSIn-str&ps Kj% 2 +chin-wagging 'tSIn-w&gIN L@% 3 +china 'tSaIn@ L@% 2 +china-closet ,tSaIn@-'kl0zIt K6$ 4 +china-closets ,tSaIn@-'kl0zIts Kj$ 4 +chinaware 'tSaIn@we@R L@% 3 +chinchilla tSIn'tSIl@ M6% 3 +chinchillas tSIn'tSIl@z Mj% 3 +chine tSaIn K6$ 1 +chines tSaInz Kj$ 1 +chink tSINk J0%,K6% 12A,2C,6A,15B +chinked tSINkt Jc%,Jd% 12A,2C,6A,15B +chinking 'tSINkIN Jb% 22A,2C,6A,15B +chinks tSINks Ja%,Kj% 12A,2C,6A,15B +chins tSInz Kj% 1 +chintz tSInts L@% 1 +chip tSIp J4%,K6% 12A,2C,6A,15A,15B +chipboard 'tSIpbOd L@% 2 +chipmunk 'tSIpmVNk K6% 2 +chipmunks 'tSIpmVNks Kj% 2 +chipped tSIpt Jc%,Jd% 12A,2C,6A,15A,15B +chipping 'tSIpIN Jb% 22A,2C,6A,15A,15B +chippings 'tSIpINz Kj% 2 +chips tSIps Ja%,Kj% 12A,2C,6A,15A,15B +chiropodist kI'r0p@dIst K6% 4 +chiropodists kI'r0p@dIsts Kj% 4 +chiropody kI'r0p@dI L@% 4 +chiropractor 'kaI@r@Upr&kt@R K6% 4 +chiropractors 'kaI@r@Upr&kt@z Kj% 4 +chirp tS3p J0%,K6% 1 +chirped tS3pt Jc%,Jd% 1 +chirpily 'tS3pIlI Pu% 3 +chirpiness 'tS3pIn@s L@% 3 +chirping 'tS3pIN Jb% 2 +chirps tS3ps Ja%,Kj% 1 +chirpy 'tS3pI OA% 2 +chirrup 'tSIr@p J0%,K6% 2 +chirruped 'tSIr@pt Jc%,Jd% 2 +chirruping 'tSIr@pIN Jb% 3 +chirrups 'tSIr@ps Ja%,Kj% 2 +chisel 'tSIzl H4%,K6% 26A,14,15B +chiselled 'tSIzld Hc%,Hd% 26A,14,15B +chiseller 'tSIz@l@R K6% 3 +chisellers 'tSIz@l@z Kj% 3 +chiselling 'tSIz@lIN Hb% 36A,14,15B +chisels 'tSIzlz Ha%,Kj% 26A,14,15B +chit tSIt K6% 1 +chit-chat 'tSIt-tS&t L@% 2 +chits tSIts Kj% 1 +chivalrous 'SIv@lr@s OA% 3 +chivalrously 'SIvlr@slI Pu% 4 +chivalry 'SIv@lrI L@% 3 +chive tSaIv M6$ 1 +chives tSaIvz Mj% 1 +chivied 'tSIvId Hc$,Hd$ 215B +chivies 'tSIvIz Ha$ 215B +chivvied 'tSIvId Hc%,Hd% 215B +chivvies 'tSIvIz Ha% 215B +chivvy 'tSIvI H3% 215B +chivvying 'tSIvIIN Hb% 315B +chivy 'tSIvI H3$ 215B +chivying 'tSIvIIN Hb$ 315B +chloride 'klOraId L@% 2 +chlorinate 'kl0rIneIt H2% 3 +chlorinated 'kl0rIneItId Hc%,Hd% 4 +chlorinates 'kl0rIneIts Ha% 3 +chlorinating 'kl0rIneItIN Hb% 4 +chlorination ,kl0rI'neISn L@% 4 +chlorine 'klOrin L@% 2 +chloroform 'kl0r@fOm L@% 3 +chlorophyll 'kl0r@fIl L@% 3 +choc tS0k K6% 1 +choc-ice 'tS0k-aIs K6% 2 +choc-ices 'tS0k-aIsIz Kj% 3 +chock tS0k H0%,K6% 16A,15B +chock-a-block ,tS0k-@-'bl0k OA%,Pu% 3 +chock-full tS0k-'fUl OA% 2 +chocked tS0kt Hc%,Hd% 16A,15B +chocking 'tS0kIN Hb% 26A,15B +chocks tS0ks Ha%,Kj% 16A,15B +chocolate 'tS0kl@t M6% 2 +chocolates 'tS0kl@ts Mj% 2 +chocs tS0ks Kj% 1 +choice tSoIs M6%,OA% 1 +choices 'tSoIsIz Mj% 2 +choir 'kwaI@R K6% 2 +choir-school 'kwaI@-skul K6% 3 +choir-schools 'kwaI@-skulz Kj% 3 +choirboy 'kwaI@boI K6% 3 +choirboys 'kwaI@boIz Kj% 3 +choirs 'kwaI@z Kj% 3 +choke tS@Uk J2%,K6% 12A,3A,6A,14,15B +choke-damp 'tS@Uk-d&mp L@$ 2 +choked tS@Ukt Jc%,Jd% 12A,3A,6A,14,15B +choker 'tS@Uk@R K6% 2 +chokers 'tS@Uk@z Kj% 2 +chokes tS@Uks Ja%,Kj% 12A,3A,6A,14,15B +chokey 'tS@UkI K6$ 2 +chokeys 'tS@UkIz Kj$ 2 +chokies 'tS@UkIz Kj$ 2 +choking 'tS@UkIN Jb% 22A,3A,6A,14,15B +choky 'tS@UkI K8$ 2 +choler 'k0l@R K6$ 2 +cholera 'k0l@r@ L@% 3 +choleric 'k0l@rIk OA% 3 +cholers 'k0l@z Kj$ 2 +choose tSuz J5% 12A,2C,3A,6A,7A,16A,16B,23 +chooses 'tSuzIz Ja% 22A,2C,3A,6A,7A,16A,16B,23 +choosey 'tSuzI OA% 2 +choosier 'tSuzI@R Or% 3 +choosiest 'tSuzIIst Os% 3 +choosing 'tSuzIN Jb% 22A,2C,3A,6A,7A,16A,16B,23 +choosy 'tSuzI OD% 2 +chop tS0p J4%,K6% 12A,2C,3A,6A,15A,15B +chop suey ,tS0p 'suI L@% 3 +chop-chop ,tS0p-'tS0p Pu% 2 +chop-house 'tS0p-haUs K6$ 2 +chop-houses 'tS0p-haUzIz Kj$ 3 +chopped tS0pt Jc%,Jd% 12A,2C,3A,6A,15A,15B +chopper 'tS0p@R K6% 2 +choppers 'tS0p@z Kj% 2 +choppier 'tS0pI@R Or% 3 +choppiest 'tS0pIIst Os% 3 +chopping 'tS0pIN Jb% 22A,2C,3A,6A,15A,15B +choppy 'tS0pI OD% 2 +chops tS0ps Ja%,Kj% 12A,2C,3A,6A,15A,15B +chopsticks 'tS0pstIks Kj% 2 +choral 'kOr@l OA% 2 +chorale k@'rAl K6% 2 +chorales k@'rAlz Kj% 2 +chord kOd K6% 1 +chords kOdz Kj% 1 +chore tSOR K6% 1 +choreographer ,k0rI'0gr@f@R K6% 5 +choreographers ,k0rI'0gr@f@z Kj% 5 +choreography ,k0rI'0gr@fI L@% 5 +chores tSOz Kj% 1 +chorister 'k0rIst@R K6% 3 +choristers 'k0rIst@z Kj% 3 +chortle 'tSOtl I2%,K6% 2 +chortled 'tSOtld Ic%,Id% 2 +chortles 'tSOtlz Ia%,Kj% 2 +chortling 'tSOtlIN Ib% 2 +chorus 'kOr@s H1%,K7% 2 +chorus-girl 'kOr@s-g3l K6% 3 +chorus-girls 'kOr@s-g3lz Kj% 3 +chorused 'kOr@st Hc%,Hd% 2 +choruses 'kOr@sIz Ha%,Kj% 3 +chorusing 'kOr@sIN Hb% 3 +chose tS@Uz Jc% 12A,2C,3A,6A,7A,16A,16B,23 +chosen 'tS@Uz@n Jd% 22A,2C,3A,6A,7A,16A,16B,23 +chow tSaU K6% 1 +chowder 'tSaUd@R K6% 2 +chowders 'tSaUd@z Kj$ 2 +chows tSaUz Kj% 1 +christen 'krIsn H0% 26A,23 +christened 'krIsnd Hc%,Hd% 26A,23 +christening 'krIsnIN Hb%,K6% 36A,23 +christenings 'krIsnINz Kj% 3 +christens 'krIsnz Ha% 26A,23 +chromatic kr@U'm&tIk OA% 3 +chrome kr@Um L@% 1 +chromium 'kr@UmI@m L@% 3 +chromosome 'kr@Um@s@Um K6% 3 +chromosomes 'kr@Um@s@Umz Kj% 3 +chronic 'kr0nIk OA% 2 +chronically 'kr0nIklI Pu% 3 +chronicle 'kr0nIkl H2%,K6% 36A +chronicled 'kr0nIkld Hc%,Hd% 36A +chronicler 'kr0nIkl@R K6% 3 +chroniclers 'kr0nIkl@z Kj% 3 +chronicles 'kr0nIklz Ha%,Kj% 36A +chronicling 'kr0nIklIN Hb% 36A +chronological ,kr0n@'l0dZIkl OA% 5 +chronologically ,kr0n@'l0dZIklI Pu% 5 +chronologies kr@'n0l@dZIz Mj$ 4 +chronology kr@'n0l@dZI M8% 4 +chronometer kr@'n0mIt@R K6$ 4 +chronometers kr@'n0mIt@z Kj$ 4 +chrysalis 'krIs@lIs K7% 3 +chrysalises 'krIs@lIsIz Kj$ 4 +chrysanthemum krI's&nT@m@m K6% 4 +chrysanthemums krI's&nT@m@mz Kj% 4 +chubbier 'tSVbI@R Or% 3 +chubbiest 'tSVbIIst Os% 3 +chubby 'tSVbI OD% 2 +chuck tSVk H0%,K6$ 16A,12A,13A,15A,15B +chucked tSVkt Hc%,Hd% 16A,12A,13A,15A,15B +chucker-out ,tSVk@r-'aUt Ki% 3 +chuckers-out ,tSVk@z-'aUt Kj% 3 +chucking 'tSVkIN Hb% 26A,12A,13A,15A,15B +chuckle 'tSVkl I2%,K6% 22A,2C +chuckled 'tSVkld Ic%,Id% 22A,2C +chuckles 'tSVklz Ia%,Kj% 22A,2C +chuckling 'tSVklIN Ib% 22A,2C +chucks tSVks Ha%,Kj$ 16A,12A,13A,15A,15B +chug tSVg I4%,K6% 12C +chugged tSVgd Ic%,Id% 12C +chugging 'tSVgIN Ib% 22C +chugs tSVgz Ia%,Kj% 12C +chukker 'tSVk@R K6$ 2 +chukkers 'tSVk@z Kj$ 2 +chum tSVm I4$,K6% 12C +chummed tSVmd Ic$,Id$ 12C +chummier 'tSVmI@R Or$ 3 +chummiest 'tSVmIIst Os$ 3 +chumming 'tSVmIN Ib$ 22C +chummy 'tSVmI OD% 2 +chump tSVmp K6% 1 +chumps tSVmps Kj% 1 +chums tSVmz Ia$,Kj% 12C +chunk tSVNk K6% 1 +chunkier 'tSVNkI@R Or% 3 +chunkiest 'tSVNkIIst Os% 3 +chunks tSVNks Kj% 1 +chunky 'tSVNkI OD% 2 +church tS3tS M7% 1 +churches 'tS3tSIz Mj% 2 +churchgoer 'tS3tSg@U@R K6% 3 +churchgoers 'tS3tSg@U@z Kj% 3 +churchman 'tS3tSm@n Ki% 2 +churchmen 'tS3tSmen Kj% 2 +churchwarden tS3tS'wOdn K6% 3 +churchwardens tS3tS'wOdnz Kj% 3 +churchyard 'tS3tSjAd K6% 2 +churchyards 'tS3tSjAdz Kj% 2 +churl tS3l K6% 1 +churlish 'tS3lIS OA% 2 +churlishly 'tS3lISlI Pu% 3 +churls tS3lz Kj% 1 +churn tS3n J0%,K6% 12A,2C,6A,15B +churned tS3nd Jc%,Jd% 12A,2C,6A,15B +churning 'tS3nIN Jb% 22A,2C,6A,15B +churns tS3nz Ja%,Kj% 12A,2C,6A,15B +chute Sut K6% 1 +chutes Suts Kj% 1 +chutney 'tSVtnI M6% 2 +chutneys 'tSVtnIz Mj% 2 +cicada sI'kAd@ K6% 3 +cicadas sI'kAd@z Kj% 3 +cicala sI'kAl@ K6$ 3 +cicalas sI'kAl@z Kj$ 3 +cicatrice 'sIk@trIs K6$ 3 +cicatrices 'sIk@trIsIz Kj$ 4 +cicatrices ,sIk@'traIsiz Kj$ 4 +cicatrix 'sIk@trIks Ki$ 3 +cicerone ,tSItS@'r@UnI Ki$ 4 +ciceroni ,tSItS@'r@Uni Kj$ 4 +cider 'saId@R M6% 2 +ciderpress 'saId@pres K7% 3 +ciderpresses 'saId@presIz Kj% 4 +ciders 'saId@z Mj% 2 +cif ,si,aI'ef Y~$ 3 +cigar sI'gAR K6% 2 +cigar-shaped sI'gA-SeIpt OA% 3 +cigarette ,sIg@'ret K6% 3 +cigarette-case ,sIg@'ret-keIs K6% 4 +cigarette-cases ,sIg@'ret-keIsIz Kj% 5 +cigarette-holder ,sIg@'ret-h@Uld@R K6% 5 +cigarette-holders ,sIg@'ret-h@Uld@z Kj% 5 +cigarette-paper ,sIg@'ret-peIp@R K6% 5 +cigarette-papers ,sIg@'ret-peIp@z Kj% 5 +cigarettes ,sIg@'rets Kj% 3 +cigars sI'gAz Kj% 2 +cinch sIntS Ki% 1 +cinchona sIN'k@Un@ K6$ 3 +cinchonas sIN'k@Un@z Kj$ 3 +cincture 'sINktS@R K6$ 2 +cinctures 'sINktS@z Kj$ 2 +cinder 'sInd@R K6% 2 +cinder-track 'sInd@-tr&k K6% 3 +cinder-tracks 'sInd@-tr&ks Kj% 3 +cinders 'sInd@z Kj% 2 +cine- 'sInI- U-% 2 +cine-camera 'sInI-k&mr@ K6% 4 +cine-cameras 'sInI-k&mr@z Kj% 4 +cine-film 'sInI-fIlm K6% 3 +cine-films 'sInI-fIlmz Kj% 3 +cine-projector 'sInI-pr@dZekt@R K6% 5 +cine-projectors 'sInI-pr@dZekt@z Kj% 5 +cinema 'sIn@m@ K6% 3 +cinemas 'sIn@m@z Kj% 3 +cinematic ,sIn@'m&tIk OA% 4 +cinematography ,sIn@m@'t0gr@fI L@% 6 +cinnamon 'sIn@m@n L@% 3 +cinquefoil 'sINkfoIl K6$ 2 +cinquefoils 'sINkfoIlz Kj$ 2 +cipher 'saIf@R J0%,K6% 22A,6A +ciphered 'saIf@d Jc%,Jd% 22A,6A +ciphering 'saIf@rIN Jb% 32A,6A +ciphers 'saIf@z Ja%,Kj% 22A,6A +circa 's3k@ T-% 2 +circle 's3kl J2%,K6% 22A,2C,6A +circled 's3kld Jc%,Jd% 22A,2C,6A +circles 's3klz Ja%,Kj% 22A,2C,6A +circlet 's3klIt K6$ 2 +circlets 's3klIts Kj$ 2 +circling 's3klIN Jb% 22A,2C,6A +circuit 's3kIt K6% 2 +circuitous s3'kjuIt@s OA% 4 +circuits 's3kIts Kj% 2 +circular 's3kjUl@R K6%,OA% 3 +circularity ,s3kjU'l&rItI L@% 5 +circularize 's3kjUl@raIz H2% 46A +circularized 's3kjUl@raIzd Hc%,Hd% 46A +circularizes 's3kjUl@raIzIz Ha$ 56A +circularizing 's3kjUl@raIzIN Hb$ 56A +circulars 's3kjUl@z Kj% 3 +circulate 's3kjUleIt J2% 32A,2C,6A +circulated 's3kjUleItId Jc%,Jd% 42A,2C,6A +circulates 's3kjUleIts Ja% 32A,2C,6A +circulating 's3kjUleItIN Jb% 42A,2C,6A +circulation ,s3kjU'leISn M6% 4 +circulations ,s3kjU'leISnz Mj$ 4 +circumcise 's3k@msaIz H2% 3 +circumcised 's3k@msaIzd Hc%,Hd% 3 +circumcises 's3k@msaIzIz Ha% 4 +circumcising 's3k@msaIzIN Hb% 4 +circumcision ,s3k@m'sIZn K6% 4 +circumcisions ,s3k@m'sIZnz Kj$ 4 +circumference s3'kVmf@r@ns K6% 4 +circumferences s3'kVmf@r@nsIz Kj% 5 +circumflex 's3k@mfleks K7% 3 +circumflexes 's3k@mfleksIz Kj$ 4 +circumlocution ,s3k@ml@'kjuSn M6% 5 +circumlocutions ,s3k@ml@'kjuSnz Mj% 5 +circumnavigate ,s3k@m'n&vIgeIt H2% 56A +circumnavigated ,s3k@m'n&vIgeItId Hc%,Hd% 66A +circumnavigates ,s3k@m'n&vIgeIts Ha% 56A +circumnavigating ,s3k@m'n&vIgeItIN Hb% 66A +circumnavigation ,s3k@m,n&vI'geISn K6% 6 +circumnavigations ,s3k@m,n&vI'geISnz Kj$ 6 +circumscribe 's3k@mskraIb H2% 36A +circumscribed 's3k@mskraIbd Hc%,Hd% 36A +circumscribes 's3k@mskraIbz Ha% 36A +circumscribing 's3k@mskraIbIN Hb% 46A +circumscription ,s3k@m'skrIpSn M6% 4 +circumscriptions ,s3k@m'skrIpSnz Mj$ 4 +circumspect 's3k@mspekt OA% 3 +circumspection ,s3k@m'spekSn L@% 4 +circumspectly 's3k@mspektlI Pu% 4 +circumstance 's3k@mst@ns K6% 3 +circumstances 's3k@mst@nsIz Kj% 4 +circumstantial ,s3k@m'st&nSl OA% 4 +circumstantially ,s3k@m'st&nS@lI Pu% 5 +circumvent ,s3k@m'vent H0% 36A +circumvented ,s3k@m'ventId Hc%,Hd% 46A +circumventing ,s3k@m'ventIN Hb% 46A +circumvention ,s3k@m'venSn K6% 4 +circumventions ,s3k@m'venSnz Kj% 4 +circumvents ,s3k@m'vents Ha% 36A +circus 's3k@s K7% 2 +circuses 's3k@sIz Kj% 3 +cirrhosis sI'r@UsIs L@% 3 +cirrus 'sIr@s L@% 2 +cissies 'sIsIz Kj% 2 +cissy 'sIsI K8%,OA% 2 +cistern 'sIst@n K6% 2 +cisterns 'sIst@nz Kj% 2 +citadel 'sIt@d@l K6% 3 +citadels 'sIt@d@lz Kj% 3 +citation saI'teISn M6% 3 +citations saI'teISnz Mj% 3 +cite saIt H2% 16A +cited 'saItId Hc%,Hd% 26A +cites saIts Ha% 16A +cities 'sItIz Kj% 2 +citing 'saItIN Hb% 26A +citizen 'sItIz@n K6% 3 +citizens 'sItIz@nz Kj% 3 +citizenship 'sItIz@nSIp K6% 4 +citizenships 'sItIz@nSIps Kj$ 4 +citric 'sItrIk OA% 2 +citron 'sItr@n K6% 2 +citrons 'sItr@nz Kj$ 2 +citrous 'sItr@s OA% 2 +citrus 'sItr@s K7% 2 +citruses 'sItr@sIz Kj$ 3 +city 'sItI K8* 2 +civet 'sIvIt M6% 2 +civet-cat 'sIvIt-k&t K6$ 3 +civet-cats 'sIvIt-k&ts Kj$ 3 +civets 'sIvIts Mj$ 2 +civic 'sIvIk OA% 2 +civics 'sIvIks Lk% 2 +civies 'sIvIz Kj$ 2 +civil 'sIv@l OA% 2 +civilian sI'vIlI@n K6%,OA% 4 +civilians sI'vIlI@nz Kj% 4 +civilities sI'vIlItIz Mj% 4 +civility sI'vIlItI M8% 4 +civilization ,sIvIlaI'zeISn M6% 5 +civilizations ,sIvIlaI'zeISnz Mj% 5 +civilize 'sIvIlaIz H2% 36A +civilized 'sIvIlaIzd Hc%,Hd% 36A +civilizes 'sIvIlaIzIz Ha% 46A +civilizing 'sIvIlaIzIN Hb% 46A +civilly 'sIv@lI Pu% 3 +civvies 'sIvIz Kj% 2 +clack kl&k I0%,K6% 1 +clacked kl&kt Ic%,Id% 1 +clacking 'kl&kIN Ib% 2 +clacks kl&ks Ia%,Kj% 1 +clad kl&d Hc%,Hd% 16A +claim kleIm J0%,M6% 12A,4A,7A,9 +claimant 'kleIm@nt K6% 2 +claimants 'kleIm@nts Kj% 2 +claimed kleImd Jc%,Jd% 12A,4A,7A,9 +claiming 'kleImIN Jb% 22A,4A,7A,9 +claims kleImz Ja%,Mj% 12A,4A,7A,9 +clairvoyance kle@'voI@ns L@% 3 +clairvoyant kle@'voI@nt K6% 3 +clairvoyants kle@'voI@nts Kj% 3 +clam kl&m I4%,K6% 12A,2C +clambake 'kl&mbeIk K6% 2 +clambakes 'kl&mbeIks Kj$ 2 +clamber 'kl&mb@R I0%,K6% 22C +clambered 'kl&mb@d Ic%,Id% 22C +clambering 'kl&mb@rIN Ib% 32C +clambers 'kl&mb@z Ia%,Kj% 22C +clammed kl&md Ic%,Id% 12A,2C +clammier 'kl&mI@R Or% 3 +clammiest 'kl&mIIst Os% 3 +clammily 'kl&mIlI Pu% 3 +clamming 'kl&mIN Ib% 22A,2C +clammy 'kl&mI OD% 2 +clamorous 'kl&m@r@s OA% 3 +clamour 'kl&m@R J0%,M6% 22A,2C,4A +clamoured 'kl&m@d Jc%,Jd% 22A,2C,4A +clamouring 'kl&m@rIN Jb% 32A,2C,4A +clamours 'kl&m@z Ja%,Mj% 22A,2C,4A +clamp kl&mp J0%,K6% 12C,6A,15B +clamp-down 'kl&mp-daUn K6% 2 +clamp-downs 'kl&mp-daUnz Kj% 2 +clamped kl&mpt Jc%,Jd% 12C,6A,15B +clamping 'kl&mpIN Jb% 22C,6A,15B +clamps kl&mps Ja%,Kj% 12C,6A,15B +clams kl&mz Ia%,Kj% 12A,2C +clan kl&n K6% 1 +clandestine kl&n'destIn OA% 3 +clang kl&N J0%,K6% 1 +clanged kl&Nd Jc%,Jd% 1 +clanger 'kl&N@R K6% 2 +clangers 'kl&N@z Kj% 2 +clanging 'kl&NIN Jb% 2 +clangorous 'kl&N@r@s OA$ 3 +clangour 'kl&N@R L@% 2 +clangs kl&Nz Ja%,Kj% 1 +clank kl&Nk J0%,K6% 1 +clanked kl&Nkt Jc%,Jd% 1 +clanking 'kl&NkIN Jb% 2 +clanks kl&Nks Ja%,Kj% 1 +clannish 'kl&nIS OA% 2 +clannishly 'kl&nISlI Pu% 3 +clans kl&nz Kj% 1 +clansman 'kl&nzm@n Ki% 2 +clansmen 'kl&nzm@n Kj% 2 +clap kl&p J4%,M6% 12A,2B,6A,14,15A,15B +clapboard 'kl&p+bOd K6% 2 +clapboards 'kl&p+bOdz Kj$ 2 +clapped kl&pt Jc%,Jd% 12A,2B,6A,14,15A,15B +clapper 'kl&p@R K6% 2 +clapperboard 'kl&p@bOd K6% 3 +clapperboards 'kl&p@bOdz Kj% 3 +clappers 'kl&p@z Kj% 2 +clapping 'kl&pIN Jb% 22A,2B,6A,14,15A,15B +claps kl&ps Ja%,Mj% 12A,2B,6A,14,15A,15B +claptrap 'kl&ptr&p L@% 2 +claque kl&k K6$ 1 +claques kl&ks Kj$ 1 +claret 'kl&r@t M6% 2 +clarets 'kl&r@ts Mj% 2 +clarification ,kl&rIfI'keISn L@% 5 +clarified 'kl&rIfaId Jc%,Jd% 32A,6A +clarifies 'kl&rIfaIz Ja% 32A,6A +clarify 'kl&rIfaI J3% 32A,6A +clarifying 'kl&rIfaIIN Jb% 42A,6A +clarinet ,kl&rI'net K6% 3 +clarinetist ,kl&rI'netIst K6$ 4 +clarinetists ,kl&rI'netIsts Kj$ 4 +clarinets ,kl&rI'nets Kj% 3 +clarinettist ,kl&rI'netIst K6% 4 +clarinettists ,kl&rI'netIsts Kj% 4 +clarion 'kl&rI@n K6% 3 +clarions 'kl&rI@nz Kj$ 3 +clarity 'kl&rItI L@% 3 +clash kl&S J1%,K7% 12A,2C,3A,6A,15B +clashed kl&St Jc%,Jd% 12A,2C,3A,6A,15B +clashes 'kl&SIz Ja%,Kj% 22A,2C,3A,6A,15B +clashing 'kl&SIN Jb% 22A,2C,3A,6A,15B +clasp klAsp J0%,K6% 12A,6A,15A +clasp-knife 'klAsp-naIf Ki% 2 +clasp-knives 'klAsp-naIvz Kj% 2 +clasped klAspt Jc%,Jd% 12A,6A,15A +clasping 'klAspIN Jb% 22A,6A,15A +clasps klAsps Ja%,Kj% 12A,6A,15A +class klAs H1%,M7% 16A,14 +class-conscious klAs-'k0nS@s OA% 3 +class-feeling klAs-'filIN L@% 3 +class-fellow 'klAs-fel@U K6% 3 +class-fellows 'klAs-fel@Uz Kj% 3 +class-list 'klAs-lIst K6% 2 +class-lists 'klAs-lIsts Kj% 2 +class-warfare klAs-'wOfe@R L@% 3 +classed klAst Hc%,Hd% 16A,14 +classes 'klAsIz Ha%,Mj% 26A,14 +classic 'kl&sIk K6%,OA% 2 +classical 'kl&sIkl OA% 3 +classically 'kl&sIklI Pu% 3 +classicism 'kl&sIsIzm L@% 4 +classicist 'kl&sIsIst K6% 3 +classicists 'kl&sIsIsts Kj% 3 +classics 'kl&sIks Kj%,Lk% 2 +classier 'klAsI@R Or% 3 +classiest 'klAsIIst Os% 3 +classifiable 'kl&sIfaI@bl OA% 5 +classification ,kl&sIfI'keISn M6% 5 +classifications ,kl&sIfI'keISnz Mj% 5 +classified 'kl&sIfaId Hc%,Hd%,OA% 36A +classifies 'kl&sIfaIz Ha% 36A +classify 'kl&sIfaI H3% 36A +classifying 'kl&sIfaIIN Hb% 46A +classing 'klAsIN Hb% 26A,14 +classless 'klAsl@s OA% 2 +classmate 'klAsmeIt K6% 2 +classmates 'klAsmeIts Kj% 2 +classroom 'kl&srum K6% 2 +classrooms 'kl&srumz Kj% 2 +classy 'klAsI OD% 2 +clatter 'kl&t@R J0%,Ki% 22A,2C,6A +clattered 'kl&t@d Jc%,Jd% 22A,2C,6A +clattering 'kl&t@rIN Jb% 32A,2C,6A +clatters 'kl&t@z Ja% 22A,2C,6A +clause klOz K6% 1 +clauses 'klOzIz Kj% 2 +claustrophobia ,klOstr@'f@UbI@ L@% 5 +claustrophobic ,klOstr@'f@UbIk OA% 4 +clave kleIv Ic$ 13A +clavichord 'kl&vIkOd K6% 3 +clavichords 'kl&vIkOdz Kj% 3 +clavicle 'kl&vIkl K6% 3 +clavicles 'kl&vIklz Kj% 3 +claw klO H0%,K6% 13A,6A,15B +clawback 'klOb&k L@% 2 +clawed klOd Hc%,Hd% 13A,6A,15B +clawhammer 'klOh&m@R K6% 3 +clawhammers 'klOh&m@z Kj% 3 +clawing 'klOIN Hb% 23A,6A,15B +claws klOz Ha%,Kj% 13A,6A,15B +clay kleI L@% 1 +clayey 'kleII OA% 2 +clean klin J0%,K6%,OC%,Pu% 12A,2C,6A,15B +clean-bowled klin-'b@Uld OA% 2 +clean-cut klin-'kVt OA% 2 +clean-limbed klin-'lImd OA% 2 +clean-living klin-'lIvIN OA% 3 +clean-shaven klin-'SeIvn OA% 3 +clean-up 'klin-Vp K6% 2 +clean-ups 'klin-Vps Kj$ 2 +cleaned klind Jc%,Jd% 12A,2C,6A,15B +cleaner 'klin@R K6%,Or% 2 +cleaners 'klin@z Kj% 2 +cleanest 'klinIst Os% 2 +cleaning 'klinIN Jb% 22A,2C,6A,15B +cleanlier 'klenlI@R Or$ 3 +cleanliest 'klenlIIst Os$ 3 +cleanliness 'klenlIn@s L@% 3 +cleanly 'klenlI OD$ 2 +cleanly 'klinlI Pu% 2 +cleans klinz Ja%,Kj% 12A,2C,6A,15B +cleanse klenz H2% 16A +cleansed klenzd Hc%,Hd% 16A +cleanser 'klenz@R M6% 2 +cleansers 'klenz@z Mj% 2 +cleanses 'klenzIz Ha% 26A +cleansing 'klenzIN Hb% 26A +clear klI@R J0%,K6%,OC%,Pu% 12C,6A,14,15B +clear-cut klI@-'kVt Pu% 2 +clear-headed klI@-'hedId OA% 3 +clear-sighted klI@-'saItId OA% 3 +clearance 'klI@r@ns M6% 2 +clearances 'klI@r@nsIz Mj% 3 +cleared klI@d Jc%,Jd% 12C,6A,14,15B +clearer 'klI@r@R Or% 2 +clearest 'klI@rIst Os% 2 +clearing 'klI@rIN Jb%,K6% 22C,6A,14,15B +clearing-house 'klI@rIN-haUs K6% 3 +clearing-houses 'klI@rIN-haUzIz Kj% 4 +clearings 'klI@rINz Kj% 2 +clearly 'klI@lI Pu% 2 +clearness 'klI@n@s L@% 2 +clears klI@z Ja%,Kj$ 12C,6A,14,15B +clearway 'klI@weI K6% 2 +clearways 'klI@weIz Kj% 2 +cleat klit K6$ 1 +cleats klits Kj$ 1 +cleavage 'klivIdZ K6% 2 +cleavages 'klivIdZIz Kj$ 3 +cleave kliv J2% 12A,3A,6A,14,15A,15B,22 +cleaved klivd Jc%,Jd% 12A,3A,6A,14,15A,15B,22 +cleaver 'kliv@R K6% 2 +cleavers 'kliv@z Kj% 2 +cleaves klivz Ja% 12A,3A,6A,14,15A,15B,22 +cleaving 'klivIN Jb% 22A,3A,6A,14,15A,15B,22 +clef klef K6% 1 +clefs klefs Kj% 1 +cleft kleft Jc%,Jd%,K6% 12A,6A,14,15A,15B,22 +clefts klefts Kj% 1 +clematis 'klem@tIs L@% 3 +clemency 'klem@nsI L@% 3 +clement 'klem@nt OA% 2 +clench klentS H1% 16A,14 +clenched klentSt Hc%,Hd% 16A,14 +clenches 'klentSIz Ha% 26A,14 +clenching 'klentSIN Hb% 26A,14 +clerestories 'klI@stOrIz Kj$ 3 +clerestory 'klI@stOrI K8$ 3 +clergies 'kl3dZIz Kj% 2 +clergy 'kl3dZI K8% 2 +clergyman 'kl3dZIm@n Ki% 3 +clergymen 'kl3dZIm@n Kj% 3 +cleric 'klerIk K6% 2 +clerical 'klerIkl OA% 3 +clerics 'klerIks Kj% 2 +clerihew 'klerIhju K6$ 3 +clerihews 'klerIhjuz Kj$ 3 +clerk klAk I0$,K6% 1 +clerked klAkt Ic$,Id$ 1 +clerking 'klAkIN Ib$ 2 +clerks klAks Ia$,Kj% 1 +clever 'klev@R OC% 2 +cleverer 'klev@r@R Or% 3 +cleverest 'klev@rIst Os% 3 +cleverly 'klev@lI Pu% 3 +cleverness 'klev@n@s L@% 3 +clew klu H0$,K6$ 1 +clewed klud Hc$,Hd$ 1 +clewing 'kluIN Hb$ 2 +clews kluz Ha$,Kj$ 1 +clich_e 'kliSeI K6% 2 +clich_es 'kliSeIz Kj% 2 +click klIk I0%,K6% 12A +clicked klIkt Ic%,Id% 12A +clicking 'klIkIN Ib% 22A +clicks klIks Ia%,Kj% 12A +client 'klaI@nt K6% 2 +clientele ,kli@n'tel K6% 3 +clienteles ,kli@n'telz Kj% 3 +clients 'klaI@nts Kj% 2 +cliff klIf K6% 1 +cliff-hanger 'klIf-h&N@R K6% 3 +cliff-hangers 'klIf-h&N@z Kj% 3 +cliffs klIfs Kj% 1 +climacteric klaI'm&kt@rIk K6$ 4 +climacterics klaI'm&kt@rIks Kj$ 4 +climactic klaI'm&ktIk OA% 3 +climate 'klaIm@t K6% 2 +climates 'klaIm@ts Kj% 2 +climatic klaI'm&tIk OA% 3 +climatically klaI'm&tIklI Pu% 4 +climatology ,klaIm@'t0l@dZI L@% 5 +climax 'klaIm&ks J1%,K7% 2 +climaxed 'klaIm&kst Jc%,Jd% 2 +climaxes 'klaIm&ksIz Ja%,Kj% 3 +climaxing 'klaIm&ksIN Jb% 3 +climb klaIm J0%,K6% 12A,2C,6A +climb-down 'klaIm-daUn K6% 2 +climb-downs 'klaIm-daUnz Kj$ 2 +climbed klaImd Jc%,Jd% 12A,2C,6A +climber 'klaIm@R K6% 2 +climbers 'klaIm@z Kj% 2 +climbing 'klaImIN Jb% 22A,2C,6A +climbs klaImz Ja%,Kj% 12A,2C,6A +clime klaIm K6$ 1 +climes klaImz Kj% 1 +clinch klIntS J1%,K7% 12A,6A +clinched klIntSt Jc%,Jd% 12A,6A +clincher 'klIntS@R K6% 2 +clinchers 'klIntS@z Kj$ 2 +clinches 'klIntSIz Ja%,Kj% 22A,6A +clinching 'klIntSIN Jb% 22A,6A +cling klIN I5% 12C,3A +clinging 'klININ Ib% 22C,3A +clings klINz Ia% 12C,3A +clinic 'klInIk K6% 2 +clinical 'klInIkl OA% 3 +clinically 'klInIklI Pu% 3 +clinics 'klInIks Kj% 2 +clink klINk J0%,K6% 1 +clinked klINkt Jc%,Jd% 1 +clinker 'klINk@R M6% 2 +clinker-built 'klINk@-bIlt OA$ 3 +clinkers 'klINk@z Mj% 2 +clinking 'klINkIN Jb% 2 +clinks klINks Ja%,Kj% 1 +clip klIp H4%,K6% 12C,6A,15A,15B,22 +clip-joint 'klIp-dZoInt K6% 2 +clip-joints 'klIp-dZoInts Kj% 2 +clip-on 'klIp-0n OA% 2 +clipped klIpt Hc%,Hd% 12C,6A,15A,15B,22 +clipper 'klIp@R K6% 2 +clippers 'klIp@z Kj% 2 +clipping 'klIpIN Hb%,K6% 22C,6A,15A,15B,22 +clippings 'klIpINz Kj% 2 +clips klIps Ha%,Kj% 12C,6A,15A,15B,22 +clique klik K6% 1 +cliques kliks Kj% 1 +cliquish 'klikIS OA% 2 +clitoris 'klIt@rIs K7% 3 +clitorises 'klIt@rIsIz Kj$ 4 +cloak kl@Uk H0%,K6% 16A +cloaked kl@Ukt Hc%,Hd% 16A +cloaking 'kl@UkIN Hb% 26A +cloakroom 'kl@Ukrum K6% 2 +cloakrooms 'kl@Ukrumz Kj% 2 +cloaks kl@Uks Ha%,Kj% 16A +clobber 'kl0b@R H0%,K6% 26A +clobbered 'kl0b@d Hc%,Hd% 26A +clobbering 'kl0b@rIN Hb% 36A +clobbers 'kl0b@z Ha%,Kj% 26A +cloche kl0S K6% 1 +cloches 'kl0SIz Kj% 2 +clock kl0k J0%,K6% 12C,6A,15B +clock-dial 'kl0k-daI@l K6$ 3 +clock-dials 'kl0k-daI@lz Kj$ 3 +clock-face 'kl0k-feIs K6% 2 +clock-faces 'kl0k-feIsIz Kj% 3 +clock-golf kl0k-'g0lf L@$ 2 +clock-tower 'kl0k-taU@R K6% 3 +clock-towers 'kl0k-taU@z Kj% 3 +clock-watching 'kl0k-w0tSIN L@% 3 +clocked kl0kt Jc%,Jd% 12C,6A,15B +clocking 'kl0kIN Jb% 22C,6A,15B +clocks kl0ks Ja%,Kj% 12C,6A,15B +clockwise 'kl0kwaIz Pu% 2 +clockwork 'kl0kw3k K6% 2 +clockworks 'kl0kw3ks Kj$ 2 +clod kl0d K6% 1 +clodhopper 'kl0dh0p@R K6% 3 +clodhoppers 'kl0dh0p@z Kj% 3 +clods kl0dz Kj% 1 +clog kl0g J4%,K6% 12A,2C,6A,15B +clog-dance 'kl0g-dAns K6% 2 +clog-dances 'kl0g-dAnsIz Kj% 3 +clogged kl0gd Jc%,Jd% 12A,2C,6A,15B +cloggier 'kl0gI@R Or$ 3 +cloggiest 'kl0gIIst Os$ 3 +clogging 'kl0gIN Jb% 22A,2C,6A,15B +cloggy 'kl0gI OD% 2 +clogs kl0gz Ja%,Kj% 12A,2C,6A,15B +cloisonn_e klwA'z0neI L@$ 3 +cloister 'kloIst@R H0%,K6% 26A +cloistered 'kloIst@d Hc%,Hd% 26A +cloistering 'kloIst@rIN Hb$ 36A +cloisters 'kloIst@z Ha$,Kj% 26A +clone kl@Un K6% 1 +clones kl@Unz Kj% 1 +close kl@Us K6%,OB*,Pu* 1 +close kl@Uz J2*,Ki% 12A,2C,3A,6A,15B +close-cropped kl@Us-'kr0pt OA% 2 +close-cut kl@Us-'kVt OA% 2 +close-down 'kl@Uz-daUn K6% 2 +close-downs 'kl@Uz-daUnz Kj$ 2 +close-fisted kl@Us-'fIstId OA% 3 +close-fitting kl@Us-'fItIN OA% 3 +close-grained kl@Us-'greInd OA% 2 +close-hauled kl@Us-'hOld OA$ 2 +close-set 'kl@Us-set OA% 2 +close-up 'kl@Us-Vp K6% 2 +close-ups 'kl@Us-Vps Kj% 2 +closed kl@Uzd Jc%,Jd% 12A,2C,3A,6A,15B +closely 'kl@UslI Pu% 2 +closeness 'kl@Usn@s L@% 2 +closer 'kl@Us@R Or% 2 +closes 'kl@UsIz Kj$ 2 +closes 'kl@UzIz Ja% 22A,2C,3A,6A,15B +closest 'kl@UsIst Os% 2 +closet 'kl0zIt H0%,K6%,Oq% 2 +closeted 'kl0zItId Hc%,Hd% 3 +closeting 'kl0zItIN Hb$ 3 +closets 'kl0zIts Ha$,Kj% 2 +closing 'kl@UzIN Jb% 22A,2C,3A,6A,15B +closure 'kl@UZ@R M6% 2 +closures 'kl@UZ@z Mj% 2 +clot kl0t J4%,K6% 12A,6A +cloth kl0T M6% 1 +clothe kl@UD H2% 16A +clothed kl@UDd Hc%,Hd% 16A +clothes kl@UDz Ha%,Kj% 16A +clothes-basket 'kl@UDz-bAskIt K6% 3 +clothes-baskets 'kl@UDz-bAskIts Kj% 3 +clothes-hanger 'kl@UDz-h&N@R K6% 3 +clothes-hangers 'kl@UDz-h&N@z Kj% 3 +clothes-moth 'kl@UDz-m0T K6% 2 +clothes-moths 'kl@UDz-m0Ts Kj% 2 +clothes-peg 'kl@UDz-peg K6% 2 +clothes-pegs 'kl@UDz-pegz Kj% 2 +clothes-pin 'kl@UDz-pIn K6$ 2 +clothes-pins 'kl@UDz-pInz Kj$ 2 +clotheshorse 'kl@UDzhOs K6% 2 +clotheshorses 'kl@UDzhOsIz Kj% 3 +clothesline 'kl@UDzlaIn K6% 2 +clotheslines 'kl@UDzlaInz Kj% 2 +clothier 'kl@UDI@R K6% 3 +clothiers 'kl@UDI@z Kj% 3 +clothing 'kl@UDIN Hb%,L@% 26A +cloths kl0Ts Mj% 1 +clots kl0ts Ja%,Kj% 12A,6A +clotted 'kl0tId Jc%,Jd% 22A,6A +clotting 'kl0tIN Jb% 22A,6A +cloud klaUd J0%,M6% 12A,2C,3A,6A +cloud-bank 'klaUd-b&Nk K6% 2 +cloud-banks 'klaUd-b&Nks Kj% 2 +cloud-capped 'klaUd-k&pt OA% 2 +cloud-cuckoo-land ,klaUd-'kUku-l&nd Ki% 4 +cloudburst 'klaUdb3st K6% 2 +cloudbursts 'klaUdb3sts Kj% 2 +clouded 'klaUdId Jc%,Jd% 22A,2C,3A,6A +cloudier 'klaUdI@R Or% 3 +cloudiest 'klaUdIIst Os% 3 +clouding 'klaUdIN Jb% 22A,2C,3A,6A +cloudless 'klaUdl@s OA% 2 +clouds klaUdz Ja%,Mj% 12A,2C,3A,6A +cloudy 'klaUdI OD% 2 +clout klaUt H0%,K6% 1 +clouted 'klaUtId Hc%,Hd% 2 +clouting 'klaUtIN Hb% 2 +clouts klaUts Ha%,Kj$ 1 +clove kl@Uv Jc%,K6% 12A,6A,14,15A,15B,22 +clove hitch 'kl@Uv hItS K7% 2 +clove hitches 'kl@Uv hItSIz Kj% 3 +cloven 'kl@Uvn Jc%,Jd% 22A,6A,14,15A,15B,22 +clover 'kl@Uv@R L@% 2 +cloverleaf 'kl@Uv@lif Ki% 3 +cloverleaves 'kl@Uv@livz Kj% 3 +cloves kl@Uvz Kj% 1 +clown klaUn I0%,K6% 12A +clowned klaUnd Ic%,Id% 12A +clowning 'klaUnIN Ib% 22A +clownish 'klaUnIS OA% 2 +clowns klaUnz Ia%,Kj% 12A +cloy kloI J0% 12A,6A +cloyed kloId Jc%,Jd% 12A,6A +cloying 'kloIIN Jb% 22A,6A +cloys kloIz Ja% 12A,6A +club klVb J4%,K6% 12C,6A,16A +club-footed 'klVb-fUtId OA% 3 +clubbable 'klVb@b@l OA% 3 +clubbed klVbd Jc%,Jd% 12C,6A,16A +clubbing 'klVbIN Jb% 22C,6A,16A +clubfoot 'klVbfUt Ki% 2 +clubhouse 'klVbhaUs K6% 2 +clubhouses 'klVbhaUzIz Kj% 3 +clubs klVbz Ja%,Kj% 12C,6A,16A +cluck klVk I0%,K6% 1 +clucked klVkt Ic%,Id% 1 +clucking 'klVkIN Ib% 2 +clucks klVks Ia%,Kj% 1 +clue klu K6% 1 +clues kluz Kj% 1 +clump klVmp J0%,K6% 12A,2C +clumped klVmpt Jc%,Jd% 12A,2C +clumping 'klVmpIN Jb% 22A,2C +clumps klVmps Ja%,Kj% 12A,2C +clumsier 'klVmzI@R Or% 3 +clumsiest 'klVmzIIst Os% 3 +clumsily 'klVmzIlI Pu% 3 +clumsiness 'klVmzIn@s L@% 3 +clumsy 'klVmzI OD% 2 +clung klVN Ic%,Id% 12C,3A +clunk klVNk I0%,K6% 1 +clunked klVNkt Ic%,Id% 1 +clunking 'klVNkIN Ib% 2 +clunks klVNks Ia%,Kj% 1 +cluster 'klVst@R I0%,K6% 22A,2C,3A +clustered 'klVst@d Ic%,Id% 22A,2C,3A +clustering 'klVst@rIN Ib% 32A,2C,3A +clusters 'klVst@z Ia%,Kj% 22A,2C,3A +clutch klVtS J1%,K7% 12A,3A,15A +clutched klVtSt Jc%,Jd% 12A,3A,15A +clutches 'klVtSIz Ja%,Kj% 22A,3A,15A +clutching 'klVtSIN Jb% 22A,3A,15A +clutter 'klVt@R H0%,M6% 26A,15B +cluttered 'klVt@d Hc%,Hd% 26A,15B +cluttering 'klVt@rIN Hb% 36A,15B +clutters 'klVt@z Ha%,Mj% 26A,15B +cm ,si'em Y]% 2 +co- k@U- U-% 1 +co-ed 'k@U-ed K6$ 2 +co-eds 'k@U-edz Kj$ 2 +co-op 'k@U-0p K6% 2 +co-ops 'k@U-0ps Kj% 2 +co-opt k@U-'0pt H0% 26A,14 +co-opted k@U-'0ptId Hc%,Hd% 36A,14 +co-opting k@U-'0ptIN Hb% 36A,14 +co-opts k@U-'0pts Ha% 26A,14 +co-respondent ,k@U-rI'sp0nd@nt K6% 4 +co-respondents ,k@U-rI'sp0nd@nts Kj% 4 +co-star 'k@U-stAR K6% 2 +co-star ,k@U-'stAR J4% 26A,14 +co-starred ,k@U-'stAd Jc%,Jd% 26A,14 +co-starring ,k@U-'stArIN Jb% 36A,14 +co-stars 'k@U-stAz Kj% 2 +co-stars ,k@U-'stAz Ja% 26A,14 +coach k@UtS J1%,K7% 12A,6A,14 +coach-builder 'k@UtS-bIld@R K6% 3 +coach-builders 'k@UtS-bIld@z Kj% 3 +coached k@UtSt Jc%,Jd% 12A,6A,14 +coaches 'k@UtSIz Ja%,Kj% 22A,6A,14 +coaching 'k@UtSIN Jb% 22A,6A,14 +coachman 'k@UtSm@n Ki% 2 +coachmen 'k@UtSmen Kj% 2 +coagulate k@U'&gjUleIt J2% 42A,6A +coagulated k@U'&gjUleItId Jc%,Jd% 52A,6A +coagulates k@U'&gjUleIts Ja% 42A,6A +coagulating k@U'&gjUleItIN Jb% 52A,6A +coagulation k@U,&gjU'leISn M6% 5 +coagulations k@U,&gjU'leISnz Mj$ 5 +coal k@Ul J0$,M6% 12A,6A +coal-gas 'k@Ul-g&s L@% 2 +coal-hole 'k@Ul-h@Ul K6% 2 +coal-holes 'k@Ul-h@Ulz Kj% 2 +coal-house 'k@Ul-haUs K6% 2 +coal-houses 'k@Ul-haUzIz Kj% 3 +coal-scuttle 'k@Ul-skVtl K6% 3 +coal-scuttles 'k@Ul-skVtlz Kj% 3 +coal-seam 'k@Ul-sim K6% 2 +coal-seams 'k@Ul-simz Kj% 2 +coal-tar 'k@Ul-tAR L@% 2 +coaled k@Uld Jc$,Jd$ 12A,6A +coalesce ,k@U@'les I2% 3 +coalesced ,k@U@'lest Ic%,Id% 3 +coalescence ,k@U@'les@ns M6% 4 +coalescences ,k@U@'les@nsIz Mj$ 5 +coalesces ,k@U@'lesIz Ia% 4 +coalescing ,k@U@'lesIN Ib% 4 +coalface 'k@UlfeIs K6% 2 +coalfaces 'k@UlfeIsIz Kj% 3 +coalfield 'k@Ulfild K6% 2 +coalfields 'k@Ulfildz Kj% 2 +coaling 'k@UlIN Jb$ 22A,6A +coaling-station 'k@UlIN-steISn K6$ 4 +coaling-stations 'k@UlIN-steISnz Kj$ 4 +coalition ,k@U@'lISn M6% 4 +coalitions ,k@U@'lISnz Mj% 4 +coalman 'k@Ulm@n Ki% 2 +coalmen 'k@Ulmen Kj% 2 +coalmine 'k@UlmaIn K6% 2 +coalmines 'k@UlmaInz Kj% 2 +coalpit 'k@UlpIt K6% 2 +coalpits 'k@UlpIts Kj% 2 +coals k@Ulz Ja$,Mj% 12A,6A +coaming 'k@UmIN K6$ 2 +coamings 'k@UmINz Kj$ 2 +coarse kOs OB% 1 +coarsely 'kOslI Pu% 2 +coarsen 'kOsn J0% 22A,6A +coarsened 'kOsnd Jc%,Jd% 22A,6A +coarseness 'kOsn@s L@% 2 +coarsening 'kOsnIN Jb% 32A,6A +coarsens 'kOsnz Ja% 22A,6A +coarser 'kOs@R Or% 2 +coarsest 'kOsIst Os% 2 +coast k@Ust J0%,K6% 12A,2C,3A,6A +coastal 'k@Ustl OA% 2 +coasted 'k@UstId Jc%,Jd% 22A,2C,3A,6A +coaster 'k@Ust@R K6% 2 +coasters 'k@Ust@z Kj% 2 +coastguard 'k@UstgAd K6% 2 +coastguards 'k@UstgAdz Kj% 2 +coasting 'k@UstIN Jb% 22A,2C,3A,6A +coastline 'k@UstlaIn K6% 2 +coastlines 'k@UstlaInz Kj% 2 +coasts k@Usts Ja%,Kj% 12A,2C,3A,6A +coastwise 'k@UstwaIz OA$,Pu$ 2 +coat k@Ut H0%,K6% 16A,14 +coat-hanger 'k@Ut-h&N@R K6% 3 +coat-hangers 'k@Ut-h&N@z Kj% 3 +coat-tails 'k@Ut-teIls Kj% 2 +coated 'k@UtId Hc%,Hd% 26A,14 +coatee k@U'ti K6$ 2 +coatees k@U'tiz Kj$ 2 +coating 'k@UtIN Hb%,M6% 26A,14 +coatings 'k@UtINz Mj% 2 +coats k@Uts Ha%,Kj% 16A,14 +coax k@Uks J1% 12A,6A,14,15B,17 +coaxed k@Ukst Jc%,Jd% 12A,6A,14,15B,17 +coaxes 'k@UksIz Ja% 22A,6A,14,15B,17 +coaxing 'k@UksIN Jb%,M6% 22A,6A,14,15B,17 +coaxingly 'k@UksINlI Pu% 3 +coaxings 'k@UksINz Mj$ 2 +cob k0b K6% 1 +cob-nut 'k0b-nVt K6% 2 +cob-nuts 'k0b-nVts Kj% 2 +cobalt 'k@UbOlt L@% 2 +cobber 'k0b@R K6$ 2 +cobbers 'k0b@z Kj$ 2 +cobble 'k0bl H2%,K6% 26A +cobbled 'k0bld Hc%,Hd% 26A +cobbler 'k0bl@R K6% 2 +cobblers 'k0bl@z Kj% 2 +cobbles 'k0blz Ha%,Kj% 26A +cobblestone 'k0blst@Un K6% 3 +cobblestones 'k0blst@Unz Kj% 3 +cobbling 'k0blIN Hb% 26A +cobra 'k@Ubr@ K6% 2 +cobras 'k@Ubr@z Kj% 2 +cobs k0bz Kj% 1 +cobweb 'k0bweb K6% 2 +cobwebs 'k0bwebz Kj% 2 +cocaine k@U'keIn L@% 2 +cochineal ,k0tSI'nil L@$ 3 +cochlea 'k0klI@ K6$ 3 +cochleas 'k0klI@z Kj$ 3 +cock k0k H0%,K6% 16A,15B +cock-a-doodle-doo ,k0k-@-,dudl-'du K6% 5 +cock-a-doodle-doos ,k0k-@-,dudl-'duz Kj% 5 +cock-a-hoop ,k0k-@-'hup OA%,Pu% 3 +cock-crow 'k0k-kr@U K6% 2 +cock-crows 'k0k-kr@Uz Kj% 2 +cockade k0'keId K6% 2 +cockades k0'keIdz Kj% 2 +cockatoo ,k0k@'tu K6% 3 +cockatoos ,k0k@'tuz Kj% 3 +cockchafer 'k0ktSeIf@R K6% 3 +cockchafers 'k0ktSeIf@z Kj% 3 +cocked k0kt Hc%,Hd% 16A,15B +cocker 'k0k@R K6$ 2 +cockerel 'k0k@r@l K6% 3 +cockerels 'k0k@r@lz Kj% 3 +cockers 'k0k@z Kj$ 2 +cockeyed 'k0kaId OA% 2 +cockfighting 'k0kfaItIN L@% 3 +cockhorse ,k0k'hOs K6% 2 +cockhorses ,k0k'hOsIz Kj$ 3 +cockier 'k0kI@R Or% 3 +cockiest 'k0kIIst Os% 3 +cocking 'k0kIN Hb% 26A,15B +cockle 'k0kl K6% 2 +cockles 'k0klz Kj% 2 +cockleshell 'k0klSel K6% 3 +cockleshells 'k0klSelz Kj% 3 +cockney 'k0knI K6%,OA% 2 +cockneys 'k0knIz Kj% 2 +cockpit 'k0kpIt K6% 2 +cockpits 'k0kpIts Kj% 2 +cockroach 'k0kr@UtS K7% 2 +cockroaches 'k0kr@UtSIz Kj% 3 +cocks k0ks Ha%,Kj% 16A,15B +cockscomb 'k0ksk@Um K6% 2 +cockscombs 'k0ksk@Umz Kj$ 2 +cocksure ,k0k'SU@R OA% 2 +cocktail 'k0kteIl K6% 2 +cocktails 'k0kteIlz Kj% 2 +cockup 'k0kVp K6% 2 +cockups 'k0kVps Kj% 2 +cocky 'k0kI OD% 2 +coco 'k@Uk@U K6$ 2 +cocoa 'k@Uk@U L@% 2 +coconut 'k@Uk@nVt K6% 3 +coconuts 'k@Uk@nVts Kj% 3 +cocoon k@'kun H0%,K6% 26A +cocooned k@'kund Hc%,Hd% 26A +cocooning k@'kunIN Hb% 36A +cocoons k@'kunz Ha%,Kj% 26A +cocos 'k@Uk@Uz Kj$ 2 +cocotte k0'k0t K6$ 2 +cocottes k0'k0ts Kj$ 2 +cod k0d J4%,M6% 12A,6A +cod-liver oil ,k0d-lIv@r 'oIl L@% 4 +coda 'k@Ud@ K6% 2 +codas 'k@Ud@z Kj% 2 +codded 'k0dId Jc%,Jd% 22A,6A +codding 'k0dIN Jb% 22A,6A +coddle 'k0dl H2% 26A +coddled 'k0dld Hc%,Hd% 26A +coddles 'k0dlz Ha% 26A +coddling 'k0dlIN Hb% 26A +code k@Ud H2%,M6% 1 +coded 'k@UdId Hc%,Hd% 2 +codeine 'k@Udin L@% 2 +codes k@Udz Ha%,Mj% 1 +codex 'k@Udeks Ki$ 2 +codfish 'k0dfIS K9% 2 +codfishes 'k0dfISIz Kj$ 3 +codger 'k0dZ@R K6% 2 +codgers 'k0dZ@z Kj% 2 +codices 'k@UdIsiz Kj$ 3 +codicil 'k@UdIsIl K6$ 3 +codicils 'k@UdIsIlz Kj$ 3 +codification ,k@UdIfI'keISn K6% 5 +codifications ,k@UdIfI'keISnz Kj$ 5 +codified 'k@UdIfaId Hc%,Hd% 36A +codifies 'k@UdIfaIz Ha% 36A +codify 'k@UdIfaI H3% 36A +codifying 'k@UdIfaIIN Hb% 46A +coding 'k@UdIN Hb% 2 +codling 'k0dlIN K6$ 2 +codlings 'k0dlINz Kj$ 2 +codpiece 'k0dpis K6% 2 +codpieces 'k0dpisIz Kj% 3 +cods k0dz Ja%,Mj$ 12A,6A +coeducation ,k@U,edZU'keISn L@% 5 +coeducational ,k@UIdj@'keIS@n@l OA% 6 +coefficient ,k@UI'fISnt K6% 4 +coefficients ,k@UI'fISnts Kj% 4 +coerce k@U'3s H2% 26A,14 +coerced k@U'3st Hc%,Hd% 26A,14 +coerces k@U'3sIz Ha% 36A,14 +coercing k@U'3sIN Hb% 36A,14 +coercion k@U'3Sn L@% 3 +coercive k@U'3sIv OA$ 3 +coeval ,k@U'ivl K6$,OA$ 3 +coevals ,k@U'ivlz Kj$ 3 +coexist ,k@UIg'zIst I0% 32A,3A +coexisted ,k@UIg'zIstId Ic%,Id% 42A,3A +coexistence ,k@UIg'zIst@ns L@% 4 +coexisting ,k@UIg'zIstIN Ib% 42A,3A +coexists ,k@UIg'zIsts Ia% 32A,3A +coffee 'k0fI M6% 2 +coffee-house 'k0fI-haUs K6% 3 +coffee-houses 'k0fI-haUzIz Kj% 4 +coffee-mill 'k0fI-mIl K6% 3 +coffee-mills 'k0fI-mIlz Kj% 3 +coffee-stall 'k0fI-stOl K6% 3 +coffee-stalls 'k0fI-stOlz Kj% 3 +coffees 'k0fIz Mj% 2 +coffer 'k0f@R K6$ 2 +coffer-dam 'k0f@-d&m K6$ 3 +coffer-dams 'k0f@-d&mz Kj$ 3 +coffers 'k0f@z Kj% 2 +coffin 'k0fIn K6% 2 +coffins 'k0fInz Kj% 2 +cog k0g K6% 1 +cogency 'k@UdZ@nsI L@% 3 +cogent 'k@UdZ@nt OA% 2 +cogitate 'k0dZIteIt J2% 32A,3A,6A,14 +cogitated 'k0dZIteItId Jc%,Jd% 42A,3A,6A,14 +cogitates 'k0dZIteIts Ja% 32A,3A,6A,14 +cogitating 'k0dZIteItIN Jb% 42A,3A,6A,14 +cogitation ,k0dZI'teISn L@% 4 +cognac 'k0nj&k L@% 2 +cognate 'k0gneIt K6$,OA% 2 +cognates 'k0gneIts Kj$ 2 +cognition k0g'nISn L@% 3 +cognizance 'k0gnIz@ns L@% 3 +cognizant 'k0gnIz@nt OA% 3 +cognomen k0g'n@Um@n K6$ 3 +cognomens k0g'n@Um@nz Kj$ 3 +cogs k0gz Kj% 1 +cogwheel 'k0gwil K6% 2 +cogwheels 'k0gwilz Kj% 2 +cohabit k@U'h&bIt I0% 3 +cohabitation ,k@Uh&bI'teISn M6% 5 +cohabited k@U'h&bItId Ic%,Id% 4 +cohabiting k@U'h&bItIN Ib% 4 +cohabits k@U'h&bIts Ia% 3 +cohere k@U'hI@R I2$ 22A +cohered k@U'hI@d Ic$,Id$ 22A +coherence ,k@U'hI@r@ns L@% 3 +coherency ,k@U'hI@r@nsI L@$ 4 +coherent k@'hI@r@nt OA% 3 +coherently k@'hI@r@ntlI Pu% 4 +coheres k@U'hI@z Ia$ 22A +cohering k@U'hI@rIN Ib% 32A +cohesion k@U'hiZn L@% 3 +cohesive k@U'hisIv OA% 3 +cohort 'k@UhOt K6% 2 +cohorts 'k@UhOts Kj% 2 +coif koIf K6$ 1 +coiffeur kwA'f3R K6% 2 +coiffeurs kwA'f3z Kj% 2 +coiffure kwA'fjU@R K6% 2 +coiffures kwA'fjU@z Kj% 2 +coifs koIfs Kj$ 1 +coign koIn K6$ 1 +coigns koInz Kj$ 1 +coil koIl J0%,K6% 12A,2C,6A,15A,15B +coiled koIld Jc%,Jd% 12A,2C,6A,15A,15B +coiling 'koIlIN Jb% 22A,2C,6A,15A,15B +coils koIlz Ja%,Kj% 12A,2C,6A,15A,15B +coin koIn H0%,M6% 16A +coinage 'koInIdZ M6% 2 +coinages 'koInIdZIz Mj% 3 +coincide ,k@UIn'saId I2% 32A,3A +coincided ,k@UIn'saIdId Ic%,Id% 42A,3A +coincidence k@U'InsId@ns M6% 4 +coincidences k@U'InsId@nsIz Mj% 5 +coincident k@U'InsId@nt OA$ 4 +coincidental k@U,InsI'dentl OA% 5 +coincides ,k@UIn'saIdz Ia% 32A,3A +coinciding ,k@UIn'saIdIN Ib% 42A,3A +coined koInd Hc%,Hd% 16A +coiner 'koIn@R K6% 2 +coiners 'koIn@z Kj% 2 +coining 'koInIN Hb% 26A +coins koInz Ha%,Mj% 16A +coir 'koI@R L@$ 2 +coition k@U'ISn L@$ 3 +coitus 'k@UIt@s L@% 3 +coke k@Uk H2$,M6% 1 +coked k@Ukt Hc$,Hd$ 1 +cokes k@Uks Ha$,Mj$ 1 +coking 'k@UkIN Hb$ 2 +col k0l K6$ 1 +cola 'k@Ul@ K6$ 2 +colander 'kVl@nd@R K6% 3 +colanders 'kVl@nd@z Kj% 3 +colas 'k@Ul@z Kj$ 2 +cold k@Uld M6%,OC% 1 +cold-blooded k@Uld-'blVdId OA% 3 +cold-hearted k@Uld-'hAtId OA% 3 +cold-shoulder k@Uld-'S@Uld@R H0% 36A +cold-shouldered k@Uld-'S@Uld@d Hc%,Hd% 36A +cold-shouldering k@Uld-'S@Uld@rIN Hb% 46A +cold-shoulders k@Uld-'S@Uld@z Ha% 36A +colder 'k@Uld@R Or% 2 +coldest 'k@UldIst Os% 2 +coldly 'k@UldlI Pu% 2 +coldness 'k@Uldn@s L@% 2 +colds k@Uldz Mj% 1 +coleslaw 'k@UlslO L@% 2 +colic 'k0lIk L@% 2 +colitis k@'laItIs L@% 3 +collaborate k@'l&b@reIt I2% 42A,3A +collaborated k@'l&b@reItId Ic%,Id% 52A,3A +collaborates k@'l&b@reIts Ia% 42A,3A +collaborating k@'l&b@reItIN Ib% 52A,3A +collaboration k@,l&b@'reISn L@% 5 +collaborationist k@,l&b@'reIS@nIst K6$ 6 +collaborationists k@,l&b@'reIS@nIsts Kj$ 6 +collaborator k@'l&b@reIt@R K6% 5 +collaborators k@'l&b@reIt@z Kj% 5 +collage 'k0lAZ M6% 2 +collages 'k0lAZIz Mj% 3 +collapsable k@'l&ps@bl OA$ 4 +collapse k@'l&ps I2%,K6% 22A,6A +collapsed k@'l&pst Ic%,Id% 22A,6A +collapses k@'l&psIz Ia%,Kj% 32A,6A +collapsible k@'l&ps@bl OA% 4 +collapsing k@'l&psIN Ib% 32A,6A +collar 'k0l@R H0%,K6% 26A +collarbone 'k0l@b@Un K6% 3 +collarbones 'k0l@b@Unz Kj% 3 +collared 'k0l@d Hc%,Hd% 26A +collaring 'k0l@rIN Hb% 36A +collars 'k0l@z Ha%,Kj% 26A +collate k@'leIt H2% 26A +collated k@'leItId Hc%,Hd% 36A +collateral k@'l&t@r@l L@%,OA% 4 +collates k@'leIts Ha% 26A +collating k@'leItIN Hb% 36A +collation k@'leISn K6$ 3 +collations k@'leISnz Kj$ 3 +colleague 'k0lig K6% 2 +colleagues 'k0ligz Kj% 2 +collect 'k0lekt K6$ 2 +collect k@'lekt J0%,OA%,Pu% 22A,2C,6A,15B +collected k@'lektId Jc%,Jd%,OA% 32A,2C,6A,15B +collectedly k@'lektIdlI Pu% 4 +collecting k@'lektIN Jb% 32A,2C,6A,15B +collection k@'lekSn M6% 3 +collections k@'lekSnz Mj% 3 +collective k@'lektIv OA% 3 +collectivization k@,lektIvaI'zeISn K6% 6 +collectivizations k@,lektIvaI'zeISnz Kj$ 6 +collectivize k@'lektIvaIz H2$ 46A +collectivized k@'lektIvaIzd Hc$,Hd$ 46A +collectivizes k@'lektIvaIzIz Ha$ 56A +collectivizing k@'lektIvaIzIN Hb$ 56A +collector k@'lekt@R K6% 3 +collectors k@'lekt@z Kj% 3 +collects 'k0lekts Kj$ 2 +collects k@'lekts Ja% 22A,2C,6A,15B +colleen 'k0lin K6$ 2 +colleens 'k0linz Kj$ 2 +college 'k0lIdZ M6% 2 +colleges 'k0lIdZIz Mj% 3 +collegiate k@'lidZI@t OA% 3 +collide k@'laId I2% 22A,2C,3A +collided k@'laIdId Ic%,Id% 32A,2C,3A +collides k@'laIdz Ia% 22A,2C,3A +colliding k@'laIdIN Ib% 32A,2C,3A +collie 'k0lI K6% 2 +collier 'k0lI@R K6% 3 +collieries 'k0lj@rIz Kj% 3 +colliers 'k0lI@z Kj% 3 +colliery 'k0lj@rI K8% 3 +collies 'k0lIz Kj% 2 +collision k@'lIZn M6% 3 +collisions k@'lIZnz Mj% 3 +collocate 'k0l@keIt I2$ 32A,3A +collocated 'k0l@keItId Ic$,Id$ 42A,3A +collocates 'k0l@keIts Ia$ 32A,3A +collocating 'k0l@keItIN Ib$ 42A,3A +collocation ,k0l@'keISn M6$ 4 +collocations ,k0l@'keISnz Mj$ 4 +colloquial k@'l@UkwI@l OA% 4 +colloquialism k@'l@UkwI@lIz@m K6% 6 +colloquialisms k@'l@UkwI@lIz@mz Kj% 6 +colloquially k@'l@UkwI@lI Pu% 5 +colloquies 'k0l@kwIz Mj$ 3 +colloquy 'k0l@kwI M8$ 3 +collusion k@'luZn L@% 3 +collusive k@'lusIv OA$ 3 +collywobbles 'k0lIw0blz Kj% 4 +colon 'k@Ul@n K6% 2 +colonel 'k3nl K6% 2 +colonels 'k3nlz Kj% 2 +colonial k@'l@UnI@l K6%,OA% 4 +colonialism k@'l@UnI@lIz@m L@% 6 +colonialist k@'l@UnI@lIst K6% 5 +colonialists k@'l@UnI@lIsts Kj% 5 +colonials k@'l@UnI@lz Kj% 4 +colonies 'k0l@nIz Kj% 3 +colonist 'k0l@nIst K6% 3 +colonists 'k0l@nIsts Kj% 3 +colonization ,k0l@naI'zeISn L@% 5 +colonize 'k0l@naIz H2% 36A +colonized 'k0l@naIzd Hc%,Hd% 36A +colonizer 'k0l@naIz@R K6% 4 +colonizers 'k0l@naIz@z Kj% 4 +colonizes 'k0l@naIzIz Ha% 46A +colonizing 'k0l@naIzIN Hb% 46A +colonnade ,k0l@'neId K6% 3 +colonnaded ,k0l@'neIdId OA% 4 +colonnades ,k0l@'neIdz Kj% 3 +colons 'k@Ul@nz Kj% 2 +colony 'k0l@nI K8% 3 +coloratura ,k0l@r@'tU@r@ L@$ 5 +colossal k@'l0sl OA% 3 +colossi k@'l0saI Kj$ 3 +colossus k@'l0s@s Ki% 3 +colour 'kVl@R J0%,M6% 22A,2C,6A,22 +colour-bar 'kVl@-bAR K6% 3 +colour-bars 'kVl@-bAz Kj% 3 +colour-blind 'kVl@-blaInd OA% 3 +colour-wash 'kVl@-w0S K7% 3 +colour-washes 'kVl@-w0SIz Kj% 4 +coloured 'kVl@d Jc%,Jd%,OA% 22A,2C,6A,22 +colourful 'kVl@f@l OA% 3 +colouring 'kVl@rIN Jb%,L@% 32A,2C,6A,22 +colourless 'kVl@l@s OA% 3 +colours 'kVl@z Ja%,Mj% 22A,2C,6A,22 +cols k0lz Kj$ 1 +colt k@Ult K6% 1 +coltish 'k@UltIS OA% 2 +colts k@Ults Kj% 1 +columbine 'k0l@mbaIn K6% 3 +columbines 'k0l@mbaInz Kj$ 3 +column 'k0l@m K6% 2 +columnist 'k0l@mnIst K6% 3 +columnists 'k0l@mnIsts Kj% 3 +columns 'k0l@mz Kj% 2 +coma 'k@Um@ K6% 2 +comas 'k@Um@z Kj% 2 +comatose 'k@Um@t@Us OA% 3 +comb k@Um J0%,K6% 12C,3A,6A,15B +comb-out 'k@Um-aUt K6% 2 +comb-outs 'k@Um-aUts Kj$ 2 +combat 'k0mb&t J0%,K6% 23A,6A +combatant 'k0mb@t@nt K6%,OA% 3 +combatants 'k0mb@t@nts Kj% 3 +combated 'k0mb&tId Jc%,Jd% 33A,6A +combating 'k0mb&tIN Jb% 33A,6A +combative 'k0mb@tIv OA% 3 +combatively 'k0mb@tIvlI Pu$ 4 +combats 'k0mb&ts Ja%,Kj% 23A,6A +combed k@Umd Jc%,Jd% 12C,3A,6A,15B +combination ,k0mbI'neISn M6% 4 +combination-lock ,k0mbI'neISn-l0k K6% 5 +combination-locks ,k0mbI'neISn-l0ks Kj% 5 +combinations ,k0mbI'neISnz Mj% 4 +combine 'k0mbaIn K6% 2 +combine k@m'baIn J2% 22A,3A,4A,6A,14 +combined k@m'baInd Jc%,Jd% 22A,3A,4A,6A,14 +combines 'k0mbaInz Kj% 2 +combines k@m'baInz Ja% 22A,3A,4A,6A,14 +combing 'k@UmIN Jb% 22C,3A,6A,15B +combining k@m'baInIN Jb% 32A,3A,4A,6A,14 +combs k@Umz Ja%,Kj% 12C,3A,6A,15B +combustible k@m'bVst@bl K6$,OA% 4 +combustibles k@m'bVst@blz Kj$ 4 +combustion k@m'bVstS@n L@% 3 +come kVm I5*,Id* 12A,2B,2C,2D,2E,3A,4A +come-at-able ,kVm-'&t-@bl OA$ 4 +come-on 'kVm-0n K6% 2 +come-ons 'kVm-0nz Kj$ 2 +comeback 'kVmb&k K6% 2 +comebacks 'kVmb&ks Kj$ 2 +comedian k@'midI@n K6% 4 +comedians k@'midI@nz Kj% 4 +comedienne k@,midI'en K6% 4 +comediennes k@,midI'enz Kj% 4 +comedies 'k0m@dIz Mj% 3 +comedown 'kVmdaUn K6% 2 +comedowns 'kVmdaUnz Kj$ 2 +comedy 'k0m@dI M8% 3 +comelier 'kVmlI@R Or% 3 +comeliest 'kVmlIIst Os% 3 +comeliness 'kVmlIn@s L@% 3 +comely 'kVmlI OD% 2 +comer 'kVm@R K6% 2 +comers 'kVm@z Kj% 2 +comes kVmz Ia% 12A,2B,2C,2D,2E,3A,4A +comestible k@'mest@bl K6$ 4 +comestibles k@'mest@blz Kj% 4 +comet 'k0mIt K6% 2 +comets 'k0mIts Kj% 2 +comfier 'kVmfI@R Or% 3 +comfiest 'kVmfIIst Os% 3 +comfit 'kVmfIt K6$ 2 +comfits 'kVmfIts Kj$ 2 +comfort 'kVmf@t H0%,M6% 26A +comfortable 'kVmft@bl OA% 4 +comfortably 'kVmft@blI Pu% 4 +comforted 'kVmf@tId Hc%,Hd% 36A +comforter 'kVmf@t@R K6% 3 +comforters 'kVmf@t@z Kj% 3 +comforting 'kVmf@tIN Hb% 36A +comfortingly 'kVmf@tINlI Pu% 4 +comfortless 'kVmf@tl@s OA% 3 +comforts 'kVmf@ts Ha%,Mj% 26A +comfrey 'kVmfrI L@$ 2 +comfy 'kVmfI OD% 2 +comic 'k0mIk K6%,OA% 2 +comical 'k0mIkl OA% 3 +comically 'k0mIklI Pu% 3 +comics 'k0mIks Kj% 2 +coming 'kVmIN Ib%,K6%,OA% 22A,2B,2C,2D,2E,3A,4A +comings 'kVmINz Kj% 2 +comity 'k0mItI L@$ 3 +comma 'k0m@ K6% 2 +command k@'mAnd J0%,M6% 22A,6A,9,17 +commandant ,k0m@n'd&nt K6% 3 +commandants ,k0m@n'd&nts Kj% 3 +commanded k@'mAndId Jc%,Jd% 32A,6A,9,17 +commandeer ,k0m@n'dI@R H0% 36A +commandeered ,k0m@n'dI@d Hc%,Hd% 36A +commandeering ,k0m@n'dI@rIN Hb% 46A +commandeers ,k0m@n'dI@z Ha% 36A +commander k@'mAnd@R K6% 3 +commanders k@'mAnd@z Kj% 3 +commanding k@'mAndIN Jb%,OA% 32A,6A,9,17 +commandment k@'mAndm@nt K6% 3 +commandments k@'mAndm@nts Kj% 3 +commando k@'mAnd@U K6% 3 +commandoes k@'mAnd@Uz Kj$ 3 +commandos k@'mAnd@Uz Kj% 3 +commands k@'mAndz Ja%,Mj% 22A,6A,9,17 +commas 'k0m@z Kj% 2 +commemorate k@'mem@reIt H2% 46A +commemorated k@'mem@reItId Hc%,Hd% 56A +commemorates k@'mem@reIts Ha% 46A +commemorating k@'mem@reItIN Hb% 56A +commemoration k@,mem@'reISn M6% 5 +commemorations k@,mem@'reISnz Mj$ 5 +commemorative k@'mem@r@tIv OA% 5 +commence k@'mens J2% 22A,3A,6A,6C +commenced k@'menst Jc%,Jd% 22A,3A,6A,6C +commencement k@'mensm@nt K6% 3 +commencements k@'mensm@nts Kj$ 3 +commences k@'mensIz Ja% 32A,3A,6A,6C +commencing k@'mensIN Jb% 32A,3A,6A,6C +commend k@'mend H0% 26A,14 +commendable k@'mend@bl OA% 4 +commendation ,k0men'deISn M6% 4 +commendations ,k0men'deISnz Mj% 4 +commended k@'mendId Hc%,Hd% 36A,14 +commending k@'mendIN Hb% 36A,14 +commends k@'mendz Ha% 26A,14 +commensurable k@'menS@r@bl OA$ 5 +commensurate k@'menS@r@t OA% 4 +comment 'k0ment I0%,M6% 22A,3A +commentaries 'k0m@ntrIz Kj% 3 +commentary 'k0m@ntrI K8% 3 +commentate 'k0m@nteIt I2% 33A +commentated 'k0m@nteItId Ic%,Id% 43A +commentates 'k0m@nteIts Ia% 33A +commentating 'k0m@nteItIN Ib% 43A +commentator 'k0m@nteIt@R K6% 4 +commentators 'k0m@nteIt@z Kj% 4 +commented 'k0mentId Ic%,Id% 32A,3A +commenting 'k0mentIN Ib% 32A,3A +comments 'k0ments Ia%,Mj% 22A,3A +commerce 'k0m3s L@% 2 +commercial k@'m3Sl K6%,OA% 3 +commercialism k@'m3SlIzm L@% 5 +commercialize k@'m3S@laIz H2% 46A +commercialized k@'m3S@laIzd Hc%,Hd% 46A +commercializes k@'m3S@laIzIz Ha% 56A +commercializing k@'m3S@laIzIN Hb% 56A +commercially k@'m3SlI Pu% 4 +commercials k@'m3Slz Kj% 3 +commination ,k0mI'neISn M6$ 4 +comminations ,k0mI'neISnz Mj$ 4 +comminatory 'k0mIn@trI OA$ 4 +commingle k@'mINgl J2$ 32A,6A +commingled k@'mINgld Jc$,Jd$ 32A,6A +commingles k@'mINglz Ja$ 32A,6A +commingling k@'mINglIN Jb$ 32A,6A +commiserate k@'mIz@reIt I2% 43A +commiserated k@'mIz@reItId Ic%,Id% 53A +commiserates k@'mIz@reIts Ia% 43A +commiserating k@'mIz@reItIN Ib% 53A +commiseration k@,mIz@'reISn M6% 5 +commiserations k@,mIz@'reISnz Mj% 5 +commissar 'k0mIsAR K6% 3 +commissariat ,k0mI'se@rI@t K6% 5 +commissariats ,k0mI'se@rI@ts Kj% 5 +commissaries 'k0mIs@rIz Kj$ 4 +commissars 'k0mIsAz Kj% 3 +commissary 'k0mIs@rI K8$ 4 +commission k@'mISn H0%,M6% 36A,17 +commissionaire k@,mIS@'ne@R K6% 4 +commissionaires k@,mIS@'ne@z Kj% 4 +commissioned k@'mISnd Hc%,Hd%,OA% 36A,17 +commissioner k@'mIS@n@R K6% 4 +commissioners k@'mIS@n@z Kj% 4 +commissioning k@'mISnIN Hb% 46A,17 +commissions k@'mISnz Ha%,Mj% 36A,17 +commit k@'mIt H4% 26A,14,16A +commital k@'mItl K6% 3 +commitals k@'mItlz Kj% 3 +commitment k@'mItm@nt M6% 3 +commitments k@'mItm@nts Mj% 3 +commits k@'mIts Ha% 26A,14,16A +committed k@'mItId Hc%,Hd% 36A,14,16A +committee k@'mItI K6% 3 +committees k@'mItIz Kj% 3 +committing k@'mItIN Hb% 36A,14,16A +commode k@'m@Ud K6% 2 +commodes k@'m@Udz Kj% 2 +commodious k@'m@UdI@s OA% 4 +commodities k@'m0dItIz Kj% 4 +commodity k@'m0dItI K8% 4 +commodore 'k0m@dOR K6% 3 +commodores 'k0m@dOz Kj% 3 +common 'k0m@n K6%,OC* 2 +common-room 'k0m@n-rum K6% 3 +common-rooms 'k0m@n-rumz Kj% 3 +commonalties 'k0m@n@ltIz Kj$ 4 +commonalty 'k0m@n@ltI K8$ 4 +commoner 'k0m@n@R K6%,Or% 3 +commoners 'k0m@n@z Kj% 3 +commonest 'k0m@nIst Os% 3 +commonly 'k0m@nlI Pu% 3 +commonplace 'k0m@npleIs K6%,OA% 3 +commonplaces 'k0m@npleIsIz Kj% 4 +commons 'k0m@nz Kj% 2 +commonwealth 'k0m@nwelT K6% 3 +commonwealths 'k0m@nwelTs Kj$ 3 +commotion k@'m@USn M6% 3 +commotions k@'m@USnz Mj$ 3 +communal 'k0mjUnl OA% 3 +communally 'k0mjUn@lI Pu% 4 +commune 'k0mjun K6% 2 +commune k@'mjun I2% 22C,3A +communed k@'mjund Ic%,Id% 22C,3A +communes 'k0mjunz Kj% 2 +communes k@'mjunz Ia% 22C,3A +communicable k@'mjunIk@bl OA% 5 +communicant k@'mjunIk@nt K6$ 4 +communicants k@'mjunIk@nts Kj$ 4 +communicate k@'mjunIkeIt J2% 42A,3A,6A,14 +communicated k@'mjunIkeItId Jc%,Jd% 52A,3A,6A,14 +communicates k@'mjunIkeIts Ja% 42A,3A,6A,14 +communicating k@'mjunIkeItIN Jb% 52A,3A,6A,14 +communication k@,mjunI'keISn M6% 5 +communications k@,mjunI'keISnz Mj% 5 +communicative k@'mjunIk@tIv OA% 5 +communing k@'mjunIN Ib% 32C,3A +communion k@'mjunI@n M6% 3 +communions k@'mjunI@nz Mj$ 3 +communiqu_e k@'mjunIkeI K6% 4 +communiqu_es k@'mjunIkeIz Kj% 4 +communism 'k0mjUnIz@m L@% 4 +communist 'k0mjUnIst K6%,OA% 3 +communists 'k0mjUnIsts Kj% 3 +communities k@'mjunItIz Mj% 4 +community k@'mjunItI M8% 4 +commutable k@'mjut@bl OA$ 4 +commutation ,k0mju'teISn M6$ 4 +commutations ,k0mju'teISnz Mj$ 4 +commutator 'k0mjuteIt@R K6$ 4 +commutators 'k0mjuteIt@z Kj$ 4 +commute k@'mjut J2% 22A,6A,14 +commuted k@'mjutId Jc%,Jd% 32A,6A,14 +commuter k@'mjut@R K6% 3 +commuters k@'mjut@z Kj% 3 +commutes k@'mjuts Ja% 22A,6A,14 +commuting k@'mjutIN Jb% 32A,6A,14 +comp`ere 'k0mpe@R H2%,K6% 2 +comp`ered 'k0mpe@d Hc%,Hd% 2 +comp`eres 'k0mpe@z Ha%,Kj% 2 +comp`ering 'k0mpe@rIN Hb% 3 +compact 'k0mp&kt K6% 2 +compact k@m'p&kt H0$,OA% 2 +compacted k@m'p&ktId Hc$,Hd% 3 +compacting k@m'p&ktIN Hb$ 3 +compactly k@m'p&ktlI Pu% 3 +compactness k@m'p&ktn@s L@% 3 +compacts 'k0mp&kts Kj% 2 +compacts k@m'p&kts Ha$ 2 +companies 'kVmp@nIz Mj% 3 +companion k@m'p&nI@n K6% 3 +companionable k@m'p&nI@n@bl OA% 5 +companions k@m'p&nI@nz Kj% 3 +companionship k@m'p&nI@nSIp L@% 4 +companionway k@m'p&nI@nweI K6% 4 +companionways k@m'p&nI@nweIz Kj$ 4 +company 'kVmp@nI M8% 3 +comparability ,k0mp@r@'bIlItI L@% 6 +comparable 'k0mp@r@bl OA% 4 +comparative k@m'p&r@tIv K6%,OA% 4 +comparatively k@m'p&r@tIvlI Pu% 5 +comparatives k@m'p&r@tIvz Kj% 4 +compare k@m'pe@R J2%,K6% 23A,6A,14 +compared k@m'pe@d Jc%,Jd% 23A,6A,14 +compares k@m'pe@z Ja%,Kj% 23A,6A,14 +comparing k@m'pe@rIN Jb% 33A,6A,14 +comparison k@m'p&rIsn M6% 4 +comparisons k@m'p&rIsnz Mj% 4 +compartment k@m'pAtm@nt K6% 3 +compartmentalize ,k0mpAt'ment@laIz H2% 5 +compartmentalized ,k0mpAt'ment@laIzd Hc%,Hd% 5 +compartmentalizes ,k0mpAt'ment@laIzIz Ha% 6 +compartmentalizing ,k0mpAt'ment@laIzIN Hb% 6 +compartments k@m'pAtm@nts Kj% 3 +compass 'kVmp@s H1$,K7% 2 +compassed 'kVmp@st Hc$,Hd$ 2 +compasses 'kVmp@sIz Ha$,Kj% 3 +compassing 'kVmp@sIN Hb$ 3 +compassion k@m'p&Sn L@% 3 +compassionate k@m'p&S@n@t OA% 4 +compassionately k@m'p&S@n@tlI Pu% 5 +compatibility k@m,p&t@'bIlItI L@% 6 +compatible k@m'p&t@bl OA% 4 +compatibly k@m'p&t@blI Pu% 4 +compatriot k@m'p&trI@t K6% 4 +compatriots k@m'p&trI@ts Kj% 4 +compeer 'k0mpI@R K6$ 2 +compeers 'k0mpI@z Kj$ 2 +compel k@m'pel H4% 26A,14,17 +compelled k@m'peld Hc%,Hd% 26A,14,17 +compelling k@m'pelIN Hb% 36A,14,17 +compels k@m'pelz Ha% 26A,14,17 +compendious k@m'pendI@s OA% 4 +compendium k@m'pendI@m K6% 4 +compendiums k@m'pendI@mz Kj% 4 +compensate 'k0mp@nseIt J2% 33A,6A,14 +compensated 'k0mp@nseItId Jc%,Jd% 43A,6A,14 +compensates 'k0mp@nseIts Ja% 33A,6A,14 +compensating 'k0mp@nseItIN Jb% 43A,6A,14 +compensation ,k0mpen'seISn M6% 4 +compensations ,k0mpen'seISnz Mj% 4 +compensatory k@m'pens@t@rI OA% 5 +compete k@m'pit I2% 22A,3A +competed k@m'pitId Ic%,Id% 32A,3A +competence 'k0mpIt@ns L@% 3 +competent 'k0mpIt@nt OA% 3 +competently 'k0mpIt@ntlI Pu% 4 +competes k@m'pits Ia% 22A,3A +competing k@m'pitIN Ib% 32A,3A +competition ,k0mp@'tISn M6% 4 +competitions ,k0mp@'tISnz Mj% 4 +competitive k@m'pet@tIv OA% 4 +competitiveness k@m'pet@tIvnIs L@% 5 +competitor k@m'petIt@R K6% 4 +competitors k@m'petIt@z Kj% 4 +compilation ,k0mpI'leISn M6% 4 +compilations ,k0mpI'leISnz Mj$ 4 +compile k@m'paIl H2% 26A +compiled k@m'paIld Hc%,Hd% 26A +compiler k@m'paIl@R K6% 3 +compilers k@m'paIl@z Kj% 3 +compiles k@m'paIlz Ha% 26A +compiling k@m'paIlIN Hb% 36A +complacence k@m'pleIs@ns L@% 3 +complacency k@m'pleIs@nsI L@% 4 +complacent k@m'pleIs@nt OA% 3 +complacently k@m'pleIs@ntlI Pu% 4 +complain k@m'pleIn I0% 22A,3A,3B +complainant k@m'pleIn@nt K6% 3 +complainants k@m'pleIn@nts Kj% 3 +complained k@m'pleInd Ic%,Id% 22A,3A,3B +complaining k@m'pleInIN Ib% 32A,3A,3B +complainingly k@m'pleInINlI Pu% 4 +complains k@m'pleInz Ia% 22A,3A,3B +complaint k@m'pleInt M6% 2 +complaints k@m'pleInts Mj% 2 +complaisance k@m'pleIz@ns L@$ 3 +complaisant k@m'pleIz@nt OA$ 3 +complement 'k0mplIm@nt H0%,K6% 36A +complementary ,k0mplI'mentrI OA% 4 +complemented 'k0mplIm@ntId Hc%,Hd% 46A +complementing 'k0mplIm@ntIN Hb% 46A +complements 'k0mplIm@nts Ha%,Kj% 36A +complete k@m'plit H2%,OA% 26A +completed k@m'plitId Hc%,Hd% 36A +completely k@m'plitlI Pu% 3 +completeness k@m'plitn@s L@% 3 +completes k@m'plits Ha% 26A +completing k@m'plitIN Hb% 36A +completion k@m'pliSn L@% 3 +complex 'k0mpleks K7%,OA% 2 +complexes 'k0mpleksIz Kj% 3 +complexion k@m'plekSn K6% 3 +complexions k@m'plekSnz Kj% 3 +complexities k@m'pleksItIz Mj% 4 +complexity k@m'pleksItI M8% 4 +compliance k@m'plaI@ns L@% 3 +compliant k@m'plaI@nt OA% 3 +complicate 'k0mplIkeIt H2% 36A +complicated 'k0mplIkeItId Hc%,Hd%,OA% 46A +complicates 'k0mplIkeIts Ha% 36A +complicating 'k0mplIkeItIN Hb% 46A +complication ,k0mplI'keISn K6% 4 +complications ,k0mplI'keISnz Kj% 4 +complicity k@m'plIsItI L@% 4 +complied k@m'plaId Hc%,Hd% 22A,3A +complies k@m'plaIz Ha% 22A,3A +compliment 'k0mplIm@nt K6% 3 +compliment 'k0mplIment H0% 36A,14 +complimentary ,k0mplI'mentrI OA% 4 +complimented 'k0mplImentId Hc%,Hd% 46A,14 +complimenting 'k0mplImentIN Hb% 46A,14 +compliments 'k0mplIm@nts Kj% 3 +compliments 'k0mplIments Ha% 36A,14 +complin 'k0mplIn K6$ 2 +compline 'k0mplIn K6$ 2 +complines 'k0mplInz Kj$ 2 +complins 'k0mplInz Kj$ 2 +comply k@m'plaI H3% 22A,3A +complying k@m'plaIIN Hb% 32A,3A +component k@m'p@Un@nt K6%,OA% 3 +components k@m'p@Un@nts Kj% 3 +comport k@m'pOt J0% 23A,15A +comported k@m'pOtId Jc%,Jd% 33A,15A +comporting k@m'pOtIN Jb% 33A,15A +comportment k@m'pOtm@nt K6$ 3 +comportments k@m'pOtm@nts Kj$ 3 +comports k@m'pOts Ja% 23A,15A +compos mentis ,k0mp@s 'mentIs OA% 4 +compose k@m'p@Uz J2% 22A,6A,16A +composed k@m'p@Uzd Jc%,Jd%,OA% 22A,6A,16A +composedly k@m'p@UzIdlI Pu% 4 +composer k@m'p@Uz@R K6% 3 +composers k@m'p@Uz@z Kj% 3 +composes k@m'p@UzIz Ja% 32A,6A,16A +composing k@m'p@UzIN Jb% 32A,6A,16A +composite 'k0mp@zIt OA% 3 +composition ,k0mp@'zISn M6% 4 +compositions ,k0mp@'zISnz Mj% 4 +compositor k@m'p0zIt@R K6% 4 +compositors k@m'p0zIt@z Kj% 4 +compost 'k0mp0st H0$,L@% 26A +composted 'k0mp0stId Hc$,Hd$ 36A +composting 'k0mp0stIN Hb$ 36A +composts 'k0mp0sts Ha$ 26A +composure k@m'p@UZ@R L@% 3 +compote 'k0mp0t M6$ 2 +compotes 'k0mp0ts Mj$ 2 +compound 'k0mpaUnd K6%,OA% 2 +compound k@m'paUnd J0% 22A,3A,6A +compounded k@m'paUndId Jc%,Jd% 32A,3A,6A +compounding k@m'paUndIN Jb% 32A,3A,6A +compounds 'k0mpaUndz Kj% 2 +compounds k@m'paUndz Ja% 22A,3A,6A +comprehend ,k0mprI'hend H0% 36A +comprehended ,k0mprI'hendId Hc%,Hd% 46A +comprehending ,k0mprI'hendIN Hb% 46A +comprehends ,k0mprI'hendz Ha% 36A +comprehensibility ,k0mprI,hens@'bIlItI L@% 7 +comprehensible ,k0mprI'hens@bl OA% 5 +comprehension ,k0mprI'henSn M6% 4 +comprehensions ,k0mprI'henSnz Mj$ 4 +comprehensive ,k0mprI'hensIv OA% 4 +comprehensively ,k0mprI'hensIvlI Pu% 5 +comprehensiveness ,k0mprI'hensIvn@s L@% 5 +compress 'k0mpres K7% 2 +compress k@m'pres H1% 26A,14 +compressed k@m'prest Hc%,Hd% 26A,14 +compresses 'k0mpresIz Kj% 3 +compresses k@m'presIz Ha% 36A,14 +compressing k@m'presIN Hb% 36A,14 +compression k@m'preSn L@% 3 +compressor k@m'pres@R K6% 3 +compressors k@m'pres@z Kj% 3 +comprise k@m'praIz H2% 26A +comprised k@m'praIzd Hc%,Hd% 26A +comprises k@m'praIzIz Ha% 36A +comprising k@m'praIzIN Hb% 36A +compromise 'k0mpr@maIz J2%,M6% 32A,6A +compromised 'k0mpr@maIzd Jc%,Jd% 32A,6A +compromises 'k0mpr@maIzIz Ja%,Mj% 42A,6A +compromising 'k0mpr@maIzIN Jb% 42A,6A +comptroller k@n'tr@Ul@R K6$ 3 +comptrollers k@n'tr@Ul@z Kj$ 3 +compulsion k@m'pVlSn L@% 3 +compulsive k@m'pVlsIv OA% 3 +compulsively k@m'pVlsIvlI Pu% 4 +compulsorily k@m'pVls@r@lI Pu% 5 +compulsory k@m'pVls@rI OA% 4 +compunction k@m'pVNkSn L@% 3 +computation ,k0mpjU'teISn M6% 4 +computational ,k0mpjU'teIS@nl OA% 5 +computationally ,k0mpjU'teISn@lI Pu% 6 +computations ,k0mpjU'teISnz Mj% 4 +compute k@m'pjut J2% 22A,6A,14 +computed k@m'pjutId Jc%,Jd% 32A,6A,14 +computer k@m'pjut@R K6% 3 +computerize k@m'pjut@raIz H2% 46A +computerized k@m'pjut@raIzd Hc%,Hd% 46A +computerizes k@m'pjut@raIzIz Ha% 56A +computerizing k@m'pjut@raIzIN Hb% 56A +computers k@m'pjut@z Kj% 3 +computes k@m'pjuts Ja% 22A,6A,14 +computing k@m'pjutIN Jb% 32A,6A,14 +comrade 'k0mreId K6% 2 +comradely 'k0mreIdlI Pu% 3 +comrades 'k0mreIdz Kj% 2 +comradeship 'k0mreIdSIp K6% 3 +comradeships 'k0mreIdSIps Kj$ 3 +con k0n H4%,K6%,Pu% 16A,14 +con-man 'k0n-m&n Ki% 2 +con-men 'k0n-men Kj% 2 +concatenation k0n,k&t@'neISn M6$ 5 +concatenations k0n,k&t@'neISnz Mj$ 5 +concave 'k0NkeIv OA% 2 +concavities ,k0n'k&vItIz Mj$ 4 +concavity ,k0n'k&vItI M8% 4 +conceal k@n'sil H0% 26A,14 +concealed k@n'sild Hc%,Hd% 26A,14 +concealing k@n'silIN Hb% 36A,14 +concealment k@n'silm@nt L@% 3 +conceals k@n'silz Ha% 26A,14 +concede k@n'sid H2% 26A,9,12A,13A +conceded k@n'sidId Hc%,Hd% 36A,9,12A,13A +concedes k@n'sidz Ha% 26A,9,12A,13A +conceding k@n'sidIN Hb% 36A,9,12A,13A +conceit k@n'sit M6% 2 +conceited k@n'sitId OA% 3 +conceitedly k@n'sitIdlI Pu% 4 +conceits k@n'sits Mj% 2 +conceivable k@n'siv@bl OA% 4 +conceivably k@n'siv@blI Pu% 4 +conceive k@n'siv J2% 22A,3A,6A,9,10,14 +conceived k@n'sivd Jc%,Jd% 22A,3A,6A,9,10,14 +conceives k@n'sivz Ja% 22A,3A,6A,9,10,14 +conceiving k@n'sivIN Jb% 32A,3A,6A,9,10,14 +concentrate 'k0ns@ntreIt J2%,K6% 32A,3A,6A,14 +concentrated 'k0ns@ntreItId Jc%,Jd%,OA% 42A,3A,6A,14 +concentrates 'k0ns@ntreIts Ja%,Kj% 32A,3A,6A,14 +concentrating 'k0ns@ntreItIN Jb% 42A,3A,6A,14 +concentration ,k0ns@n'treISn M6% 4 +concentrations ,k0ns@n'treISnz Mj% 4 +concentric k@n'sentrIk OA% 3 +concept 'k0nsept K6% 2 +conception k@n'sepSn M6% 3 +conceptions k@n'sepSnz Mj% 3 +concepts 'k0nsepts Kj% 2 +conceptual k@n'septjU@l OA% 4 +conceptually k@n'septjU@lI Pu% 5 +concern k@n's3n H0%,M6% 26A,14 +concerned k@n's3nd Hc%,Hd%,OA% 26A,14 +concernedly k@n's3nIdlI Pu% 4 +concerning k@n's3nIN Hb%,T-% 36A,14 +concerns k@n's3nz Ha%,Mj% 26A,14 +concert 'k0ns@t M6% 2 +concert k@n's3t H0$ 2 +concert-hall 'k0ns@t-hOl K6% 3 +concert-halls 'k0ns@t-hOlz Kj% 3 +concerted k@n's3tId Hc$,Hd%,OA% 3 +concertina ,k0ns@'tin@ K6% 4 +concertinas ,k0ns@'tin@z Kj% 4 +concerting k@n's3tIN Hb$ 3 +concerto k@n'tSe@t@U K6% 3 +concertos k@n'tSe@t@Uz Kj% 3 +concerts 'k0ns@ts Mj% 2 +concerts k@n's3ts Ha$ 2 +concession k@n'seSn M6% 3 +concessionaire k@n,seS@'ne@R K6$ 4 +concessionaires k@n,seS@'ne@z Kj$ 4 +concessions k@n'seSnz Mj% 3 +concessive k@n'sesIv OA$ 3 +conch k0ntS K7% 1 +conches 'k0ntSIz Kj% 2 +conchology k0N'k0l@dZI L@$ 4 +concierge ,k0nsI'e@Z K6% 3 +concierges ,k0nsI'e@ZIz Kj% 4 +conciliate k@n'sIlIeIt H2% 46A +conciliated k@n'sIlIeItId Hc%,Hd% 56A +conciliates k@n'sIlIeIts Ha% 46A +conciliating k@n'sIlIeItIN Hb% 56A +conciliation k@n,sIlI'eISn L@% 5 +conciliatory k@n'sIlI@t@rI OA% 6 +concise k@n'saIs OA% 2 +concisely k@n'saIslI Pu% 3 +conciseness k@n'saIsn@s L@% 3 +conclave 'k0nkleIv K6% 2 +conclaves 'k0nkleIvz Kj$ 2 +conclude k@n'klud J2% 22A,3A,6A,7A,9,14 +concluded k@n'kludId Jc%,Jd% 32A,3A,6A,7A,9,14 +concludes k@n'kludz Ja% 22A,3A,6A,7A,9,14 +concluding k@n'kludIN Jb% 32A,3A,6A,7A,9,14 +conclusion k@n'kluZn K6% 3 +conclusions k@n'kluZnz Kj% 3 +conclusive k@n'klusIv OA% 3 +conclusively k@n'klusIvlI Pu% 4 +concoct k@n'k0kt H0% 26A +concocted k@n'k0ktId Hc%,Hd% 36A +concocting k@n'k0ktIN Hb% 36A +concoction k@n'k0kSn M6% 3 +concoctions k@n'k0kSnz Mj% 3 +concocts k@n'k0kts Ha% 26A +concomitant k@n'k0mIt@nt K6$,OA% 4 +concomitants k@n'k0mIt@nts Kj$ 4 +concord 'k0NkOd M6% 2 +concordance k@n'kOd@ns M6% 3 +concordances k@n'kOd@nsIz Mj% 4 +concordant k@n'kOd@nt OA% 3 +concordat k@n'kOd&t K6% 3 +concordats k@n'kOd&ts Kj% 3 +concords 'k0NkOdz Mj$ 2 +concourse 'k0NkOs K6% 2 +concourses 'k0NkOsIz Kj$ 3 +concrete 'k0Nkrit J2%,L@%,OA% 22A,6A +concreted 'k0NkritId Jc%,Jd% 32A,6A +concretely k@n'kritlI Pu% 3 +concretes 'k0Nkrits Ja% 22A,6A +concreting 'k0NkritIN Jb% 32A,6A +concretion k@n'kriSn M6% 3 +concretions k@n'kriSnz Mj$ 3 +concubine 'k0NkjUbaIn K6% 3 +concubines 'k0NkjUbaInz Kj% 3 +concupiscence k@n'kjupIs@ns L@$ 4 +concur k@n'k3R I4% 22A,3A,4A +concurred k@n'k3d Ic%,Id% 22A,3A,4A +concurrence k@n'kVr@ns M6% 3 +concurrences k@n'kVr@nsIz Mj% 4 +concurrent k@n'kVr@nt OA% 3 +concurrently k@n'kVr@ntlI Pu% 4 +concurring k@n'k3rIN Ib% 32A,3A,4A +concurs k@n'k3z Ia% 22A,3A,4A +concuss k@n'kVs H1% 26A +concussed k@n'kVst Hc%,Hd% 26A +concusses k@n'kVsIz Ha% 36A +concussing k@n'kVsIN Hb% 36A +concussion k@n'kVSn M6% 3 +concussions k@n'kVSnz Mj$ 3 +condemn k@n'dem H0% 26A,14,16B,17 +condemnation ,k0ndem'neISn M6% 4 +condemnations ,k0ndem'neISnz Mj$ 4 +condemned k@n'demd Hc%,Hd% 26A,14,16B,17 +condemning k@n'demIN Hb% 36A,14,16B,17 +condemns k@n'demz Ha% 26A,14,16B,17 +condensation ,k0nden'seISn M6% 4 +condensations ,k0nden'seISnz Mj$ 4 +condense k@n'dens J2% 22A,3A,6A,14 +condensed k@n'denst Jc%,Jd% 22A,3A,6A,14 +condenser k@n'dens@R K6% 3 +condensers k@n'dens@z Kj% 3 +condenses k@n'densIz Ja% 32A,3A,6A,14 +condensing k@n'densIN Jb% 32A,3A,6A,14 +condescend ,k0ndI'send I0% 32A,3A,4A +condescended ,k0ndI'sendId Ic%,Id% 42A,3A,4A +condescending ,k0ndI'sendIN Ib%,OA% 42A,3A,4A +condescendingly ,k0ndI'sendINlI Pu% 5 +condescends ,k0ndI'sendz Ia% 32A,3A,4A +condescension ,k0ndI'senSn M6% 4 +condescensions ,k0ndI'senSnz Mj$ 4 +condign k@n'daIn OA$ 2 +condiment 'k0ndIm@nt M6$ 3 +condiments 'k0ndIm@nts Mj% 3 +condition k@n'dISn H0%,K6% 36A +conditional k@n'dIS@nl OA% 4 +conditionally k@n'dIS@n@lI Pu% 5 +conditioned k@n'dIS@nd OA% 3 +conditioned k@n'dISnd Hc%,Hd% 36A +conditioner k@n'dIS@n@R K6% 4 +conditioners k@n'dIS@n@z Kj% 4 +conditioning k@n'dISnIN Hb% 46A +conditions k@n'dISnz Ha%,Kj% 36A +condole k@n'd@Ul I2% 23A +condoled k@n'd@Uld Ic%,Id% 23A +condolence k@n'd@Ul@ns K6% 3 +condolences k@n'd@Ul@nsIz Kj% 4 +condoles k@n'd@Ulz Ia% 23A +condoling k@n'd@UlIN Ib% 33A +condominium ,k0nd@'mInI@m K6% 5 +condominiums ,k0nd@'mInI@mz Kj% 5 +condonation ,k0nd@U'neISn K6$ 4 +condonations ,k0nd@U'neISnz Kj$ 4 +condone k@n'd@Un H2% 26A,6C +condoned k@n'd@Und Hc%,Hd% 26A,6C +condones k@n'd@Unz Ha% 26A,6C +condoning k@n'd@UnIN Hb% 36A,6C +condor 'k0ndOR K6% 2 +condors 'k0ndOz Kj% 2 +conduce k@n'djus I2% 23A +conduced k@n'djust Ic%,Id% 23A +conduces k@n'djusIz Ia% 33A +conducing k@n'djusIN Ib% 33A +conducive k@n'djusIv OA% 3 +conduct 'k0ndVkt L@% 2 +conduct k@n'dVkt J0% 22A,6A,14,15A,15B,16A +conducted k@n'dVktId Jc%,Jd% 32A,6A,14,15A,15B,16A +conducting k@n'dVktIN Jb% 32A,6A,14,15A,15B,16A +conduction k@n'dVkSn L@% 3 +conductive k@n'dVktIv OA% 3 +conductivities ,k0ndVk'tIvItIz Mj$ 5 +conductivity ,k0ndVk'tIvItI M8% 5 +conductor k@n'dVkt@R K6% 3 +conductors k@n'dVkt@z Kj% 3 +conductress k@n'dVktrIs K7% 3 +conductresses k@n'dVktrIsIz Kj% 4 +conducts k@n'dVkts Ja% 22A,6A,14,15A,15B,16A +conduit 'k0ndwIt K6% 2 +conduits 'k0ndwIts Kj% 2 +cone k@Un H2$,K6% 115B +coned k@Und Hc$,Hd$ 115B +cones k@Unz Ha$,Kj% 115B +coney 'k@UnI K6% 2 +coneys 'k@UnIz Kj% 2 +confab 'k0nf&b I4$,K6% 2 +confabbed 'k0nf&bd Ic$,Id$ 2 +confabbing 'k0nf&bIN Ib$ 3 +confabs 'k0nf&bz Ia$,Kj% 2 +confabulate ,k@n'f&bjUleIt I2$ 42A,3A +confabulated ,k@n'f&bjUleItId Ic$,Id$ 52A,3A +confabulates ,k@n'f&bjUleIts Ia$ 42A,3A +confabulating ,k@n'f&bjUleItIN Ib$ 52A,3A +confabulation k@n,f&bjU'leISn K6$ 5 +confabulations k@n,f&bjU'leISnz Kj$ 5 +confection k@n'fekSn M6% 3 +confectioner k@n'fekSn@R K6% 4 +confectioneries k@n'fekS@n@rIz Mj$ 5 +confectioners k@n'fekSn@z Kj% 4 +confectionery k@n'fekS@n@rI M8% 5 +confections k@n'fekSnz Mj% 3 +confederacies k@n'fed@r@sIz Kj$ 5 +confederacy k@n'fed@r@sI K8% 5 +confederate k@n'fed@r@t K6%,OA% 4 +confederate k@n'fed@reIt J2% 42A,3A,6A,14 +confederated k@n'fed@reItId Jc%,Jd% 52A,3A,6A,14 +confederates k@n'fed@r@ts Kj% 4 +confederates k@n'fed@reIts Ja% 42A,3A,6A,14 +confederating k@n'fed@reItIN Jb% 52A,3A,6A,14 +confederation k@n,fed@'reISn M6% 5 +confederations k@n,fed@'reISnz Mj% 5 +confer k@n'f3R J4% 22A,3A,14 +conference 'k0nf@r@ns M6% 3 +conferences 'k0nf@r@nsIz Mj% 4 +conferment k@n'f3m@nt K6% 3 +conferments k@n'f3m@nts Kj$ 3 +conferred k@n'f3d Jc%,Jd% 22A,3A,14 +conferring k@n'f3rIN Jb% 32A,3A,14 +confers k@n'f3z Ja% 22A,3A,14 +confess k@n'fes J1% 22A,3A,3B,6A,9,14,25 +confessed k@n'fest Jc%,Jd% 22A,3A,3B,6A,9,14,25 +confessedly k@n'fesIdlI Pu% 4 +confesses k@n'fesIz Ja% 32A,3A,3B,6A,9,14,25 +confessing k@n'fesIN Jb% 32A,3A,3B,6A,9,14,25 +confession k@n'feSn M6% 3 +confessional k@n'feS@nl K6% 4 +confessionals k@n'feS@nlz Kj% 4 +confessions k@n'feSnz Mj% 3 +confessor k@n'fes@R K6% 3 +confessors k@n'fes@z Kj% 3 +confetti k@n'fetI Lk% 3 +confidant ,k0nfI'd&nt K6% 3 +confidants ,k0nfI'd&nts Kj% 3 +confide k@n'faId J2% 23A,14 +confided k@n'faIdId Jc%,Jd% 33A,14 +confidence 'k0nfId@ns M6% 3 +confidences 'k0nfId@nsIz Mj% 4 +confident 'k0nfId@nt OA% 3 +confidential ,k0nfI'denSl OA% 4 +confidentialities ,k0nfI,denSI'&lItIz Mj$ 7 +confidentiality ,k0nfI,denSI'&lItI M8% 7 +confidentially ,k0nfI'denS@lI Pu% 5 +confidently 'k0nfId@ntlI Pu% 4 +confides k@n'faIdz Ja% 23A,14 +confiding k@n'faIdIN Jb%,OA% 33A,14 +confidingly k@n'faIdINlI Pu% 4 +configuration k@n,fIg@'reISn K6% 5 +configurations k@n,fIg@'reISnz Kj% 5 +configure k@n'fIg@R H2% 36A +configured k@n'fIg@d Hc%,Hd%,OA% 36A +configures k@n'fIg@z Ha% 36A +configuring k@n'fIg@rIN Hb% 46A +confine k@n'faIn H2% 26A,14 +confined k@n'faInd Hc%,Hd%,OA% 26A,14 +confinement k@n'faInm@nt M6% 3 +confinements k@n'faInm@nts Mj% 3 +confines 'k0nfaInz Kj% 2 +confines k@n'faInz Ha% 26A,14 +confining k@n'faInIN Hb% 36A,14 +confirm k@n'f3m H0% 26A,9 +confirmation ,k0nf@'meISn M6% 4 +confirmations ,k0nf@'meISnz Mj% 4 +confirmed k@n'f3md Hc%,Hd%,OA% 26A,9 +confirming k@n'f3mIN Hb% 36A,9 +confirms k@n'f3mz Ha% 26A,9 +confiscate 'k0nfIskeIt H2% 36A +confiscated 'k0nfIskeItId Hc%,Hd% 46A +confiscates 'k0nfIskeIts Ha% 36A +confiscating 'k0nfIskeItIN Hb% 46A +confiscation ,k0nfI'skeISn M6% 4 +confiscations ,k0nfI'skeISnz Mj$ 4 +conflagration ,k0nfl@'greISn K6% 4 +conflagrations ,k0nfl@'greISnz Kj% 4 +conflict 'k0nflIkt M6% 2 +conflict k@n'flIkt I0% 22A,3A +conflicted k@n'flIktId Ic%,Id% 32A,3A +conflicting k@n'flIktIN Ib%,OA% 32A,3A +conflicts 'k0nflIkts Mj% 2 +conflicts k@n'flIkts Ia% 22A,3A +confluence 'k0nflU@ns K6% 3 +confluences 'k0nflU@nsIz Kj$ 3 +confluent 'k0nflU@nt OA$ 3 +conform k@n'fOm J0% 22A,3A,14 +conformable k@n'fOm@bl OA$ 4 +conformation ,k0nfO'meISn K6$ 4 +conformations ,k0nfO'meISnz Kj$ 4 +conformed k@n'fOmd Jc%,Jd% 22A,3A,14 +conforming k@n'fOmIN Jb% 32A,3A,14 +conformist k@n'fOmIst K6% 3 +conformists k@n'fOmIsts Kj% 3 +conformity k@n'fOmItI L@% 4 +conforms k@n'fOmz Ja% 22A,3A,14 +confound k@n'faUnd H0% 26A,14 +confounded k@n'faUndId Hc%,Hd%,OA% 36A,14 +confoundedly k@n'faUndIdlI Pu$ 4 +confounding k@n'faUndIN Hb% 36A,14 +confounds k@n'faUndz Ha% 26A,14 +confr`ere 'k0nfre@R K6$ 2 +confr`eres 'k0nfre@z Kj$ 2 +confront k@n'frVnt H0% 26A,14 +confrontation ,k0nfrVn'teISn M6% 4 +confrontations ,k0nfrVn'teISnz Mj% 4 +confronted k@n'frVntId Hc%,Hd% 36A,14 +confronting k@n'frVntIN Hb% 36A,14 +confronts k@n'frVnts Ha% 26A,14 +confuse k@n'fjuz H2% 26A,14 +confused k@n'fjuzd Hc%,Hd% 26A,14 +confusedly k@n'fjuzIdlI Pu% 4 +confuses k@n'fjuzIz Ha% 36A,14 +confusing k@n'fjuzIN Hb% 36A,14 +confusion k@n'fjuZn L@% 3 +confutation ,k0nfju'teISn K6$ 4 +confutations ,k0nfju'teISnz Kj$ 4 +confute k@n'fjut H2% 26A +confuted k@n'fjutId Hc%,Hd% 36A +confutes k@n'fjuts Ha% 26A +confuting k@n'fjutIN Hb$ 36A +cong_e 'k0nZeI K6$ 2 +cong_es 'k0nZeIz Kj$ 2 +congeal k@n'dZil J0% 22A,6A +congealed k@n'dZild Jc%,Jd% 22A,6A +congealing k@n'dZilIN Jb% 32A,6A +congeals k@n'dZilz Ja% 22A,6A +congenial k@n'dZinI@l OA% 4 +congenially k@n'dZinI@lI Pu% 5 +congenital k@n'dZenItl OA% 4 +conger 'k0Ng@R K6$ 2 +conger-eel 'k0Ng@r-il K6% 3 +conger-eels 'k0Ng@r-ilz Kj% 3 +congers 'k0Ng@z Kj$ 2 +congested k@n'dZestId OA% 3 +congestion k@n'dZestS@n L@% 3 +conglomerate k@n'gl0m@r@t K6%,OA% 4 +conglomerate k@n'gl0m@reIt J2$ 42A,6A +conglomerated k@n'gl0m@reItId Jc$,Jd$ 52A,6A +conglomerates k@n'gl0m@r@ts Kj% 4 +conglomerates k@n'gl0m@reIts Ja$ 42A,6A +conglomerating k@n'gl0m@reItIN Jb$ 52A,6A +conglomeration k@n,gl0m@'reISn M6% 5 +conglomerations k@n,gl0m@'reISnz Mj$ 5 +congratulate k@n'gr&tSUleIt H2% 46A,14 +congratulated k@n'gr&tSUleItId Hc%,Hd% 56A,14 +congratulates k@n'gr&tSUleIts Ha% 46A,14 +congratulating k@n'gr&tSUleItIN Hb% 56A,14 +congratulation k@n,gr&tSU'leISn K6% 5 +congratulations k@n,gr&tSU'leISnz Kj% 5 +congratulatory k@n'gr&tSUl@t@rI OA% 6 +congregate 'k0NgrIgeIt J2% 32A,2C,6A +congregated 'k0NgrIgeItId Jc%,Jd% 42A,2C,6A +congregates 'k0NgrIgeIts Ja% 32A,2C,6A +congregating 'k0NgrIgeItIN Jb% 42A,2C,6A +congregation ,k0NgrI'geISn M6% 4 +congregational ,k0NgrI'geISn@l OA% 5 +congregations ,k0NgrI'geISnz Mj% 4 +congress 'k0Ngres K7% 2 +congresses 'k0NgresIz Kj% 3 +congressional k@n'greS@nl OA% 4 +congressman 'k0Ngresm@n Ki% 3 +congressmen 'k0Ngresm@n Kj% 3 +congresswoman 'k0NgreswUm@n Ki$ 4 +congresswomen 'k0NgreswImIn Kj$ 4 +congruent 'k0NgrU@nt OA% 3 +congruous 'k0NgrU@s OA$ 3 +conic 'k0nIk OA$ 2 +conical 'k0nIkl OA% 3 +conies 'k@UnIz Kj$ 2 +conifer 'k0nIf@R K6% 3 +coniferous k@'nIf@r@s OA% 4 +conifers 'k0nIf@z Kj% 3 +coning 'k@UnIN Hb$ 215B +conjectural k@n'dZektS@r@l OA% 4 +conjecture k@n'dZektS@R J2%,M6% 32A,6A,9,25 +conjectured k@n'dZektS@d Jc%,Jd% 32A,6A,9,25 +conjectures k@n'dZektS@z Ja%,Mj% 32A,6A,9,25 +conjecturing k@n'dZektS@rIN Jb% 42A,6A,9,25 +conjoin k@n'dZoIn J0$ 22A,6A +conjoined k@n'dZoInd Jc$,Jd$ 22A,6A +conjoining k@n'dZoInIN Jb$ 32A,6A +conjoins k@n'dZoInz Ja$ 22A,6A +conjoint k@n'dZoInt OA$ 2 +conjointly k@n'dZoIntlI Pu% 3 +conjugal 'k0ndZUg@l OA% 3 +conjugally 'k0ndZUg@lI Pu% 4 +conjugate 'k0ndZUgeIt J2% 32A,6A +conjugated 'k0ndZUgeItId Jc%,Jd% 42A,6A +conjugates 'k0ndZUgeIts Ja% 32A,6A +conjugating 'k0ndZUgeItIN Jb% 42A,6A +conjugation ,k0ndZU'geISn M6% 4 +conjugations ,k0ndZU'geISnz Mj% 4 +conjunction k@n'dZVNkSn M6% 3 +conjunctions k@n'dZVNkSnz Mj% 3 +conjunctive k@n'dZVNktIv K6%,OA% 3 +conjunctives k@n'dZVNktIvz Kj% 3 +conjuncture k@n'dZVNktS@R K6$ 3 +conjunctures k@n'dZVNktS@z Kj$ 3 +conjuration ,k0ndZU'reISn K6$ 4 +conjurations ,k0ndZU'reISnz Kj$ 4 +conjure 'kVndZ@R J2% 22A,15A,15B,17 +conjured 'kVndZ@d Jc%,Jd% 22A,15A,15B,17 +conjurer 'kVndZ@r@R K6$ 3 +conjurers 'kVndZ@r@z Kj$ 3 +conjures 'kVndZ@z Ja% 22A,15A,15B,17 +conjuring 'kVndZ@rIN Jb% 32A,15A,15B,17 +conjuror 'kVndZ@r@R K6% 3 +conjurors 'kVndZ@r@z Kj% 3 +conk k0Nk I0%,K6% 1 +conked k0Nkt Ic%,Id% 1 +conker 'k0Nk@R K6% 2 +conkers 'k0Nk@z Kj% 2 +conking 'k0NkIN Ib% 2 +conks k0Nks Ia%,Kj% 1 +connect k@'nekt J0% 22A,2C,3A,6A,14,15A,15B +connected k@'nektId Jc%,Jd% 32A,2C,3A,6A,14,15A,15B +connecting k@'nektIN Jb% 32A,2C,3A,6A,14,15A,15B +connection k@'nekSn M6% 3 +connections k@'nekSnz Mj% 3 +connective k@'nektIv K6%,OA% 3 +connectives k@'nektIvz Kj% 3 +connects k@'nekts Ja% 22A,2C,3A,6A,14,15A,15B +conned k0nd Hc%,Hd% 16A,14 +connexion k@'nekSn M6$ 3 +connexions k@'nekSnz Mj$ 3 +conning 'k0nIN Hb%,Oq% 26A,14 +connivance k@'naIv@ns L@% 3 +connive k@'naIv I2% 23A +connived k@'naIvd Ic%,Id% 23A +connives k@'naIvz Ia% 23A +conniving k@'naIvIN Ib% 33A +connoisseur ,k0n@'s3R K6% 3 +connoisseurs ,k0n@'s3z Kj% 3 +connotation ,k0n@'teISn K6% 4 +connotations ,k0n@'teISnz Kj% 4 +connote k@'n@Ut H2$ 26A +connoted k@'n@UtId Hc$,Hd$ 36A +connotes k@'n@Uts Ha$ 26A +connoting k@'n@UtIN Hb$ 36A +connubial k@'njubI@l OA$ 4 +conquer 'k0Nk@R H0% 26A +conquered 'k0Nk@d Hc%,Hd% 26A +conquering 'k0Nk@rIN Hb% 36A +conqueror 'k0Nk@r@R K6% 3 +conquerors 'k0Nk@r@z Kj% 3 +conquers 'k0Nk@z Ha% 26A +conquest 'k0Nkwest M6% 2 +conquests 'k0Nkwests Mj% 2 +conquistador k0n'kwIst@dOR K6% 4 +conquistadors k0n'kwIst@dOz Kj% 4 +cons k0nz Ha%,Kj$ 16A,14 +consanguinity ,k0ns&N'gwInItI L@$ 5 +conscience 'k0nS@ns M6% 2 +conscience-smitten 'k0nS@ns-smItn OA% 4 +consciences 'k0nS@nsIz Mj% 3 +conscientious ,k0nSI'enS@s OA% 4 +conscientiously ,k0nSI'enS@slI Pu% 5 +conscientiousness ,k0nSI'enS@sn@s L@% 5 +conscious 'k0nS@s OA% 2 +consciously 'k0nS@slI Pu% 3 +consciousness 'k0nS@sn@s L@% 3 +conscript 'k0nskrIpt K6% 2 +conscript k@n'skrIpt H0% 26A,14 +conscripted k@n'skrIptId Hc%,Hd% 36A,14 +conscripting k@n'skrIptIN Hb% 36A,14 +conscription k@n'skrIpSn L@% 3 +conscripts 'k0nskrIpts Kj% 2 +conscripts k@n'skrIpts Ha% 26A,14 +consecrate 'k0nsIkreIt H2% 36A,14,23 +consecrated 'k0nsIkreItId Hc%,Hd% 46A,14,23 +consecrates 'k0nsIkreIts Ha% 36A,14,23 +consecrating 'k0nsIkreItIN Hb% 46A,14,23 +consecration ,k0nsI'kreISn M6% 4 +consecrations ,k0nsI'kreISnz Mj$ 4 +consecutive k@n'sekjUtIv OA% 4 +consecutively k@n'sekjUtIvlI Pu% 5 +consensus k@n'sens@s Mi% 3 +consent k@n'sent I0%,L@% 22A,3A,7A +consented k@n'sentId Ic%,Id% 32A,3A,7A +consenting k@n'sentIN Ib% 32A,3A,7A +consents k@n'sents Ia% 22A,3A,7A +consequence 'k0nsIkw@ns M6% 3 +consequences 'k0nsIkw@nsIz Mj% 4 +consequent 'k0nsIkw@nt OA% 3 +consequential ,k0nsI'kwenSl OA% 4 +consequentially ,k0nsI'kwenS@lI Pu% 5 +consequently 'k0nsIkw@ntlI Pu% 4 +conservancies k@n's3v@nsIz Mj$ 4 +conservancy k@n's3v@nsI M8$ 4 +conservation ,k0ns@'veISn L@% 4 +conservatism k@n's3v@tIz@m L@% 5 +conservative k@n's3v@tIv K6%,OA% 4 +conservatively k@n's3v@tIvlI Pu% 5 +conservatives k@n's3v@tIvz Kj% 4 +conservatoire k@n's3v@twAR K6% 4 +conservatoires k@n's3v@twAz Kj% 4 +conservatories k@n's3v@trIz Kj% 4 +conservatory k@n's3v@trI K8% 4 +conserve k@n's3v H2%,K6% 26A +conserved k@n's3vd Hc%,Hd% 26A +conserves k@n's3vz Ha%,Kj% 26A +conserving k@n's3vIN Hb% 36A +consider k@n'sId@R H0% 36A,6C,8,9,10,25 +considerable k@n'sId@r@bl OA% 5 +considerably k@n'sId@r@blI Pu% 5 +considerate k@n'sId@r@t OA% 4 +considerately k@n'sId@r@tlI Pu% 5 +considerateness k@n'sId@r@tn@s L@% 5 +consideration k@n,sId@'reISn M6% 5 +considerations k@n,sId@'reISnz Mj% 5 +considered k@n'sId@d Hc%,Hd% 36A,6C,8,9,10,25 +considering k@n'sId@rIN Hb%,T-% 46A,6C,8,9,10,25 +considers k@n'sId@z Ha% 36A,6C,8,9,10,25 +consign k@n'saIn H0% 26A,14 +consigned k@n'saInd Hc%,Hd% 26A,14 +consignee ,k0nsaI'ni K6$ 3 +consignees ,k0nsaI'niz Kj$ 3 +consigner k@n'saIn@R K6% 3 +consigners k@n'saIn@z Kj% 3 +consigning k@n'saInIN Hb% 36A,14 +consignment k@n'saInm@nt M6% 3 +consignments k@n'saInm@nts Mj% 3 +consignor k@n'saIn@R K6$ 3 +consignors k@n'saIn@z Kj$ 3 +consigns k@n'saInz Ha% 26A,14 +consist k@n'sIst I0% 23A +consisted k@n'sIstId Ic%,Id% 33A +consistence k@n'sIst@ns L@% 3 +consistencies k@n'sIst@nsIz Mj% 4 +consistency k@n'sIst@nsI M8% 4 +consistent k@n'sIst@nt OA% 3 +consistently k@n'sIst@ntlI Pu% 4 +consisting k@n'sIstIN Ib% 33A +consistories k@n'sIst@rIz Kj$ 4 +consistory k@n'sIst@rI K8$ 4 +consists k@n'sIsts Ia% 23A +consolable k@n's@Ul@bl OA% 4 +consolation ,k0ns@'leISn M6% 4 +consolations ,k0ns@'leISnz Mj% 4 +consolatory k@n's0l@t@rI OA$ 5 +console 'k0ns@Ul K6% 2 +console k@n's@Ul H2% 26A,14 +consoled k@n's@Uld Hc%,Hd% 26A,14 +consoles 'k0ns@Ulz Kj% 2 +consoles k@n's@Ulz Ha% 26A,14 +consolidate k@n's0lIdeIt J2% 42A,6A +consolidated k@n's0lIdeItId Jc%,Jd% 52A,6A +consolidates k@n's0lIdeIts Ja% 42A,6A +consolidating k@n's0lIdeItIN Jb% 52A,6A +consolidation k@n,s0lI'deISn M6% 5 +consolidations k@n,s0lI'deISnz Mj$ 5 +consoling k@n's@UlIN Hb% 36A,14 +consols 'k0ns0lz Kj% 2 +consomm_e k@n's0meI M6% 3 +consomm_es k@n's0meIz Mj$ 3 +consonance 'k0ns@n@ns L@$ 3 +consonant 'k0ns@n@nt K6%,OA% 3 +consonants 'k0ns@n@nts Kj% 3 +consort 'k0nsOt K6% 2 +consort k@n'sOt I0% 22C,3A +consorted k@n'sOtId Ic%,Id% 32C,3A +consortia k@n'sOtI@ Kj% 4 +consorting k@n'sOtIN Ib% 32C,3A +consortium k@n'sOtI@m Ki% 4 +consorts 'k0nsOts Kj% 2 +consorts k@n'sOts Ia% 22C,3A +conspectus k@n'spekt@s K7$ 3 +conspectuses k@n'spekt@sIz Kj$ 4 +conspicuous k@n'spIkjU@s OA% 4 +conspicuously k@n'spIkjU@slI Pu% 5 +conspicuousness k@n'spIkjU@sn@s L@% 5 +conspiracies k@n'spIr@sIz Mj% 4 +conspiracy k@n'spIr@sI M8% 4 +conspirator k@n'spIr@t@R K6% 4 +conspiratorial k@n,spIr@'tOrI@l OA% 6 +conspirators k@n'spIr@t@z Kj% 4 +conspire k@n'spaI@R J2% 22A,3A,4A,6A +conspired k@n'spaI@d Jc%,Jd% 22A,3A,4A,6A +conspires k@n'spaI@z Ja% 22A,3A,4A,6A +conspiring k@n'spaI@rIN Jb% 32A,3A,4A,6A +constable 'k0nst@bl K6% 3 +constables 'k0nst@blz Kj% 3 +constabularies k@n'st&bjUl@rIz Kj% 5 +constabulary k@n'st&bjUl@rI K8% 5 +constancy 'k0nst@nsI L@% 3 +constant 'k0nst@nt K6%,OA% 2 +constantly 'k0nst@ntlI Pu% 3 +constants 'k0nst@nts Kj% 2 +constellation ,k0nst@'leISn K6% 4 +constellations ,k0nst@'leISnz Kj% 4 +consternation ,k0nst@'neISn L@% 4 +constipate 'k0nstIpeIt H2% 36A +constipated 'k0nstIpeItId Hc%,Hd%,OA% 46A +constipates 'k0nstIpeIts Ha% 36A +constipating 'k0nstIpeItIN Hb% 46A +constipation ,k0nstI'peISn L@% 4 +constituencies k@n'stItjU@nsIz Kj% 5 +constituency k@n'stItjU@nsI K8% 5 +constituent k@n'stItjU@nt K6%,OA% 4 +constituents k@n'stItjU@nts Kj% 3 +constitute 'k0nstItjut H2% 36A,23 +constituted 'k0nstItjutId Hc%,Hd% 46A,23 +constitutes 'k0nstItjuts Ha% 36A,23 +constituting 'k0nstItjutIN Hb% 46A,23 +constitution ,k0nstI'tjuSn M6% 4 +constitutional ,k0nstI'tjuS@nl K6%,OA% 5 +constitutionalism ,k0nstI'tjuS@n@lIz@m L@$ 7 +constitutionalist ,k0nstI'tjuSn@lIst K6$ 5 +constitutionalists ,k0nstI'tjuSn@lIsts Kj$ 5 +constitutionalize ,k0nstI'tjuSn@laIz H2$ 5 +constitutionalized ,k0nstI'tjuSn@laIzd Hc$,Hd$ 5 +constitutionalizes ,k0nstI'tjuSn@laIzIz Ha$ 6 +constitutionalizing ,k0nstI'tjuSn@laIzIN Hb$ 6 +constitutionally ,k0nstI'tjuS@n@lI Pu% 6 +constitutionals ,k0nstI'tjuS@nlz Kj$ 5 +constitutions ,k0nstI'tjuSnz Mj% 4 +constitutive k@n'stItjUtIv OA$ 4 +constrain k@n'streIn H0% 26A,17 +constrained k@n'streInd Hc%,Hd%,OA% 26A,17 +constrainedly k@n'streIn@dlI Pu% 4 +constraining k@n'streInIN Hb% 36A,17 +constrains k@n'streInz Ha% 26A,17 +constraint k@n'streInt M6% 2 +constraints k@n'streInts Mj% 2 +constrict k@n'strIkt H0% 26A +constricted k@n'strIktId Hc%,Hd% 36A +constricting k@n'strIktIN Hb% 36A +constriction k@n'strIkSn M6% 3 +constrictions k@n'strIkSnz Mj% 3 +constricts k@n'strIkts Ha% 26A +construct k@n'strVkt H0% 26A +constructed k@n'strVktId Hc%,Hd% 36A +constructing k@n'strVktIN Hb% 36A +construction k@n'strVkSn M6% 3 +constructional k@n'strVkS@nl OA% 4 +constructions k@n'strVkSnz Mj% 3 +constructive k@n'strVktIv OA% 3 +constructively k@n'strVktIvlI Pu% 4 +constructor k@n'strVkt@R K6% 3 +constructors k@n'strVkt@z Kj% 3 +constructs k@n'strVkts Ha% 26A +construe k@n'stru J2% 22A,6A +construed k@n'strud Jc%,Jd% 22A,6A +construes k@n'struz Ja% 22A,6A +construing k@n'struIN Jb% 32A,6A +consubstantiation ,k0ns@b,st&nSI'eISn L@$ 6 +consul 'k0nsl K6% 2 +consular 'k0nsjUl@R OA% 3 +consulate 'k0nsjUl@t K6% 3 +consulates 'k0nsjUl@ts Kj% 3 +consuls 'k0nslz Kj% 2 +consulship 'k0ns@lSIp K6% 3 +consulships 'k0ns@lSIps Kj$ 3 +consult k@n'sVlt J0% 23A,6A,14 +consultant k@n'sVlt@nt K6% 3 +consultants k@n'sVlt@nts Kj% 3 +consultation ,k0nsl'teISn M6% 4 +consultations ,k0nsl'teISnz Mj% 4 +consultative k@n'sVlt@tIv OA% 4 +consulted k@n'sVltId Jc%,Jd% 33A,6A,14 +consulting k@n'sVltIN Jb% 33A,6A,14 +consults k@n'sVlts Ja% 23A,6A,14 +consume k@n'sjum J2% 26A +consumed k@n'sjumd Jc%,Jd% 26A +consumer k@n'sjum@R K6% 3 +consumers k@n'sjum@z Kj% 3 +consumes k@n'sjumz Ja% 26A +consuming k@n'sjumIN Jb%,OA% 36A +consummate 'k0ns@meIt H2% 36A +consummate k@n'sVm@t OA% 3 +consummated 'k0ns@meItId Hc%,Hd% 46A +consummates 'k0ns@meIts Ha% 36A +consummating 'k0ns@meItIN Hb% 46A +consummation ,k0ns@'meISn M6% 4 +consummations ,k0ns@'meISnz Mj$ 4 +consumption k@n'sVmpSn L@% 3 +consumptive k@n'sVmptIv K6%,OA% 3 +consumptives k@n'sVmptIvz Kj% 3 +cont k0nt Y~% 1 +contact 'k0nt&kt H0%,M6% 26A +contacted 'k0nt&ktId Hc%,Hd% 36A +contacting 'k0nt&ktIN Hb% 36A +contacts 'k0nt&kts Ha%,Mj% 26A +contagion k@n'teIdZ@n M6% 3 +contagions k@n'teIdZ@nz Mj$ 3 +contagious k@n'teIdZ@s OA% 3 +contagiously k@n'teIdZ@slI Pu% 4 +contain k@n'teIn H0% 26A +contained k@n'teInd Hc%,Hd% 26A +container k@n'teIn@R K6% 3 +containers k@n'teIn@z Kj% 3 +containing k@n'teInIN Hb% 36A +containment k@n'teInm@nt L@% 3 +contains k@n'teInz Ha% 26A +contaminant k@n't&mIn@nt K6% 4 +contaminants k@n't&mIn@nts Kj% 4 +contaminate k@n't&mIneIt H2% 46A +contaminated k@n't&mIneItId Hc%,Hd% 56A +contaminates k@n't&mIneIts Ha% 46A +contaminating k@n't&mIneItIN Hb% 56A +contamination k@n,t&mI'neISn M6% 5 +contaminations k@n,t&mI'neISnz Mj% 5 +contemn k@n'tem H0$ 26A +contemned k@n'temd Hc$,Hd$ 26A +contemning k@n'temIN Hb$ 36A +contemns k@n'temz Ha$ 26A +contemplate 'k0nt@mpleIt J2% 32A,6A,6C,19C +contemplated 'k0nt@mpleItId Jc%,Jd% 42A,6A,6C,19C +contemplates 'k0nt@mpleIts Ja% 32A,6A,6C,19C +contemplating 'k0nt@mpleItIN Jb% 42A,6A,6C,19C +contemplation ,k0nt@m'pleISn L@% 4 +contemplative k@n'templ@tIv OA% 4 +contemporaneous k@n,temp@'reInI@s OA% 6 +contemporaneously k@n,temp@'reInI@slI Pu% 7 +contemporaries k@n'tempr@rIz Kj% 4 +contemporary k@n'tempr@rI K8%,OA% 4 +contempt k@n'tempt L@% 2 +contemptible k@n'tempt@bl OA% 4 +contemptuous k@n'temptSU@s OA% 4 +contemptuously k@n'temptSU@slI Pu% 5 +contend k@n'tend J0% 23A,9 +contended k@n'tendId Jc%,Jd% 33A,9 +contender k@n'tend@R K6% 3 +contenders k@n'tend@z Kj% 3 +contending k@n'tendIN Jb% 33A,9 +contends k@n'tendz Ja% 23A,9 +content 'k0ntent K6% 2 +content k@n'tent H0%,L@%,OA% 26A,14 +contented k@n'tentId Hc%,Hd%,OA% 36A,14 +contentedly k@n'tentIdlI Pu% 4 +contenting k@n'tentIN Hb% 36A,14 +contention k@n'tenSn M6% 3 +contentions k@n'tenSnz Mj% 3 +contentious k@n'tenS@s OA% 3 +contentment k@n'tentm@nt L@% 3 +contents 'k0ntents Kj% 2 +contents k@n'tents Ha% 26A,14 +conterminous k0n't3mIn@s OA$ 4 +contest 'k0ntest K6% 2 +contest k@n'test J0% 23A,6A,9 +contestant k@n'test@nt K6% 3 +contestants k@n'test@nts Kj% 3 +contested k@n'testId Jc%,Jd% 33A,6A,9 +contesting k@n'testIN Jb% 33A,6A,9 +contests 'k0ntests Kj% 2 +contests k@n'tests Ja% 23A,6A,9 +context 'k0ntekst M6% 2 +contexts 'k0nteksts Mj% 2 +contextual k@n'tekstSU@l OA% 4 +contiguity ,k0ntI'gjuItI L@% 5 +contiguous k@n'tIgjU@s OA% 4 +contiguously k@n'tIgjU@slI Pu% 4 +continence 'k0ntIn@ns L@% 3 +continent 'k0ntIn@nt K6%,OA% 3 +continental ,k0ntI'nentl OA% 4 +continents 'k0ntIn@nts Kj% 3 +contingencies k@n'tIndZ@nsIz Mj% 4 +contingency k@n'tIndZ@nsI M8% 4 +contingent k@n'tIndZ@nt K6%,OA% 3 +contingents k@n'tIndZ@nts Kj$ 3 +continual k@n'tInjU@l OA% 4 +continually k@n'tInjU@lI Pu% 5 +continuance k@n'tInjU@ns Ki% 4 +continuation k@n,tInjU'eISn M6% 5 +continuations k@n,tInjU'eISnz Mj$ 5 +continue k@n'tInju J2% 32A,2B,2D,2E,6A,6D,7A,14 +continued k@n'tInjud Jc%,Jd% 32A,2B,2D,2E,6A,6D,7A,14 +continues k@n'tInjuz Ja% 32A,2B,2D,2E,6A,6D,7A,14 +continuing k@n'tInjuIN Jb% 42A,2B,2D,2E,6A,6D,7A,14 +continuity ,k0ntI'njuItI L@% 5 +continuous k@n'tInjU@s OA% 4 +continuously k@n'tInjU@slI Pu% 5 +contort k@n'tOt H0% 26A,14 +contorted k@n'tOtId Hc%,Hd% 36A,14 +contorting k@n'tOtIN Hb% 36A,14 +contortion k@n'tOSn M6% 3 +contortionist k@n'tOS@nIst K6% 4 +contortionists k@n'tOS@nIsts Kj% 4 +contortions k@n'tOSnz Mj% 3 +contorts k@n'tOts Ha% 26A,14 +contour 'k0ntU@R H0%,K6% 26A +contoured 'k0ntU@d Hc%,Hd% 26A +contouring 'k0ntU@rIN Hb% 36A +contours 'k0ntU@z Ha%,Kj% 26A +contra- ,k0ntr@- U-% 2 +contraband 'k0ntr@b&nd L@% 3 +contrabass ,k0ntr@'beIs K7% 3 +contrabasses ,k0ntr@'beIsIz Kj% 4 +contraception ,k0ntr@'sepSn L@% 4 +contraceptive ,k0ntr@'septIv K6%,OA% 4 +contraceptives ,k0ntr@'septIvz Kj% 4 +contract 'k0ntr&kt M6% 2 +contract k@n'tr&kt J0% 22A,2C,4A,6A,14 +contracted k@n'tr&ktId Jc%,Jd% 32A,2C,4A,6A,14 +contractible 'k0ntr&kt@bl OA$ 4 +contractile k@n'tr&ktaIl OA$ 3 +contracting k@n'tr&ktIN Jb% 32A,2C,4A,6A,14 +contraction k@n'tr&kSn M6% 3 +contractions k@n'tr&kSnz Mj% 3 +contractor 'k0ntr&kt@R K6% 3 +contractors 'k0ntr&kt@z Kj% 3 +contracts 'k0ntr&kts Mj% 2 +contracts k@n'tr&kts Ja% 22A,2C,4A,6A,14 +contractual k@n'tr&ktSU@l OA% 4 +contradict ,k0ntr@'dIkt H0% 36A +contradicted ,k0ntr@'dIktId Hc%,Hd% 46A +contradicting ,k0ntr@'dIktIN Hb% 46A +contradiction ,k0ntr@'dIkSn M6% 4 +contradictions ,k0ntr@'dIkSnz Mj% 4 +contradictory ,k0ntr@'dIkt@rI OA% 5 +contradicts ,k0ntr@'dIkts Ha% 36A +contradistinction ,k0ntr@dI'stINkSn K6$ 5 +contradistinctions ,k0ntr@dI'stINkSnz Kj$ 5 +contradistinguish ,k0ntr@dI'stINgwIS H1$ 514 +contradistinguished ,k0ntr@dI'stINgwISt Hc$,Hd$ 514 +contradistinguishes ,k0ntr@dI'stINgwISIz Ha$ 614 +contradistinguishing ,k0ntr@dI'stINgwISIN Hb$ 614 +contralto k@n'tr<@U K6% 3 +contraltos k@n'tr<@Uz Kj% 3 +contraption k@n'tr&pSn K6% 3 +contraptions k@n'tr&pSnz Kj% 3 +contrapuntal ,k0ntr@'pVntl OA% 4 +contraries 'k0ntr@rIz Mj$ 3 +contrarieties ,k0ntr@'raI@tIz Mj$ 5 +contrariety ,k0ntr@'raI@tI M8$ 5 +contrarily 'k0ntr@r@lI Pu% 4 +contrariness k@n'tre@rIn@s L@% 4 +contrariwise ,k0n'tre@rIwaIz Pu% 4 +contrary 'k0ntr@rI M8%,OA% 3 +contrary k@n'tre@rI OA% 3 +contrast 'k0ntrAst M6% 2 +contrast k@n'trAst J0% 22C,3A,6A,14 +contrasted k@n'trAstId Jc%,Jd% 32C,3A,6A,14 +contrasting k@n'trAstIN Jb% 32C,3A,6A,14 +contrastingly k@n'trAstINlI Pu% 4 +contrasts 'k0ntrAsts Mj% 2 +contrasts k@n'trAsts Ja% 22C,3A,6A,14 +contravene ,k0ntr@'vin H2% 36A +contravened ,k0ntr@'vind Hc%,Hd% 36A +contravenes ,k0ntr@'vinz Ha% 36A +contravening ,k0ntr@'vinIN Hb% 46A +contravention ,k0ntr@'venSn M6% 4 +contraventions ,k0ntr@'venSnz Mj% 4 +contretemps 'k0ntr@t0m K9% 3 +contribute k@n'trIbjut J2% 32A,3A,6A,14 +contributed k@n'trIbjutId Jc%,Jd% 42A,3A,6A,14 +contributes k@n'trIbjuts Ja% 32A,3A,6A,14 +contributing k@n'trIbjutIN Jb% 42A,3A,6A,14 +contribution ,k0ntrI'bjuSn M6% 4 +contributions ,k0ntrI'bjuSnz Mj% 4 +contributor k@n'trIbjut@R K6% 4 +contributors k@n'trIbjut@z Kj% 4 +contributory k@n'trIbjUt@rI OA% 5 +contrite k@n'traIt OA% 2 +contritely k@n'traItlI Pu% 3 +contrition k@n'trISn L@% 3 +contrivance k@n'traIv@ns M6% 3 +contrivances k@n'traIv@nsIz Mj% 4 +contrive k@n'traIv J2% 22A,6A,7A +contrived k@n'traIvd Jc%,Jd% 22A,6A,7A +contriver k@n'traIv@R K6$ 3 +contrivers k@n'traIv@z Kj$ 3 +contrives k@n'traIvz Ja% 22A,6A,7A +contriving k@n'traIvIN Jb% 32A,6A,7A +control k@n'tr@Ul H4%,M6% 26A +controllable k@n'tr@Ul@bl OA% 4 +controlled k@n'tr@Uld Hc%,Hd% 26A +controller k@n'tr@Ul@R K6% 3 +controllers k@n'tr@Ul@z Kj% 3 +controlling k@n'tr@UlIN Hb% 36A +controls k@n'tr@Ulz Ha%,Mj% 26A +controversial ,k0ntr@'v3Sl OA% 4 +controversialist ,k0ntr@'v3S@lIst K6$ 5 +controversialists ,k0ntr@'v3S@lIsts Kj$ 5 +controversially ,k0ntr@'v3S@lI Pu% 5 +controversies 'k0ntr@v3sIz Mj% 4 +controversy 'k0ntr@v3sI M8% 4 +controvert ,k0ntr@'v3t H0$ 36A +controverted ,k0ntr@'v3tId Hc$,Hd$ 46A +controverting ,k0ntr@'v3tIN Hb$ 46A +controverts ,k0ntr@'v3ts Ha$ 36A +contumacies 'k0ntjUm@sIz Mj$ 4 +contumacious ,k0ntju'meIS@s OA$ 4 +contumaciously ,k0ntju'meIS@slI Pu$ 5 +contumacy 'k0ntjUm@sI M8$ 4 +contumelies 'k0ntjumlIz Mj$ 3 +contumelious ,k0ntju'milI@s OA$ 5 +contumeliously ,k0ntju'milI@slI Pu$ 6 +contumely 'k0ntjumlI M8$ 3 +contuse k@n'tjuz H2$ 26A +contused k@n'tjuzd Hc$,Hd$ 26A +contuses k@n'tjuzIz Ha$ 36A +contusing k@n'tjuzIN Hb$ 36A +contusion k@n'tjuZn K6% 3 +contusions k@n'tjuZnz Kj% 3 +conundrum k@'nVndr@m K6% 3 +conundrums k@'nVndr@mz Kj% 3 +conurbation ,k0n3'beISn K6% 4 +conurbations ,k0n3'beISnz Kj% 4 +convalesce ,k0nv@'les I2% 32A +convalesced ,k0nv@'lest Ic%,Id% 32A +convalescence ,k0nv@'lesns L@% 4 +convalescent ,k0nv@'lesnt K6%,OA% 4 +convalescents ,k0nv@'lesnts Kj% 4 +convalesces ,k0nv@'lesIz Ia% 42A +convalescing ,k0nv@'lesIN Ib% 42A +convection k@n'vekSn L@% 3 +convector k@n'vekt@R K6% 3 +convectors k@n'vekt@z Kj% 3 +convene k@n'vin J2% 22A,6A +convened k@n'vind Jc%,Jd% 22A,6A +convener k@n'vin@R K6% 3 +conveners k@n'vin@z Kj% 3 +convenes k@n'vinz Ja% 22A,6A +convenience k@n'vinI@ns M6% 4 +conveniences k@n'vinI@nsIz Mj% 5 +convenient k@n'vinI@nt OA% 4 +conveniently k@n'vinI@ntlI Pu% 5 +convening k@n'vinIN Jb% 32A,6A +convent 'k0nv@nt K6% 2 +conventicle k@n'ventIkl K6$ 4 +conventicles k@n'ventIklz Kj$ 4 +convention k@n'venSn M6% 3 +conventional k@n'venS@nl OA% 4 +conventionalities k@n,venS@'n&lItIz Mj$ 6 +conventionality k@n,venS@'n&lItI M8$ 6 +conventionally k@n'venS@n@lI Pu% 5 +conventions k@n'venSnz Mj% 3 +convents 'k0nv@nts Kj% 2 +converge k@n'v3dZ I2% 22A,2C,3A +converged k@n'v3dZd Ic%,Id% 22A,2C,3A +convergence k@n'v3dZ@ns K6% 3 +convergences k@n'v3dZ@nsIz Kj$ 4 +convergent k@n'v3dZ@nt OA% 3 +converges k@n'v3dZIz Ia% 32A,2C,3A +converging k@n'v3dZIN Ib% 32A,2C,3A +conversant k@n'v3snt OA% 3 +conversation ,k0nv@'seISn M6% 4 +conversational ,k0nv@'seISn@l OA% 5 +conversationalist ,k0nv@'seISn@lIst K6% 6 +conversationalists ,k0nv@'seISn@lIsts Kj% 6 +conversationally ,k0nv@'seISn@lI Pu% 6 +conversations ,k0nv@'seISnz Mj% 4 +converse 'k0nv3s Mi%,OA% 2 +converse k@n'v3s I2% 22A,2C,3A +conversed k@n'v3st Ic%,Id% 22A,2C,3A +conversely k@n'v3slI Pu% 3 +converses k@n'v3sIz Ia% 32A,2C,3A +conversing k@n'v3sIN Ib% 32A,2C,3A +conversion k@n'v3Sn M6% 3 +conversions k@n'v3Snz Mj% 3 +convert 'k0nv3t K6% 2 +convert k@n'v3t H0% 26A,14 +converted k@n'v3tId Hc%,Hd%,OA% 36A,14 +converter k@n'v3t@R K6% 3 +converters k@n'v3t@z Kj% 3 +convertibility k@n,v3t@'bIlItI L@% 6 +convertible k@n'v3t@bl K6%,OA% 4 +convertibles k@n'v3t@blz Kj% 4 +converting k@n'v3tIN Hb% 36A,14 +converts 'k0nv3ts Kj% 2 +converts k@n'v3ts Ha% 26A,14 +convex 'k0nveks OA% 2 +convexity k@n'veksItI L@$ 4 +convexly 'k0nvekslI Pu$ 3 +convey k@n'veI H0% 26A,14 +conveyance k@n'veI@ns M6% 3 +conveyancer k@n'veI@ns@R K6% 4 +conveyancers k@n'veI@ns@z Kj% 4 +conveyances k@n'veI@nsIz Mj% 4 +conveyed k@n'veId Hc%,Hd% 26A,14 +conveyer k@n'veI@R K6% 3 +conveyer-belt k@n'veI@-belt K6% 4 +conveyer-belts k@n'veI@-belts Kj% 4 +conveyers k@n'veI@z Kj% 3 +conveying k@n'veIIN Hb% 36A,14 +conveyor k@n'veI@R K6% 3 +conveyors k@n'veI@z Kj% 3 +conveys k@n'veIz Ha% 26A,14 +convict 'k0nvIkt K6% 2 +convict k@n'vIkt H0% 26A,14 +convicted k@n'vIktId Hc%,Hd% 36A,14 +convicting k@n'vIktIN Hb% 36A,14 +conviction k@n'vIkSn M6% 3 +convictions k@n'vIkSnz Mj% 3 +convicts 'k0nvIkts Kj% 2 +convicts k@n'vIkts Ha% 26A,14 +convince k@n'vIns H2% 26A,11,14 +convinced k@n'vInst Hc%,Hd% 26A,11,14 +convinces k@n'vInsIz Ha% 36A,11,14 +convincible k@n'vIns@bl OA$ 4 +convincing k@n'vInsIN Hb%,OA% 36A,11,14 +convincingly k@n'vInsINlI Pu% 4 +convivial k@n'vIvI@l OA% 4 +convivialities k@n,vIvI'&lItIz Mj$ 6 +conviviality k@n,vIvI'&lItI M8% 6 +convivially k@n'vIvI@lI Pu% 5 +convocation ,k0nv@'keISn M6% 4 +convocations ,k0nv@'keISnz Mj$ 4 +convoke k@n'v@Uk H2$ 26A +convoked k@n'v@Ukt Hc$,Hd$ 26A +convokes k@n'v@Uks Ha$ 26A +convoking k@n'v@UkIN Hb$ 36A +convoluted ,k0nv@'lutId OA% 4 +convolution ,k0nv@'luSn K6% 4 +convolutions ,k0nv@'luSnz Kj% 4 +convolvulus k@n'v0lvjUl@s K7% 4 +convolvuluses k@n'v0lvjUl@sIz Kj$ 5 +convoy 'k0nvoI H0%,M6% 26A +convoyed 'k0nvoId Hc%,Hd% 26A +convoying 'k0nvoIIN Hb% 36A +convoys 'k0nvoIz Ha%,Mj% 26A +convulse k@n'vVls H2% 26A +convulsed k@n'vVlst Hc%,Hd% 26A +convulses k@n'vVlsIz Ha% 36A +convulsing k@n'vVlsIN Hb% 36A +convulsion k@n'vVlSn K6% 3 +convulsions k@n'vVlSnz Kj% 3 +convulsive k@n'vVlsIv OA% 3 +convulsively k@n'vVlsIvlI Pu% 4 +cony 'k@UnI K8$ 2 +coo ku J0%,K6% 1 +cooed kud Jc%,Jd% 1 +cooing 'kuIN Jb% 2 +cook kUk J0%,K6% 12A,6A,12B,13B,15B +cookbook 'kUkbUk K6% 2 +cookbooks 'kUkbUks Kj% 2 +cooked kUkt Jc%,Jd% 12A,6A,12B,13B,15B +cooker 'kUk@R K6% 2 +cookers 'kUk@z Kj% 2 +cookery 'kUk@rI L@% 3 +cookery-book 'kUk@rI-bUk K6% 4 +cookery-books 'kUk@rI-bUks Kj% 4 +cookhouse 'kUkhaUs K6% 2 +cookhouses 'kUkhaUzIz Kj% 3 +cookie 'kUkI K6% 2 +cookies 'kUkIz Kj% 2 +cooking 'kUkIN Jb%,L@% 22A,6A,12B,13B,15B +cooks kUks Ja%,Kj% 12A,6A,12B,13B,15B +cooky 'kUkI K8$ 2 +cool kul J0%,L@%,OC% 12A,2C,6A +cool-headed 'kul-hedId OA% 3 +coolant 'kul@nt M6% 2 +coolants 'kul@nts Mj% 2 +cooled kuld Jc%,Jd% 12A,2C,6A +cooler 'kul@R K6%,Or% 2 +coolers 'kul@z Kj% 2 +coolest 'kulIst Os% 2 +coolie 'kulI K6% 2 +coolies 'kulIz Kj% 2 +cooling 'kulIN Jb% 22A,2C,6A +cooling-tower 'kulIN-taU@R K6% 4 +cooling-towers 'kulIN-taU@z Kj% 4 +coolly 'kul+lI Pu% 2 +coolness 'kuln@s L@% 2 +cools kulz Ja% 12A,2C,6A +coon kun K6% 1 +coons kunz Kj% 1 +coop kup H0%,K6% 16A,15B +cooped kupt Hc%,Hd% 16A,15B +cooper 'kup@R K6$ 2 +cooperate k@U'0p@reIt I2% 42A,3A,4A +cooperated k@U'0p@reItId Ic%,Id% 52A,3A,4A +cooperates k@U'0p@reIts Ia% 42A,3A,4A +cooperating k@U'0p@reItIN Ib% 52A,3A,4A +cooperation k@U,0p@'reISn L@% 5 +cooperative k@U'0p@r@tIv K6%,OA% 4 +cooperatives k@U'0p@r@tIvz Kj% 4 +cooperator k@U'0p@reIt@R K6% 5 +cooperators k@U'0p@reIt@z Kj% 5 +coopers 'kup@z Kj$ 2 +cooping 'kupIN Hb$ 26A,15B +coops kups Ha$,Kj% 16A,15B +coordinate ,k@U'Od@n@t K6%,OA% 4 +coordinate ,k@U'OdIneIt H2% 46A +coordinated ,k@U'OdIneItId Hc%,Hd% 56A +coordinately ,k@U'OdIn@tlI Pu$ 5 +coordinates ,k@U'Od@n@ts Kj% 4 +coordinates ,k@U'OdIneIts Ha% 46A +coordinating ,k@U'OdIneItIN Hb% 56A +coordination ,k@U,OdIn'eISn M6% 5 +coordinations ,k@U,OdIn'eISnz Mj$ 5 +coordinator k@U'OdIneIt@R K6% 5 +coordinators k@U'OdIneIt@z Kj% 5 +coos kuz Ja%,Kj% 1 +coot kut K6% 1 +coots kuts Kj% 1 +cop k0p J4%,K6% 12C +cop-out 'k0p-aUt K6% 2 +cop-outs 'k0p-aUts Kj$ 2 +copartner ,k@U'pAtn@R K6% 3 +copartners ,k@U'pAtn@z Kj% 3 +copartnership k@U'pAtn@SIp K6% 4 +copartnerships k@U'pAtn@SIps Kj% 4 +cope k@Up I2%,K6% 12A,3A +copeck 'k@Upek K6$ 2 +copecks 'k@Upeks Kj$ 2 +coped k@Upt Ic%,Id% 12A,3A +copes k@Ups Ia%,Kj% 12A,3A +copied 'k0pId Jc%,Jd% 22A,6A,15A,15B +copies 'k0pIz Ja%,Mj% 22A,6A,15A,15B +coping 'k@UpIN Ib%,K6% 22A,3A +coping-stone 'k@UpIN-st@Un K6% 3 +coping-stones 'k@UpIN-st@Unz Kj% 3 +copings 'k@UpINz Kj$ 2 +copious 'k@UpI@s OA% 3 +copiously 'k@UpI@slI Pu% 4 +copped k0pt Jc%,Jd% 12C +copper 'k0p@R H0$,M6% 2 +copper-bottom ,k0p@-'b0t@m H0$ 4 +copper-bottomed 'k0p@-b0t@md OA% 4 +copper-bottomed ,k0p@-'b0t@md Hc$,Hd% 4 +copper-bottoming ,k0p@-'b0t@mIN Hb$ 5 +copper-bottoms ,k0p@-'b0t@mz Ha$ 4 +coppered 'k0p@d Hc$,Hd$ 2 +copperhead 'k0p@hed K6$ 3 +copperheads 'k0p@hedz Kj$ 3 +coppering 'k0p@rIN Hb$ 3 +copperplate 'k0p@pleIt L@% 3 +coppers 'k0p@z Ha$,Mj% 2 +coppersmith 'k0p@smIT K6% 3 +coppersmiths 'k0p@smITs Kj% 3 +coppice 'k0pIs K6% 2 +coppices 'k0pIsIz Kj% 3 +copping 'k0pIN Jb% 22C +copra 'k0pr@ L@$ 2 +cops k0ps Ja%,Kj% 12C +copse k0ps K6% 1 +copses 'k0psIz Kj% 2 +copula 'k0pjUl@ K6$ 3 +copulas 'k0pjUl@z Kj$ 3 +copulate 'k0pjUleIt I2% 32A,3A +copulated 'k0pjUleItId Ic%,Id% 42A,3A +copulates 'k0pjUleIts Ia% 32A,3A +copulating 'k0pjUleItIN Ib% 42A,3A +copulation ,k0pjU'leISn K6% 4 +copulations ,k0pjU'leISnz Kj% 4 +copulative 'k0pjUl@tIv K6$,OA$ 4 +copulatives 'k0pjUl@tIvz Kj$ 4 +copy 'k0pI J3%,M8% 22A,6A,15A,15B +copybook 'k0pIbUk K6% 3 +copybooks 'k0pIbUks Kj% 3 +copycat 'k0pIk&t K6% 3 +copycats 'k0pIk&ts Kj% 3 +copyhold 'k0pIh@Uld L@$ 3 +copyholder 'k0pIh@Uld@R K6$ 4 +copyholders 'k0pIh@Uld@z Kj$ 4 +copying 'k0pIIN Jb% 32A,6A,15A,15B +copyist 'k0pIIst K6$ 3 +copyists 'k0pIIsts Kj$ 3 +copyright 'k0pIraIt H0%,M6% 3 +copyrighted 'k0pIraItId Hc$,Hd% 4 +copyrighting 'k0pIraItIN Hb$ 4 +copyrights 'k0pIraIts Ha$,Mj$ 3 +copywriter 'k0pIraIt@R K6% 4 +copywriters 'k0pIraIt@z Kj% 4 +coquetries 'k0kItrIz Mj$ 3 +coquetry 'k0kItrI M8% 3 +coquette k0'ket K6% 2 +coquettes k0'kets Kj% 2 +coquettish k@U'ketIS OA% 3 +coquettishly k@U'ketISlI Pu% 4 +cor anglais ,kOr '0NgleI Ki% 3 +coracle 'k0r@kl K6% 3 +coracles 'k0r@klz Kj% 3 +coral 'k0r@l M6%,OA% 2 +coral-reef 'k0r@l-rif K6% 3 +coral-reefs 'k0r@l-rifs Kj% 3 +corals 'k0r@lz Mj% 2 +corbel 'kObl K6$ 2 +corbels 'kOblz Kj$ 2 +cord kOd H0%,M6% 1 +cordage 'kOdIdZ L@$ 2 +corded 'kOdId Hc$,Hd$ 2 +cordial 'kOdI@l M6%,OA% 3 +cordialities ,kOdI'&lItIz Mj$ 5 +cordiality ,kOdI'&lItI M8% 5 +cordially 'kOdI@lI Pu% 4 +cordials 'kOdI@lz Mj% 3 +cording 'kOdIN Hb$ 2 +cordite 'kOdaIt L@% 2 +cordon 'kOdn H0%,K6% 215B +cordon bleu ,kOd0n 'bl3 OA% 3 +cordoned 'kOdnd Hc%,Hd% 215B +cordoning 'kOdnIN Hb% 315B +cordons 'kOdnz Ha%,Kj% 215B +cords kOdz Ha%,Mj% 1 +corduroy 'kOd@roI L@% 3 +core kOR H2$,K6% 16A +cored kOd Hc$,Hd$ 16A +coreligionist ,k@UrI'lIdZ@nIst K6% 5 +coreligionists ,k@UrI'lIdZ@nIsts Kj% 5 +cores kOz Ha$,Kj% 16A +corgi 'kOgI K6% 2 +corgis 'kOgIz Kj% 2 +coring 'kOrIN Hb$ 26A +cork kOk H0%,M6% 16A,15A +corkage 'kOkIdZ L@% 2 +corked kOkt Hc%,Hd%,OA% 16A,15A +corker 'kOk@R K6% 2 +corkers 'kOk@z Kj% 2 +corking 'kOkIN Hb% 26A,15A +corks kOks Ha%,Mj% 16A,15A +corkscrew 'kOkskru K6% 2 +corkscrews 'kOkskruz Kj% 2 +corm kOm K6% 1 +cormorant 'kOm@r@nt K6% 3 +cormorants 'kOm@r@nts Kj% 3 +corms kOmz Kj% 1 +corn kOn H0$,M6% 1 +corn-exchange 'kOn-IkstSeIndZ K6% 3 +corn-exchanges 'kOn-IkstSeIndZIz Kj% 4 +corncob 'kOnk0b K6% 2 +corncobs 'kOnk0bz Kj% 2 +corncrake 'kOnkreIk K6% 2 +corncrakes 'kOnkreIks Kj% 2 +cornea 'kOnI@ K6% 3 +corneas 'kOnI@z Kj% 3 +corned kOnd Hc$,Hd$ 1 +cornelian kO'nilI@n K6$ 4 +cornelians kO'nilI@nz Kj$ 4 +corner 'kOn@R J0%,K6% 22A,6A +corner-kick 'kOn@-kIk K6% 3 +corner-kicks 'kOn@-kIks Kj% 3 +cornered 'kOn@d Jc%,Jd%,OA% 22A,6A +cornering 'kOn@rIN Jb% 32A,6A +corners 'kOn@z Ja%,Kj% 22A,6A +cornerstone 'kOn@st@Un K6% 3 +cornerstones 'kOn@st@Unz Kj% 3 +cornet 'kOnIt K6% 2 +cornets 'kOnIts Kj% 2 +cornflake 'kOnfleIk K6% 2 +cornflakes 'kOnfleIks Kj% 2 +cornflour 'kOnflaU@R L@% 3 +cornflower 'kOnflaU@R K6% 3 +cornflowers 'kOnflaU@z Kj% 3 +cornice 'kOnIs K6% 2 +cornices 'kOnIsIz Kj% 3 +cornier 'kOnI@R Or% 3 +corniest 'kOnIIst Os% 3 +corning 'kOnIN Hb$ 2 +cornpone 'kOnp@Un L@$ 2 +corns kOnz Ha$,Mj% 1 +cornstarch 'kOnstAtS L@% 2 +cornucopia ,kOnjU'k@UpI@ K6% 5 +cornucopias ,kOnjU'k@UpI@z Kj$ 5 +corny 'kOnI OD% 2 +corolla k@'r0l@ K6$ 3 +corollaries k@'r0l@rIz Kj% 4 +corollary k@'r0l@rI K8% 4 +corollas k@'r0l@z Kj$ 3 +corona k@'r@Un@ K6% 3 +coronaries 'k0r@nrIz Kj% 3 +coronary 'k0r@nrI K8%,OA% 3 +coronas k@'r@Un@z Kj$ 3 +coronation ,k0r@'neISn K6% 4 +coronations ,k0r@'neISnz Kj% 4 +coroner 'k0r@n@R K6% 3 +coroners 'k0r@n@z Kj% 3 +coronet 'k0r@net K6% 3 +coronets 'k0r@nets Kj% 3 +corpora 'kOp@r@ Kj$ 3 +corporal 'kOp@r@l K6%,OA% 3 +corporals 'kOp@r@lz Kj% 3 +corporate 'kOp@r@t OA% 3 +corporation ,kOp@'reISn K6% 4 +corporations ,kOp@'reISnz Kj% 4 +corporeal kO'pOrI@l OA% 4 +corps kOR Ki$ 1 +corps kOz Kj$ 1 +corps de ballet ,kO d@ 'b&leI Ki% 4 +corps de ballets ,kO d@ 'b&leI Kj$ 4 +corpse kOps K6% 1 +corpses 'kOpsIz Kj% 2 +corpulence 'kOpjUl@ns L@% 3 +corpulent 'kOpjUl@nt OA% 3 +corpus 'kOp@s Ki% 2 +corpuscle 'kOpVsl K6% 3 +corpuscles 'kOpVslz Kj% 3 +corral k@'rAl H4$,K6% 26A +corralled k@'rAld Hc$,Hd$ 26A +corralling k@'rAlIN Hb$ 36A +corrals k@'rAlz Ha$,Kj% 26A +correct k@'rekt H0%,OA% 26A,14 +corrected k@'rektId Hc%,Hd% 36A,14 +correcting k@'rektIN Hb% 36A,14 +correction k@'rekSn M6% 3 +corrections k@'rekSnz Mj% 3 +correctitude k@'rektItjud L@$ 4 +corrective k@'rektIv K6%,OA% 3 +correctives k@'rektIvz Kj% 3 +correctly k@'rektlI Pu% 3 +correctness k@'rektn@s L@% 3 +corrects k@'rekts Ha% 26A,14 +correlate 'k0r@leIt J2% 32A,3A,6A,14 +correlated 'k0r@leItId Jc%,Jd% 42A,3A,6A,14 +correlates 'k0r@leIts Ja% 32A,3A,6A,14 +correlating 'k0r@leItIN Jb% 42A,3A,6A,14 +correlation ,k0r@'leISn K6% 4 +correlations ,k0r@'leISnz Kj% 4 +correlative k0'rel@tIv K6$,OA$ 4 +correlatives k0'rel@tIvz Kj$ 4 +correspond ,k0rI'sp0nd I0% 32A,3A +corresponded ,k0rI'sp0ndId Ic%,Id% 42A,3A +correspondence ,k0rI'sp0nd@ns M6% 4 +correspondences ,k0rI'sp0nd@nsIz Mj% 5 +correspondent ,k0rI'sp0nd@nt K6% 4 +correspondents ,k0rI'sp0nd@nts Kj% 4 +corresponding ,k0rI'sp0ndIN Ib%,OA% 42A,3A +correspondingly ,k0rI'sp0ndINlI Pu% 5 +corresponds ,k0rI'sp0ndz Ia% 32A,3A +corridor 'k0rIdOR K6% 3 +corridors 'k0rIdOz Kj% 3 +corrie 'k0rI K6$ 2 +corries 'k0rIz Kj$ 2 +corrigenda ,k0rI'dZend@ Kj$ 4 +corrigendum ,k0rI'dZend@m Ki$ 4 +corrigible 'k0rIdZ@bl OA$ 4 +corroborate k@'r0b@reIt H2% 46A +corroborated k@'r0b@reItId Hc%,Hd% 56A +corroborates k@'r0b@reIts Ha% 46A +corroborating k@'r0b@reItIN Hb% 56A +corroboration k@,r0b@'reISn L@% 5 +corroborative k@'r0b@r@tIv OA% 5 +corrode k@'r@Ud J2% 22A,6A +corroded k@'r@UdId Jc%,Jd% 32A,6A +corrodes k@'r@Udz Ja% 22A,6A +corroding k@'r@UdIN Jb% 32A,6A +corrosion k@'r@UZn L@% 3 +corrosive k@'r@UsIv K6%,OA% 3 +corrosives k@'r@UsIvz Kj% 3 +corrugate 'k0r@geIt J2$ 32A,6A +corrugated 'k0r@geItId Jc$,Jd% 42A,6A +corrugates 'k0r@geIts Ja% 32A,6A +corrugating 'k0r@geItIN Jb$ 42A,6A +corrugation ,k0r@'geISn M6$ 4 +corrugations ,k0r@'geISnz Mj$ 4 +corrupt k@'rVpt J0%,OA% 22A,6A +corrupted k@'rVptId Jc%,Jd% 32A,6A +corruptibility k@,rVpt@'bIlItI L@$ 6 +corruptible k@'rVpt@bl OA% 4 +corrupting k@'rVptIN Jb% 32A,6A +corruption k@'rVpSn L@% 3 +corruptly k@'rVptlI Pu% 3 +corruptness k@'rVptn@s L@% 3 +corrupts k@'rVpts Ja% 22A,6A +cors anglais ,kOr '0NgleI Kj$ 3 +corsage kO'sAZ K6$ 2 +corsages kO'sAZIz Kj$ 3 +corsair 'kOse@R K6$ 2 +corsairs 'kOse@z Kj$ 2 +corse kOs K6$ 1 +corselet 'kOslIt K6$ 2 +corselets 'kOslIts Kj$ 2 +corses 'kOsIz Kj$ 2 +corset 'kOsIt K6% 2 +corsets 'kOsIts Kj% 2 +corslet 'kOslIt K6$ 2 +corslets 'kOslIts Kj$ 2 +cort`ege kO'teIZ K6$ 2 +cort`eges kO'teIZIz Kj$ 3 +cortege kO'teIZ K6$ 2 +corteges kO'teIZIz Kj$ 3 +cortex 'kOteks Ki% 2 +cortical 'kOtIkl OA% 3 +cortices 'kOtIsiz Kj$ 3 +cortisone 'kOtIz@Un L@% 3 +corundum k@'rVnd@m L@$ 3 +coruscate 'k0r@skeIt I2$ 32A +coruscated 'k0r@skeItId Ic$,Id$ 42A +coruscates 'k0r@skeIts Ia$ 32A +coruscating 'k0r@skeItIN Ib$ 42A +coruscation ,k0r@'skeISn K6$ 4 +coruscations ,k0r@'skeISnz Kj$ 4 +corv_ee 'kOveI K6$ 2 +corv_ees 'kOveIz Kj$ 2 +corvette kO'vet K6$ 2 +corvettes kO'vets Kj$ 2 +cos k0s K9$ 1 +cos k@z V-$ 1 +cosh k0S H1%,K7% 1 +coshed k0St Hc%,Hd% 1 +cosher 'k@US@R OA% 2 +coshes 'k0SIz Ha%,Kj% 2 +coshing 'k0SIN Hb% 2 +cosier 'k@UzI@R Or% 3 +cosies 'k@UzIz Kj% 2 +cosiest 'k@UzIIst Os% 3 +cosignatories ,k@U'sIgn@t@rIz Kj% 5 +cosignatory ,k@U'sIgn@t@rI K8%,OA% 5 +cosily 'k@UzIlI Pu% 3 +cosine 'k@UsaIn K6% 2 +cosines 'k@UsaInz Kj% 2 +cosiness 'k@UzIn@s L@% 3 +cosmetic k0z'metIk K6%,OA% 3 +cosmetician ,k0zm@'tISn K6% 4 +cosmeticians ,k0zm@'tISnz Kj% 4 +cosmetics k0z'metIks Kj% 3 +cosmic 'k0zmIk OA% 2 +cosmogonies k0z'm0g@nIz Kj$ 4 +cosmogony k0z'm0g@nI K8$ 4 +cosmonaut 'k0zm@nOt K6% 3 +cosmonauts 'k0zm@nOts Kj% 3 +cosmopolitan ,k0zm@'p0lIt@n K6$,OA% 5 +cosmopolitans ,k0zm@'p0lIt@nz Kj$ 5 +cosmos 'k0zm0s Ki% 2 +cosset 'k0sIt H0% 2 +cosseted 'k0sItId Hc%,Hd% 3 +cosseting 'k0sItIN Hb% 3 +cossets 'k0sIts Ha% 2 +cost k0st Ic%,Id%,J0%,M6% 12B,6A +costed 'k0stId Jc%,Jd% 22B,6A +costermonger 'k0st@mVNg@R K6% 4 +costermongers 'k0st@mVNg@z Kj% 4 +costing 'k0stIN Jb%,M6% 22B,6A +costings 'k0stINz Mj% 2 +costive 'k0stIv OA$ 2 +costlier 'k0stlI@R Or% 3 +costliest 'k0stlIIst Os% 3 +costliness 'k0stlIn@s L@% 3 +costly 'k0stlI OD% 2 +costs k0sts Ja%,Mj% 12B,6A +costume 'k0stjum M6% 2 +costumes 'k0stjumz Mj% 2 +costumier k0'stjumI@R K6% 4 +costumiers k0'stjumI@z Kj% 4 +cosy 'k@UzI K8%,OD% 2 +cot k0t K6% 1 +cote k@Ut K6$ 1 +cotenant ,k@U'ten@nt K6% 3 +cotenants ,k@U'ten@nts Kj% 3 +coterie 'k@Ut@rI K6% 3 +coteries 'k@Ut@rIz Kj% 3 +coterminous ,k@U't3mIn@s OA$ 4 +cotes k@Uts Kj$ 1 +cotilion k@'tIlI@n K6$ 4 +cotilions k@'tIlI@nz Kj$ 4 +cotillion k@'tIlI@n K6$ 4 +cotillions k@'tIlI@nz Kj$ 4 +cots k0ts Kj% 1 +cottage 'k0tIdZ K6% 2 +cottages 'k0tIdZIz Kj% 3 +cottar 'k0t@R K6$ 2 +cottars 'k0t@z Kj$ 2 +cotter 'k0t@R K6$ 2 +cotters 'k0t@z Kj$ 2 +cotton 'k0tn I0%,L@% 2 +cotton-cake 'k0tn-keIk L@$ 3 +cotton-plant 'k0tn-plAnt K6% 3 +cotton-plants 'k0tn-plAnts Kj% 3 +cotton-wool ,k0tn-'wUl L@% 3 +cottoned 'k0tnd Ic%,Id% 2 +cottoning 'k0tnIN Ib% 3 +cottons 'k0tnz Ia% 2 +cottontail 'k0tnteIl K6$ 3 +cottontails 'k0tnteIlz Kj$ 3 +cotyledon ,k0tI'lidn K6$ 4 +cotyledons ,k0tI'lidnz Kj$ 4 +couch kaUtS J1%,M7% 12A,6A,14 +couch-grass 'kaUtS-grAs L@% 2 +couchant 'kaUtS@nt OA$ 2 +couched kaUtSt Jc%,Jd% 12A,6A,14 +couches 'kaUtSIz Ja%,Mj% 22A,6A,14 +couchette ku'Set K6% 2 +couchettes ku'Sets Kj% 2 +couching 'kaUtSIN Jb% 22A,6A,14 +cougar 'kug@R K6% 2 +cougars 'kug@z Kj% 2 +cough k0f J0%,K6% 12A,15B +coughed k0ft Jc%,Jd% 12A,15B +coughing 'k0fIN Jb% 22A,15B +coughs k0fs Ja%,Kj% 12A,15B +could kUd Gc* 15 +couldn't 'kUdnt Gg% 2 +couldst kUdst Gc$ 1 +coulter 'k@Ult@R K6$ 2 +coulters 'k@Ult@z Kj$ 2 +council 'kaUnsl K6% 2 +council-board 'kaUnsl-bOd K6$ 3 +council-boards 'kaUnsl-bOdz Kj$ 3 +council-chamber 'kaUnsl-tSeImb@R K6% 4 +council-chambers 'kaUnsl-tSeImb@z Kj% 4 +councillor 'kaUns@l@R K6% 3 +councillors 'kaUns@l@z Kj% 3 +councils 'kaUnslz Kj% 2 +counsel 'kaUnsl H4%,L@% 26A,6B,17 +counselled 'kaUnsld Hc%,Hd% 26A,6B,17 +counselling 'kaUns@lIN Hb% 36A,6B,17 +counsellor 'kaUns@l@R K6% 3 +counsellors 'kaUns@l@z Kj% 3 +counsels 'kaUnslz Ha% 26A,6B,17 +count kaUnt J0%,M6% 12A,2C,3A,6A,14,16B,25 +countable 'kaUnt@bl OA% 3 +countdown 'kaUntdaUn K6% 2 +countdowns 'kaUntdaUnz Kj$ 2 +counted 'kaUntId Jc%,Jd% 22A,2C,3A,6A,14,16B,25 +countenance 'kaUntIn@ns H2%,M6% 36A +countenanced 'kaUntIn@nst Hc%,Hd% 36A +countenances 'kaUntIn@nsIz Ha%,Mj% 46A +countenancing 'kaUntIn@nsIN Hb% 46A +counter 'kaUnt@R J0%,K6%,Pu% 22A,3A,6A,14 +counter- ,kaUnt@R- U-% 2 +counter-example 'kaUnt@r-Ig,zAmpl K6% 5 +counter-examples 'kaUnt@r-Ig,zAmplz Kj% 5 +counter-revolution ,kaUnt@-,rev@'luSn M6% 6 +counter-revolutionaries,kaUnt@-,rev@'luSn@riz Kj% 7 +counter-revolutionary ,kaUnt@-,rev@'luSn@ri K8%,OA% 7 +counter-revolutions ,kaUnt@-,rev@'luSnz Mj% 6 +counteract ,kaUnt@'r&kt H0% 36A +counteracted ,kaUnt@'r&ktId Hc%,Hd% 46A +counteracting ,kaUnt@'r&ktIN Hb% 46A +counteraction ,kaUnt@'r&kSn K6% 4 +counteractions ,kaUnt@'r&kSnz Kj$ 4 +counteracts ,kaUnt@'r&kts Ha% 36A +counterattack 'kaUnt@r@t&k J0%,K6% 4 +counterattacked 'kaUnt@r@t&kt Jc%,Jd% 4 +counterattacking 'kaUnt@r@t&kIN Jb% 5 +counterattacks 'kaUnt@r@t&ks Ja%,Kj% 4 +counterattraction ,kaUnt@r@'tr&kSn K6% 5 +counterattractions ,kaUnt@r@'tr&kSnz Kj% 5 +counterbalance 'kaUnt@b&l@ns K6$ 4 +counterbalance ,kaUnt@'b&l@ns H2% 46A +counterbalanced ,kaUnt@'b&l@nst Hc%,Hd% 46A +counterbalances 'kaUnt@b&l@nsIz Kj$ 5 +counterbalances ,kaUnt@'b&l@nsIz Ha% 56A +counterbalancing ,kaUnt@'b&l@nsIN Hb% 56A +counterblast 'kaUnt@blAst K6% 3 +counterblasts 'kaUnt@blAsts Kj$ 3 +counterclaim 'kaUnt@kleIm K6% 3 +counterclaims 'kaUnt@kleImz Kj% 3 +counterclockwise ,kaUnt@'kl0kwaIz Pu$ 4 +countered 'kaUnt@d Jc%,Jd% 22A,3A,6A,14 +counterespionage ,kaUnt@'respI@nAZ L@% 5 +counterfeit 'kaUnt@fIt H0%,K6%,OA% 36A +counterfeited 'kaUnt@fItId Hc%,Hd% 46A +counterfeiter 'kaUnt@fIt@R K6% 4 +counterfeiters 'kaUnt@fIt@z Kj% 4 +counterfeiting 'kaUnt@fItIN Hb% 46A +counterfeits 'kaUnt@fIts Ha%,Kj% 36A +counterfoil 'kaUnt@foIl K6% 3 +counterfoils 'kaUnt@foIlz Kj% 3 +countering 'kaUnt@rIN Jb% 32A,3A,6A,14 +counterintelligence ,kaUnt@rIn'telIdZ@ns L@% 6 +counterirritant ,kaUnt@'rIrIt@nt K6$ 5 +counterirritants ,kaUnt@'rIrIt@nts Kj$ 5 +countermand ,kaUnt@'mAnd H0% 36A +countermanded ,kaUnt@'mAndId Hc%,Hd% 46A +countermanding ,kaUnt@'mAndIN Hb% 46A +countermands ,kaUnt@'mAndz Ha% 36A +countermine 'kaUnt@maIn J2$,K6$ 3 +countermined 'kaUnt@maInd Jc$,Jd$ 3 +countermines 'kaUnt@maInz Ja$,Kj$ 3 +countermining 'kaUnt@maInIN Jb$ 4 +counteroffer 'kaUnt@r0f@R K6% 4 +counteroffers 'kaUnt@r0f@z Kj% 4 +counterpane 'kaUnt@peIn K6% 3 +counterpanes 'kaUnt@peInz Kj% 3 +counterpart 'kaUnt@pAt K6% 3 +counterparts 'kaUnt@pAts Kj% 3 +counterplot 'kaUnt@pl0t J4$,K6$ 3 +counterplots 'kaUnt@pl0ts Ja$,Kj$ 3 +counterplotted 'kaUnt@pl0tId Jc$,Jd$ 4 +counterplotting 'kaUnt@pl0tIN Jb$ 4 +counterpoint 'kaUnt@poInt M6% 3 +counterpoints 'kaUnt@poInts Mj$ 3 +counterpoise 'kaUnt@poIz H2$,M6$ 3 +counterpoised 'kaUnt@poIzd Hc$,Hd$ 3 +counterpoises 'kaUnt@poIzIz Ha$,Mj$ 4 +counterpoising 'kaUnt@poIzIN Hb$ 4 +counters 'kaUnt@z Ja%,Kj% 22A,3A,6A,14 +countersank 'kaUnt@s&Nk Hc$ 3 +countersign 'kaUnt@saIn H0%,K6% 36A +countersigned 'kaUnt@saInd Hc%,Hd% 36A +countersigning 'kaUnt@saInIN Hb% 46A +countersigns 'kaUnt@saInz Ha%,Kj% 36A +countersink 'kaUnt@sINk H5% 3 +countersinking 'kaUnt@sINkIN Hb$ 4 +countersinks 'kaUnt@sINks Ha$ 3 +countersunk 'kaUnt@sVNk Hd% 3 +countertenor 'kaUnt@ten@R K6% 4 +countertenors 'kaUnt@ten@z Kj% 4 +countervail 'kaUnt@veIl J0$ 32A,6A +countervailed 'kaUnt@veIld Jc$,Jd$ 32A,6A +countervailing 'kaUnt@veIlIN Jb$ 42A,6A +countervails 'kaUnt@veIlz Ja$ 32A,6A +countess 'kaUntIs K7% 2 +countesses 'kaUntIsIz Kj% 3 +counties 'kaUntIz Kj% 2 +counting 'kaUntIN Jb% 22A,2C,3A,6A,14,16B,25 +counting-house 'kaUntIN-haUs K6% 3 +counting-houses 'kaUntIN-haUzIz Kj% 4 +countless 'kaUntl@s OA% 2 +countries 'kVntrIz Mj% 2 +countrified 'kVntrIfaId OA% 3 +country 'kVntrI M8* 2 +country-house ,kVntrI-'haUs K6% 3 +country-houses ,kVntrI-'haUzIz Kj% 4 +country-seat ,kVntrI-'sit K6% 3 +country-seats ,kVntrI-'sits Kj% 3 +countryman 'kVntrIm@n Ki% 3 +countrymen 'kVntrIm@n Kj% 3 +countryside 'kVntrIsaId L@% 3 +countrywoman 'kVntrIwUm@n Ki% 4 +countrywomen 'kVntrIwImIn Kj% 4 +counts kaUnts Ja%,Mj% 12A,2C,3A,6A,14,16B,25 +county 'kaUntI K8% 2 +coup ku K6% 1 +coup d'etat ,ku deI'tA Ki% 3 +coup de grace ,ku d@ 'grAs Ki% 3 +coup_e 'kupeI K6% 2 +coup_es 'kupeIz Kj% 2 +couple 'kVpl J2%,K6% 22A,6A,14 +coupled 'kVpld Jc%,Jd% 22A,6A,14 +couples 'kVplz Ja$,Kj% 22A,6A,14 +couplet 'kVplIt K6% 2 +couplets 'kVplIts Kj% 2 +coupling 'kVplIN Jb$,M6% 22A,6A,14 +couplings 'kVplINz Mj% 2 +coupon 'kup0n K6% 2 +coupons 'kup0nz Kj% 2 +coups kuz Kj% 1 +coups d'etat ,ku deI'tA Kj$ 3 +coups de grace ,ku d@ 'grAs Kj$ 3 +courage 'kVrIdZ L@% 2 +courageous k@'reIdZ@s OA% 3 +courageously k@'reIdZ@slI Pu% 4 +courgette kU@'Zet K6% 2 +courgettes kU@'Zets Kj% 2 +courier 'kUrI@R K6% 3 +couriers 'kUrI@z Kj% 3 +course kOs J2$,M6* 12A,2C,6A +coursed kOst Jc$,Jd$ 12A,2C,6A +courser 'kOs@R K6$ 2 +coursers 'kOs@z Kj$ 2 +courses 'kOsIz Ja$,Mj% 22A,2C,6A +coursing 'kOsIN Jb$,K6$ 22A,2C,6A +coursings 'kOsINz Kj$ 2 +court kOt J0%,M6% 12A,6A +court-card 'kOt-kAd K6% 2 +court-cards 'kOt-kAdz Kj% 2 +court-martial ,kOt-'mASl H0%,Ki% 36A +court-martialed ,kOt-'mASld Hc%,Hd% 36A +court-martialing ,kOt-'mAS@lIN Hb$ 46A +court-martials ,kOt-'mASlz Ha$ 36A +courted 'kOtId Jc%,Jd% 22A,6A +courteous 'k3tI@s OA% 2 +courteously 'k3tI@slI Pu% 3 +courtesan ,kOtI'z&n K6% 3 +courtesans ,kOtI'z&nz Kj% 3 +courtesies 'k3t@sIz Mj% 3 +courtesy 'k3t@sI M8% 3 +courtier 'kOtI@R K6% 3 +courtiers 'kOtI@z Kj% 3 +courting 'kOtIN Jb% 22A,6A +courtlier 'kOtlI@R Or$ 3 +courtliest 'kOtlIIst Os$ 3 +courtliness 'kOtlIn@s L@% 3 +courtly 'kOtlI OD% 2 +courtroom 'kOtrum K6% 2 +courtrooms 'kOtrumz Kj% 2 +courts kOts Ja%,Mj% 12A,6A +courts-martial ,kOts-'mASl Kj$ 3 +courtship 'kOt+SIp M6% 2 +courtships 'kOt+SIps Mj% 2 +courtyard 'kOtjAd K6% 2 +courtyards 'kOtjAdz Kj% 2 +cousin 'kVzn K6% 2 +cousinly 'kVznlI OA$ 3 +cousins 'kVznz Kj% 2 +cove k@Uv K6% 1 +coven 'kVvn K6% 2 +covenant 'kVv@n@nt J0%,K6% 33A,6A,7A,9,14 +covenanted 'kVv@n@ntId Jc%,Jd% 43A,6A,7A,9,14 +covenanting 'kVv@n@ntIN Jb% 43A,6A,7A,9,14 +covenants 'kVv@n@nts Ja%,Kj% 33A,6A,7A,9,14 +covens 'kVvnz Kj% 2 +cover 'kVv@R H0%,M6% 26A,15A,15B +cover-up 'kVv@r-Vp K6% 3 +cover-ups 'kVv@r-Vps Kj% 3 +coverage 'kVv@rIdZ L@% 3 +covered 'kVv@d Hc%,Hd% 26A,15A,15B +covering 'kVv@rIN Hb%,K6%,OA% 36A,15A,15B +coverings 'kVv@rINz Kj% 3 +coverlet 'kVv@lIt K6% 3 +coverlets 'kVv@lIts Kj% 3 +covers 'kVv@z Ha%,Mj% 26A,15A,15B +covert 'kVv@t K6%,OA% 2 +covertly 'kVv@tlI Pu% 3 +coverts 'kVv@ts Kj% 2 +coves k@Uvz Kj% 1 +covet 'kVvIt H0% 26A +coveted 'kVvItId Hc%,Hd% 36A +coveting 'kVvItIN Hb% 36A +covetous 'kVvIt@s OA% 3 +covetously 'kVvIt@slI Pu% 4 +covetousness 'kVvIt@sn@s L@% 4 +covets 'kVvIts Ha% 26A +covey 'kVvI K6% 2 +coveys 'kVvIz Kj% 2 +cow kaU H0%,K6% 16A +coward 'kaU@d K6% 2 +cowardice 'kaU@dIs L@% 3 +cowardly 'kaU@dlI OA% 3 +cowards 'kaU@dz Kj% 2 +cowbell 'kaUbel K6% 2 +cowbells 'kaUbelz Kj% 2 +cowboy 'kaUboI K6% 2 +cowboys 'kaUboIz Kj% 2 +cowcatcher 'kaUk&tS@R K6$ 3 +cowcatchers 'kaUk&tS@z Kj$ 3 +cowed kaUd Hc%,Hd% 16A +cower 'kaU@R I0% 22A,2C +cowered 'kaU@d Ic%,Id% 22A,2C +cowering 'kaU@rIN Ib% 32A,2C +cowers 'kaU@z Ia% 22A,2C +cowhand 'kaUh&nd K6% 2 +cowhands 'kaUh&ndz Kj% 2 +cowherd 'kaUh3d K6% 2 +cowherds 'kaUh3dz Kj% 2 +cowhide 'kaUhaId M6% 2 +cowhides 'kaUhaIdz Kj$ 2 +cowhouse 'kaUhaUs K6$ 2 +cowhouses 'kaUhaUzIz Kj$ 3 +cowing 'kaUIN Hb% 26A +cowl kaUl K6% 1 +cowling 'kaUlIN K6% 2 +cowlings 'kaUlINz Kj$ 2 +cowls kaUlz Kj% 1 +cowman 'kaUm&n Ki% 2 +cowmen 'kaUmen Kj% 2 +cowpox 'kaUp0ks K7% 2 +cowpoxes 'kaUp0ksIz Kj% 3 +cowrie 'kaUrI K6% 2 +cowries 'kaUrIz Kj% 2 +cows kaUz Ha%,Kj% 16A +cowshed 'kaUSed K6% 2 +cowsheds 'kaUSedz Kj% 2 +cowskin 'kaUskIn K6$ 2 +cowskins 'kaUskInz Kj$ 2 +cowslip 'kaUslIp K6% 2 +cowslips 'kaUslIps Kj% 2 +cox k0ks J1%,K7% 12A,6A +coxcomb 'k0ksk@Um K6% 2 +coxcombs 'k0ksk@Umz Kj% 2 +coxed k0kst Jc%,Jd% 12A,6A +coxes 'k0ksIz Ja%,Kj% 22A,6A +coxing 'k0ksIN Jb% 22A,6A +coxswain 'k0ksn K6$ 2 +coxswains 'k0ksnz Kj$ 2 +coy koI OC% 1 +coyer 'koI@R Or% 2 +coyest 'koIIst Os% 2 +coyly 'koIlI Pu% 2 +coyness 'koIn@s L@% 2 +coyote koI'@Ut K6% 2 +coyotes koI'@Uts Kj% 2 +coypu 'koIpu K6% 2 +coypus 'koIpuz Kj% 2 +cozen 'kVzn H0$ 26A,14 +cozened 'kVznd Hc$,Hd$ 26A,14 +cozening 'kVznIN Hb$ 36A,14 +cozens 'kVznz Ha$ 26A,14 +cozier 'k@UzI@R Or% 3 +coziest 'k@UzIIst Os% 3 +cozy 'k@UzI OD% 2 +cp ,si'pi Y~$ 2 +cr^epe kreIp L@% 1 +cr`eche kreIS K6% 1 +cr`eches 'kreISIz Kj% 2 +cr`eme de menthe ,krem d@ 'm0nT L@% 3 +crab kr&b J4%,M6% 1 +crab-apple 'kr&b-&pl K6% 3 +crab-apples 'kr&b-&plz Kj% 3 +crabbed 'kr&bId OA$ 2 +crabbed kr&bd Jc$,Jd$ 1 +crabbing 'kr&bIN Jb% 2 +crabs kr&bz Ja$,Mj% 1 +crack kr&k J0%,K6% 12A,2C,6A,14 +crack-down 'kr&k-daUn K6% 2 +crack-downs 'kr&k-daUnz Kj% 2 +crack-up 'kr&k-Vp K6% 2 +crack-ups 'kr&k-Vps Kj% 2 +cracked kr&kt Jc%,Jd% 12A,2C,6A,14 +cracker 'kr&k@R K6% 2 +crackers 'kr&k@z Kj%,Op% 2 +cracking 'kr&kIN Jb% 22A,2C,6A,14 +crackle 'kr&kl I2%,L@% 22A,2C +crackle-china 'kr&kl-tSaIn@ L@$ 4 +crackled 'kr&kld Ic%,Id% 22A,2C +crackles 'kr&klz Ia% 22A,2C +crackleware 'kr&klwe@R L@$ 3 +crackling 'kr&klIN Ib%,L@% 22A,2C +crackpot 'kr&kp0t K6% 2 +crackpots 'kr&kp0ts Kj% 2 +cracks kr&ks Ja%,Kj% 12A,2C,6A,14 +cracksman 'kr&ksm@n Ki% 2 +cracksmen 'kr&ksm@n Kj% 2 +cradle 'kreIdl H2%,K6% 26A,14 +cradled 'kreIdld Hc%,Hd% 26A,14 +cradles 'kreIdlz Ha%,Kj% 26A,14 +cradling 'kreIdlIN Hb% 26A,14 +craft krAft M6% 1 +craftier 'krAftI@R Or% 3 +craftiest 'krAftIIst Os% 3 +craftily 'krAftIlI Pu% 3 +craftiness 'krAftIn@s L@% 3 +crafts krAfts Mj% 1 +craftsman 'krAftsm@n Ki% 2 +craftsmanship 'krAftm@nSIp L@% 3 +craftsmen 'krAftsm@n Kj% 2 +crafty 'krAftI OD% 2 +crag kr&g K6% 1 +cragged 'kr&gId OA$ 2 +craggier 'kr&gI@R Or$ 3 +craggiest 'kr&gIIst Os$ 3 +craggy 'kr&gI OD% 2 +crags kr&gz Kj% 1 +cragsman 'kr&gzm@n Ki% 2 +cragsmen 'kr&gzm@n Kj% 2 +crake kreIk K6$ 1 +crakes kreIks Kj$ 1 +cram kr&m J4% 12A,6A,14,15B +cram-full kr&m-'fUl OA%,Pu$ 2 +crammed kr&md Jc%,Jd% 12A,6A,14,15B +crammer 'kr&m@R K6% 2 +crammers 'kr&m@z Kj% 2 +cramming 'kr&mIN Jb% 22A,6A,14,15B +cramp kr&mp H0%,M6% 16A +cramp-iron 'kr&mp-aI@n K6$ 3 +cramp-irons 'kr&mp-aI@nz Kj$ 3 +cramped kr&mpt Hc%,Hd%,OA% 16A +cramping 'kr&mpIN Hb% 26A +crampon 'kr&mp0n K6% 2 +crampons 'kr&mp0nz Kj% 2 +cramps kr&mps Ha%,Mj% 16A +crams kr&mz Ja% 12A,6A,14,15B +cranberries 'kr&nb@rIz Kj% 3 +cranberry 'kr&nb@rI K8% 3 +crane kreIn J2%,K6% 12A,2C,6A,16A +crane-flies 'kreIn-flaIz Kj$ 2 +crane-fly 'kreIn-flaI K8$ 2 +craned kreInd Jc%,Jd% 12A,2C,6A,16A +cranes kreInz Ja%,Kj% 12A,2C,6A,16A +cranial 'kreInI@l OA% 3 +craning 'kreInIN Jb% 22A,2C,6A,16A +cranium 'kreInI@m K6% 3 +craniums 'kreInI@mz Kj$ 3 +crank kr&Nk H0%,K6% 16A,15B +cranked kr&Nkt Hc%,Hd% 16A,15B +crankier 'kr&NkI@R Or% 3 +crankiest 'kr&NkIIst Os% 3 +cranking 'kr&NkIN Hb% 26A,15B +cranks kr&Nks Ha%,Kj% 16A,15B +crankshaft 'kr&nkSAft K6% 2 +crankshafts 'kr&nkSAfts Kj% 2 +cranky 'kr&NkI OD% 2 +crannied 'kr&nId OA$ 2 +crannies 'kr&nIz Kj% 2 +cranny 'kr&nI K8% 2 +crap kr&p I4%,M6% 1 +crap-shooting 'kr&p-SutIN K6% 3 +crap-shootings 'kr&p-SutINz Kj$ 3 +crape kreIp L@$ 1 +crapped kr&pt Ic%,Id% 1 +crapping 'kr&pIN Ib% 2 +craps kr&ps Ia%,Lk%,Mj% 1 +crash kr&S J1%,M7%,Pu% 12A,2C,6A +crash-dive 'kr&S-daIv I2%,K6% 2 +crash-dived 'kr&S-daIvd Ic%,Id% 2 +crash-dives 'kr&S-daIvz Ia%,Kj% 2 +crash-diving 'kr&S-daIvIN Ib% 3 +crash-helmet 'kr&S-helmIt K6% 3 +crash-helmets 'kr&S-helmIts Kj% 3 +crash-land kr&S-'l&nd J0% 2 +crash-landed kr&S-'l&ndId Jc%,Jd% 3 +crash-landing kr&S-'l&ndIN Jb%,K6% 3 +crash-landings kr&S-'l&ndINz Kj% 3 +crash-lands kr&S-'l&ndz Ja% 2 +crashed kr&St Jc%,Jd% 12A,2C,6A +crashes 'kr&SIz Ja%,Mj% 22A,2C,6A +crashing 'kr&SIN Jb% 22A,2C,6A +crass kr&s OA% 1 +crate kreIt H2$,K6% 1 +crated 'kreItId Hc$,Hd$ 2 +crater 'kreIt@R K6% 2 +craters 'kreIt@z Kj% 2 +crates kreIts Ha$,Kj% 1 +crating 'kreItIN Hb$ 2 +cravat kr@'v&t K6% 2 +cravats kr@'v&ts Kj% 2 +crave kreIv J2% 12A,3A +craved kreIvd Jc%,Jd% 12A,3A +craven 'kreIvn K6$,OA% 2 +cravens 'kreIvnz Kj$ 2 +craves kreIvz Ja% 12A,3A +craving 'kreIvIN Jb%,K6% 22A,3A +cravings 'kreIvINz Kj% 2 +crawfish 'krOfIS K7$ 2 +crawfishes 'krOfISIz Kj$ 3 +crawl krOl I0%,Ki% 12A,2C +crawled krOld Ic%,Id% 12A,2C +crawler 'krOl@R K6% 2 +crawlers 'krOl@z Kj% 2 +crawling 'krOlIN Ib% 22A,2C +crawls krOlz Ia% 12A,2C +crayfish 'kreIfIS K7% 2 +crayfishes 'kreIfISIz Kj$ 3 +crayon 'kreI@n H0%,K6% 2 +crayoned 'kreI@nd Hc%,Hd% 2 +crayoning 'kreI@nIN Hb% 3 +crayons 'kreI@nz Ha%,Kj% 2 +craze kreIz K6% 1 +crazed kreIzd OA% 1 +crazes 'kreIzIz Kj% 2 +crazier 'kreIzI@R Or% 3 +craziest 'kreIzIIst Os% 3 +crazily 'kreIzIlI Pu% 3 +craziness 'kreIzIn@s L@% 3 +crazy 'kreIzI OD% 2 +creak krik I0%,K6% 1 +creaked krikt Ic%,Id% 1 +creakier 'krikI@R Or% 3 +creakiest 'krikIIst Os% 3 +creakily 'krikIlI Pu% 3 +creaking 'krikIN Ib% 2 +creaks kriks Ia%,Kj% 1 +creaky 'krikI OD% 2 +cream krim H0%,M6% 1 +creamed krimd Hc%,Hd% 1 +creameries 'krim@rIz Kj% 3 +creamery 'krim@rI K8% 3 +creamier 'krimI@R Or% 3 +creamiest 'krimIIst Os% 3 +creaming 'krimIN Hb% 2 +creams krimz Ha%,Mj% 1 +creamy 'krimI OD% 2 +crease kris J2%,K6% 12A,6A +creased krist Jc%,Jd% 12A,6A +creases 'krisIz Ja%,Kj% 22A,6A +creasing 'krisIN Jb% 22A,6A +create kri'eIt H2% 26A,23 +created kri'eItId Hc%,Hd% 36A,23 +creates kri'eIts Ha% 26A,23 +creating kri'eItIN Hb% 36A,23 +creation kri'eISn M6% 3 +creations kri'eISnz Mj% 3 +creative kri'eItIv OA% 3 +creatively kri'eItIvlI Pu% 4 +creativeness kri'eItIvn@s L@% 4 +creator kri'eIt@R K6% 3 +creators kri'eIt@z Kj% 3 +creature 'kritS@R K6% 2 +creatures 'kritS@z Kj% 2 +credence 'kridns L@% 2 +credentials krI'denSlz Kj% 3 +credibility ,kredI'bIlItI L@% 5 +credible 'kred@bl OA% 3 +credibly 'kred@blI Pu% 3 +credit 'kredIt H0%,M6% 26A,14 +credit-side 'kredIt-saId K6% 3 +credit-sides 'kredIt-saIdz Kj$ 3 +credit-worthiness 'kredIt-w3DIn@s L@% 5 +credit-worthy 'kredIt-w3DI OA% 4 +creditable 'kredIt@bl OA% 4 +creditably 'kredIt@blI Pu% 4 +credited 'kredItId Hc%,Hd% 36A,14 +crediting 'kredItIN Hb% 36A,14 +creditor 'kredIt@R K6% 3 +creditors 'kredIt@z Kj% 3 +credits 'kredIts Ha%,Mj% 26A,14 +credo 'krid@U K6% 2 +credos 'krid@Uz Kj% 2 +credulities krI'djulItIz Mj$ 4 +credulity krI'djulItI M8% 4 +credulous 'kredjUl@s OA% 3 +credulously 'kredjUl@slI Pu% 4 +creed krid K6% 1 +creeds kridz Kj% 1 +creek krik K6% 1 +creeks kriks Kj% 1 +creel kril K6$ 1 +creels krilz Kj$ 1 +creep krip I5%,K6% 12A,2B,2C +creeper 'krip@R K6% 2 +creepers 'krip@z Kj% 2 +creepier 'kripI@R Or% 3 +creepiest 'kripIIst Os% 3 +creeping 'kripIN Ib% 22A,2B,2C +creeps krips Ia%,Kj% 12A,2B,2C +creepy 'kripI OD% 2 +cremate krI'meIt H2% 26A +cremated krI'meItId Hc%,Hd% 36A +cremates krI'meIts Ha% 26A +cremating krI'meItIN Hb% 36A +cremation krI'meISn M6% 3 +cremations krI'meISnz Mj% 3 +crematoria ,krem@'tOrI@ Kj% 5 +crematories 'krem@t@rIz Kj$ 4 +crematorium ,krem@'tOrI@m K6% 5 +crematoriums ,krem@'tOrI@mz Kj% 5 +crematory 'krem@t@rI K8$ 4 +crenellated 'kren@leItId OA$ 4 +creosote 'krI@s@Ut L@% 3 +crepe kreIp L@% 1 +crepitate 'krepIteIt I2$ 32A +crepitated 'krepIteItId Ic$,Id$ 42A +crepitates 'krepIteIts Ia$ 32A +crepitating 'krepIteItIN Ib$ 42A +crepitation ,krepI'teISn K6$ 4 +crepitations ,krepI'teISnz Kj$ 4 +crept krept Ic%,Id% 12A,2B,2C +crepuscular krI'pVskjUl@R OA$ 4 +crescendo krI'Send@U K6% 3 +crescendos krI'Send@Uz Kj% 3 +crescent 'kresnt K6% 2 +crescents 'kresnts Kj% 2 +cress kres L@% 1 +crest krest J0%,K6% 1 +crested 'krestId Jc%,Jd%,OA% 2 +crestfallen 'krestfOl@n OA% 3 +cresting 'krestIN Jb% 2 +crests krests Ja%,Kj% 1 +cretaceous krI'teIS@s OA$ 3 +cretin 'kretIn K6% 2 +cretinous 'kretIn@s OA% 3 +cretins 'kretInz Kj% 2 +cretonne 'kret0n L@$ 2 +crevasse krI'v&s K6% 2 +crevasses krI'v&sIz Kj% 3 +crevice 'krevIs K6% 2 +crevices 'krevIsIz Kj% 3 +crew kru I0%,Ic%,K6% 13A,6A +crew-cut 'kru-kVt K6% 2 +crew-cuts 'kru-kVts Kj% 2 +crew-neck 'kru-nek K6$ 2 +crew-necks 'kru-neks Kj$ 2 +crewed krud Ic%,Id% 13A,6A +crewing 'kruIN Ib% 23A,6A +crews kruz Ia%,Kj% 13A,6A +crib krIb J4%,K6% 1 +cribbage 'krIbIdZ L@% 2 +cribbage-board 'krIbIdZ-bOd K6% 3 +cribbage-boards 'krIbIdZ-bOdz Kj% 3 +cribbed krIbd Jc%,Jd% 1 +cribbing 'krIbIN Jb% 2 +cribs krIbz Ja%,Kj% 1 +crick krIk H0%,K6% 1 +cricked krIkt Hc%,Hd% 1 +cricket 'krIkIt M6% 2 +cricketer 'krIkIt@R K6% 3 +cricketers 'krIkIt@z Kj% 3 +crickets 'krIkIts Mj% 2 +cricking 'krIkIN Hb% 2 +cricks krIks Ha%,Kj% 1 +cried kraId Jc%,Jd% 12A,2B,2C,3A,4A,6A,9,14,15A,15B +crier 'kraI@R K6% 2 +criers 'kraI@z Kj% 2 +cries kraIz Ja%,Kj% 12A,2B,2C,3A,4A,6A,9,14,15A,15B +crikey 'kraIkI W-% 2 +crime kraIm H2$,M6% 1 +crimed kraImd Hc$,Hd$ 1 +crimes kraImz Ha$,Mj% 1 +criminal 'krImInl K6%,OA% 3 +criminally 'krImIn@lI Pu% 4 +criminals 'krImInlz Kj% 3 +criming 'kraImIN Hb$ 2 +criminology ,krImI'n0l@dZI L@% 5 +crimp krImp H0% 1 +crimped krImpt Hc%,Hd% 1 +crimping 'krImpIN Hb% 2 +crimps krImps Ha% 1 +crimson 'krImzn J0%,M6%,OA% 2 +crimsoned 'krImznd Jc%,Jd% 2 +crimsoning 'krImznIN Jb% 3 +crimsons 'krImznz Ja%,Mj% 2 +cringe krIndZ I2% 12A,2C +cringed krIndZd Ic%,Id% 12A,2C +cringes 'krIndZIz Ia% 22A,2C +cringing 'krIndZIN Ib% 22A,2C +crinkle 'krINkl J2%,K6% 22A,2C,6A,15B +crinkled 'krINkld Jc%,Jd% 22A,2C,6A,15B +crinkles 'krINklz Ja%,Kj% 22A,2C,6A,15B +crinklier 'krINklI@R Or% 3 +crinkliest 'krINklIIst Os% 3 +crinkling 'krINklIN Jb% 22A,2C,6A,15B +crinkly 'krINklI OD% 2 +crinoline 'krIn@lIn M6% 3 +crinolines 'krIn@lInz Mj% 3 +cripes kraIps W-$ 1 +cripple 'krIpl H2%,K6% 26A +crippled 'krIpld Hc%,Hd% 26A +cripples 'krIplz Ha%,Kj% 26A +crippling 'krIplIN Hb% 26A +crises 'kraIsiz Kj% 2 +crisis 'kraIsIs Ki% 2 +crisp krIsp J0%,K6%,OC% 1 +crisped krIspt Jc%,Jd% 1 +crisper 'krIsp@R Or% 2 +crispest 'krIspIst Os% 2 +crisping 'krIspIN Jb% 2 +crisply 'krIsplI Pu% 2 +crispness 'krIspn@s L@% 2 +crisps krIsps Ja%,Kj% 1 +crisscross 'krIskr0s J1%,OA%,Pu% 2 +crisscrossed 'krIskr0st Jc%,Jd% 2 +crisscrosses 'krIskr0sIz Ja% 3 +crisscrossing 'krIskr0sIN Jb% 3 +criteria kraI'tI@rI@ Kj% 4 +criterion kraI'tI@rI@n K6% 4 +criterions kraI'tI@rI@nz Kj$ 4 +critic 'krItIk K6% 2 +critical 'krItIkl OA% 3 +critically 'krItIklI Pu% 3 +criticism 'krItIsIz@m M6% 4 +criticisms 'krItIsIz@mz Mj% 4 +criticize 'krItIsaIz J2% 32A,6A,14 +criticized 'krItIsaIzd Jc%,Jd% 32A,6A,14 +criticizes 'krItIsaIzIz Ja% 42A,6A,14 +criticizing 'krItIsaIzIN Jb% 42A,6A,14 +critics 'krItIks Kj% 2 +critique krI'tik K6% 2 +critiques krI'tiks Kj% 2 +croak kr@Uk J0%,K6% 12A,6A,15B +croaked kr@Ukt Jc%,Jd% 12A,6A,15B +croaking 'kr@UkIN Jb% 22A,6A,15B +croaks kr@Uks Ja%,Kj% 12A,6A,15B +crochet 'kr@USeI J0%,L@% 22A,6A +crochet-hook 'kr@USeI-hUk K6% 3 +crochet-hooks 'kr@USeI-hUks Kj% 3 +crocheted 'kr@USeId Jc%,Jd% 22A,6A +crocheting 'kr@USeIIN Jb% 32A,6A +crochets 'kr@USeIz Ja% 22A,6A +crock kr0k J0$,K6% 12C,15B +crocked kr0kt Jc$,Jd$ 12C,15B +crockery 'kr0k@rI L@% 3 +crocking 'kr0kIN Jb$ 22C,15B +crocks kr0ks Ja$,Kj% 12C,15B +crocodile 'kr0k@daIl K6% 3 +crocodiles 'kr0k@daIlz Kj% 3 +crocus 'kr@Uk@s K7% 2 +crocuses 'kr@Uk@sIz Kj% 3 +croft kr0ft K6% 1 +crofter 'kr0ft@R K6% 2 +crofters 'kr0ft@z Kj% 2 +crofts kr0fts Kj% 1 +cromlech 'kr0mlek K6$ 2 +cromlechs 'kr0mleks Kj$ 2 +crone kr@Un K6% 1 +crones kr@Unz Kj% 1 +cronies 'kr@UnIz Kj% 2 +crony 'kr@UnI K8% 2 +crook krUk J0%,K6% 12A,6A +crook-back 'krUk-b&k OA$ 2 +crook-backed 'krUk-b&kt OA$ 2 +crooked 'krUkId OA% 2 +crooked krUkt Jc%,Jd% 12A,6A +crookedly 'krUkIdlI Pu% 3 +crookedness 'krUkIdn@s L@% 3 +crooking 'krUkIN Jb% 22A,6A +crooks krUks Ja%,Kj% 12A,6A +croon krun J0% 12C,6A,13A,15A +crooned krund Jc%,Jd% 12C,6A,13A,15A +crooner 'krun@R K6% 2 +crooners 'krun@z Kj% 2 +crooning 'krunIN Jb% 22C,6A,13A,15A +croons krunz Ja% 12C,6A,13A,15A +crop kr0p J4%,K6% 12A,2C,6A,14,22 +crop-dusting 'kr0p-dVstIN L@% 3 +cropped kr0pt Jc%,Jd% 12A,2C,6A,14,22 +cropper 'kr0p@R K6% 2 +croppers 'kr0p@z Kj$ 2 +cropping 'kr0pIN Jb% 22A,2C,6A,14,22 +crops kr0ps Ja%,Kj% 12A,2C,6A,14,22 +croquet 'kr@UkeI L@% 2 +croquette kr@U'ket K6% 2 +croquettes kr@U'kets Kj% 2 +crore krOR K6$ 1 +crores krOz Kj$ 1 +crosier 'kr@UzI@R K6$ 3 +crosiers 'kr@UzI@z Kj$ 3 +cross kr0s J1%,K7%,OA% 12A,2C,6A,14,15A,15B +cross-bench 'kr0s-bentS K7% 2 +cross-bencher 'kr0s-bentS@R K6% 3 +cross-benchers 'kr0s-bentS@z Kj% 3 +cross-benches 'kr0s-bentSIz Kj% 3 +cross-division ,kr0s-dI'vIzn M6$ 4 +cross-divisions ,kr0s-dI'vIznz Mj$ 4 +cross-examination ,kr0s-Ig,z&mI'neISn K6% 6 +cross-examinations ,kr0s-Ig,z&mI'neISnz Kj% 6 +cross-examine ,kr0s-Ig'z&mIn H2% 46A +cross-examined ,kr0s-Ig'z&mInd Hc%,Hd% 46A +cross-examiner ,kr0s-Ig'z&mIn@R K6% 5 +cross-examiners ,kr0s-Ig'z&mIn@z Kj% 5 +cross-examines ,kr0s-Ig'z&mInz Ha% 46A +cross-examining ,kr0s-Ig'z&mInIN Hb% 56A +cross-fertilization ,kr0s-,f3t@laI'zeISn K6% 6 +cross-fertilizations ,kr0s-,f3t@laI'zeISnz Kj% 6 +cross-fertilize ,kr0s-'f3t@laIz H2% 4 +cross-fertilized ,kr0s-'f3t@laIzd Hc%,Hd% 4 +cross-fertilizes ,kr0s-'f3t@laIzIz Ha% 5 +cross-fertilizing ,kr0s-'f3t@laIzIN Hb% 5 +cross-grained ,kr0s-'greInd OA% 2 +cross-heading ,kr0s-'hedIN K6% 3 +cross-headings ,kr0s-'hedINz Kj% 3 +cross-index ,kr0s-'Indeks H1%,K7% 3 +cross-indexed ,kr0s-'Indekst Hc%,Hd% 3 +cross-indexes ,kr0s-'IndeksIz Ha%,Kj% 4 +cross-indexing ,kr0s-'IndeksIN Hb% 4 +cross-indices ,kr0s-'IndIsiz Kj$ 4 +cross-legged ,kr0s-'legd Pu% 2 +cross-purposes ,kr0s-'p3p@sIz Kj% 4 +cross-question ,kr0s-'kwestS@n H0% 36A +cross-questioned ,kr0s-'kwestS@nd Hc%,Hd% 36A +cross-questioning ,kr0s-'kwestS@nIN Hb% 46A +cross-questions ,kr0s-'kwestS@nz Ha% 36A +cross-reference ,kr0s-'ref@r@ns K6% 4 +cross-references ,kr0s-'ref@r@nsIz Kj% 5 +cross-section ,kr0s-'sekSn K6% 3 +cross-sections ,kr0s-'sekSnz Kj% 3 +cross-stitch 'kr0s-stItS M7% 2 +cross-stitches 'kr0s-stItSIz Mj% 3 +crossbar 'kr0sbAR K6% 2 +crossbars 'kr0sbAz Kj% 2 +crossbeam 'kr0sbim K6$ 2 +crossbeams 'kr0sbimz Kj$ 2 +crossbones 'kr0sb@Unz Kj% 2 +crossbow 'kr0sb@U K6% 2 +crossbows 'kr0sb@Uz Kj% 2 +crossbred 'kr0sbred Hc%,Hd%,OA% 22A,6A +crossbreed 'kr0sbrid H5%,K6% 22A,6A +crossbreeding 'kr0sbridIN Hb% 32A,6A +crossbreeds 'kr0sbridz Ha%,Kj% 22A,6A +crosscheck ,kr0s'tSek J0%,K6% 22A,6A +crosschecked ,kr0s'tSekt Jc%,Jd% 22A,6A +crosschecking ,kr0s'tSekIN Jb% 32A,6A +crosschecks ,kr0s'tSeks Ja%,Kj% 22A,6A +crosscountry ,kr0s'kVntrI OA%,Pu% 3 +crosscurrent 'kr0skVr@nt K6% 3 +crosscurrents 'kr0skVr@nts Kj% 3 +crosscut 'kr0skVt K6%,OA% 2 +crosscuts 'kr0skVts Kj% 2 +crosse kr0s K6$ 1 +crossed kr0st Jc%,Jd% 12A,2C,6A,14,15A,15B +crosses 'kr0sIz Ja%,Kj% 22A,2C,6A,14,15A,15B +crosseyed 'kr0saId OA% 2 +crossfire 'kr0sfaI@R M6% 2 +crossfires 'kr0sfaI@z Mj$ 2 +crossing 'kr0sIN Jb%,M6% 22A,2C,6A,14,15A,15B +crossings 'kr0sINz Mj% 2 +crosskeys ,kr0s'kiz Kj$ 2 +crossly 'kr0slI Pu% 2 +crossness 'kr0sn@s L@% 2 +crosspatch 'kr0sp&tS K7% 2 +crosspatches 'kr0sp&tSIz Kj% 3 +crosspiece 'kr0spis K6% 2 +crosspieces 'kr0spisIz Kj% 3 +crossroad 'kr0sr@Ud K6% 2 +crossroads 'kr0sr@Udz Kj% 2 +crosstalk 'kr0stOk L@% 2 +crosstrees 'kr0striz Kj% 2 +crosswalk 'kr0swOk K6$ 2 +crosswalks 'kr0swOks Kj$ 2 +crosswind 'kr0swInd K6% 2 +crosswinds 'kr0swIndz Kj% 2 +crosswise 'kr0swaIz Pu% 2 +crossword 'kr0sw3d K6% 2 +crosswords 'kr0sw3dz Kj% 2 +crotch kr0tS K7% 1 +crotches 'kr0tSIz Kj% 2 +crotchet 'kr0tSIt K6% 2 +crotchets 'kr0tSIts Kj% 2 +crotchety 'kr0tSItI OA% 3 +crouch kraUtS I1%,K7% 12A,2C,4A +crouched kraUtSt Ic%,Id% 12A,2C,4A +crouches 'kraUtSIz Ia%,Kj% 22A,2C,4A +crouching 'kraUtSIN Ib% 22A,2C,4A +croup krup M6% 1 +croupier 'krupIeI K6% 3 +croupiers 'krupIeIz Kj% 3 +croups krups Mj$ 1 +crow kr@U I0%,K6% 13A,6A +crow's-feet 'kr@Uz-fit Kj% 2 +crow's-nest 'kr@Uz-nest K6% 2 +crow's-nests 'kr@Uz-nests Kj% 2 +crowbar 'kr@UbAR K6% 2 +crowbars 'kr@UbAz Kj% 2 +crowd kraUd J0%,K6% 12B,2C,6A,14,15A,15B +crowded 'kraUdId Jc%,Jd%,OA% 22B,2C,6A,14,15A,15B +crowding 'kraUdIN Jb% 22B,2C,6A,14,15A,15B +crowds kraUdz Ja%,Kj% 12B,2C,6A,14,15A,15B +crowed kr@Ud Ic%,Id% 13A,6A +crowing 'kr@UIN Ib% 23A,6A +crown kraUn H0%,K6% 16A,14,23 +crown-land 'kraUn-l&nd K6% 2 +crown-lands 'kraUn-l&ndz Kj% 2 +crowned kraUnd Hc%,Hd% 16A,14,23 +crowning 'kraUnIN Hb%,OA% 26A,14,23 +crowns kraUnz Ha%,Kj% 16A,14,23 +crows kr@Uz Ia%,Kj% 13A,6A +crozier 'kr@UzI@R K6$ 3 +croziers 'kr@UzI@z Kj$ 3 +crucial 'kruSl OA% 2 +crucially 'kruS@lI Pu% 3 +crucible 'krusIbl K6% 3 +crucibles 'krusIblz Kj% 3 +crucified 'krusIfaId Hc%,Hd% 3 +crucifies 'krusIfaIz Ha% 3 +crucifix 'krusIfIks K7% 3 +crucifixes 'krusIfIksIz Kj% 4 +crucifixion ,krusI'fIkSn M6% 4 +crucifixions ,krusI'fIkSnz Mj% 4 +cruciform 'krusIfOm OA$ 3 +crucify 'krusIfaI H3% 3 +crucifying 'krusIfaIIN Hb% 4 +crude krud OB% 1 +crudely 'krudlI Pu% 2 +crudeness 'krudnIs L@% 2 +cruder 'krud@R Or% 2 +crudest 'krudIst Os% 2 +crudities 'krudItIz Mj% 3 +crudity 'krudItI M8% 3 +cruel krU@l OE% 2 +crueller 'krU@l@R Or% 3 +cruellest 'krU@lIst Os% 3 +cruelly 'krU@lI Pu% 3 +cruelties 'kru@ltIz Mj% 3 +cruelty 'kru@ltI M8% 3 +cruet 'kruIt K6% 2 +cruet-stand 'kruIt-st&nd K6$ 3 +cruet-stands 'kruIt-st&ndz Kj$ 3 +cruets 'kruIts Kj$ 2 +cruise kruz I2%,K6% 12A,2C +cruised kruzd Ic%,Id% 12A,2C +cruiser 'kruz@R K6% 2 +cruisers 'kruz@z Kj% 2 +cruises 'kruzIz Ia%,Kj% 22A,2C +cruising 'kruzIN Ib% 22A,2C +crumb krVm M6% 1 +crumble 'krVmbl J2% 22A,2C,6A +crumbled 'krVmbld Jc%,Jd% 22A,2C,6A +crumbles 'krVmblz Ja% 22A,2C,6A +crumblier 'krVmblI@R Or% 3 +crumbliest 'krVmblIIst Os% 3 +crumbling 'krVmblIN Jb% 22A,2C,6A +crumbly 'krVmblI OD% 2 +crumbs krVmz Mj% 1 +crumpet 'krVmpIt K6% 2 +crumpets 'krVmpIts Kj% 2 +crumple 'krVmpl J2% 22A,2C,6A,15B +crumpled 'krVmpld Jc%,Jd% 22A,2C,6A,15B +crumples 'krVmplz Ja% 22A,2C,6A,15B +crumpling 'krVmplIN Jb% 22A,2C,6A,15B +crunch krVntS J1%,K7% 12A,2C,6A +crunched krVntSt Jc%,Jd% 12A,2C,6A +crunches 'krVntSIz Ja%,Kj% 22A,2C,6A +crunching 'krVntSIN Jb% 22A,2C,6A +crupper 'krVp@R K6$ 2 +cruppers 'krVp@z Kj$ 2 +crusade kru'seId I2%,K6% 22A,3A +crusaded kru'seIdId Ic%,Id% 32A,3A +crusader kru'seId@R K6% 3 +crusaders kru'seId@z Kj% 3 +crusades kru'seIdz Ia%,Kj% 22A,3A +crusading kru'seIdIN Ib% 32A,3A +cruse kruz K6$ 1 +cruses 'kruzIz Kj$ 2 +crush krVS J1%,L@% 12A,2C,6A,15A,15B +crushed krVSt Jc%,Jd% 12A,2C,6A,15A,15B +crushes 'krVSIz Ja% 22A,2C,6A,15A,15B +crushing 'krVSIN Jb%,OA% 22A,2C,6A,15A,15B +crushingly 'krVSINlI Pu% 3 +crust krVst J0%,M6% 12A,2C,6A +crustacean krV'steISn K6% 3 +crustaceans krV'steISnz Kj% 3 +crusted 'krVstId Jc%,Jd%,OA% 22A,2C,6A +crustier 'krVstI@R Or% 3 +crustiest 'krVstIIst Os% 3 +crusting 'krVstIN Jb% 22A,2C,6A +crusts krVsts Ja%,Mj% 12A,2C,6A +crusty 'krVstI OD% 2 +crutch krVtS K7% 1 +crutches 'krVtSIz Kj% 2 +crux krVks K7% 1 +cruxes 'krVksIz Kj$ 2 +cruzeiro kru'ze@r@U K6$ 3 +cruzeiros kru'ze@r@Uz Kj$ 3 +cry kraI J3%,K8% 12A,2B,2C,3A,4A,6A,9,14,15A,15B +crybabies 'kraIbeIbIz Kj% 3 +crybaby 'kraIbeIbI K8% 3 +crying 'kraIIN Jb%,Oq% 22A,2B,2C,3A,4A,6A,9,14,15A,15B +crypt krIpt K6% 1 +cryptic 'krIptIk OA% 2 +cryptically 'krIptIklI Pu% 3 +crypto- ,krIpt@U- U-% 2 +cryptogram 'krIpt@gr&m K6% 3 +cryptograms 'krIpt@gr&mz Kj% 3 +crypts krIpts Kj% 1 +crystal 'krIstl M6% 2 +crystal-gazing 'krIst@l-geIzIN L@% 4 +crystalline 'krIst@laIn OA% 3 +crystallization ,krIst@laI'zeISn M6% 5 +crystallizations ,krIst@laI'zeISnz Mj$ 5 +crystallize 'krIst@laIz J2% 32A,6A +crystallized 'krIst@laIzd Jc%,Jd% 32A,6A +crystallizes 'krIst@laIzIz Ja% 42A,6A +crystallizing 'krIst@laIzIN Jb% 42A,6A +crystallography ,krIst@'l0gr@fI L@% 5 +crystals 'krIstlz Mj% 2 +cub kVb K6% 1 +cubbyhole 'kVbIh@Ul K6% 3 +cubbyholes 'kVbIh@Ulz Kj% 3 +cube kjub H2%,K6% 16A +cubed kjubd Hc%,Hd% 16A +cubes kjubz Ha%,Kj% 16A +cubic 'kjubIk OA% 2 +cubical 'kjubIkl OA$ 3 +cubicle 'kjubIkl K6% 3 +cubicles 'kjubIklz Kj% 3 +cubing 'kjubIN Hb% 26A +cubism 'kjubIz@m L@% 3 +cubist 'kjubIst K6% 2 +cubists 'kjubIsts Kj% 2 +cubit 'kjubIt K6$ 2 +cubits 'kjubIts Kj$ 2 +cubs kVbz Kj% 1 +cuckold 'kVk@Uld H0%,K6% 26A +cuckolded 'kVk@UldId Hc%,Hd% 36A +cuckolding 'kVk@UldIN Hb% 36A +cuckolds 'kVk@Uldz Ha%,Kj% 26A +cuckoo 'kUku K6% 2 +cuckoo-clock 'kUku-kl0k K6% 3 +cuckoo-clocks 'kUku-kl0ks Kj% 3 +cuckoos 'kUkuz Kj% 2 +cucumber 'kjukVmb@R M6% 3 +cucumbers 'kjukVmb@z Mj% 3 +cud kVd L@% 1 +cuddle 'kVdl J2%,K6% 22C,6A,15B +cuddled 'kVdld Jc%,Jd% 22C,6A,15B +cuddles 'kVdlz Ja%,Kj% 22C,6A,15B +cuddlesome 'kVdls@m OA% 3 +cuddlier 'kVdlI@R Or% 3 +cuddliest 'kVdlIIst Os% 3 +cuddling 'kVdlIN Jb% 22C,6A,15B +cuddly 'kVdlI OD% 2 +cudgel 'kVdZ@l H0%,K6% 2 +cudgeled 'kVdZ@ld Hc%,Hd% 2 +cudgeling 'kVdZ@lIN Hb% 3 +cudgels 'kVdZ@lz Ha%,Kj% 2 +cue kju K6% 1 +cues kjuz Kj% 1 +cuff kVf H0%,K6% 1 +cuff-links 'kVf-lINks Kj% 2 +cuffed kVft Hc%,Hd% 1 +cuffing 'kVfIN Hb% 2 +cuffs kVfs Ha%,Kj% 1 +cuirass kwI'r&s K7$ 2 +cuirasses kwI'r&sIz Kj$ 3 +cuirassier ,kwIr@'sI@R K6$ 4 +cuirassiers ,kwIr@'sI@z Kj$ 4 +cuisine kwI'zin L@% 2 +cul-de-sac 'kVl-d@-s&k K6% 3 +cul-de-sacs 'kVl-d@-s&ks Kj% 3 +culinary 'kVlIn@rI OA% 4 +cull kVl H0%,K6% 16A +culled kVld Hc%,Hd% 16A +cullender 'kVl@nd@R K6$ 3 +cullenders 'kVl@nd@z Kj$ 3 +culling 'kVlIN Hb% 26A +culls kVlz Ha%,Kj% 16A +culminate 'kVlmIneIt H2% 33A +culminated 'kVlmIneItId Hc%,Hd% 43A +culminates 'kVlmIneIts Ha% 33A +culminating 'kVlmIneItIN Hb% 43A +culmination ,kVlmI'neISn K6% 4 +culminations ,kVlmI'neISnz Kj$ 4 +culpability ,kVlp@'bIlItI L@% 5 +culpable 'kVlp@bl OA% 3 +culpably 'kVlp@blI Pu% 3 +culprit 'kVlprIt K6% 2 +culprits 'kVlprIts Kj% 2 +cult kVlt K6% 1 +cultivable 'kVltIv@bl OA% 4 +cultivate 'kVltIveIt H2% 36A +cultivated 'kVltIveItId Hc%,Hd%,OA% 46A +cultivates 'kVltIveIts Ha% 36A +cultivating 'kVltIveItIN Hb% 46A +cultivation ,kVltI'veISn L@% 4 +cultivator 'kVltIveIt@R K6% 4 +cultivators 'kVltIveIt@z Kj% 4 +cults kVlts Kj% 1 +cultural 'kVltS@r@l OA% 3 +culture 'kVltS@R M6% 2 +cultured 'kVltS@d OA% 2 +cultures 'kVltS@z Mj% 2 +culvert 'kVlv@t K6% 2 +culverts 'kVlv@ts Kj% 2 +cumber 'kVmb@R H0$ 26A,14 +cumbered 'kVmb@d Hc%,Hd% 26A,14 +cumbering 'kVmb@rIN Hb$ 36A,14 +cumbers 'kVmb@z Ha$ 26A,14 +cumbersome 'kVmb@s@m OA% 3 +cumbrous 'kVmbr@s OA$ 2 +cummerbund 'kVm@bVnd K6$ 3 +cummerbunds 'kVm@bVndz Kj$ 3 +cumulative 'kjumjUl@tIv OA% 4 +cumulatively 'kjumjUl@tIvlI Pu% 5 +cumuli 'kjumjUlaI Kj$ 3 +cumulus 'kjumjUl@s Ki% 3 +cuneiform 'kjunIfOm OA$ 3 +cunning 'kVnIN L@%,OA% 2 +cunningly 'kVnINlI Pu% 3 +cunt kVnt K6% 1 +cunts kVnts Kj% 1 +cup kVp H4%,K6% 16A +cup-bearer 'kVp-be@r@R K6% 3 +cup-bearers 'kVp-be@r@z Kj% 3 +cup-final kVp-'faInl K6% 3 +cup-finals kVp-'faInlz Kj% 3 +cup-tie 'kVp-taI K6% 2 +cup-ties 'kVp-taIz Kj% 2 +cupboard 'kVb@d K6% 2 +cupboard-love 'kVb@d-lVv L@% 3 +cupboards 'kVb@dz Kj% 2 +cupful 'kVpfUl K6% 2 +cupfuls 'kVpfUlz Kj% 2 +cupidity kju'pIdItI L@$ 4 +cupola 'kjup@l@ K6$ 3 +cupolas 'kjup@l@z Kj$ 3 +cuppa 'kVp@ K6% 2 +cuppas 'kVp@z Kj% 2 +cupped kVpt Hc%,Hd% 16A +cupping 'kVpIN Hb%,L@% 26A +cupric 'kjuprIk OA$ 2 +cupro-nickel ,kjupr@U-'nIkl L@$ 4 +cups kVps Ha%,Kj% 16A +cur k3R K6% 1 +cur_e 'kjU@reI K6$ 2 +cur_es 'kjU@reIz Kj$ 2 +cura<cao ,kjU@r@'s@U L@$ 3 +cura<coa ,kjU@r@'s@U L@$ 3 +curability ,kjU@r@'bIlItI L@% 5 +curable 'kjU@r@bl OA% 3 +curacies 'kjU@r@sIz Kj$ 3 +curacy 'kjU@r@sI K8$ 3 +curate 'kjU@r@t K6% 2 +curates 'kjU@r@ts Kj% 2 +curative 'kjU@r@tIv OA% 3 +curator kjU@'reIt@R K6% 3 +curators kjU@'reIt@z Kj% 3 +curb k3b H0%,K6% 16A +curbed k3bd Hc%,Hd% 16A +curbing 'k3bIN Hb% 26A +curbs k3bz Ha%,Kj% 16A +curd k3d M6% 1 +curdle k3dl J2% 22A,6A +curdled k3dld Jc%,Jd% 22A,6A +curdles k3dlz Ja% 22A,6A +curdling 'k3dlIN Jb% 22A,6A +curds k3dz Mj% 1 +cure kjU@R J2%,K6% 16A,14 +cure-all 'kjU@r-Ol K6% 2 +cure-alls 'kjU@r-Olz Kj$ 2 +cured kjU@d Jc%,Jd% 16A,14 +cures kjU@z Ja%,Kj% 16A,14 +curfew 'k3fju K6% 2 +curfews 'k3fjuz Kj% 2 +curing 'kjU@rIN Jb% 26A,14 +curio 'kjU@rI@U K6% 3 +curios 'kjU@rI@Uz Kj% 3 +curiosities ,kjU@rI'0sItIz Mj% 5 +curiosity ,kjU@rI'0sItI M8% 5 +curious 'kjU@rI@s OA% 3 +curiously 'kjU@rI@slI Pu% 4 +curl k3l J0%,M6% 12A,2C,6A,15A,15B +curled k3ld Jc%,Jd% 12A,2C,6A,15A,15B +curler 'k3l@R K6% 2 +curlers 'k3l@z Kj% 2 +curlew 'k3lju K6% 2 +curlews 'k3ljuz Kj% 2 +curlier 'k3lI@R Or% 3 +curliest 'k3lIIst Os% 3 +curling 'k3lIN Jb%,L@% 22A,2C,6A,15A,15B +curling-irons 'k3lIN-aI@nz Kj% 4 +curling-pins 'k3lIN-pInz Kj% 3 +curling-stones 'k3lIN-st@Unz Kj% 3 +curling-tongs 'k3lIN-t0Nz Kj% 3 +curls k3lz Ja%,Mj% 12A,2C,6A,15A,15B +curly 'k3lI OD% 2 +curmudgeon k3'mVdZ@n K6$ 3 +curmudgeons k3'mVdZ@nz Kj$ 3 +currant 'kVr@nt K6% 2 +currants 'kVr@nts Kj% 2 +currencies 'kVr@nsIz Mj% 3 +currency 'kVr@nsI M8% 3 +current 'kVr@nt K6%,OA% 2 +currently 'kVr@ntlI Pu% 3 +currents 'kVr@nts Kj% 2 +curricula k@'rIkjUl@ Kj% 4 +curricula vitae k@,rIkjUl@ 'vitaI Kj$ 6 +curriculum k@'rIkjUl@m K6% 4 +curriculum vitae k@,rIkjUl@m 'vitaI Ki% 6 +curriculums k@'rIkjUl@mz Kj% 4 +curried 'kVrId Hc%,Hd% 26A +curries 'kVrIz Ha%,Mj% 26A +currish 'k3rIS OA$ 2 +currishly 'k3rISlI Pu$ 3 +curry 'kVrI H3%,M8% 26A +curry-powder 'kVrI-paUd@R K6% 4 +curry-powders 'kVrI-paUd@z Kj% 4 +currying 'kVrIIN Hb% 36A +curs k3z Kj% 1 +curse k3s J2%,K6% 12A,3A,6A +cursed 'k3sId OA% 2 +cursed k3st Jc%,Jd% 12A,3A,6A +cursedly 'k3sIdlI Pu% 3 +curses 'k3sIz Ja%,Kj% 22A,3A,6A +cursing 'k3sIN Jb% 22A,3A,6A +cursive 'k3sIv OA% 2 +cursorily 'k3s@r@lI Pu% 4 +cursory 'k3s@rI OA% 3 +curst k3st OA$ 1 +curt k3t OA% 1 +curtail k3'teIl H0% 26A +curtailed k3'teIld Hc%,Hd% 26A +curtailing k3'teIlIN Hb% 36A +curtailment k3'teIlm@nt M6% 3 +curtailments k3'teIlm@nts Mj% 3 +curtails k3'teIlz Ha% 26A +curtain 'k3tn H0%,K6% 26A,15B +curtain-call 'k3tn-kOl K6% 3 +curtain-calls 'k3tn-kOlz Kj% 3 +curtain-lecture 'k3tn-lektS@R K6$ 4 +curtain-lectures 'k3tn-lektS@z Kj$ 4 +curtain-raiser 'k3tn-reIz@R K6% 4 +curtain-raisers 'k3tn-reIz@z Kj% 4 +curtained 'k3tnd Hc%,Hd% 26A,15B +curtaining 'k3tnIN Hb% 36A,15B +curtains 'k3tnz Ha%,Kj% 26A,15B +curtly 'k3tlI Pu% 2 +curtness 'k3tn@s L@% 2 +curtsey 'k3tsI I0%,K6% 2 +curtseyed 'k3tsId Ic%,Id% 2 +curtseying 'k3tsIIN Ib% 3 +curtseys 'k3tsIz Ia%,Kj% 2 +curtsied 'k3tsId Ic%,Id% 2 +curtsies 'k3tsIz Ia%,Kj% 2 +curtsy 'k3tsI I3$,K8$ 2 +curtsying 'k3tsIIN Ib$ 3 +curvature 'k3v@tS@R L@% 3 +curve k3v J2%,K6% 12A,6A +curved k3vd Jc%,Jd% 12A,6A +curves k3vz Ja%,Kj% 12A,6A +curving 'k3vIN Jb% 22A,6A +cushier 'kUSI@R Or% 3 +cushiest 'kUSIIst Os% 3 +cushion 'kUSn H0%,K6% 26A,14 +cushioned 'kUSnd Hc%,Hd% 26A,14 +cushioning 'kUSnIN Hb% 36A,14 +cushions 'kUSnz Ha%,Kj% 26A,14 +cushy 'kUSI OD% 2 +cusp kVsp K6% 1 +cuspidor 'kVspIdOR K6$ 3 +cuspidors 'kVspIdOz Kj$ 3 +cusps kVsps Kj% 1 +cuss kVs K7% 1 +cussed 'kVsId OA% 2 +cussedly 'kVsIdlI Pu% 3 +cussedness 'kVsIdn@s L@% 3 +cusses 'kVsIz Kj% 2 +custard 'kVst@d M6% 2 +custards 'kVst@dz Mj% 2 +custodial kV'st@UdI@l OA% 4 +custodian kV'st@UdI@n K6% 4 +custodians kV'st@UdI@nz Kj% 4 +custody 'kVst@dI L@% 3 +custom 'kVst@m M6% 2 +custom-built ,kVst@m-'bIlt OA% 3 +custom-made ,kVst@m-'meId OA% 3 +customarily 'kVst@m@r@lI Pu% 5 +customary 'kVst@m@rI OA% 4 +customer 'kVst@m@R K6% 3 +customers 'kVst@m@z Kj% 3 +customs 'kVst@mz Mj% 2 +cut kVt J5*,Jc*,Jd*,K6* 12A,2C,3A,6A,12B,13B,15A,15B,22 +cut-out 'kVt-aUt K6% 2 +cut-outs 'kVt-aUts Kj% 2 +cut-price ,kVt-'praIs Oq% 2 +cut-rate ,kVt-'reIt Oq% 2 +cut-throat 'kVt-Tr@Ut K6$,Oq% 2 +cut-throats 'kVt-Tr@Uts Kj$ 2 +cutback 'kVtb&k K6% 2 +cutbacks 'kVtb&ks Kj% 2 +cute kjut OB% 1 +cutely 'kjutlI Pu% 2 +cuteness 'kjutn@s L@% 2 +cuter 'kjut@R Or% 2 +cutest 'kjutIst Os% 2 +cuticle 'kjutIkl K6% 3 +cuticles 'kjutIklz Kj% 3 +cutlass 'kVtl@s K7% 2 +cutlasses 'kVtl@sIz Kj% 3 +cutler 'kVtl@R K6% 2 +cutlers 'kVtl@z Kj% 2 +cutlery 'kVtl@rI L@% 3 +cutlet 'kVtlIt K6% 2 +cutlets 'kVtlIts Kj% 2 +cutpurse 'kVtp3s K6$ 2 +cutpurses 'kVtp3sIz Kj$ 3 +cuts kVts Ja%,Kj% 12A,2C,3A,6A,12B,13B,15A,15B,22 +cutter 'kVt@R K6% 2 +cutters 'kVt@z Kj% 2 +cutting 'kVtIN Jb%,M6%,OA% 22A,2C,3A,6A,12B,13B,15A,15B,22 +cutting-room 'kVtIN-rum K6% 3 +cutting-rooms 'kVtIN-rumz Kj% 3 +cuttings 'kVtINz Mj% 2 +cuttlefish 'kVtlfIS M7% 3 +cuttlefishes 'kVtlfISIz Mj$ 4 +cutworm 'kVtw3m K6% 2 +cutworms 'kVtw3mz Kj$ 2 +cwt 'hVdr@dweIt Y]% 3 +cyanide 'saI@naId L@% 3 +cybernetic ,saIb@'netIk OA% 4 +cybernetics ,saIb@'netIks Lk% 4 +cyclamen 'sIkl@m@n K6% 3 +cyclamens 'sIkl@m@nz Kj% 3 +cycle 'saIkl I2%,K6% 22A,2B,2C +cycled 'saIkld Ic%,Id% 22A,2B,2C +cycles 'saIklz Ia%,Kj% 22A,2B,2C +cyclic 'saIklIk OA% 2 +cyclical 'saIklIkl OA% 3 +cycling 'saIklIN Ib% 22A,2B,2C +cyclist 'saIklIst K6% 2 +cyclists 'saIklIsts Kj% 2 +cyclone 'saIkl@Un K6% 2 +cyclones 'saIkl@Unz Kj% 2 +cyclonic saI'kl0nIk OA% 3 +cyclopaedia ,saIkl@'pidI@ K6$ 5 +cyclopaedias ,saIkl@'pidI@z Kj$ 5 +cyclostyle 'saIkl@staIl H2$,K6$ 3 +cyclostyled 'saIkl@staIld Hc$,Hd% 3 +cyclostyles 'saIkl@staIlz Ha$,Kj$ 3 +cyclostyling 'saIkl@staIlIN Hb$ 4 +cyclotron 'saIkl@tr0n K6% 3 +cyclotrons 'saIkl@tr0nz Kj% 3 +cyder 'saId@R M6% 2 +cyders 'saId@z Mj$ 2 +cygnet 'sIgnIt K6$ 2 +cygnets 'sIgnIts Kj$ 2 +cylinder 'sIlInd@R K6% 3 +cylinders 'sIlInd@z Kj% 3 +cylindrical sI'lIndrIkl OA% 4 +cymbal 'sImbl K6% 2 +cymbals 'sImblz Kj% 2 +cynic 'sInIk K6% 2 +cynical 'sInIkl OA% 3 +cynically 'sInIklI Pu% 3 +cynicism 'sInIsIz@m M6% 4 +cynicisms 'sInIsIz@mz Mj$ 4 +cynics 'sInIks Kj% 2 +cynosure 'sIn@,zjU@R K6$ 3 +cynosures 'sIn@,zjU@z Kj$ 3 +cypher 'saIf@R J0%,K6% 22A,6A +cyphered 'saIf@d Jc%,Jd% 22A,6A +cyphering 'saIf@rIN Jb% 32A,6A +cyphers 'saIf@z Ja%,Kj% 22A,6A +cypress 'saIpr@s K7% 2 +cypresses 'saIpr@sIz Kj% 3 +cyst sIst K6% 1 +cysts sIsts Kj% 1 +czar zAR K6% 1 +czarina zA'rin@ K6% 3 +czarinas zA'rin@z Kj% 3 +czars zAz Kj% 1 +d di Ki$ 1 +d's diz Kj$ 1 +d_eb^acle deI'bAkl K6% 3 +d_eb^acles deI'bAklz Kj% 3 +d_ebris 'deIbri L@% 2 +d_ebut 'deIbju K6% 2 +d_ebutante 'debjutAnt K6% 3 +d_ebutantes 'debjutAnts Kj% 3 +d_ebuts 'deIbjuz Kj% 2 +d_ecollet_e deI'k0lteI OA$ 3 +d_ecor 'deIkOR Ki% 2 +d_emarche 'deImAS K6$ 2 +d_emarches 'deImASIz Kj$ 3 +d_emod_e ,deI'm@UdeI OA$ 3 +d_enouement ,deI'numON K6% 3 +d_enouements ,deI'numONz Kj% 3 +d_eshabill_e ,deIz&'bieI L@% 4 +d_etente ,deI'tAnt L@% 2 +da capo ,dA 'kAp@U Z-$ 3 +dab d&b J4%,K6% 12C,3A,6A,14,15A,15B +dabbed d&bd Jc%,Jd% 12C,3A,6A,14,15A,15B +dabbing 'd&bIN Jb% 22C,3A,6A,14,15A,15B +dabble 'd&bl J2% 22C,3A,6A,15A,15B +dabbled 'd&bld Jc%,Jd% 22C,3A,6A,15A,15B +dabbler 'd&bl@R K6% 2 +dabblers 'd&bl@z Kj% 2 +dabbles 'd&blz Ja% 22C,3A,6A,15A,15B +dabbling 'd&blIN Jb% 22C,3A,6A,15A,15B +dabs d&bz Ja%,Kj% 12C,3A,6A,14,15A,15B +dace deIs K9$ 1 +dacha 'd&tS@ K6$ 2 +dachas 'd&tS@z Kj$ 2 +dachshund 'd&kshUnd K6% 2 +dachshunds 'd&kshUndz Kj% 2 +dacoit d@'koIt K6$ 2 +dacoities d@'koItIz Kj$ 3 +dacoits d@'koIts Kj$ 2 +dacoity d@'koItI K8$ 3 +dactyl 'd&ktIl K6$ 2 +dactylic d&k'tIlIk OA$ 3 +dactyls 'd&ktIlz Kj$ 2 +dad d&d K6% 1 +daddies 'd&dIz Kj% 2 +daddy 'd&dI K8% 2 +daddy-longlegs ,d&dI-'l0NlIgz K9% 4 +dado 'deId@U K6$ 2 +dados 'deId@Uz Kj$ 2 +dads d&dz Kj% 1 +daemon 'dim@n K6$ 2 +daemons 'dim@nz Kj$ 2 +daffodil 'd&f@dIl K6% 3 +daffodils 'd&f@dIlz Kj% 3 +daft dAft OC% 1 +dafter 'dAft@R Or% 2 +daftest 'dAftIst Os% 2 +daftly 'dAftlI Pu$ 2 +dagger 'd&g@R K6% 2 +daggers 'd&g@z Kj% 2 +dago 'deIg@U K6$ 2 +dagos 'deIg@Uz Kj$ 2 +daguerreotype d@'ger@taIp K6$ 4 +daguerreotypes d@'ger@taIps Kj$ 4 +dahlia 'deIlI@ K6% 3 +dahlias 'deIlI@z Kj% 3 +dailies 'deIlIz Kj% 2 +daily 'deIlI K8%,OA%,Pu% 2 +daintier 'deIntI@R Or% 3 +dainties 'deIntIz Kj% 2 +daintiest 'deIntIIst Os% 3 +daintily 'deIntIlI Pu% 3 +daintiness 'deIntIn@s L@% 3 +dainty 'deIntI K8%,OD% 2 +dairies 'de@rIz Kj% 2 +dairy 'de@rI K8% 2 +dairy-farm 'de@rI-fAm K6% 3 +dairy-farming 'de@rI-fAmIN L@% 4 +dairy-farms 'de@rI-fAmz Kj% 3 +dairying 'de@rIIN L@% 3 +dairymaid 'de@rImeId K6% 3 +dairymaids 'de@rImeIdz Kj% 3 +dairyman 'de@rIm&n Ki% 3 +dairymen 'de@rImen Kj% 3 +dais 'deIIs K7% 2 +daises 'deIIsIz Kj$ 3 +daisies 'deIzIz Kj% 2 +daisy 'deIzI K8% 2 +dale deIl K6% 1 +dales deIlz Kj% 1 +dalesman 'deIlzm@n Ki% 2 +dalesmen 'deIlzm@n Kj% 2 +dalliance 'd&lI@ns L@% 3 +dallied 'd&lId Ic%,Id% 22A,3A +dallies 'd&lIz Ia% 22A,3A +dally 'd&lI I3% 22A,3A +dallying 'd&lIIN Ib% 32A,3A +dalmatian ,d&l'meISn K6% 3 +dalmatians ,d&l'meISnz Kj% 3 +dam d&m H4%,K6% 16A,15B +damage 'd&mIdZ H2%,M6% 26A +damaged 'd&mIdZd Hc%,Hd% 26A +damages 'd&mIdZIz Ha%,Mj% 36A +damaging 'd&mIdZIN Hb% 36A +damascene 'd&m@sin H2$,OA$ 3 +damascened 'd&m@sind Hc$,Hd$ 3 +damascenes 'd&m@sinz Ha$ 3 +damascening 'd&m@sinIN Hb$ 4 +damask 'd&m@sk L@% 2 +dame deIm K6% 1 +dames deImz Kj% 1 +dammed d&md Hc%,Hd% 16A,15B +damming 'd&mIN Hb% 26A,15B +damn d&m H0%,Ki%,OA%,Pu% 16A +damnable 'd&mn@bl OA% 3 +damnably 'd&mn@blI Pu% 3 +damnation d&m'neISn L@% 3 +damned d&md Hc%,Hd%,OA%,Pu% 16A +damning 'd&mIN Hb% 26A +damns d&mz Ha% 16A +damp d&mp J0%,L@%,OC% 12C,6A,15B +damped d&mpt Jc%,Jd% 12C,6A,15B +dampen 'd&mp@n J0% 2 +dampened 'd&mp@nd Jc%,Jd% 2 +dampening 'd&mp@nIN Jb% 3 +dampens 'd&mp@nz Ja% 2 +damper 'd&mp@R K6%,Or% 2 +dampers 'd&mp@z Kj% 2 +dampest 'd&mpIst Os% 2 +damping 'd&mpIN Jb% 22C,6A,15B +dampish 'd&mpIS OA% 2 +damply 'd&mplI Pu% 2 +dampness 'd&mpn@s L@% 2 +damps d&mps Ja% 12C,6A,15B +dams d&mz Ha%,Kj% 16A,15B +damsel 'd&mzl K6% 2 +damsels 'd&mzlz Kj% 2 +damson 'd&mz@n K6% 2 +damsons 'd&mz@nz Kj% 2 +dance dAns J2%,K6% 12A,2C,6A,15A +dance-band 'dAns-b&nd K6% 2 +dance-bands 'dAns-b&ndz Kj% 2 +dance-hall 'dAns-hOl K6% 2 +dance-halls 'dAns-hOlz Kj% 2 +dance-orchestra 'dAns-OkIstr@ K6% 4 +dance-orchestras 'dAns-OkIstr@z Kj% 4 +danced dAnst Jc%,Jd% 12A,2C,6A,15A +dancer 'dAns@R K6% 2 +dancers 'dAns@z Kj% 2 +dances 'dAnsIz Ja%,Kj% 22A,2C,6A,15A +dancing 'dAnsIN Jb%,L@%,OA% 22A,2C,6A,15A +dandelion 'd&ndIlaI@n K6% 4 +dandelions 'd&ndIlaI@nz Kj% 4 +dander 'd&nd@R Ki$ 2 +dandies 'd&ndIz Kj% 2 +dandified 'd&ndIfaId OA% 3 +dandle 'd&ndl H2$ 26A,15A,15B +dandled 'd&ndld Hc$,Hd$ 26A,15A,15B +dandles 'd&ndlz Ha$ 26A,15A,15B +dandling 'd&ndlIN Hb$ 26A,15A,15B +dandruff 'd&ndrVf L@% 2 +dandy 'd&ndI K8%,OA% 2 +danger 'deIndZ@R M6% 2 +dangerous 'deIndZ@r@s OA% 3 +dangerously 'deIndZ@r@slI Pu% 4 +dangers 'deIndZ@z Mj% 2 +dangle 'd&Ngl J2% 22A,2C,6A,15A +dangled 'd&Ngld Jc%,Jd% 22A,2C,6A,15A +dangles 'd&Nglz Ja% 22A,2C,6A,15A +dangling 'd&NglIN Jb% 22A,2C,6A,15A +dank d&Nk OC% 1 +danker 'd&Nk@R Or% 2 +dankest 'd&NkIst Os% 2 +danse macabre dAns m@'kAbr@ Ki% 4 +daphne 'd&fnI K6$ 2 +daphnes 'd&fnIz Kj$ 2 +dapper 'd&p@R OA% 2 +dapple 'd&pl H2% 26A +dapple-grey ,d&pl-'greI K6%,OA% 3 +dapple-greys ,d&pl-'greIz Kj$ 3 +dappled 'd&pld Hc%,Hd% 26A +dapples 'd&plz Ha% 26A +dappling 'd&plIN Hb% 26A +dare de@R G2%,J2%,K6% 14A,5,6A,17 +dared de@d Gc%,Gd%,Jc%,Jd% 14A,5,6A,17 +daredevil 'de@devl K6% 3 +daredevils 'de@devlz Kj% 3 +daren't de@nt Gg% 1 +dares de@z Ga%,Ja%,Kj% 14A,5,6A,17 +daring 'de@rIN Gb%,Jb%,L@%,OA% 24A,5,6A,17 +daringly 'de@rINlI Pu% 3 +dark dAk L@%,OC% 1 +darken 'dAk@n J0% 22A,6A +darkened 'dAk@nd Jc%,Jd% 22A,6A +darkening 'dAk@nIN Jb% 32A,6A +darkens 'dAk@nz Ja% 22A,6A +darker 'dAk@R Or% 2 +darkest 'dAkIst Os% 2 +darkly 'dAklI Pu% 2 +darkness 'dAkn@s L@% 2 +darkroom 'dAkrum K6% 2 +darkrooms 'dAkrumz Kj% 2 +darling 'dAlIN K6% 2 +darlings 'dAlINz Kj% 2 +darn dAn J0%,K6% 12A,6A +darned dAnd Jc%,Jd% 12A,6A +darning 'dAnIN Jb%,L@% 22A,6A +darning-needle 'dAnIN-nidl K6% 4 +darning-needles 'dAnIN-nidlz Kj% 4 +darns dAnz Ja%,Kj% 12A,6A +dart dAt J0%,K6% 12A,2C,6A,15A,15B +darted 'dAtId Jc%,Jd% 22A,2C,6A,15A,15B +darting 'dAtIN Jb% 22A,2C,6A,15A,15B +darts dAts Ja%,Kj% 12A,2C,6A,15A,15B +dash d&S J1%,M7% 12C,6A,15A,15B +dashboard 'd&SbOd K6% 2 +dashboards 'd&SbOdz Kj% 2 +dashed d&St Jc%,Jd% 12C,6A,15A,15B +dashes 'd&SIz Ja%,Mj% 22C,6A,15A,15B +dashing 'd&SIN Jb%,OA% 22C,6A,15A,15B +dashingly 'd&SINlI Pu% 3 +dastard 'd&st@d K6$ 2 +dastardly 'd&st@dlI OA% 3 +dastards 'd&st@dz Kj$ 2 +data 'deIt@ M9% 2 +datable 'deIt@bl OA% 3 +date deIt J2%,M6% 12A,2C,3A,6A +dated 'deItId Jc%,Jd%,OA% 22A,2C,3A,6A +dateless 'deItl@s OA% 2 +dateline 'deItlaIn K6% 2 +datelines 'deItlaInz Kj$ 2 +dates deIts Ja%,Mj% 12A,2C,3A,6A +dating 'deItIN Jb% 22A,2C,3A,6A +dative 'deItIv K6%,OA% 2 +datives 'deItIvz Kj$ 2 +datum 'deIt@m Ki$ 2 +daub dOb J0%,M6% 12A,6A,14,15A,15B +daubed dObd Jc%,Jd% 12A,6A,14,15A,15B +dauber 'dOb@R K6% 2 +daubers 'dOb@z Kj% 2 +daubing 'dObIN Jb% 22A,6A,14,15A,15B +daubs dObz Ja%,Mj% 12A,6A,14,15A,15B +daughter 'dOt@R K6% 2 +daughter-in-law 'dOt@r-In-lO Ki% 4 +daughterly 'dOt@lI OA% 3 +daughters 'dOt@z Kj% 2 +daughters-in-law 'dOt@z-In-lO Kj% 4 +daunt dOnt H0$ 16A +daunted 'dOntId Hc$,Hd% 26A +daunting 'dOntIN Hb% 26A +dauntless 'dOntlIs OA% 2 +dauntlessly 'dOntlIslI Pu% 3 +daunts dOnts Ha$ 16A +dauphin 'dOfIn K6$ 2 +dauphins 'dOfInz Kj$ 2 +davenport 'd&vnpOt K6$ 3 +davenports 'd&vnpOts Kj$ 3 +davit 'd&vIt K6$ 2 +davits 'd&vIts Kj$ 2 +daw dO K6$ 1 +dawdle 'dOdl J2% 22A,2C,15B +dawdled 'dOdld Jc%,Jd% 22A,2C,15B +dawdler 'dOdl@R K6% 2 +dawdlers 'dOdl@z Kj% 2 +dawdles 'dOdlz Ja% 22A,2C,15B +dawdling 'dOdlIN Jb% 22A,2C,15B +dawn dOn I0%,M6% 12A,3A +dawned dOnd Ic%,Id% 12A,3A +dawning 'dOnIN Ib% 22A,3A +dawns dOnz Ia%,Mj% 12A,3A +daws dOz Kj$ 1 +day deI M6* 1 +day-boarder 'deI-bOd@R K6% 3 +day-boarders 'deI-bOd@z Kj% 3 +day-labourer 'deI-leIb@r@R K6% 4 +day-labourers 'deI-leIb@r@z Kj% 4 +day-return ,deI-rI't3n K6% 3 +day-returns ,deI-rI't3nz Kj% 3 +day-school 'deI-skul K6% 2 +day-schools 'deI-skulz Kj% 2 +daybook 'deIbUk K6% 2 +daybooks 'deIbUks Kj% 2 +dayboy 'deIboI K6% 2 +dayboys 'deIboIz Kj% 2 +daybreak 'deIbreIk K6% 2 +daybreaks 'deIbreIks Kj% 2 +daydream 'deIdrim I0%,K6% 2 +daydreamed 'deIdrimd Ic%,Id% 2 +daydreaming 'deIdrimIN Ib% 3 +daydreams 'deIdrimz Ia%,Kj% 2 +daygirl 'deIg3l K6% 2 +daygirls 'deIg3lz Kj% 2 +daylight 'deIlaIt L@% 2 +daylight-saving ,deIlaIt-'seIvIN L@%,OA% 4 +daylong 'deIl0N OA%,Pu% 2 +days deIz Mj* 1 +dayspring 'deIsprIN K6$ 2 +daysprings 'deIsprINz Kj$ 2 +daytime 'deItaIm K6% 2 +daytimes 'deItaImz Kj% 2 +daze deIz H2%,Ki% 16A +dazed deIzd Hc%,Hd% 16A +dazedly 'deIzIdlI Pu% 3 +dazes 'deIzIz Ha% 26A +dazing 'deIzIN Hb% 26A +dazzle 'd&zl H2%,L@% 26A +dazzled 'd&zld Hc%,Hd% 26A +dazzles 'd&zlz Ha% 26A +dazzling 'd&zlIN Hb% 26A +de facto ,deI 'f&kt@U OA%,Pu% 3 +de jure ,deI 'dZU@rI OA%,Pu% 3 +de luxe dI 'lVks OA% 2 +de rigeur d@ rI'g3R Op% 3 +de trop d@ 'tr@U Op% 2 +de-escalate ,di-'esk@leIt H2% 46A +de-escalated ,di-'esk@leItId Hc%,Hd% 56A +de-escalates ,di-'esk@leIts Ha% 46A +de-escalating ,di-'esk@leItIN Hb% 56A +de-escalation di-,esk@'leISn K6% 5 +de-escalations di-,esk@'leISnz Kj% 5 +de-ice ,di-'aIs H2% 26A +de-iced ,di-'aIst Hc%,Hd% 26A +de-ices ,di-'aIsIz Ha% 36A +de-icing ,di-'aIsIN Hb% 36A +deacon 'dik@n K6% 2 +deaconess 'dik@nes K7% 3 +deaconesses 'dik@nesIz Kj% 4 +deacons 'dik@nz Kj% 2 +dead ded OA%,Pu% 1 +deaden 'dedn H0% 26A +deadened 'dednd Hc%,Hd% 26A +deadening 'dednIN Hb% 36A +deadens 'dednz Ha% 26A +deadlier 'dedlI@R Or% 3 +deadliest 'dedlIIst Os% 3 +deadline 'dedlaIn K6% 2 +deadlines 'dedlaInz Kj% 2 +deadlock 'dedl0k M6% 2 +deadlocked 'dedl0kt OA% 2 +deadlocks 'dedl0ks Mj$ 2 +deadly 'dedlI OD%,Pu% 2 +deadpan 'dedp&n OA% 2 +deaf def OC% 1 +deaf mute ,def 'mjut K6% 2 +deaf mutes ,def 'mjuts Kj% 2 +deaf-aid 'def-eId K6% 2 +deaf-aids 'def-eIdz Kj% 2 +deafen 'defn H0% 26A +deafened 'defnd Hc%,Hd% 26A +deafening 'defnIN Hb% 36A +deafens 'defnz Ha% 26A +deafer 'def@R Or% 2 +deafest 'defIst Os% 2 +deafness 'defn@s L@% 2 +deal dil J5%,K6%,Pu% 12A,3A,6A,12A,13A,15B +dealer 'dil@R K6% 2 +dealers 'dil@z Kj% 2 +dealing 'dilIN Jb%,M6% 22A,3A,6A,12A,13A,15B +dealings 'dilINz Mj% 2 +deals dilz Ja%,Kj% 12A,3A,6A,12A,13A,15B +dealt delt Jc%,Jd% 12A,3A,6A,12A,13A,15B +dean din K6% 1 +deaneries 'din@rIz Kj$ 3 +deanery 'din@rI K8% 3 +deans dinz Kj% 1 +dear dI@R K6%,OC%,Pu%,W-% 1 +dearer 'dI@r@R Or% 2 +dearest 'dI@rIst Ki%,Os% 2 +dearie 'dI@rI K6% 2 +dearies 'dI@rIz Kj% 3 +dearly 'dI@lI Pu% 2 +dearness 'dI@n@s L@% 2 +dears dI@z Kj% 1 +dearth d3T K6% 1 +dearths d3Ts Kj$ 1 +deary 'dI@rI K8$ 2 +death deT M6% 1 +death-duties 'deT-djutIz Kj% 3 +death-mask 'deT-mAsk K6% 2 +death-masks 'deT-mAsks Kj% 2 +death-rate 'deT-reIt K6% 2 +death-rates 'deT-reIts Kj$ 2 +death-roll 'deT-r@Ul K6% 2 +death-rolls 'deT-r@Ulz Kj$ 2 +death-warrant 'deT-w0r@nt K6% 3 +death-warrants 'deT-w0r@nts Kj$ 3 +deathbed 'deTbed K6% 2 +deathbeds 'deTbedz Kj$ 2 +deathblow 'deTbl@U K6% 2 +deathblows 'deTbl@Uz Kj% 2 +deathless 'deTlIs OA% 2 +deathlike 'deTlaIk OA% 2 +deathly 'deTlI OA%,Pu% 2 +deaths deTs Mj% 1 +deathtrap 'deTtr&p K6% 2 +deathtraps 'deTtr&ps Kj% 2 +deb deb K6% 1 +debag ,di'b&g H4% 26A +debagged ,di'b&gd Hc%,Hd% 26A +debagging ,di'b&gIN Hb% 36A +debags ,di'b&gz Ha% 26A +debar dI'bAR H4% 214 +debark dI'bAk J0$ 2 +debarkation ,dibA'keISn K6$ 4 +debarkations ,dibA'keISnz Kj$ 4 +debarked dI'bAkt Jc$,Jd$ 2 +debarking dI'bAkIN Jb$ 3 +debarks dI'bAks Ja$ 2 +debarred dI'bAd Hc%,Hd% 214 +debarring dI'bArIN Hb% 314 +debars dI'bAz Ha% 214 +debase dI'beIs H2% 26A +debased dI'beIst Hc%,Hd% 26A +debasement dI'beIsm@nt K6% 3 +debasements dI'beIsm@nts Kj$ 3 +debases dI'beIsIz Ha% 36A +debasing dI'beIsIN Hb% 36A +debatable dI'beIt@bl OA% 4 +debate dI'beIt J2%,M6% 22A,2C,6A,8,10 +debated dI'beItId Jc%,Jd% 32A,2C,6A,8,10 +debater dI'beIt@R K6% 3 +debaters dI'beIt@z Kj% 3 +debates dI'beIts Ja%,Mj% 22A,2C,6A,8,10 +debating dI'beItIN Jb% 32A,2C,6A,8,10 +debauch dI'bOtS H1%,K7% 26A +debauched dI'bOtSt Hc%,Hd% 26A +debauchee dI,bO'tSi K6% 3 +debauchees dI,bO'tSiz Kj% 3 +debaucheries dI'bOtS@rIz Mj$ 4 +debauchery dI'bOtS@rI M8% 4 +debauches dI'bOtSIz Ha%,Kj% 36A +debauching dI'bOtSIN Hb% 36A +debenture dI'bentS@R K6$ 3 +debentures dI'bentS@z Kj$ 3 +debilitate dI'bIlIteIt H2% 46A +debilitated dI'bIlIteItId Hc%,Hd% 56A +debilitates dI'bIlIteIts Ha% 46A +debilitating dI'bIlIteItIN Hb% 56A +debility dI'bIlItI L@% 4 +debit 'debIt H0%,K6% 26A,14 +debit-side 'debIt-saId K6% 3 +debit-sides 'debIt-saIdz Kj$ 3 +debited 'debItId Hc%,Hd% 36A,14 +debiting 'debItIN Hb% 36A,14 +debits 'debIts Ha%,Kj% 26A,14 +debonair ,deb@'ne@R OA% 3 +debouch dI'baUtS J1$ 22A,6A +debouched dI'baUtSt Jc$,Jd$ 22A,6A +debouches dI'baUtSIz Ja$ 32A,6A +debouching dI'baUtSIN Jb$ 32A,6A +debrief ,di'brif H0% 26A +debriefed ,di'brift Hc%,Hd% 26A +debriefing ,di'brifIN Hb% 36A +debriefs ,di'brifs Ha% 26A +debris 'deIbri L@% 2 +debs debz Kj% 1 +debt det M6% 1 +debtor 'det@R K6% 2 +debtors 'det@z Kj% 2 +debts dets Mj% 1 +debug ,di'bVg H4% 26A +debugged ,di'bVgd Hc%,Hd% 26A +debugging ,di'bVgIN Hb% 36A +debugs ,di'bVgz Ha% 26A +debunk di'bVNk H0% 26A +debunked di'bVNkt Hc%,Hd% 26A +debunking di'bVNkIN Hb% 36A +debunks di'bVNks Ha% 26A +debut 'deIbju K6% 2 +debutante 'debjutAnt K6% 3 +debutantes 'debjutAnts Kj% 3 +debuts 'deIbjuz Kj% 2 +deca- ,dek@- U-% 2 +decade 'dekeId K6% 2 +decadence 'dek@d@ns L@% 3 +decadent 'dek@d@nt K6$,OA% 3 +decadents 'dek@d@nts Kj$ 3 +decades 'dekeIdz Kj% 2 +decamp dI'k&mp I0% 22A,3A +decamped dI'k&mpt Ic%,Id% 22A,3A +decamping dI'k&mpIN Ib% 32A,3A +decamps dI'k&mps Ia% 22A,3A +decant dI'k&nt H0% 26A +decanted dI'k&ntId Hc%,Hd% 36A +decanter dI'k&nt@R K6% 3 +decanters dI'k&nt@z Kj% 3 +decanting dI'k&ntIN Hb% 36A +decants dI'k&nts Ha% 26A +decapitate dI'k&pIteIt H2% 46A +decapitated dI'k&pIteItId Hc%,Hd% 56A +decapitates dI'k&pIteIts Ha% 46A +decapitating dI'k&pIteItIN Hb% 56A +decapitation dI,k&pI'teISn K6$ 5 +decapitations dI,k&pI'teISnz Kj$ 5 +decarbonize ,di'kAb@naIz H2$ 4 +decarbonized ,di'kAb@naIzd Hc$,Hd$ 4 +decarbonizes ,di'kAb@naIzIz Ha$ 5 +decarbonizing ,di'kAb@naIzIN Hb$ 5 +decasyllabic ,dek@sI'l&bIk OA$ 5 +decasyllable 'dek@sIl@bl K6$ 5 +decasyllables 'dek@sIl@blz Kj$ 5 +decay dI'keI I0%,L@% 22A +decayed dI'keId Ic%,Id% 22A +decaying dI'keIIN Ib% 32A +decays dI'keIz Ia% 22A +decease dI'sis I2%,L@$ 2 +deceased dI'sist Ic%,Id% 2 +deceases dI'sisIz Ia$ 3 +deceasing dI'sisIN Ib$ 3 +deceit dI'sit M6% 2 +deceitful dI'sitfUl OA% 3 +deceitfully dI'sitfUlI Pu% 4 +deceitfulness dI'sitfUln@s L@% 4 +deceits dI'sits Mj% 2 +deceive dI'siv H2% 26A,14 +deceived dI'sivd Hc%,Hd% 26A,14 +deceiver dI'siv@R K6% 3 +deceivers dI'siv@z Kj% 3 +deceives dI'sivz Ha% 26A,14 +deceiving dI'sivIN Hb% 36A,14 +deceivingly dI'sivINlI Pu% 4 +decelerate ,di'sel@reIt J2% 4 +decelerated ,di'sel@reItId Jc%,Jd% 5 +decelerates ,di'sel@reIts Ja% 4 +decelerating ,di'sel@reItIN Jb% 5 +decencies 'disnsIz Mj% 3 +decency 'disnsI M8% 3 +decent 'disnt OA% 2 +decently 'disntlI Pu% 3 +decentralization ,di,sentr@laI'zeISn L@% 6 +decentralize ,di'sentr@laIz H2% 46A +decentralized ,di'sentr@laIzd Hc%,Hd% 46A +decentralizes ,di'sentr@laIzIz Ha% 56A +decentralizing ,di'sentr@laIzIN Hb% 56A +deception dI'sepSn M6% 3 +deceptions dI'sepSnz Mj% 3 +deceptive dI'septIv OA% 3 +deceptively dI'septIvlI Pu% 4 +deci- ,desI- U-% 2 +decibel 'desIbel K6% 3 +decibels 'desIbelz Kj% 3 +decide dI'saId J2% 22A,3A,6A,7A,8,9,10,14,17 +decided dI'saIdId Jc%,Jd%,OA% 32A,3A,6A,7A,8,9,10,14,17 +decidedly dI'saIdIdlI Pu% 4 +decides dI'saIdz Ja% 22A,3A,6A,7A,8,9,10,14,17 +deciding dI'saIdIN Jb% 32A,3A,6A,7A,8,9,10,14,17 +deciduous dI'sIdjU@s OA% 4 +decimal 'desIml OA% 3 +decimalization ,desIm@laI'zeISn L@% 6 +decimalize 'desIm@laIz H2% 46A +decimalized 'desIm@laIzd Hc%,Hd% 46A +decimalizes 'desIm@laIzIz Ha% 56A +decimalizing 'desIm@laIzIN Hb% 56A +decimals 'desImlz Kj% 3 +decimate 'desImeIt H2% 36A +decimated 'desImeItId Hc%,Hd% 46A +decimates 'desImeIts Ha% 36A +decimating 'desImeItIN Hb% 46A +decipher dI'saIf@R H0% 36A +decipherable dI'saIfr@bl OA% 4 +deciphered dI'saIf@d Hc%,Hd% 36A +deciphering dI'saIf@rIN Hb% 46A +deciphers dI'saIf@z Ha% 36A +decision dI'sIZn M6% 3 +decisions dI'sIZnz Mj% 3 +decisive dI'saIsIv OA% 3 +decisively dI'saIsIvlI Pu% 4 +deck dek H0%,K6% 16A,14,15A +decked dekt Hc%,Hd% 16A,14,15A +decker 'dek@R K6% 2 +deckers 'dek@z Kj% 2 +decking 'dekIN Hb% 26A,14,15A +deckle-edged ,dekl-'edZd OA% 3 +decks deks Ha%,Kj% 16A,14,15A +declaim dI'kleIm J0% 22A,3A,6A +declaimed dI'kleImd Jc%,Jd% 22A,3A,6A +declaiming dI'kleImIN Jb% 32A,3A,6A +declaims dI'kleImz Ja% 22A,3A,6A +declamation ,dekl@'meISn M6$ 4 +declamations ,dekl@'meISnz Mj$ 4 +declamatory dI'kl&m@t@rI OA% 5 +declarable dI'kle@r@bl OA% 4 +declaration ,dekl@'reISn M6% 4 +declarations ,dekl@'reISnz Mj% 4 +declare dI'kle@R J2% 23A,6A,9,14,25 +declared dI'kle@d Jc%,Jd% 23A,6A,9,14,25 +declares dI'kle@z Ja% 23A,6A,9,14,25 +declaring dI'kle@rIN Jb% 33A,6A,9,14,25 +declassification ,di,kl&sIfI'keISn M6% 6 +declassifications ,di,kl&sIfI'keISnz Mj$ 6 +declassified ,di'kl&sIfaId Hc%,Hd% 46A +declassifies ,di'kl&sIfaIz Ha% 46A +declassify ,di'kl&sIfaI H3% 46A +declassifying ,di'kl&sIfaIIN Hb% 56A +declension dI'klenSn M6% 3 +declensions dI'klenSnz Mj% 3 +declination ,deklI'neISn K6$ 4 +declinations ,deklI'neISnz Kj$ 4 +decline dI'klaIn J2%,K6% 22A,2C,6A,7A +declined dI'klaInd Jc%,Jd% 22A,2C,6A,7A +declines dI'klaInz Ja%,Kj% 22A,2C,6A,7A +declining dI'klaInIN Jb% 32A,2C,6A,7A +declivities dI'klIvItIz Kj$ 4 +declivity dI'klIvItI K8$ 4 +declutch ,di'klVtS I1% 22A +declutched ,di'klVtSt Ic%,Id% 22A +declutches ,di'klVtSIz Ia% 32A +declutching ,di'klVtSIN Ib% 32A +decode ,di'k@Ud H2% 26A +decoded ,di'k@UdId Hc%,Hd% 36A +decoder ,di'k@Ud@R K6% 3 +decoders ,di'k@Ud@z Kj% 3 +decodes ,di'k@Udz Ha% 26A +decoding ,di'k@UdIN Hb% 36A +decoke ,di'k@Uk H2% 2 +decoked ,di'k@Ukt Hc%,Hd% 2 +decokes ,di'k@Uks Ha% 2 +decoking ,di'k@UkIN Hb% 3 +decolonization ,di,k0l@naI'zeISn L@% 6 +decolonize ,di'k0l@naIz H2% 46A +decolonized ,di'k0l@naIzd Hc%,Hd% 46A +decolonizes ,di'k0l@naIzIz Ha% 56A +decolonizing ,di'k0l@naIzIN Hb% 56A +decompose ,dik@m'p@Uz J2% 32A,6A +decomposed ,dik@m'p@Uzd Jc%,Jd% 32A,6A +decomposes ,dik@m'p@UzIz Ja% 42A,6A +decomposing ,dik@m'p@UzIN Jb% 42A,6A +decomposition ,dik0mp@'zISn M6% 5 +decompositions ,dik0mp@'zISnz Mj$ 5 +decompress ,dik@m'pres H1% 36A +decompressed ,dik@m'prest Hc%,Hd% 36A +decompresses ,dik@m'presIz Ha% 46A +decompressing ,dik@m'presIN Hb% 46A +decompression ,dik@m'preSn K6% 4 +decompressions ,dik@m'preSnz Kj$ 4 +decontaminate ,dik@n't&mIneIt H2% 56A +decontaminated ,dik@n't&mIneItId Hc%,Hd% 66A +decontaminates ,dik@n't&mIneIts Ha% 56A +decontaminating ,dik@n't&mIneItIN Hb% 66A +decontamination ,dik@n,t&mI'neISn L@% 6 +decontrol ,dik@n'tr@Ul H4$ 36A +decontrolled ,dik@n'tr@Uld Hc$,Hd$ 36A +decontrolling ,dik@n'tr@UlIN Hb$ 46A +decontrols ,dik@n'tr@Ulz Ha$ 36A +decorate 'dek@reIt H2% 36A,14 +decorated 'dek@reItId Hc%,Hd% 46A,14 +decorates 'dek@reIts Ha% 36A,14 +decorating 'dek@reItIN Hb% 46A,14 +decoration ,dek@'reISn M6% 4 +decorations ,dek@'reISnz Mj% 4 +decorative 'dek@r@tIv OA% 4 +decorator 'dek@reIt@R K6% 4 +decorators 'dek@reIt@z Kj% 4 +decorous 'dek@r@s OA% 3 +decorously 'dek@r@slI Pu% 4 +decorum dI'kOr@m L@% 3 +decoy 'dikoI K6% 2 +decoy dI'koI H0% 26A,14 +decoyed dI'koId Hc%,Hd% 26A,14 +decoying dI'koIIN Hb% 36A,14 +decoys 'dikoIz Kj% 2 +decoys dI'koIz Ha% 26A,14 +decrease 'dikris M6% 2 +decrease dI'kris J2% 22A,6A +decreased dI'krist Jc%,Jd% 22A,6A +decreases 'dikrisIz Mj% 3 +decreases dI'krisIz Ja% 32A,6A +decreasing dI'krisIN Jb% 32A,6A +decree dI'kri H5%,K6% 26A,9 +decree nisi dI,kri 'naIsaI Ki% 4 +decreed dI'krid Hc%,Hd% 26A,9 +decreeing dI'kriIN Hb% 36A,9 +decrees dI'kriz Ha%,Kj% 26A,9 +decrepit dI'krepIt OA% 3 +decrepitude dI'krepItjud L@$ 4 +decried dI'kraId Hc$,Hd$ 26A +decries dI'kraIz Ha$ 26A +decry dI'kraI H3$ 26A +decrying dI'kraIIN Hb$ 36A +dedicate 'dedIkeIt H2% 36A,14 +dedicated 'dedIkeItId Hc%,Hd% 46A,14 +dedicates 'dedIkeIts Ha% 36A,14 +dedicating 'dedIkeItIN Hb% 46A,14 +dedication ,dedI'keISn M6% 4 +dedications ,dedI'keISnz Mj% 4 +deduce dI'djus H2% 26A,9,14 +deduced dI'djust Hc%,Hd% 26A,9,14 +deduces dI'djusIz Ha% 36A,9,14 +deducing dI'djusIN Hb% 36A,9,14 +deduct dI'dVkt H0% 26A,14 +deducted dI'dVktId Hc%,Hd% 36A,14 +deductible dI'dVkt@bl OA% 4 +deducting dI'dVktIN Hb% 36A,14 +deduction dI'dVkSn M6% 3 +deductions dI'dVkSnz Mj% 3 +deductive dI'dVktIv OA% 3 +deducts dI'dVkts Ha% 26A,14 +deed did K6% 1 +deed-box 'did-b0ks K7$ 2 +deed-boxes 'did-b0ksIz Kj$ 3 +deedpoll 'didp@Ul M6% 2 +deedpolls 'didp@Ulz Mj$ 2 +deeds didz Kj% 1 +deem dim H0% 19,25 +deemed dimd Hc%,Hd% 19,25 +deeming 'dimIN Hb% 29,25 +deems dimz Ha% 19,25 +deep dip K6%,OC%,Pu% 1 +deep-freeze dip-'friz H5%,K6% 2 +deep-freezes dip-'frizIz Ha$,Kj% 3 +deep-freezing dip-'frizIN Hb$ 3 +deep-froze dip-'fr@Uz Hc$ 2 +deep-frozen dip-'fr@Uzn Hd% 3 +deep-laid dip-'leId OA$ 2 +deep-mined dip-'maInd OA$ 2 +deep-rooted dip-'rutId OA% 3 +deep-sea 'dip-si Oq% 2 +deep-seated dip-'sitId OA% 3 +deep-water 'dip-wOt@R Oq% 3 +deepen 'dip@n J0% 2 +deepened 'dip@nd Jc%,Jd% 2 +deepening 'dip@nIN Jb% 3 +deepens 'dip@nz Ja% 2 +deeper 'dip@R Or% 2 +deepest 'dipIst Os% 2 +deeply 'diplI Pu% 2 +deepness 'dipn@s L@% 2 +deeps dips Kj% 1 +deer dI@R K9% 1 +deerskin 'dI@skIn K6% 2 +deerskins 'dI@skInz Kj$ 2 +deerstalker 'dI@stOk@R K6% 3 +deerstalkers 'dI@stOk@z Kj% 3 +deerstalking 'dI@stOkIN L@% 3 +deface dI'feIs H2% 26A +defaced dI'feIst Hc%,Hd% 26A +defacement dI'feIsm@nt M6% 3 +defacements dI'feIsm@nts Mj$ 3 +defaces dI'feIsIz Ha% 36A +defacing dI'feIsIN Hb% 36A +defalcation ,dif&l'keISn M6$ 4 +defalcations ,dif&l'keISnz Mj$ 4 +defamation ,def@'meISn L@% 4 +defamatory dI'f&m@trI OA% 4 +defame dI'feIm H2% 26A +defamed dI'feImd Hc%,Hd% 26A +defames dI'feImz Ha% 26A +defaming dI'feImIN Hb% 36A +default dI'fOlt I0%,L@% 22A +defaulted dI'fOltId Ic%,Id% 32A +defaulter dI'fOlt@R K6% 3 +defaulters dI'fOlt@z Kj% 3 +defaulting dI'fOltIN Ib% 32A +defaults dI'fOlts Ia% 22A +defeat dI'fit H0%,M6% 26A +defeated dI'fitId Hc%,Hd% 36A +defeating dI'fitIN Hb% 36A +defeatism dI'fitIz@m L@$ 4 +defeatist dI'fitIst K6% 3 +defeatists dI'fitIsts Kj$ 3 +defeats dI'fits Ha%,Mj% 26A +defecate 'def@keIt I2% 32A +defecated 'def@keItId Ic%,Id% 42A +defecates 'def@keIts Ia% 32A +defecating 'def@keItIN Ib% 42A +defecation ,def@'keISn M6% 4 +defecations ,def@'keISnz Mj$ 4 +defect 'difekt K6% 2 +defect dI'fekt I0% 22A,2C,3A +defected dI'fektId Ic%,Id% 32A,2C,3A +defecting dI'fektIN Ib% 32A,2C,3A +defection dI'fekSn M6% 3 +defections dI'fekSnz Mj% 3 +defective dI'fektIv OA% 3 +defectively dI'fektIvlI Pu% 4 +defectiveness dI'fektIvn@s L@% 4 +defector dI'fekt@R K6% 3 +defectors dI'fekt@z Kj% 3 +defects 'difekts Kj% 2 +defects dI'fekts Ia% 22A,2C,3A +defence dI'fens M6% 2 +defenceless dI'fensl@s OA% 3 +defencelessly dI'fensl@slI Pu% 4 +defencelessness dI'fensl@sn@s L@% 4 +defences dI'fensIz Mj% 3 +defend dI'fend H0% 26A,14 +defendant dI'fend@nt K6% 3 +defendants dI'fend@nts Kj% 3 +defended dI'fendId Hc%,Hd% 36A,14 +defender dI'fend@R K6% 3 +defenders dI'fend@z Kj% 3 +defending dI'fendIN Hb% 36A,14 +defends dI'fendz Ha% 26A,14 +defensible dI'fens@bl OA% 4 +defensive dI'fensIv Ki%,OA% 3 +defensively dI'fensIvlI Pu% 4 +defer dI'f3R J4% 23A,6A,6C +deference 'def@r@ns L@% 3 +deferential ,def@'renSl OA% 4 +deferentially ,def@'renS@lI Pu% 5 +deferment dI'f3m@nt K6% 3 +deferments dI'f3m@nts Kj$ 3 +deferred dI'f3d Jc%,Jd% 23A,6A,6C +deferring dI'f3rIN Jb% 33A,6A,6C +defers dI'f3z Ja% 23A,6A,6C +defiance dI'faI@ns L@% 3 +defiant dI'faI@nt OA% 3 +defiantly dI'faI@ntlI Pu% 4 +deficiencies dI'fISnsIz Mj% 4 +deficiency dI'fISnsI M8% 4 +deficient dI'fISnt OA% 3 +deficit 'defIsIt K6% 3 +deficits 'defIsIts Kj% 3 +defied dI'faId Hc%,Hd% 26A,17 +defies dI'faIz Ha% 26A,17 +defile 'difaIl K6% 2 +defile dI'faIl J2% 26A +defiled dI'faIld Jc%,Jd% 26A +defilement dI'faIlm@nt L@$ 3 +defiles 'difaIlz Kj% 2 +defiles dI'faIlz Ja% 26A +defiling dI'faIlIN Jb% 36A +definable dI'faIn@bl OA% 4 +define dI'faIn H2% 26A +defined dI'faInd Hc%,Hd% 26A +defines dI'faInz Ha% 26A +defining dI'faInIN Hb% 36A +definite 'defIn@t OA% 3 +definitely 'defIn@tlI Pu% 4 +definition ,defI'nISn M6% 4 +definitions ,defI'nISnz Mj% 4 +definitive dI'fIn@tIv OA% 4 +deflate dI'fleIt H2% 26A +deflated dI'fleItId Hc%,Hd% 36A +deflates dI'fleIts Ha% 26A +deflating dI'fleItIN Hb% 36A +deflation dI'fleISn L@% 3 +deflationary ,di'fleISn@rI OA% 4 +deflect dI'flekt J0% 22A,3A,6A,14 +deflected dI'flektId Jc%,Jd% 32A,3A,6A,14 +deflecting dI'flektIN Jb% 32A,3A,6A,14 +deflection dI'flekSn K6% 3 +deflections dI'flekSnz Kj% 3 +deflects dI'flekts Ja% 22A,3A,6A,14 +deflower di'flaU@R H0% 3 +deflowered di'flaU@d Hc%,Hd% 3 +deflowering di'flaU@rIN Hb% 4 +deflowers di'flaU@z Ha% 3 +defoliant ,di'f@UlI@nt K6% 4 +defoliants ,di'f@UlI@nts Kj% 4 +defoliate ,di'f@UlIeIt H2% 46A +defoliated ,di'f@UlIeItId Hc%,Hd% 56A +defoliates ,di'f@UlIeIts Ha% 46A +defoliating ,di'f@UlIeItIN Hb% 56A +defoliation ,dif@UlI'eISn K6% 5 +defoliations ,dif@UlI'eISnz Kj$ 5 +deforest ,di'f0rIst H0% 3 +deforested ,di'f0rIstId Hc%,Hd% 4 +deforesting ,di'f0rIstIN Hb% 4 +deforests ,di'f0rIsts Ha% 3 +deform dI'fOm H0% 26A +deformed dI'fOmd Hc%,Hd%,OA% 26A +deforming dI'fOmIN Hb% 36A +deformities dI'fOmItIz Mj% 4 +deformity dI'fOmItI M8% 4 +deforms dI'fOmz Ha% 26A +defraud dI'frOd H0% 26A,14 +defrauded dI'frOdId Hc%,Hd% 36A,14 +defrauding dI'frOdIN Hb% 36A,14 +defrauds dI'frOdz Ha% 26A,14 +defray dI'freI H0% 26A +defrayal dI'freI@l K6$ 3 +defrayals dI'freI@lz Kj$ 3 +defrayed dI'freId Hc%,Hd% 26A +defraying dI'freIIN Hb% 36A +defrayment dI'freIm@nt K6$ 3 +defrayments dI'freIm@nts Kj$ 3 +defrays dI'freIz Ha$ 26A +defrock ,di'fr0k H0$ 2 +defrocked ,di'fr0kt Hc$,Hd% 2 +defrocking ,di'fr0kIN Hb$ 3 +defrocks ,di'fr0ks Ha$ 2 +defrost ,di'fr0st H0% 26A +defrosted ,di'fr0stId Hc%,Hd% 36A +defroster ,di'fr0st@R K6% 3 +defrosters ,di'fr0st@z Kj% 3 +defrosting ,di'fr0stIN Hb% 36A +defrosts ,di'fr0sts Ha% 26A +deft deft OA% 1 +deftly 'deftlI Pu% 2 +deftness 'deftn@s L@% 2 +defunct dI'fVNkt OA% 2 +defuse ,di'fjuz H2% 26A +defused ,di'fjuzd Hc%,Hd% 26A +defuses ,di'fjuzIz Ha% 36A +defusing ,di'fjuzIN Hb% 36A +defy dI'faI H3% 26A,17 +defying dI'faIIN Hb% 36A,17 +degauss ,di'gaUs H1$ 26A +degaussed ,di'gaUst Hc$,Hd$ 26A +degausses ,di'gaUsIz Ha$ 36A +degaussing ,di'gaUsIN Hb$ 36A +degeneracy dI'dZen@r@sI L@$ 5 +degenerate dI'dZen@r@t K6%,OA% 4 +degenerate dI'dZen@reIt I2% 42A,3A +degenerated dI'dZen@reItId Ic%,Id% 52A,3A +degenerates dI'dZen@r@ts Kj% 4 +degenerates dI'dZen@reIts Ia% 42A,3A +degenerating dI'dZen@reItIN Ib% 52A,3A +degeneration dI,dZen@'reISn L@% 5 +degradation ,degr@'deISn M6% 4 +degradations ,degr@'deISnz Mj$ 4 +degrade dI'greId H2% 26A +degraded dI'greIdId Hc%,Hd% 36A +degrades dI'greIdz Ha% 26A +degrading dI'greIdIN Hb% 36A +degree dI'gri M6% 2 +degrees dI'griz Mj% 2 +dehorn ,di'hOn H0% 26A +dehorned ,di'hOnd Hc%,Hd% 26A +dehorning ,di'hOnIN Hb% 36A +dehorns ,di'hOnz Ha% 26A +dehumanize ,di'hjum@naIz H2% 46A +dehumanized ,di'hjum@naIzd Hc%,Hd% 46A +dehumanizes ,di'hjum@naIzIz Ha% 56A +dehumanizing ,di'hjum@naIzIN Hb% 56A +dehydrate ,di'haIdreIt H2% 36A +dehydrated ,di'haIdreItId Hc%,Hd% 46A +dehydrates ,di'haIdreIts Ha$ 36A +dehydrating ,di'haIdreItIN Hb$ 46A +deification ,diIfI'keISn L@% 5 +deified 'diIfaId Hc%,Hd% 36A +deifies 'diIfaIz Ha% 36A +deify 'diIfaI H3% 36A +deifying 'diIfaIIN Hb% 46A +deign deIn I0% 14A +deigned deInd Ic%,Id% 14A +deigning 'deInIN Ib$ 24A +deigns deInz Ia$ 14A +deism 'diIz@m L@$ 3 +deist 'diIst K6$ 2 +deists 'diIsts Kj$ 2 +deities 'diItIz Mj% 3 +deity 'diItI M8% 3 +deject dI'dZekt H0% 2 +dejected dI'dZektId Hc%,Hd% 3 +dejectedly dI'dZektIdlI Pu% 4 +dejecting dI'dZektIN Hb% 3 +dejection dI'dZekSn L@% 3 +dejects dI'dZekts Ha% 2 +dekko 'dek@U Ki$ 2 +delay dI'leI J0%,M6% 22A,2B,6A,6C +delayed dI'leId Jc%,Jd% 22A,2B,6A,6C +delayed-action dIleId-'&kSn L@%,OA% 4 +delaying dI'leIIN Jb% 32A,2B,6A,6C +delays dI'leIz Ja%,Mj% 22A,2B,6A,6C +delectable dI'lekt@bl OA% 4 +delectation ,dilek'teISn L@% 4 +delegacies 'delIg@sIz Kj$ 4 +delegacy 'delIg@sI K8$ 4 +delegate 'delIg@t K6% 3 +delegate 'delIgeIt H2% 314,17 +delegated 'delIgeItId Hc%,Hd% 414,17 +delegates 'delIg@ts Kj% 3 +delegates 'delIgeIts Ha% 314,17 +delegating 'delIgeItIN Hb% 414,17 +delegation ,delI'geISn M6% 4 +delegations ,delI'geISnz Mj% 4 +delete dI'lit H2% 26A,14 +deleted dI'litId Hc%,Hd% 36A,14 +deleterious ,delI'tI@rI@s OA% 5 +deletes dI'lits Ha% 26A,14 +deleting dI'litIN Hb% 36A,14 +deletion dI'liSn M6% 3 +deletions dI'liSnz Mj% 3 +delf delf L@$ 1 +delft delft L@$ 1 +deliberate dI'lIb@r@t OA% 4 +deliberate dI'lIb@reIt J2% 42A,3A,6A,8,10 +deliberated dI'lIb@reItId Jc%,Jd% 52A,3A,6A,8,10 +deliberately dI'lIb@r@tlI Pu% 5 +deliberates dI'lIb@reIts Ja% 42A,3A,6A,8,10 +deliberating dI'lIb@reItIN Jb% 52A,3A,6A,8,10 +deliberation dI,lIb@'reISn M6% 5 +deliberations dI,lIb@'reISnz Mj% 5 +deliberative dI'lIb@r@tIv OA$ 5 +delicacies 'delIk@sIz Mj% 4 +delicacy 'delIk@sI M8% 4 +delicate 'delIk@t OA% 3 +delicately 'delIk@tlI Pu% 4 +delicatessen ,delIk@'tesn M6% 5 +delicatessens ,delIk@'tesnz Mj% 5 +delicious dI'lIS@s OA% 3 +deliciously dI'lIS@slI Pu% 4 +delight dI'laIt J0%,M6% 23A,4C,6A +delighted dI'laItId Jc%,Jd% 33A,4C,6A +delightedly dI'laItIdlI Pu% 4 +delightful dI'laItf@l OA% 3 +delightfully dI'laItf@lI Pu% 4 +delighting dI'laItIN Jb% 33A,4C,6A +delights dI'laIts Ja%,Mj% 23A,4C,6A +delimit di'lImIt H0% 36A +delimitate di'lImIteIt H2$ 46A +delimitated di'lImIteItId Hc$,Hd% 56A +delimitates di'lImIteIts Ha$ 46A +delimitating di'lImIteItIN Hb$ 56A +delimitation di,lImI'teISn M6$ 5 +delimitations di,lImI'teISnz Mj$ 5 +delimited di'lImItId Hc%,Hd% 46A +delimiting di'lImItIN Hb% 46A +delimits di'lImIts Ha% 36A +delineate dI'lInIeIt H2% 46A +delineated dI'lInIeItId Hc%,Hd% 56A +delineates dI'lInIeIts Ha% 46A +delineating dI'lInIeItIN Hb% 56A +delineation dI,lInI'eISn M6% 5 +delineations dI,lInI'eISnz Mj% 5 +delinquencies dI'lINkw@nsIz Mj% 4 +delinquency dI'lINkw@nsI M8% 4 +delinquent dI'lINkw@nt K6%,OA% 3 +delinquents dI'lINkw@nts Kj% 3 +deliquescent ,delI'kwesnt OA$ 4 +delirious dI'lIrI@s OA% 4 +deliriously dI'lIrI@slI Pu% 5 +delirium dI'lIrI@m L@% 4 +delirium tremens dI,lIrI@m 'trimenz Ki% 6 +deliver dI'lIv@R H0% 36A,14,15B +deliverance dI'lIv@r@ns M6% 4 +deliverances dI'lIv@r@nsIz Mj$ 5 +delivered dI'lIv@d Hc%,Hd% 36A,14,15B +deliverer dI'lIv@r@R K6% 4 +deliverers dI'lIv@r@z Kj% 4 +deliveries dI'lIv@rIz Mj% 4 +delivering dI'lIv@rIN Hb% 46A,14,15B +delivers dI'lIv@z Ha% 36A,14,15B +delivery dI'lIv@rI M8% 4 +dell del K6% 1 +dells delz Kj% 1 +delouse ,di'laUs H2% 2 +deloused ,di'laUst Hc%,Hd% 2 +delouses ,di'laUsIz Ha% 3 +delousing ,di'laUsIN Hb% 3 +delphinium del'fInI@m K6% 4 +delphiniums del'fInI@mz Kj% 4 +delta 'delt@ K6% 2 +deltas 'delt@z Kj% 2 +delude dI'lud H2% 26A,14 +deluded dI'ludId Hc%,Hd% 36A,14 +deludes dI'ludz Ha% 26A,14 +deluding dI'ludIN Hb% 36A,14 +deluge 'deljudZ H2%,K6% 26A,14 +deluged 'deljudZd Hc%,Hd% 26A,14 +deluges 'deljudZIz Ha%,Kj% 36A,14 +deluging 'deljudZIN Hb% 36A,14 +delusion dI'luZn M6% 3 +delusions dI'luZnz Mj% 3 +delusive dI'lusIv OA$ 3 +delusively dI'lusIvlI Pu$ 4 +delve delv J2% 12A,3A,6A +delved delvd Jc%,Jd% 12A,3A,6A +delves delvz Ja% 12A,3A,6A +delving 'delvIN Jb% 22A,3A,6A +demagnetization ,di,m&gnItaI'zeISn L@% 6 +demagnetize ,di'm&gnItaIz H2% 46A +demagnetized ,di'm&gnItaIzd Hc%,Hd% 46A +demagnetizes ,di'm&gnItaIzIz Ha% 56A +demagnetizing ,di'm&gnItaIzIN Hb% 56A +demagogic ,dem@'g0gIk OA$ 4 +demagogue 'dem@g0g K6% 3 +demagogues 'dem@g0gz Kj% 3 +demagogy 'dem@g0gI L@$ 4 +demand dI'mAnd H0%,M6% 26A,7A,9 +demanded dI'mAndId Hc%,Hd% 36A,7A,9 +demanding dI'mAndIN Hb% 36A,7A,9 +demands dI'mAndz Ha%,Mj% 26A,7A,9 +demarcate 'dimAkeIt H2% 36A +demarcated 'dimAkeItId Hc%,Hd% 46A +demarcates 'dimAkeIts Ha% 36A +demarcating 'dimAkeItIN Hb% 46A +demarcation ,dimA'keISn L@% 4 +demean dI'min H0% 26A +demeaned dI'mind Hc%,Hd% 26A +demeaning dI'minIN Hb% 36A +demeanour dI'min@R L@% 3 +demeans dI'minz Ha% 26A +demented dI'mentId OA% 3 +dementedly dI'mentIdlI Pu% 4 +demerara ,dem@'re@r@ L@% 4 +demerit di'merIt K6$ 3 +demerits di'merIts Kj$ 3 +demesne dI'meIn M6$ 2 +demesnes dI'meInz Mj$ 2 +demigod 'demIg0d K6% 3 +demigods 'demIg0dz Kj% 3 +demijohn 'demIdZ0n K6$ 3 +demijohns 'demIdZ0nz Kj$ 3 +demilitarize ,di'mIlIt@raIz H2% 56A +demilitarized ,di'mIlIt@raIzd Hc%,Hd% 56A +demilitarizes ,di'mIlIt@raIzIz Ha% 66A +demilitarizing ,di'mIlIt@raIzIN Hb% 66A +demimondaine ,demImOn'deIn K6$ 4 +demimondaines ,demImOn'deInz Kj$ 4 +demimonde ,demI'mOnd Ki$ 3 +demise dI'maIz Ki% 2 +demist ,di'mIst H0% 2 +demisted ,di'mIstId Hc%,Hd% 3 +demister ,di'mIst@R K6% 3 +demisters ,di'mIst@z Kj% 3 +demisting ,di'mIstIN Hb% 3 +demists ,di'mIsts Ha% 2 +demo 'dem@U K6% 2 +demob ,di'm0b H4% 2 +demobbed ,di'm0bd Hc%,Hd% 2 +demobbing ,di'm0bIN Hb$ 3 +demobilization dI,m@Ub@laI'zeISn L@% 6 +demobilize di'm@Ub@laIz H2% 46A +demobilized di'm@Ub@laIzd Hc%,Hd% 46A +demobilizes di'm@Ub@laIzIz Ha% 56A +demobilizing di'm@Ub@laIzIN Hb% 56A +demobs ,di'm0bz Ha$ 2 +democracies dI'm0kr@sIz Mj% 4 +democracy dI'm0kr@sI M8% 4 +democrat 'dem@kr&t K6% 3 +democratic ,dem@'kr&tIk OA% 4 +democratically ,dem@'kr&tIklI Pu% 5 +democratization dI,m0kr@taI'zeISn L@$ 6 +democratize dI'm0kr@taIz H2$ 46A +democratized dI'm0kr@taIzd Hc$,Hd$ 46A +democratizes dI'm0kr@taIzIz Ha$ 56A +democratizing dI'm0kr@taIzIN Hb$ 56A +democrats 'dem@kr&ts Kj% 3 +demographic ,dem@'gr&fIk OA% 4 +demography dI'm0gr@fI L@% 4 +demolish dI'm0lIS H1% 36A +demolished dI'm0lISt Hc%,Hd% 36A +demolishes dI'm0lISIz Ha% 46A +demolishing dI'm0lISIN Hb% 46A +demolition ,dem@'lISn M6% 4 +demolitions ,dem@'lISnz Mj$ 4 +demon 'dim@n K6% 2 +demonetization di,mVnItaI'zeISn M6$ 6 +demonetizations di,mVnItaI'zeISnz Mj$ 6 +demonetize ,di'mVnItaIz H2$ 4 +demonetized ,di'mVnItaIzd Hc$,Hd$ 4 +demonetizes ,di'mVnItaIzIz Ha$ 5 +demonetizing ,di'mVnItaIzIN Hb$ 5 +demoniac dI'm@UnI&k K6$,OA$ 4 +demoniacal ,dim@'naI@kl OA$ 5 +demoniacally ,dim@'naI@klI Pu$ 5 +demoniacs dI'm@UnI&ks Kj$ 4 +demonic di'm0nIk OA% 3 +demons 'dim@nz Kj% 2 +demonstrability dI,m0nstr@'bIlItI L@$ 6 +demonstrable 'dem@nstr@bl OA% 4 +demonstrably 'dem@nstr@blI Pu% 4 +demonstrate 'dem@nstreIt J2% 32A,3A,6A,9 +demonstrated 'dem@nstreItId Jc%,Jd% 42A,3A,6A,9 +demonstrates 'dem@nstreIts Ja% 32A,3A,6A,9 +demonstrating 'dem@nstreItIN Jb% 42A,3A,6A,9 +demonstration ,dem@n'streISn M6% 4 +demonstrations ,dem@n'streISnz Mj% 4 +demonstrative dI'm0nstr@tIv OA% 4 +demonstratively dI'm0nstr@tIvlI Pu% 5 +demonstrator 'dem@nstreIt@R K6% 4 +demonstrators 'dem@nstreIt@z Kj% 4 +demoralization dI,m0r@laI'zeISn L@% 6 +demoralize dI'm0r@laIz H2% 46A +demoralized dI'm0r@laIzd Hc%,Hd% 46A +demoralizes dI'm0r@laIzIz Ha% 56A +demoralizing dI'm0r@laIzIN Hb% 56A +demos 'dem@Uz Kj% 2 +demote ,di'm@Ut H2% 26A +demoted ,di'm@UtId Hc%,Hd% 36A +demotes ,di'm@Uts Ha% 26A +demotic dI'm0tIk OA$ 3 +demoting ,di'm@UtIN Hb% 36A +demotion ,di'm@USn M6% 3 +demotions ,di'm@USnz Mj$ 3 +demur dI'm3R I4%,L@% 22A,3A +demure dI'mjU@R OA% 2 +demurely dI'mjU@lI Pu% 3 +demureness dI'mjU@n@s L@% 3 +demurred dI'm3d Ic%,Id% 22A,3A +demurring dI'm3rIN Ib% 32A,3A +demurs dI'm3z Ia% 22A,3A +den den K6% 1 +denary 'din@rI OA$ 3 +denationalization ,di,n&S@n@laI'zeISn L@% 7 +denationalize ,di'n&S@n@laIz H2% 56A +denationalized ,di'n&S@n@laIzd Hc%,Hd% 56A +denationalizes ,di'n&S@n@laIzIz Ha% 66A +denationalizing ,di'n&S@n@laIzIN Hb% 66A +denatured ,di'neItS@d OA$ 3 +deniable dI'naI@bl OA% 4 +denial dI'naI@l M6% 3 +denials dI'naI@lz Mj% 3 +denied dI'naId Hc%,Hd% 26A,6C,9,12A,13A,25 +denier 'denI@R K9$ 3 +denies dI'naIz Ha% 26A,6C,9,12A,13A,25 +denigrate 'denIgreIt H2% 36A +denigrated 'denIgreItId Hc%,Hd% 46A +denigrates 'denIgreIts Ha% 36A +denigrating 'denIgreItIN Hb% 46A +denigration ,denI'greISn L@% 4 +denim 'denIm L@% 2 +denims 'denImz Kj% 2 +denizen 'denIzn K6$ 3 +denizens 'denIznz Kj$ 3 +denominate dI'n0mIneIt H2$ 423 +denominated dI'n0mIneItId Hc$,Hd$ 523 +denominates dI'n0mIneIts Ha$ 423 +denominating dI'n0mIneItIN Hb$ 523 +denomination dI,n0mI'neISn K6% 5 +denominational dI,n0mI'neISn@l OA% 5 +denominations dI,n0mI'neISnz Kj% 5 +denominator dI'n0mIneIt@R K6% 5 +denominators dI'n0mIneIt@z Kj% 5 +denote dI'n@Ut H2% 26A,9 +denoted dI'n@UtId Hc%,Hd% 36A,9 +denotes dI'n@Uts Ha% 26A,9 +denoting dI'n@UtIN Hb% 36A,9 +denounce dI'naUns H2% 26A,16B +denounced dI'naUnst Hc%,Hd% 26A,16B +denounces dI'naUnsIz Ha% 36A,16B +denouncing dI'naUnsIN Hb% 36A,16B +dens denz Kj% 1 +dense dens OB% 1 +densely 'denslI Pu% 2 +denseness 'densn@s L@% 2 +denser 'dens@R Or% 2 +densest 'densIst Os% 2 +densities 'densItIz Mj% 3 +density 'densItI M8% 3 +dent dent J0%,K6% 12A,6A +dental 'dentl OA% 2 +dented 'dentId Jc%,Jd% 22A,6A +dentifrice 'dentIfrIs L@$ 3 +denting 'dentIN Jb% 22A,6A +dentist 'dentIst K6% 2 +dentistry 'dentIstrI L@% 3 +dentists 'dentIsts Kj% 2 +dents dents Ja%,Kj% 12A,6A +denture 'dentS@R K6% 2 +dentures 'dentS@z Kj% 2 +denudation ,dinju'deISn L@$ 4 +denude dI'njud H2% 26A,14 +denuded dI'njudId Hc%,Hd% 36A,14 +denudes dI'njudz Ha% 26A,14 +denuding dI'njudIN Hb% 36A,14 +denunciation dI,nVnsI'eISn M6% 5 +denunciations dI,nVnsI'eISnz Mj% 5 +deny dI'naI H3% 26A,6C,9,12A,13A,25 +denying dI'naIIN Hb% 36A,6C,9,12A,13A,25 +deodar 'dI@dAR K6$ 2 +deodars 'dI@dAz Kj$ 2 +deodorant di'@Ud@r@nt K6% 4 +deodorants di'@Ud@r@nts Kj% 4 +deodorize di'@Ud@raIz H2% 46A +deodorized di'@Ud@raIzd Hc%,Hd% 46A +deodorizes di'@Ud@raIzIz Ha% 56A +deodorizing di'@Ud@raIzIN Hb% 56A +dep dep Y~% 1 +depart dI'pAt I0% 22A,3A +departed dI'pAtId Ic%,Id%,K9%,OA% 32A,3A +departing dI'pAtIN Ib% 32A,3A +department dI'pAtm@nt K6% 3 +departmental ,dipAt'mentl OA% 4 +departments dI'pAtm@nts Kj% 3 +departs dI'pAts Ia% 22A,3A +departure dI'pAtS@R M6% 3 +departures dI'pAtS@z Mj% 3 +depend dI'pend I0% 23A +dependable dI'pend@bl OA% 4 +dependant dI'pend@nt K6% 3 +dependants dI'pend@nts Kj% 3 +depended dI'pendId Ic%,Id% 33A +dependence dI'pend@ns L@% 3 +dependencies dI'pend@nsIz Kj% 4 +dependency dI'pend@nsI K8% 4 +dependent dI'pend@nt K6%,OA% 3 +dependents dI'pend@nts Kj% 3 +depending dI'pendIN Ib% 33A +depends dI'pendz Ia% 23A +depict dI'pIkt H0% 26A +depicted dI'pIktId Hc%,Hd% 36A +depicting dI'pIktIN Hb% 36A +depiction dI'pIkSn K6% 3 +depictions dI'pIkSnz Kj% 3 +depicts dI'pIkts Ha% 26A +depilatories dI'pIl@trIz Mj$ 4 +depilatory dI'pIl@trI M8$,OA$ 4 +deplane ,di'pleIn I2$ 2 +deplaned ,di'pleInd Ic$,Id$ 2 +deplanes ,di'pleInz Ia$ 2 +deplaning ,di'pleInIN Ib$ 3 +deplete dI'plit H2% 26A,14 +depleted dI'plitId Hc%,Hd% 36A,14 +depletes dI'plits Ha% 26A,14 +depleting dI'plitIN Hb% 36A,14 +depletion dI'pliSn L@% 3 +deplorable dI'plOr@bl OA% 4 +deplorably dI'plOr@blI Pu% 4 +deplore dI'plOR H2% 26A +deplored dI'plOd Hc%,Hd% 26A +deplores dI'plOz Ha% 26A +deploring dI'plOrIN Hb% 36A +deploy dI'ploI J0% 22A,6A +deployed dI'ploId Jc%,Jd% 22A,6A +deploying dI'ploIIN Jb% 32A,6A +deployment dI'ploIm@nt K6% 3 +deployments dI'ploIm@nts Kj% 3 +deploys dI'ploIz Ja% 22A,6A +deponent dI'p@Un@nt K6$ 3 +deponents dI'p@Un@nts Kj$ 3 +depopulate ,di'p0pjUleIt H2% 46A +depopulated ,di'p0pjUleItId Hc%,Hd% 56A +depopulates ,di'p0pjUleIts Ha% 46A +depopulating ,di'p0pjUleItIN Hb% 56A +depopulation ,di,p0pjU'leISn L@% 5 +deport dI'pOt H0% 26A,16B +deportation ,dipO'teISn M6% 4 +deportations ,dipO'teISnz Mj% 4 +deported dI'pOtId Hc%,Hd% 36A,16B +deportee ,dipO'ti K6% 3 +deportees ,dipO'tiz Kj% 3 +deporting dI'pOtIN Hb% 36A,16B +deportment dI'pOtm@nt L@% 3 +deports dI'pOts Ha% 26A,16B +depose dI'p@Uz J2% 23A,6A,9 +deposed dI'p@Uzd Jc%,Jd% 23A,6A,9 +deposes dI'p@UzIz Ja% 33A,6A,9 +deposing dI'p@UzIN Jb% 33A,6A,9 +deposit dI'p0zIt H0%,K6% 36A +deposited dI'p0zItId Hc%,Hd% 46A +depositing dI'p0zItIN Hb% 46A +deposition ,dep@'zISn M6% 4 +depositions ,dep@'zISnz Mj$ 4 +depositor dI'p0zIt@R K6% 4 +depositories dI'p0zItrIz Kj% 4 +depositors dI'p0zIt@z Kj% 4 +depository dI'p0zItrI K8% 4 +deposits dI'p0zIts Ha%,Kj% 36A +depot 'dep@U K6% 2 +depots 'dep@Uz Kj% 2 +deprave dI'preIv H2% 26A +depraved dI'preIvd Hc%,Hd% 26A +depraves dI'preIvz Ha% 26A +depraving dI'preIvIN Hb% 36A +depravities dI'pr&vItIz Mj$ 4 +depravity dI'pr&vItI M8% 4 +deprecate 'depr@keIt H2% 36A,6C +deprecated 'depr@keItId Hc%,Hd% 46A,6C +deprecates 'depr@keIts Ha% 36A,6C +deprecating 'depr@keItIN Hb% 46A,6C +deprecation ,depr@'keISn K6$ 4 +deprecations ,depr@'keISnz Kj$ 4 +depreciate dI'priSIeIt J2% 42A,6A +depreciated dI'priSIeItId Jc%,Jd% 52A,6A +depreciates dI'priSIeIts Ja% 42A,6A +depreciating dI'priSIeItIN Jb% 52A,6A +depreciation dI,priSI'eISn L@% 5 +depreciatory dI'priS@t@rI OA% 5 +depredation ,depr@'deISn K6$ 4 +depredations ,depr@'deISnz Kj$ 4 +depress dI'pres H1% 26A +depressed dI'prest Hc%,Hd% 26A +depresses dI'presIz Ha% 36A +depressing dI'presIN Hb% 36A +depression dI'preSn M6% 3 +depressions dI'preSnz Mj% 3 +depressive dI'presIv K6%,OA% 3 +depressives dI'presIvz Kj% 3 +deprivation ,deprI'veISn M6% 4 +deprivations ,deprI'veISnz Mj% 4 +deprive dI'praIv H2% 214 +deprived dI'praIvd Hc%,Hd%,OA% 214 +deprives dI'praIvz Ha% 214 +depriving dI'praIvIN Hb% 314 +depth depT M6% 1 +depth-bomb 'depT-b0m K6$ 2 +depth-bombs 'depT-b0mz Kj$ 2 +depth-charge 'depT-tSAdZ K6% 2 +depth-charges 'depT-tSAdZIz Kj% 3 +depths depTs Mj% 1 +deputation ,depjU'teISn K6% 4 +deputations ,depjU'teISnz Kj% 4 +depute dI'pjut H2% 214,17 +deputed dI'pjutId Hc%,Hd% 314,17 +deputes dI'pjuts Ha% 214,17 +deputies 'depjUtIz Kj% 3 +deputing dI'pjutIN Hb% 314,17 +deputize 'depjUtaIz I2% 32A,3A +deputized 'depjUtaIzd Ic%,Id% 32A,3A +deputizes 'depjUtaIzIz Ia% 42A,3A +deputizing 'depjUtaIzIN Ib% 42A,3A +deputy 'depjUtI K8% 3 +derail dI'reIl H0% 26A +derailed dI'reIld Hc%,Hd% 26A +derailing dI'reIlIN Hb$ 36A +derailment dI'reIlm@nt K6% 3 +derailments dI'reIlm@nts Kj% 3 +derails dI'reIlz Ha$ 26A +derange dI'reIndZ H2$ 26A +deranged dI'reIndZd Hc$,Hd% 26A +derangement dI'reIndZm@nt K6$ 3 +derangements dI'reIndZm@nts Kj$ 3 +deranges dI'reIndZIz Ha$ 36A +deranging dI'reIndZIN Hb$ 36A +derate ,di'reIt H2$ 26A +derated ,di'reItId Hc$,Hd$ 36A +derates ,di'reIts Ha$ 26A +derating ,di'reItIN Hb$ 36A +derbies 'd3bIz Kj$ 2 +derbies 'dAbIz Kj$ 2 +derby 'd3bI K8$ 2 +derby 'dAbI K8$ 2 +derelict 'der@lIkt OA% 3 +dereliction ,der@'lIkSn L@% 4 +derequisition ,di,rekwI'zISn H0$ 56A +derequisitioned ,di,rekwI'zISnd Hc$,Hd$ 56A +derequisitioning ,di,rekwI'zISnIN Hb$ 66A +derequisitions ,di,rekwI'zISnz Ha$ 56A +derestrict ,dirI'strIkt H0% 36A +derestricted ,dirI'strIktId Hc%,Hd% 46A +derestricting ,dirI'strIktIN Hb% 46A +derestricts ,dirI'strIkts Ha% 36A +deride dI'raId H2% 26A,16B +derided dI'raIdId Hc%,Hd% 36A,16B +derides dI'raIdz Ha% 26A,16B +deriding dI'raIdIN Hb% 36A,16B +derision dI'rIZn L@% 3 +derisive dI'raIsIv OA% 3 +derisively dI'raIsIvlI Pu% 4 +derisory dI'raIs@rI OA% 4 +derivation ,derI'veISn M6% 4 +derivations ,derI'veISnz Mj% 4 +derivative dI'rIv@tIv K6%,OA% 4 +derivatives dI'rIv@tIvz Kj% 4 +derive dI'raIv J2% 23A,14 +derived dI'raIvd Jc%,Jd% 23A,14 +derives dI'raIvz Ja% 23A,14 +deriving dI'raIvIN Jb% 33A,14 +dermatitis ,d3m@'taItIs L@% 4 +dermatologist ,d3m@'t0l@dZIst K6% 5 +dermatologists ,d3m@'t0l@dZIsts Kj% 5 +dermatology ,d3m@'t0l@dZI L@% 5 +derogate 'der@geIt I2$ 33A +derogated 'der@geItId Ic$,Id$ 43A +derogates 'der@geIts Ia$ 33A +derogating 'der@geItIN Ib$ 43A +derogation ,der@'geISn L@$ 4 +derogatory dI'r0g@trI OA% 4 +derrick 'derIk K6% 2 +derricks 'derIks Kj% 2 +derring-do ,derIN-'du L@$ 3 +derv d3v L@$ 1 +dervish 'd3vIS K7$ 2 +dervishes 'd3vISIz Kj$ 3 +desalinate ,di's&lIneIt H2% 46A +desalinated ,di's&lIneItId Hc%,Hd% 56A +desalinates ,di's&lIneIts Ha% 46A +desalinating ,di's&lIneItIN Hb% 56A +desalination ,di,s&lI'neISn L@% 5 +desalinization ,di,s&lInaI'zeISn L@$ 6 +desalinize ,di's&lInaIz H2$ 46A +desalinized ,di's&lInaIzd Hc$,Hd$ 46A +desalinizes ,di's&lInaIzIz Ha$ 56A +desalinizing ,di's&lInaIzIN Hb$ 56A +desalt ,di'sOlt H0$ 2 +desalted ,di'sOltId Hc$,Hd$ 3 +desalting ,di'sOltIN Hb$ 3 +desalts ,di'sOlts Ha$ 2 +descale ,di'skeIl H2% 26A +descaled ,di'skeIld Hc%,Hd% 26A +descales ,di'skeIlz Ha% 26A +descaling ,di'skeIlIN Hb% 36A +descant 'desk&nt K6% 2 +descant dI'sk&nt I0$ 23A +descanted dI'sk&ntId Ic$,Id$ 33A +descanting dI'sk&ntIN Ib$ 33A +descants 'desk&nts Kj% 2 +descants dI'sk&nts Ia$ 23A +descend dI'send J0% 22A,2C,3A,6A +descendant dI'send@nt K6% 3 +descendants dI'send@nts Kj% 3 +descended dI'sendId Jc%,Jd% 32A,2C,3A,6A +descending dI'sendIN Jb% 32A,2C,3A,6A +descends dI'sendz Ja% 22A,2C,3A,6A +descent dI'sent M6% 2 +descents dI'sents Mj% 2 +describe dI'skraIb H2% 26A,10,14,16B +described dI'skraIbd Hc%,Hd% 26A,10,14,16B +describes dI'skraIbz Ha% 26A,10,14,16B +describing dI'skraIbIN Hb% 36A,10,14,16B +descried dI'skraId Hc$,Hd$ 26A +descries dI'skraIz Ha$ 26A +description dI'skrIpSn M6% 3 +descriptions dI'skrIpSnz Mj% 3 +descriptive dI'skrIptIv OA% 3 +descriptively dI'skrIptIvlI Pu% 4 +descry dI'skraI H3$ 26A +descrying dI'skraIIN Hb$ 36A +desecrate 'desIkreIt H2% 36A +desecrated 'desIkreItId Hc%,Hd% 46A +desecrates 'desIkreIts Ha% 36A +desecrating 'desIkreItIN Hb% 46A +desecration ,desI'kreISn L@% 4 +desegregate ,di'segrIgeIt H2% 46A +desegregated ,di'segrIgeItId Hc%,Hd% 56A +desegregates ,di'segrIgeIts Ha% 46A +desegregating ,di'segrIgeItIN Hb% 56A +desegregation ,di,segrI'geISn L@% 5 +desensitization ,di,sensItaI'zeISn L@% 6 +desensitize ,di'sensItaIz H2% 46A +desensitized ,di'sensItaIzd Hc%,Hd% 46A +desensitizes ,di'sensItaIzIz Ha% 56A +desensitizing ,di'sensItaIzIN Hb% 56A +desert 'dez@t M6%,OA% 2 +desert dI'z3t J0% 22A,6A +deserted dI'z3tId Jc%,Jd% 32A,6A +deserter dI'z3t@R K6% 3 +deserters dI'z3t@z Kj% 3 +deserting dI'z3tIN Jb% 32A,6A +desertion dI'z3Sn M6% 3 +desertions dI'z3Snz Mj% 3 +deserts 'dez@ts Mj% 2 +deserts dI'z3ts Ja%,Kj% 22A,6A +deserve dI'z3v J2% 26A,7A +deserved dI'z3vd Jc%,Jd%,OA% 26A,7A +deservedly dI'z3vIdlI Pu% 4 +deserves dI'z3vz Ja% 26A,7A +deserving dI'z3vIN Jb%,OA% 36A,7A +desiccant 'desIk@nt K6$ 3 +desiccants 'desIk@nts Kj$ 3 +desiccate 'desIkeIt H2$ 36A +desiccated 'desIkeItId Hc$,Hd% 46A +desiccates 'desIkeIts Ha$ 36A +desiccating 'desIkeItIN Hb$ 46A +desiderata dI,zId@'rAt@ Kj$ 5 +desideratum dI,zId@'rAt@m Ki$ 5 +design dI'zaIn J0%,M6% 22A,2C,6A,14,16A,16B +designate 'dezIgneIt H2%,OA% 36A,16B,17 +designated 'dezIgneItId Hc%,Hd% 46A,16B,17 +designates 'dezIgneIts Ha% 36A,16B,17 +designating 'dezIgneItIN Hb% 46A,16B,17 +designation ,dezIg'neISn M6% 4 +designations ,dezIg'neISnz Mj% 4 +designed dI'zaInd Jc%,Jd% 22A,2C,6A,14,16A,16B +designedly di'zaInIdlI Pu% 4 +designer dI'zaIn@R K6% 3 +designers dI'zaIn@z Kj% 3 +designing dI'zaInIN Jb%,L@%,OA% 32A,2C,6A,14,16A,16B +designs dI'zaInz Ja%,Mj% 22A,2C,6A,14,16A,16B +desirability dI,zaI@r@'bIlItI L@% 6 +desirable dI'zaI@r@bl OA% 4 +desire dI'zaI@R H2%,M6% 26A,7A,9,17 +desired dI'zaI@d Hc%,Hd% 26A,7A,9,17 +desires dI'zaI@z Ha%,Mj% 26A,7A,9,17 +desiring dI'zaI@rIN Hb% 36A,7A,9,17 +desirous dI'zaI@r@s OA% 3 +desist dI'zIst I0% 22A,3A +desisted dI'zIstId Ic%,Id% 32A,3A +desisting dI'zIstIN Ib$ 32A,3A +desists dI'zIsts Ia$ 22A,3A +desk desk K6% 1 +desks desks Kj% 1 +desolate 'des@l@t OA% 3 +desolate 'des@leIt H2% 36A +desolated 'des@leItId Hc%,Hd% 46A +desolately 'des@l@tlI Pu% 4 +desolates 'des@leIts Ha% 36A +desolating 'des@leItIN Hb% 46A +desolation ,des@'leISn L@% 4 +despair dI'spe@R I0%,L@% 22A,3A +despaired dI'spe@d Ic%,Id% 22A,3A +despairing dI'spe@rIN Ib% 32A,3A +despairingly dI'spe@rINlI Pu% 4 +despairs dI'spe@z Ia% 22A,3A +despatch dI'sp&tS H1%,M7% 26A,14 +despatched dI'sp&tSt Hc%,Hd% 26A,14 +despatches dI'sp&tSIz Ha%,Mj% 36A,14 +despatching dI'sp&tSIN Hb% 36A,14 +desperado ,desp@'rAd@U K7% 4 +desperadoes ,desp@'rAd@Uz Kj% 4 +desperate 'desp@r@t OA% 3 +desperately 'desp@r@tlI Pu% 4 +desperation ,desp@'reISn L@% 4 +despicable dI'spIk@bl OA% 4 +despicably dI'spIk@blI Pu% 4 +despise dI'spaIz H2% 26A +despised dI'spaIzd Hc%,Hd% 26A +despises dI'spaIzIz Ha% 36A +despising dI'spaIzIN Hb% 36A +despite dI'spaIt L@$,T-% 2 +despiteful dI'spaItf@l OA$ 3 +despitefully dI'spaItf@lI Pu$ 4 +despoil dI'spoIl H0% 26A,14 +despoiled dI'spoIld Hc%,Hd% 26A,14 +despoiling dI'spoIlIN Hb$ 36A,14 +despoils dI'spoIlz Ha$ 26A,14 +despondency dI'sp0nd@nsI L@% 4 +despondent dI'sp0nd@nt OA% 3 +despondently dI'sp0nd@ntlI Pu% 4 +despot 'desp0t K6% 2 +despotic dI'sp0tIk OA% 3 +despotism 'desp@tIz@m M6% 4 +despotisms 'desp@tIz@mz Mj$ 4 +despots 'desp0ts Kj% 2 +dessert dI'z3t K6% 2 +desserts dI'z3ts Kj% 2 +dessertspoon dI'z3tspun K6% 3 +dessertspoonful dI'z3tspunfUl K6% 4 +dessertspoonfuls dI'z3tspunfUlz Kj% 4 +dessertspoons dI'z3tspunz Kj% 3 +destination ,destI'neISn K6% 4 +destinations ,destI'neISnz Kj% 4 +destine 'destIn H2$ 214,17 +destined 'destInd Hc$,Hd% 214,17 +destines 'destInz Ha$ 214,17 +destinies 'destInIz Mj% 3 +destining 'destInIN Hb$ 314,17 +destiny 'destInI M8% 3 +destitute 'destItjut OA% 3 +destitution ,destI'tjuSn L@% 4 +destroy dI'stroI H0% 26A +destroyed dI'stroId Hc%,Hd% 26A +destroyer dI'stroI@R K6% 3 +destroyers dI'stroI@z Kj% 3 +destroying dI'stroIIN Hb% 36A +destroys dI'stroIz Ha% 26A +destructibility dI,strVkt@'bIlItI L@$ 6 +destructible dI'strVkt@bl OA% 4 +destruction dI'strVkSn L@% 3 +destructive dI'strVktIv OA% 3 +destructively dI'strVktIvlI Pu% 4 +destructiveness dI'strVktIvn@s L@% 4 +desuetude dI'sjuItjud L@$ 4 +desultory 'des@ltrI OA% 3 +detach dI't&tS H1% 26A,14,16A +detachable dI't&tS@bl OA% 4 +detached dI't&tSt Hc%,Hd%,OA% 26A,14,16A +detaches dI't&tSIz Ha% 36A,14,16A +detaching dI't&tSIN Hb% 36A,14,16A +detachment dI't&tSm@nt M6% 3 +detachments dI't&tSm@nts Mj% 3 +detail 'diteIl H0%,M6% 26A,14,16A +detailed 'diteIld Hc%,Hd% 26A,14,16A +detailing 'diteIlIN Hb% 36A,14,16A +details 'diteIlz Ha%,Mj% 26A,14,16A +detain dI'teIn H0% 26A,16A +detained dI'teInd Hc%,Hd% 26A,16A +detainee ,diteI'ni K6% 3 +detainees ,diteI'niz Kj% 3 +detaining dI'teInIN Hb% 36A,16A +detains dI'teInz Ha% 26A,16A +detect dI'tekt H0% 26A +detectable dI'tekt@bl OA% 4 +detected dI'tektId Hc%,Hd% 36A +detecting dI'tektIN Hb% 36A +detection dI'tekSn L@% 3 +detective dI'tektIv K6% 3 +detectives dI'tektIvz Kj% 3 +detector dI'tekt@R K6% 3 +detectors dI'tekt@z Kj% 3 +detects dI'tekts Ha% 26A +detention dI'tenSn M6% 3 +detentions dI'tenSnz Mj% 3 +deter dI't3R H4% 26A,14 +detergent dI't3dZ@nt K6%,OA% 3 +detergents dI't3dZ@nts Kj% 3 +deteriorate dI'tI@rI@reIt J2% 52A,6A +deteriorated dI'tI@rI@reItId Jc%,Jd% 62A,6A +deteriorates dI'tI@rI@reIts Ja% 52A,6A +deteriorating dI'tI@rI@reItIN Jb% 62A,6A +deterioration dI,tI@rI@'reISn M6% 6 +deteriorations dI,tI@rI@'reISnz Mj$ 6 +determinable dI't3mIn@bl OA% 5 +determinant dI't3mIn@nt K6$,OA$ 4 +determinants dI't3mIn@nts Kj$ 4 +determinate dI't3mIn@t OA$ 4 +determination dI,t3mI'neISn L@% 5 +determinative dI't3mIn@tIv K6$,OA$ 5 +determinatives dI't3mIn@tIvz Kj$ 5 +determine dI't3mIn J2% 33A,6A,7A,8,9,10,14,17 +determined dI't3mInd Jc%,Jd% 33A,6A,7A,8,9,10,14,17 +determinedly dI't3mIndlI Pu% 4 +determiner dI't3mIn@R K6$ 4 +determiners dI't3mIn@z Kj$ 4 +determines dI't3mInz Ja$ 33A,6A,7A,8,9,10,14,17 +determining dI't3mInIN Jb$ 43A,6A,7A,8,9,10,14,17 +deterred dI't3d Hc%,Hd% 26A,14 +deterrent dI'ter@nt K6%,OA% 3 +deterrents dI'ter@nts Kj% 3 +deterring dI't3rIN Hb% 36A,14 +deters dI't3z Ha% 26A,14 +detest dI'test H0% 26A,6C +detestable dI'test@bl OA% 4 +detestably dI'test@blI Pu% 4 +detestation ,dite'steISn M6% 4 +detestations ,dite'steISnz Mj$ 4 +detested dI'testId Hc%,Hd% 36A,6C +detesting dI'testIN Hb% 36A,6C +detests dI'tests Ha% 26A,6C +dethrone ,di'Tr@Un H2% 26A +dethroned ,di'Tr@Und Hc%,Hd% 26A +dethronement ,di'Tr@Unm@nt K6$ 3 +dethronements ,di'Tr@Unm@nts Kj$ 3 +dethrones ,di'Tr@Unz Ha% 26A +dethroning ,di'Tr@UnIN Hb$ 36A +detonate 'det@neIt J2% 32A,6A +detonated 'det@neItId Jc%,Jd% 42A,6A +detonates 'det@neIts Ja% 32A,6A +detonating 'det@neItIN Jb% 42A,6A +detonation ,det@'neISn K6% 4 +detonations ,det@'neISnz Kj% 4 +detonator 'det@neIt@R K6% 4 +detonators 'det@neIt@z Kj% 4 +detour 'ditU@R H0$,K6% 26A +detoured 'ditU@d Hc$,Hd$ 26A +detouring 'ditU@rIN Hb$ 36A +detours 'ditU@z Ha$,Kj% 26A +detract dI'tr&kt I0% 23A +detracted dI'tr&ktId Ic%,Id% 33A +detracting dI'tr&ktIN Ib% 33A +detraction dI'tr&kSn M6% 3 +detractions dI'tr&kSnz Mj% 3 +detractor dI'tr&kt@R K6% 3 +detractors dI'tr&kt@z Kj% 3 +detracts dI'tr&kts Ia% 23A +detrain ,di'treIn J0$ 22A,6A +detrained ,di'treInd Jc$,Jd$ 22A,6A +detraining ,di'treInIN Jb$ 32A,6A +detrains ,di'treInz Ja$ 22A,6A +detribalization ,di,traIb@laI'zeISn L@$ 6 +detribalize ,di'traIb@laIz H2$ 46A +detribalized ,di'traIb@laIzd Hc$,Hd$ 46A +detribalizes ,di'traIb@laIzIz Ha$ 56A +detribalizing ,di'traIb@laIzIN Hb$ 56A +detriment 'detrIm@nt L@% 3 +detrimental ,detrI'mentl OA% 4 +detrimentally ,detrI'ment@lI Pu% 5 +detritus dI'traIt@s L@% 3 +deuce djus K6$ 1 +deuced djust OA$ 1 +deucedly 'djusIdlI Pu$ 3 +deuces 'djusIz Kj$ 2 +devaluate ,di'v&ljUeIt H2$ 46A +devaluated ,di'v&ljUeItId Hc$,Hd$ 56A +devaluates ,di'v&ljUeIts Ha$ 46A +devaluating ,di'v&ljUeItIN Hb$ 56A +devaluation ,di,v&ljU'eISn M6% 5 +devaluations ,di,v&ljU'eISnz Mj% 5 +devalue ,di'v&lju H2% 36A +devalued ,di'v&ljud Hc%,Hd% 36A +devalues ,di'v&ljuz Ha% 36A +devaluing ,di'v&ljuIN Hb% 46A +devastate 'dev@steIt H2% 36A +devastated 'dev@steItId Hc%,Hd% 46A +devastates 'dev@steIts Ha% 36A +devastating 'dev@steItIN Hb% 46A +devastation ,dev@'steISn L@% 4 +develop dI'vel@p J0% 32A,2C,3A,6A +developed dI'vel@pt Jc%,Jd% 32A,2C,3A,6A +developer dI'vel@p@R K6% 4 +developers dI'vel@p@z Kj% 4 +developing dI'vel@pIN Jb% 42A,2C,3A,6A +development dI'vel@pm@nt M6% 4 +developments dI'vel@pm@nts Mj% 4 +develops dI'vel@ps Ja% 32A,2C,3A,6A +deviant 'divI@nt K6%,OA% 3 +deviants 'divI@nts Kj% 3 +deviate 'divIeIt I2% 33A +deviated 'divIeItId Ic%,Id% 43A +deviates 'divIeIts Ia% 33A +deviating 'divIeItIN Ib% 43A +deviation ,divI'eISn M6% 4 +deviationism ,divI'eIS@nIz@m L@$ 6 +deviationist ,divI'eIS@nIst K6$ 5 +deviationists ,divI'eIS@nIsts Kj$ 5 +deviations ,divI'eISnz Mj% 4 +device dI'vaIs K6% 2 +devices dI'vaIsIz Kj% 3 +devil 'devl J4%,K6% 22A,3A,6A +devil-may-care ,devl-meI-'ke@R OA% 4 +devilish 'dev@lIS OA%,Pu% 3 +devilishly 'dev@lISlI Pu% 4 +devilled 'devld Jc%,Jd% 22A,3A,6A +devilling 'dev@lIN Jb$ 32A,3A,6A +devilment 'devlm@nt M6% 3 +devilments 'devlm@nts Mj$ 3 +devilries 'devlrIz Mj$ 3 +devilry 'devlrI M8% 3 +devils 'devlz Ja%,Kj% 22A,3A,6A +devious 'divI@s OA% 3 +deviously 'divI@slI Pu% 4 +deviousness 'divI@sn@s L@% 4 +devise dI'vaIz H2% 26A,8,14 +devised dI'vaIzd Hc%,Hd% 26A,8,14 +devises dI'vaIzIz Ha% 36A,8,14 +devising dI'vaIzIN Hb% 36A,8,14 +devitalization ,di,vaIt@laI'zeISn L@$ 6 +devitalize ,di'vaIt@laIz H2$ 46A +devitalized ,di'vaIt@laIzd Hc$,Hd$ 46A +devitalizes ,di'vaIt@laIzIz Ha$ 56A +devitalizing ,di'vaIt@laIzIN Hb$ 56A +devoid dI'voId OA% 2 +devolution ,div@'luSn L@% 4 +devolve dI'v0lv J2% 23A,6A,14 +devolved dI'v0lvd Jc%,Jd% 23A,6A,14 +devolves dI'v0lvz Ja% 23A,6A,14 +devolving dI'v0lvIN Jb% 33A,6A,14 +devote dI'v@Ut H2% 214 +devoted dI'v@UtId Hc%,Hd%,OA% 314 +devotedly dI'v@UtIdlI Pu% 4 +devotee ,dev@'ti K6% 3 +devotees ,dev@'tiz Kj% 3 +devotes dI'v@Uts Ha% 214 +devoting dI'v@UtIN Hb% 314 +devotion dI'v@USn M6% 3 +devotional dI'v@USn@l OA% 4 +devotions dI'v@USnz Mj% 3 +devour dI'vaU@R H0% 26A +devoured dI'vaU@d Hc%,Hd% 26A +devouring dI'vaU@rIN Hb% 36A +devours dI'vaU@z Ha% 26A +devout dI'vaUt OA% 2 +devoutly dI'vaUtlI Pu% 3 +devoutness dI'vaUtn@s L@% 3 +dew dju L@% 1 +dewier 'djuI@R Or% 3 +dewiest 'djuIIst Os% 3 +dewlap 'djul&p K6% 2 +dewlaps 'djul&ps Kj% 2 +dewy 'djuI OD% 2 +dexterity ,dek'sterItI L@% 4 +dexterous 'dekstr@s OA% 2 +dexterously 'dekstr@slI Pu% 3 +dextrose 'dekstr@Uz L@% 2 +dextrous 'dekstr@s OA% 2 +dhoti 'd@UtI K6$ 2 +dhotis 'd@UtIz Kj$ 2 +dhow daU K6$ 1 +dhows daUz Kj$ 1 +diabetes ,daI@'bitIz L@% 4 +diabetic ,daI@'betIk K6%,OA% 4 +diabetics ,daI@'betIks Kj% 4 +diabolic ,daI@'b0lIk OA$ 4 +diabolical ,daI@'b0lIkl OA% 5 +diabolically ,daI@'b0lIklI Pu% 5 +diacritic ,daI@'krItIk K6$,OA$ 4 +diacritical ,daI@'krItIk@l OA$ 5 +diacritics ,daI@'krItIks Kj$ 4 +diadem 'daI@dem K6$ 3 +diadems 'daI@demz Kj$ 3 +diaereses daI'er@siz Kj$ 4 +diaeresis daI'er@sIs Ki$ 4 +diagnose 'daI@gn@Uz H2% 36A,16B +diagnosed 'daI@gn@Uzd Hc%,Hd% 36A,16B +diagnoses 'daI@gn@UzIz Ha% 46A,16B +diagnoses ,daI@g'n@Usiz Kj% 4 +diagnosing 'daI@gn@UzIN Hb% 46A,16B +diagnosis ,daI@g'n@UsIs Mi% 4 +diagnostic ,daI@g'n0stIk OA% 4 +diagonal daI'&g@nl K6%,OA% 4 +diagonally daI'&g@n@lI Pu% 5 +diagonals daI'&g@nlz Kj% 4 +diagram 'daI@gr&m K6% 3 +diagrammatic ,daI@gr@'m&tIk OA% 5 +diagrammatical ,daI@gr@'m&tIkl OA% 6 +diagrammatically ,daI@gr@'m&tIklI Pu% 6 +diagrams 'daI@gr&mz Kj% 3 +dial 'daI@l H4%,K6% 26A +dialect 'daI@lekt M6% 3 +dialectal ,daI@'lektl OA$ 4 +dialectic ,daI@'lektIk K6% 4 +dialectical ,daI@'lektIk@l OA% 5 +dialectician ,daI@lek'tISn K6$ 5 +dialecticians ,daI@lek'tISnz Kj$ 5 +dialectics ,daI@'lektIks Kj$ 4 +dialects 'daI@lekts Mj% 3 +dialled 'daI@ld Hc%,Hd% 26A +dialling 'daI@lIN Hb% 36A +dialogue 'daI@l0g M6% 3 +dialogues 'daI@l0gz Mj% 3 +dials 'daI@lz Ha%,Kj% 26A +diameter daI'&mIt@R K6% 4 +diameters daI'&mIt@z Kj% 4 +diametrically ,daI@'metrIklI Pu% 5 +diamond 'daI@m@nd K6% 3 +diamonds 'daI@m@ndz Kj% 3 +diaper 'daI@p@R K6$ 3 +diapers 'daI@p@z Kj$ 3 +diaphanous daI'&f@n@s OA$ 4 +diaphragm 'daI@fr&m K6% 3 +diaphragms 'daI@fr&mz Kj% 3 +diarchies 'daIAkIz Kj$ 3 +diarchy 'daIAkI K8$ 3 +diaries 'daI@rIz Kj% 3 +diarist 'daI@rIst K6% 3 +diarists 'daI@rIsts Kj% 3 +diarrhea ,daI@'rI@ L@$ 4 +diarrhoea ,daI@'rI@ L@% 4 +diary 'daI@rI K8% 3 +diatonic ,daI@'t0nIk OA$ 4 +diatribe 'daI@traIb K6$ 3 +diatribes 'daI@traIbz Kj$ 3 +dibber 'dIb@R K6$ 2 +dibbers 'dIb@z Kj$ 2 +dibble 'dIbl H2$,K6$ 215B +dibbled 'dIbld Hc$,Hd$ 215B +dibbles 'dIblz Ha$,Kj$ 215B +dibbling 'dIblIN Hb$ 215B +dice daIs J2%,K9% 12A,6A +dice-box 'daIs-b0ks K7$ 2 +dice-boxes 'daIs-b0ksIz Kj$ 3 +diced daIst Jc%,Jd% 12A,6A +dices 'daIsIz Ja% 22A,6A +dicey 'daIsI OA% 2 +dichotomies daI'k0t@mIz Kj% 4 +dichotomy daI'k0t@mI K8% 4 +dicing 'daIsIN Jb% 22A,6A +dickens 'dIkInz Ki$ 2 +dicker 'dIk@R I0$ 22A,3A +dickered 'dIk@d Ic$,Id$ 22A,3A +dickering 'dIk@rIN Ib$ 32A,3A +dickers 'dIk@z Ia$ 22A,3A +dickey 'dIkI K6$ 2 +dickeys 'dIkIz Kj$ 2 +dickies 'dIkIz Kj$ 2 +dicky 'dIkI K8%,OA% 2 +dicky-seat 'dIkI-sit K6$ 3 +dicky-seats 'dIkI-sits Kj$ 3 +dickybird 'dIkIb3d K6% 3 +dickybirds 'dIkIb3dz Kj% 3 +dicta 'dIkt@ Kj$ 2 +dictate 'dIkteIt K6% 2 +dictate dIk'teIt J2% 22A,3A,6A,14 +dictated dIk'teItId Jc%,Jd% 32A,3A,6A,14 +dictates 'dIkteIts Kj% 2 +dictates dIk'teIts Ja% 22A,3A,6A,14 +dictating dIk'teItIN Jb% 32A,3A,6A,14 +dictation dIk'teISn M6% 3 +dictations dIk'teISnz Mj% 3 +dictator dIk'teIt@R K6% 3 +dictatorial ,dIkt@'tOrI@l OA% 5 +dictatorially ,dIkt@'tOrI@lI Pu% 6 +dictators dIk'teIt@z Kj% 3 +dictatorship dIk'teIt@SIp M6% 4 +dictatorships dIk'teIt@SIps Mj% 4 +diction 'dIkSn L@% 2 +dictionaries 'dIkS@nrIz Kj% 3 +dictionary 'dIkS@nrI K8% 3 +dictum 'dIkt@m K6% 2 +dictums 'dIkt@mz Kj$ 2 +did dId Gc*,Jc* 12A,2B,2C,3A,6A,6C,7B,12B,13B,15A,15B +didactic dI'd&ktIk OA% 3 +didactically dI'd&ktIklI Pu% 4 +diddle 'dIdl H2% 26A,14 +diddled 'dIdld Hc%,Hd% 26A,14 +diddles 'dIdlz Ha% 26A,14 +diddling 'dIdlIN Hb% 26A,14 +didn't 'dIdnt Gg* 2 +die daI I5%,K6$ 12A,2C,2D,3A,4C +die-cast 'daI-kAst OA$ 2 +die-hard 'daI-hAd K6% 2 +die-hards 'daI-hAdz Kj% 2 +died daId Ic%,Id% 12A,2C,2D,3A,4C +diereses daI'er@siz Kj$ 4 +dieresis daI'er@sIs Ki$ 4 +dies daIz Ia%,Kj$ 12A,2C,2D,3A,4C +diesel 'dizl M6% 2 +diesels 'dizlz Mj% 2 +diet 'daI@t J0%,K6% 22A,6A +dietary 'daI@t@rI OA% 3 +dieted 'daI@tId Jc%,Jd% 32A,6A +dietetics ,daI@'tetIks Lk$ 4 +dietician ,daI@'tISn K6% 4 +dieticians ,daI@'tISnz Kj% 4 +dieting 'daI@tIN Jb% 32A,6A +dietitian ,daI@'tISn K6% 4 +dietitians ,daI@'tISnz Kj% 4 +diets 'daI@ts Ja%,Kj% 22A,6A +differ 'dIf@R I0% 22A,2C,3A +differed 'dIf@d Ic%,Id% 22A,2C,3A +difference 'dIfr@ns M6% 2 +differences 'dIfr@nsIz Mj% 3 +different 'dIfr@nt OA* 2 +differential ,dIf@'renSl K6%,OA% 4 +differentially ,dIf@'renS@lI Pu% 5 +differentials ,dIf@'renSlz Kj% 4 +differentiate ,dIf@'renSIeIt H2% 53A,6A,14 +differentiated ,dIf@'renSIeItId Hc%,Hd% 63A,6A,14 +differentiates ,dIf@'renSIeIts Ha% 53A,6A,14 +differentiating ,dIf@'renSIeItIN Hb% 63A,6A,14 +differentiation ,dIf@renSI'eISn M6% 6 +differentiations ,dIf@renSI'eISnz Mj$ 6 +differently 'dIfr@ntlI Pu% 3 +differing 'dIf@rIN Ib% 32A,2C,3A +differs 'dIf@z Ia% 22A,2C,3A +difficult 'dIfIk@lt OA% 3 +difficulties 'dIfIk@ltIz Mj% 4 +difficulty 'dIfIk@ltI M8% 4 +diffidence 'dIfId@ns L@% 3 +diffident 'dIfId@nt OA% 3 +diffidently 'dIfId@ntlI Pu% 4 +diffract dI'fr&kt H0$ 26A +diffracted dI'fr&ktId Hc$,Hd% 36A +diffracting dI'fr&ktIN Hb$ 36A +diffraction dI'fr&kSn K6% 3 +diffractions dI'fr&kSnz Kj$ 3 +diffracts dI'fr&kts Ha$ 26A +diffuse dI'fjus OA% 2 +diffuse dI'fjuz J2% 22A,6A +diffused dI'fjuzd Jc%,Jd% 22A,6A +diffusely dI'fjuslI Pu% 3 +diffuseness dI'fjusn@s L@% 3 +diffuses dI'fjuzIz Ja% 32A,6A +diffusing dI'fjuzIN Jb% 32A,6A +diffusion dI'fjuZn L@% 3 +dig dIg J5%,K6% 12C,3A,6A,15B +digest 'daIdZest K6% 2 +digest dI'dZest J0% 22A,6A +digested dI'dZestId Jc%,Jd% 32A,6A +digestibility dI,dZest@'bIlItI L@$ 6 +digestible dI'dZest@bl OA% 4 +digesting dI'dZestIN Jb% 32A,6A +digestion dI'dZestS@n M6% 3 +digestions dI'dZestS@nz Mj$ 3 +digestive dI'dZestIv OA% 3 +digests 'daIdZests Kj% 2 +digests dI'dZests Ja% 22A,6A +digger 'dIg@R K6% 2 +diggers 'dIg@z Kj% 2 +digging 'dIgIN Jb%,M6% 22C,3A,6A,15B +diggings 'dIgINz Mj% 2 +digit 'dIdZIt K6% 2 +digital 'dIdZItl OA% 3 +digitally 'dIdZIt@lI Pu% 4 +digits 'dIdZIts Kj% 2 +dignified 'dIgnIfaId Hc%,Hd%,OA% 36A,14 +dignifies 'dIgnIfaIz Ha% 36A,14 +dignify 'dIgnIfaI H3% 36A,14 +dignifying 'dIgnIfaIIN Hb% 46A,14 +dignitaries 'dIgnIt@rIz Kj% 4 +dignitary 'dIgnIt@rI K8% 4 +dignities 'dIgnItIz Mj$ 3 +dignity 'dIgnItI M8% 3 +digraph 'daIgrAf K6$ 2 +digraphs 'daIgrAfs Kj$ 2 +digress daI'gres I1% 22A,3A +digressed daI'grest Ic%,Id% 22A,3A +digresses daI'gresIz Ia% 32A,3A +digressing daI'gresIN Ib% 32A,3A +digression daI'greSn M6% 3 +digressions daI'greSnz Mj% 3 +digs dIgz Ja%,Kj% 12C,3A,6A,15B +dike daIk J2$,K6% 1 +diked daIkt Jc$,Jd$ 1 +dikes daIks Ja$,Kj% 1 +diking 'daIkIN Jb$ 2 +dilapidated dI'l&pIdeItId OA% 5 +dilapidation dI,l&pI'deISn L@% 5 +dilate daI'leIt J2% 22A,3A,6A +dilated daI'leItId Jc%,Jd% 32A,3A,6A +dilates daI'leIts Ja% 22A,3A,6A +dilating daI'leItIN Jb% 32A,3A,6A +dilation daI'leISn L@% 3 +dilatory 'dIl@t@rI OA$ 4 +dilemma dI'lem@ K6% 3 +dilemmas dI'lem@z Kj% 3 +dilettante ,dIlI't&ntI K6% 4 +dilettantes ,dIlI't&ntIz Kj$ 4 +dilettanti ,dIlI't&nti Kj$ 4 +diligence 'dIlIdZ@ns L@% 3 +diligent 'dIlIdZ@nt OA% 3 +diligently 'dIlIdZ@ntlI Pu% 4 +dill dIl L@% 1 +dilly-dallied 'dIlI-d&lId Ic%,Id% 42A +dilly-dallies 'dIlI-d&lIz Ia% 42A +dilly-dally 'dIlI-d&lI I3% 42A +dilly-dallying 'dIlI-d&lIIN Ib% 52A +dilute daI'ljut H2%,OA% 26A,14 +diluted daI'ljutId Hc%,Hd% 36A,14 +dilutes daI'ljuts Ha% 26A,14 +diluting daI'ljutIN Hb% 36A,14 +dilution daI'ljuSn M6% 3 +dilutions daI'ljuSnz Mj% 3 +dim dIm J4%,OE% 12A,6A +dime daIm K6% 1 +dimension dI'menSn M6% 3 +dimensional dI'menS@nl OA% 4 +dimensions dI'menSnz Mj% 3 +dimes daImz Kj% 1 +diminish dI'mInIS J1% 32A,6A +diminished dI'mInISt Jc%,Jd% 32A,6A +diminishes dI'mInISIz Ja% 42A,6A +diminishing dI'mInISIN Jb% 42A,6A +diminuendo dI,mInjU'end@U K6% 5 +diminuendos dI,mInjU'end@Uz Kj$ 5 +diminution ,dImI'njuSn M6% 4 +diminutions ,dImI'njuSnz Mj$ 4 +diminutive dI'mInjUtIv K6$,OA$ 4 +diminutives dI'mInjUtIvz Kj$ 4 +dimity 'dImItI L@$ 3 +dimly 'dImlI Pu% 2 +dimmed dImd Jc%,Jd% 12A,6A +dimmer 'dIm@R Or% 2 +dimmest 'dImIst Os% 2 +dimming 'dImIN Jb% 22A,6A +dimness 'dImn@s L@% 2 +dimple 'dImpl J2$,K6% 22A,6A +dimpled 'dImpld Jc$,Jd% 22A,6A +dimples 'dImplz Ja$,Kj% 22A,6A +dimpling 'dImplIN Jb$ 22A,6A +dims dImz Ja% 12A,6A +din dIn J4$,L@% 12C +dinar 'dinAR K6$ 2 +dinars 'dinAz Kj$ 2 +dine daIn J2% 12A,6A +dined daInd Jc%,Jd% 12A,6A +diner 'daIn@R K6% 2 +diners 'daIn@z Kj% 2 +dines daInz Ja% 12A,6A +ding-dong ,dIN-'d0N K6%,Pu% 2 +ding-dongs ,dIN-'d0Nz Kj% 2 +dinghies 'dINgIz Kj% 2 +dinghy 'dINgI K8% 2 +dingier 'dIndZI@R Or% 3 +dingiest 'dIndZIIst Os% 3 +dingily 'dIndZIlI Pu% 3 +dinginess 'dIndZIn@s L@% 3 +dingle 'dINgl K6$ 2 +dingles 'dINglz Kj$ 2 +dingy 'dIndZI OD% 2 +dining 'daInIN Jb% 22A,6A +dining-car 'daInIN-kAR K6% 3 +dining-cars 'daInIN-kAz Kj% 3 +dining-room 'daInIN-rum K6% 3 +dining-rooms 'daInIN-rumz Kj% 3 +dining-table 'daInIN-teIbl K6% 4 +dining-tables 'daInIN-teIblz Kj% 4 +dinkier 'dINkI@R Or$ 3 +dinkiest 'dINkIIst Os$ 3 +dinky 'dINkI OD% 2 +dinned dInd Jc$,Jd% 12C +dinner 'dIn@R K6% 2 +dinner-jacket 'dIn@-dZ&kIt K6% 4 +dinner-jackets 'dIn@-dZ&kIts Kj% 4 +dinner-parties 'dIn@-pAtIz Kj% 4 +dinner-party 'dIn@-pAtI K8% 4 +dinner-service 'dIn@-s3vIs K6% 4 +dinner-services 'dIn@-s3vIsIz Kj% 5 +dinner-set 'dIn@-set K6% 3 +dinner-sets 'dIn@-sets Kj% 3 +dinners 'dIn@z Kj% 2 +dinning 'dInIN Jb$ 22C +dinosaur 'daIn@sOR K6% 3 +dinosaurs 'daIn@sOz Kj% 3 +dins dInz Ja$ 12C +dint dInt K6% 1 +dints dInts Kj$ 1 +diocesan daI'0sIsn K6$,OA% 4 +diocesans daI'0sIsnz Kj$ 4 +diocese 'daI@sIs K6% 3 +dioceses 'daI@sIsIz Kj$ 4 +dioxide daI'0ksaId K6% 3 +dioxides daI'0ksaIdz Kj% 3 +dip dIp J4%,M6% 12A,2C,3A,6A,14 +diphtheria dIf'TI@rI@ L@% 4 +diphthong 'dIfT0N K6$ 2 +diphthongs 'dIfT0Nz Kj$ 2 +diploma dI'pl@Um@ K6% 3 +diplomacy dI'pl@Um@sI L@% 4 +diplomas dI'pl@Um@z Kj% 3 +diplomat 'dIpl@m&t K6% 3 +diplomatic ,dIpl@'m&tIk OA% 4 +diplomatically ,dIpl@'m&tIklI Pu% 5 +diplomatist dI'pl@Um@tIst K6$ 4 +diplomatists dI'pl@Um@tIsts Kj$ 4 +diplomats 'dIpl@m&ts Kj% 3 +dipped dIpt Jc%,Jd% 12A,2C,3A,6A,14 +dipper 'dIp@R K6% 2 +dippers 'dIp@z Kj% 2 +dipping 'dIpIN Jb% 22A,2C,3A,6A,14 +dips dIps Ja%,Mj% 12A,2C,3A,6A,14 +dipsomania ,dIps@'meInI@ L@% 5 +dipsomaniac ,dIps@'meInI&k K6% 5 +dipsomaniacs ,dIps@'meInI&ks Kj% 5 +dipstick 'dIpstIk K6% 2 +dipsticks 'dIpstIks Kj% 2 +diptych 'dIptIk K6$ 2 +diptychs 'dIptIks Kj$ 2 +dire 'daI@R OB% 1 +direct dI'rekt J0%,OA%,Pu% 22A,6A,9,14,17 +directed dI'rektId Jc%,Jd% 32A,6A,9,14,17 +directing dI'rektIN Jb% 32A,6A,9,14,17 +direction dI'rekSn M6% 3 +direction-finder dI'rekSn-,faInd@R K6% 5 +direction-finders dI'rekSn-,faInd@z Kj% 5 +directional dI'rekS@nl OA% 4 +directions dI'rekSnz Mj% 3 +directive dI'rektIv K6% 3 +directives dI'rektIvz Kj% 3 +directly dI'rektlI Pu%,V-% 3 +directness dI'rektn@s L@% 3 +director dI'rekt@R K6% 3 +directorate dI'rekt@r@t K6% 4 +directorates dI'rekt@r@ts Kj% 4 +directories dI'rekt@rIz Kj% 4 +directors dI'rekt@z Kj% 3 +directorship dI'rekt@SIp K6% 4 +directorships dI'rekt@SIps Kj% 4 +directory dI'rekt@rI K8% 4 +directs dI'rekts Ja% 22A,6A,9,14,17 +direful 'daI@f@l OA$ 2 +direfully 'daI@f@lI Pu$ 3 +direr 'daI@r@R Or$ 2 +direst 'daI@rIst Os% 2 +dirge d3dZ K6% 1 +dirges 'd3dZIz Kj% 2 +dirigible 'dIrIdZ@bl K6$ 4 +dirigibles 'dIrIdZ@blz Kj$ 4 +dirk d3k K6$ 1 +dirks d3ks Kj$ 1 +dirndl 'd3ndl K6$ 2 +dirndls 'd3ndlz Kj$ 2 +dirt d3t L@% 1 +dirt-cheap 'd3t-tSip OA% 2 +dirt-track 'd3t-tr&k K6% 2 +dirt-tracks 'd3t-tr&ks Kj% 2 +dirtied 'd3tId Jc%,Jd% 22A,6A +dirtier 'd3tI@R Or% 3 +dirties 'd3tIz Ja% 22A,6A +dirtiest 'd3tIIst Os% 3 +dirtily 'd3tIlI Pu% 3 +dirty 'd3tI J3%,OD% 22A,6A +dirtying 'd3tIIN Jb% 32A,6A +disabilities ,dIs@'bIlItIz Mj% 5 +disability ,dIs@'bIlItI M8% 5 +disable dIs'eIbl H2% 36A +disabled dIs'eIbld Hc%,Hd% 36A +disablement dIs'eIblm@nt M6% 4 +disablements dIs'eIblm@nts Mj$ 4 +disables dIs'eIblz Ha% 36A +disabling dIs'eIblIN Hb% 36A +disabuse ,dIs@'bjuz H2% 36A,14 +disabused ,dIs@'bjuzd Hc%,Hd% 36A,14 +disabuses ,dIs@'bjuzIz Ha$ 46A,14 +disabusing ,dIs@'bjuzIN Hb$ 46A,14 +disadvantage ,dIs@d'vAntIdZ M6% 4 +disadvantageous ,dIs,&dv@n'teIdZ@s OA% 5 +disadvantageously ,dIs,&dv@n'teIdZ@slI Pu% 6 +disadvantages ,dIs@d'vAntIdZIz Mj% 5 +disaffected ,dIs@'fektId OA% 4 +disaffection ,dIs@'fekSn L@% 4 +disafforest ,dIs@'f0rIst H0$ 4 +disafforested ,dIs@'f0rIstId Hc$,Hd$ 5 +disafforesting ,dIs@'f0rIstIN Hb$ 5 +disafforests ,dIs@'f0rIsts Ha$ 4 +disagree ,dIs@'gri H5% 32A,3A +disagreeable ,dIs@'gri@bl OA% 5 +disagreeableness ,dIs@'gri@bln@s L@% 6 +disagreeably ,dIs@'gri@blI Pu% 5 +disagreed ,dIs@'grid Hc%,Hd% 32A,3A +disagreeing ,dIs@'griIN Hb% 42A,3A +disagreement ,dIs@'grim@nt M6% 4 +disagreements ,dIs@'grim@nts Mj% 4 +disagrees ,dIs@'griz Ha% 32A,3A +disallow ,dIs@'laU H0% 36A +disallowed ,dIs@'laUd Hc%,Hd% 36A +disallowing ,dIs@'laUIN Hb% 46A +disallows ,dIs@'laUz Ha% 36A +disappear ,dIs@'pI@R I0% 32A +disappearance ,dIs@'pI@r@ns K6% 4 +disappearances ,dIs@'pI@r@nsIz Kj% 5 +disappeared ,dIs@'pI@d Ic%,Id% 32A +disappearing ,dIs@'pI@rIN Ib% 42A +disappears ,dIs@'pI@z Ia% 32A +disappoint ,dIs@'poInt H0% 36A +disappointed ,dIs@'poIntId Hc%,Hd%,OA% 46A +disappointedly ,dIs@'poIntIdlI Pu% 5 +disappointing ,dIs@'poIntIN Hb%,OA% 46A +disappointingly ,dIs@'poIntINlI Pu% 5 +disappointment ,dIs@'poIntm@nt M6% 4 +disappointments ,dIs@'poIntm@nts Mj% 4 +disappoints ,dIs@'poInts Ha% 36A +disapprobation ,dIs,&pr@'beISn L@$ 5 +disapproval ,dIs@'pruv@l L@% 4 +disapprove ,dIs@'pruv J2% 32A,3A,6A +disapproved ,dIs@'pruvd Jc%,Jd% 32A,3A,6A +disapproves ,dIs@'pruvz Ja% 32A,3A,6A +disapproving ,dIs@'pruvIN Jb% 42A,3A,6A +disapprovingly ,dIs@'pruvINlI Pu% 5 +disarm dIs'Am J0% 22A,6A +disarmament dIs'Am@m@nt L@% 4 +disarmed dIs'Amd Jc%,Jd% 22A,6A +disarming dIs'AmIN Jb% 32A,6A +disarms dIs'Amz Ja% 22A,6A +disarrange ,dIs@'reIndZ H2% 36A +disarranged ,dIs@'reIndZd Hc%,Hd% 36A +disarrangement ,dIs@'reIndZm@nt K6% 4 +disarrangements ,dIs@'reIndZm@nts Kj$ 4 +disarranges ,dIs@'reIndZIz Ha% 46A +disarranging ,dIs@'reIndZIN Hb% 46A +disarray ,dIs@'reI H0$,L@% 3 +disarrayed ,dIs@'reId Hc%,Hd% 3 +disarraying ,dIs@'reIIN Hb$ 4 +disarrays ,dIs@'reIz Ha$ 3 +disassociate ,dIs@'s@USIeIt H2% 514 +disassociated ,dIs@'s@USIeItId Hc%,Hd% 614 +disassociates ,dIs@'s@USIeIts Ha% 514 +disassociating ,dIs@'s@USIeItIN Hb% 614 +disaster dI'zAst@R M6% 3 +disasters dI'zAst@z Mj% 3 +disastrous dI'zAstr@s OA% 3 +disastrously dI'zAstr@slI Pu% 4 +disavow ,dIs@'vaU H0% 36A +disavowal ,dIs@'vaU@l K6% 4 +disavowals ,dIs@'vaU@lz Kj% 4 +disavowed ,dIs@'vaUd Hc%,Hd% 36A +disavowing ,dIs@'vaUIN Hb$ 46A +disavows ,dIs@'vaUz Ha$ 36A +disband dIs'b&nd J0% 22A,6A +disbanded dIs'b&ndId Jc%,Jd% 32A,6A +disbanding dIs'b&ndIN Jb% 32A,6A +disbandment dIs'b&ndm@nt K6% 3 +disbandments dIs'b&ndm@nts Kj% 3 +disbands dIs'b&ndz Ja% 22A,6A +disbelief ,dIsbI'lif L@% 3 +disbelieve ,dIsbI'liv J2% 32A,3A,6A +disbelieved ,dIsbI'livd Jc%,Jd% 32A,3A,6A +disbelieves ,dIsbI'livz Ja% 32A,3A,6A +disbelieving ,dIsbI'livIN Jb% 42A,3A,6A +disbelievingly ,dIsbI'livINlI Pu% 5 +disbud dIs'bVd H4$ 26A +disbudded dIs'bVdId Hc$,Hd$ 36A +disbudding dIs'bVdIN Hb$ 36A +disbuds dIs'bVdz Ha$ 26A +disburden dIs'b3dn H0$ 36A,14 +disburdened dIs'b3dnd Hc$,Hd$ 36A,14 +disburdening dIs'b3dnIN Hb$ 46A,14 +disburdens dIs'b3dnz Ha$ 36A,14 +disburse dIs'b3s J2% 22A,6A +disbursed dIs'b3st Jc%,Jd% 22A,6A +disbursement dIs'b3sm@nt M6% 3 +disbursements dIs'b3sm@nts Mj% 3 +disburses dIs'b3sIz Ja% 32A,6A +disbursing dIs'b3sIN Jb% 32A,6A +disc dIsk K6% 1 +discard 'dIskAd K6% 2 +discard dI'skAd H0% 26A +discarded dI'skAdId Hc%,Hd% 36A +discarding dI'skAdIN Hb% 36A +discards 'dIskAdz Kj$ 2 +discards dI'skAdz Ha% 26A +discern dI's3n H0% 26A +discerned dI's3nd Hc%,Hd% 26A +discernible dI's3n@bl OA% 4 +discerning dI's3nIN Hb%,OA% 36A +discernment dI's3nm@nt L@% 3 +discerns dI's3nz Ha% 26A +discharge 'dIstSAdZ M6% 2 +discharge dI'stSAdZ J2% 26A,14 +discharged dI'stSAdZd Jc%,Jd% 26A,14 +discharges 'dIstSAdZIz Mj% 3 +discharges dI'stSAdZIz Ja% 36A,14 +discharging dI'stSAdZIN Jb% 36A,14 +disciple dI'saIpl K6% 3 +disciples dI'saIplz Kj% 3 +disciplinarian ,dIs@plI'ne@rI@n K6% 6 +disciplinarians ,dIs@plI'ne@rI@nz Kj% 6 +disciplinary 'dIsIplIn@rI OA% 5 +discipline 'dIsIplIn H2%,M6% 36A +disciplined 'dIsIplInd Hc%,Hd% 36A +disciplines 'dIsIplInz Ha%,Mj% 36A +disciplining 'dIsIplInIN Hb% 46A +disclaim dIs'kleIm H0% 26A,6C +disclaimed dIs'kleImd Hc%,Hd% 26A,6C +disclaimer dIs'kleIm@R K6% 3 +disclaimers dIs'kleIm@z Kj% 3 +disclaiming dIs'kleImIN Hb% 36A,6C +disclaims dIs'kleImz Ha% 26A,6C +disclose dIs'kl@Uz H2% 26A,14 +disclosed dIs'kl@Uzd Hc%,Hd% 26A,14 +discloses dIs'kl@UzIz Ha% 36A,14 +disclosing dIs'kl@UzIN Hb% 36A,14 +disclosure dIs'kl@UZ@R M6% 3 +disclosures dIs'kl@UZ@z Mj% 3 +disco 'dIsk@U K6% 2 +discolour dIs'kVl@R J0% 32A,6A +discolouration ,dIsk@l@'reISn M6% 5 +discolourations ,dIsk@l@'reISnz Mj$ 5 +discoloured dIs'kVl@d Jc%,Jd% 32A,6A +discolouring dIs'kVl@rIN Jb% 42A,6A +discolours dIs'kVl@z Ja% 32A,6A +discomfit dIs'kVmfIt H0$ 36A +discomfited dIs'kVmfItId Hc$,Hd% 46A +discomfiting dIs'kVmfItIN Hb$ 46A +discomfits dIs'kVmfIts Ha$ 36A +discomfiture dIs'kVmfItS@R L@% 4 +discomfort dIs'kVmf@t M6% 3 +discomforts dIs'kVmf@ts Mj% 3 +discommode ,dIsk@'m@Ud H2$ 36A +discommoded ,dIsk@'m@UdId Hc$,Hd% 46A +discommodes ,dIsk@'m@Udz Ha$ 36A +discommoding ,dIsk@'m@UdIN Hb$ 46A +discompose ,dIsk@m'p@Uz H2$ 36A +discomposed ,dIsk@m'p@Uzd Hc$,Hd% 36A +discomposes ,dIsk@m'p@UzIz Ha$ 46A +discomposing ,dIsk@m'p@UzIN Hb$ 46A +discomposure ,dIsk@m'p@UZ@R L@$ 4 +disconcert ,dIsk@n's3t H0% 36A +disconcerted ,dIsk@n's3tId Hc%,Hd% 46A +disconcerting ,dIsk@n's3tIN Hb% 46A +disconcertingly ,dIsk@n's3tINlI Pu% 5 +disconcerts ,dIsk@n's3ts Ha% 36A +disconnect ,dIsk@'nekt H0% 36A,14 +disconnected ,dIsk@'nektId Hc%,Hd%,OA% 46A,14 +disconnecting ,dIsk@'nektIN Hb% 46A,14 +disconnects ,dIsk@'nekts Ha% 36A,14 +disconsolate dIs'k0ns@l@t OA% 4 +disconsolately dIs'k0ns@l@tlI Pu% 5 +discontent ,dIsk@n'tent H0$,M6% 36A +discontented ,dIsk@n'tentId Hc$,Hd% 46A +discontentedly ,dIsk@n'tentIdlI Pu% 5 +discontenting ,dIsk@n'tentIN Hb$ 46A +discontents ,dIsk@n'tents Ha$,Mj$ 36A +discontinuance ,dIsk@n'tInjU@ns K6$ 5 +discontinuances ,dIsk@n'tInjU@nsIz Kj$ 6 +discontinue ,dIsk@n'tInju J2% 42A,6A,6C +discontinued ,dIsk@n'tInjud Jc%,Jd% 42A,6A,6C +discontinues ,dIsk@n'tInjuz Ja% 42A,6A,6C +discontinuing ,dIsk@n'tInjuIN Jb% 52A,6A,6C +discontinuities ,dIsk@ntIn'jUItIz Mj% 6 +discontinuity ,dIsk@ntIn'jUItI M8% 6 +discontinuous ,dIsk@n'tInjU@s OA% 5 +discord 'dIskOd M6% 2 +discordance dI'skOd@ns L@% 3 +discordant dI'skOd@nt OA% 3 +discordantly dI'skOd@ntlI Pu% 4 +discords 'dIskOdz Mj% 2 +discos 'dIsk@Uz Kj% 2 +discotheque 'dIsk@tek K6% 3 +discotheques 'dIsk@teks Kj% 3 +discount 'dIskaUnt M6% 2 +discount dIs'kaUnt H0% 26A +discounted dIs'kaUntId Hc%,Hd% 36A +discountenance dIs'kaUntIn@ns H2$ 46A +discountenanced dIs'kaUntIn@nst Hc$,Hd$ 46A +discountenances dIs'kaUntIn@nsIz Ha$ 56A +discountenancing dIs'kaUntIn@nsIN Hb$ 56A +discounting dIs'kaUntIN Hb% 36A +discounts 'dIskaUnts Mj% 2 +discounts dIs'kaUnts Ha% 26A +discourage dI'skVrIdZ H2% 36A,14 +discouraged dI'skVrIdZd Hc%,Hd% 36A,14 +discouragement dI'skVrIdZm@nt M6% 4 +discouragements dI'skVrIdZm@nts Mj% 4 +discourages dI'skVrIdZIz Ha% 46A,14 +discouraging dI'skVrIdZIN Hb% 46A,14 +discourse 'dIskOs K6% 2 +discourse dI'skOs I2% 2 +discoursed dI'skOst Ic%,Id% 2 +discourses 'dIskOsIz Kj% 3 +discourses dI'skOsIz Ia% 3 +discoursing dI'skOsIN Ib% 3 +discourteous dIs'k3tI@s OA% 3 +discourteously dIs'k3tI@slI Pu% 4 +discourtesies dIs'k3t@sIz Mj% 4 +discourtesy dIs'k3t@sI M8% 4 +discover dI'skVv@R H0% 36A,8,9,10,25 +discovered dI'skVv@d Hc%,Hd% 36A,8,9,10,25 +discoverer dI'skVv@r@R K6% 4 +discoverers dI'skVv@r@z Kj% 4 +discoveries dI'skVv@rIz Mj% 4 +discovering dI'skVv@rIN Hb% 46A,8,9,10,25 +discovers dI'skVv@z Ha% 36A,8,9,10,25 +discovery dI'skVv@rI M8% 4 +discredit dIs'kredIt H0%,L@% 36A +discreditable dIs'kredIt@bl OA% 5 +discreditably dIs'kredIt@blI Pu% 5 +discredited dIs'kredItId Hc%,Hd% 46A +discrediting dIs'kredItIN Hb% 46A +discredits dIs'kredIts Ha% 36A +discreet dI'skrit OA% 2 +discreetly dI'skritlI Pu% 3 +discrepancies dI'skrep@nsIz Mj% 4 +discrepancy dI'skrep@nsI M8% 4 +discrete dI'skrit OA$ 2 +discreteness dI'skritn@s L@$ 3 +discretion dI'skreSn L@% 3 +discretionary dI'skreSn@rI OA% 5 +discriminate dI'skrImIneIt J2% 42A,3A,14 +discriminated dI'skrImIneItId Jc%,Jd% 52A,3A,14 +discriminates dI'skrImIneIts Ja% 42A,3A,14 +discriminating dI'skrImIneItIN Jb%,OA% 52A,3A,14 +discrimination dI,skrImI'neISn L@% 5 +discriminatory dI'skrImIn@t@rI OA% 6 +discs dIsks Kj% 1 +discursive dI'sk3sIv OA% 3 +discursively dI'sk3sIvlI Pu% 4 +discursiveness dI'sk3sIvn@s L@% 4 +discus 'dIsk@s K7% 2 +discuses 'dIsk@sIz Kj% 3 +discuss dI'skVs H1% 26A,8,10,14 +discussed dI'skVst Hc%,Hd% 26A,8,10,14 +discusses dI'skVsIz Ha% 36A,8,10,14 +discussing dI'skVsIN Hb% 36A,8,10,14 +discussion dI'skVSn M6% 3 +discussions dI'skVSnz Mj% 3 +disdain dIs'deIn H0%,L@% 26A,6C,7A +disdained dIs'deInd Hc%,Hd% 26A,6C,7A +disdainful dIs'deInf@l OA% 3 +disdainfully dIs'deInf@lI Pu% 4 +disdaining dIs'deInIN Hb% 36A,6C,7A +disdains dIs'deInz Ha% 26A,6C,7A +disease dI'ziz M6% 2 +diseased dI'zizd OA% 2 +diseases dI'zizIz Mj% 3 +disembark ,dIsIm'bAk J0% 32A,2C,6A,14 +disembarkation ,dIs,embA'keISn K6% 5 +disembarkations ,dIs,embA'keISnz Kj$ 5 +disembarked ,dIsIm'bAkt Jc%,Jd% 32A,2C,6A,14 +disembarking ,dIsIm'bAkIN Jb% 42A,2C,6A,14 +disembarks ,dIsIm'bAks Ja% 32A,2C,6A,14 +disembarrass ,dIsIm'b&r@s H1% 414 +disembarrassed ,dIsIm'b&r@st Hc%,Hd% 414 +disembarrasses ,dIsIm'b&r@sIz Ha$ 514 +disembarrassing ,dIsIm'b&r@sIN Hb$ 514 +disembarrassment ,dIsIm'b&r@sm@nt K6$ 5 +disembarrassments ,dIsIm'b&r@sm@nts Kj$ 5 +disembodied ,dIsIm'b0dId Hc$,Hd% 46A +disembodies ,dIsIm'b0dIz Ha$ 46A +disembody ,dIsIm'b0dI H3$ 46A +disembodying ,dIsIm'b0dIIN Hb$ 56A +disembowel ,dIsIm'baU@l H4% 46A +disembowelled ,dIsIm'baU@ld Hc%,Hd% 46A +disembowelling ,dIsIm'baU@lIN Hb% 56A +disembowels ,dIsIm'baU@lz Ha% 46A +disenchant ,dIsIn'tSAnt H0% 36A +disenchanted ,dIsIn'tSAntId Hc%,Hd% 46A +disenchanting ,dIsIn'tSAntIN Hb% 46A +disenchantment ,dIsIn'tSAntm@nt K6% 4 +disenchantments ,dIsIn'tSAntm@nts Kj% 4 +disenchants ,dIsIn'tSAnts Ha% 36A +disencumber ,dIsIn'kVmb@R H0$ 46A,14 +disencumbered ,dIsIn'kVmb@d Hc$,Hd$ 46A,14 +disencumbering ,dIsIn'kVmb@rIN Hb$ 56A,14 +disencumbers ,dIsIn'kVmb@z Ha$ 46A,14 +disenfranchise ,dIsIn'fr&ntSaIz H2$ 4 +disenfranchised ,dIsIn'fr&ntSaIzd Hc$,Hd$ 4 +disenfranchises ,dIsIn'fr&ntSaIzIz Ha$ 5 +disenfranchising ,dIsIn'fr&ntSaIzIN Hb$ 5 +disengage ,dIsIn'geIdZ J2% 32A,2C,6A,14 +disengaged ,dIsIn'geIdZd Jc%,Jd% 32A,2C,6A,14 +disengagement ,dIsIn'geIdZm@nt K6% 4 +disengagements ,dIsIn'geIdZm@nts Kj% 4 +disengages ,dIsIn'geIdZIz Ja% 42A,2C,6A,14 +disengaging ,dIsIn'geIdZIN Jb% 42A,2C,6A,14 +disentangle ,dIsIn't&Ngl J2% 42A,6A,14 +disentangled ,dIsIn't&Ngld Jc%,Jd% 42A,6A,14 +disentanglement ,dIsIn't&Nglm@nt K6% 5 +disentanglements ,dIsIn't&Nglm@nts Kj$ 5 +disentangles ,dIsIn't&Nglz Ja% 42A,6A,14 +disentangling ,dIsIn't&NglIN Jb% 42A,6A,14 +disequilibrium ,dIsikwI'lIbrI@m L@$ 6 +disestablish ,dIsI'st&blIS H1% 46A +disestablished ,dIsI'st&blISt Hc%,Hd% 46A +disestablishes ,dIsI'st&blISIz Ha$ 56A +disestablishing ,dIsI'st&blISIN Hb$ 56A +disestablishment ,dIsI'st&blISm@nt L@% 5 +disfavour ,dIs'feIv@R H0%,L@% 36A +disfavoured ,dIs'feIv@d Hc%,Hd% 36A +disfavouring ,dIs'feIv@rIN Hb$ 46A +disfavours ,dIs'feIv@z Ha$ 36A +disfigure dIs'fIg@R H2$ 36A +disfigured dIs'fIg@d Hc$,Hd% 36A +disfigurement dIs'fIg@m@nt M6% 4 +disfigurements dIs'fIg@m@nts Mj% 4 +disfigures dIs'fIg@z Ha$ 36A +disfiguring dIs'fIg@rIN Hb$ 46A +disforest dIs'f0rIst H0$ 36A +disforested dIs'f0rIstId Hc$,Hd$ 46A +disforesting dIs'f0rIstIN Hb$ 46A +disforests dIs'f0rIsts Ha$ 36A +disfranchise dIs'fr&ntSaIz H2$ 36A +disfranchised dIs'fr&ntSaIzd Hc$,Hd$ 36A +disfranchisement dIs'fr&ntSIzm@nt L@$ 4 +disfranchises dIs'fr&ntSaIzIz Ha$ 46A +disfranchising dIs'fr&ntSaIzIN Hb$ 46A +disgorge dIs'gOdZ H2% 26A +disgorged dIs'gOdZd Hc%,Hd% 26A +disgorges dIs'gOdZIz Ha% 36A +disgorging dIs'gOdZIN Hb% 36A +disgrace dIs'greIs H2%,L@% 26A +disgraced dIs'greIst Hc%,Hd% 26A +disgraceful dIs'greIsf@l OA% 3 +disgracefully dIs'greIsf@lI Pu% 4 +disgraces dIs'greIsIz Ha% 36A +disgracing dIs'greIsIN Hb% 36A +disgruntled dIs'grVntld OA% 3 +disguise dIs'gaIz H2%,M6% 26A,16B +disguised dIs'gaIzd Hc%,Hd% 26A,16B +disguises dIs'gaIzIz Ha%,Mj% 36A,16B +disguising dIs'gaIzIN Hb% 36A,16B +disgust dIs'gVst H0%,L@% 26A +disgusted dIs'gVstId Hc%,Hd% 36A +disgustedly dIz'gVstIdlI Pu% 4 +disgusting dIs'gVstIN Hb%,OA% 36A +disgustingly dIs'gVstINlI Pu% 4 +disgusts dIs'gVsts Ha% 26A +dish dIS H1%,K7% 16A,15B +dishabille ,dIs&'bil L@$ 3 +disharmonious ,dIshA'm@UnI@s OA$ 5 +disharmony dIs'hAm@nI L@% 4 +dishcloth 'dISkl0T K6% 2 +dishcloths 'dISkl0Ts Kj% 2 +dishearten dIs'hAtn H0% 36A +disheartened dIs'hAtnd Hc%,Hd% 36A +disheartening dIs'hAtnIN Hb% 46A +disheartens dIs'hAtnz Ha% 36A +dished dISt Hc%,Hd% 16A,15B +dishes 'dISIz Ha%,Kj% 26A,15B +dishevelled dI'Sevld OA% 3 +dishful 'dISfUl K6% 2 +dishfuls 'dISfUlz Kj% 2 +dishier 'dISI@R Or% 3 +dishiest 'dISIIst Os% 3 +dishing 'dISIN Hb% 26A,15B +dishonest dIs'0nIst OA% 3 +dishonesties dIs'0nIstIz Mj$ 4 +dishonestly dIs'0nIstlI Pu% 4 +dishonesty dIs'0nIstI M8% 4 +dishonour dIs'0n@R H0%,L@% 36A +dishonourable dIs'0n@r@bl OA% 5 +dishonourably dIs'0n@r@blI Pu% 5 +dishonoured dIs'0n@d Hc%,Hd% 36A +dishonouring dIs'0n@rIN Hb% 46A +dishonours dIs'0n@z Ha% 36A +dishwasher 'dISw0S@R K6% 3 +dishwashers 'dISw0S@z Kj% 3 +dishwater 'dISwOt@R L@% 3 +dishy 'dISI OD% 2 +disillusion ,dIsI'luZn H0%,L@% 46A +disillusioned ,dIsI'luZnd Hc%,Hd% 46A +disillusioning ,dIsI'luZnIN Hb% 56A +disillusionment ,dIsI'luZnm@nt M6% 5 +disillusionments ,dIsI'luZnm@nts Mj% 5 +disillusions ,dIsI'luZnz Ha% 46A +disincentive ,dIsIn'sentIv K6% 4 +disincentives ,dIsIn'sentIvz Kj% 4 +disinclination ,dIsInklI'neISn M6% 5 +disinclinations ,dIsInklI'neISnz Mj$ 5 +disincline ,dIsIn'klaIn H2$ 314,17 +disinclined ,dIsIn'klaInd Hc$,Hd% 314,17 +disinclines ,dIsIn'klaInz Ha% 314,17 +disinclining ,dIsIn'klaInIN Hb$ 414,17 +disinfect ,dIsIn'fekt H0% 36A +disinfectant ,dIsIn'fekt@nt K6%,OA% 4 +disinfectants ,dIsIn'fekt@nts Kj% 4 +disinfected ,dIsIn'fektId Hc%,Hd% 46A +disinfecting ,dIsIn'fektIN Hb% 46A +disinfection ,dIsIn'fekSn L@$ 4 +disinfects ,dIsIn'fekts Ha% 36A +disinfest ,dIsIn'fest H0$ 36A +disinfestation ,dIsInfe'steISn L@$ 5 +disinfested ,dIsIn'festId Hc$,Hd$ 46A +disinfesting ,dIsIn'festIN Hb$ 46A +disinfests ,dIsIn'fests Ha$ 36A +disinflation ,dIsIn'fleISn L@$ 4 +disingenuous ,dIsIn'dZenjU@s OA% 5 +disingenuously ,dIsIn'dZenjU@slI Pu% 6 +disingenuousness ,dIsIn'dZenjU@sn@s L@% 6 +disinherit ,dIsIn'herIt H0% 46A +disinheritance ,dIsIn'herIt@ns L@% 5 +disinherited ,dIsIn'herItId Hc%,Hd% 56A +disinheriting ,dIsIn'herItIN Hb% 56A +disinherits ,dIsIn'herIts Ha% 46A +disintegrate dIs'IntIgreIt J2% 42A,6A +disintegrated dIs'IntIgreItId Jc%,Jd% 52A,6A +disintegrates dIs'IntIgreIts Ja% 42A,6A +disintegrating dIs'IntIgreItIN Jb% 52A,6A +disintegration dIs,IntI'greISn M6% 5 +disintegrations dIs,IntI'greISnz Mj% 5 +disinter ,dIsIn't3R H4% 36A +disinterested dIs'Intr@stId OA% 4 +disinterestedly dIs'Intr@stIdlI Pu% 5 +disinterestedness dIs'Intr@stIdn@s L@$ 5 +disinterment ,dIsIn't3m@nt K6% 4 +disinterments ,dIsIn't3m@nts Kj$ 4 +disinterred ,dIsIn't3d Hc%,Hd% 36A +disinterring ,dIsIn't3rIN Hb% 46A +disinters ,dIsIn't3z Ha% 36A +disjoint dIs'dZoInt H0$ 26A +disjointed dIs'dZoIntId Hc$,Hd%,OA% 36A +disjointedly dIs'dZoIntIdlI Pu% 4 +disjointedness dIs'dZoIntIdn@s L@$ 4 +disjointing dIs'dZoIntIN Hb$ 36A +disjoints dIs'dZoInts Ha$ 26A +disjunctive dIs'dZVNktIv OA$ 3 +disk dIsk K6% 1 +disks dIsks Kj% 1 +dislike dIs'laIk H2%,M6% 26A,6C +disliked dIs'laIkt Hc%,Hd% 26A,6C +dislikes dIs'laIks Ha%,Mj% 26A,6C +disliking dIs'laIkIN Hb% 36A,6C +dislocate 'dIsl@keIt H2% 36A +dislocated 'dIsl@keItId Hc%,Hd% 46A +dislocates 'dIsl@keIts Ha% 36A +dislocating 'dIsl@keItIN Hb% 46A +dislocation ,dIsl@'keISn M6% 4 +dislocations ,dIsl@'keISnz Mj% 4 +dislodge dIs'l0dZ H2% 26A,14 +dislodged dIs'l0dZd Hc%,Hd% 26A,14 +dislodgement dIs'l0dZm@nt K6$ 3 +dislodgements dIs'l0dZm@nts Kj$ 3 +dislodges dIs'l0dZIz Ha% 36A,14 +dislodging dIs'l0dZIN Hb% 36A,14 +disloyal dIs'loI@l OA% 3 +disloyally dIs'loI@lI Pu% 4 +disloyalties dIs'loI@ltIz Mj$ 4 +disloyalty dIs'loI@ltI M8% 4 +dismal 'dIzm@l OA% 2 +dismally 'dIzm@lI Pu% 3 +dismantle dIs'm&ntl H2% 36A +dismantled dIs'm&ntld Hc%,Hd% 36A +dismantlement dIs'm&ntlm@nt L@$ 4 +dismantles dIs'm&ntlz Ha% 36A +dismantling dIs'm&ntlIN Hb% 36A +dismay dIs'meI H0%,L@% 26A +dismayed dIs'meId Hc%,Hd% 26A +dismaying dIs'meIIN Hb% 36A +dismays dIs'meIz Ha% 26A +dismember dIs'memb@R H0% 36A +dismembered dIs'memb@d Hc%,Hd% 36A +dismembering dIs'memb@rIN Hb% 46A +dismemberment dIs'memb@m@nt K6$ 4 +dismemberments dIs'memb@m@nts Kj$ 4 +dismembers dIs'memb@z Ha% 36A +dismiss dIz'mIs H1% 26A,14 +dismissal dIz'mIsl M6% 3 +dismissals dIz'mIslz Mj% 3 +dismissed dIz'mIst Hc%,Hd% 26A,14 +dismisses dIz'mIsIz Ha% 36A,14 +dismissing dIz'mIsIN Hb% 36A,14 +dismount ,dIs'maUnt J0% 22A,3A,6A +dismounted ,dIs'maUntId Jc%,Jd%,OA% 32A,3A,6A +dismounting ,dIs'maUntIN Jb% 32A,3A,6A +dismounts ,dIs'maUnts Ja% 22A,3A,6A +disobedience ,dIs@'bidI@ns L@% 5 +disobedient ,dIs@'bidI@nt OA% 5 +disobediently ,dIs@'bidI@ntlI Pu% 6 +disobey ,dIs@'beI H0% 32A,6A +disobeyed ,dIs@'beId Hc%,Hd% 32A,6A +disobeying ,dIs@'beIIN Hb% 42A,6A +disobeys ,dIs@'beIz Ha% 32A,6A +disoblige ,dIs@'blaIdZ H2$ 36A +disobliged ,dIs@'blaIdZd Hc$,Hd$ 36A +disobliges ,dIs@'blaIdZIz Ha$ 46A +disobliging ,dIs@'blaIdZIN Hb$ 46A +disorder dIs'Od@R H0%,M6% 36A +disordered dIs'Od@d Hc%,Hd% 36A +disordering dIs'Od@rIN Hb% 46A +disorderly dIs'Od@lI OA% 4 +disorders dIs'Od@z Ha%,Mj% 36A +disorganization dIs,Og@naI'zeISn L@% 6 +disorganize ,dIs'Og@naIz H2$ 46A +disorganized ,dIs'Og@naIzd Hc$,Hd% 46A +disorganizes ,dIs'Og@naIzIz Ha$ 56A +disorganizing ,dIs'Og@naIzIN Hb$ 56A +disorient dIs'OrI@nt H0$ 46A +disorientate dIs'OrI@nteIt H2$ 56A +disorientated dIs'OrI@nteItId Hc$,Hd% 66A +disorientates dIs'OrI@nteIts Ha$ 56A +disorientating dIs'OrI@nteItIN Hb$ 66A +disoriented dIs'OrI@ntId Hc$,Hd% 56A +disorienting dIs'OrI@ntIN Hb$ 56A +disorients dIs'OrI@nts Ha$ 46A +disown dIs'@Un H0% 26A +disowned dIs'@Und Hc%,Hd% 26A +disowning dIs'@UnIN Hb% 36A +disowns dIs'@Unz Ha% 26A +disparage dI'sp&rIdZ H2% 36A +disparaged dI'sp&rIdZd Hc%,Hd% 36A +disparagement dI'sp&rIdZm@nt K6% 4 +disparagements dI'sp&rIdZm@nts Kj$ 4 +disparages dI'sp&rIdZIz Ha% 46A +disparaging dI'sp&rIdZIN Hb% 46A +disparagingly dI'sp&rIdZINlI Pu% 5 +disparate 'dIsp@r@t Kj%,OA% 3 +disparities dI'sp&rItIz Mj% 4 +disparity dI'sp&rItI M8% 4 +dispassionate dI'sp&S@n@t OA% 4 +dispassionately dI'sp&S@n@tlI Pu% 5 +dispassionateness dI'sp&S@n@tn@s L@$ 5 +dispatch dI'sp&tS H1%,M7% 26A,14 +dispatch-box dI'sp&tS-b0ks K7% 3 +dispatch-boxes dI'sp&tS-b0ksIz Kj% 4 +dispatch-rider dI'sp&tS-raId@R K6% 4 +dispatch-riders dI'sp&tS-raId@z Kj% 4 +dispatched dI'sp&tSt Hc%,Hd% 26A,14 +dispatches dI'sp&tSIz Ha%,Mj% 36A,14 +dispatching dI'sp&tSIN Hb% 36A,14 +dispel dI'spel H4% 26A +dispelled dI'speld Hc%,Hd% 26A +dispelling dI'spelIN Hb% 36A +dispels dI'spelz Ha% 26A +dispensable dI'spens@bl OA% 4 +dispensaries dI'spens@rIz Kj% 4 +dispensary dI'spens@rI K8% 4 +dispensation ,dIspen'seISn M6% 4 +dispensations ,dIspen'seISnz Mj% 4 +dispense dI'spens J2% 23A,6A,14 +dispensed dI'spenst Jc%,Jd% 23A,6A,14 +dispenser dI'spens@R K6% 3 +dispensers dI'spens@z Kj% 3 +dispenses dI'spensIz Ja% 33A,6A,14 +dispensing dI'spensIN Jb% 33A,6A,14 +dispersal dI'sp3sl M6% 3 +dispersals dI'sp3slz Mj$ 3 +disperse dI'sp3s J2% 22A,6A +dispersed dI'sp3st Jc%,Jd% 22A,6A +disperses dI'sp3sIz Ja% 32A,6A +dispersing dI'sp3sIN Jb% 32A,6A +dispersion dI'sp3Sn K6% 3 +dispersions dI'sp3Snz Kj$ 3 +dispirit dI'spIrIt H0$ 36A +dispirited dI'spIrItId Hc$,Hd% 46A +dispiritedly dI'spIrItIdlI Pu% 5 +dispiriting dI'spIrItIN Hb% 46A +dispirits dI'spIrIts Ha$ 36A +displace dIs'pleIs H2% 26A +displaced dIs'pleIst Hc%,Hd% 26A +displacement dIs'pleIsm@nt M6% 3 +displacements dIs'pleIsm@nts Mj% 3 +displaces dIs'pleIsIz Ha% 36A +displacing dIs'pleIsIN Hb% 36A +display dI'spleI H0%,M6% 26A +displayed dI'spleId Hc%,Hd% 26A +displaying dI'spleIIN Hb% 36A +displays dI'spleIz Ha%,Mj% 26A +displease dIs'pliz H2% 26A +displeased dIs'plizd Hc%,Hd% 26A +displeases dIs'plizIz Ha% 36A +displeasing dIs'plizIN Hb%,OA% 36A +displeasingly dIs'plizINlI Pu% 4 +displeasure dIs'pleZ@R L@% 3 +disport dI'spOt H0% 26A +disported dI'spOtId Hc%,Hd% 36A +disporting dI'spOtIN Hb% 36A +disports dI'spOts Ha% 26A +disposable dI'sp@Uz@bl OA% 4 +disposal dI'sp@Uzl L@% 3 +dispose dI'sp@Uz J2% 22A,3A,6A,17 +disposed dI'sp@Uzd Jc%,Jd% 22A,3A,6A,17 +disposes dI'sp@UzIz Ja% 32A,3A,6A,17 +disposing dI'sp@UzIN Jb% 32A,3A,6A,17 +disposition ,dIsp@'zISn K6% 4 +dispositions ,dIsp@'zISnz Kj% 4 +dispossess ,dIsp@'zes H1% 314 +dispossessed ,dIsp@'zest Hc%,Hd% 314 +dispossesses ,dIsp@'zesIz Ha$ 414 +dispossessing ,dIsp@'zesIN Hb$ 414 +dispossession ,dIsp@'zeSn K6$ 4 +dispossessions ,dIsp@'zeSnz Kj$ 4 +disproof dIs'pruf M6% 2 +disproofs dIs'prufs Mj$ 2 +disproportion ,dIspr@'pOSn L@% 4 +disproportionate ,dIspr@'pOS@n@t OA% 5 +disproportionately ,dIspr@'pOS@n@tlI Pu% 6 +disprove ,dIs'pruv H2% 26A +disproved ,dIs'pruvd Hc%,Hd% 26A +disproves ,dIs'pruvz Ha% 26A +disproving ,dIs'pruvIN Hb% 36A +disputable dI'spjut@bl OA% 4 +disputant dI'spjut@nt K6% 3 +disputants dI'spjut@nts Kj% 3 +disputation ,dIspju'teISn M6% 4 +disputations ,dIspju'teISnz Mj$ 4 +disputatious ,dIspju'teIS@s OA$ 4 +disputatiously ,dIspju'teIS@slI Pu$ 5 +dispute dI'spjut J2%,M6% 22A,3A,6A,8,10 +disputed dI'spjutId Jc%,Jd% 32A,3A,6A,8,10 +disputes dI'spjuts Ja%,Mj% 22A,3A,6A,8,10 +disputing dI'spjutIN Jb% 32A,3A,6A,8,10 +disqualification dIs,kw0lIfI'keISn M6% 6 +disqualifications dIs,kw0lIfI'keISnz Mj% 6 +disqualified dIs'kw0lIfaId Hc%,Hd% 46A,14 +disqualifies dIs'kw0lIfaIz Ha% 46A,14 +disqualify dIs'kw0lIfaI H3% 46A,14 +disqualifying dIs'kw0lIfaIIN Hb% 56A,14 +disquiet dIs'kwaI@t H0$,L@% 36A +disquieted dIs'kwaI@tId Hc$,Hd% 46A +disquieting dIs'kwaI@tIN Hb$,OA% 46A +disquietingly dIs'kwaI@tINlI Pu% 5 +disquiets dIs'kwaI@ts Ha$ 36A +disquietude dIs'kwaI@tjud L@$ 4 +disquisition ,dIskwI'zISn K6% 4 +disquisitions ,dIskwI'zISnz Kj% 4 +disregard ,dIsrI'gAd H0%,L@% 36A +disregarded ,dIsrI'gAdId Hc%,Hd% 46A +disregarding ,dIsrI'gAdIN Hb% 46A +disregards ,dIsrI'gAdz Ha% 36A +disrepair ,dIsrI'pe@R L@% 3 +disreputable dIs'repjUt@bl OA% 5 +disreputably dIs'repjUt@blI Pu% 5 +disrepute ,dIsrI'pjut L@% 3 +disrespect ,dIsrI'spekt L@% 3 +disrespectful ,dIsrI'spektf@l OA% 4 +disrespectfully ,dIsrI'spektf@lI Pu% 5 +disrobe dIs'r@Ub J2% 22A,6A +disrobed dIs'r@Ubd Jc%,Jd% 22A,6A +disrobes dIs'r@Ubz Ja% 22A,6A +disrobing dIs'r@UbIN Jb% 32A,6A +disrupt dIs'rVpt H0% 26A +disrupted dIs'rVptId Hc%,Hd% 36A +disrupting dIs'rVptIN Hb% 36A +disruption dIs'rVpSn M6% 3 +disruptions dIs'rVpSnz Mj% 3 +disruptive dIs'rVptIv OA% 3 +disrupts dIs'rVpts Ha% 26A +dissatisfaction ,dIs,s&tIs'f&kSn L@% 5 +dissatisfied dI's&tIsfaId Hc$,Hd% 46A +dissatisfies dI's&tIsfaIz Ha$ 46A +dissatisfy dI's&tIsfaI H3$ 46A +dissatisfying dI's&tIsfaIIN Hb% 56A +dissect dI'sekt H0% 26A +dissected dI'sektId Hc%,Hd% 36A +dissecting dI'sektIN Hb% 36A +dissection dI'sekSn M6% 3 +dissections dI'sekSnz Mj% 3 +dissects dI'sekts Ha% 26A +dissemble dI'sembl J2% 32A,6A +dissembled dI'sembld Jc%,Jd% 32A,6A +dissembler dI'sembl@R K6% 3 +dissemblers dI'sembl@z Kj% 3 +dissembles dI'semblz Ja% 32A,6A +dissembling dI'semblIN Jb% 32A,6A +disseminate dI'semIneIt H2% 46A +disseminated dI'semIneItId Hc%,Hd% 56A +disseminates dI'semIneIts Ha% 46A +disseminating dI'semIneItIN Hb% 56A +dissemination dI,semI'neISn L@% 5 +dissension dI'senSn M6% 3 +dissensions dI'senSnz Mj$ 3 +dissent dI'sent I0%,L@% 22A,3A +dissented dI'sentId Ic%,Id% 32A,3A +dissenter dI'sent@R K6% 3 +dissenters dI'sent@z Kj% 3 +dissenting dI'sentIN Ib% 32A,3A +dissents dI'sents Ia% 22A,3A +dissertation ,dIs@'teISn K6% 4 +dissertations ,dIs@'teISnz Kj% 4 +disservice dIs's3vIs M6% 3 +disservices dIs's3vIsIz Mj$ 4 +dissever dI'sev@R H0$ 36A +dissevered dI'sev@d Hc$,Hd$ 36A +dissevering dI'sev@rIN Hb$ 46A +dissevers dI'sev@z Ha$ 36A +dissidence 'dIsId@ns L@$ 3 +dissident 'dIsId@nt K6%,OA% 3 +dissidents 'dIsId@nts Kj% 3 +dissimilar dI'sImIl@R OA% 4 +dissimilarities ,dI,sImIl'&rItIz Mj% 6 +dissimilarity ,dI,sImIl'&rItI M8% 6 +dissimilitude ,dIsI'mIlItjud L@$ 5 +dissimulate dI'sImjUleIt J2% 42A,6A +dissimulated dI'sImjUleItId Jc%,Jd% 52A,6A +dissimulates dI'sImjUleIts Ja% 42A,6A +dissimulating dI'sImjUleItIN Jb% 52A,6A +dissimulation dI,sImjU'leISn K6% 5 +dissimulations dI,sImjU'leISnz Kj$ 5 +dissipate 'dIsIpeIt J2% 32A,6A +dissipated 'dIsIpeItId Jc%,Jd%,OA% 42A,6A +dissipates 'dIsIpeIts Ja% 32A,6A +dissipating 'dIsIpeItIN Jb% 42A,6A +dissipation ,dIsI'peISn L@% 4 +dissociate dI's@USIeIt H2% 46A,14 +dissociated dI's@USIeItId Hc%,Hd% 56A,14 +dissociates dI's@USIeIts Ha% 46A,14 +dissociating dI's@USIeItIN Hb% 56A,14 +dissociation dI,s@UsI'eISn L@% 5 +dissolubility dI,s0ljU'bIlItI L@$ 6 +dissoluble dI's0ljUbl OA% 4 +dissolute 'dIs@lut OA% 3 +dissolutely 'dIs@lutlI Pu% 4 +dissolution ,dIs@'luSn M6% 4 +dissolutions ,dIs@'luSnz Mj$ 4 +dissolve dI'z0lv J2% 22A,2C,3A,6A,14 +dissolved dI'z0lvd Jc%,Jd% 22A,2C,3A,6A,14 +dissolves dI'z0lvz Ja% 22A,2C,3A,6A,14 +dissolving dI'z0lvIN Jb% 32A,2C,3A,6A,14 +dissonance 'dIs@n@ns M6% 3 +dissonances 'dIs@n@nsIz Mj$ 4 +dissonant 'dIs@n@nt OA% 3 +dissuade dI'sweId H2% 26A,14 +dissuaded dI'sweIdId Hc%,Hd% 36A,14 +dissuades dI'sweIdz Ha% 26A,14 +dissuading dI'sweIdIN Hb% 36A,14 +dissuasion dI'sweIZn L@% 3 +dissyllable dI'sIl@bl K6$ 4 +dissyllables dI'sIl@blz Kj$ 4 +distaff 'dIstAf K6$ 2 +distaffs 'dIstAfs Kj$ 2 +distance 'dIst@ns H2%,M6% 26A,14 +distanced 'dIst@nst Hc%,Hd% 26A,14 +distances 'dIst@nsIz Ha%,Mj% 36A,14 +distancing 'dIst@nsIN Hb% 36A,14 +distant 'dIst@nt OA% 2 +distantly 'dIst@ntlI Pu% 3 +distaste dIs'teIst M6% 2 +distasteful dIs'teIstf@l OA% 3 +distastefully dIs'teIstf@lI Pu% 4 +distastefulness dIs'teIstf@ln@s L@% 4 +distastes dIs'teIsts Mj$ 2 +distemper dI'stemp@R H0$,L@% 36A,22 +distempered dI'stemp@d Hc$,Hd$ 36A,22 +distempering dI'stemp@rIN Hb$ 46A,22 +distempers dI'stemp@z Ha$ 36A,22 +distend dI'stend J0% 22A,6A +distended dI'stendId Jc%,Jd% 32A,6A +distending dI'stendIN Jb% 32A,6A +distends dI'stendz Ja% 22A,6A +distension dIs'tenSn K6% 3 +distensions dIs'tenSnz Kj$ 3 +distil dI'stIl J4% 22A,6A,14,15B +distillation ,dIstI'leISn M6% 4 +distillations ,dIstI'leISnz Mj% 4 +distilled dI'stIld Jc%,Jd% 22A,6A,14,15B +distiller dI'stIl@R K6% 3 +distilleries dI'stIl@rIz Kj% 4 +distillers dI'stIl@z Kj% 3 +distillery dI'stIl@rI K8% 4 +distilling dI'stIlIN Jb% 32A,6A,14,15B +distils dI'stIlz Ja% 22A,6A,14,15B +distinct dI'stINkt OA% 2 +distinction dI'stINkSn M6% 3 +distinctions dI'stINkSnz Mj% 3 +distinctive dI'stINktIv OA% 3 +distinctively dI'stINktIvlI Pu% 4 +distinctiveness dI'stINktIvnIs L@% 4 +distinctly dI'stINktlI Pu% 3 +distinctness dI'stINktn@s L@% 3 +distinguish dI'stINgwIS J1% 33A,6A,14 +distinguishable dI'stINgwIS@bl OA% 5 +distinguished dI'stINgwISt Jc%,Jd%,OA% 33A,6A,14 +distinguishes dI'stINgwISIz Ja% 43A,6A,14 +distinguishing dI'stINgwISIN Jb% 43A,6A,14 +distort dI'stOt H0% 26A +distorted dI'stOtId Hc%,Hd% 36A +distorting dI'stOtIN Hb% 36A +distortion dI'stOSn M6% 3 +distortions dI'stOSnz Mj% 3 +distorts dI'stOts Ha% 26A +distract dI'str&kt H0% 26A,14 +distracted dI'str&ktId Hc%,Hd%,OA% 36A,14 +distractedly dI'str&ktIdlI Pu% 4 +distracting dI'str&ktIN Hb% 36A,14 +distraction dI'str&kSn M6% 3 +distractions dI'str&kSnz Mj% 3 +distracts dI'str&kts Ha% 26A,14 +distrain dI'streIn I0$ 22A,3A +distrained dI'streInd Ic$,Id$ 22A,3A +distraining dI'streInIN Ib$ 32A,3A +distrains dI'streInz Ia$ 22A,3A +distraint dI'streInt K6$ 2 +distraints dI'streInts Kj$ 2 +distrait dI'streI OA$ 2 +distraught dI'strOt OA% 2 +distress dI'stres H1%,L@% 26A +distressed dI'strest Hc%,Hd% 26A +distresses dI'stresIz Ha% 36A +distressful dI'stresfUl OA$ 3 +distressfully dI'stresf@lI Pu$ 4 +distressing dI'stresIN Hb%,OA% 36A +distressingly dI'stresINlI Pu% 4 +distribute dI'strIbjut H2% 36A,14 +distributed dI'strIbjutId Hc%,Hd% 46A,14 +distributes dI'strIbjuts Ha% 36A,14 +distributing dI'strIbjutIN Hb% 46A,14 +distribution ,dIstrI'bjuSn M6% 4 +distributions ,dIstrI'bjuSnz Mj% 4 +distributive dI'strIbjUtIv OA% 4 +distributively dI'strIbjUtIvlI Pu$ 5 +distributor dI'strIbjut@R K6% 4 +distributors dI'strIbjut@z Kj% 4 +district 'dIstrIkt K6% 2 +districts 'dIstrIkts Kj% 2 +distrust dIs'trVst H0%,Mi% 26A +distrusted dIs'trVstId Hc%,Hd% 36A +distrustful dIs'trVstf@l OA% 3 +distrustfully dIs'trVstf@lI Pu% 4 +distrustfulness dIs'trVstf@ln@s L@% 4 +distrusting dIs'trVstIN Hb% 36A +distrusts dIs'trVsts Ha% 26A +disturb dI'st3b H0% 26A +disturbance dI'st3b@ns M6% 3 +disturbances dI'st3b@nsIz Mj% 4 +disturbed dI'st3bd Hc%,Hd% 26A +disturbing dI'st3bIN Hb% 36A +disturbingly dI'st3bINlI Pu% 4 +disturbs dI'st3bz Ha% 26A +disunion dIs'junI@n L@$ 3 +disunite ,dIsju'naIt J2$ 32A,6A +disunited ,dIsju'naItId Jc$,Jd% 42A,6A +disunites ,dIsju'naIts Ja$ 32A,6A +disuniting ,dIsju'naItIN Jb$ 42A,6A +disunity dIs'junItI L@% 4 +disuse dIs'jus L@% 2 +disused dIs'juzd OA% 2 +disyllabic ,dIsI'l&bIk OA$ 4 +disyllable dI'sIl@bl K6$ 4 +disyllables dI'sIl@blz Kj$ 4 +ditch dItS J1%,K7% 12A,6A +ditched dItSt Jc%,Jd% 12A,6A +ditches 'dItSIz Ja%,Kj% 22A,6A +ditching 'dItSIN Jb% 22A,6A +dither 'dID@R I0%,K6% 22A,2C +dithered 'dID@d Ic%,Id% 22A,2C +dithering 'dID@rIN Ib% 32A,2C +dithers 'dID@z Ia%,Kj% 22A,2C +ditties 'dItIz Kj% 2 +ditto 'dIt@U Ki% 2 +ditty 'dItI K8% 2 +diurnal daI'3nl OA$ 3 +divagate 'daIv@geIt I2$ 32A,3A +divagated 'daIv@geItId Ic$,Id$ 42A,3A +divagates 'daIv@geIts Ia$ 32A,3A +divagating 'daIv@geItIN Ib$ 42A,3A +divagation ,daIv@'geISn M6$ 4 +divagations ,daIv@'geISnz Mj$ 4 +divan dI'v&n K6% 2 +divan-bed dI,v&n-'bed K6% 3 +divan-beds dI,v&n-'bedz Kj% 3 +divans dI'v&nz Kj% 2 +dive daIv I2%,K6% 12A,2C +dive-bomb 'daIv-b0m J0% 2 +dive-bombed 'daIv-b0md Jc%,Jd% 2 +dive-bomber 'daIv-b0m@R K6% 3 +dive-bombers 'daIv-b0m@z Kj% 3 +dive-bombing 'daIv-b0mIN Jb% 3 +dive-bombs 'daIv-b0mz Ja% 2 +dived daIvd Ic%,Id% 12A,2C +diver 'daIv@R K6% 2 +diverge daI'v3dZ I2% 22A,3A +diverged daI'v3dZd Ic%,Id% 22A,3A +divergence daI'v3dZ@ns M6% 3 +divergences daI'v3dZ@nsIz Mj% 4 +divergencies daI'v3dZ@nsIz Mj$ 4 +divergency daI'v3dZ@nsI M8$ 4 +divergent daI'v3dZ@nt OA% 3 +diverges daI'v3dZIz Ia% 32A,3A +diverging daI'v3dZIN Ib% 32A,3A +divers 'daIv3z OA$ 2 +divers 'daIv@z Kj% 2 +diverse daI'v3s OA% 2 +diversely daI'v3slI Pu% 3 +diversification daI,v3sIfI'keISn L@% 6 +diversified daI'v3sIfaId Hc%,Hd% 46A +diversifies daI'v3sIfaIz Ha% 46A +diversify daI'v3sIfaI H3% 46A +diversifying daI'v3sIfaIIN Hb% 56A +diversion daI'v3Sn M6% 3 +diversionary daI'v3S@n@rI OA% 5 +diversionist daI'v3S@nIst K6$ 4 +diversionists daI'v3S@nIsts Kj$ 4 +diversions daI'v3Snz Mj% 3 +diversity daI'v3sItI L@% 4 +divert daI'v3t H0% 26A,14 +diverted daI'v3tId Hc%,Hd% 36A,14 +diverting daI'v3tIN Hb%,OA% 36A,14 +divertingly daI'v3tINlI Pu% 4 +diverts daI'v3ts Ha% 26A,14 +dives daIvz Ia%,Kj% 12A,2C +divest daI'vest H0% 214 +divested daI'vestId Hc%,Hd% 314 +divesting daI'vestIN Hb% 314 +divests daI'vests Ha% 214 +divide dI'vaId J2%,K6% 22A,2C,6A,14,15B +divided dI'vaIdId Jc%,Jd% 32A,2C,6A,14,15B +dividend 'dIvIdend K6% 3 +dividend-warrant 'dIvIdend-,w0r@nt K6$ 5 +dividend-warrants 'dIvIdend-,w0r@nts Kj$ 5 +dividends 'dIvIdendz Kj% 3 +dividers dI'vaId@z Kj% 3 +divides dI'vaIdz Ja%,Kj% 22A,2C,6A,14,15B +dividing dI'vaIdIN Jb% 32A,2C,6A,14,15B +divination ,dIvI'neISn M6% 4 +divinations ,dIvI'neISnz Mj$ 4 +divine dI'vaIn J2%,K6%,OA% 22A,6A,10 +divined dI'vaInd Jc%,Jd% 22A,6A,10 +divinely dI'vaInlI Pu% 3 +diviner dI'vaIn@R K6% 3 +diviners dI'vaIn@z Kj% 3 +divines dI'vaInz Ja%,Kj% 22A,6A,10 +diving 'daIvIN Ib% 22A,2C +diving-bell 'daIvIN-bel K6% 3 +diving-bells 'daIvIN-belz Kj% 3 +diving-board 'daIvIN-bOd K6% 3 +diving-boards 'daIvIN-bOdz Kj% 3 +diving-dress 'daIvIN-dres L@$ 3 +diving-suit 'daIvIN-sut K6% 3 +diving-suits 'daIvIN-suts Kj% 3 +divining dI'vaInIN Jb% 32A,6A,10 +divinities dI'vInItIz Mj$ 4 +divinity dI'vInItI M8% 4 +divisible dI'vIz@bl OA% 4 +division dI'vIZn M6% 3 +divisional dI'vIZ@nl OA% 4 +divisions dI'vIZnz Mj% 3 +divisor dI'vaIz@R K6% 3 +divisors dI'vaIz@z Kj% 3 +divorce dI'vOs H2%,M6% 26A,14 +divorced dI'vOst Hc%,Hd% 26A,14 +divorcee dI,vO'si K6% 3 +divorcees dI,vO'siz Kj% 3 +divorces dI'vOsIz Ha%,Mj% 36A,14 +divorcing dI'vOsIN Hb% 36A,14 +divot 'dIv@t K6$ 2 +divots 'dIv@ts Kj$ 2 +divulge daI'vVldZ H2% 26A,14 +divulged daI'vVldZd Hc%,Hd% 26A,14 +divulgence daI'vVldZ@ns K6% 3 +divulgences daI'vVldZ@nsIz Kj$ 4 +divulges daI'vVldZIz Ha% 36A,14 +divulging daI'vVldZIN Hb% 36A,14 +divvies 'dIvIz Kj$ 2 +divvy 'dIvI K8$ 2 +dixie 'dIksI K6$ 2 +dixies 'dIksIz Kj$ 2 +dizzied 'dIzId Hc%,Hd% 2 +dizzier 'dIzI@R Or% 3 +dizzies 'dIzIz Ha% 2 +dizziest 'dIzIIst Os% 3 +dizzily 'dIzIlI Pu% 3 +dizziness 'dIzIn@s L@% 3 +dizzy 'dIzI H3%,OD% 2 +dizzying 'dIzIIN Hb% 3 +djinn dZIn K6$ 1 +djinns dZInz Kj$ 1 +do d@U Ki% 1 +do du G5*,J5*,K6% 12A,2B,2C,3A,6A,6C,7B,12B,13B,15A,15B +do's duz Kj% 1 +do-gooder ,du-'gUd@R K6% 3 +do-gooders ,du-'gUd@z Kj% 3 +dobbin 'd0bIn K6$ 2 +dobbins 'd0bInz Kj$ 2 +docile 'd@UsaIl OA% 2 +docility d@U'sIlItI L@% 4 +dock d0k J0%,K6% 12A,6A,14 +dock-dues 'd0k-djuz Kj$ 2 +docked d0kt Jc%,Jd% 12A,6A,14 +docker 'd0k@R K6% 2 +dockers 'd0k@z Kj% 2 +docket 'd0kIt H0$,K6% 26A +docketed 'd0kItId Hc$,Hd$ 36A +docketing 'd0kItIN Hb$ 36A +dockets 'd0kIts Ha$,Kj% 26A +docking 'd0kIN Jb% 22A,6A,14 +docks d0ks Ja%,Kj% 12A,6A,14 +dockyard 'd0kjAd K6% 2 +dockyards 'd0kjAdz Kj% 2 +doctor 'd0kt@R H0%,K6% 26A +doctorate 'd0kt@r@t K6% 3 +doctorates 'd0kt@r@ts Kj% 3 +doctored 'd0kt@d Hc%,Hd% 26A +doctoring 'd0kt@rIN Hb% 36A +doctors 'd0kt@z Ha%,Kj% 26A +doctrinaire ,d0ktrI'ne@R K6$,OA% 3 +doctrinaires ,d0ktrI'ne@z Kj$ 3 +doctrinal d0k'traInl OA% 3 +doctrine 'd0ktrIn M6% 2 +doctrines 'd0ktrInz Mj% 2 +document 'd0kjUm@nt K6% 3 +document 'd0kjUment H0% 36A +documentary ,d0kjU'ment@rI OA% 5 +documentation ,d0kjUmen'teISn L@% 5 +documented 'd0kjUmentId Hc%,Hd% 46A +documenting 'd0kjUmentIN Hb% 46A +documents 'd0kjUm@nts Kj% 3 +documents 'd0kjUments Ha$ 36A +dodder 'd0d@R I0% 22A,2C +doddered 'd0d@d Ic%,Id% 22A,2C +dodderer 'd0d@r@R K6% 3 +dodderers 'd0d@r@z Kj% 3 +doddering 'd0d@rIN Ib%,OA% 32A,2C +dodders 'd0d@z Ia% 22A,2C +doddery 'd0d@rI OA% 3 +dodge d0dZ J2%,K6% 12A,3A,6A +dodged d0dZd Jc%,Jd% 12A,3A,6A +dodgem 'd0dZ@m K6$ 2 +dodgems 'd0dZ@mz Kj% 2 +dodger 'd0dZ@R K6% 2 +dodgers 'd0dZ@z Kj% 2 +dodges 'd0dZIz Ja%,Kj% 22A,3A,6A +dodging 'd0dZIN Jb% 22A,3A,6A +dodgy 'd0dZI OA% 2 +dodo 'd@Ud@U K6% 2 +dodoes 'd@Ud@Uz Kj$ 2 +dodos 'd@Ud@Uz Kj% 2 +doe d@U K6$ 1 +doer 'du@R K6% 2 +doers 'du@z Kj% 2 +does d@Uz Kj$ 1 +does dVz Ga*,Ja* 12A,2B,2C,3A,6A,6C,7B,12B,13B,15A,15B +doesn't 'dVznt Gg% 2 +doff d0f H0% 16A +doffed d0ft Hc%,Hd% 16A +doffing 'd0fIN Hb% 26A +doffs d0fs Ha% 16A +dog d0g H4%,K6% 16A +dog's-tooth 'd0gz-tuT L@% 2 +dog-biscuit 'd0g-bIskIt K6% 3 +dog-biscuits 'd0g-bIskIts Kj% 3 +dog-cart 'd0g-kAt K6% 2 +dog-carts 'd0g-kAts Kj% 2 +dog-collar 'd0g-k0l@R K6% 3 +dog-collars 'd0g-k0l@z Kj% 3 +dog-days 'd0g-deIz Kj% 2 +dog-eared 'd0g-I@d OA% 2 +dog-like 'd0g-laIk OA% 2 +doge d@UdZ K6$ 1 +doges 'd@UdZIz Kj$ 2 +dogfish 'd0gfIS K9% 2 +dogfishes 'd0gfISIz Kj$ 3 +dogged 'd0gId OA% 2 +dogged d0gd Hc%,Hd% 16A +doggedly 'd0gIdlI Pu% 3 +doggedness 'd0gIdn@s L@% 3 +doggerel 'd0g@r@l L@% 3 +doggie 'd0gI K6% 2 +doggies 'd0gIz Kj% 2 +dogging 'd0gIN Hb% 26A +doggo 'd0g@U Pu% 2 +doggy 'd0gI K8% 2 +doghouse 'd0ghaUs K6% 2 +doghouses 'd0ghaUzIz Kj$ 3 +dogma 'd0gm@ M6% 2 +dogmas 'd0gm@z Mj% 2 +dogmatic d0g'm&tIk OA% 3 +dogmatically d0g'm&tIklI Pu% 4 +dogmatism 'd0gm@tIz@m L@% 4 +dogmatize 'd0gm@taIz J2$ 32A,6A +dogmatized 'd0gm@taIzd Jc$,Jd$ 32A,6A +dogmatizes 'd0gm@taIzIz Ja$ 42A,6A +dogmatizing 'd0gm@taIzIN Jb$ 42A,6A +dogs d0gz Ha%,Kj% 16A +dogsbodies 'd0gzb0dIz Kj$ 3 +dogsbody 'd0gzb0dI K8% 3 +dogtooth 'd0gtuT L@% 2 +dogtrot 'd0gtr0t Ki$ 2 +dogwatch 'd0gw0tS K7$ 2 +dogwatches 'd0gw0tSIz Kj$ 3 +dogwood 'd0gwUd K6$ 2 +dogwoods 'd0gwUdz Kj$ 2 +doh d@U Ki$ 1 +dohs d@Uz Kj$ 1 +doilies 'doIlIz Kj% 2 +doily 'doIlI K8% 2 +doing 'duIN Gb%,Jb% 22A,2B,2C,3A,6A,6C,7B,12B,13B,15A,15B +doings 'duINz Kj% 2 +doldrums 'd0ldr@mz Kj% 2 +dole d@Ul H2%,M6% 115B +doled d@Uld Hc%,Hd% 115B +doleful 'd@UlfUl OA% 2 +dolefully 'd@UlfUlI Pu% 3 +doles d@Ulz Ha%,Mj% 115B +doling 'd@UlIN Hb% 215B +doll d0l J0$,K6% 12C,15B +dollar 'd0l@R K6% 2 +dollars 'd0l@z Kj% 2 +dolled d0ld Jc$,Jd% 12C,15B +dollies 'd0lIz Kj% 2 +dolling 'd0lIN Jb$ 22C,15B +dollop 'd0l@p K6% 2 +dollops 'd0l@ps Kj% 2 +dolls d0lz Ja$,Kj% 12C,15B +dolly 'd0lI K8% 2 +dolmen 'd0lmen K6$ 2 +dolmens 'd0lmenz Kj$ 2 +dolour 'd0l@R K6$ 2 +dolourous 'd0l@r@s OA$ 3 +dolours 'd0l@z Kj$ 2 +dolphin 'd0lfIn K6% 2 +dolphins 'd0lfInz Kj% 2 +dolt d@Ult K6% 1 +doltish 'd@UltIS OA% 2 +dolts d@Ults Kj% 1 +domain d@U'meIn K6% 2 +domains d@U'meInz Kj% 2 +dome d@Um K6% 1 +domed d@Umd OA% 1 +domes d@Umz Kj% 1 +domestic d@'mestIk OA% 3 +domestically d@'mestIklI Pu% 4 +domesticate d@'mestIkeIt H2% 46A +domesticated d@'mestIkeItId Hc%,Hd% 56A +domesticates d@'mestIkeIts Ha% 46A +domesticating d@'mestIkeItIN Hb% 56A +domestication d@,mestI'keISn L@% 5 +domesticity ,d0me'stIsItI L@% 5 +domicile 'd0mIsaIl K6% 3 +domiciles 'd0mIsaIlz Kj$ 3 +domiciliary ,d0mI'sIlI@rI OA% 5 +dominance 'd0mIn@ns L@% 3 +dominant 'd0mIn@nt OA% 3 +dominantly 'd0mIn@ntlI Pu% 4 +dominate 'd0mIneIt J2% 32A,3A,6A +dominated 'd0mIneItId Jc%,Jd% 42A,3A,6A +dominates 'd0mIneIts Ja% 32A,3A,6A +dominating 'd0mIneItIN Jb% 42A,3A,6A +domination ,d0mI'neISn L@% 4 +domineer ,d0mI'nI@R I0% 32A,3A +domineered ,d0mI'nI@d Ic%,Id% 32A,3A +domineering ,d0mI'nI@rIN Ib%,OA% 42A,3A +domineeringly ,d0mI'nI@rINlI Pu% 5 +domineers ,d0mI'nI@z Ia% 32A,3A +dominie 'd0mInI K6$ 3 +dominies 'd0mInIz Kj$ 3 +dominion d@'mInI@n M6% 3 +dominions d@'mInI@nz Mj% 3 +domino 'd0mIn@U K6% 3 +dominoes 'd0mIn@Uz Kj% 3 +dominos 'd0mIn@Uz Kj$ 3 +don d0n H4%,K6% 16A +don't d@Unt Gg* 1 +don't-know d@Unt-'n@U K6% 2 +don't-knows d@Unt-'n@Uz Kj% 2 +donate d@U'neIt H2% 26A,14 +donated d@U'neItId Hc%,Hd% 36A,14 +donates d@U'neIts Ha% 26A,14 +donating d@U'neItIN Hb% 36A,14 +donation d@U'neISn M6% 3 +donations d@U'neISnz Mj% 3 +done dVn Gd*,Jd* 12A,2B,2C,3A,6A,6C,7B,12B,13B,15A,15B +donjon 'd0ndZ@n K6$ 2 +donjons 'd0ndZ@nz Kj$ 2 +donkey 'd0NkI K6% 2 +donkey-jacket 'd0NkI-dZ&kIt K6% 4 +donkey-jackets 'd0NkI-dZ&kIts Kj% 4 +donkey-work 'd0NkI-w3k L@% 3 +donkeys 'd0NkIz Kj% 2 +donned d0nd Hc%,Hd% 16A +donning 'd0nIN Hb% 26A +donnish 'd0nIS OA% 2 +donor 'd@Un@R K6% 2 +donors 'd@Un@z Kj% 2 +dons d0nz Ha%,Kj% 16A +doodle 'dudl I2% 22A +doodlebug 'dudlbVg K6% 3 +doodlebugs 'dudlbVgz Kj% 3 +doodled 'dudld Ic%,Id% 22A +doodles 'dudlz Ia% 22A +doodling 'dudlIN Ib% 22A +doom dum H0$,K6% 16A,14,17 +doomed dumd Hc$,Hd% 16A,14,17 +dooming 'dumIN Hb$ 26A,14,17 +dooms dumz Ha$,Kj$ 16A,14,17 +door dOR K6* 1 +door-to-door ,dO-t@-'dOR OA% 3 +doorbell 'dObel K6% 2 +doorbells 'dObelz Kj% 2 +doorcase 'dOkeIs K6$ 2 +doorcases 'dOkeIsIz Kj$ 3 +doorframe 'dOfreIm K6% 2 +doorframes 'dOfreImz Kj% 2 +doorhandle 'dOh&ndl K6% 3 +doorhandles 'dOh&ndlz Kj% 3 +doorkeeper 'dOkip@R K6% 3 +doorkeepers 'dOkip@z Kj% 3 +doorknob 'dOn0b K6% 2 +doorknobs 'dOn0bz Kj% 2 +doorknocker 'dOn0k@R K6% 3 +doorknockers 'dOn0k@z Kj% 3 +doorman 'dOm&n Ki% 2 +doormat 'dOm&t K6% 2 +doormats 'dOm&ts Kj% 2 +doormen 'dOmen Kj% 2 +doornail 'dOneIl K6% 2 +doornails 'dOneIlz Kj% 2 +doorplate 'dOpleIt K6% 2 +doorplates 'dOpleIts Kj% 2 +doorpost 'dOp@Ust K6% 2 +doorposts 'dOp@Usts Kj% 2 +doors dOz Kj% 1 +doorstep 'dOstep K6% 2 +doorsteps 'dOsteps Kj% 2 +doorstopper 'dOst0p@R K6% 3 +doorstoppers 'dOst0p@z Kj% 3 +doorway 'dOweI K6% 2 +doorways 'dOweIz Kj% 2 +dope d@Up H2%,M6% 16A +doped d@Upt Hc%,Hd% 16A +dopes d@Ups Ha%,Mj% 16A +dopey 'd@UpI OA% 2 +doping 'd@UpIN Hb% 26A +dories 'dOrIz Kj$ 2 +dormant 'dOm@nt OA% 2 +dormer 'dOm@R K6$ 2 +dormer-window ,dOm@-'wInd@U K6% 4 +dormer-windows ,dOm@-'wInd@Uz Kj% 4 +dormers 'dOm@z Kj% 2 +dormice 'dOmaIs Kj% 2 +dormitories 'dOmItrIz Kj% 3 +dormitory 'dOmItrI K8% 3 +dormouse 'dOmaUs Ki% 2 +dorsal 'dOsl OA% 2 +dory 'dOrI K8$ 2 +dos duz Kj$ 1 +dosage 'd@UsIdZ M6% 2 +dosages 'd@UsIdZIz Mj% 3 +dose d@Us H2%,K6% 16A,14,15B +dosed d@Ust Hc%,Hd% 16A,14,15B +doses 'd@UsIz Ha%,Kj% 26A,14,15B +dosing 'd@UsIN Hb% 26A,14,15B +doss d0s I1% 12C +doss-house 'd0s-haUs K6% 2 +doss-houses 'd0s-haUzIz Kj% 3 +dossed d0st Ic%,Id% 12C +dosser 'd0s@R K6% 2 +dossers 'd0s@z Kj% 2 +dosses 'd0sIz Ia% 22C +dossier 'd0sIeI K6% 3 +dossiers 'd0sIeIz Kj% 3 +dossing 'd0sIN Ib% 22C +dost dVst Ge$ 1 +dot d0t H4%,K6% 1 +dotage 'd@UtIdZ L@% 2 +dotard 'd@Ut@d K6$ 2 +dotards 'd@Ut@dz Kj$ 2 +dote d@Ut I2% 13A +doted 'd@UtId Ic%,Id% 23A +dotes d@Uts Ia% 13A +doth dVT Ge$ 1 +doting 'd@UtIN Ib% 23A +dots d0ts Ha%,Kj% 1 +dotted 'd0tId Hc%,Hd% 2 +dottier 'd0tI@R Or% 3 +dottiest 'd0tIIst Os% 3 +dotting 'd0tIN Hb% 2 +dottle 'd0tl K6$ 2 +dottles 'd0tlz Kj$ 2 +dotty 'd0tI OD% 2 +double 'dVbl J2%,K6%,OA%,Pu% 22A,2C,6A,15B +double-barrelled ,dVbl-'b&r@ld OA% 4 +double-bass ,dVbl-'beIs K7% 3 +double-basses ,dVbl-'beIsIz Kj% 4 +double-bedded ,dVbl-'bedId OA% 4 +double-breasted ,dVbl-'brestId OA% 4 +double-check ,dVbl-'tSek H0% 3 +double-checked ,dVbl-'tSekt Hc%,Hd% 3 +double-checking ,dVbl-'tSekIN Hb% 4 +double-checks ,dVbl-'tSeks Ha% 3 +double-cross ,dVbl-'kr0s H1%,K7% 36A +double-crossed ,dVbl-'kr0st Hc%,Hd% 36A +double-crosses ,dVbl-'kr0sIz Ha%,Kj% 46A +double-crossing ,dVbl-'kr0sIN Hb% 46A +double-dealer ,dVbl-'dil@R K6% 4 +double-dealers ,dVbl-'dil@z Kj% 4 +double-dealing ,dVbl-'dilIN L@%,OA% 4 +double-decker ,dVbl-'dek@R K6% 4 +double-deckers ,dVbl-'dek@z Kj% 4 +double-dutch ,dVbl-'dVtS L@% 3 +double-dyed ,dVbl-'daId OA$ 3 +double-edged ,dVbl-'edZd OA% 3 +double-entries ,dVbl-'entrIz Kj% 4 +double-entry ,dVbl-'entrI K8% 4 +double-faced ,dVbl-'feIst OA$ 3 +double-first ,dVbl-'f3st K6% 3 +double-firsts ,dVbl-'f3sts Kj% 3 +double-jointed ,dVbl-'dZoIntId OA% 4 +double-park ,dVbl-'pAk J0% 3 +double-parked ,dVbl-'pAkt Jc%,Jd% 3 +double-parking ,dVbl-'pAkIN Jb% 4 +double-parks ,dVbl-'pAks Ja% 3 +double-quick ,dVbl-'kwIk OA%,Pu% 3 +double-spacing ,dVbl-'speIsIN L@% 4 +double-talk 'dVbl-tOk L@% 3 +double-think 'dVbl-TINk L@% 3 +doubled 'dVbld Jc%,Jd% 22A,2C,6A,15B +doubles 'dVblz Ja%,Kj% 22A,2C,6A,15B +doublet 'dVblIt K6$ 2 +doublets 'dVblIts Kj$ 2 +doubling 'dVblIN Jb% 22A,2C,6A,15B +doubloon dVb'lun K6$ 2 +doubloons dVb'lunz Kj$ 2 +doubly 'dVblI Pu% 2 +doubt daUt H0%,M6% 16A,9,10 +doubted 'daUtId Hc%,Hd% 26A,9,10 +doubtful 'daUtfUl OA% 2 +doubtfully 'daUtfUlI Pu% 3 +doubting 'daUtIN Hb% 26A,9,10 +doubtless 'daUtlIs Pu% 2 +doubts daUts Ha%,Mj% 16A,9,10 +douche duS K6$ 1 +douches 'duSIz Kj$ 2 +dough d@U L@% 1 +doughier 'd@UI@R Or$ 3 +doughiest 'd@UIIst Os$ 3 +doughnut 'd@UnVt K6% 2 +doughnuts 'd@UnVts Kj% 2 +doughty 'daUtI OA$ 2 +doughy 'd@UI OD% 2 +dour dU@R OA% 1 +dourly 'dU@lI Pu% 2 +douse daUs H2% 16A +doused daUst Hc%,Hd% 16A +douses 'daUsIz Ha% 26A +dousing 'daUsIN Hb% 26A +dove dVv K6% 1 +dovecote 'dVvk@t K6% 2 +dovecotes 'dVvk@ts Kj% 2 +doves dVvz Kj% 1 +dovetail 'dVvteIl J0%,K6% 22A,3A,6A +dovetailed 'dVvteIld Jc%,Jd% 22A,3A,6A +dovetailing 'dVvteIlIN Jb% 32A,3A,6A +dovetails 'dVvteIlz Ja%,Kj% 22A,3A,6A +dowager 'daU@dZ@R K6% 3 +dowagers 'daU@dZ@z Kj% 3 +dowdier 'daUdI@R Or% 3 +dowdiest 'daUdIIst Os% 3 +dowdily 'daUdIlI Pu% 3 +dowdiness 'daUdIn@s L@% 3 +dowdy 'daUdI OD% 2 +dowel 'daU@l K6$ 2 +dowels 'daU@lz Kj$ 2 +dower 'daU@R H0$,K6$ 2 +dowered 'daU@d Hc$,Hd$ 2 +dowering 'daU@rIN Hb$ 3 +dowers 'daU@z Ha$,Kj$ 2 +down daUn H0%,M6%,P+*,T-* 16A +down-and-out 'daUn-@n-aUt K6% 3 +down-and-outs 'daUn-@n-aUts Kj% 3 +down-market ,daUn-'mAkIt OA% 3 +down-to-earth ,daUn-tU-'3T OA% 3 +downbeat 'daUnbit K6% 2 +downbeats 'daUnbits Kj$ 2 +downcast 'daUnkAst OA% 2 +downed daUnd Hc%,Hd% 16A +downfall 'daUnfOl Ki% 2 +downgrade ,daUn'greId H2% 26A +downgraded ,daUn'greIdId Hc%,Hd% 36A +downgrades ,daUn'greIdz Ha% 26A +downgrading ,daUn'greIdIN Hb% 36A +downhearted ,daUn'hAtId OA% 3 +downhill ,daUn'hIl Pu% 2 +downing 'daUnIN Hb% 26A +downpour 'daUnpOR K6% 2 +downpours 'daUnpOz Kj% 2 +downright 'daUnraIt OA%,Pu% 2 +downrightness 'daUnraItn@s L@$ 3 +downs daUnz Ha%,Mj% 16A +downstair 'daUnste@R OA$ 2 +downstairs ,daUn'ste@z OA%,Pu% 2 +downstream daUn'strim OA%,Pu% 2 +downtown 'daUntaUn Pu% 2 +downtrodden 'daUntr0dn OA% 3 +downward 'daUnw@d OA%,Pu% 2 +downwards 'daUnw@dz Pu% 2 +downy 'daUnI OA% 2 +dowries 'daU@rIz Kj% 2 +dowry 'daU@rI K8% 2 +dowse daUs H2$ 16A +dowsed daUst Hc$,Hd$ 16A +dowser 'daUs@R K6$ 2 +dowsers 'daUs@z Kj$ 2 +dowses 'daUsIz Ha$ 26A +dowsing 'daUsIN Hb$ 26A +dowsing 'daUzIN L@$ 2 +doxologies d0k's0l@dZIz Kj$ 4 +doxology d0k's0l@dZI K8$ 4 +doyen 'doI@n K6% 2 +doyens 'doI@nz Kj$ 2 +doyley 'doIlI K6% 2 +doyleys 'doIlIz Kj% 2 +doylies 'doIlIz Kj% 2 +doyly 'doIlI K8% 2 +doz 'dVzn Y]% 3 +doze d@Uz I2%,K6% 12A,2C +dozed d@Uzd Ic%,Id% 12A,2C +dozen 'dVzn K6% 2 +dozens 'dVznz Kj% 2 +dozes 'd@UzIz Ia%,Kj% 22A,2C +dozing 'd@UzIN Ib% 22A,2C +drab dr&b OE% 1 +drabber 'dr&b@R Or% 2 +drabbest 'dr&bIst Os% 2 +drably 'dr&blI Pu% 2 +drabness 'dr&bn@s L@% 2 +drachm dr&m K6$ 1 +drachma 'dr&km@ K6$ 2 +drachmas 'dr&km@z Kj$ 2 +drachms dr&mz Kj$ 1 +draconian dr@'k@UnI@n OA$ 4 +draft drAft H0%,K6% 16A +drafted 'drAftId Hc%,Hd% 26A +draftee ,drA'fti K6% 2 +draftees ,drA'ftiz Kj% 2 +drafting 'drAftIN Hb%,K6% 26A +draftings 'drAftINz Kj% 2 +drafts drAfts Ha%,Kj% 16A +draftsman 'drAftsm@n Ki% 2 +draftsmen 'drAftsm@n Kj% 2 +drag dr&g J4%,L@% 12A,2C,6A,14,15B +dragged dr&gd Jc%,Jd% 12A,2C,6A,14,15B +dragging 'dr&gIN Jb% 22A,2C,6A,14,15B +draggled 'dr&gld OA% 2 +dragnet 'dr&gnet K6% 2 +dragnets 'dr&gnets Kj% 2 +dragoman 'dr&g@Um@n K6$ 3 +dragomans 'dr&g@Um@nz Kj$ 3 +dragon 'dr&g@n K6% 2 +dragonflies 'dr&g@nflaIz Kj% 3 +dragonfly 'dr&g@nflaI K8% 3 +dragons 'dr&g@nz Kj% 2 +dragoon dr@'gun H0%,K6% 26A,14 +dragooned dr@'gund Hc%,Hd% 26A,14 +dragooning dr@'gunIN Hb% 36A,14 +dragoons dr@'gunz Ha%,Kj% 26A,14 +drags dr&gz Ja% 12A,2C,6A,14,15B +drain dreIn J0%,K6% 12A,2C,6A,14,15B,22 +drainage 'dreInIdZ L@% 2 +drainage-basin 'dreInIdZ-beIsn K6$ 4 +drainage-basins 'dreInIdZ-beIsnz Kj$ 4 +drained dreInd Jc%,Jd% 12A,2C,6A,14,15B,22 +draining 'dreInIN Jb% 22A,2C,6A,14,15B,22 +draining-board 'dreInIN-bOd K6% 3 +draining-boards 'dreInIN-bOdz Kj% 3 +drainpipe 'dreInpaIp K6% 2 +drainpipes 'dreInpaIps Kj% 2 +drains dreInz Ja%,Kj% 12A,2C,6A,14,15B,22 +drake dreIk K6% 1 +drakes dreIks Kj% 1 +dram dr&m K6% 1 +drama 'drAm@ M6% 2 +dramas 'drAm@z Mj% 2 +dramatic dr@'m&tIk OA% 3 +dramatically dr@'m&tIklI Pu% 4 +dramatics dr@'m&tIks Lk% 3 +dramatis personae ,dr&m@tIs p3's@UnaI Kj% 6 +dramatist 'dr&m@tIst K6% 3 +dramatists 'dr&m@tIsts Kj% 3 +dramatization ,dr&m@taI'zeISn M6% 5 +dramatizations ,dr&m@taI'zeISnz Mj% 5 +dramatize 'dr&m@taIz H2% 36A +dramatized 'dr&m@taIzd Hc%,Hd% 36A +dramatizes 'dr&m@taIzIz Ha% 46A +dramatizing 'dr&m@taIzIN Hb% 46A +drams dr&mz Kj% 1 +drank dr&Nk Jc% 12A,3A,6A,15B +drape dreIp H2%,K6% 16A,14 +draped dreIpt Hc%,Hd% 16A,14 +draper 'dreIp@R K6% 2 +draperies 'dreIp@rIz Mj% 3 +drapers 'dreIp@z Kj% 2 +drapery 'dreIp@rI M8% 3 +drapes dreIps Ha%,Kj% 16A,14 +draping 'dreIpIN Hb% 26A,14 +drastic 'dr&stIk OA% 2 +drastically 'dr&stIklI Pu% 3 +drat dr&t H4$ 1 +drats dr&ts Ha$ 1 +dratted 'dr&tId Hc$,Hd% 2 +dratting 'dr&tIN Hb$ 2 +draught drAft H0$,M6% 1 +draught-horse 'drAft-hOs K6% 2 +draught-horses 'drAft-hOsIz Kj% 3 +draughted 'drAftId Hc$,Hd$ 2 +draughtier 'drAftI@R Or% 3 +draughtiest 'drAftIIst Os% 3 +draughting 'drAftIN Hb$ 2 +draughts drAfts Ha$,Lk%,Mj% 1 +draughtsman 'drAftsm@n Ki$ 2 +draughtsmen 'drAftsm@n Kj$ 2 +draughty 'drAftI OD% 2 +draw drO J5%,K6% 12A,2B,2C,2D,3A,6A,14,15B +drawback 'drOb&k M6% 2 +drawbacks 'drOb&ks Mj% 2 +drawbridge 'drObrIdZ K6% 2 +drawbridges 'drObrIdZIz Kj% 3 +drawer drOR K6% 1 +drawers drOz Kj% 1 +drawing 'drOIN Jb%,M6% 22A,2B,2C,2D,3A,6A,14,15B +drawing-board 'drOIN-bOd K6% 3 +drawing-boards 'drOIN-bOdz Kj% 3 +drawing-pin 'drOIN-pIn K6% 3 +drawing-pins 'drOIN-pInz Kj% 3 +drawing-room 'drOIN-rUm K6% 3 +drawing-rooms 'drOIN-rUmz Kj% 3 +drawings 'drOINz Mj% 2 +drawl drOl J0%,K6% 12A,2C,6A,15B +drawled drOld Jc%,Jd% 12A,2C,6A,15B +drawling 'drOlIN Jb% 22A,2C,6A,15B +drawls drOlz Ja%,Kj% 12A,2C,6A,15B +drawn drOn Jd% 12A,2B,2C,2D,3A,6A,14,15B +draws drOz Ja%,Kj% 12A,2B,2C,2D,3A,6A,14,15B +dray dreI K6$ 1 +drays dreIz Kj$ 1 +dread dred J0%,L@% 16A,6C,7A +dreaded 'dredId Jc%,Jd%,OA% 26A,6C,7A +dreadful 'dredf@l OA% 2 +dreadfully 'dredf@lI Pu% 3 +dreadfulness 'dredf@ln@s L@% 3 +dreading 'dredIN Jb% 26A,6C,7A +dreadnought 'drednOt K6$ 2 +dreadnoughts 'drednOts Kj$ 2 +dreads dredz Ja% 16A,6C,7A +dream drim J0%,K6% 12A,3A,6A,8,9,10,15B +dreamed drimd Jc%,Jd% 12A,3A,6A,8,9,10,15B +dreamer 'drim@R K6% 2 +dreamers 'drim@z Kj% 2 +dreamier 'drimI@R Or% 3 +dreamiest 'drimIIst Os% 3 +dreamily 'drimIlI Pu% 3 +dreaming 'drimIN Jb% 22A,3A,6A,8,9,10,15B +dreamland 'driml&nd K6% 2 +dreamlands 'driml&ndz Kj$ 2 +dreamless 'driml@s OA% 2 +dreamlike 'drimlaIk OA% 2 +dreams drimz Ja%,Kj% 12A,3A,6A,8,9,10,15B +dreamt dremt Jc%,Jd% 12A,3A,6A,8,9,10,15B +dreamworld 'drimw3ld K6% 2 +dreamworlds 'drimw3ldz Kj$ 2 +dreamy 'drimI OD% 2 +drear drI@R OA% 1 +drearier 'drI@rI@R Or% 3 +dreariest 'drI@rIIst Os% 3 +drearily 'drI@rIlI Pu% 3 +dreariness 'drI@rInIs L@% 3 +dreary 'drI@rI OD% 3 +dredge dredZ J2%,K6% 12A,3A,6A,14,15B +dredged dredZd Jc%,Jd% 12A,3A,6A,14,15B +dredger 'dredZ@R K6% 2 +dredgers 'dredZ@z Kj% 2 +dredges 'dredZIz Ja%,Kj% 22A,3A,6A,14,15B +dredging 'dredZIN Jb% 22A,3A,6A,14,15B +dregs dregz Kj% 1 +drench drentS H1% 16A +drenched drentSt Hc%,Hd% 16A +drenches 'drentSIz Ha% 26A +drenching 'drentSIN Hb%,K6% 26A +drenchings 'drentSINz Kj$ 2 +dress dres J1%,M7% 12A,2C,6A,15B +dress-hanger 'dres-h&N@R K6$ 3 +dress-hangers 'dres-h&N@z Kj$ 3 +dressage 'dresAZ L@$ 2 +dressed drest Jc%,Jd% 12A,2C,6A,15B +dresser 'dres@R K6% 2 +dressers 'dres@z Kj% 2 +dresses 'dresIz Ja%,Mj% 22A,2C,6A,15B +dressier 'dresI@R Or% 3 +dressiest 'dresIIst Os% 3 +dressing 'dresIN Jb%,M6% 22A,2C,6A,15B +dressing-case 'dresIN-keIs K6$ 3 +dressing-cases 'dresIN-keIsIz Kj$ 4 +dressing-down ,dresIN-'daUn Ki% 3 +dressing-gown 'dresIN-gaUn K6% 3 +dressing-gowns 'dresIN-gaUnz Kj% 3 +dressing-table 'dresIN-teIbl K6% 4 +dressing-tables 'dresIN-teIblz Kj% 4 +dressings 'dresINz Mj% 2 +dressmaker 'dresmeIk@R K6% 3 +dressmakers 'dresmeIk@z Kj% 3 +dressmaking 'dresmeIkIN L@% 3 +dressy 'dresI OD% 2 +drew dru Jc% 12A,2B,2C,2D,3A,6A,14,15B +dribble 'drIbl J2% 22A,6A +dribbled 'drIbld Jc%,Jd% 22A,6A +dribbler 'drIbl@R K6% 2 +dribblers 'drIbl@z Kj% 2 +dribbles 'drIblz Ja% 22A,6A +dribbling 'drIblIN Jb% 22A,6A +driblet 'drIblIt K6$ 2 +driblets 'drIblIts Kj$ 2 +dribs and drabs ,drIbz n 'dr&bz Kj% 3 +dried draId Jc%,Jd% 12A,2C,6A,15B +drier 'draI@R K6%,Or% 2 +driers 'draI@z Kj% 2 +dries draIz Ja% 12A,2C,6A,15B +driest 'draIIst Os% 2 +drift drIft J0%,M6% 12A,2C,6A,14,15B +drift-ice 'drIft-aIs L@% 2 +drift-net 'drIft-net K6% 2 +drift-nets 'drIft-nets Kj% 2 +drift-wood 'drIft-wUd L@% 2 +driftage 'drIftIdZ L@$ 2 +drifted 'drIftId Jc%,Jd% 22A,2C,6A,14,15B +drifter 'drIft@R K6% 2 +drifters 'drIft@z Kj% 2 +drifting 'drIftIN Jb% 22A,2C,6A,14,15B +drifts drIfts Ja%,Mj% 12A,2C,6A,14,15B +drill drIl J0%,M6% 12A,6A,14 +drilled drIld Jc%,Jd% 12A,6A,14 +drilling 'drIlIN Jb% 22A,6A,14 +drills drIlz Ja%,Mj% 12A,6A,14 +drily 'draIlI Pu% 2 +drink drINk J5%,M6% 12A,3A,6A,15B +drinkable 'drINk@bl OA% 3 +drinker 'drINk@R K6% 2 +drinkers 'drINk@z Kj% 2 +drinking 'drINkIN Jb%,L@% 22A,3A,6A,15B +drinking-bout 'drINkIN-baUt K6% 3 +drinking-bouts 'drINkIN-baUts Kj% 3 +drinking-fountain 'drINkIN-faUntIn K6% 4 +drinking-fountains 'drINkIN-faUntInz Kj% 4 +drinking-song 'drINkIN-s0N K6% 3 +drinking-songs 'drINkIN-s0Nz Kj% 3 +drinking-water 'drINkIN-wOt@R L@% 4 +drinks drINks Ja%,Mj% 12A,3A,6A,15B +drip drIp J4%,K6% 12A,2C,6A +drip-dried drIp-'draId Hc%,Hd% 2 +drip-dries drIp-'draIz Ha% 2 +drip-dry drIp-'draI H3%,OA% 2 +drip-drying drIp-'draIIN Hb% 3 +dripped drIpt Jc%,Jd% 12A,2C,6A +dripping 'drIpIN Jb%,L@% 22A,2C,6A +dripping-pan 'drIpIN-p&n K6$ 3 +dripping-pans 'drIpIN-p&nz Kj$ 3 +drips drIps Ja%,Kj% 12A,2C,6A +drive draIv J5%,M6% 12A,2C,3A,6A,14,15B,17,22 +drive-in 'draIv-In K6% 2 +drive-ins 'draIv-Inz Kj$ 2 +drivel 'drIvl I4$,L@% 22A,2C +drivelled 'drIvld Ic$,Id$ 22A,2C +driveller 'drIvl@R K6$ 3 +drivellers 'drIvl@z Kj$ 3 +drivelling 'drIv@lIN Ib% 32A,2C +drivels 'drIvlz Ia$ 22A,2C +driven 'drIvn Jd% 22A,2C,3A,6A,14,15B,17,22 +driver 'draIv@R K6% 2 +drivers 'draIv@z Kj% 2 +drives draIvz Ja%,Mj% 12A,2C,3A,6A,14,15B,17,22 +driveway 'draIvweI K6% 2 +driveways 'draIvweIz Kj% 2 +driving 'draIvIN Jb% 22A,2C,3A,6A,14,15B,17,22 +driving-belt 'draIvIN-belt K6$ 3 +driving-belts 'draIvIN-belts Kj$ 3 +driving-wheel 'draIvIN-wil K6% 3 +driving-wheels 'draIvIN-wilz Kj% 3 +drizzle 'drIzl I2%,L@% 22A +drizzled 'drIzld Ic%,Id% 22A +drizzles 'drIzlz Ia% 22A +drizzling 'drIzlIN Ib% 22A +drizzly 'drIzlI OA% 2 +drogue dr@Ug K6$ 1 +drogues dr@Ugz Kj$ 1 +droll dr@Ul OA% 1 +drolleries 'dr0l@rIz Mj$ 3 +drollery 'dr0l@rI M8$ 3 +dromedaries 'dr0m@d@rIz Kj$ 4 +dromedary 'dr0m@d@rI K8$ 4 +drone dr@Un J2%,M6% 12C,15B +droned dr@Und Jc%,Jd% 12C,15B +drones dr@Unz Ja%,Mj% 12C,15B +droning 'dr@UnIN Jb% 22C,15B +drool drul I0% 1 +drooled druld Ic%,Id% 1 +drooling 'drulIN Ib% 2 +drools drulz Ia% 1 +droop drup J0%,Ki% 12A,2C,6A +drooped drupt Jc%,Jd% 12A,2C,6A +drooping 'drupIN Jb% 22A,2C,6A +droopingly 'drupINlI Pu% 3 +droops drups Ja% 12A,2C,6A +drop dr0p J4%,K6% 12A,2C,3B,6A,12A,13A,14,15A,15B +drop-curtain 'dr0p-k3tn K6$ 3 +drop-curtains 'dr0p-k3tnz Kj$ 3 +drop-kick 'dr0p-kIk K6% 2 +drop-kicks 'dr0p-kIks Kj% 2 +dropout 'dr0paUt K6% 2 +dropouts 'dr0paUts Kj% 2 +dropped dr0pt Jc%,Jd% 12A,2C,3B,6A,12A,13A,14,15A,15B +dropping 'dr0pIN Jb% 22A,2C,3B,6A,12A,13A,14,15A,15B +dropping-zone 'dr0pIN-z@Un K6$ 3 +dropping-zones 'dr0pIN-z@Unz Kj$ 3 +droppings 'dr0pINz Kj% 2 +drops dr0ps Ja%,Kj% 12A,2C,3B,6A,12A,13A,14,15A,15B +dropsical 'dr0psIkl OA$ 3 +dropsy 'dr0psI L@$ 2 +droshkies 'dr0SkIz Kj$ 2 +droshky 'dr0SkI K8$ 2 +dross dr0s L@$ 1 +drought draUt M6% 1 +droughts draUts Mj% 1 +drove dr@Uv Jc%,K6% 12A,2C,3A,6A,14,15B,17,22 +drover 'dr@Uv@R K6% 2 +drovers 'dr@Uv@z Kj% 2 +droves dr@Uvz Kj% 1 +drown draUn J0% 12A,6A,15B +drowned draUnd Jc%,Jd% 12A,6A,15B +drowning 'draUnIN Jb% 22A,6A,15B +drowns draUnz Ja% 12A,6A,15B +drowse draUz J2%,Ki$ 12A,2C,15B +drowsed draUzd Jc%,Jd% 12A,2C,15B +drowses 'draUzIz Ja% 22A,2C,15B +drowsier 'draUzI@R Or% 3 +drowsiest 'draUzIIst Os% 3 +drowsily 'draUzIlI Pu% 3 +drowsiness 'draUzIn@s L@% 3 +drowsing 'draUzIN Jb% 22A,2C,15B +drowsy 'draUzI OD% 2 +drub drVb H4$ 16A,14 +drubbed drVbd Hc$,Hd$ 16A,14 +drubbing 'drVbIN Hb$,Ki% 26A,14 +drubs drVbz Ha$ 16A,14 +drudge drVdZ I2$,K6% 12A,2C,3A +drudged drVdZd Ic$,Id$ 12A,2C,3A +drudgery 'drVdZ@rI L@% 3 +drudges 'drVdZIz Ia$,Kj% 22A,2C,3A +drudging 'drVdZIN Ib$ 22A,2C,3A +drug drVg H4%,K6% 16A +drugged drVgd Hc%,Hd% 16A +drugget 'drVgIt M6$ 2 +druggets 'drVgIts Mj$ 2 +drugging 'drVgIN Hb% 26A +druggist 'drVgIst K6% 2 +druggists 'drVgIsts Kj% 2 +drugs drVgz Ha%,Kj% 16A +drugstore 'drVgstOR K6% 2 +drugstores 'drVgstOz Kj% 2 +druid 'druId K6% 2 +druids 'druIdz Kj% 2 +drum drVm J4%,K6% 12A,2C,3A,6A,14,15B +drum-major drVm-'meIdZ@R K6% 3 +drum-majorette ,drVm-,meIdZ@'ret K6% 4 +drum-majorettes ,drVm-,meIdZ@'rets Kj% 4 +drum-majors drVm-'meIdZ@z Kj% 3 +drumfire 'drVmfaI@R L@$ 2 +drumhead 'drVmhed OA$ 2 +drummed drVmd Jc%,Jd% 12A,2C,3A,6A,14,15B +drummer 'drVm@R K6% 2 +drummers 'drVm@z Kj% 2 +drumming 'drVmIN Jb% 22A,2C,3A,6A,14,15B +drums drVmz Ja%,Kj% 12A,2C,3A,6A,14,15B +drumstick 'drVmstIk K6% 2 +drumsticks 'drVmstIks Kj% 2 +drunk drVNk Jd%,K6%,OC% 12A,3A,6A,15B +drunkard 'drVnk@d K6% 2 +drunkards 'drVnk@dz Kj% 2 +drunken 'drVNk@n OA% 2 +drunkenly 'drVNk@nlI Pu% 3 +drunkenness 'drVNk@n+n@s L@% 3 +drunker 'drVNk@R Or% 2 +drunkest 'drVNkIst Os% 2 +drunks drVNks Kj% 1 +drupe drup K6$ 1 +drupes drups Kj$ 1 +dry draI J3%,OD% 12A,2C,6A,15B +dry-clean draI-'klin H0% 2 +dry-cleaned draI-'klind Hc%,Hd% 2 +dry-cleaner draI-'klin@R K6% 3 +dry-cleaners draI-'klin@z Kj% 3 +dry-cleaning draI-'klinIN Hb%,L@% 3 +dry-cleans draI-'klinz Ha% 2 +dry-shod draI-'S0d OA$ 2 +dry-walling draI-'wOlIN L@$ 3 +dryad 'draI@d K6$ 2 +dryads 'draI@dz Kj$ 2 +dryer 'draI@R K6% 2 +dryers 'draI@z Kj% 2 +drying 'draIIN Jb% 22A,2C,6A,15B +dryness 'draIn@s L@% 2 +dual 'dju@l OA% 2 +dub dVb H4% 16A,22,23 +dubbed dVbd Hc%,Hd% 16A,22,23 +dubbin 'dVbIn L@% 2 +dubbing 'dVbIN Hb% 26A,22,23 +dubieties dju'baI@tIz Mj$ 4 +dubiety dju'baI@tI M8$ 4 +dubious 'djubI@s OA% 3 +dubiously 'djubI@slI Pu% 4 +dubiousness 'djubI@sn@s L@% 4 +dubs dVbz Ha% 16A,22,23 +ducal 'djukl OA$ 2 +ducat 'dVk@t K6$ 2 +ducats 'dVk@ts Kj$ 2 +duchess 'dVtSIs K7% 2 +duchesses 'dVtSIsIz Kj% 3 +duchies 'dVtSIz Kj$ 2 +duchy 'dVtSI K8% 2 +duck dVk J0%,M9% 12A,6A +duckbilled 'dVkbIld OA% 2 +duckboards 'dVkbOdz Kj% 2 +ducked dVkt Jc%,Jd% 12A,6A +duckies 'dVkIz Kj$ 2 +ducking 'dVkIN Jb%,K6% 22A,6A +ducking-stool 'dVkIN-stul K6% 3 +ducking-stools 'dVkIN-stulz Kj% 3 +duckings 'dVkINz Kj% 2 +duckling 'dVklIN K6% 2 +ducklings 'dVklINz Kj% 2 +ducks dVks Ja%,Kj% 12A,6A +duckweed 'dVkwid L@% 2 +ducky 'dVkI K8% 2 +duct dVkt K6% 1 +ductile 'dVktaIl OA$ 2 +ductility dVk'tIlItI L@$ 4 +ducts dVkts Kj% 1 +dud dVd K6%,OA% 1 +dude djud K6$ 1 +dudes djudz Kj$ 1 +dudgeon 'dVdZ@n L@$ 2 +duds dVdz Kj% 1 +due dju K6%,OA%,Pu% 1 +duel 'dju@l I4%,K6% 2 +duelist 'dju@lIst K6$ 3 +duelists 'dju@lIsts Kj$ 3 +duelled 'dju@ld Ic%,Id% 2 +duelling 'dju@lIN Ib% 3 +duellist 'dju@lIst K6$ 3 +duellists 'dju@lIsts Kj$ 3 +duels 'dju@lz Ia%,Kj% 2 +duenna dju'en@ K6$ 3 +duennas dju'en@z Kj$ 3 +dues djuz Kj% 1 +duet dju'et K6% 2 +duets dju'ets Kj% 2 +duffel 'dVfl L@% 2 +duffer 'dVf@R K6% 2 +duffers 'dVf@z Kj% 2 +duffle 'dVfl L@% 2 +dug dVg Jc%,Jd%,K6% 12C,3A,6A,15B +dugong 'dug0N K6$ 2 +dugongs 'dug0Nz Kj$ 2 +dugout 'dVgaUt K6% 2 +dugouts 'dVgaUts Kj% 2 +dugs dVgz Kj$ 1 +duke djuk K6% 1 +dukedom 'djukd@m K6% 2 +dukedoms 'djukd@mz Kj% 2 +dukes djuks Kj% 1 +dulcet 'dVlsIt OA% 2 +dulcimer 'dVlsIm@R K6% 3 +dulcimers 'dVlsIm@z Kj$ 3 +dull dVl J0%,OC% 12A,6A +dullard 'dVl@d K6% 2 +dullards 'dVl@dz Kj% 2 +dulled dVld Jc%,Jd% 12A,6A +duller 'dVl@R Or% 2 +dullest 'dVlIst Os% 2 +dulling 'dVlIN Jb% 22A,6A +dullness 'dVln@s L@% 2 +dulls dVlz Ja% 12A,6A +dully 'dVl+lI Pu% 2 +duly 'djulI Pu% 2 +dumb dVm OC% 1 +dumbbell 'dVmbel K6% 2 +dumbbells 'dVmbelz Kj% 2 +dumber 'dVm@R Or% 2 +dumbest 'dVmIst Os% 2 +dumbfound dVm'faUnd H0% 26A +dumbfounded dVm'faUndId Hc%,Hd% 36A +dumbfounding dVm'faUndIN Hb$ 36A +dumbfounds dVm'faUndz Ha% 26A +dumbly 'dVmlI Pu% 2 +dumbness 'dVmn@s L@% 2 +dumbwaiter ,dVm'weIt@R K6% 3 +dumbwaiters ,dVm'weIt@z Kj% 3 +dumdum 'dVmdVm K6$ 2 +dumdums 'dVmdVmz Kj$ 2 +dummies 'dVmIz Kj% 2 +dummy 'dVmI K8% 2 +dump dVmp H0%,K6% 16A,15A +dumped dVmpt Hc%,Hd% 16A,15A +dumper 'dVmp@R K6% 2 +dumpers 'dVmp@z Kj% 2 +dumpier 'dVmpI@R Or$ 3 +dumpiest 'dVmpIIst Os$ 3 +dumping 'dVmpIN Hb% 26A,15A +dumpling 'dVmplIN K6% 2 +dumplings 'dVmplINz Kj% 2 +dumps dVmps Ha%,Kj% 16A,15A +dumpy 'dVmpI OD% 2 +dun dVn H4$,K6$,OA% 1 +dunce dVns K6% 1 +dunces 'dVnsIz Kj% 2 +dunderhead 'dVnd@hed K6$ 3 +dunderheads 'dVnd@hedz Kj$ 3 +dune djun K6% 1 +dunes djunz Kj% 1 +dung dVN L@% 1 +dungarees ,dVNg@'riz Kj% 3 +dungeon 'dVndZ@n K6% 2 +dungeons 'dVndZ@nz Kj% 2 +dunghill 'dVNhIl K6% 2 +dunghills 'dVNhIlz Kj% 2 +dunk dVNk H0% 16A,14 +dunked dVNkt Hc%,Hd% 16A,14 +dunking 'dVNkIN Hb% 26A,14 +dunks dVNks Ha% 16A,14 +dunned dVnd Hc$,Hd$ 1 +dunning 'dVnIN Hb$ 2 +duns dVnz Ha$,Kj$ 1 +duodecimal ,dju@U'desIml OA$ 5 +duodenal ,dju@'dinl OA$ 4 +duodenum ,dju@'din@m K6$ 4 +duodenums ,dju@'din@mz Kj$ 4 +duologue 'dju@l0g K6$ 3 +duologues 'dju@l0gz Kj$ 3 +dupe djup H2%,K6% 16A +duped djupt Hc%,Hd% 16A +dupes djups Ha%,Kj% 16A +duping 'djupIN Hb% 26A +dupl 'djuplIk@t Y~% 3 +duplex 'djupleks OA% 2 +duplicate 'djuplIk@t K6%,OA% 3 +duplicate 'djuplIkeIt H2% 36A +duplicated 'djuplIkeItId Hc%,Hd% 46A +duplicates 'djuplIk@ts Kj% 3 +duplicates 'djuplIkeIts Ha% 36A +duplicating 'djuplIkeItIN Hb% 46A +duplication ,djuplI'keISn M6% 4 +duplications ,djuplI'keISnz Mj% 4 +duplicator 'djuplIkeIt@R K6% 4 +duplicators 'djuplIkeIt@z Kj% 4 +duplicity dju'plIsItI L@% 4 +durability ,djU@r@'bIlItI L@% 5 +durable 'djU@r@bl K6%,OA% 3 +durables 'djU@r@blz Kj% 3 +durance 'djU@r@ns L@$ 2 +duration djU'reISn M6% 3 +durations djU'reISnz Mj$ 3 +durbar 'd3bAR K6$ 2 +durbars 'd3bAz Kj$ 2 +duress djU'res L@% 2 +during 'djU@rIN T-* 2 +durst d3st Gc$ 15 +dusk dVsk L@% 1 +duskier 'dVskI@R Or$ 3 +duskiest 'dVskIIst Os$ 3 +dusky 'dVskI OD% 2 +dust dVst H0%,L@% 16A +dust-bowl 'dVst-b@Ul K6% 2 +dust-bowls 'dVst-b@Ulz Kj% 2 +dust-coat 'dVst-k@Ut K6% 2 +dust-coats 'dVst-k@Uts Kj% 2 +dust-jacket 'dVst-dZ&kIt K6% 3 +dust-jackets 'dVst-dZ&kIts Kj% 3 +dust-sheet 'dVst-Sit K6% 2 +dust-sheets 'dVst-Sits Kj% 2 +dust-up 'dVst-Vp K6% 2 +dust-ups 'dVst-Vps Kj% 2 +dust-wrapper 'dVst-r&p@R K6% 3 +dust-wrappers 'dVst-r&p@z Kj% 3 +dustbin 'dVstbIn K6% 2 +dustbins 'dVstbInz Kj% 2 +dustcart 'dVstkAt K6% 2 +dustcarts 'dVstkAts Kj% 2 +dusted 'dVstId Hc%,Hd% 26A +duster 'dVst@R K6% 2 +dusters 'dVst@z Kj% 2 +dustier 'dVstI@R Or% 3 +dustiest 'dVstIIst Os% 3 +dusting 'dVstIN Hb% 26A +dustman 'dVstm@n Ki% 2 +dustmen 'dVstm@n Kj% 2 +dustpan 'dVstp&n K6% 2 +dustpans 'dVstp&nz Kj% 2 +dusts dVsts Ha% 16A +dusty 'dVstI OD% 2 +duteous 'djutI@s OA$ 3 +dutiable 'djutI@bl OA$ 4 +duties 'djutIz Mj% 2 +dutiful 'djutIf@l OA% 3 +dutifully 'djutIf@lI Pu% 4 +duty 'djutI M8% 2 +duty-free ,djutI-'fri OA% 3 +duvet 'djuveI K6% 2 +duvets 'djuveIz Kj% 2 +dwarf dwOf H0%,K6% 16A +dwarfed dwOft Hc%,Hd% 16A +dwarfing 'dwOfIN Hb% 26A +dwarfish 'dwOfIS OA% 2 +dwarfs dwOfs Ha%,Kj% 16A +dwell dwel I5% 13A +dweller 'dwel@R K6% 2 +dwellers 'dwel@z Kj% 2 +dwelling 'dwelIN Ib%,K6% 23A +dwelling-house 'dwelIN-haUs K6% 3 +dwelling-houses 'dwelIN-haUzIz Kj% 4 +dwellings 'dwelINz Kj% 2 +dwells dwelz Ia% 13A +dwelt dwelt Ic% 13A +dwindle 'dwIndl I2% 22A +dwindled 'dwIndld Ic%,Id% 22A +dwindles 'dwIndlz Ia% 22A +dwindling 'dwIndlIN Ib% 22A +dyarchies 'daIAkIz Kj$ 3 +dyarchy 'daIAkI K8$ 3 +dye daI J2%,M6% 12A,6A,22 +dye-works 'daI-w3ks K9$ 2 +dyed daId Jc%,Jd% 12A,6A,22 +dyed-in-the-wool ,daId-In-D@-'wUl OA% 4 +dyer 'daI@R K6$ 2 +dyers 'daI@z Kj$ 2 +dyes daIz Ja%,Mj% 12A,6A,22 +dyestuff 'daIstVf K6% 2 +dyestuffs 'daIstVfs Kj% 2 +dying 'daIIN Jb% 22A,2C,2D,3A,4C,6A,22 +dyke daIk J2$,K6% 1 +dyked daIkt Jc$,Jd$ 1 +dykes daIks Ja$,Kj% 1 +dyking 'daIkIN Jb$ 2 +dynamic daI'n&mIk K6%,OA% 3 +dynamically daI'n&mIklI Pu% 4 +dynamics daI'n&mIks Kj% 3 +dynamism 'daIn@mIz@m L@% 4 +dynamite 'daIn@maIt H2%,L@% 36A +dynamited 'daIn@maItId Hc%,Hd% 46A +dynamites 'daIn@maIts Ha% 36A +dynamiting 'daIn@maItIN Hb% 46A +dynamo 'daIn@m@U K6% 3 +dynamos 'daIn@m@Uz Kj% 3 +dynast 'dIn@st K6$ 2 +dynastic dI'n&stIk OA% 3 +dynasties 'dIn@stIz Kj% 3 +dynasts 'dIn@sts Kj$ 2 +dynasty 'dIn@stI K8% 3 +dyne daIn K6$ 1 +dynes daInz Kj$ 1 +dysentery 'dIs@ntrI L@% 3 +dyslexia dIs'leksI@ L@% 4 +dyslexic dIs'leksIk OA% 3 +dyspepsia dIs'pepsI@ L@% 4 +dyspeptic dIs'peptIk K6%,OA% 3 +dyspeptics dIs'peptIks Kj$ 3 +e i Ki$ 1 +e'en in Pu% 1 +e'er e@R Pu% 2 +e's iz Kj$ 1 +each itS OA*,Qx* 1 +eager 'ig@R OA% 2 +eagerly 'ig@lI Pu% 3 +eagerness 'ig@n@s L@% 3 +eagle 'igl K6% 2 +eagle-eyed 'igl-aId OA% 3 +eagles 'iglz Kj% 2 +eaglet 'iglIt K6$ 2 +eaglets 'iglIts Kj$ 2 +ear I@R K6% 1 +ear-trumpet 'I@-trVmpIt K6% 3 +ear-trumpets 'I@-trVmpIts Kj% 3 +earache 'I@reIk M6% 2 +earaches 'I@reIks Mj$ 3 +eardrop 'I@dr0p K6% 2 +eardrops 'I@dr0ps Kj% 2 +eardrum 'I@drVm K6% 2 +eardrums 'I@drVmz Kj% 2 +earful 'I@fUl K6% 2 +earfuls 'I@fUlz Kj$ 2 +earl 3l K6% 1 +earldom '3ld@m K6% 2 +earldoms '3ld@mz Kj% 2 +earlier '3lI@R Or% 3 +earliest '3lIIst Os% 3 +earls 3lz Kj% 1 +early '3lI OD*,Pu* 2 +early-warning ,3lI-'wOnIN OA% 4 +earmark 'I@mAk H0%,K6% 26A,14 +earmarked 'I@mAkt Hc%,Hd% 26A,14 +earmarking 'I@mAkIN Hb% 36A,14 +earmarks 'I@mAks Ha%,Kj% 26A,14 +earn 3n H0% 16A,12B,13B +earned 3nd Hc%,Hd% 16A,12B,13B +earnest '3nIst L@%,OA% 2 +earnest-money '3nIst-mVnI L@$ 4 +earnestly '3nIstlI Pu% 3 +earnestness '3nIstn@s L@% 3 +earning '3nIN Hb% 26A,12B,13B +earnings '3nINz Kj% 2 +earns 3nz Ha% 16A,12B,13B +earphone 'I@f@Un K6% 2 +earphones 'I@f@Unz Kj% 2 +earpiece 'I@pis K6% 2 +earpieces 'I@pisIz Kj% 3 +earring 'I@rIN K6% 2 +earrings 'I@rINz Kj% 2 +ears I@z Kj% 1 +earshot 'I@S0t L@% 2 +earth 3T H0$,L@% 16A,15B +earth-closet '3T-kl0zIt K6$ 3 +earth-closets '3T-kl0zIts Kj$ 3 +earthed 3Tt Hc$,Hd% 16A,15B +earthen '3Tn OA% 2 +earthenware 'eDnwe@R L@% 3 +earthier '3TI@R Or% 3 +earthiest '3TIIst Os% 3 +earthing '3TIN Hb$ 26A,15B +earthly '3TlI OA% 2 +earthnut '3TnVt K6$ 2 +earthnuts '3TnVts Kj$ 2 +earthquake '3TkweIk K6% 2 +earthquakes '3TkweIks Kj% 2 +earths 3Ts Ha$ 16A,15B +earthwork '3Tw3k K6% 2 +earthworks '3Tw3ks Kj% 2 +earthworm '3Tw3m K6% 2 +earthworms '3Tw3mz Kj% 2 +earthy '3TI OD% 2 +earwax 'I@w&ks L@% 2 +earwig 'I@wIg K6% 2 +earwigs 'I@wIgz Kj% 2 +ease iz J2%,L@% 12A,2C,6A,14,15A,15B +eased izd Jc%,Jd% 12A,2C,6A,14,15A,15B +easel 'izl K6% 2 +easels 'izlz Kj% 2 +eases 'izIz Ja% 22A,2C,6A,14,15A,15B +easier 'izI@R Or% 3 +easiest 'izIIst Os% 3 +easily 'iz@lI Pu% 3 +easing 'izIN Jb% 22A,2C,6A,14,15A,15B +east ist L@%,Pu% 1 +easterly 'ist@lI OA%,Pu% 3 +eastern 'ist@n OA% 2 +easternmost 'ist@nm@Ust OA% 3 +eastward 'istw@d OA%,Pu% 2 +eastwards 'istw@dz Pu% 2 +easy 'izI OD%,Pu% 2 +easygoing ,izI'g@UIN OA% 4 +eat it J5% 12A,2C,3A,4A,6A,15B +eatable 'it@bl K6%,OA% 3 +eatables 'it@blz Kj% 3 +eaten 'itn Jd% 22A,2C,3A,4A,6A,15B +eater 'it@R K6% 2 +eaters 'it@z Kj% 2 +eating 'itIN Jb% 22A,2C,3A,4A,6A,15B +eating-apple 'itIN-&pl K6% 4 +eating-apples 'itIN-&plz Kj% 4 +eating-house 'itIN-haUs K6% 3 +eating-houses 'itIN-haUzIz Kj% 4 +eats its Ja%,Kj% 12A,2C,3A,4A,6A,15B +eau de Cologne ,@U d@ k@'l@Un L@% 4 +eau-de-vie ,@U-d@-'vi L@$ 3 +eaves ivz Kj% 1 +eavesdrop 'ivzdr0p I4% 22A,3A +eavesdropped 'ivzdr0pt Ic%,Id% 22A,3A +eavesdropper 'ivzdr0p@R K6$ 3 +eavesdroppers 'ivzdr0p@z Kj$ 3 +eavesdropping 'ivzdr0pIN Ib% 32A,3A +eavesdrops 'ivzdr0ps Ia$ 22A,3A +ebb eb I0%,K6% 12A,2C +ebbed ebd Ic%,Id% 12A,2C +ebbing 'ebIN Ib% 22A,2C +ebbs ebz Ia%,Kj% 12A,2C +ebbtide eb'taId K6% 2 +ebbtides eb'taIdz Kj% 2 +ebonite 'eb@naIt L@$ 3 +ebony 'eb@nI L@%,OA% 3 +ebullience I'bVlI@ns L@% 4 +ebullient I'bVlI@nt OA% 4 +ebulliently I'bVlI@ntlI Pu% 5 +eccentric ek'sentrIk K6%,OA% 3 +eccentricities ,eksen'trIsItIz Mj% 5 +eccentricity ,eksen'trIsItI M8% 5 +eccentrics ek'sentrIks Kj% 3 +ecclesiastic I,klizI'&stIk K6% 5 +ecclesiastical I,klisI'&stIkl OA% 6 +ecclesiastically I,klisI'&stIklI Pu% 6 +ecclesiastics I,klizI'&stIks Kj% 5 +echelon 'eS@l0n K6$ 3 +echelons 'eS@l0nz Kj% 3 +echo 'ek@U J0%,M7% 22A,2C,6A,15B +echo-sounder 'ek@U-saUnd@R K6% 4 +echo-sounders 'ek@U-saUnd@z Kj% 4 +echo-sounding 'ek@U-saUndIN K6% 4 +echo-soundings 'ek@U-saUndINz Kj% 4 +echoed 'ek@Ud Jc%,Jd% 22A,2C,6A,15B +echoes 'ek@Uz Mj% 2 +echoing 'ek@UIN Jb% 32A,2C,6A,15B +echos 'ek@Uz Ja% 22A,2C,6A,15B +eclectic I'klektIk OA% 3 +eclecticism I'klektIsIz@m L@% 5 +eclipse I'klIps H2%,K6% 26A +eclipsed I'klIpst Hc%,Hd% 26A +eclipses I'klIpsIz Ha%,Kj% 36A +eclipsing I'klIpsIN Hb% 36A +ecliptic I'klIptIk Ki$ 3 +ecological ,ik@'l0dZIkl OA% 5 +ecologically ,ik@'l0dZIklI Pu% 5 +ecologist i'k0l@dZIst K6% 4 +ecologists i'k0l@dZIsts Kj% 4 +ecology i'k0l@dZI L@% 4 +economic ,ik@'n0mIk OA% 4 +economical ,ik@'n0mIkl OA% 5 +economically ,ik@'n0mIklI Pu% 5 +economics ,ik@'n0mIks Lk% 4 +economies I'k0n@mIz Mj% 4 +economist I'k0n@mIst K6% 4 +economists I'k0n@mIsts Kj% 4 +economize I'k0n@maIz J2% 42A,3A,6A +economized I'k0n@maIzd Jc%,Jd% 42A,3A,6A +economizes I'k0n@maIzIz Ja% 52A,3A,6A +economizing I'k0n@maIzIN Jb% 52A,3A,6A +economy I'k0n@mI M8% 4 +ecosystem 'ik@UsIst@m K6% 4 +ecosystems 'ik@UsIst@mz Kj% 4 +ecstasies 'ekst@sIz Mj% 3 +ecstasy 'ekst@sI M8% 3 +ecstatic ek'st&tIk OA% 3 +ecstatically ek'st&tIklI Pu% 4 +ectoplasm 'ekt@pl&z@m L@$ 4 +ecumenical ,ikju'menIkl OA% 5 +eczema 'eksIm@ L@% 3 +ed ed Y~% 1 +eddied 'edId Ic%,Id% 22A,2C +eddies 'edIz Ia%,Kj% 22A,2C +eddy 'edI I3%,K8% 22A,2C +eddying 'edIIN Ib% 32A,2C +edelweiss 'eIdlvaIs L@$ 3 +edge edZ J2%,K6% 12C,6A,14,15A,15B +edged edZd Jc%,Jd% 12C,6A,14,15A,15B +edges 'edZIz Ja%,Kj% 22C,6A,14,15A,15B +edgeways 'edZweIz Pu% 2 +edgewise 'edZwaIz Pu% 2 +edgier 'edZI@R Or% 3 +edgiest 'edZIIst Os% 3 +edging 'edZIN Jb%,M6% 22C,6A,14,15A,15B +edging-shears 'edZIN-SI@z Kj% 3 +edgings 'edZINz Mj$ 2 +edgy 'edZI OD% 2 +edibility ,edI'bIlItI L@% 5 +edible 'edIbl K6%,OA% 3 +edibles 'edIblz Kj% 3 +edict 'idIkt K6% 2 +edicts 'idIkts Kj% 2 +edification ,edIfI'keISn L@% 5 +edifice 'edIfIs K6% 3 +edifices 'edIfIsIz Kj% 4 +edified 'edIfaId Hc%,Hd% 36A +edifies 'edIfaIz Ha% 36A +edify 'edIfaI H3% 36A +edifying 'edIfaIIN Hb% 46A +edit 'edIt H0% 26A +edited 'edItId Hc%,Hd% 36A +editing 'edItIN Hb% 36A +edition I'dISn K6% 3 +editions I'dISnz Kj% 3 +editor 'edIt@R K6% 3 +editorial ,edI'tOrI@l K6%,OA% 5 +editorials ,edI'tOrI@lz Kj% 5 +editors 'edIt@z Kj% 3 +edits 'edIts Ha% 26A +educate 'edZUkeIt H2% 36A,15A,16A +educated 'edZUkeItId Hc%,Hd% 46A,15A,16A +educates 'edZUkeIts Ha% 36A,15A,16A +educating 'edZUkeItIN Hb% 46A,15A,16A +education ,edZU'keISn L@% 4 +educational ,edZU'keIS@nl OA% 5 +educationalist ,edZU'keISn@lIst K6$ 5 +educationalists ,edZU'keISn@lIsts Kj$ 5 +educationally ,edZU'keIS@n@lI Pu% 6 +educationist IdjU'keIS@nIst K6$ 5 +educationists IdjU'keIS@nIsts Kj$ 5 +educator 'edZUkeIt@R K6% 4 +educators 'edZUkeIt@z Kj% 4 +educe I'djus H2$ 26A +educed I'djust Hc$,Hd$ 26A +educes I'djusIz Ha$ 36A +educing I'djusIN Hb$ 36A +eel il K6% 1 +eels ilz Kj% 1 +eerie 'I@rI OB% 2 +eerier 'I@rI@R Or% 3 +eeriest 'I@rIIst Os% 3 +eerily 'I@r@lI Pu% 3 +eeriness 'I@rIn@s L@% 3 +eery 'I@rI OD% 3 +eff ef I0$ 1 +efface I'feIs H2$ 26A +effaced I'feIst Hc%,Hd% 26A +effacement I'feIsm@nt L@% 3 +effaces I'feIsIz Ha% 36A +effacing I'feIsIN Hb% 36A +effect I'fekt H0%,M6% 26A +effected I'fektId Hc%,Hd% 36A +effecting I'fektIN Hb% 36A +effective I'fektIv OA% 3 +effectively I'fektIvlI Pu% 4 +effectiveness I'fektIvn@s L@% 4 +effects I'fekts Ha%,Mj% 26A +effectual I'fektSU@l OA% 4 +effectuality I,fektSU'&lItI L@$ 6 +effectually I'fektSU@lI Pu$ 5 +effectualness I'fektSU@ln@s L@$ 5 +effed eft Ic$,Id$ 1 +effeminacy I'femIn@sI L@% 5 +effeminate I'femIn@t OA% 4 +effendi e'fendI K6$ 3 +effendis e'fendIz Kj$ 3 +effervesce ,ef@'ves I2% 32A +effervesced ,ef@'vest Ic%,Id% 32A +effervescence ,ef@'vesns L@% 4 +effervescent ,ef@'vesnt OA% 4 +effervesces ,ef@'vesIz Ia% 42A +effervescing ,ef@'vesIN Ib% 42A +effete I'fit OA% 2 +effeteness I'fitn@s L@$ 3 +efficacious ,efI'keIS@s OA% 4 +efficaciously ,efI'keIS@slI Pu$ 5 +efficacy 'efIk@sI L@% 4 +efficiency I'fISnsI L@% 4 +efficient I'fISnt OA% 3 +efficiently I'fISntlI Pu% 4 +effigies 'efIdZIz Kj% 3 +effigy 'efIdZI K8% 3 +effing 'efIN Ib$ 2 +efflorescence ,efl@'resns L@$ 4 +efflorescent ,efl@'resnt OA$ 4 +effluent 'eflU@nt M6% 3 +effluents 'eflU@nts Mj% 3 +efflux 'eflVks M7$ 2 +effluxes 'eflVksIz Mj$ 3 +effort 'ef@t M6% 2 +effortless 'ef@tl@s OA% 3 +effortlessly 'ef@tl@slI Pu% 4 +efforts 'ef@ts Mj% 2 +effronteries I'frVnt@rIz Mj$ 4 +effrontery I'frVnt@rI M8% 4 +effs efs Ia$ 1 +effulgence I'fVldZ@ns L@$ 3 +effulgent I'fVldZ@nt OA$ 3 +effusion I'fjuZn M6% 3 +effusions I'fjuZnz Mj% 3 +effusive I'fjusIv OA% 3 +effusively I'fjusIvlI Pu% 4 +effusiveness I'fjusIvn@s L@% 4 +eft eft K6$ 1 +efts efts Kj$ 1 +eg ,i'dZi Y~% 2 +egalitarian I,g&lI'te@rI@n K6$,OA% 6 +egalitarianism I,g&lI'te@rI@nIz@m L@% 8 +egalitarians I,g&lI'te@rI@nz Kj$ 6 +egg eg H0%,M6% 115B +egg-beater 'eg-bit@R K6% 3 +egg-beaters 'eg-bit@z Kj% 3 +egg-cup 'eg-kVp K6% 2 +egg-cups 'eg-kVps Kj% 2 +egg-whisk 'eg-wIsk K6% 2 +egg-whisks 'eg-wIsks Kj% 2 +egged egd Hc%,Hd% 115B +egghead 'eghed K6% 2 +eggheads 'eghedz Kj% 2 +egging 'egIN Hb% 215B +eggplant 'egplAnt M6% 2 +eggplants 'egplAnts Mj% 2 +eggs egz Ha%,Mj% 115B +eggshake 'egSeIk K6% 2 +eggshakes 'egSeIks Kj% 2 +eggshell 'egSel K6% 2 +eggshells 'egSelz Kj% 2 +eglantine 'egl@ntaIn L@$ 3 +ego 'eg@U K6% 2 +egocentric ,eg@U'sentrIk OA% 4 +egoism 'eg@UIz@m L@% 4 +egoist 'eg@UIst K6% 3 +egoistic ,eg@U'IstIk OA% 4 +egoistical ,eg@U'IstIk@l OA% 5 +egoists 'eg@UIsts Kj% 3 +egos 'eg@Uz Kj% 2 +egotism 'eg@UtIz@m L@% 4 +egotist 'eg@tIst K6% 3 +egotistic ,eg@'tIstIk OA% 4 +egotistically ,eg@'tIstIklI Pu% 5 +egotists 'eg@tIsts Kj% 3 +egotrip 'ig@UtrIp I4$,K6% 3 +egotripped 'ig@UtrIpt Ic$,Id$ 3 +egotripping 'ig@UtrIpIN Ib$ 4 +egotrips 'ig@UtrIps Ia$,Kj% 3 +egregious I'gridZI@s OA$ 3 +egress 'igres M7$ 2 +egresses 'igresIz Mj$ 3 +egret 'igret K6$ 2 +egrets 'igrets Kj$ 2 +eh eI W-$ 1 +eiderdown 'aId@daUn K6% 3 +eiderdowns 'aId@daUnz Kj% 3 +eight eIt K6%,OA% 1 +eighteen ,eI'tin K6%,OA% 2 +eighteens ,eI'tinz Kj% 2 +eighteenth ,eI'tinT K6%,OA% 2 +eighteenths ,eI'tinTs Kj% 2 +eighth eItT K6%,OA% 1 +eighths eItTs Kj% 1 +eighties 'eItIz Kj% 2 +eightieth 'eItI@T K6%,OA% 3 +eightieths 'eItI@Ts Kj% 3 +eightpence 'eItp@ns K6% 2 +eightpences 'eItp@nsIz Kj% 3 +eightpenny 'eItp@nI OA% 3 +eights eIts Kj% 1 +eightsome 'eIts@m K6% 2 +eightsomes 'eIts@mz Kj$ 2 +eighty 'eItI K8%,OA% 2 +eisteddfod ,aI'steDv0d K6% 3 +eisteddfods ,aI'steDv0dz Kj% 3 +either 'aID@R OA*,Pu*,Qx*,V-* 2 +ejaculate I'dZ&kjUleIt H2% 46A +ejaculated I'dZ&kjUleItId Hc%,Hd% 56A +ejaculates I'dZ&kjUleIts Ha% 46A +ejaculating I'dZ&kjUleItIN Hb% 56A +ejaculation I,dZ&kjU'leISn K6% 5 +ejaculations I,dZ&kjU'leISnz Kj% 5 +eject I'dZekt J0% 22A,6A,14 +ejected I'dZektId Jc%,Jd% 32A,6A,14 +ejecting I'dZektIN Jb% 32A,6A,14 +ejection I'dZekSn K6% 3 +ejections I'dZekSnz Kj% 3 +ejector I'dZekt@R K6% 3 +ejector-seat I'dZekt@-sit K6% 4 +ejector-seats I'dZekt@-sits Kj% 4 +ejectors I'dZekt@z Kj% 3 +ejects I'dZekts Ja% 22A,6A,14 +eke ik H2% 115B +eked ikt Hc%,Hd% 115B +ekes iks Ha% 115B +eking 'ikIN Hb% 215B +elaborate I'l&b@r@t OA% 4 +elaborate I'l&b@reIt H2% 46A +elaborated I'l&b@reItId Hc%,Hd% 56A +elaborately I'l&b@r@tlI Pu% 5 +elaborateness I'l&b@r@tn@s L@% 5 +elaborates I'l&b@reIts Ha% 46A +elaborating I'l&b@reItIN Hb% 56A +elaboration I,l&b@'reISn M6% 5 +elaborations I,l&b@'reISnz Mj% 5 +eland 'il@nd K6$ 2 +elands 'il@ndz Kj$ 2 +elapse I'l&ps I2% 22A +elapsed I'l&pst Ic%,Id% 22A +elapses I'l&psIz Ia% 32A +elapsing I'l&psIN Ib% 32A +elastic I'l&stIk L@%,OA% 3 +elasticities ,el&'stIsItIz Mj$ 5 +elasticity ,el&'stIsItI M8% 5 +elasticized I'l&stIsaIzd OA% 4 +elate I'leIt H2$ 26A +elated I'leItId Hc$,Hd% 36A +elates I'leIts Ha$ 26A +elating I'leItIN Hb% 36A +elation I'leISn L@% 3 +elbow 'elb@U H0%,K6% 26A,14,15B +elbowed 'elb@Ud Hc%,Hd% 26A,14,15B +elbowing 'elb@UIN Hb% 36A,14,15B +elbows 'elb@Uz Ha%,Kj% 26A,14,15B +elder 'eld@R K6%,Or% 2 +elderly 'eld@lI OA% 3 +elders 'eld@z Kj% 2 +eldest 'eldIst Os% 2 +elect I'lekt H0%,OA% 26A,7A,14,23,25 +elected I'lektId Hc%,Hd% 36A,7A,14,23,25 +electing I'lektIN Hb% 36A,7A,14,23,25 +election I'lekSn M6% 3 +electioneering I,lekS@'nI@rIN L@% 5 +elections I'lekSnz Mj% 3 +elective I'lektIv OA$ 3 +elector I'lekt@R K6% 3 +electoral I'lekt@r@l OA% 4 +electorate I'lekt@r@t K6% 4 +electorates I'lekt@r@ts Kj% 4 +electors I'lekt@z Kj% 3 +electric I'lektrIk OA% 3 +electrical I'lektrIkl OA% 4 +electrically I'lektrIklI Pu% 4 +electrician I,lek'trISn K6% 4 +electricians I,lek'trISnz Kj% 4 +electricity I,lek'trIsItI L@% 5 +electrification I,lektrIfI'keISn L@% 6 +electrified I'lektrIfaId Hc%,Hd% 46A +electrifies I'lektrIfaIz Ha% 46A +electrify I'lektrIfaI H3% 46A +electrifying I'lektrIfaIIN Hb% 56A +electro- I'lektr@U- U-% 3 +electrocardiogram I,lektr@U'kAdI@Ugr&m K6% 7 +electrocardiograms I,lektr@U'kAdI@Ugr&mz Kj% 7 +electrocardiograph I,lektr@U'kAdI@Ugr&f K6% 7 +electrocardiographs I,lektr@U'kAdI@Ugr&fs Kj% 7 +electrochemistry I,lektr@U'kemIstrI L@% 6 +electrocute I'lektr@kjut H2% 46A +electrocuted I'lektr@kjutId Hc%,Hd% 56A +electrocutes I'lektr@kjuts Ha% 46A +electrocuting I'lektr@kjutIN Hb% 56A +electrocution I,lektr@'kjuSn M6% 5 +electrocutions I,lektr@'kjuSnz Mj$ 5 +electrode I'lektr@Ud K6% 3 +electrodes I'lektr@Udz Kj% 3 +electrolysis I,lek'tr0l@sIs L@% 5 +electrolyte I'lektr@laIt K6% 4 +electrolytes I'lektr@laIts Kj% 4 +electromagnet I'lektr@U,m&gnIt K6% 5 +electromagnetic I,lektr@Um&g'netIk OA% 6 +electromagnetism I,lektr@U'm&gnItIz@m L@% 7 +electromagnets I'lektr@U,m&gnIts Kj% 5 +electron I'lektr0n K6% 3 +electronic ,Ilek'tr0nIk OA% 4 +electronically ,Ilek'tr0nIklI Pu% 5 +electronics ,Ilek'tr0nIks Lk% 4 +electrons I'lektr0nz Kj% 3 +electroplate I'lektr@pleIt H2$,L@$ 4 +electroplated I'lektr@pleItId Hc$,Hd% 5 +electroplates I'lektr@pleIts Ha$ 4 +electroplating I'lektr@pleItIN Hb$ 5 +electrostatic I,lektr@U'st&tIk OA% 5 +elects I'lekts Ha% 26A,7A,14,23,25 +eleemosynary ,elIi'm0sIn@rI OA$ 7 +elegance 'elIg@ns L@% 3 +elegant 'elIg@nt OA% 3 +elegantly 'elIg@ntlI Pu% 4 +elegiac ,elI'dZaI@k OA$ 4 +elegiacs ,elI'dZaI@ks Kj$ 4 +elegies 'el@dZIz Kj% 3 +elegy 'el@dZI K8% 3 +element 'elIm@nt K6% 3 +elemental ,elI'mentl OA% 4 +elementarily ,elI'ment@r@lI Pu$ 6 +elementary ,elI'ment@rI OA% 5 +elements 'elIm@nts Kj% 3 +elephant 'elIf@nt K6% 3 +elephantiasis ,elIf@n'taI@sIs L@% 6 +elephantine ,elI'f&ntaIn OA% 4 +elephants 'elIf@nts Kj% 3 +elevate 'elIveIt H2% 36A,14 +elevated 'elIveItId Hc%,Hd% 46A,14 +elevates 'elIveIts Ha% 36A,14 +elevating 'elIveItIN Hb% 46A,14 +elevation ,elI'veISn M6% 4 +elevations ,elI'veISnz Mj% 4 +elevator 'elIveIt@R K6% 4 +elevators 'elIveIt@z Kj% 4 +eleven I'levn K6%,OA% 3 +elevens I'levnz Kj% 3 +elevenses I'levnzIz Kj% 4 +eleventh I'levnT K6%,OA% 3 +elevenths I'levnTs Kj% 3 +elf elf Ki% 1 +elfin 'elfIn OA% 2 +elfish 'elfIS OA% 2 +elicit I'lIsIt H0% 36A,14 +elicitation I,lIsI'teISn K6$ 5 +elicitations I,lIsI'teISnz Kj$ 5 +elicited I'lIsItId Hc%,Hd% 46A,14 +eliciting I'lIsItIN Hb% 46A,14 +elicits I'lIsIts Ha% 36A,14 +elide I'laId H2$ 26A +elided I'laIdId Hc$,Hd% 36A +elides I'laIdz Ha$ 26A +eliding I'laIdIN Hb$ 36A +eligibility ,elIdZ@'bIlItI L@% 6 +eligible 'elIdZ@bl OA% 4 +eliminate I'lImIneIt H2% 46A,14 +eliminated I'lImIneItId Hc%,Hd% 56A,14 +eliminates I'lImIneIts Ha% 46A,14 +eliminating I'lImIneItIN Hb% 56A,14 +elimination I,lImI'neISn M6% 5 +eliminations I,lImI'neISnz Mj$ 5 +elision I'lIZn M6$ 3 +elisions I'lIZnz Mj$ 3 +elitism I'litIz@m L@% 4 +elitist I'litIst K6% 3 +elitists I'litIsts Kj$ 3 +elixir I'lIks@R K6% 3 +elixirs I'lIks@z Kj$ 3 +elk elk K6$ 1 +elks elks Kj$ 1 +ellipse I'lIps K6% 2 +ellipses I'lIpsIz Kj% 3 +ellipses I'lIpsiz Kj$ 3 +ellipsis I'lIpsIs Mi$ 3 +elliptic I'lIptIk OA% 3 +elliptical I'lIptIkl OA% 4 +elm elm M6% 1 +elms elmz Mj% 1 +elocution ,el@'kjuSn L@% 4 +elocutionary ,Il@'kjuS@n@rI OA$ 6 +elocutionist ,el@'kjuS@nIst K6% 5 +elocutionists ,el@'kjuS@nIsts Kj% 5 +elongate 'il0NgeIt J2% 32A,6A +elongated 'il0NgeItId Jc%,Jd% 42A,6A +elongates 'il0NgeIts Ja% 32A,6A +elongating 'il0NgeItIN Jb% 42A,6A +elongation ,il0N'geISn M6% 4 +elongations ,il0N'geISnz Mj% 4 +elope I'l@Up I2% 22A,2C,3A +eloped I'l@Upt Ic%,Id% 22A,2C,3A +elopement I'l@Upm@nt K6% 3 +elopements I'l@Upm@nts Kj% 3 +elopes I'l@Ups Ia% 22A,2C,3A +eloping I'l@UpIN Ib% 32A,2C,3A +eloquence 'el@kw@ns L@% 3 +eloquent 'el@kw@nt OA% 3 +eloquently 'el@kw@ntlI Pu% 4 +else els Pu% 1 +elsewhere ,els'we@R Pu% 2 +elucidate I'lusIdeIt H2% 46A +elucidated I'lusIdeItId Hc%,Hd% 56A +elucidates I'lusIdeIts Ha% 46A +elucidating I'lusIdeItIN Hb% 56A +elucidation I,lusI'deISn K6% 5 +elucidations I,lusI'deISnz Kj$ 5 +elude I'lud H2% 26A +eluded I'ludId Hc%,Hd% 36A +eludes I'ludz Ha% 26A +eluding I'ludIN Hb% 36A +elusive I'lusIv OA% 3 +elver 'elv@R K6$ 2 +elvers 'elv@z Kj$ 2 +elves elvz Kj% 1 +elvish 'elvIS OA$ 2 +emaciate I'meISIeIt H2$ 46A +emaciated I'meISIeItId Hc$,Hd% 56A +emaciates I'meISIeIts Ha$ 46A +emaciating I'meISIeItIN Hb$ 56A +emaciation I,meIsI'eISn L@% 5 +emanate 'em@neIt I2% 33A +emanated 'em@neItId Ic%,Id% 43A +emanates 'em@neIts Ia% 33A +emanating 'em@neItIN Ib% 43A +emanation ,em@'neISn M6% 4 +emanations ,em@'neISnz Mj% 4 +emancipate I'm&nsIpeIt H2% 46A,14 +emancipated I'm&nsIpeItId Hc%,Hd% 56A,14 +emancipates I'm&nsIpeIts Ha% 46A,14 +emancipating I'm&nsIpeItIN Hb% 56A,14 +emancipation I,m&nsI'peISn L@% 5 +emasculate I'm&skjUleIt H2% 46A +emasculated I'm&skjUleItId Hc%,Hd% 56A +emasculates I'm&skjUleIts Ha% 46A +emasculating I'm&skjUleItIN Hb% 56A +emasculation I,m&skjU'leISn M6% 5 +emasculations I,m&skjU'leISnz Mj$ 5 +embalm Im'bAm H0% 26A +embalmed Im'bAmd Hc%,Hd% 26A +embalming Im'bAmIN Hb% 36A +embalmment Im'bAm@nt K6% 3 +embalmments Im'bAm@nts Kj% 3 +embalms Im'bAmz Ha% 26A +embankment Im'b&Nkm@nt K6% 3 +embankments Im'b&Nkm@nts Kj% 3 +embargo Im'bAg@U H0$,K7% 36A +embargoed Im'bAg@Ud Hc$,Hd% 36A +embargoes Im'bAg@Uz Kj% 3 +embargoing Im'bAg@UIN Hb$ 46A +embargos Im'bAg@Uz Ha$ 36A +embark Im'bAk J0% 22A,2C,3A,6A +embarkation ,embA'keISn M6% 4 +embarkations ,embA'keISnz Mj% 4 +embarked Im'bAkt Jc%,Jd% 22A,2C,3A,6A +embarking Im'bAkIN Jb% 32A,2C,3A,6A +embarks Im'bAks Ja% 22A,2C,3A,6A +embarrass Im'b&r@s H1% 36A +embarrassed Im'b&r@st Hc%,Hd% 36A +embarrasses Im'b&r@sIz Ha% 46A +embarrassing Im'b&r@sIN Hb%,OA% 46A +embarrassingly Im'b&r@sINlI Pu% 5 +embarrassment Im'b&r@sm@nt M6% 4 +embarrassments Im'b&r@sm@nts Mj% 4 +embassies 'emb@sIz Kj% 3 +embassy 'emb@sI K8% 3 +embattled Im'b&tld OA% 3 +embed Im'bed H4% 26A,14 +embedded Im'bedId Hc%,Hd% 36A,14 +embedding Im'bedIN Hb% 36A,14 +embeds Im'bedz Ha% 26A,14 +embellish Im'belIS H1% 36A,14 +embellished Im'belISt Hc%,Hd% 36A,14 +embellishes Im'belISIz Ha% 46A,14 +embellishing Im'belISIN Hb% 46A,14 +embellishment Im'belISm@nt M6% 4 +embellishments Im'belISm@nts Mj% 4 +ember 'emb@R K6% 2 +embers 'emb@z Kj% 2 +embezzle Im'bezl H2% 36A +embezzled Im'bezld Hc%,Hd% 36A +embezzlement Im'bezlm@nt M6% 4 +embezzlements Im'bezlm@nts Mj% 4 +embezzles Im'bezlz Ha% 36A +embezzling Im'bezlIN Hb% 36A +embitter Im'bIt@R H0% 36A +embittered Im'bIt@d Hc%,Hd% 36A +embittering Im'bIt@rIN Hb% 46A +embitterment Im'bIt@m@nt K6% 4 +embitterments Im'bIt@m@nts Kj$ 4 +embitters Im'bIt@z Ha% 36A +emblazon Im'bleIzn H0% 36A,14 +emblazoned Im'bleIznd Hc%,Hd% 36A,14 +emblazoning Im'bleIznIN Hb% 46A,14 +emblazons Im'bleIznz Ha% 36A,14 +emblem 'embl@m K6% 2 +emblematic ,embl@'m&tIk OA% 4 +emblems 'embl@mz Kj% 2 +embodied Im'b0dId Hc%,Hd% 36A,14 +embodies Im'b0dIz Ha% 36A,14 +embodiment Im'b0dIm@nt K6% 4 +embodiments Im'b0dIm@nts Kj$ 4 +embody Im'b0dI H3% 36A,14 +embodying Im'b0dIIN Hb% 46A,14 +embolden Im'b@Uld@n H0% 36A,17 +emboldened Im'b@Uld@nd Hc%,Hd% 36A,17 +emboldening Im'b@Uld@nIN Hb% 46A,17 +emboldens Im'b@Uld@nz Ha% 36A,17 +embonpoint ,0mb0n'pwAN L@$,Op$ 3 +emboss Im'b0s H1% 26A,14 +embossed Im'b0st Hc%,Hd% 26A,14 +embosses Im'b0sIz Ha% 36A,14 +embossing Im'b0sIN Hb% 36A,14 +embrace Im'breIs J2%,K6% 22A,6A +embraced Im'breIst Jc%,Jd% 22A,6A +embraces Im'breIsIz Ja%,Kj% 32A,6A +embracing Im'breIsIN Jb% 32A,6A +embrasure Im'breIZ@R K6$ 3 +embrasures Im'breIZ@z Kj$ 3 +embrocation ,embr@'keISn L@% 4 +embroider Im'broId@R J0% 32A,6A +embroidered Im'broId@d Jc%,Jd% 32A,6A +embroidering Im'broId@rIN Jb% 42A,6A +embroiders Im'broId@z Ja% 32A,6A +embroidery Im'broId@rI L@% 4 +embroil Im'broIl H0% 26A,14 +embroiled Im'broIld Hc%,Hd% 26A,14 +embroiling Im'broIlIN Hb% 36A,14 +embroils Im'broIlz Ha% 26A,14 +embryo 'embrI@U K6% 3 +embryonic ,embrI'0nIk OA% 4 +embryos 'embrI@Uz Kj% 3 +emeer e'mI@R K6$ 2 +emeers e'mI@z Kj$ 2 +emend I'mend H0$ 26A +emendation ,imen'deISn M6% 4 +emendations ,imen'deISnz Mj% 4 +emended I'mendId Hc$,Hd$ 36A +emending I'mendIN Hb$ 36A +emends I'mendz Ha$ 26A +emerald 'em@r@ld K6% 3 +emeralds 'em@r@ldz Kj% 3 +emerge I'm3dZ I2% 22A,3A +emerged I'm3dZd Ic%,Id% 22A,3A +emergence I'm3dZ@ns L@% 3 +emergencies I'm3dZ@nsIz Mj% 4 +emergency I'm3dZ@nsI M8% 4 +emergent I'm3dZ@nt OA% 3 +emerges I'm3dZIz Ia% 32A,3A +emerging I'm3dZIN Ib% 32A,3A +emeritus I'merIt@s OA$ 4 +emery 'em@rI L@% 3 +emetic I'metIk K6$ 3 +emetics I'metIks Kj$ 3 +emigrant 'emIgr@nt K6% 3 +emigrants 'emIgr@nts Kj% 3 +emigrate 'emIgreIt I2% 32A,3A +emigrated 'emIgreItId Ic%,Id% 42A,3A +emigrates 'emIgreIts Ia% 32A,3A +emigrating 'emIgreItIN Ib% 42A,3A +emigration ,emI'greISn M6% 4 +emigrations ,emI'greISnz Mj$ 4 +eminence 'emIn@ns M6% 3 +eminences 'emIn@nsIz Mj$ 4 +eminent 'emIn@nt OA% 3 +eminently 'emIn@ntlI Pu% 4 +emir e'mI@R K6$ 2 +emirate e'mI@reIt K6% 3 +emirates e'mI@reIts Kj% 3 +emirs e'mI@z Kj$ 2 +emissaries 'emIs@rIz Kj% 4 +emissary 'emIs@rI K8% 4 +emission I'mISn M6% 3 +emissions I'mISnz Mj% 3 +emit I'mIt H4% 26A +emits I'mIts Ha% 26A +emitted I'mItId Hc%,Hd% 36A +emitting I'mItIN Hb% 36A +emolument I'm0ljUm@nt K6% 4 +emoluments I'm0ljUm@nts Kj% 4 +emotion I'm@USn M6% 3 +emotional I'm@US@nl OA% 4 +emotionally I'm@US@n@lI Pu% 5 +emotionless I'm@USnl@s OA% 4 +emotions I'm@USnz Mj% 3 +emotive I'm@UtIv OA% 3 +empale Im'peIl H2$ 2 +empaled Im'peIld Hc$,Hd$ 2 +empales Im'peIlz Ha$ 2 +empaling Im'peIlIN Hb$ 3 +empanel Im'p&nl H4$ 36A +empanelled Im'p&nld Hc$,Hd$ 36A +empanelling Im'p&n@lIN Hb$ 46A +empanels Im'p&nlz Ha$ 36A +empathy 'emp@TI L@% 3 +emperor 'emp@r@R K6% 3 +emperors 'emp@r@z Kj% 3 +emphases 'emf@siz Kj$ 3 +emphasis 'emf@sIs Mi% 3 +emphasize 'emf@saIz H2% 36A +emphasized 'emf@saIzd Hc%,Hd% 36A +emphasizes 'emf@saIzIz Ha% 46A +emphasizing 'emf@saIzIN Hb% 46A +emphatic Im'f&tIk OA% 3 +emphatically Im'f&tIklI Pu% 4 +empire 'empaI@R M6% 2 +empires 'empaI@z Mj% 2 +empiric Im'pIrIk OA$ 3 +empirical Im'pIrIkl OA% 4 +empirically Im'pIrIklI Pu% 4 +empiricism Im'pIrIsIz@m L@% 5 +empiricist Im'pIrIsIst K6% 4 +empiricists Im'pIrIsIsts Kj% 4 +emplacement Im'pleIsm@nt K6% 3 +emplacements Im'pleIsm@nts Kj% 3 +emplane em'pleIn J2$ 22A,6A +emplaned em'pleInd Jc$,Jd$ 22A,6A +emplanes em'pleInz Ja$ 22A,6A +emplaning em'pleInIN Jb$ 32A,6A +employ Im'ploI H0%,K6% 26A,14,16B +employable Im'ploI@bl OA% 4 +employed Im'ploId Hc%,Hd% 26A,14,16B +employee ,emploI'i K6% 3 +employees ,emploI'iz Kj% 3 +employer Im'ploI@R K6% 3 +employers Im'ploI@z Kj% 3 +employing Im'ploIIN Hb% 36A,14,16B +employment Im'ploIm@nt L@% 3 +employs Im'ploIz Ha%,Kj% 26A,14,16B +emporium Im'pOrI@m K6% 4 +emporiums Im'pOrI@mz Kj% 4 +empower Im'paU@R H0% 317 +empowered Im'paU@d Hc%,Hd% 317 +empowering Im'paU@rIN Hb% 417 +empowers Im'paU@z Ha% 317 +empress 'emprIs K7% 2 +empresses 'emprIsIz Kj% 3 +emptied 'emptId Jc%,Jd% 22A,2C,3A,6A,15B +emptier 'emptI@R Or% 3 +empties 'emptIz Ja%,Kj% 22A,2C,3A,6A,15B +emptiest 'emptIIst Os% 3 +emptiness 'emptIn@s L@% 3 +empty 'emptI J3%,K8%,OD% 22A,2C,3A,6A,15B +empty-handed ,emptI-'h&ndId OA% 4 +empty-headed ,emptI-'hedId OA% 4 +emptying 'emptIIN Jb% 32A,2C,3A,6A,15B +empurpled Im'p3pld OA$ 3 +empyrean ,empaI'ri@n Ki$,OA$ 4 +emu 'imju K6% 2 +emulate 'emjUleIt H2% 36A +emulated 'emjUleItId Hc%,Hd% 46A +emulates 'emjUleIts Ha% 36A +emulating 'emjUleItIN Hb% 46A +emulation ,emjU'leISn L@% 4 +emulous 'emjUl@s OA$ 3 +emulously 'emjUl@slI Pu$ 4 +emulsified I'mVlsIfaId Hc%,Hd% 46A +emulsifies I'mVlsIfaIz Ha% 46A +emulsify I'mVlsIfaI H3% 46A +emulsifying I'mVlsIfaIIN Hb% 56A +emulsion I'mVlSn M6% 3 +emulsions I'mVlSnz Mj$ 3 +emus 'imjuz Kj% 2 +en clair ,0n 'kle@R Pu$ 2 +en famille ,0n f&'mi Pu% 3 +en masse ,0n 'm&s Pu% 2 +en route ,0n 'rut Pu% 2 +enable I'neIbl H2% 317 +enabled I'neIbld Hc%,Hd% 317 +enables I'neIblz Ha% 317 +enabling I'neIblIN Hb%,OA% 317 +enact I'n&kt H0% 26A,9 +enacted I'n&ktId Hc%,Hd% 36A,9 +enacting I'n&ktIN Hb% 36A,9 +enactment I'n&ktm@nt M6% 3 +enactments I'n&ktm@nts Mj% 3 +enacts I'n&kts Ha% 26A,9 +enamel I'n&ml H4%,L@% 3 +enamelled I'n&mld Hc%,Hd% 3 +enamelling I'n&m@lIN Hb% 4 +enamels I'n&mlz Ha% 3 +enamour I'n&m@R H0$ 36A +enamoured I'n&m@d Hc$,Hd% 36A +enamouring I'n&m@rIN Hb$ 46A +enamours I'n&m@z Ha$ 36A +enc enk Y~% 1 +encamp In'k&mp J0% 22A,6A +encamped In'k&mpt Jc%,Jd% 22A,6A +encamping In'k&mpIN Jb% 32A,6A +encampment In'k&mpm@nt K6% 3 +encampments In'k&mpm@nts Kj% 3 +encamps In'k&mps Ja% 22A,6A +encase In'keIs H2% 26A,14 +encased In'keIst Hc%,Hd% 26A,14 +encases In'keIsIz Ha% 36A,14 +encasing In'keIsIN Hb% 36A,14 +encaustic en'kOstIk OA$ 3 +encephalitis ,enkef@'laItIs L@% 5 +enchain In'tSeIn H0$ 26A +enchained In'tSeInd Hc$,Hd$ 26A +enchaining In'tSeInIN Hb$ 36A +enchains In'tSeInz Ha$ 26A +enchant In'tSAnt H0% 26A +enchanted In'tSAntId Hc%,Hd% 36A +enchanter In'tSAnt@R K6% 3 +enchanters In'tSAnt@z Kj% 3 +enchanting In'tSAntIN Hb% 36A +enchantingly In'tSAntINlI Pu% 4 +enchantment In'tSAntm@nt M6% 3 +enchantments In'tSAntm@nts Mj% 3 +enchantress In'tSAntrIs K7% 3 +enchantresses In'tSAntrIsIz Kj% 4 +enchants In'tSAnts Ha% 26A +encircle In's3kl H2% 36A +encircled In's3kld Hc%,Hd% 36A +encirclement In's3klm@nt K6% 4 +encirclements In's3klm@nts Kj% 4 +encircles In's3klz Ha% 36A +encircling In's3klIN Hb% 36A +enclave 'enkleIv K6% 2 +enclaves 'enkleIvz Kj% 2 +enclose In'kl@Uz H2% 26A,14 +enclosed In'kl@Uzd Hc%,Hd% 26A,14 +encloses In'kl@UzIz Ha% 36A,14 +enclosing In'kl@UzIN Hb% 36A,14 +enclosure In'kl@UZ@R M6% 3 +enclosures In'kl@UZ@z Mj% 3 +encode In'k@Ud H2% 26A +encoded In'k@UdId Hc%,Hd% 36A +encodes In'k@Udz Ha% 26A +encoding In'k@UdIN Hb% 36A +encomium In'k@UmI@m K6$ 4 +encomiums In'k@UmI@mz Kj$ 4 +encompass In'kVmp@s H1% 36A +encompassed In'kVmp@st Hc%,Hd% 36A +encompasses In'kVmp@sIz Ha% 46A +encompassing In'kVmp@sIN Hb% 46A +encore '0NkOR H2$,K6%,W-% 2 +encored '0NkOd Hc$,Hd$ 2 +encores '0NkOz Ha$,Kj% 2 +encoring '0NkOrIN Hb$ 3 +encounter In'kaUnt@R H0%,K6% 36A +encountered In'kaUnt@d Hc%,Hd% 36A +encountering In'kaUnt@rIN Hb% 46A +encounters In'kaUnt@z Ha%,Kj% 36A +encourage In'kVrIdZ H2% 36A,14,17 +encouraged In'kVrIdZd Hc%,Hd% 36A,14,17 +encouragement In'kVrIdZm@nt M6% 4 +encouragements In'kVrIdZm@nts Mj% 4 +encourages In'kVrIdZIz Ha% 46A,14,17 +encouraging In'kVrIdZIN Hb% 46A,14,17 +encouragingly In'kVrIdZINlI Pu% 5 +encroach In'kr@UtS I1% 23A +encroached In'kr@UtSt Ic%,Id% 23A +encroaches In'kr@UtSIz Ia% 33A +encroaching In'kr@UtSIN Ib% 33A +encroachment In'kr@UtSm@nt M6% 3 +encroachments In'kr@UtSm@nts Mj% 3 +encrust In'krVst J0$ 22A,6A,14 +encrusted In'krVstId Jc$,Jd% 32A,6A,14 +encrusting In'krVstIN Jb$ 32A,6A,14 +encrusts In'krVsts Ja$ 22A,6A,14 +encumber In'kVmb@R H0$ 36A,14 +encumbered In'kVmb@d Hc$,Hd% 36A,14 +encumbering In'kVmb@rIN Hb$ 46A,14 +encumbers In'kVmb@z Ha$ 36A,14 +encumbrance In'kVmbr@ns K6% 3 +encumbrances In'kVmbr@nsIz Kj% 4 +encyclical In'sIklIkl K6%,OA% 4 +encyclicals In'sIklIklz Kj% 4 +encyclopaedia In,saIkl@'pidI@ K6% 6 +encyclopaedias In,saIkl@'pidI@z Kj% 6 +encyclopaedic In,saIkl@'pidIk OA% 5 +encyclopedia In,saIkl@'pidI@ K6% 5 +encyclopedias In,saIkl@'pidI@z Kj% 5 +encyclopedic In,saIkl@'pidIk OA% 5 +end end J0%,K6% 12A,2C,3A,6A,15B +end-all 'end-Ol Ki% 2 +endanger In'deIndZ@R H0% 36A +endangered In'deIndZ@d Hc%,Hd% 36A +endangering In'deIndZ@rIN Hb% 46A +endangers In'deIndZ@z Ha% 36A +endear In'dI@R H0% 214 +endeared In'dI@d Hc%,Hd% 214 +endearing In'dI@rIN Hb% 314 +endearingly In'dI@rINlI Pu% 4 +endearment In'dI@m@nt M6% 3 +endearments In'dI@m@nts Mj% 3 +endears In'dI@z Ha% 214 +endeavour In'dev@R I0%,K6% 34A +endeavoured In'dev@d Ic%,Id% 34A +endeavouring In'dev@rIN Ib% 44A +endeavours In'dev@z Ia%,Kj% 34A +ended 'endId Jc%,Jd% 22A,2C,3A,6A,15B +endemic en'demIk K6$,OA% 3 +endemics en'demIks Kj$ 3 +ending 'endIN Jb%,K6% 22A,2C,3A,6A,15B +endings 'endINz Kj% 2 +endive 'endIv M6% 2 +endives 'endIvz Mj$ 2 +endless 'endlIs OA% 2 +endlessly 'endlIslI Pu% 3 +endorse In'dOs H2% 26A +endorsed In'dOst Hc%,Hd% 26A +endorsement In'dOsm@nt M6% 3 +endorsements In'dOsm@nts Mj% 3 +endorses In'dOsIz Ha% 36A +endorsing In'dOsIN Hb% 36A +endow In'daU H0% 26A,14 +endowed In'daUd Hc%,Hd% 26A,14 +endowing In'daUIN Hb% 36A,14 +endowment In'daUm@nt M6% 3 +endowments In'daUm@nts Mj% 3 +endows In'daUz Ha% 26A,14 +endpapers 'endpeIp@z Kj% 3 +ends endz Ja%,Kj% 12A,2C,3A,6A,15B +endue In'dju H2$ 214 +endued In'djud Hc$,Hd$ 214 +endues In'djuz Ha$ 214 +enduing In'djuIN Hb$ 314 +endurable In'djur@bl OA% 4 +endurance In'djU@r@ns L@% 3 +endure In'djU@R J2% 22A,2C,6A,6D,17 +endured In'djU@d Jc%,Jd% 22A,2C,6A,6D,17 +endures In'djU@z Ja% 22A,2C,6A,6D,17 +enduring In'djU@rIN Jb%,OA% 32A,2C,6A,6D,17 +enduringly In'djU@rINlI Pu% 4 +endways 'endweIz Pu% 2 +endwise 'endwaIz Pu% 2 +enema 'enIm@ K6$ 3 +enemas 'enIm@z Kj$ 3 +enemies 'en@mIz Kj% 3 +enemy 'en@mI K8% 3 +energetic ,en@'dZetIk OA% 4 +energetically ,en@'dZetIklI Pu% 5 +energies 'en@dZIz Mj% 3 +energy 'en@dZI M8% 3 +enervate 'en@veIt H2% 36A +enervated 'en@veItId Hc%,Hd% 46A +enervates 'en@veIts Ha% 36A +enervating 'en@veItIN Hb% 46A +enfant terrible ,0nf0n te'ribl Ki% 5 +enfants terribles ,0nf0n te'ribl Kj% 5 +enfeeble In'fibl H2% 36A +enfeebled In'fibld Hc%,Hd% 36A +enfeebles In'fiblz Ha% 36A +enfeebling In'fiblIN Hb% 36A +enfold In'f@Uld H0% 26A,14 +enfolded In'f@UldId Hc%,Hd% 36A,14 +enfolding In'f@UldIN Hb% 36A,14 +enfolds In'f@Uldz Ha% 26A,14 +enforce In'fOs H2% 26A,14 +enforceable In'fOs@bl OA% 4 +enforced In'fOst Hc%,Hd% 26A,14 +enforcement In'fOsm@nt L@% 3 +enforces In'fOsIz Ha% 36A,14 +enforcing In'fOsIN Hb% 36A,14 +enfranchise In'fr&ntSaIz H2% 36A +enfranchised In'fr&ntSaIzd Hc%,Hd% 36A +enfranchisement In'fr&ntSIzm@nt K6% 4 +enfranchisements In'fr&ntSIzm@nts Kj% 4 +enfranchises In'fr&ntSaIzIz Ha% 46A +enfranchising In'fr&ntSaIzIN Hb% 46A +engage In'geIdZ J2% 22A,3A,6A,7A,9,14,16B,17 +engaged In'geIdZd Jc%,Jd% 22A,3A,6A,7A,9,14,16B,17 +engagement In'geIdZm@nt M6% 3 +engagements In'geIdZm@nts Mj% 3 +engages In'geIdZIz Ja% 32A,3A,6A,7A,9,14,16B,17 +engaging In'geIdZIN Jb%,OA% 32A,3A,6A,7A,9,14,16B,17 +engagingly In'geIdZINlI Pu% 4 +engender In'dZend@R H0% 36A +engendered In'dZend@d Hc%,Hd% 36A +engendering In'dZend@rIN Hb% 46A +engenders In'dZend@z Ha% 36A +engine 'endZIn K6% 2 +engine-driver 'endZIn-draIv@R K6% 4 +engine-drivers 'endZIn-draIv@z Kj% 4 +engineer ,endZI'nI@R J0%,K6% 32A,6A +engineered ,endZI'nI@d Jc%,Jd% 32A,6A +engineering ,endZI'nI@rIN Jb%,L@% 42A,6A +engineers ,endZI'nI@z Ja%,Kj% 32A,6A +engines 'endZInz Kj% 2 +engraft In'grAft H0$ 26A,14 +engrafted In'grAftId Hc$,Hd$ 36A,14 +engrafting In'grAftIN Hb$ 36A,14 +engrafts In'grAfts Ha$ 26A,14 +engrave In'greIv H2% 26A,14 +engraved In'greIvd Hc%,Hd% 26A,14 +engraver In'greIv@R K6% 3 +engravers In'greIv@z Kj% 3 +engraves In'greIvz Ha% 26A,14 +engraving In'greIvIN Hb%,M6% 36A,14 +engravings In'greIvINz Mj% 3 +engross In'gr@Us H1% 26A +engrossed In'gr@Ust Hc%,Hd% 26A +engrosses In'gr@UsIz Ha% 36A +engrossing In'gr@UsIN Hb% 36A +engulf In'gVlf H0% 26A +engulfed In'gVlft Hc%,Hd% 26A +engulfing In'gVlfIN Hb% 36A +engulfs In'gVlfs Ha% 26A +enhance In'hAns H2% 26A +enhanced In'hAnst Hc%,Hd% 26A +enhancement In'hAnsm@nt M6% 3 +enhancements In'hAnsm@nts Mj% 3 +enhances In'hAnsIz Ha% 36A +enhancing In'hAnsIN Hb% 36A +enigma I'nIgm@ K6% 3 +enigmas I'nIgm@z Kj% 3 +enigmatic ,enIg'm&tIk OA% 4 +enigmatically ,enIg'm&tIklI Pu% 5 +enjoin In'dZoIn H0% 26A,9,14,17 +enjoined In'dZoInd Hc%,Hd% 26A,9,14,17 +enjoining In'dZoInIN Hb% 36A,9,14,17 +enjoins In'dZoInz Ha% 26A,9,14,17 +enjoy In'dZoI H0% 26A,6C +enjoyable In'dZoI@bl OA% 4 +enjoyably In'dZoI@blI Pu% 4 +enjoyed In'dZoId Hc%,Hd% 26A,6C +enjoying In'dZoIIN Hb% 36A,6C +enjoyment In'dZoIm@nt M6% 3 +enjoyments In'dZoIm@nts Mj% 3 +enjoys In'dZoIz Ha% 26A,6C +enkindle In'kIndl H2$ 36A +enkindled In'kIndld Hc$,Hd$ 36A +enkindles In'kIndlz Ha$ 36A +enkindling In'kIndlIN Hb$ 36A +enlarge In'lAdZ J2% 22A,3A,6A +enlarged In'lAdZd Jc%,Jd% 22A,3A,6A +enlargement In'lAdZm@nt M6% 3 +enlargements In'lAdZm@nts Mj% 3 +enlarges In'lAdZIz Ja% 32A,3A,6A +enlarging In'lAdZIN Jb% 32A,3A,6A +enlighten In'laItn H0% 36A,14 +enlightened In'laItnd Hc%,Hd%,OA% 36A,14 +enlightening In'laItnIN Hb% 46A,14 +enlightenment In'laItnm@nt L@% 4 +enlightens In'laItnz Ha% 36A,14 +enlist In'lIst J0% 22A,2C,6A,14,16B +enlisted In'lIstId Jc%,Jd% 32A,2C,6A,14,16B +enlisting In'lIstIN Jb% 32A,2C,6A,14,16B +enlistment In'lIstm@nt M6% 3 +enlistments In'lIstm@nts Mj$ 3 +enlists In'lIsts Ja% 22A,2C,6A,14,16B +enliven In'laIvn H0% 36A +enlivened In'laIvnd Hc%,Hd% 36A +enlivening In'laIvnIN Hb% 46A +enlivens In'laIvnz Ha% 36A +enmesh In'meS H1% 26A,14 +enmeshed In'meSt Hc$,Hd% 26A,14 +enmeshes In'meSIz Ha$ 36A,14 +enmeshing In'meSIN Hb% 36A,14 +enmities 'enmItIz Mj% 3 +enmity 'enmItI M8% 3 +ennoble I'n@Ubl H2% 36A +ennobled I'n@Ubld Hc%,Hd% 36A +ennoblement I'n@Ublm@nt K6% 4 +ennoblements I'n@Ublm@nts Kj$ 4 +ennobles I'n@Ublz Ha% 36A +ennobling I'n@UblIN Hb% 36A +ennui 0n'wi M6% 2 +ennuis 0n'wiz Mj$ 2 +enormities I'nOmItIz Mj% 4 +enormity I'nOmItI M8% 4 +enormous I'nOm@s OA% 3 +enormously I'nOm@slI Pu% 4 +enormousness I'nOm@sn@s L@$ 4 +enough I'nVf L9*,OA*,Pu* 2 +enplane en'pleIn J2$ 2 +enplaned en'pleInd Jc$,Jd$ 2 +enplanes en'pleInz Ja$ 2 +enplaning en'pleInIN Jb$ 3 +enquire In'kwaI@R J2% 22A,3A,6A,8,10,14 +enquired In'kwaI@d Jc%,Jd% 22A,3A,6A,8,10,14 +enquirer In'kwaI@r@R K6% 3 +enquirers In'kwaI@r@z Kj% 3 +enquires In'kwaI@z Ja% 22A,3A,6A,8,10,14 +enquiries In'kwaI@rIz Mj% 3 +enquiring In'kwaI@rIN Jb% 32A,3A,6A,8,10,14 +enquiringly In'kwaI@rINlI Pu% 4 +enquiry In'kwaI@rI M8% 3 +enrage In'reIdZ H2% 26A +enraged In'reIdZd Hc%,Hd% 26A +enrages In'reIdZIz Ha% 36A +enraging In'reIdZIN Hb$ 36A +enrapture In'r&ptS@R H2% 36A +enraptured In'r&ptS@d Hc%,Hd% 36A +enraptures In'r&ptS@z Ha% 36A +enrapturing In'r&ptS@rIN Hb% 46A +enrich In'rItS H1% 26A,14 +enriched In'rItSt Hc%,Hd% 26A,14 +enriches In'rItSIz Ha% 36A,14 +enriching In'rItSIN Hb% 36A,14 +enrichment In'rItSm@nt L@% 3 +enrol In'r@Ul J0% 22A,2C,6A,14,16B +enroled In'r@Uld Jc%,Jd% 22A,2C,6A,14,16B +enroling In'r@UlIN Jb% 32A,2C,6A,14,16B +enroll In'r@Ul J0$ 22A,2C,6A,14,16B +enrolled In'r@Uld Jc$,Jd$ 22A,2C,6A,14,16B +enrolling In'r@UlIN Jb$ 32A,2C,6A,14,16B +enrolls In'r@Ulz Ja$ 22A,2C,6A,14,16B +enrolment In'r@Ulm@nt M6% 3 +enrolments In'r@Ulm@nts Mj% 3 +enrols In'r@Ulz Ja% 22A,2C,6A,14,16B +ensconce In'sk0ns H2% 214 +ensconced In'sk0nst Hc%,Hd% 214 +ensconces In'sk0nsIz Ha% 314 +ensconcing In'sk0nsIN Hb% 314 +ensemble 0n's0mbl K6% 3 +ensembles 0n's0mblz Kj% 3 +enshrine In'SraIn H2% 26A,14 +enshrined In'SraInd Hc%,Hd% 26A,14 +enshrines In'SraInz Ha% 26A,14 +enshrining In'SraInIN Hb% 36A,14 +enshroud In'SraUd H0$ 26A +enshrouded In'SraUdId Hc$,Hd$ 36A +enshrouding In'SraUdIN Hb$ 36A +enshrouds In'SraUdz Ha$ 26A +ensign 'ens@n K6% 2 +ensigns 'ens@nz Kj% 2 +ensilage 'ensIlIdZ L@$ 3 +enslave In'sleIv H2% 26A +enslaved In'sleIvd Hc%,Hd% 26A +enslavement In'sleIvm@nt K6% 3 +enslavements In'sleIvm@nts Kj$ 3 +enslaves In'sleIvz Ha% 26A +enslaving In'sleIvIN Hb% 36A +ensnare In'sne@R H2% 26A,14 +ensnared In'sne@d Hc%,Hd% 26A,14 +ensnares In'sne@z Ha% 26A,14 +ensnaring In'sne@rIN Hb% 36A,14 +ensue In'sju I2% 22A,3A +ensued In'sjud Ic%,Id% 22A,3A +ensues In'sjuz Ia% 22A,3A +ensuing In'sjuIN Ib% 32A,3A +ensure In'SU@R J2% 23A,9,12A,13A,14 +ensured In'SU@d Jc%,Jd% 23A,9,12A,13A,14 +ensures In'SU@z Ja% 23A,9,12A,13A,14 +ensuring In'SU@rIN Jb% 33A,9,12A,13A,14 +entail In'teIl H0%,M6% 26A,14 +entailed In'teIld Hc%,Hd% 26A,14 +entailing In'teIlIN Hb% 36A,14 +entails In'teIlz Ha%,Mj% 26A,14 +entangle In't&Ngl H2% 36A,14,15A +entangled In't&Ngld Hc%,Hd% 36A,14,15A +entanglement In't&Nglm@nt M6% 4 +entanglements In't&Nglm@nts Mj% 4 +entangles In't&Nglz Ha% 36A,14,15A +entangling In't&NglIN Hb% 36A,14,15A +entente 0n't0nt K6$ 2 +entente cordiale 0n,t0nt kOdI'Al Ki$ 5 +ententes 0n't0nts Kj$ 2 +enter 'ent@R J0% 22A,3A,6A,14,15B +entered 'ent@d Jc%,Jd% 22A,3A,6A,14,15B +enteric en'terIk OA$ 3 +entering 'ent@rIN Jb% 32A,3A,6A,14,15B +enteritis ,ent@'raItIs L@% 4 +enterprise 'ent@praIz M6% 3 +enterprises 'ent@praIzIz Mj% 4 +enterprising 'ent@praIzIN OA% 4 +enterprisingly 'ent@praIzINlI Pu% 5 +enters 'ent@z Ja% 22A,3A,6A,14,15B +entertain ,ent@'teIn H0% 32A,6A,14 +entertained ,ent@'teInd Hc%,Hd% 32A,6A,14 +entertainer ,ent@'teIn@R K6% 4 +entertainers ,ent@'teIn@z Kj% 4 +entertaining ,ent@'teInIN Hb%,OA% 42A,6A,14 +entertainingly ,ent@'teInINlI Pu% 5 +entertainment ,ent@'teInm@nt M6% 4 +entertainments ,ent@'teInm@nts Mj% 4 +entertains ,ent@'teInz Ha% 32A,6A,14 +enthral In'TrOl H4% 26A +enthrall In'TrOl H0$ 26A +enthralled In'TrOld Hc%,Hd% 26A +enthralling In'TrOlIN Hb% 36A +enthralls In'TrOlz Ha$ 26A +enthrals In'TrOlz Ha% 26A +enthrone In'Tr@Un H2% 26A +enthroned In'Tr@Und Hc%,Hd% 26A +enthronement In'Tr@Unm@nt K6% 3 +enthronements In'Tr@Unm@nts Kj$ 3 +enthrones In'Tr@Unz Ha% 26A +enthroning In'Tr@UnIN Hb% 36A +enthuse In'Tjuz I2% 23A +enthused In'Tjuzd Ic%,Id% 23A +enthuses In'TjuzIz Ia% 33A +enthusiasm In'TjuzI&z@m L@% 5 +enthusiast In'TjuzI&st K6% 4 +enthusiastic In,TjuzI'&stIk OA% 5 +enthusiastically In,TjuzI'&stIklI Pu% 6 +enthusiasts In'TjuzI&sts Kj% 4 +enthusing In'TjuzIN Ib% 33A +entice In'taIs H2% 26A,15A,17 +enticed In'taIst Hc%,Hd% 26A,15A,17 +enticement In'taIsm@nt M6% 3 +enticements In'taIsm@nts Mj% 3 +entices In'taIsIz Ha% 36A,15A,17 +enticing In'taIsIN Hb% 36A,15A,17 +entire In'taI@R OA% 2 +entirely In'taI@lI Pu% 3 +entirety In'taI@rItI L@% 4 +entities 'entItIz Mj% 3 +entitle In'taItl H2% 314,17 +entitled In'taItld Hc%,Hd% 314,17 +entitlement In'taItlm@nt K6% 4 +entitlements In'taItlm@nts Kj% 4 +entitles In'taItlz Ha% 314,17 +entitling In'taItlIN Hb% 314,17 +entity 'entItI M8% 3 +entomb In'tum H0% 26A +entombed In'tumd Hc%,Hd% 26A +entombing In'tumIN Hb% 36A +entombs In'tumz Ha% 26A +entomological ,ent@m@'l0dZIkl OA$ 6 +entomologist ,ent@'m0l@dZIst K6% 5 +entomologists ,ent@'m0l@dZIsts Kj% 5 +entomology ,ent@'m0l@dZI L@% 5 +entourage ,0ntU'rAZ Ki% 3 +entr'acte '0ntr&kt K6$ 2 +entr'actes '0ntr&kts Kj$ 2 +entr_ee '0ntreI M6$ 2 +entr_ees '0ntreIz Mj$ 2 +entrails 'entreIlz Kj% 2 +entrain en'treIn J0$ 22A,6A +entrained en'treInd Jc$,Jd$ 22A,6A +entraining en'treInIN Jb$ 32A,6A +entrains en'treInz Ja$ 22A,6A +entrance 'entr@ns M6% 2 +entrance In'trAns H2% 26A +entrance-fee 'entr@ns-fi K6% 3 +entrance-fees 'entr@ns-fiz Kj% 3 +entrance-money 'entr@ns-mVnI L@% 4 +entranced In'trAnst Hc%,Hd% 26A +entrances 'entr@nsIz Mj% 3 +entrances In'trAnsIz Ha% 36A +entrancing In'trAnsIN Hb% 36A +entrant 'entr@nt K6% 2 +entrants 'entr@nts Kj% 2 +entrap In'tr&p H4% 26A +entrapped In'tr&pt Hc%,Hd% 26A +entrapping In'tr&pIN Hb% 36A +entraps In'tr&ps Ha% 26A +entreat In'trit H0% 26A,14,17 +entreated In'tritId Hc%,Hd% 36A,14,17 +entreaties In'tritIz Mj% 3 +entreating In'tritIN Hb% 36A,14,17 +entreatingly In'tritINlI Pu% 4 +entreats In'trits Ha% 26A,14,17 +entreaty In'tritI M8% 3 +entrench In'trentS H1$ 26A +entrenched In'trentSt Hc$,Hd% 26A +entrenches In'trentSIz Ha$ 36A +entrenching In'trentSIN Hb$ 36A +entrenchment In'trentSm@nt K6$ 3 +entrenchments In'trentSm@nts Kj$ 3 +entrepot '0ntr@p@U K6$ 3 +entrepots '0ntr@p@Uz Kj$ 3 +entrepreneur ,0ntr@pr@'n3R K6% 4 +entrepreneurial ,0ntr@pr@'n3rI@l OA% 6 +entrepreneurs ,0ntr@pr@'n3z Kj% 4 +entries 'entrIz Mj% 2 +entrust In'trVst H0% 214 +entrusted In'trVstId Hc%,Hd% 314 +entrusting In'trVstIN Hb% 314 +entrusts In'trVsts Ha% 214 +entry 'entrI M8% 2 +entwine In'twaIn H2% 26A,14 +entwined In'twaInd Hc%,Hd% 26A,14 +entwines In'twaInz Ha% 26A,14 +entwining In'twaInIN Hb% 36A,14 +enumerate I'njum@reIt H2% 46A +enumerated I'njum@reItId Hc%,Hd% 56A +enumerates I'njum@reIts Ha% 46A +enumerating I'njum@reItIN Hb% 56A +enumeration I,njum@'reISn M6% 5 +enumerations I,njum@'reISnz Mj% 5 +enunciate I'nVnsIeIt J2% 42A,6A +enunciated I'nVnsIeItId Jc%,Jd% 52A,6A +enunciates I'nVnsIeIts Ja% 42A,6A +enunciating I'nVnsIeItIN Jb% 52A,6A +enunciation I,nVnsI'eISn K6% 5 +enunciations I,nVnsI'eISnz Kj$ 5 +envelop In'vel@p H0% 36A,14 +envelope 'env@l@Up K6% 3 +enveloped In'vel@pt Hc%,Hd% 36A,14 +envelopes 'env@l@Ups Kj% 3 +enveloping In'vel@pIN Hb% 46A,14 +envelopment In'vel@pm@nt K6$ 4 +envelopments In'vel@pm@nts Kj$ 4 +envelops In'vel@ps Ha% 36A,14 +envenom In'ven@m H0$ 36A +envenomed In'ven@md Hc$,Hd$ 36A +envenoming In'ven@mIN Hb$ 46A +envenoms In'ven@mz Ha$ 36A +enviable 'envI@bl OA% 4 +envied 'envId Hc%,Hd% 26A,12C +envies 'envIz Ha% 26A,12C +envious 'envI@s OA% 3 +enviously 'envI@slI Pu% 4 +environ In'vaI@r@n H0$ 36A +environed In'vaI@r@nd Hc$,Hd$ 36A +environing In'vaI@r@nIN Hb$ 46A +environment In'vaI@r@nm@nt M6% 4 +environmental In,vaI@r@n'mentl OA% 5 +environmentally In,vaI@r@n'ment@lI Pu% 6 +environments In'vaI@r@nm@nts Mj% 4 +environs In'vaI@r@nz Ha$,Kj% 36A +envisage In'vIzIdZ H2% 36A +envisaged In'vIzIdZd Hc%,Hd% 36A +envisages In'vIzIdZIz Ha% 46A +envisaging In'vIzIdZIN Hb% 46A +envoi 'envoI K6$ 2 +envois 'envoIz Kj$ 2 +envoy 'envoI K6% 2 +envoys 'envoIz Kj% 2 +envy 'envI H3%,L@% 26A,12C +envying 'envIIN Hb% 36A,12C +enwrap In'r&p H4$ 2 +enwrapped In'r&pt Hc%,Hd% 2 +enwrapping In'r&pIN Hb$ 3 +enwraps In'r&ps Ha$ 2 +enzyme 'enzaIm K6% 2 +enzymes 'enzaImz Kj% 2 +eon 'i@n K6$ 2 +eons 'i@nz Kj$ 2 +epaulet 'ep@let K6$ 3 +epaulets 'ep@lets Kj$ 3 +epaulette 'ep@let K6$ 3 +epaulettes 'ep@lets Kj$ 3 +ephemeral I'fem@r@l OA% 4 +epic 'epIk K6%,OA% 2 +epicentre 'epIsent@R K6% 4 +epicentres 'epIsent@z Kj$ 4 +epics 'epIks Kj% 2 +epicure 'epIkjU@R K6$ 3 +epicurean ,epIkjU'ri@n K6$,OA$ 5 +epicureans ,epIkjU'ri@nz Kj$ 5 +epicures 'epIkjU@z Kj$ 3 +epidemic ,epI'demIk K6%,OA% 4 +epidemics ,epI'demIks Kj% 4 +epidemiologist ,epIdimI'0l@dZIst K6% 7 +epidemiologists ,epIdimI'0l@dZIsts Kj% 7 +epidemiology ,epIdimI'0l@dZI L@% 7 +epidermis ,epI'd3mIs L@% 4 +epidiascope ,epI'daI@sk@Up K6$ 5 +epidiascopes ,epI'daI@sk@Ups Kj$ 5 +epiglottis ,epI'gl0tIs K7$ 4 +epiglottises ,epI'gl0tIsIz Kj$ 5 +epigram 'epIgr&m K6% 3 +epigrammatic ,epIgr@'m&tIk OA% 5 +epigrams 'epIgr&mz Kj% 3 +epilepsy 'epIlepsI L@% 4 +epileptic ,epI'leptIk K6%,OA% 4 +epileptics ,epI'leptIks Kj% 4 +epilogue 'epIl0g K6% 3 +epilogues 'epIl0gz Kj% 3 +episcopal I'pIsk@pl OA% 4 +episcopalian I,pIsk@'peIlI@n K6$,OA% 6 +episcopalians I,pIsk@'peIlI@nz Kj$ 6 +episode 'epIs@Ud K6% 3 +episodes 'epIs@Udz Kj% 3 +episodic ,epI's0dIk OA$ 4 +epistle I'pIsl K6% 3 +epistles I'pIslz Kj% 3 +epistolary I'pIst@l@rI OA$ 5 +epitaph 'epItAf K6% 3 +epitaphs 'epItAfs Kj% 3 +epithet 'epITet K6% 3 +epithets 'epITets Kj% 3 +epitome I'pIt@mI K6% 3 +epitomes I'pIt@mIz Kj$ 3 +epitomize I'pIt@maIz H2% 46A +epitomized I'pIt@maIzd Hc%,Hd% 46A +epitomizes I'pIt@maIzIz Ha% 56A +epitomizing I'pIt@maIzIN Hb% 56A +epoch 'ip0k K6% 2 +epoch-making 'ip0k-meIkIN OA% 4 +epochs 'ip0ks Kj% 2 +equable 'ekw@bl OA% 3 +equably 'ekw@blI Pu% 3 +equal 'ikw@l H4%,K6%,OA% 26A,15A +equalitarian I,kw0lI'te@rI@n K6$ 6 +equalitarians I,kw0lI'te@rI@nz Kj$ 6 +equality I'kw0lItI L@% 4 +equalization ,ikw@laI'zeISn K6% 5 +equalizations ,ikw@laI'zeISnz Kj$ 5 +equalize 'ikw@laIz H2% 36A +equalized 'ikw@laIzd Hc%,Hd% 36A +equalizer 'ikw@laIz@R K6% 4 +equalizers 'ikw@laIz@z Kj% 4 +equalizes 'ikw@laIzIz Ha% 46A +equalizing 'ikw@laIzIN Hb% 46A +equalled 'ikw@ld Hc%,Hd% 26A,15A +equalling 'ikw@lIN Hb% 36A,15A +equally 'ikw@lI Pu% 3 +equals 'ikw@lz Ha%,Kj% 26A,15A +equanimity ,ekw@'nImItI L@% 5 +equate I'kweIt H2% 26A,14 +equated I'kweItId Hc%,Hd% 36A,14 +equates I'kweIts Ha% 26A,14 +equating I'kweItIN Hb% 36A,14 +equation I'kweIZn M6% 3 +equations I'kweIZnz Mj% 3 +equator I'kweIt@R K6% 3 +equatorial ,ekw@'tOrI@l OA% 5 +equators I'kweIt@z Kj$ 3 +equerries I'kwerIz Kj$ 3 +equerry I'kwerI K8$ 3 +equestrian I'kwestrI@n K6%,OA% 4 +equestrians I'kwestrI@nz Kj% 4 +equidistant ,ikwI'dIst@nt OA% 4 +equilateral ,ikwI'l&t@r@l OA% 5 +equilibrium ,ikwI'lIbrI@m L@% 5 +equine 'ekwaIn OA% 2 +equinoctial ,ikwI'n0kSl OA$ 4 +equinox 'ikwIn0ks K7% 3 +equinoxes 'ikwIn0ksIz Kj$ 4 +equip I'kwIp H4% 26A,14 +equipage 'ekwIpIdZ K6$ 3 +equipages 'ekwIpIdZIz Kj$ 4 +equipment I'kwIpm@nt L@% 3 +equipoise 'ekwIpoIz M6$ 3 +equipoises 'ekwIpoIzIz Mj$ 4 +equipped I'kwIpt Hc%,Hd% 26A,14 +equipping I'kwIpIN Hb% 36A,14 +equips I'kwIps Ha% 26A,14 +equitable 'ekwIt@bl OA% 4 +equitably 'ekwIt@blI Pu% 4 +equities 'ekwItIz Mj% 3 +equity 'ekwItI M8% 3 +equivalence I'kwIv@l@ns M6% 4 +equivalences I'kwIv@l@nsIz Mj$ 5 +equivalent I'kwIv@l@nt K6%,OA% 4 +equivalents I'kwIv@l@nts Kj% 4 +equivocal I'kwIv@kl OA% 4 +equivocation I,kwIv@'keISn M6% 5 +equivocations I,kwIv@'keISnz Mj$ 5 +era 'I@r@ K6% 2 +eradicate I'r&dIkeIt H2% 46A +eradicated I'r&dIkeItId Hc%,Hd% 56A +eradicates I'r&dIkeIts Ha% 46A +eradicating I'r&dIkeItIN Hb% 56A +eradication I,r&dI'keISn K6% 5 +eradications I,r&dI'keISnz Kj$ 5 +eras 'I@r@z Kj$ 2 +erase I'reIz H2% 26A +erased I'reIzd Hc%,Hd% 26A +eraser I'reIz@R K6% 3 +erasers I'reIz@z Kj% 3 +erases I'reIzIz Ha% 36A +erasing I'reIzIN Hb% 36A +erasure I'reIZ@R M6% 3 +erasures I'reIZ@z Mj% 3 +ere e@R Pu$,T-$ 1 +erect I'rekt H0%,OA% 26A +erected I'rektId Hc%,Hd% 36A +erectile I'rektaIl OA$ 3 +erecting I'rektIN Hb% 36A +erection I'rekSn M6% 3 +erections I'rekSnz Mj% 3 +erectly I'rektlI Pu% 3 +erectness I'rektn@s L@% 3 +erects I'rekts Ha% 26A +eremite 'erImaIt K6$ 3 +eremites 'erImaIts Kj$ 3 +erg 3g K6$ 1 +ergo '3g@U Pu$ 2 +ergonomics ,3g@'n0mIks Lk% 4 +ergs 3gz Kj$ 1 +ermine '3mIn L@$ 2 +erode I'r@Ud H2% 26A +eroded I'r@UdId Hc%,Hd% 36A +erodes I'r@Udz Ha% 26A +eroding I'r@UdIN Hb% 36A +erogenous I'r0dZ@n@s OA% 4 +erosion I'r@UZn L@% 3 +erosive I'r@UsIv OA$ 3 +erotic I'r0tIk OA% 3 +erotica I'r0tIk@ Kj% 4 +eroticism I'r0tIsIz@m L@% 5 +err 3R I0% 12A,2C +errand 'er@nd K6% 2 +errands 'er@ndz Kj% 2 +errant 'er@nt OA% 2 +errata e'rAt@ Kj% 3 +erratic I'r&tIk OA% 3 +erratically I'r&tIklI Pu% 4 +erratum e'rAt@m Ki% 3 +erred 3d Ic%,Id% 12A,2C +erring '3rIN Ib% 22A,2C +erroneous I'r@UnI@s OA% 4 +erroneously I'r@UnI@slI Pu% 5 +error 'er@R M6% 2 +errors 'er@z Mj% 2 +errs 3z Ia% 12A,2C +eructation ,irVk'teISn M6$ 4 +eructations ,irVk'teISnz Mj$ 4 +erudite 'erudaIt OA% 3 +eruditely 'erudaItlI Pu% 4 +erudition ,eru'dISn L@% 4 +erupt I'rVpt I0% 22A +erupted I'rVptId Ic%,Id% 32A +erupting I'rVptIN Ib% 32A +eruption I'rVpSn M6% 3 +eruptions I'rVpSnz Mj% 3 +erupts I'rVpts Ia% 22A +erysipelas ,erI'sIpIl@s L@$ 5 +escalate 'esk@leIt J2% 32A,6A +escalated 'esk@leItId Jc%,Jd% 42A,6A +escalates 'esk@leIts Ja% 32A,6A +escalating 'esk@leItIN Jb% 42A,6A +escalation ,esk@'leISn M6% 4 +escalations ,esk@'leISnz Mj% 4 +escalator 'esk@leIt@R K6% 4 +escalators 'esk@leIt@z Kj% 4 +escalope 'esk@l@Up K6% 3 +escalopes 'esk@l@Ups Kj% 3 +escapade ,esk@'peId K6% 3 +escapades ,esk@'peIdz Kj% 3 +escape I'skeIp J2%,M6% 22A,3A,6A,6C +escaped I'skeIpt Jc%,Jd% 22A,3A,6A,6C +escapee I,skeI'pi K6% 3 +escapees I,skeI'piz Kj% 3 +escapement I'skeIpm@nt K6$ 3 +escapements I'skeIpm@nts Kj$ 3 +escapes I'skeIps Ja%,Mj% 22A,3A,6A,6C +escaping I'skeIpIN Jb% 32A,3A,6A,6C +escapism Is'keIpIz@m L@% 4 +escapist Is'keIpIst K6% 3 +escapists Is'keIpIsts Kj% 3 +escapologist ,esk@'p0l@dZIst K6% 5 +escapologists ,esk@'p0l@dZIsts Kj% 5 +escarpment I'skApm@nt K6% 3 +escarpments I'skApm@nts Kj% 3 +eschatology ,esk@'t0l@dZI L@$ 5 +eschew I'stSu H0% 26A +eschewed I'stSud Hc%,Hd% 26A +eschewing I'stSuIN Hb% 36A +eschews I'stSuz Ha% 26A +escort 'eskOt K6% 2 +escort I'skOt H0% 26A,15B +escorted I'skOtId Hc%,Hd% 36A,15B +escorting I'skOtIN Hb% 36A,15B +escorts 'eskOts Kj% 2 +escorts I'skOts Ha% 26A,15B +escritoire ,eskrI'twAR K6$ 3 +escritoires ,eskrI'twAz Kj$ 3 +escudo Is'kjud@U K6$ 3 +escudos Is'kjud@Uz Kj$ 3 +escutcheon I'skVtS@n K6$ 3 +escutcheons I'skVtS@nz Kj$ 3 +esophagus i's0f@g@s K7$ 4 +esophaguses i's0f@g@sIz Kj$ 5 +esoteric ,es@U'terIk OA% 4 +espalier I'sp&lIeI K6$ 4 +espaliers I'sp&lIeIz Kj$ 4 +especial I'speSl OA% 3 +especially I'speS@lI Pu% 4 +espied I'spaId Hc%,Hd% 26A +espies I'spaIz Ha% 26A +espionage 'espI@nAZ L@% 3 +esplanade ,espl@'neId K6% 3 +esplanades ,espl@'neIdz Kj$ 3 +espousal I'spaUzl K6% 3 +espousals I'spaUzlz Kj$ 3 +espouse I'spaUz H2% 26A +espoused I'spaUzd Hc%,Hd% 26A +espouses I'spaUzIz Ha% 36A +espousing I'spaUzIN Hb% 36A +espresso e'spres@U K6% 3 +espressos e'spres@Uz Kj$ 3 +esprit e'spri L@% 2 +esprit de corps e,spri d@ 'kOR Ki$ 4 +espy I'spaI H3% 26A +espying I'spaIIN Hb% 36A +essay 'eseI K6% 2 +essay e'seI J0$ 24A,6A +essayed e'seId Jc$,Jd$ 24A,6A +essaying e'seIIN Jb$ 34A,6A +essayist 'eseIIst K6% 3 +essayists 'eseIIsts Kj% 3 +essays 'eseIz Kj% 2 +essays e'seIz Ja$ 24A,6A +essence 'esns M6% 2 +essences 'esnsIz Mj% 3 +essential I'senSl K6%,OA% 3 +essentially I'senS@lI Pu% 4 +essentials I'senSlz Kj% 3 +establish I'st&blIS H1% 36A,14,16B +established I'st&blISt Hc%,Hd% 36A,14,16B +establishes I'st&blISIz Ha% 46A,14,16B +establishing I'st&blISIN Hb% 46A,14,16B +establishment I'st&blISm@nt M6% 4 +establishments I'st&blISm@nts Mj% 4 +estaminet e'st&mIneI K6$ 4 +estaminets e'st&mIneIz Kj$ 4 +estate I'steIt M6% 2 +estates I'steIts Mj% 2 +esteem I'stim H0%,L@% 26A,25 +esteemed I'stimd Hc%,Hd% 26A,25 +esteeming I'stimIN Hb% 36A,25 +esteems I'stimz Ha% 26A,25 +esthete 'isTit K6$ 2 +esthetes 'isTits Kj$ 2 +esthetic is'TetIk L@$,OA$ 3 +esthetical is'TetIk@l OA$ 4 +esthetics is'TetIks Lk$ 3 +estimable 'estIm@bl OA% 4 +estimate 'estIm@t K6% 3 +estimate 'estImeIt J2% 33A,9,14 +estimated 'estImeItId Jc%,Jd% 43A,9,14 +estimates 'estIm@ts Kj% 3 +estimates 'estImeIts Ja% 33A,9,14 +estimating 'estImeItIN Jb% 43A,9,14 +estimation ,estI'meISn L@% 4 +estrange I'streIndZ H2$ 26A,14 +estranged I'streIndZd Hc$,Hd% 26A,14 +estrangement I'streIndZm@nt M6% 3 +estrangements I'streIndZm@nts Mj% 3 +estranges I'streIndZIz Ha$ 36A,14 +estranging I'streIndZIN Hb$ 36A,14 +estuaries 'estSU@rIz Kj% 4 +estuary 'estSU@rI K8% 4 +et al ,et '&l Y~% 2 +et cetera It 'set@r@ Z-$ 4 +et seq ,et 'sek Y~$ 2 +eta ,i,ti'eI Y>$ 3 +etc et'setr@ Y~% 3 +etch etS J1% 12A,6A +etched etSt Jc%,Jd% 12A,6A +etcher 'etS@R K6% 2 +etchers 'etS@z Kj% 2 +etches 'etSIz Ja% 22A,6A +etching 'etSIN Jb%,M6% 22A,6A +etchings 'etSINz Mj% 2 +etd ,i,ti'di Y>$ 3 +eternal I't3nl OA% 3 +eternally I't3n@lI Pu% 4 +eternities I't3nItIz Mj% 4 +eternity I't3nItI M8% 4 +ether 'iT@R L@$ 2 +ethereal I'TI@rI@l OA$ 4 +ethic 'eTIk Ki% 2 +ethical 'eTIkl OA% 3 +ethically 'eTIklI Pu% 3 +ethics 'eTIks Lk% 2 +ethnic 'eTnIk OA% 2 +ethnically 'eTnIklI Pu% 3 +ethnographer eT'n0gr@f@R K6% 4 +ethnographers eT'n0gr@f@z Kj% 4 +ethnographic ,eTn@'gr&fIk OA% 4 +ethnography eT'n0gr@fI L@% 4 +ethnological ,eTn@'l0dZIkl OA% 5 +ethnologist eT'n0l@dZIst K6% 4 +ethnologists eT'n0l@dZIsts Kj% 4 +ethnology eT'n0l@dZI L@% 4 +ethos 'iT0s Ki% 2 +ethyl 'eTIl M6$ 2 +ethyls 'eTIlz Mj$ 2 +etiologies ,itI'0l@dZIz Kj$ 5 +etiology ,itI'0l@dZI K8$ 5 +etiquette 'etIket L@% 3 +etymological ,etIm@'l0dZIkl OA% 6 +etymologies ,etI'm0l@dZIz Mj% 5 +etymologist ,etI'm0l@dZIst K6% 5 +etymologists ,etI'm0l@dZIsts Kj% 5 +etymology ,etI'm0l@dZI M8% 5 +eucalyptus ,juk@'lIpt@s K7% 4 +eucalyptuses ,juk@'lIpt@sIz Kj% 5 +eugenics ju'dZenIks Lk% 3 +eulogies 'jul@dZIz Mj% 3 +eulogist 'jul@dZIst K6$ 3 +eulogistic ,jul@'dZIstIk OA$ 4 +eulogists 'jul@dZIsts Kj$ 3 +eulogize 'jul@dZaIz H2% 36A +eulogized 'jul@dZaIzd Hc%,Hd% 36A +eulogizes 'jul@dZaIzIz Ha% 46A +eulogizing 'jul@dZaIzIN Hb% 46A +eulogy 'jul@dZI M8% 3 +eunuch 'jun@k K6% 2 +eunuchs 'jun@ks Kj% 2 +euphemism 'juf@mIz@m M6% 4 +euphemisms 'juf@mIz@mz Mj% 4 +euphemistic ,juf@'mIstIk OA% 4 +euphemistically ,juf@'mIstIklI Pu% 5 +euphonies 'juf@nIz Mj$ 3 +euphonium ju'f@UnI@m K6% 4 +euphoniums ju'f@UnI@mz Kj% 4 +euphony 'juf@nI M8$ 3 +euphoria ju'fOrI@ L@% 4 +euphoric ju'f0rIk OA% 3 +euphuism 'jufjuIz@m K6$ 4 +euphuisms 'jufjuIz@mz Kj$ 4 +eureka jU@'rik@ W-% 3 +eurhythmics ju'rIDmIks Lk$ 3 +eurythmics ju'rIDmIks Lk$ 3 +euthanasia ,juT@'neIzI@ L@% 5 +evacuate I'v&kjUeIt H2% 46A,14 +evacuated I'v&kjUeItId Hc%,Hd% 56A,14 +evacuates I'v&kjUeIts Ha% 46A,14 +evacuating I'v&kjUeItIN Hb% 56A,14 +evacuation I,v&kjU'eISn M6% 5 +evacuations I,v&kjU'eISnz Mj% 5 +evacuee I,v&kju'i K6% 4 +evacuees I,v&kju'iz Kj% 4 +evade I'veId H2% 26A,6C +evaded I'veIdId Hc%,Hd% 36A,6C +evades I'veIdz Ha% 26A,6C +evading I'veIdIN Hb% 36A,6C +evaluate I'v&ljUeIt H2% 46A +evaluated I'v&ljUeItId Hc%,Hd% 56A +evaluates I'v&ljUeIts Ha% 46A +evaluating I'v&ljUeItIN Hb% 56A +evaluation I,v&ljU'eISn K6% 5 +evaluations I,v&ljU'eISnz Kj% 5 +evaluative I'v&ljU@tIv OA% 5 +evanescence ,iv@'nesns L@$ 4 +evanescent ,iv@'nesnt OA$ 4 +evangelical ,iv&n'dZelIkl OA% 5 +evangelicalism ,iv&n'dZelIk@lIz@m L@% 7 +evangelism I'v&ndZ@lIz@m L@% 5 +evangelist I'v&ndZ@lIst K6% 4 +evangelistic I,v&ndZ@'lIstIk OA% 5 +evangelists I'v&ndZ@lIsts Kj% 4 +evaporate I'v&p@reIt J2% 42A,6A +evaporated I'v&p@reItId Jc%,Jd% 52A,6A +evaporates I'v&p@reIts Ja% 42A,6A +evaporating I'v&p@reItIN Jb% 52A,6A +evaporation I,v&p@'reISn M6% 5 +evaporations I,v&p@'reISnz Mj% 5 +evasion I'veIZn M6% 3 +evasions I'veIZnz Mj% 3 +evasive I'veIsIv OA% 3 +evasively I'veIsIvlI Pu% 4 +evasiveness I'veIsIvn@s L@% 4 +eve iv K6% 1 +even 'ivn H0%,K6%,OA*,Pu* 26A,15B +even-handed ,ivn-'h&ndId OA% 4 +evened 'ivnd Hc%,Hd% 26A,15B +evening 'ivnIN Hb%,M6% 26A,15B +evenings 'ivnINz Mj% 2 +evenly 'ivnlI Pu% 3 +evenness 'ivn+n@s L@% 3 +evens 'ivnz Ha%,Kj% 26A,15B +evensong 'ivns0N K6% 3 +evensongs 'ivns0Nz Kj$ 3 +event I'vent K6% 2 +eventful I'ventf@l OA% 3 +eventide 'ivntaId L@% 3 +events I'vents Kj% 2 +eventual I'ventSU@l OA% 4 +eventualities I,ventSU'&lItIz Kj% 6 +eventuality I,ventSU'&lItI K8% 6 +eventually I'ventSU@lI Pu% 5 +ever 'ev@R Pu* 2 +evergreen 'ev@grin K6%,OA% 3 +evergreens 'ev@grinz Kj% 3 +everlasting ,ev@'lAstIN OA% 4 +evermore ,ev@'mOR Pu$ 3 +every 'evrI OA* 2 +everybody 'evrIb0dI Qx% 4 +everyday 'evrIdeI OA% 3 +everyone 'evrIwVn Qx% 3 +everyplace 'evrIpleIs Pu$ 3 +everything 'evrITIN Qx* 3 +everywhere 'evrIwe@R Pu% 3 +eves ivz Kj% 1 +evict I'vIkt H0% 214 +evicted I'vIktId Hc%,Hd% 314 +evicting I'vIktIN Hb% 314 +eviction I'vIkSn M6% 3 +evictions I'vIkSnz Mj% 3 +evicts I'vIkts Ha% 214 +evidence 'evId@ns H2%,L@% 36A +evidenced 'evId@nst Hc%,Hd% 36A +evidences 'evId@nsIz Ha$ 46A +evidencing 'evId@nsIN Hb$ 46A +evident 'evId@nt OA% 3 +evidently 'evId@ntlI Pu% 4 +evil 'ivl M6%,OA% 2 +evil-doer 'ivl-du@R K6% 4 +evil-doers 'ivl-du@z Kj% 4 +evil-minded ,ivl-'maIndId OA% 4 +evilly 'iv@lI Pu% 3 +evils 'ivlz Mj% 2 +evince I'vIns H2% 26A,9 +evinced I'vInst Hc%,Hd% 26A,9 +evinces I'vInsIz Ha% 36A,9 +evincing I'vInsIN Hb% 36A,9 +eviscerate I'vIs@reIt H2$ 46A +eviscerated I'vIs@reItId Hc$,Hd$ 56A +eviscerates I'vIs@reIts Ha$ 46A +eviscerating I'vIs@reItIN Hb$ 56A +evocation ,iv@U'keISn K6% 4 +evocations ,iv@U'keISnz Kj% 4 +evocative I'v0k@tIv OA% 4 +evoke I'v@Uk H2% 26A +evoked I'v@Ukt Hc%,Hd% 26A +evokes I'v@Uks Ha% 26A +evoking I'v@UkIN Hb% 36A +evolution ,iv@'luSn M6% 4 +evolutionary ,iv@'luSnrI OA% 5 +evolutions ,iv@'luSnz Mj% 4 +evolve I'v0lv J2% 22A,6A +evolved I'v0lvd Jc%,Jd% 22A,6A +evolves I'v0lvz Ja% 22A,6A +evolving I'v0lvIN Jb% 32A,6A +ewe ju K6% 1 +ewer 'ju@R K6$ 2 +ewers 'ju@z Kj$ 2 +ewes juz Kj% 1 +ex gratia ,eks 'greIS@ OA% 3 +ex officio ,eks @'fISI@U OA%,Pu% 5 +ex- eks- U-% 1 +ex-directory ,eks-dI'rekt@rI OA% 5 +ex-service ,eks-'s3vIs OA% 3 +ex-serviceman ,eks-'s3vIsm@n Ki% 4 +ex-servicemen ,eks-'s3vIsm@n Kj% 4 +exacerbate Ig'z&s@beIt H2% 46A +exacerbated Ig'z&s@beItId Hc%,Hd% 56A +exacerbates Ig'z&s@beIts Ha% 46A +exacerbating Ig'z&s@beItIN Hb% 56A +exacerbation Ig,z&s@'beISn K6% 5 +exacerbations Ig,z&s@'beISnz Kj% 5 +exact Ig'z&kt H0%,OA% 26A,14 +exacted Ig'z&ktId Hc%,Hd% 36A,14 +exacting Ig'z&ktIN Hb%,OA% 36A,14 +exaction Ig'z&kSn M6$ 3 +exactions Ig'z&kSnz Mj$ 3 +exactitude Ig'z&ktItjud L@% 4 +exactly Ig'z&ktlI Pu% 3 +exactness Ig'z&ktn@s L@% 3 +exacts Ig'z&kts Ha% 26A,14 +exaggerate Ig'z&dZ@reIt J2% 42A,6A +exaggerated Ig'z&dZ@reItId Jc%,Jd% 52A,6A +exaggerates Ig'z&dZ@reIts Ja% 42A,6A +exaggerating Ig'z&dZ@reItIN Jb% 52A,6A +exaggeration Ig,z&dZ@'reISn M6% 5 +exaggerations Ig,z&dZ@'reISnz Mj% 5 +exalt Ig'zOlt H0% 26A +exaltation ,egzOl'teISn L@% 4 +exalted Ig'zOltId Hc%,Hd%,OA% 36A +exalting Ig'zOltIN Hb% 36A +exalts Ig'zOlts Ha% 26A +exam Ig'z&m K6% 2 +examination Ig,z&mI'neISn M6% 5 +examinations Ig,z&mI'neISnz Mj% 5 +examine Ig'z&mIn H2% 36A,14 +examined Ig'z&mInd Hc%,Hd% 36A,14 +examiner Ig'z&mIn@R K6% 4 +examiners Ig'z&mIn@z Kj% 4 +examines Ig'z&mInz Ha% 36A,14 +examining Ig'z&mInIN Hb% 46A,14 +example Ig'zAmpl M6* 3 +examples Ig'zAmplz Mj% 3 +exams Ig'z&mz Kj% 2 +exasperate Ig'z&sp@reIt H2% 46A +exasperated Ig'z&sp@reItId Hc%,Hd% 56A +exasperates Ig'z&sp@reIts Ha% 46A +exasperating Ig'z&sp@reItIN Hb% 56A +exasperation Ig,z&sp@'reISn L@% 5 +excavate 'eksk@veIt H2% 36A +excavated 'eksk@veItId Hc%,Hd% 46A +excavates 'eksk@veIts Ha% 36A +excavating 'eksk@veItIN Hb% 46A +excavation ,eksk@'veISn M6% 4 +excavations ,eksk@'veISnz Mj% 4 +excavator 'eksk@veIt@R K6% 4 +excavators 'eksk@veIt@z Kj% 4 +exceed Ik'sid H0% 26A +exceeded Ik'sidId Hc%,Hd% 36A +exceeding Ik'sidIN Hb% 36A +exceedingly Ik'sidINlI Pu% 4 +exceeds Ik'sidz Ha% 26A +excel Ik'sel J4% 22C,3A,6A,15A +excelled Ik'seld Jc%,Jd% 22C,3A,6A,15A +excellence 'eks@l@ns M6% 3 +excellences 'eks@l@nsIz Mj$ 4 +excellent 'eks@l@nt OA% 3 +excellently 'eks@l@ntlI Pu% 4 +excelling Ik'selIN Jb% 32C,3A,6A,15A +excels Ik'selz Ja% 22C,3A,6A,15A +excelsior ek'selsIOR L@$ 4 +except Ik'sept H0%,T-%,V-% 26A,14 +excepted Ik'septId Hc%,Hd% 36A,14 +excepting Ik'septIN Hb%,T-% 36A,14 +exception Ik'sepSn M6% 3 +exceptionable Ik'sepSn@bl OA$ 4 +exceptional Ik'sepS@nl OA% 4 +exceptionally Ik'sepS@n@lI Pu% 5 +exceptions Ik'sepSnz Mj% 3 +excepts Ik'septs Ha% 26A,14 +excerpt 'eks3pt K6% 2 +excerpts 'eks3pts Kj% 2 +excess 'ekses OA% 2 +excess Ik'ses M7% 2 +excesses Ik'sesIz Mj% 3 +excessive Ik'sesIv OA% 3 +excessively Ik'sesIvlI Pu% 4 +exchange Ik'stSeIndZ H2%,M6% 26A,14 +exchangeable Ik'stSeIndZ@bl OA% 4 +exchanged Ik'stSeIndZd Hc%,Hd% 26A,14 +exchanger Ik'stSeIndZ@R K6% 3 +exchangers Ik'stSeIndZ@z Kj% 3 +exchanges Ik'stSeIndZIz Ha%,Mj% 36A,14 +exchanging Ik'stSeIndZIN Hb% 36A,14 +exchequer Ik'stSek@R K6% 3 +exchequers Ik'stSek@z Kj$ 3 +excise 'eksaIz L@% 2 +excise Ik'saIz H2$ 26A +excised Ik'saIzd Hc%,Hd% 26A +exciseman 'eksaIsm@n Ki% 3 +excisemen 'eksaIsm@n Kj% 3 +excises Ik'saIzIz Ha$ 36A +excising Ik'saIzIN Hb$ 36A +excision Ik'sIZn M6% 3 +excisions Ik'sIZnz Mj% 3 +excitability Ik,saIt@'bIlItI L@% 6 +excitable Ik'saIt@bl OA% 4 +excite Ik'saIt H2% 26A,14,17 +excited Ik'saItId Hc%,Hd% 36A,14,17 +excitedly Ik'saItIdlI Pu% 4 +excitement Ik'saItm@nt M6% 3 +excitements Ik'saItm@nts Mj% 3 +excites Ik'saIts Ha% 26A,14,17 +exciting Ik'saItIN Hb% 36A,14,17 +excitingly Ik'saItINlI Pu% 4 +excl Ik'skludIN Y~% 3 +exclaim Ik'skleIm J0% 22A,9 +exclaimed Ik'skleImd Jc%,Jd% 22A,9 +exclaiming Ik'skleImIN Jb% 32A,9 +exclaims Ik'skleImz Ja% 22A,9 +exclamation ,ekskl@'meISn M6% 4 +exclamations ,ekskl@'meISnz Mj% 4 +exclamatory Ik'skl&m@trI OA% 4 +exclude Ik'sklud H2% 26A,14 +excluded Ik'skludId Hc%,Hd% 36A,14 +excludes Ik'skludz Ha% 26A,14 +excluding Ik'skludIN Hb% 36A,14 +exclusion Ik'skluZn L@% 3 +exclusive Ik'sklusIv OA% 3 +exclusively Ik'sklusIvlI Pu% 4 +excogitate eks'k0dZIteIt H2% 46A +excogitated eks'k0dZIteItId Hc$,Hd$ 56A +excogitates eks'k0dZIteIts Ha$ 46A +excogitating eks'k0dZIteItIN Hb$ 56A +excogitation ,eks,k0dZI'teISn M6$ 5 +excogitations ,eks,k0dZI'teISnz Mj$ 5 +excommunicate ,eksk@'mjunIkeIt H2% 56A +excommunicated ,eksk@'mjunIkeItId Hc%,Hd% 66A +excommunicates ,eksk@'mjunIkeIts Ha% 56A +excommunicating ,eksk@'mjunIkeItIN Hb% 66A +excommunication ,eksk@,mjunI'keISn M6% 6 +excommunications ,eksk@,mjunI'keISnz Mj$ 6 +excoriate Ik'skOrIeIt H2$ 46A +excoriated Ik'skOrIeItId Hc$,Hd$ 56A +excoriates Ik'skOrIeIts Ha$ 46A +excoriating Ik'skOrIeItIN Hb$ 56A +excoriation Ik,skOrI'eISn K6$ 5 +excoriations Ik,skOrI'eISnz Kj$ 5 +excrement 'ekskr@m@nt L@% 3 +excrescence Ik'skresns K6% 3 +excrescences Ik'skresnsIz Kj% 4 +excreta Ik'skrit@ Kj% 3 +excrete Ik'skrit H2% 26A +excreted Ik'skritId Hc%,Hd% 36A +excretes Ik'skrits Ha% 26A +excreting Ik'skritIN Hb% 36A +excretion Ik'skriSn M6% 3 +excretions Ik'skriSnz Mj% 3 +excruciating Ik'skruSIeItIN OA% 5 +excruciatingly Ik'skruSIeItINlI Pu% 6 +exculpate 'ekskVlpeIt H2$ 36A,14 +exculpated 'ekskVlpeItId Hc$,Hd$ 46A,14 +exculpates 'ekskVlpeIts Ha$ 36A,14 +exculpating 'ekskVlpeItIN Hb$ 46A,14 +excursion Ik'sk3Sn K6% 3 +excursionist Ik'sk3S@nIst K6$ 4 +excursionists Ik'sk3S@nIsts Kj$ 4 +excursions Ik'sk3Snz Kj% 3 +excusable Ik'skjuz@bl OA% 4 +excusably Ik'skjuz@blI Pu% 4 +excuse Ik'skjus K6% 2 +excuse Ik'skjuz H2% 26A,6C,12B,13B,14,19C +excused Ik'skjuzd Hc%,Hd% 26A,6C,12B,13B,14,19C +excuses Ik'skjusIz Kj% 3 +excuses Ik'skjuzIz Ha% 36A,6C,12B,13B,14,19C +excusing Ik'skjuzIN Hb% 36A,6C,12B,13B,14,19C +execrable 'eksIkr@bl OA% 4 +execrate 'eksIkreIt H2$ 36A +execrated 'eksIkreItId Hc$,Hd$ 46A +execrates 'eksIkreIts Ha$ 36A +execrating 'eksIkreItIN Hb$ 46A +execration ,eksI'kreISn K6$ 4 +execrations ,eksI'kreISnz Kj$ 4 +executant Ig'zekjUt@nt K6% 4 +executants Ig'zekjUt@nts Kj% 4 +execute 'eksIkjut H2% 36A +executed 'eksIkjutId Hc%,Hd% 46A +executes 'eksIkjuts Ha% 36A +executing 'eksIkjutIN Hb% 46A +execution ,eksI'kjuSn M6% 4 +executioner ,eksI'kjuSn@R K6% 5 +executioners ,eksI'kjuSn@z Kj% 5 +executions ,eksI'kjuSnz Mj% 4 +executive Ig'zekjUtIv K6%,OA% 4 +executives Ig'zekjUtIvz Kj% 4 +executor Ig'zekjUt@R K6% 4 +executors Ig'zekjUt@z Kj% 4 +executrix Ig'zekjUtrIks K7$ 4 +executrixes Ig'zekjUtrIksIz Kj$ 5 +exegesis ,eksI'dZisIs L@% 4 +exemplary Ig'zempl@rI OA% 4 +exemplification Ig,zemplIfI'keISn M6% 6 +exemplifications Ig,zemplIfI'keISnz Mj$ 6 +exemplified Ig'zemplIfaId Hc%,Hd% 46A +exemplifies Ig'zemplIfaIz Ha% 46A +exemplify Ig'zemplIfaI H3% 46A +exemplifying Ig'zemplIfaIIN Hb% 56A +exempt Ig'zempt H0%,OA% 26A,14 +exempted Ig'zemptId Hc%,Hd% 36A,14 +exempting Ig'zemptIN Hb% 36A,14 +exemption Ig'zempSn M6% 3 +exemptions Ig'zempSnz Mj% 3 +exempts Ig'zempts Ha% 26A,14 +exercise 'eks@saIz J2%,M6% 32A,6A,15A +exercised 'eks@saIzd Jc%,Jd% 32A,6A,15A +exercises 'eks@saIzIz Ja%,Mj% 42A,6A,15A +exercising 'eks@saIzIN Jb% 42A,6A,15A +exert Ig'z3t H0% 26A,14,16A +exerted Ig'z3tId Hc%,Hd% 36A,14,16A +exerting Ig'z3tIN Hb% 36A,14,16A +exertion Ig'z3Sn M6% 3 +exertions Ig'z3Snz Mj% 3 +exerts Ig'z3ts Ha% 26A,14,16A +exeunt 'eksI@nt Ie$ 3 +exhalation ,eksh@'leISn M6% 4 +exhalations ,eksh@'leISnz Mj% 4 +exhale eks'heIl J2% 22A,6A +exhaled eks'heIld Jc%,Jd% 22A,6A +exhales eks'heIlz Ja% 22A,6A +exhaling eks'heIlIN Jb% 32A,6A +exhaust Ig'zOst H0%,M6% 26A +exhaust-pipe Ig'zOst-paIp K6% 3 +exhaust-pipes Ig'zOst-paIps Kj% 3 +exhausted Ig'zOstId Hc%,Hd% 36A +exhausting Ig'zOstIN Hb% 36A +exhaustion Ig'zOstS@n L@% 3 +exhaustive Ig'zOstIv OA% 3 +exhaustively Ig'zOstIvlI Pu% 4 +exhausts Ig'zOsts Ha%,Mj% 26A +exhibit Ig'zIbIt H0%,K6% 32A,6A +exhibited Ig'zIbItId Hc%,Hd% 42A,6A +exhibiting Ig'zIbItIN Hb% 42A,6A +exhibition ,eksI'bISn K6% 4 +exhibitioner ,eksI'bISn@R K6$ 5 +exhibitioners ,eksI'bISn@z Kj$ 5 +exhibitionism ,eksI'bIS@nIz@m L@% 6 +exhibitionist ,eksI'bIS@nIst K6% 5 +exhibitionists ,eksI'bIS@nIsts Kj% 5 +exhibitions ,eksI'bISnz Kj% 4 +exhibitor Ig'zIbIt@R K6% 4 +exhibitors Ig'zIbIt@z Kj% 4 +exhibits Ig'zIbIts Ha%,Kj% 32A,6A +exhilarate Ig'zIl@reIt H2% 46A +exhilarated Ig'zIl@reItId Hc%,Hd% 56A +exhilarates Ig'zIl@reIts Ha% 46A +exhilarating Ig'zIl@reItIN Hb% 56A +exhilaration Ig,zIl@'reISn L@% 5 +exhort Ig'zOt H0% 26A,14,17 +exhortation ,eksO'teISn M6% 4 +exhortations ,eksO'teISnz Mj% 4 +exhorted Ig'zOtId Hc%,Hd% 36A,14,17 +exhorting Ig'zOtIN Hb% 36A,14,17 +exhorts Ig'zOts Ha% 26A,14,17 +exhumation ,ekshju'meISn M6% 4 +exhumations ,ekshju'meISnz Mj$ 4 +exhume eks'hjum H2% 26A +exhumed eks'hjumd Hc%,Hd% 26A +exhumes eks'hjumz Ha% 26A +exhuming eks'hjumIN Hb% 36A +exigencies 'eksIdZ@nsIz Kj% 4 +exigency 'eksIdZ@nsI K8% 4 +exigent 'egzIdZ@nt OA$ 3 +exiguous eg'zIgjU@s OA$ 4 +exile 'eksaIl H2%,M6% 26A,15A +exiled 'eksaIld Hc%,Hd% 26A,15A +exiles 'eksaIlz Ha%,Mj% 26A,15A +exiling 'eksaIlIN Hb% 36A,15A +exist Ig'zIst I0% 22A,2C,3A +existed Ig'zIstId Ic%,Id% 32A,2C,3A +existence Ig'zIst@ns M6% 3 +existences Ig'zIst@nsIz Mj% 4 +existent Ig'zIst@nt OA% 3 +existentialism ,egzI'stenS@lIz@m L@% 6 +existentialist ,egzI'stenS@lIst K6% 5 +existentialists ,egzI'stenS@lIsts Kj% 5 +existing Ig'zIstIN Ib% 32A,2C,3A +exists Ig'zIsts Ia% 22A,2C,3A +exit 'eksIt I0%,K6% 2 +exited 'eksItId Ic%,Id% 3 +exiting 'eksItIN Ib% 3 +exits 'eksIts Ia%,Kj% 2 +exodus 'eks@d@s K7% 3 +exoduses 'eks@d@sIz Kj$ 4 +exonerate Ig'z0n@reIt H2% 46A,14 +exonerated Ig'z0n@reItId Hc%,Hd% 56A,14 +exonerates Ig'z0n@reIts Ha% 46A,14 +exonerating Ig'z0n@reItIN Hb% 56A,14 +exoneration Ig,z0n@'reISn K6% 5 +exonerations Ig,z0n@'reISnz Kj$ 5 +exorbitance Ig'zObIt@ns L@$ 4 +exorbitant Ig'zObIt@nt OA% 4 +exorbitantly Ig'zObIt@ntlI Pu% 5 +exorcize 'eksOsaIz H2% 36A,14 +exorcized 'eksOsaIzd Hc%,Hd% 36A,14 +exorcizes 'eksOsaIzIz Ha% 46A,14 +exorcizing 'eksOsaIzIN Hb% 46A,14 +exotic Ig'z0tIk OA% 3 +expand Ik'sp&nd J0% 22A,2C,6A,14 +expanded Ik'sp&ndId Jc%,Jd% 32A,2C,6A,14 +expanding Ik'sp&ndIN Jb% 32A,2C,6A,14 +expands Ik'sp&ndz Ja% 22A,2C,6A,14 +expanse Ik'sp&ns K6% 2 +expanses Ik'sp&nsIz Kj% 3 +expansion Ik'sp&nSn L@% 3 +expansive Ik'sp&nsIv OA% 3 +expansively Ik'sp&nsIvlI Pu% 4 +expansiveness Ik'sp&nsIvn@s L@% 4 +expatiate Ik'speISIeIt I2$ 43A +expatiated Ik'speISIeItId Ic$,Id$ 53A +expatiates Ik'speISIeIts Ia$ 43A +expatiating Ik'speISIeItIN Ib$ 53A +expatriate eks'p&trI@t K6$ 4 +expatriate eks'p&trIeIt H2$ 46A +expatriated eks'p&trIeItId Hc$,Hd$ 56A +expatriates eks'p&trI@ts Kj$ 4 +expatriates eks'p&trIeIts Ha$ 46A +expatriating eks'p&trIeItIN Hb$ 56A +expect Ik'spekt H0% 26A,7A,9,14,17 +expectancies Ik'spekt@nsIz Mj% 4 +expectancy Ik'spekt@nsI M8% 4 +expectant Ik'spekt@nt OA% 3 +expectantly Ik'spekt@ntlI Pu% 4 +expectation ,ekspek'teISn M6% 4 +expectations ,ekspek'teISnz Mj% 4 +expected Ik'spektId Hc%,Hd%,OA% 36A,7A,9,14,17 +expecting Ik'spektIN Hb% 36A,7A,9,14,17 +expectorant Ik'spekt@r@nt K6$ 4 +expectorants Ik'spekt@r@nts Kj$ 4 +expectorate Ik'spekt@reIt J2$ 42A,6A +expectorated Ik'spekt@reItId Jc$,Jd$ 52A,6A +expectorates Ik'spekt@reIts Ja$ 42A,6A +expectorating Ik'spekt@reItIN Jb$ 52A,6A +expects Ik'spekts Ha% 26A,7A,9,14,17 +expedience Ik'spidI@ns L@% 4 +expediency Ik'spidI@nsI L@% 5 +expedient Ik'spidI@nt K6%,OA% 4 +expediently Ik'spidI@ntlI Pu% 5 +expedients Ik'spidI@nts Kj% 4 +expedite 'ekspIdaIt H2$ 36A +expedited 'ekspIdaItId Hc$,Hd$ 46A +expedites 'ekspIdaIts Ha$ 36A +expediting 'ekspIdaItIN Hb$ 46A +expedition ,ekspI'dISn M6% 4 +expeditionary ,ekspI'dIS@n@rI OA% 6 +expeditions ,ekspI'dISnz Mj% 4 +expeditious ,ekspI'dIS@s OA$ 4 +expeditiously ,ekspI'dIS@slI Pu$ 5 +expel Ik'spel H4% 26A,14 +expelled Ik'speld Hc%,Hd% 26A,14 +expelling Ik'spelIN Hb% 36A,14 +expels Ik'spelz Ha% 26A,14 +expend Ik'spend H0% 26A,14 +expendable Ik'spend@bl OA% 4 +expended Ik'spendId Hc%,Hd% 36A,14 +expending Ik'spendIN Hb% 36A,14 +expenditure Ik'spendItS@R M6% 4 +expenditures Ik'spendItS@z Mj% 4 +expends Ik'spendz Ha% 26A,14 +expense Ik'spens M6% 2 +expenses Ik'spensIz Mj% 3 +expensive Ik'spensIv OA% 3 +expensively Ik'spensIvlI Pu% 4 +experience Ik'spI@rI@ns H2%,M6% 46A +experienced Ik'spI@rI@nst Hc%,Hd%,OA% 46A +experiences Ik'spI@rI@nsIz Ha%,Mj% 56A +experiencing Ik'spI@rI@nsIN Hb% 56A +experiment Ik'sperIm@nt I0%,M6% 42A,2C,3A +experimental Ik,sperI'mentl OA% 5 +experimentally Ik,sperI'ment@lI Pu% 6 +experimentation Ik,sperImen'teISn L@% 6 +experimented Ik'sperIm@ntId Ic%,Id% 52A,2C,3A +experimenter Ik'sperIm@nt@R K6% 5 +experimenters Ik'sperIm@nt@z Kj% 5 +experimenting Ik'sperIm@ntIN Ib% 52A,2C,3A +experiments Ik'sperIm@nts Ia%,Mj% 42A,2C,3A +expert 'eksp3t K6%,OA% 2 +expertise ,eksp3'tiz L@% 3 +expertly 'eksp3tlI Pu% 3 +expertness 'eksp3tn@s L@$ 3 +experts 'eksp3ts Kj% 2 +expiate 'ekspIeIt H2$ 36A +expiated 'ekspIeItId Hc$,Hd$ 46A +expiates 'ekspIeIts Ha$ 36A +expiating 'ekspIeItIN Hb$ 46A +expiation ,ekspI'eISn L@$ 4 +expiration ,ekspI'reISn L@$ 4 +expire Ik'spaI@R I2$ 22A +expired Ik'spaI@d Ic%,Id% 22A +expires Ik'spaI@z Ia% 22A +expiries Ik'spaI@rIz Kj$ 3 +expiring Ik'spaI@rIN Ib% 32A +expiry Ik'spaI@rI K8% 3 +explain Ik'spleIn H0% 26A,8,9,10,14,15B +explained Ik'spleInd Hc%,Hd% 26A,8,9,10,14,15B +explaining Ik'spleInIN Hb% 36A,8,9,10,14,15B +explains Ik'spleInz Ha% 26A,8,9,10,14,15B +explanation ,ekspl@'neISn M6% 4 +explanations ,ekspl@'neISnz Mj% 4 +explanatory Ik'spl&n@trI OA% 4 +expletive Ik'splitIv K6% 3 +expletives Ik'splitIvz Kj% 3 +explicable ek'splIk@bl OA% 4 +explicate 'eksplIkeIt H2$ 36A +explicated 'eksplIkeItId Hc$,Hd$ 46A +explicates 'eksplIkeIts Ha$ 36A +explicating 'eksplIkeItIN Hb$ 46A +explicit Ik'splIsIt OA% 3 +explicitly Ik'splIsItlI Pu% 4 +explicitness Ik'splIsItn@s L@% 4 +explode Ik'spl@Ud J2% 22A,2C,6A +exploded Ik'spl@UdId Jc%,Jd% 32A,2C,6A +explodes Ik'spl@Udz Ja% 22A,2C,6A +exploding Ik'spl@UdIN Jb% 32A,2C,6A +exploit 'eksploIt K6% 2 +exploit Ik'sploIt H0% 26A +exploitation ,eksploI'teISn L@% 4 +exploited Ik'sploItId Hc%,Hd% 36A +exploiting Ik'sploItIN Hb% 36A +exploits 'eksploIts Kj% 2 +exploits Ik'sploIts Ha% 26A +exploration ,ekspl@'reISn M6% 4 +explorations ,ekspl@'reISnz Mj% 4 +exploratory Ik'spl0r@trI OA% 4 +explore Ik'splOR H2% 26A +explored Ik'splOd Hc%,Hd% 26A +explorer Ik'splOr@R K6% 3 +explorers Ik'splOr@z Kj% 3 +explores Ik'splOz Ha% 26A +exploring Ik'splOrIN Hb% 36A +explosion Ik'spl@UZn K6% 3 +explosions Ik'spl@UZnz Kj% 3 +explosive Ik'spl@UsIv K6%,OA% 3 +explosively Ik'spl@UsIvlI Pu% 4 +explosives Ik'spl@UsIvz Kj% 3 +expo 'eksp@U K6$ 2 +exponent Ik'sp@Un@nt K6% 3 +exponential ,eksp@'nenSl K6$,OA% 4 +exponentially ,eksp@'nenS@lI Pu% 5 +exponentials ,eksp@'nenSlz Kj$ 4 +exponents Ik'sp@Un@nts Kj% 3 +export 'ekspOt M6% 2 +export Ik'spOt H0% 26A +exportable Ik'spOt@bl OA% 4 +exportation ,ekspO'teISn L@$ 4 +exported Ik'spOtId Hc%,Hd% 36A +exporter Ik'spOt@R K6% 3 +exporters Ik'spOt@z Kj% 3 +exporting Ik'spOtIN Hb% 36A +exports 'ekspOts Mj% 2 +exports Ik'spOts Ha% 26A +expos 'eksp@Uz Kj$ 2 +expos_e ek'sp@UzeI K6% 3 +expos_es ek'sp@UzeIz Kj% 3 +expose Ik'sp@Uz H2% 26A,14,15A +exposed Ik'sp@Uzd Hc%,Hd% 26A,14,15A +exposes Ik'sp@UzIz Ha% 36A,14,15A +exposing Ik'sp@UzIN Hb% 36A,14,15A +exposition ,eksp@'zISn M6% 4 +expositions ,eksp@'zISnz Mj% 4 +expostulate Ik'sp0stSUleIt I2% 42A,3A +expostulated Ik'sp0stSUleItId Ic%,Id% 52A,3A +expostulates Ik'sp0stSUleIts Ia% 42A,3A +expostulating Ik'sp0stSUleItIN Ib% 52A,3A +expostulation Ik,sp0stSU'leISn M6% 5 +expostulations Ik,sp0stSU'leISnz Mj$ 5 +exposure Ik'sp@UZ@R M6% 3 +exposures Ik'sp@UZ@z Mj% 3 +expound Ik'spaUnd H0% 26A,14 +expounded Ik'spaUndId Hc%,Hd% 36A,14 +expounding Ik'spaUndIN Hb% 36A,14 +expounds Ik'spaUndz Ha% 26A,14 +express Ik'spres H1%,M7%,OA%,Pu% 26A,10,14,15A +expressed Ik'sprest Hc%,Hd% 26A,10,14,15A +expresses Ik'spresIz Ha%,Mj% 36A,10,14,15A +expressing Ik'spresIN Hb% 36A,10,14,15A +expression Ik'spreSn M6% 3 +expressionism Ik'spreS@nIz@m L@% 5 +expressionist Ik'spreS@nIst K6% 4 +expressionists Ik'spreS@nIsts Kj% 4 +expressionless Ik'spreSnl@s OA% 4 +expressions Ik'spreSnz Mj% 3 +expressive Ik'spresIv OA% 3 +expressively Ik'spresIvlI Pu% 4 +expressly Ik'spreslI Pu% 3 +expressway Iks'presweI K6$ 3 +expressways Iks'presweIz Kj$ 3 +expropriate eks'pr@UprIeIt H2$ 46A,14 +expropriated eks'pr@UprIeItId Hc$,Hd% 56A,14 +expropriates eks'pr@UprIeIts Ha$ 46A,14 +expropriating eks'pr@UprIeItIN Hb$ 56A,14 +expropriation ,eks,pr@UprI'eISn L@$ 5 +expulsion Ik'spVlSn M6% 3 +expulsions Ik'spVlSnz Mj% 3 +expunge Ik'spVndZ H2% 26A,14 +expunged Ik'spVndZd Hc%,Hd% 26A,14 +expunges Ik'spVndZIz Ha% 36A,14 +expunging Ik'spVndZIN Hb% 36A,14 +expurgate 'eksp@geIt H2% 36A +expurgated 'eksp@geItId Hc%,Hd% 46A +expurgates 'eksp@geIts Ha% 36A +expurgating 'eksp@geItIN Hb% 46A +expurgation ,eksp@'geISn K6% 4 +expurgations ,eksp@'geISnz Kj$ 4 +exquisite 'ekskwIzIt OA% 3 +exquisitely 'ekskwIzItlI Pu% 4 +exquisiteness 'ekskwIzItn@s L@% 4 +extant ek'st&nt OA% 2 +extemporaneous ek,stemp@'reInI@s OA$ 6 +extemporaneously ek,stemp@'reInI@slI Pu$ 7 +extemporarily Ik,stemp@'re@rIlI Pu$ 6 +extemporary Ik'stemp@r@rI OA$ 5 +extempore ek'stemp@rI OA%,Pu% 4 +extemporize Ik'stemp@raIz J3% 42A,6A +extemporized Ik'stemp@raIzd Jc%,Jd% 42A,6A +extemporizes Ik'stemp@raIzIz Ja% 52A,6A +extemporizing Ik'stemp@raIzIN Jb% 52A,6A +extend Ik'stend J0% 22B,2C,6A,14,15A +extended Ik'stendId Jc%,Jd% 32B,2C,6A,14,15A +extending Ik'stendIN Jb% 32B,2C,6A,14,15A +extends Ik'stendz Ja% 22B,2C,6A,14,15A +extension Ik'stenSn M6% 3 +extensions Ik'stenSnz Mj% 3 +extensive Ik'stensIv OA% 3 +extensively Ik'stensIvlI Pu% 4 +extent Ik'stent L@% 2 +extenuate Ik'stenjUeIt H2% 46A +extenuated Ik'stenjUeItId Hc%,Hd% 56A +extenuates Ik'stenjUeIts Ha% 46A +extenuating Ik'stenjUeItIN Hb% 56A +extenuation Ik,stenjU'eISn M6% 5 +extenuations Ik,stenjU'eISnz Mj$ 5 +exterior Ik'stI@rI@R K6%,OA% 4 +exteriorize Iks'tI@rI@raIz H2$ 5 +exteriorized Iks'tI@rI@raIzd Hc$,Hd$ 5 +exteriorizes Iks'tI@rI@raIzIz Ha$ 6 +exteriorizing Iks'tI@rI@raIzIN Hb$ 6 +exteriors Ik'stI@rI@z Kj% 4 +exterminate Ik'st3mIneIt H2% 46A +exterminated Ik'st3mIneItId Hc%,Hd% 56A +exterminates Ik'st3mIneIts Ha% 46A +exterminating Ik'st3mIneItIN Hb% 56A +extermination Ik,st3mI'neISn K6% 5 +exterminations Ik,st3mI'neISnz Kj$ 5 +external Ik'st3nl K6%,OA% 3 +externalize Iks't3n@laIz H2% 46A +externalized Iks't3n@laIzd Hc%,Hd% 46A +externalizes Iks't3n@laIzIz Ha% 56A +externalizing Iks't3n@laIzIN Hb% 56A +externally ek'st3n@lI Pu% 4 +externals Ik'st3nlz Kj% 3 +exterritorial ,eks,terI'tOrI@l OA$ 6 +extinct Ik'stINt OA% 2 +extinction Ik'stINkSn L@% 3 +extinguish Ik'stINwIS H1% 36A +extinguished Ik'stINwISt Hc%,Hd% 36A +extinguisher Ik'stINwIS@R K6% 4 +extinguishers Ik'stINwIS@z Kj% 4 +extinguishes Ik'stINwISIz Ha% 46A +extinguishing Ik'stINwISIN Hb% 46A +extirpate 'ekst@peIt H2$ 36A +extirpated 'ekst@peItId Hc$,Hd$ 46A +extirpates 'ekst@peIts Ha$ 36A +extirpating 'ekst@peItIN Hb$ 46A +extirpation ,ekst@'peISn L@$ 4 +extol Ik'st@Ul H4% 26A,15A +extolled Ik'st@Uld Hc%,Hd% 26A,15A +extolling Ik'st@UlIN Hb% 36A,15A +extols Ik'st@Ulz Ha% 26A,15A +extort Ik'stOt H0% 26A,14 +extorted Ik'stOtId Hc%,Hd% 36A,14 +extorting Ik'stOtIN Hb% 36A,14 +extortion Ik'stOSn M6% 3 +extortionate Ik'stOS@n@t OA% 4 +extortionately Ik'stOS@n@tlI Pu% 5 +extortions Ik'stOSnz Mj$ 3 +extorts Ik'stOts Ha% 26A,14 +extra 'ekstr@ K6%,OA%,Pu% 2 +extract 'ekstr&kt M6% 2 +extract Ik'str&kt H0% 26A,14 +extracted Ik'str&ktId Hc%,Hd% 36A,14 +extracting Ik'str&ktIN Hb% 36A,14 +extraction Ik'str&kSn M6% 3 +extractions Ik'str&kSnz Mj% 3 +extracts 'ekstr&kts Mj% 2 +extracts Ik'str&kts Ha% 26A,14 +extracurricular ,ekstr@k@'rIkjUl@R OA% 6 +extradite 'ekstr@daIt H2% 36A +extradited 'ekstr@daItId Hc%,Hd% 46A +extradites 'ekstr@daIts Ha% 36A +extraditing 'ekstr@daItIN Hb% 46A +extradition ,ekstr@'dISn M6% 4 +extraditions ,ekstr@'dISnz Mj% 4 +extrajudicial ,ekstr@dZu'dISl OA$ 5 +extramarital ,ekstr@'m&rItl OA% 5 +extramural ,ekstr@'mjU@r@l OA% 4 +extraneous Ik'streInI@s OA% 4 +extraordinarily Ik'strOdnr@lI Pu% 4 +extraordinary Ik'strOdnrI OA% 3 +extrapolate Ik'str&p@leIt J3% 46A +extrapolated Ik'str&p@leItId Jc%,Jd% 56A +extrapolates Ik'str&p@leIts Ja% 46A +extrapolating Ik'str&p@leItIN Jb% 56A +extrapolation Ik,str&p@'leISn L@% 5 +extras 'ekstr@z Kj% 2 +extrasensory ,ekstr@'sens@rI OA% 5 +extraterritorial ,ekstr@,terI'tOrI@l OA$ 7 +extravagance Ik'str&v@g@ns M6% 4 +extravagances Ik'str&v@g@nsIz Mj% 5 +extravagant Ik'str&v@g@nt OA% 4 +extravagantly Ik'str&v@g@ntlI Pu% 5 +extravaganza Ik,str&v@'g&nz@ K6% 5 +extravaganzas Ik,str&v@'g&nz@z Kj% 5 +extreme Ik'strim K6%,OA% 2 +extremely Ik'strimlI Pu% 3 +extremes Ik'strimz Kj% 2 +extremist Ik'strimIst K6% 3 +extremists Ik'strimIsts Kj% 3 +extremities Ik'stremItIz Kj% 4 +extremity Ik'stremItI K8% 4 +extricable ek'strIk@bl OA$ 4 +extricate 'ekstrIkeIt H2% 36A,14 +extricated 'ekstrIkeItId Hc%,Hd% 46A,14 +extricates 'ekstrIkeIts Ha% 36A,14 +extricating 'ekstrIkeItIN Hb% 46A,14 +extrication ,ekstrI'keISn L@$ 4 +extrinsic ek'strInsIk OA$ 3 +extroversion ,ekstr@'v3Sn L@$ 4 +extrovert 'ekstr@v3t K6% 3 +extroverts 'ekstr@v3ts Kj% 3 +extrude Ik'strud H2$ 26A,14 +extruded Ik'strudId Hc$,Hd% 36A,14 +extrudes Ik'strudz Ha$ 26A,14 +extruding Ik'strudIN Hb$ 36A,14 +extrusion Ik'struZn M6$ 3 +extrusions Ik'struZnz Mj$ 3 +exuberance Ig'zjub@r@ns L@% 4 +exuberant Ig'zjub@r@nt OA% 4 +exuberantly Ig'zjub@r@ntlI Pu% 5 +exude Ig'zjud J2% 22A,2C,6A +exuded Ig'zjudId Jc%,Jd% 32A,2C,6A +exudes Ig'zjudz Ja% 22A,2C,6A +exuding Ig'zjudIN Jb% 32A,2C,6A +exult Ig'zVlt I0% 22A,3A,4C +exultant Ig'zVlt@nt OA% 3 +exultantly Ig'zVlt@ntlI Pu% 4 +exultation ,egzVl'teISn L@% 4 +exulted Ig'zVltId Ic%,Id% 32A,3A,4C +exulting Ig'zVltIN Ib% 32A,3A,4C +exults Ig'zVlts Ia% 22A,3A,4C +eye aI H2%,K6% 16A,15A +eye-catching 'aI-k&tSIN OA% 3 +eye-opener 'aI-@Up@n@R K6% 4 +eye-openers 'aI-@Up@n@z Kj% 4 +eye-shadow 'aI-S&d@U L@% 3 +eyeball 'aIbOl K6% 2 +eyeballs 'aIbOlz Kj% 2 +eyebath 'aIbAT K6% 2 +eyebaths 'aIbADz Kj% 2 +eyebrow 'aIbraU K6% 2 +eyebrows 'aIbraUz Kj% 2 +eyecatching 'aIk&tSIN OA% 3 +eyecup 'aIkVp K6$ 2 +eyecups 'aIkVps Kj$ 2 +eyed aId Hc%,Hd%,Ot% 16A,15A +eyeful 'aIfUl K6% 2 +eyefuls 'aIfUlz Kj$ 2 +eyeglass 'aIglAs K7% 2 +eyeglasses 'aIglAsIz Kj% 3 +eyeing 'aIIN Hb% 26A,15A +eyelash 'aIl&S K7% 2 +eyelashes 'aIl&SIz Kj% 3 +eyeless 'aIl@s OA% 2 +eyelet 'aIlIt K6$ 2 +eyelets 'aIlIts Kj$ 2 +eyelid 'aIlId K6% 2 +eyelids 'aIlIdz Kj% 2 +eyepiece 'aIpis K6$ 2 +eyepieces 'aIpisIz Kj$ 3 +eyes aIz Ha%,Kj* 16A,15A +eyeshot 'aIS0t L@$ 2 +eyesight 'aIsaIt L@% 2 +eyesore 'aIsOR K6% 2 +eyesores 'aIsOz Kj% 2 +eyestrain 'aIstreIn L@% 2 +eyeteeth 'aItiT Kj$ 2 +eyetooth 'aItuT Ki$ 2 +eyewash 'aIw0S L@% 2 +eyewitness 'aIwItn@s K7% 3 +eyewitnesses 'aIwItn@sIz Kj% 4 +eying 'aIIN Hb$ 26A,15A +eyrie 'e@rI K6$ 2 +eyries 'e@rIz Kj$ 2 +eyry 'e@rI K8% 2 +f ef Ki$ 1 +f"uhrer 'fjU@r@R K6$ 2 +f"uhrers 'fjU@r@z Kj$ 2 +f's efs Kj$ 1 +f^ete feIt H2%,K6% 16A +f^eted 'feItId Hc%,Hd% 26A +f^etes feIts Ha%,Kj% 16A +f^eting 'feItIN Hb% 26A +fa fA Ki$ 1 +fa<cade f@'sAd K6% 2 +fa<cades f@'sAdz Kj% 2 +fab f&b OA% 1 +fable 'feIbl M6% 2 +fabled 'feIbld OA% 2 +fables 'feIblz Mj% 2 +fabric 'f&brIk M6% 2 +fabricate 'f&brIkeIt H2% 36A +fabricated 'f&brIkeItId Hc%,Hd% 46A +fabricates 'f&brIkeIts Ha% 36A +fabricating 'f&brIkeItIN Hb% 46A +fabrication ,f&brI'keISn M6% 4 +fabrications ,f&brI'keISnz Mj% 4 +fabrics 'f&brIks Mj% 2 +fabulous 'f&bjUl@s OA% 3 +fabulously 'f&bjUl@slI Pu% 4 +face feIs J2*,K6* 12C,6A,6C,14,15B +face-ache 'feIs-eIk L@% 2 +face-card 'feIs-kAd K6% 2 +face-cards 'feIs-kAdz Kj% 2 +face-cloth 'feIs-kl0T K6% 2 +face-cloths 'feIs-kl0Ts Kj% 2 +face-cream 'feIs-krim M6% 2 +face-creams 'feIs-krimz Mj% 2 +face-lift 'feIs-lIft K6% 2 +face-lifting 'feIs-lIftIN K6% 3 +face-liftings 'feIs-lIftINz Kj$ 3 +face-lifts 'feIs-lIfts Kj% 2 +face-pack 'feIs-p&k K6% 2 +face-packs 'feIs-p&ks Kj% 2 +face-powder 'feIs-paUd@R M6% 3 +face-powders 'feIs-paUd@z Mj% 3 +face-saver 'feIs-seIv@R K6% 3 +face-savers 'feIs-seIv@z Kj% 3 +face-saving 'feIs-seIvIN L@%,OA% 3 +faced feIst Jc%,Jd% 12C,6A,6C,14,15B +faceless 'feIsl@s OA% 2 +facer 'feIs@R K6$ 2 +facers 'feIs@z Kj$ 2 +faces 'feIsIz Ja%,Kj% 22C,6A,6C,14,15B +facet 'f&sIt K6% 2 +facetious f@'siS@s OA% 3 +facetiously f@'siS@slI Pu% 4 +facetiousness f@'siS@sn@s L@% 4 +facets 'f&sIts Kj% 2 +facia 'feIS@ K6$ 2 +facial 'feISl K6%,OA% 2 +facials 'feISlz Kj$ 2 +facias 'feIS@z Kj$ 2 +facile 'f&saIl OA% 2 +facilitate f@'sIlIteIt H2% 46A +facilitated f@'sIlIteItId Hc%,Hd% 56A +facilitates f@'sIlIteIts Ha% 46A +facilitating f@'sIlIteItIN Hb% 56A +facilities f@'sIlItIz Mj% 4 +facility f@'sIlItI M8% 4 +facing 'feIsIN Jb%,K6% 22C,6A,6C,14,15B +facings 'feIsINz Kj% 2 +facsimile f&k'sIm@lI K6% 4 +facsimiles f&k'sIm@lIz Kj% 4 +fact f&kt M6* 1 +fact-finding 'f&kt-faIndIN OA% 3 +faction 'f&kSn M6% 2 +factions 'f&kSnz Mj% 2 +factious 'f&kS@s OA$ 2 +factitious f&k'tIS@s OA$ 3 +factor 'f&kt@R K6% 2 +factories 'f&kt@rIz Kj% 3 +factorize 'f&kt@raIz H2$ 36A +factorized 'f&kt@raIzd Hc$,Hd$ 36A +factorizes 'f&kt@raIzIz Ha$ 46A +factorizing 'f&kt@raIzIN Hb$ 46A +factors 'f&kt@z Kj% 2 +factory 'f&kt@rI K8% 3 +factotum f&k't@Ut@m K6% 3 +factotums f&k't@Ut@mz Kj$ 3 +facts f&kts Mj% 1 +factual 'f&ktSU@l OA% 3 +factually 'f&ktSU@lI Pu% 4 +faculties 'f&kltIz Kj% 3 +faculty 'f&kltI K8% 3 +fad f&d K6% 1 +faddier 'f&dI@R Or% 3 +faddiest 'f&dIIst Os% 3 +faddily 'f&d@lI Pu% 3 +faddy 'f&dI OD% 2 +fade feId J2% 12A,2C,3A,6A,15B +faded 'feIdId Jc%,Jd% 22A,2C,3A,6A,15B +fades feIdz Ja% 12A,2C,3A,6A,15B +fading 'feIdIN Jb% 22A,2C,3A,6A,15B +fads f&dz Kj% 1 +faeces 'fisiz Kj% 2 +faerie 'fe@rI K6$ 2 +faeries 'fe@rIz Kj$ 2 +faery 'fe@rI K8$ 2 +fag f&g J4%,M6% 12A,2C,3A,6A,15B +fag-end 'f&g-end K6% 2 +fag-ends 'f&g-endz Kj% 2 +fagged f&gd Jc%,Jd% 12A,2C,3A,6A,15B +fagging 'f&gIN Jb% 22A,2C,3A,6A,15B +faggot 'f&g@t K6% 2 +faggots 'f&g@ts Kj% 2 +fags f&gz Ja%,Mj% 12A,2C,3A,6A,15B +faience ,feI'Ans L@$ 2 +fail feIl J0%,L@% 12A,2C,3A,4A,6A +fail-safe 'feIl-seIf OA% 2 +failed feIld Jc%,Jd% 12A,2C,3A,4A,6A +failing 'feIlIN Jb%,K6%,T-% 22A,2C,3A,4A,6A +failings 'feIlINz Kj% 2 +fails feIlz Ja% 12A,2C,3A,4A,6A +failure 'feIlj@R M6% 2 +failures 'feIlj@z Mj% 2 +fain feIn Pu$ 1 +faint feInt I0%,K6%,OC% 12A,2C +faint-hearted feInt-'hAtId OA% 3 +fainted 'feIntId Ic%,Id% 22A,2C +fainter 'feInt@R Or% 2 +faintest 'feIntIst Os% 2 +fainting 'feIntIN Ib% 22A,2C +faintly 'feIntlI Pu% 2 +faintness 'feIntn@s L@% 2 +faints feInts Ia%,Kj% 12A,2C +fair fe@R K6%,OC%,Pu% 1 +fair-minded fe@-'maIndId OA% 3 +fairer 'fe@r@R Or% 2 +fairest 'fe@rIst Os% 2 +fairground 'fe@graUnd K6% 2 +fairgrounds 'fe@graUndz Kj% 2 +fairies 'fe@rIz Kj% 2 +fairish 'fe@rIS OA% 2 +fairly 'fe@lI Pu% 2 +fairness 'fe@nIs L@% 2 +fairs fe@z Kj% 1 +fairway 'fe@weI K6% 2 +fairways 'fe@weIz Kj% 2 +fairy 'fe@rI K8% 2 +fairyland 'fe@rIl&nd K6% 3 +fairylands 'fe@rIl&ndz Kj$ 3 +fairytale 'fe@rIteIl K6% 3 +fairytales 'fe@rIteIlz Kj% 3 +fait accompli ,feIt @'k0mpli Ki% 4 +faith feIT M6% 1 +faith-healing 'feIT-hilIN L@% 3 +faithful 'feITf@l OA% 2 +faithfully 'feITf@lI Pu% 3 +faithfulness 'feITfln@s L@% 3 +faithless 'feITlIs OA% 2 +faithlessly 'feITlIslI Pu% 3 +faithlessness 'feITlIsn@s L@% 3 +faiths feITs Mj% 1 +faits accomplis ,feIt @'k0mpli Kj$ 4 +fake feIk H2%,K6% 16A,15B +faked feIkt Hc%,Hd% 16A,15B +fakes feIks Ha%,Kj% 16A,15B +faking 'feIkIN Hb% 26A,15B +fakir 'feIkI@R K6$ 2 +fakirs 'feIkI@z Kj$ 2 +falcon 'fOlk@n K6% 2 +falconry 'f0lk@nrI L@% 3 +falcons 'fOlk@nz Kj% 2 +fall fOl I5%,K6% 12A,2B,2C,2D,3A +fallacies 'f&l@sIz Mj% 3 +fallacious f@'leIS@s OA% 3 +fallacy 'f&l@sI M8% 3 +fallen 'fOl@n Id% 22A,2B,2C,2D,3A +fallibility ,f&l@'bIlItI L@% 5 +fallible 'f&l@bl OA% 3 +falling 'fOlIN Ib% 22A,2B,2C,2D,3A +fallout 'fOlaUt L@% 2 +fallow 'f&l@U L@%,OA% 2 +fallow-deer 'f&l@U-dI@R K9$ 4 +falls fOlz Ia%,Kj% 12A,2B,2C,2D,3A +false fOls OA%,Pu% 1 +falsehood 'fOlshUd M6% 2 +falsehoods 'fOlshUdz Mj% 2 +falsely 'fOlslI Pu% 2 +falseness 'fOlsn@s L@% 2 +falsetto fOl'set@U K6%,OA% 3 +falsettos fOl'set@Uz Kj% 3 +falsies 'fOlsIz Kj% 2 +falsification ,fOlsIfI'keISn M6% 5 +falsifications ,fOlsIfI'keISnz Mj$ 5 +falsified 'fOlsIfaId Hc%,Hd% 36A +falsifies 'fOlsIfaIz Ha% 36A +falsify 'fOlsIfaI H3% 36A +falsifying 'fOlsIfaIIN Hb% 46A +falsities 'fOlsItIz Mj$ 3 +falsity 'fOlsItI M8% 3 +falter 'fOlt@R J0% 22A,2C,15B +faltered 'fOlt@d Jc%,Jd% 22A,2C,15B +faltering 'fOlt@rIN Jb% 32A,2C,15B +falteringly 'fOlt@rINlI Pu% 4 +falters 'fOlt@z Ja% 22A,2C,15B +fame feIm L@% 1 +famed feImd OA% 1 +familiar f@'mIlI@R K6$,OA% 4 +familiarities f@,mIlI'&rItIz Mj% 6 +familiarity f@,mIlI'&rItI M8% 6 +familiarize f@'mIlI@raIz H2% 56A,14 +familiarized f@'mIlI@raIzd Hc%,Hd% 56A,14 +familiarizes f@'mIlI@raIzIz Ha% 66A,14 +familiarizing f@'mIlI@raIzIN Hb% 66A,14 +familiarly f@'mIlI@lI Pu% 5 +familiars f@'mIlI@z Kj$ 4 +families 'f&m@lIz Mj% 3 +family 'f&m@lI M8* 3 +famine 'f&mIn M6% 2 +famines 'f&mInz Mj% 2 +famish 'f&mIS J1$ 22A,3A,6A +famished 'f&mISt Jc$,Jd% 22A,3A,6A +famishes 'f&mISIz Ja$ 32A,3A,6A +famishing 'f&mISIN Jb$ 32A,3A,6A +famous 'feIm@s OA% 2 +famously 'feIm@slI Pu% 3 +fan f&n J4%,K6% 12C,6A +fan-belt 'f&n-belt K6% 2 +fan-belts 'f&n-belts Kj% 2 +fanatic f@'n&tIk K6%,OA% 3 +fanatical f@'n&tIkl OA% 4 +fanatically f@'n&tIklI Pu% 4 +fanaticism f@'n&tIsIz@m M6% 5 +fanaticisms f@'n&tIsIz@mz Mj$ 5 +fanatics f@'n&tIks Kj% 3 +fancied 'f&nsId Hc%,Hd% 26A,6C,9,16B,19C,25 +fancier 'f&nsI@R K6%,Or% 3 +fanciers 'f&nsI@z Kj% 3 +fancies 'f&nsIz Ha%,Mj% 26A,6C,9,16B,19C,25 +fanciest 'f&nsIIst Os% 3 +fanciful 'f&nsIf@l OA% 3 +fancifully 'f&nsIf@lI Pu% 4 +fancy 'f&nsI H3%,M8%,OD% 26A,6C,9,16B,19C,25 +fancy-free ,f&nsI-'fri OA% 3 +fancying 'f&nsIIN Hb% 36A,6C,9,16B,19C,25 +fandango ,f&n'd&Ng@U K6$ 3 +fandangos ,f&n'd&Ng@Uz Kj$ 3 +fanfare 'f&nfe@R K6% 2 +fanfares 'f&nfe@z Kj% 2 +fang f&N K6% 1 +fangs f&Nz Kj% 1 +fanlight 'f&nlaIt K6% 2 +fanlights 'f&nlaIts Kj% 2 +fanned f&nd Jc%,Jd% 12C,6A +fannies 'f&nIz Kj$ 2 +fanning 'f&nIN Jb% 22C,6A +fanny 'f&nI K8% 2 +fans f&nz Ja%,Kj% 12C,6A +fantan ,f&n't&n L@$ 2 +fantasia f&n'teIzI@ K6% 4 +fantasias f&n'teIzI@z Kj% 4 +fantasies 'f&nt@sIz Mj% 3 +fantastic f&n't&stIk OA% 3 +fantastically f&n't&stIklI Pu% 4 +fantasy 'f&nt@sI M8% 3 +far fAR OA*,Pu* 1 +far-famed fA-'feImd OA% 2 +far-fetched fA-'fetSt OA% 2 +far-flung fA-'flVN OA% 2 +far-off fAr-'0f OA% 2 +far-reaching fA-'ritSIN OA% 3 +far-seeing fA-'siIN OA% 3 +far-sighted fA-'saItId OA% 3 +faraway 'fAr@weI OA% 3 +farce fAs M6% 1 +farces 'fAsIz Mj% 2 +farcical 'fAsIkl OA% 3 +farcically 'fAsIklI Pu% 3 +fare fe@R I2%,M6% 12C +fare-stage 'fe@-steIdZ K6% 2 +fare-stages 'fe@-steIdZIz Kj% 3 +fared fe@d Ic%,Id% 12C +fares fe@z Ia%,Mj% 12C +farewell ,fe@'wel K6%,W-% 2 +farewells ,fe@'welz Kj% 2 +farinaceous ,f&rI'neIS@s OA$ 4 +faring 'fe@rIN Ib% 22C +farm fAm J0%,K6% 12A,6A,15B +farmed fAmd Jc%,Jd% 12A,6A,15B +farmer 'fAm@R K6% 2 +farmers 'fAm@z Kj% 2 +farmhand 'fAmh&nd K6% 2 +farmhands 'fAmh&ndz Kj% 2 +farmhouse 'fAmhaUs K6% 2 +farmhouses 'fAmhaUzIz Kj% 3 +farming 'fAmIN Jb% 22A,6A,15B +farms fAmz Ja%,Kj% 12A,6A,15B +farmstead 'fAmsted K6% 2 +farmsteads 'fAmstedz Kj% 2 +farmyard 'fAmjAd K6% 2 +farmyards 'fAmjAdz Kj% 2 +farrago f@'rAg@U K6% 3 +farragoes f@'rAg@Uz Kj$ 3 +farragos f@'rAg@Uz Kj$ 3 +farrier 'f&rI@R K6$ 3 +farriers 'f&rI@z Kj$ 3 +farrow 'f&r@U I0$,K6$ 2 +farrowed 'f&r@Ud Ic$,Id$ 2 +farrowing 'f&r@UIN Ib$ 3 +farrows 'f&r@Uz Ia$,Kj$ 2 +fart fAt I0%,K6% 1 +farted 'fAtId Ic%,Id% 2 +farther 'fAD@R Or%,Pu% 2 +farthest 'fADIst Os%,Pu% 2 +farthing 'fADIN K6% 2 +farthings 'fADINz Kj% 2 +farting 'fAtIN Ib% 2 +farts fAts Ia%,Kj% 1 +fascia 'feIS@ K6$ 2 +fascias 'feIS@z Kj$ 2 +fascinate 'f&sIneIt H2% 36A +fascinated 'f&sIneItId Hc%,Hd% 46A +fascinates 'f&sIneIts Ha% 36A +fascinating 'f&sIneItIN Hb%,OA% 46A +fascinatingly 'f&sIneItINlI Pu% 5 +fascination ,f&sI'neISn M6% 4 +fascinations ,f&sI'neISnz Mj% 4 +fascism 'f&SIz@m L@% 3 +fascist 'f&SIst K6%,OA% 2 +fascists 'f&SIsts Kj% 2 +fashion 'f&Sn H0%,M6% 26A,15A +fashionable 'f&Sn@bl OA% 3 +fashionably 'f&Sn@blI Pu% 3 +fashioned 'f&Snd Hc%,Hd% 26A,15A +fashioning 'f&SnIN Hb% 36A,15A +fashions 'f&Snz Ha%,Mj% 26A,15A +fast fAst I0%,K6%,OC%,Pu% 12A,2B +fasted 'fAstId Ic%,Id% 22A,2B +fasten 'fAsn J0% 22A,2C,3A,6A,14,15A,15B +fastened 'fAsnd Jc%,Jd% 22A,2C,3A,6A,14,15A,15B +fastener 'fAsn@R K6% 2 +fasteners 'fAsn@z Kj% 2 +fastening 'fAsnIN Jb%,K6% 22A,2C,3A,6A,14,15A,15B +fastenings 'fAsnINz Kj% 2 +fastens 'fAsnz Ja% 22A,2C,3A,6A,14,15A,15B +faster 'fAst@R Or% 2 +fastest 'fAstIst Os% 2 +fastidious f@'stIdI@s OA% 4 +fastidiously f@'stIdI@slI Pu% 5 +fastidiousness f@'stIdI@sn@s L@% 5 +fasting 'fAstIN Ib% 22A,2B +fastness 'fAstn@s M7$ 2 +fastnesses 'fAstn@sIz Mj$ 3 +fasts fAsts Ia%,Kj% 12A,2B +fat f&t H4%,M6%,OE% 1 +fatal 'feItl OA% 2 +fatalism 'feIt@lIz@m L@% 4 +fatalist 'feIt@lIst K6% 3 +fatalistic ,feIt@'lIstIk OA% 4 +fatalists 'feIt@lIsts Kj% 3 +fatalities f@'t&lItIz Mj% 4 +fatality f@'t&lItI M8% 4 +fate feIt H2$,M6% 117 +fated 'feItId Hc$,Hd% 217 +fateful 'feItfUl OA% 2 +fatefully 'feItfUlI Pu% 3 +fates feIts Ha$,Mj% 117 +fathead 'f&thed K6% 2 +fatheads 'f&thedz Kj% 2 +father 'fAD@R H0%,K6* 26A,14 +father-in-law 'fAD@r-In-lO Ki% 4 +fathered 'fAD@d Hc%,Hd% 26A,14 +fatherhood 'fAD@hUd L@% 3 +fathering 'fAD@rIN Hb% 36A,14 +fatherland 'fAD@l&nd K6% 3 +fatherlands 'fAD@l&ndz Kj$ 3 +fatherless 'fAD@l@s OA% 3 +fatherly 'fAD@lI OA% 3 +fathers 'fAD@z Ha%,Kj% 26A,14 +fathers-in-law 'fAD@z-In-lO Kj% 4 +fathom 'f&D@m H0%,K6% 26A +fathomed 'f&D@md Hc%,Hd% 26A +fathoming 'f&D@mIN Hb% 36A +fathomless 'f&D@ml@s OA% 3 +fathoms 'f&D@mz Ha%,Kj% 26A +fatigue f@'tig H2%,M6% 26A +fatigue-parties f@'tig-pAtIz Kj$ 4 +fatigue-party f@'tig-pAtI K8$ 4 +fatigued f@'tigd Hc%,Hd% 26A +fatigues f@'tigz Ha%,Mj% 26A +fatiguing f@'tigIN Hb% 36A +fating 'feItIN Hb$ 217 +fatless 'f&tlIs OA$ 2 +fatness 'f&tn@s L@% 2 +fats f&ts Ha%,Mj% 1 +fatted 'f&tId Hc%,Hd% 2 +fatten 'f&tn J0% 22A,2C,6A,15B +fattened 'f&tnd Jc%,Jd% 22A,2C,6A,15B +fattening 'f&tnIN Jb% 22A,2C,6A,15B +fattens 'f&tnz Ja% 22A,2C,6A,15B +fatter 'f&t@R Or% 2 +fattest 'f&tIst Os% 2 +fattier 'f&tI@R Or% 3 +fattiest 'f&tIIst Os% 3 +fatting 'f&tIN Hb$ 2 +fattish 'f&tIS OA% 2 +fatty 'f&tI OD% 2 +fatuities f@'tjuItIz Mj$ 4 +fatuity f@'tjuItI M8$ 4 +fatuous 'f&tSU@s OA% 3 +fatuously 'f&tSU@slI Pu% 4 +fatuousness 'f&tSU@sn@s L@% 4 +faucet 'fOsIt K6$ 2 +faucets 'fOsIts Kj$ 2 +faugh fO W-$ 1 +fault fOlt H0%,K6% 16A +fault-finder 'fOlt-faInd@R K6% 3 +fault-finders 'fOlt-faInd@z Kj% 3 +fault-finding 'fOlt-faIndIN L@% 3 +faulted 'fOltId Hc%,Hd% 26A +faultier 'fOltI@R Or$ 3 +faultiest 'fOltIIst Os$ 3 +faultily 'fOltIlI Pu% 3 +faulting 'fOltIN Hb$ 26A +faultless 'fOltl@s OA% 2 +faultlessly 'fOltlIslI Pu% 3 +faults fOlts Ha$,Kj% 16A +faulty 'fOltI OD% 2 +faun fOn K6$ 1 +fauna 'fOn@ Kj% 2 +fauns fOnz Kj$ 1 +faux pas ,f@U 'pA K9% 2 +favour 'feIv@R H0%,M6% 26A,14 +favourable 'feIv@r@bl OA% 4 +favourably 'feIv@r@blI Pu% 4 +favoured 'feIv@d Hc%,Hd% 26A,14 +favouring 'feIv@rIN Hb% 36A,14 +favourite 'feIv@rIt K6%,Oq% 3 +favourites 'feIv@rIts Kj% 3 +favouritism 'feIvrItIz@m L@% 4 +favours 'feIv@z Ha%,Mj% 26A,14 +fawn fOn I0%,K6% 12A,3A +fawned fOnd Ic%,Id% 12A,3A +fawning 'fOnIN Ib% 22A,3A +fawns fOnz Ia%,Kj% 12A,3A +fealties 'fi@ltIz Kj$ 3 +fealty 'fi@ltI K8$ 3 +fear fI@R J0%,M6% 12A,3A,4A,6A,6C,9 +feared fI@d Jc%,Jd% 12A,3A,4A,6A,6C,9 +fearful 'fI@f@l OA% 2 +fearfully 'fI@f@lI Pu% 3 +fearfulness 'fI@f@ln@s L@% 3 +fearing 'fI@rIN Jb% 22A,3A,4A,6A,6C,9 +fearless 'fI@l@s OA% 2 +fearlessly 'fI@l@slI Pu% 3 +fearlessness 'fI@l@sn@s L@% 3 +fears fI@z Ja%,Mj% 12A,3A,4A,6A,6C,9 +fearsome 'fI@s@m OA% 2 +fearsomely 'fI@s@mlI Pu% 3 +feasibility ,fiz@'bIlItI L@% 5 +feasible 'fiz@bl OA% 3 +feast fist J0%,K6% 12A,2B,6A,14 +feast-day 'fist-deI K6% 2 +feast-days 'fist-deIz Kj% 2 +feasted 'fistId Jc%,Jd% 22A,2B,6A,14 +feasting 'fistIN Jb% 22A,2B,6A,14 +feasts fists Ja%,Kj% 12A,2B,6A,14 +feat fit K6% 1 +feather 'feD@R H0%,K6% 26A +feather-boa ,feD@-'b@U@ K6$ 4 +feather-boas ,feD@-'b@U@z Kj$ 4 +featherbed 'feD@bed H4$,K6% 3 +featherbedded 'feD@bedId Hc$,Hd% 4 +featherbedding 'feD@bedIN Hb$ 4 +featherbeds 'feD@bedz Ha$,Kj% 3 +featherbrained 'feD@breInd OA% 3 +feathered 'feD@d Hc%,Hd% 26A +feathering 'feD@rIN Hb% 36A +feathers 'feD@z Ha%,Kj% 26A +featherweight 'feD@weIt K6% 3 +featherweights 'feD@weIts Kj% 3 +feathery 'feD@rI OA% 3 +feats fits Kj% 1 +feature 'fitS@R H2%,K6% 26A +featured 'fitS@d Hc%,Hd% 26A +featureless 'fitS@l@s OA% 3 +features 'fitS@z Ha%,Kj% 26A +featuring 'fitS@rIN Hb% 36A +febrile 'fibraIl OA$ 2 +feckless 'feklIs OA% 2 +fecklessly 'feklIslI Pu% 3 +fecklessness 'feklIsn@s L@% 3 +fecund 'fek@nd OA% 2 +fecundity fI'kVndItI L@% 4 +fed fed Jc%,Jd% 12A,2C,3A,6A,14,15A,15B +federal 'fed@r@l OA% 3 +federalism 'fed@r@lIz@m L@% 5 +federalist 'fed@r@lIst K6% 4 +federalists 'fed@r@lIsts Kj% 4 +federate 'fed@reIt J2% 32A,6A +federated 'fed@reItId Jc%,Jd% 42A,6A +federates 'fed@reIts Ja% 32A,6A +federating 'fed@reItIN Jb% 42A,6A +federation ,fed@'reISn M6% 4 +federations ,fed@'reISnz Mj% 4 +fee fi H5$,M6% 16A +feeble 'fibl OB% 2 +feeble-minded ,fibl-'maIndId OA% 4 +feebleness 'fibln@s L@% 3 +feebler 'fibl@R Or% 2 +feeblest 'fiblIst Os% 2 +feebly 'fiblI Pu% 2 +feed fid Hc$,Hd$,J5%,M6% 12A,2C,3A,6A,14,15A,15B +feedback 'fidb&k L@% 2 +feeder 'fid@R K6% 2 +feeders 'fid@z Kj% 2 +feeding 'fidIN Jb% 22A,2C,3A,6A,14,15A,15B +feeding-bottle 'fidIN-b0tl K6% 4 +feeding-bottles 'fidIN-b0tlz Kj% 4 +feeds fidz Ja%,Mj% 12A,2C,3A,6A,14,15A,15B +feeing 'fiIN Hb$ 26A +feel fil J5*,Ki% 12A,2C,2D,3A,6A,6C,9,10,15B,18A,19A,25 +feeler 'fil@R K6% 2 +feelers 'fil@z Kj% 2 +feeling 'filIN Jb%,M6%,OA% 22A,2C,2D,3A,6A,6C,9,10,15B,18A,19A,25 +feelingly 'filINlI Pu% 3 +feelings 'filINz Mj% 2 +feels filz Ja% 12A,2C,2D,3A,6A,6C,9,10,15B,18A,19A,25 +fees fiz Ha$,Mj% 16A +feet fit Kj* 1 +feign feIn H0% 16A,9 +feigned feInd Hc%,Hd% 16A,9 +feigning 'feInIN Hb% 26A,9 +feigns feInz Ha% 16A,9 +feint feInt I0%,K6% 12A,3A +feinted 'feIntId Ic%,Id% 22A,3A +feinting 'feIntIN Ib% 22A,3A +feints feInts Ia%,Kj% 12A,3A +feldspar 'feldspAR L@$ 2 +felicitate f@'lIsIteIt H2$ 46A,14 +felicitated f@'lIsIteItId Hc$,Hd$ 56A,14 +felicitates f@'lIsIteIts Ha$ 46A,14 +felicitating f@'lIsIteItIN Hb$ 56A,14 +felicitation f@,lIsI'teISn K6$ 5 +felicitations f@,lIsI'teISnz Kj% 5 +felicities f@'lIsItIz Mj% 4 +felicitous f@'lIsIt@s OA% 4 +felicitously f@'lIsIt@slI Pu% 5 +felicity f@'lIsItI M8% 4 +feline 'filaIn OA% 2 +fell fel H0%,Ic%,OA$ 12A,2B,2C,2D,3A,6A +fellah 'fel@ Ki$ 2 +fellaheen ,fel@'hin Kj$ 3 +fellahin ,fel@'hin Kj$ 3 +felled feld Hc%,Hd% 12A,2B,2C,2D,3A,6A +felling 'felIN Hb% 22A,2B,2C,2D,3A,6A +fellow 'fel@U K6% 2 +fellow-feeling ,fel@U-'filIN L@% 4 +fellow-traveller ,fel@U-'tr&vl@R K6% 4 +fellow-travellers ,fel@U-'tr&vl@z Kj% 4 +fellows 'fel@Uz Kj% 2 +fellowship 'fel@USIp M6% 3 +fellowships 'fel@USIps Mj% 3 +fells felz Ha% 12A,2B,2C,2D,3A,6A +felon 'fel@n K6% 2 +felonies 'fel@nIz Mj% 3 +felonious fI'l@UnI@s OA% 4 +felons 'fel@nz Kj% 2 +felony 'fel@nI M8% 3 +felspar 'felspAR L@$ 2 +felt felt Jc*,Jd*,L@% 12A,2C,2D,3A,6A,6C,9,10,15B,18A,19A,25 +felucca fe'lVk@ K6$ 3 +feluccas fe'lVk@z Kj$ 3 +fem fem Y~% 1 +female 'fimeIl K6%,OA% 2 +females 'fimeIlz Kj% 2 +feminine 'fem@nIn OA% 3 +femininity ,fem@'nInItI L@% 5 +feminism 'femInIz@m L@% 4 +feminist 'femInIst K6% 3 +feminists 'femInIsts Kj% 3 +femur 'fim@R K6$ 2 +femurs 'fim@z Kj$ 2 +fen fen K6% 1 +fence fens H2%,K6% 12A,2C,3A,6A,15B +fenced fenst Hc%,Hd% 12A,2C,3A,6A,15B +fencer 'fens@R K6% 2 +fencers 'fens@z Kj% 2 +fences 'fensIz Ha%,Kj% 22A,2C,3A,6A,15B +fencing 'fensIN Hb%,L@% 22A,2C,3A,6A,15B +fend fend J0% 115B +fended 'fendId Jc%,Jd% 215B +fender 'fend@R K6% 2 +fenders 'fend@z Kj% 2 +fending 'fendIN Jb% 215B +fends fendz Ja% 115B +fennel 'fenl L@% 2 +fens fenz Kj% 1 +feoff fif K6$ 1 +feoffs fifs Kj$ 1 +feral 'fI@r@l OA$ 2 +ferment 'f3ment K6% 2 +ferment f@'ment J0% 22A,6A +fermentation ,f3men'teISn L@% 4 +fermented f@'mentId Jc%,Jd% 32A,6A +fermenting f@'mentIN Jb% 32A,6A +ferments 'f3ments Kj% 2 +ferments f@'ments Ja% 22A,6A +fern f3n K6% 1 +fernier 'f3nI@R Or$ 3 +ferniest 'f3nIIst Os$ 3 +ferns f3nz Kj% 1 +ferny 'f3nI OD% 2 +ferocious f@'r@US@s OA% 3 +ferociously f@'r@US@slI Pu% 4 +ferocities f@'r0sItIz Mj% 4 +ferocity f@'r0sItI M8% 4 +ferret 'ferIt J0%,K6% 22A,2C,15B +ferreted 'ferItId Jc%,Jd% 32A,2C,15B +ferreting 'ferItIN Jb% 32A,2C,15B +ferrets 'ferIts Ja%,Kj% 22A,2C,15B +ferried 'ferId Jc%,Jd% 22A,2C,6A,15A,15B +ferries 'ferIz Ja%,Kj% 22A,2C,6A,15A,15B +ferroconcrete ,fer@U'k0Nkrit L@$ 4 +ferrous 'fer@s OA% 2 +ferrule 'ferul K6$ 2 +ferrules 'ferulz Kj$ 2 +ferry 'ferI J3%,K8% 22A,2C,6A,15A,15B +ferryboat 'ferIb@Ut K6% 3 +ferryboats 'ferIb@Uts Kj% 3 +ferrying 'ferIIN Jb% 32A,2C,6A,15A,15B +ferryman 'ferIm&n Ki% 3 +ferrymen 'ferImen Kj% 3 +fertile 'f3taIl OA% 2 +fertility f@'tIlItI L@% 4 +fertilization ,f3t@laI'zeISn L@% 5 +fertilize 'f3t@laIz H2% 36A +fertilized 'f3t@laIzd Hc%,Hd% 36A +fertilizer 'f3t@laIz@R M6% 4 +fertilizers 'f3t@laIz@z Mj% 4 +fertilizes 'f3t@laIzIz Ha% 46A +fertilizing 'f3t@laIzIN Hb% 46A +ferule 'ferul K6$ 2 +ferules 'ferulz Kj$ 2 +fervency 'f3v@nsI L@$ 3 +fervent 'f3v@nt OA% 2 +fervently 'f3v@ntlI Pu% 3 +fervid 'f3vId OA$ 2 +fervidly 'f3vIdlI Pu$ 3 +fervour 'f3v@R L@% 2 +festal 'festl OA$ 2 +fester 'fest@R I0% 22A +festered 'fest@d Ic%,Id% 22A +festering 'fest@rIN Ib% 32A +festers 'fest@z Ia% 22A +festival 'festIvl K6% 3 +festivals 'festIvlz Kj% 3 +festive 'festIv OA% 2 +festivities fe'stIvItIz Mj% 4 +festivity fe'stIvItI M8% 4 +festoon fe'stun H0%,K6% 26A +festooned fe'stund Hc%,Hd% 26A +festooning fe'stunIN Hb% 36A +festoons fe'stunz Ha%,Kj% 26A +fetal 'fitl OA$ 2 +fetch fetS J1% 16A,12B,12C,13B,15A,15B +fetched fetSt Jc%,Jd% 16A,12B,12C,13B,15A,15B +fetches 'fetSIz Ja% 26A,12B,12C,13B,15A,15B +fetching 'fetSIN Jb%,OA% 26A,12B,12C,13B,15A,15B +fete-day 'feIt-deI K6% 2 +fete-days 'feIt-deIz Kj% 2 +fetid 'fetId OA% 2 +fetish 'fetIS K7% 2 +fetishes 'fetISIz Kj% 3 +fetlock 'fetl0k K6$ 2 +fetlocks 'fetl0ks Kj$ 2 +fetter 'fet@R H0%,K6% 26A +fettered 'fet@d Hc%,Hd% 26A +fettering 'fet@rIN Hb% 36A +fetters 'fet@z Ha%,Kj% 26A +fettle 'fetl L@% 2 +feud fjud K6% 1 +feudal 'fjudl OA% 2 +feudalism 'fjudlIz@m L@% 4 +feudatories 'fjud@t@rIz Kj$ 4 +feudatory 'fjud@t@rI K8$,OA$ 4 +feuds fjudz Kj% 1 +fever 'fiv@R M6% 2 +fevered 'fiv@d OA% 2 +feverish 'fiv@rIS OA% 3 +feverishly 'fiv@rISlI Pu% 4 +fevers 'fiv@z Mj% 2 +few fju OC*,Qx* 1 +fewer 'fju@R Or% 2 +fewest 'fjuIst Os% 2 +fewness 'fjun@s L@$ 2 +fey feI OA$ 1 +fez fez K7$ 1 +fezes 'fezIz Kj$ 2 +fianc_e fI'0nseI K6% 3 +fianc_ee fI'0nseI K6% 3 +fianc_ees fI'0nseIz Kj% 3 +fianc_es fI'0nseIz Kj% 3 +fiasco fI'&sk@U K6% 3 +fiascos fI'&sk@Uz Kj% 3 +fiat 'faI&t K6$ 2 +fiats 'faI&ts Kj$ 2 +fib fIb I4%,K6% 12A +fibbed fIbd Ic%,Id% 12A +fibber 'fIb@R K6% 2 +fibbers 'fIb@z Kj% 2 +fibbing 'fIbIN Ib%,L@% 22A +fibre 'faIb@R M6% 2 +fibreboard 'faIb@bOd L@% 3 +fibreglass 'faIb@glAs L@% 3 +fibres 'faIb@z Mj% 2 +fibrositis ,faIbr@'saItIs L@% 4 +fibrous 'faIbr@s OA% 2 +fibs fIbz Ia%,Kj% 12A +fibula 'fIbjUl@ K6$ 3 +fibulas 'fIbjUl@z Kj$ 3 +fickle 'fIkl OA% 2 +fickleness 'fIkln@s L@% 3 +fiction 'fIkSn M6% 2 +fictional 'fIkS@nl OA% 3 +fictions 'fIkSnz Mj% 2 +fictitious fIk'tIS@s OA% 3 +fiddle 'fIdl H2%,K6% 22A,2C,6A +fiddled 'fIdld Hc%,Hd% 22A,2C,6A +fiddler 'fIdl@R K6% 2 +fiddlers 'fIdl@z Kj% 2 +fiddles 'fIdlz Ha%,Kj% 22A,2C,6A +fiddlestick 'fIdlstIk K6$ 3 +fiddlesticks 'fIdlstIks Kj$,W-% 3 +fiddling 'fIdlIN Hb%,OA% 22A,2C,6A +fidelity fI'delItI L@% 4 +fidget 'fIdZIt J0%,K6% 22A,2C,6A +fidgeted 'fIdZItId Jc%,Jd% 32A,2C,6A +fidgeting 'fIdZItIN Jb% 32A,2C,6A +fidgets 'fIdZIts Ja%,Kj% 22A,2C,6A +fidgety 'fIdZItI OA% 3 +fie faI W-$ 1 +fief fif K6$ 1 +fiefs fifs Kj$ 1 +field fild J0%,K6% 12A,6A +field-hospital fild-'h0spItl K6$ 4 +field-hospitals fild-'h0spItlz Kj$ 4 +field-officer fild-'0fIs@R K6$ 4 +field-officers fild-'0fIs@z Kj$ 4 +fielded 'fildId Jc%,Jd% 22A,6A +fielder 'fild@R K6% 2 +fielders 'fild@z Kj% 2 +fielding 'fildIN Jb% 22A,6A +fields fildz Ja%,Kj% 12A,6A +fieldsman 'fildzm@n Ki% 2 +fieldsmen 'fildzm@n Kj% 2 +fieldwork 'fildw3k M6% 2 +fieldworks 'fildw3ks Mj$ 2 +fiend find K6% 1 +fiendish 'findIS OA% 2 +fiendishly 'findISlI Pu% 3 +fiends findz Kj% 1 +fierce fI@s OB% 1 +fiercely 'fI@slI Pu% 2 +fierceness 'fI@sn@s L@% 2 +fiercer 'fI@s@R Or% 2 +fiercest 'fI@sIst Os% 2 +fierily 'faI@rIlI Pu% 3 +fieriness 'faI@rIn@s L@% 3 +fiery 'faI@rI OA% 3 +fiesta fI'est@ K6$ 3 +fiestas fI'est@z Kj$ 3 +fife faIf K6$ 1 +fifes faIfs Kj$ 1 +fifteen ,fIf'tin K6%,OA% 2 +fifteens ,fIf'tinz Kj% 2 +fifteenth ,fIf'tinT K6%,OA% 2 +fifteenths ,fIf'tinTs Kj% 2 +fifth fIfT K6%,OA% 1 +fifthly 'fIfTlI Pu% 2 +fifths fIfTs Kj% 1 +fifties 'fIftIz Kj% 2 +fiftieth 'fIftI@T K6%,OA% 3 +fiftieths 'fIftI@Ts Kj% 3 +fifty 'fIftI K8%,OA% 2 +fig fIg K6%,Y>% 1 +fig-leaf 'fIg-lif Ki% 2 +fig-leaves 'fIg-livz Kj% 2 +fight faIt J5%,M6% 12A,2B,2C,3A,4A,6A,15A,15B +fighter 'faIt@R K6% 2 +fighters 'faIt@z Kj% 2 +fighting 'faItIN Jb%,L@% 22A,2B,2C,3A,4A,6A,15A,15B +fights faIts Ja%,Mj% 12A,2B,2C,3A,4A,6A,15A,15B +figment 'fIgm@nt K6% 2 +figments 'fIgm@nts Kj% 2 +figs fIgz Kj% 1 +figurative 'fIgj@r@tIv OA% 4 +figuratively 'fIgj@r@tIvlI Pu% 5 +figure 'fIg@R J2%,K6% 22C,3A,9,15A,15B,25 +figured 'fIg@d Jc%,Jd%,OA% 22C,3A,9,15A,15B,25 +figurehead 'fIg@hed K6% 3 +figureheads 'fIg@hedz Kj% 3 +figures 'fIg@z Ja%,Kj% 22C,3A,9,15A,15B,25 +figuring 'fIg@rIN Jb% 32C,3A,9,15A,15B,25 +filament 'fIl@m@nt K6% 3 +filaments 'fIl@m@nts Kj% 3 +filature 'fIl@tS@R K6$ 3 +filatures 'fIl@tS@z Kj$ 3 +filbert 'fIlb@t K6$ 2 +filberts 'fIlb@ts Kj$ 2 +filch fIltS H1$ 16A +filched fIltSt Hc$,Hd$ 16A +filches 'fIltSIz Ha$ 26A +filching 'fIltSIN Hb$ 26A +file faIl J2%,K6% 12C,6A,15A,15B,22 +filed faIld Jc%,Jd% 12C,6A,15A,15B,22 +files faIlz Ja%,Kj% 12C,6A,15A,15B,22 +filial 'fIlI@l OA% 3 +filibuster 'fIlIbVst@R I0%,K6% 4 +filibustered 'fIlIbVst@d Ic%,Id% 4 +filibustering 'fIlIbVst@rIN Ib% 5 +filibusters 'fIlIbVst@z Ia%,Kj% 4 +filigree 'fIlIgri L@$ 3 +filing 'faIlIN Jb% 22C,6A,15A,15B,22 +filings 'faIlINz Kj% 2 +fill fIl J0%,M6% 12A,2C,6A,12B,13B,14,15B +filled fIld Jc%,Jd% 12A,2C,6A,12B,13B,14,15B +fillet 'fIlIt H0%,K6% 26A +filleted 'fIlItId Hc%,Hd% 36A +filleting 'fIlItIN Hb% 36A +fillets 'fIlIts Ha%,Kj% 26A +fillies 'fIlIz Kj$ 2 +filling 'fIlIN Jb%,M6% 22A,2C,6A,12B,13B,14,15B +fillings 'fIlINz Mj% 2 +fillip 'fIlIp K6$ 2 +fillips 'fIlIps Kj$ 2 +fills fIlz Ja%,Mj% 12A,2C,6A,12B,13B,14,15B +filly 'fIlI K8$ 2 +film fIlm J0%,M6% 12A,2C,6A +film-star 'fIlm-stAR K6% 2 +film-stars 'fIlm-stAz Kj% 2 +filmable 'fIlm@bl OA% 3 +filmed fIlmd Jc%,Jd% 12A,2C,6A +filmier 'fIlmI@R Or$ 3 +filmiest 'fIlmIIst Os$ 3 +filming 'fIlmIN Jb% 22A,2C,6A +films fIlmz Ja%,Mj% 12A,2C,6A +filmy 'fIlmI OD% 2 +filter 'fIlt@R J0%,K6% 22A,2C,6A,14,15B +filtered 'fIlt@d Jc%,Jd% 22A,2C,6A,14,15B +filtering 'fIlt@rIN Jb% 32A,2C,6A,14,15B +filters 'fIlt@z Ja%,Kj% 22A,2C,6A,14,15B +filtertipped 'fIlt@tIpt OA% 3 +filth fIlT L@% 1 +filthier 'fIlTI@R Or% 3 +filthiest 'fIlTIIst Os% 3 +filthily 'fIlTIlI Pu% 3 +filthiness 'fIlTIn@s L@% 3 +filthy 'fIlTI OD% 2 +filtrate 'fIltreIt K6$ 2 +filtrate fIl'treIt J2$ 2 +filtrated fIl'treItId Jc$,Jd$ 3 +filtrates 'fIltreIts Kj$ 2 +filtrates fIl'treIts Ja$ 2 +filtrating fIl'treItIN Jb$ 3 +filtration fIl'treISn L@$ 3 +fin fIn K6% 1 +finable 'faIn@bl OA$ 3 +final 'faInl K6%,OA% 2 +finale fI'nAlI K6% 3 +finales fI'nAlIz Kj% 3 +finalist 'faIn@lIst K6% 3 +finalists 'faIn@lIsts Kj% 3 +finality faI'n&lItI L@% 4 +finalize 'faIn@laIz H2% 36A +finalized 'faIn@laIzd Hc%,Hd% 36A +finalizes 'faIn@laIzIz Ha% 46A +finalizing 'faIn@laIzIN Hb% 46A +finally 'faIn@lI Pu% 3 +finals 'faInlz Kj% 2 +finance 'faIn&ns H2%,M6% 26A +financed 'faIn&nst Hc%,Hd% 26A +finances 'faIn&nsIz Ha%,Mj% 36A +financial faI'n&nSl OA% 3 +financially faI'n&nS@lI Pu% 4 +financier faI'n&nsI@R K6% 4 +financiers faI'n&nsI@z Kj% 4 +financing 'faIn&nsIN Hb% 36A +finch fIntS K7% 1 +finches 'fIntSIz Kj% 2 +find faInd H5*,K6% 16A,8,9,10,12A,12B,13A,13B,15A,15B,19B,22,25 +finder 'faInd@R K6% 2 +finders 'faInd@z Kj% 2 +finding 'faIndIN Hb%,K6% 26A,8,9,10,12A,12B,13A,13B,15A,15B,19B,22,25 +findings 'faIndINz Kj% 2 +finds faIndz Ha%,Kj% 16A,8,9,10,12A,12B,13A,13B,15A,15B,19B,22,25 +fine faIn H2%,K6%,OB%,Pu% 16A,14 +fine-tooth 'faIn-tuT Oq% 2 +fineable 'faIn@bl OA$ 3 +fined faInd Hc%,Hd% 16A,14 +finely 'faInlI Pu% 2 +fineness 'faIn+n@s L@% 2 +finer 'faIn@R Or% 2 +finery 'faIn@rI L@% 3 +fines faInz Ha%,Kj% 16A,14 +finesse fI'nes M6% 2 +finesses fI'nesIz Mj$ 3 +finest 'faInIst Os% 2 +finger 'fINg@R H0%,K6% 26A +finger-alphabet ,fINg@r-'&lf@bet K6$ 5 +finger-alphabets ,fINg@r-'&lf@bets Kj$ 5 +finger-bowl 'fINg@-b@Ul K6% 3 +finger-bowls 'fINg@-b@Ulz Kj% 3 +finger-plate 'fINg@-pleIt K6% 3 +finger-plates 'fINg@-pleIts Kj% 3 +finger-post 'fINg@-p@Ust K6$ 3 +finger-posts 'fINg@-p@Usts Kj$ 3 +fingerboard 'fINg@bOd K6% 3 +fingerboards 'fINg@bOdz Kj% 3 +fingered 'fINg@d Hc%,Hd% 26A +fingering 'fINg@rIN Hb% 36A +fingermark 'fINg@mAk K6% 3 +fingermarks 'fINg@mAks Kj% 3 +fingernail ,fINg@'neIl K6% 3 +fingernails ,fINg@'neIlz Kj% 3 +fingerprint 'fINg@prInt K6% 3 +fingerprints 'fINg@prInts Kj% 3 +fingers 'fINg@z Ha%,Kj% 26A +fingerstall 'fINg@stOl K6$ 3 +fingerstalls 'fINg@stOlz Kj$ 3 +fingertip 'fINg@tIp K6% 3 +fingertips 'fINg@tIps Kj% 3 +finical 'fInIkl OA$ 3 +finicky 'fInIkI OA% 3 +fining 'faInIN Hb% 26A,14 +finis 'fInIs Ki$ 2 +finish 'fInIS J1%,M7% 22A,2C,6A,6C,15B,24B +finished 'fInISt Jc%,Jd% 22A,2C,6A,6C,15B,24B +finishes 'fInISIz Ja%,Mj% 32A,2C,6A,6C,15B,24B +finishing 'fInISIN Jb% 32A,2C,6A,6C,15B,24B +finite 'faInaIt OA% 2 +finnan 'fIn@n L@$ 2 +finnan haddie ,fIn@n 'h&dI L@$ 4 +finnan haddock ,fIn@n 'h&d@k L@% 4 +fins fInz Kj% 1 +fiord fI'Od K6% 2 +fiords fI'Odz Kj% 2 +fir f3R M6% 1 +fir-cone 'f3-k@Un K6% 2 +fir-cones 'f3-k@Unz Kj% 2 +fire 'faI@R J2%,M6% 12A,2C,3A,6A,15B +fire-alarm 'faI@r-@lAm K6% 3 +fire-alarms 'faI@r-@lAmz Kj% 3 +fire-brigade 'faI@-brIgeId K6% 3 +fire-brigades 'faI@-brIgeIdz Kj% 3 +fire-control 'faI@-k@ntr@Ul L@$ 3 +fire-eater 'faI@r-it@R K6% 3 +fire-eaters 'faI@r-it@z Kj% 3 +fire-engine 'faI@r-endZIn K6% 3 +fire-engines 'faI@r-endZInz Kj% 3 +fire-escape 'faI@r-IskeIp K6% 3 +fire-escapes 'faI@r-IskeIps Kj% 3 +fire-extinguisher 'faI@r-Ik,stINwIS@R K6% 5 +fire-extinguishers 'faI@r-Ik,stINwIS@z Kj% 5 +fire-fighter 'faI@-faIt@R K6% 3 +fire-fighters 'faI@-faIt@z Kj% 3 +fire-hose 'faI@-h@Uz K6% 2 +fire-hoses 'faI@-h@UzIz Kj% 3 +fire-irons 'faI@r-aI@nz Kj$ 3 +fire-power 'faI@-paU@R L@% 3 +fire-raising 'faI@-reIzIN L@% 3 +fire-walker 'faI@-wOk@R K6% 3 +fire-walkers 'faI@-wOk@z Kj% 3 +fire-walking 'faI@-wOkIN L@% 3 +fire-watcher 'faI@-w0tS@R K6% 3 +fire-watchers 'faI@-w0tS@z Kj% 3 +fire-watching 'faI@-w0tSIN L@% 3 +firearm 'faI@rAm K6% 2 +firearms 'faI@rAmz Kj% 2 +fireball 'faI@bOl K6% 2 +fireballs 'faI@bOlz Kj% 2 +firebird 'faI@b3d K6$ 2 +firebirds 'faI@b3dz Kj$ 2 +firebomb 'faI@b0m K6% 2 +firebombs 'faI@b0mz Kj% 2 +firebox 'faI@b0ks K7$ 2 +fireboxes 'faI@b0ksIz Kj$ 3 +firebrand 'faI@br&nd K6% 2 +firebrands 'faI@br&ndz Kj% 2 +firebreak 'faI@breIk K6% 3 +firebreaks 'faI@breIks Kj% 3 +firebrick 'faI@brIk K6% 2 +firebricks 'faI@brIks Kj% 2 +firebug 'faI@bVg K6$ 2 +firebugs 'faI@bVgz Kj$ 2 +fireclay 'faI@kleI L@% 2 +firecracker 'faI@kr&k@R K6% 3 +firecrackers 'faI@kr&k@z Kj% 3 +fired 'faI@d Jc%,Jd% 12A,2C,3A,6A,15B +firedamp 'faI@d&mp L@% 2 +firedog 'faI@d0g K6$ 2 +firedogs 'faI@d0gz Kj$ 2 +fireflies 'faI@flaIz Kj% 3 +firefly 'faI@flaI K8% 3 +fireguard 'faI@gAd K6% 2 +fireguards 'faI@gAdz Kj% 2 +firelight 'faI@laIt K6% 2 +firelighter 'faI@laIt@R K6% 3 +firelighters 'faI@laIt@z Kj% 3 +firelights 'faI@laIts Kj$ 2 +fireman 'faI@m@n Ki% 2 +firemen 'faI@m@n Kj% 2 +fireplace 'faI@pleIs K6% 2 +fireplaces 'faI@pleIsIz Kj% 3 +fireproof 'faI@pruf OA% 2 +fires 'faI@z Ja%,Mj% 12A,2C,3A,6A,15B +fireside 'faI@saId K6% 2 +firesides 'faI@saIdz Kj% 2 +firestone 'faI@st@Un L@$ 2 +firewater 'faI@wOt@R L@% 4 +firewood 'faI@wUd L@% 2 +firework 'faI@w3k K6% 2 +fireworks 'faI@w3ks Kj% 2 +firing 'faI@rIN Jb% 22A,2C,3A,6A,15B +firing-line 'faIrIN-laIn K6% 3 +firing-lines 'faIrIN-laInz Kj$ 3 +firing-parties 'faIrIN-pAtIz Kj$ 4 +firing-party 'faIrIN-pAtI K8$ 4 +firing-squad 'faIrIN-skw0d K6% 3 +firing-squads 'faIrIN-skw0dz Kj% 3 +firkin 'f3kIn K6$ 2 +firkins 'f3kInz Kj$ 2 +firm f3m J0%,K6%,OC%,Pu% 1 +firmament 'f3m@m@nt K6% 3 +firmaments 'f3m@m@nts Kj$ 3 +firmed f3md Jc%,Jd% 1 +firmer 'f3m@R Or% 2 +firmest 'f3mIst Os% 2 +firming 'f3mIN Jb% 2 +firmly 'f3mlI Pu% 2 +firmness 'f3mn@s L@% 2 +firms f3mz Ja%,Kj% 1 +firs f3z Mj% 1 +first f3st K6%,OA*,Pu* 1 +first-class f3st-'klAs OA%,Pu% 2 +first-fruits f3st-'fruts Kj% 2 +first-hand f3st-'h&nd OA%,Pu% 2 +first-nighter f3st-'naIt@R K6% 3 +first-nighters f3st-'naIt@z Kj% 3 +first-rate f3st-'reIt OA%,Pu% 2 +firstborn 'f3stbOn K6%,OA% 2 +firstborns 'f3stbOnz Kj$ 2 +firstly 'f3stlI Pu% 2 +firsts f3sts Kj$ 1 +firth f3T K6$ 1 +firths f3Ts Kj$ 1 +fiscal 'fIskl OA% 2 +fish fIS J1%,M9% 12A,2C,6A,15A,15B +fish-hook 'fIS-hUk K6% 2 +fish-hooks 'fIS-hUks Kj% 2 +fish-knife 'fIS-naIf Ki% 2 +fish-knives 'fIS-naIvz Kj% 2 +fish-slice 'fIS-slaIs K6% 2 +fish-slices 'fIS-slaIsIz Kj% 3 +fishball 'fISbOl K6$ 2 +fishballs 'fISbOlz Kj$ 2 +fishbone 'fISb@Un K6% 2 +fishbones 'fISb@Unz Kj% 2 +fishcake 'fISkeIk K6% 2 +fishcakes 'fISkeIks Kj% 2 +fished fISt Jc%,Jd% 12A,2C,6A,15A,15B +fisher 'fIS@R K6% 2 +fisheries 'fIS@rIz Kj% 3 +fisherman 'fIS@m@n Ki% 3 +fishermen 'fIS@m@n Kj% 3 +fishers 'fIS@z Kj% 2 +fishery 'fIS@rI K8% 3 +fishes 'fISIz Ja%,Kj% 22A,2C,6A,15A,15B +fishier 'fISI@R Or% 3 +fishiest 'fISIIst Os% 3 +fishing 'fISIN Jb%,L@% 22A,2C,6A,15A,15B +fishing-line 'fISIN-laIn K6% 3 +fishing-lines 'fISIN-laInz Kj% 3 +fishing-rod 'fISIN-r0d K6% 3 +fishing-rods 'fISIN-r0dz Kj% 3 +fishing-tackle 'fISIN-t&kl L@% 4 +fishmonger 'fISmVNg@R K6% 3 +fishmongers 'fISmVNg@z Kj% 3 +fishpaste 'fISpeIst M6% 2 +fishpastes 'fISpeIsts Mj% 2 +fishplate 'fISpleIt K6$ 2 +fishplates 'fISpleIts Kj$ 2 +fishwife 'fISwaIf Ki% 2 +fishwives 'fISwaIvz Kj% 2 +fishy 'fISI OD% 2 +fissile 'fIsaIl OA$ 2 +fission 'fISn L@% 2 +fissionable 'fISn@bl OA$ 4 +fissiparous fI'sIp@r@s OA$ 4 +fissure 'fIS@R K6% 2 +fissures 'fIS@z Kj% 2 +fist fIst K6% 1 +fisticuffs 'fIstIkVfs Kj% 3 +fists fIsts Kj% 1 +fistula 'fIstjUl@ K6$ 3 +fistulas 'fIstjUl@z Kj$ 3 +fit fIt J4%,K6%,OE% 12A,2C,6A,14,15A,15B,16A +fitful 'fItf@l OA% 2 +fitfully 'fItf@lI Pu% 3 +fitly 'fItlI Pu$ 2 +fitment 'fItm@nt K6$ 2 +fitments 'fItm@nts Kj% 2 +fitness 'fItn@s L@% 2 +fits fIts Ja%,Kj% 12A,2C,6A,14,15A,15B,16A +fitted 'fItId Jc%,Jd% 22A,2C,6A,14,15A,15B,16A +fitter 'fIt@R K6%,Or% 2 +fitters 'fIt@z Kj% 2 +fittest 'fItIst Os% 2 +fitting 'fItIN Jb%,K6%,OA% 22A,2C,6A,14,15A,15B,16A +fittings 'fItINz Kj% 2 +five faIv K6%,OA* 1 +fivefold 'faIvf@Uld OA% 2 +fivepence 'faIvp@ns K6% 2 +fivepences 'faIvp@nsIz Kj$ 3 +fivepenny 'faIvp@nI OA% 3 +fiver 'faIv@R K6% 2 +fivers 'faIv@z Kj% 2 +fives faIvz Kj%,Lk$ 1 +fix fIks J1%,K7% 13A,6A,14,15A,15B +fixate fIk'seIt H2% 26A +fixated fIk'seItId Hc%,Hd% 36A +fixates fIk'seIts Ha% 26A +fixating fIk'seItIN Hb% 36A +fixation fIk'seISn M6% 3 +fixations fIk'seISnz Mj% 3 +fixative 'fIks@tIv K6% 3 +fixatives 'fIks@tIvz Kj% 3 +fixed fIkst Jc%,Jd%,OA% 13A,6A,14,15A,15B +fixedly 'fIksIdlI Pu% 3 +fixes 'fIksIz Ja%,Kj% 23A,6A,14,15A,15B +fixing 'fIksIN Jb% 23A,6A,14,15A,15B +fixture 'fIkstS@R K6% 2 +fixtures 'fIkstS@z Kj% 2 +fizz fIz I1%,L@% 12A,2C +fizzed fIzd Ic%,Id% 12A,2C +fizzes 'fIzIz Ia% 22A,2C +fizzier 'fIzI@R Or% 3 +fizziest 'fIzIIst Os% 3 +fizzing 'fIzIN Ib% 22A,2C +fizzle 'fIzl I2% 22A,2C +fizzled 'fIzld Ic%,Id% 22A,2C +fizzles 'fIzlz Ia% 22A,2C +fizzling 'fIzlIN Ib% 22A,2C +fizzy 'fIzI OD% 2 +fjord fI'Od K6$ 2 +fjords fI'Odz Kj$ 2 +flabbergast 'fl&b@gAst H0$ 36A +flabbergasted 'fl&b@gAstId Hc$,Hd% 46A +flabbergasting 'fl&b@gAstIN Hb$ 46A +flabbergasts 'fl&b@gAsts Ha$ 36A +flabbier 'fl&bI@R Or% 3 +flabbiest 'fl&bIIst Os% 3 +flabbily 'fl&bIlI Pu% 3 +flabbiness 'fl&bIn@s L@% 3 +flabby 'fl&bI OD% 2 +flaccid 'fl&ksId OA% 2 +flaccidity fl&k'sIdItI L@$ 4 +flag fl&g J4%,K6% 12A,6A,15B +flag-captain 'fl&g-k&ptIn K6$ 3 +flag-captains 'fl&g-k&ptInz Kj$ 3 +flag-day 'fl&g-deI K6% 2 +flag-days 'fl&g-deIz Kj% 2 +flagellant 'fl&dZ@l@nt K6$ 3 +flagellants 'fl&dZ@l@nts Kj$ 3 +flagellate 'fl&dZ@leIt H2% 36A +flagellated 'fl&dZ@leItId Hc%,Hd% 46A +flagellates 'fl&dZ@leIts Ha% 36A +flagellating 'fl&dZ@leItIN Hb% 46A +flagellation ,fl&dZ@'leISn K6% 4 +flagellations ,fl&dZ@'leISnz Kj$ 4 +flageolet ,fl&dZ@U'let K6$ 3 +flageolets ,fl&dZ@U'lets Kj$ 3 +flagged fl&gd Jc%,Jd% 12A,6A,15B +flagging 'fl&gIN Jb% 22A,6A,15B +flagon 'fl&g@n K6% 2 +flagons 'fl&g@nz Kj% 2 +flagpole 'fl&gp@Ul K6% 2 +flagpoles 'fl&gp@Ulz Kj% 2 +flagrant 'fleIgr@nt OA% 2 +flagrantly 'fleIgr@ntlI Pu% 3 +flags fl&gz Ja%,Kj% 12A,6A,15B +flagship 'fl&gSIp K6% 2 +flagships 'fl&gSIps Kj% 2 +flagstaff 'fl&gstAf K6% 2 +flagstaffs 'fl&gstAfs Kj% 2 +flagstone 'fl&gst@Un K6% 2 +flagstones 'fl&gst@Unz Kj% 2 +flail fleIl H0%,K6% 16A +flailed fleIld Hc%,Hd% 16A +flailing 'fleIlIN Hb% 26A +flails fleIlz Ha%,Kj% 16A +flair fle@R M6% 1 +flairs fle@z Mj$ 1 +flak fl&k L@% 1 +flake fleIk I2%,K6% 12A,2C +flaked fleIkt Ic%,Id% 12A,2C +flakes fleIks Ia%,Kj% 12A,2C +flakier 'fleIkI@R Or% 3 +flakiest 'fleIkIIst Os% 3 +flakiness 'fleIkIn@s L@% 3 +flaking 'fleIkIN Ib% 22A,2C +flaky 'fleIkI OD% 2 +flambeau 'fl&mb@U K6$ 2 +flambeaus 'fl&mb@Uz Kj$ 2 +flambeaux 'fl&mb@Uz Kj$ 2 +flamboyance fl&m'boI@ns L@% 3 +flamboyant fl&m'boI@nt OA% 3 +flamboyantly fl&m'boI@ntlI Pu% 4 +flame fleIm I2%,M6% 12A,2C +flamed fleImd Ic%,Id% 12A,2C +flames fleImz Ia%,Mj% 12A,2C +flamethrower 'fleImTr@U@R K6% 3 +flamethrowers 'fleImTr@U@z Kj% 3 +flaming 'fleImIN Ib%,OA% 22A,2C +flamingo fl@'mINg@U K6% 3 +flamingoes fl@'miNg@Uz Kj% 3 +flamingos fl@'mINg@Uz Kj% 3 +flammable 'fl&m@bl OA% 3 +flan fl&n K6% 1 +flange fl&ndZ K6% 1 +flanges 'fl&ndZIz Kj% 2 +flank fl&Nk H0%,K6% 16A +flanked fl&Nkt Hc%,Hd% 16A +flanking 'fl&NkIN Hb% 26A +flanks fl&Nks Ha%,Kj% 16A +flannel 'fl&nl M6% 2 +flannelette ,fl&n@'let L@% 3 +flannels 'fl&nlz Mj% 2 +flans fl&nz Kj% 1 +flap fl&p J4%,K6% 12A,2C,6A,15B +flapjack 'fl&pdZ&k M6% 2 +flapjacks 'fl&pdZ&ks Mj$ 2 +flapped fl&pt Jc%,Jd% 12A,2C,6A,15B +flapper 'fl&p@R K6$ 2 +flappers 'fl&p@z Kj$ 2 +flapping 'fl&pIN Jb% 22A,2C,6A,15B +flaps fl&ps Ja%,Kj% 12A,2C,6A,15B +flare fle@R J2%,M6% 12A,2C,6A +flare-path 'fle@-pAT K6$ 2 +flare-paths 'fle@-pADz Kj$ 2 +flare-up 'fle@r-Vp K6% 2 +flare-ups 'fle@r-Vps Kj% 2 +flared fle@d Jc%,Jd% 12A,2C,6A +flares fle@z Ja%,Mj% 12A,2C,6A +flaring 'fle@rIN Jb% 22A,2C,6A +flash fl&S J1%,K7% 12A,2C,6A,12C,15A +flashback 'fl&Sb&k K6% 2 +flashbacks 'fl&Sb&ks Kj% 2 +flashbulb 'fl&SbVlb K6% 2 +flashbulbs 'fl&SbVlbz Kj% 2 +flashed fl&St Jc%,Jd% 12A,2C,6A,12C,15A +flashes 'fl&SIz Ja%,Kj% 22A,2C,6A,12C,15A +flashgun 'fl&SgVn K6% 2 +flashguns 'fl&SgVnz Kj% 2 +flashier 'fl&SI@R Or% 3 +flashiest 'fl&SIIst Os% 3 +flashily 'fl&SIlI Pu% 3 +flashing 'fl&SIN Jb% 22A,2C,6A,12C,15A +flashlight 'fl&SlaIt K6% 2 +flashlights 'fl&SlaIts Kj% 2 +flashpoint 'fl&SpoInt K6% 2 +flashpoints 'fl&SpoInts Kj% 2 +flashy 'fl&SI OD% 2 +flask flAsk K6% 1 +flasks flAsks Kj% 1 +flat fl&t K6%,OE%,Pu% 1 +flat-bottomed fl&t-'b0t@md OA% 3 +flat-car 'fl&t-kAR K6$ 2 +flat-cars 'fl&t-kAz Kj$ 2 +flat-footed fl&t-'fUtId OA% 3 +flat-iron 'fl&t-aI@n K6% 3 +flat-irons 'fl&t-aI@nz Kj% 3 +flatfish 'fl&tfIS K9% 2 +flatfishes 'fl&tfISIz Kj% 3 +flatlet 'fl&tlIt K6$ 2 +flatlets 'fl&tlIts Kj$ 2 +flatly 'fl&tlI Pu% 2 +flatness 'fl&tn@s L@% 2 +flats fl&ts Kj% 1 +flatten 'fl&tn J0% 22A,2C,6A,15A,15B +flattened 'fl&tnd Jc%,Jd% 22A,2C,6A,15A,15B +flattening 'fl&tnIN Jb% 32A,2C,6A,15A,15B +flattens 'fl&tnz Ja% 22A,2C,6A,15A,15B +flatter 'fl&t@R H0%,Or% 26A +flattered 'fl&t@d Hc%,Hd% 26A +flatterer 'fl&t@r@R K6% 3 +flatterers 'fl&t@r@z Kj% 3 +flatteries 'fl&t@rIz Mj% 3 +flattering 'fl&t@rIN Hb% 36A +flatters 'fl&t@z Ha% 26A +flattery 'fl&t@rI M8% 3 +flattest 'fl&tIst Os% 2 +flattop 'fl&t+t0p K6$ 2 +flattops 'fl&t+t0ps Kj$ 2 +flatulence 'fl&tjUl@ns L@% 3 +flaunt flOnt J0% 12A,2C,6A +flaunted 'flOntId Jc%,Jd% 22A,2C,6A +flaunting 'flOntIN Jb% 22A,2C,6A +flaunts flOnts Ja% 12A,2C,6A +flautist 'flOtIst K6% 2 +flautists 'flOtIsts Kj% 2 +flavour 'fleIv@R H0%,M6% 26A +flavoured 'fleIv@d Hc%,Hd% 26A +flavouring 'fleIv@rIN Hb%,M6% 36A +flavourings 'fleIv@rINz Mj% 3 +flavourless 'fleIv@l@s OA% 3 +flavours 'fleIv@z Ha%,Mj% 26A +flaw flO K6% 1 +flawed flOd OA% 1 +flawless 'flOl@s OA% 2 +flawlessly 'flOl@slI Pu% 3 +flaws flOz Kj% 1 +flax fl&ks L@$ 1 +flaxen 'fl&ksn OA% 2 +flay fleI H0% 16A +flayed fleId Hc%,Hd% 16A +flaying 'fleIIN Hb$ 26A +flays fleIz Ha$ 16A +flea fli K6% 1 +flea-bite 'fli-baIt K6% 2 +flea-bites 'fli-baIts Kj% 2 +flea-bitten 'fli-bItn OA% 3 +fleapit 'flipIt K6% 2 +fleapits 'flipIts Kj% 2 +fleas fliz Kj% 1 +fleck flek H0$,K6% 16A +flecked flekt Hc$,Hd% 16A +flecking 'flekIN Hb$ 26A +flecks fleks Ha$,Kj$ 16A +fled fled Jc%,Jd% 12A,2C,6A +fledged fledZd OA$ 1 +fledgeling 'fledZlIN K6% 2 +fledgelings 'fledZlINz Kj% 2 +fledgling 'fledZlIN K6% 2 +fledglings 'fledZlINz Kj% 2 +flee fli J5% 12A,2C,6A +fleece flis H2%,M6% 16A,14 +fleeced flist Hc%,Hd% 16A,14 +fleeces 'flisIz Ha%,Mj% 26A,14 +fleecier 'flisI@R Or$ 3 +fleeciest 'flisIIst Os$ 3 +fleecing 'flisIN Hb% 26A,14 +fleecy 'flisI OD% 2 +fleeing 'fliIN Jb% 22A,2C,6A +flees fliz Ja% 12A,2C,6A +fleet flit K6%,OC% 1 +fleeter 'flit@R Or$ 2 +fleetest 'flitIst Os$ 2 +fleeting 'flitIN OA% 2 +fleetly 'flitlI Pu$ 2 +fleetness 'flitn@s L@% 2 +fleets flits Kj% 1 +flesh fleS L@% 1 +flesh-wound 'fleS-wund K6% 2 +flesh-wounds 'fleS-wundz Kj% 2 +fleshier 'fleSI@R Or$ 3 +fleshiest 'fleSIIst Os$ 3 +fleshings 'fleSINz Kj$ 2 +fleshly 'fleSlI OA$ 2 +fleshpots 'fleSp0ts Kj% 2 +fleshy 'fleSI OD% 2 +fleur-de-lis ,fl3-d@-'li Ki$ 3 +fleur-de-lys ,fl3-d@-'li Ki% 3 +fleurs-de-lis ,fl3-d@-'li Kj$ 3 +fleurs-de-lys ,fl3-d@-'li Kj$ 3 +flew flu Jc% 12A,2B,2C,2D,4A,6A,15A,15B +flex fleks H1%,M7% 16A +flexed flekst Hc%,Hd% 16A +flexes 'fleksIz Ha%,Mj% 26A +flexibility ,fleks@'bIlItI L@% 5 +flexible 'fleks@bl OA% 3 +flexibly 'fleks@blI Pu% 3 +flexing 'fleksIN Hb% 26A +flibbertigibbet ,flIb@tI'dZIbIt K6$ 5 +flibbertigibbets ,flIb@tI'dZIbIts Kj$ 5 +flick flIk H0%,K6% 16A,15A,15B,22 +flick-knife 'flIk-naIf Ki% 2 +flick-knives 'flIk-naIvz Kj% 2 +flicked flIkt Hc%,Hd% 16A,15A,15B,22 +flicker 'flIk@R I0%,K6% 22A,2C +flickered 'flIk@d Ic%,Id% 22A,2C +flickering 'flIk@rIN Ib% 32A,2C +flickers 'flIk@z Ia%,Kj% 22A,2C +flicking 'flIkIN Hb% 26A,15A,15B,22 +flicks flIks Ha%,Kj% 16A,15A,15B,22 +flier 'flaI@R K6% 2 +fliers 'flaI@z Kj% 2 +flies flaIz Ja%,Kj% 12A,2B,2C,2D,4A,6A,15A,15B +flight flaIt H0$,M6% 16A +flighted 'flaItId Hc%,Hd% 26A +flighting 'flaItIN Hb$ 26A +flightless 'flaItl@s OA% 2 +flights flaIts Ha$,Mj% 16A +flighty 'flaItI OA% 2 +flimsier 'flImzI@R Or% 3 +flimsiest 'flImzIIst Os% 3 +flimsily 'flImzIlI Pu% 3 +flimsiness 'flImsIn@s L@% 3 +flimsy 'flImzI L@%,OD% 2 +flinch flIntS I1% 12A,3A +flinched flIntSt Ic%,Id% 12A,3A +flinches 'flIntSIz Ia% 22A,3A +flinching 'flIntSIN Ib% 22A,3A +fling flIN J5%,K6% 12C,6A,12A,13A,15A,15B,22 +flinging 'flININ Jb% 22C,6A,12A,13A,15A,15B,22 +flings flINz Ja%,Kj% 12C,6A,12A,13A,15A,15B,22 +flint flInt M6% 1 +flintier 'flIntI@R Or$ 3 +flintiest 'flIntIIst Os$ 3 +flints flInts Mj% 1 +flintstone 'flIntst@Un L@% 2 +flinty 'flIntI OD% 2 +flip flIp J4%,K6%,OA% 16A,15A,15B +flippancies 'flIp@nsIz Mj$ 3 +flippancy 'flIp@nsI M8% 3 +flippant 'flIp@nt OA% 2 +flippantly 'flIp@ntlI Pu% 3 +flipped flIpt Jc%,Jd% 16A,15A,15B +flipper 'flIp@R K6% 2 +flippers 'flIp@z Kj% 2 +flipping 'flIpIN Jb% 26A,15A,15B +flips flIps Ja%,Kj% 16A,15A,15B +flirt fl3t I0%,K6% 12A,3A +flirtation fl3'teISn M6% 3 +flirtations fl3'teISnz Mj% 3 +flirtatious fl3'teIS@s OA% 3 +flirted 'fl3tId Ic%,Id% 22A,3A +flirting 'fl3tIN Ib% 22A,3A +flirts fl3ts Ia%,Kj% 12A,3A +flit flIt I4%,K6% 12C +flits flIts Ia%,Kj% 12C +flitted 'flItId Ic%,Id% 22C +flitting 'flItIN Ib% 22C +float fl@Ut J0%,K6% 12A,2C,6A,15A,15B +floatation fl@U'teISn M6% 3 +floatations fl@U'teISnz Mj$ 3 +floated 'fl@UtId Jc%,Jd% 22A,2C,6A,15A,15B +floating 'fl@UtIN Jb%,OA% 22A,2C,6A,15A,15B +floats fl@Uts Ja%,Kj% 12A,2C,6A,15A,15B +flock fl0k I0%,K6% 12C,4A +flocked fl0kt Ic%,Id% 12C,4A +flocking 'fl0kIN Ib% 22C,4A +flocks fl0ks Ia%,Kj% 12C,4A +floe fl@U K6$ 1 +floes fl@Uz Kj$ 1 +flog fl0g H4% 16A +flogged fl0gd Hc%,Hd% 16A +flogging 'fl0gIN Hb%,M6% 26A +floggings 'fl0gINz Mj% 2 +flogs fl0gz Ha% 16A +flood flVd J0%,K6% 13A,6A,14,15B,16A +flood-tide flVd-'taId K6% 2 +flood-tides flVd-'taIdz Kj% 2 +flooded 'flVdId Jc%,Jd% 23A,6A,14,15B,16A +floodgate 'flVdgeIt K6% 2 +floodgates 'flVdgeIts Kj% 2 +flooding 'flVdIN Jb% 23A,6A,14,15B,16A +floodlight 'flVdlaIt H0% 2 +floodlighted 'flVdlaItId Hc$,Hd$ 3 +floodlighting 'flVdlaItIN Hb% 3 +floodlights 'flVdlaIts Ha%,Kj% 2 +floodlit 'flVdlIt Hc%,Hd% 2 +floods flVdz Ja%,Kj% 13A,6A,14,15B,16A +floor flOR H0%,K6% 16A +floor-walker 'flO-wOk@R K6% 3 +floor-walkers 'flO-wOk@z Kj% 3 +floorboard 'flObOd K6% 2 +floorboards 'flObOdz Kj% 2 +floored flOd Hc%,Hd% 16A +flooring 'flOrIN Hb%,L@% 26A +floors flOz Ha%,Kj% 16A +floozie 'fluzI K6$ 2 +floozies 'fluzIz Kj$ 2 +floozy 'fluzI K8$ 2 +flop fl0p J4%,K6%,Pu% 12A,2C,15A,15B +flopped fl0pt Jc%,Jd% 12A,2C,15A,15B +floppier 'fl0pI@R Or% 3 +floppiest 'fl0pIIst Os% 3 +flopping 'fl0pIN Jb% 22A,2C,15A,15B +floppy 'fl0pI OD% 2 +flops fl0ps Ja%,Kj% 12A,2C,15A,15B +flora 'flOr@ Kj% 2 +floral 'flOr@l OA% 2 +floriculture 'flOrIkVltS@R L@$ 4 +florid 'fl0rId OA% 2 +floridly 'fl0rIdlI Pu$ 3 +florin 'fl0rIn K6$ 2 +florins 'fl0rInz Kj$ 2 +florist 'fl0rIst K6% 2 +florists 'fl0rIsts Kj% 2 +floss fl0s L@% 1 +flotation fl@U'teISn M6% 3 +flotations fl@U'teISnz Mj% 3 +flotilla fl@'tIl@ K6% 3 +flotillas fl@'tIl@z Kj% 3 +flotsam 'fl0ts@m L@% 2 +flounce flaUns J2%,K6% 12C,6A +flounced flaUnst Jc%,Jd% 12C,6A +flounces 'flaUnsIz Ja%,Kj% 22C,6A +flouncing 'flaUnsIN Jb% 22C,6A +flounder 'flaUnd@R I0%,K6% 22A,2C +floundered 'flaUnd@d Ic%,Id% 22A,2C +floundering 'flaUnd@rIN Ib% 32A,2C +flounders 'flaUnd@z Ia%,Kj% 22A,2C +flour 'flaU@R H0%,L@% 26A +floured 'flaU@d Hc%,Hd% 26A +flourier 'flaU@rI@R Or$ 4 +flouriest 'flaU@rIIst Os$ 4 +flouring 'flaU@rIN Hb$ 36A +flourish 'flVrIS J1%,K7% 22A,6A +flourished 'flVrISt Jc%,Jd% 22A,6A +flourishes 'flVrISIz Ja%,Kj% 32A,6A +flourishing 'flVrISIN Jb% 32A,6A +flours 'flaU@z Ha$ 26A +floury 'flaU@rI OD% 3 +flout flaUt H0% 16A +flouted 'flaUtId Hc%,Hd% 26A +flouting 'flaUtIN Hb% 26A +flouts flaUts Ha% 16A +flow fl@U I0%,Ki% 12A,2C +flowed fl@Ud Ic%,Id% 12A,2C +flower 'flaU@R I0%,K6% 22A,2C +flower-girl 'flaU@-g3l K6% 3 +flower-girls 'flaU@-g3lz Kj% 3 +flowerbed 'flaU@bed K6% 3 +flowerbeds 'flaU@bedz Kj% 3 +flowered 'flaU@d Ic%,Id%,OA% 22A,2C +flowerier 'flaU@rI@R Or% 4 +floweriest 'flaU@rIIst Os% 4 +flowering 'flaU@rIN Ib% 32A,2C +flowerless 'flaU@l@s OA$ 3 +flowerpot 'flaU@p0t K6% 3 +flowerpots 'flaU@p0ts Kj% 3 +flowers 'flaU@z Ia%,Kj% 22A,2C +flowery 'flaU@rI OD% 3 +flowing 'fl@UIN Ib% 22A,2C +flown fl@Un Jd% 12A,2B,2C,2D,4A,6A,15A,15B +flows fl@Uz Ia% 12A,2C +flu flu L@% 1 +fluctuate 'flVktSUeIt I2% 32A,2C +fluctuated 'flVktSUeItId Ic%,Id% 42A,2C +fluctuates 'flVktSUeIts Ia% 32A,2C +fluctuating 'flVktSUeItIN Ib% 42A,2C +fluctuation ,flVktSU'eISn M6% 4 +fluctuations ,flVktSU'eISnz Mj% 4 +flue flu K6% 1 +fluency 'flu@nsI L@% 3 +fluent 'flu@nt OA% 2 +fluently 'flu@ntlI Pu% 3 +flues fluz Kj% 1 +fluff flVf H0%,L@% 16A,15B +fluffed flVft Hc%,Hd% 16A,15B +fluffier 'flVfI@R Or% 3 +fluffiest 'flVfIIst Os% 3 +fluffing 'flVfIN Hb% 26A,15B +fluffs flVfs Ha% 16A,15B +fluffy 'flVfI OD% 2 +fluid 'fluId M6%,OA% 2 +fluidities flu'IdItIz Mj$ 4 +fluidity flu'IdItI M8% 4 +fluids 'fluIdz Mj% 2 +fluke fluk K6% 1 +flukes fluks Kj% 1 +flume flum K6$ 1 +flumes flumz Kj$ 1 +flummox 'flVm@ks H1$ 26A +flummoxed 'flVm@kst Hc$,Hd% 26A +flummoxes 'flVm@ksIz Ha$ 36A +flummoxing 'flVm@ksIN Hb$ 36A +flung flVN Jc%,Jd% 12C,6A,12A,13A,15A,15B,22 +flunk flVNk J0% 12A,2C,6A,15B +flunked flVNkt Jc%,Jd% 12A,2C,6A,15B +flunkey 'flVNkI K6% 2 +flunkeys 'flVNkIz Kj% 2 +flunkies 'flVNkIz Kj$ 2 +flunking 'flVNkIN Jb% 22A,2C,6A,15B +flunks flVNks Ja% 12A,2C,6A,15B +flunky 'flVNkI K8$ 2 +fluorescence flU@'resns M6% 4 +fluorescences flU@'resnsIz Mj$ 5 +fluorescent flU@'resnt OA% 4 +fluoridate 'flU@rIdeIt H2% 46A +fluoridated 'flU@rIdeItId Hc%,Hd% 56A +fluoridates 'flU@rIdeIts Ha% 46A +fluoridating 'flU@rIdeItIN Hb% 56A +fluoridation ,flU@rI'deISn K6% 5 +fluoridations ,flU@rI'deISnz Kj$ 5 +fluoride 'flU@raId M6% 3 +fluorides 'flU@raIdz Mj$ 3 +fluoridization ,flU@rIdaI'zeISn K6$ 6 +fluoridizations ,flU@rIdaI'zeISnz Kj$ 6 +fluoridize 'flU@rIdaIz H2$ 4 +fluoridized 'flU@rIdaIzd Hc$,Hd$ 4 +fluoridizes 'flU@rIdaIzIz Ha$ 5 +fluoridizing 'flU@rIdaIzIN Hb$ 5 +fluorine 'flU@rin L@% 3 +flurried 'flVrId Hc%,Hd% 26A +flurries 'flVrIz Ha$,Kj% 26A +flurry 'flVrI H3$,K8% 26A +flurrying 'flVrIIN Hb$ 36A +flush flVS J1%,M7%,OA% 12A,2C,2D,6A,14 +flushed flVSt Jc%,Jd% 12A,2C,2D,6A,14 +flushes 'flVSIz Ja%,Mj% 22A,2C,2D,6A,14 +flushing 'flVSIN Jb% 22A,2C,2D,6A,14 +fluster 'flVst@R H0%,K6% 26A +flustered 'flVst@d Hc%,Hd% 26A +flustering 'flVst@rIN Hb% 36A +flusters 'flVst@z Ha%,Kj% 26A +flute flut J2%,K6% 16A +fluted 'flutId Jc%,Jd% 26A +flutes fluts Ja%,Kj% 16A +fluting 'flutIN Jb%,L@% 26A +flutist 'flutIst K6$ 2 +flutists 'flutIsts Kj$ 2 +flutter 'flVt@R J0%,M6% 22A,2C,6A,15A,15B +fluttered 'flVt@d Jc%,Jd% 22A,2C,6A,15A,15B +fluttering 'flVt@rIN Jb% 32A,2C,6A,15A,15B +flutters 'flVt@z Ja%,Mj% 22A,2C,6A,15A,15B +fluvial 'fluvI@l OA$ 3 +flux flVks M7% 1 +fluxes 'flVksIz Mj$ 2 +fly flaI J5%,K8%,OA% 12A,2B,2C,2D,4A,6A,15A,15B +fly-fish 'flaI-fIS I1% 22A +fly-fished 'flaI-fISt Ic%,Id% 22A +fly-fishes 'flaI-fISIz Ia% 32A +fly-fishing 'flaI-fISIN Ib%,L@% 32A +fly-swat 'flaI-sw0t K6% 2 +fly-swats 'flaI-sw0ts Kj$ 2 +fly-swatter 'flaI-sw0t@R K6% 3 +fly-swatters 'flaI-sw0t@z Kj% 3 +flyblown 'flaIbl@Un OA% 2 +flycatcher 'flaIk&tS@R K6% 3 +flycatchers 'flaIk&tS@z Kj% 3 +flyer 'flaI@R K6% 2 +flyers 'flaI@z Kj% 2 +flying 'flaIIN Jb%,OA% 22A,2B,2C,2D,4A,6A,15A,15B +flying-bomb 'flaIIN-b0m K6% 3 +flying-bombs 'flaIIN-b0mz Kj% 3 +flying-fish 'flaIIN-fIS K9% 3 +flying-fishes 'flaIIN-fISIz Kj% 4 +flying-fox 'flaIIN-f0ks K7$ 3 +flying-foxes 'flaIIN-f0ksIz Kj$ 4 +flying-squad 'flaIIN-skw0d K6% 3 +flying-squads 'flaIIN-skw0dz Kj$ 3 +flyleaf 'flaIlif Ki% 2 +flyleaves 'flaIlivz Kj% 2 +flyover 'flaI@Uv@R K6% 3 +flyovers 'flaI@Uv@z Kj% 3 +flypaper 'flaIpeIp@R K6% 3 +flypapers 'flaIpeIp@z Kj% 3 +flypast 'flaIpAst K6% 2 +flypasts 'flaIpAsts Kj% 2 +flytrap 'flaItr&p K6% 2 +flytraps 'flaItr&ps Kj% 2 +flyweight 'flaIweIt K6% 2 +flyweights 'flaIweIts Kj% 2 +flywheel 'flaIwil K6% 2 +flywheels 'flaIwilz Kj% 2 +fo'c'sle 'f@Uksl K6$ 2 +fo'c'sles 'f@Ukslz Kj$ 2 +foal f@Ul I0$,K6% 12A +foaled f@Uld Ic$,Id$ 12A +foaling 'f@UlIN Ib$ 22A +foals f@Ulz Ia$,Kj% 12A +foam f@Um I0%,M6% 12A,2C +foam-rubber f@Um-'rVb@R L@% 3 +foamed f@Umd Ic%,Id% 12A,2C +foamier 'f@UmI@R Or$ 3 +foamiest 'f@UmIIst Os$ 3 +foaming 'f@UmIN Ib% 22A,2C +foams f@Umz Ia%,Mj% 12A,2C +foamy 'f@UmI OD% 2 +fob f0b H4% 115B +fobbed f0bd Hc%,Hd% 115B +fobbing 'f0bIN Hb% 215B +fobs f0bz Ha% 115B +focal 'f@Ukl OA% 2 +foci 'f@UsaI Kj$ 2 +focus 'f@Uk@s J1%,K7% 22A,2C,6A,14 +focused 'f@Uk@st Jc%,Jd% 22A,2C,6A,14 +focuses 'f@Uk@sIz Ja%,Kj% 32A,2C,6A,14 +focusing 'f@Uk@sIN Jb% 32A,2C,6A,14 +focussed 'f@Uk@st Jc%,Jd% 22A,2C,6A,14 +focussing 'f@Uk@sIN Jb% 32A,2C,6A,14 +fodder 'f0d@R L@% 2 +foe f@U K6% 1 +foes f@Uz Kj% 1 +foetal 'fitl OA% 2 +foetus 'fit@s K7% 2 +foetuses 'fit@sIz Kj% 3 +fog f0g H4%,M6% 1 +fogbank 'f0gb&Nk K6$ 2 +fogbanks 'f0gb&Nks Kj$ 2 +fogbound 'f0gbaUnd OA% 2 +fogey 'f@UgI K6% 2 +fogeys 'f@UgIz Kj% 2 +fogged f0gd Hc%,Hd% 1 +foggier 'f0gI@R Or% 3 +foggiest 'f0gIIst Os% 3 +fogging 'f0gIN Hb% 2 +foggy 'f0gI OD% 2 +foghorn 'f0ghOn K6% 2 +foghorns 'f0ghOnz Kj% 2 +foglamp 'f0gl&mp K6% 2 +foglamps 'f0gl&mps Kj% 2 +fogs f0gz Ha%,Mj% 1 +fogsignal 'f0gsIgn@l K6% 3 +fogsignals 'f0gsIgn@lz Kj% 3 +foible 'foIbl K6$ 2 +foibles 'foIblz Kj% 2 +foil foIl H0%,M6% 16A +foiled foIld Hc%,Hd% 16A +foiling 'foIlIN Hb% 26A +foils foIlz Ha%,Mj% 16A +foist foIst H0% 114,15A +foisted 'foIstId Hc%,Hd% 214,15A +foisting 'foIstIN Hb% 214,15A +foists foIsts Ha% 114,15A +fold f@Uld J0%,K6% 12A,2C,6A,15A,15B +folded 'f@UldId Jc%,Jd% 22A,2C,6A,15A,15B +folder 'f@Uld@R K6% 2 +folders 'f@Uld@z Kj% 2 +folding 'f@UldIN Jb% 22A,2C,6A,15A,15B +folds f@Uldz Ja%,Kj% 12A,2C,6A,15A,15B +foliage 'f@UlIIdZ L@% 3 +folio 'f@UlI@U K6% 3 +folios 'f@UlI@Uz Kj% 3 +folk f@Uk K6% 1 +folk-dance 'f@Uk-dAns K6% 2 +folk-dances 'f@Uk-dAnsIz Kj% 3 +folklore 'f@UklOR L@% 2 +folks f@Uks Kj% 1 +folksong 'f@Uks0N K6% 2 +folksongs 'f@Uks0Nz Kj% 2 +folksy 'f@UksI OA% 2 +folktale 'f@UkteIl K6% 2 +folktales 'f@UkteIlz Kj% 2 +follies 'f0lIz Mj% 2 +follow 'f0l@U J0% 22A,2B,2C,6A,15B +follow-on ,f0l@U-'0n K6% 3 +follow-ons ,f0l@U-'0nz Kj$ 3 +follow-through ,f0l@U-'Tru K6% 3 +follow-throughs ,f0l@U-'Truz Kj$ 3 +follow-up 'f0l@U-Vp K6% 3 +follow-ups 'f0l@U-Vps Kj$ 3 +followed 'f0l@Ud Jc%,Jd% 22A,2B,2C,6A,15B +follower 'f0l@U@R K6% 3 +followers 'f0l@U@z Kj% 3 +following 'f0l@UIN Jb*,K6%,OA* 32A,2B,2C,6A,15B +followings 'f0l@UINz Kj% 3 +follows 'f0l@Uz Ja% 22A,2B,2C,6A,15B +folly 'f0lI M8% 2 +foment f@U'ment H0$ 26A +fomentation ,f@Umen'teISn M6$ 4 +fomentations ,f@Umen'teISnz Mj$ 4 +fomented f@U'mentId Hc$,Hd$ 36A +fomenting f@U'mentIN Hb$ 36A +foments f@U'ments Ha$ 26A +fond f0nd OC% 1 +fondant 'f0nd@nt K6% 2 +fondants 'f0nd@nts Kj% 2 +fonder 'f0nd@R Or% 2 +fondest 'f0ndIst Os% 2 +fondle 'f0ndl H2% 26A +fondled 'f0ndld Hc%,Hd% 26A +fondles 'f0ndlz Ha% 26A +fondling 'f0ndlIN Hb% 26A +fondly 'f0ndlI Pu% 2 +fondness 'f0ndn@s L@% 2 +font f0nt K6% 1 +fonts f0nts Kj% 1 +food fud M6* 1 +foodless 'fudl@s OA$ 2 +foods fudz Mj% 1 +foodstuff 'fudstVf K6% 2 +foodstuffs 'fudstVfs Kj% 2 +fool ful J0%,K6% 12A,2C,6A,14,15B +fooled fuld Jc%,Jd% 12A,2C,6A,14,15B +foolery 'ful@rI L@% 3 +foolhardiness 'fulhAdIn@s L@% 4 +foolhardy 'fulhAdI OA% 3 +fooling 'fulIN Jb% 22A,2C,6A,14,15B +foolish 'fulIS OA% 2 +foolishly 'fulISlI Pu% 3 +foolishness 'fulISn@s L@% 3 +foolproof 'fulpruf OA% 2 +fools fulz Ja%,Kj% 12A,2C,6A,14,15B +foolscap 'fulsk&p L@% 2 +foot fUt J0%,Ki% 16A +foot-and-mouth ,fUt-n-'maUT L@%,OA% 3 +foot-bath 'fUt-bAT K6% 2 +foot-baths 'fUt-bADz Kj% 2 +foot-pound 'fUt-paUnd K6$ 2 +foot-pounds 'fUt-paUndz Kj$ 2 +foot-race 'fUt-reIs K6$ 2 +foot-races 'fUt-reIsIz Kj$ 3 +foot-rot 'fUt-r0t L@% 2 +footage 'fUtIdZ L@% 2 +football 'fUtbOl M6% 2 +footballer 'fUtbOl@R K6% 3 +footballers 'fUtbOl@z Kj% 3 +footballs 'fUtbOlz Mj% 2 +footboard 'fUtbOd K6% 2 +footboards 'fUtbOdz Kj% 2 +footbridge 'fUtbrIdZ K6% 2 +footbridges 'fUtbrIdZIz Kj% 3 +footed 'fUtId Jc%,Jd%,Ot% 26A +footer 'fUt@R K6% 2 +footers 'fUt@z Kj% 2 +footfall 'fUtfOl K6% 2 +footfalls 'fUtfOlz Kj% 2 +footfault 'fUtfOlt K6% 2 +footfaults 'fUtfOlts Kj% 2 +foothills 'fUthIlz Kj% 2 +foothold 'fUth@Uld K6% 2 +footholds 'fUth@Uldz Kj% 2 +footing 'fUtIN Jb%,Ki% 26A +footle 'futl J2% 2 +footled 'futld Jc%,Jd% 2 +footles 'futlz Ja% 2 +footlights 'fUtlaIts Kj% 2 +footling 'futlIN Jb%,OA% 2 +footloose 'fUtlus OA% 2 +footman 'fUtm@n Ki% 2 +footmark 'fUtmAk K6% 2 +footmarks 'fUtmAks Kj% 2 +footmen 'fUtm@n Kj% 2 +footnote 'fUtn@Ut K6% 2 +footnotes 'fUtn@Uts Kj% 2 +footpath 'fUtpAT K6% 2 +footpaths 'fUtpADz Kj% 2 +footplate 'fUtpleIt K6% 2 +footplates 'fUtpleIts Kj% 2 +footprint 'fUtprInt K6% 2 +footprints 'fUtprInts Kj% 2 +foots fUts Ja$ 16A +footslog 'fUtsl0g I4% 2 +footslogged 'fUtsl0gd Ic%,Id% 2 +footslogger 'fUtsl0g@R K6% 3 +footsloggers 'fUtsl0g@z Kj% 3 +footslogging 'fUtsl0gIN Ib% 3 +footslogs 'fUtsl0gz Ia% 2 +footsore 'fUtsOR OA% 2 +footstep 'fUtstep K6% 2 +footsteps 'fUtsteps Kj% 2 +footstool 'fUtstul K6% 2 +footstools 'fUtstulz Kj% 2 +footsure 'fUtSU@R OA% 2 +footwear 'fUtwe@R L@% 2 +footwork 'fUtw3k L@% 2 +fop f0p K6% 1 +foppish 'f0pIS OA% 2 +fops f0ps Kj% 1 +for fOR T-*,V-* 1 +forage 'f0rIdZ I2%,L@% 22A,3A +foraged 'f0rIdZd Ic%,Id% 22A,3A +forages 'f0rIdZIz Ia% 32A,3A +foraging 'f0rIdZIN Ib% 32A,3A +forasmuch as ,fOr@z'mVtS @z V-% 4 +foray 'f0reI I0$,K6% 22A +forayed 'f0reId Ic$,Id$ 22A +foraying 'f0reIIN Ib$ 32A +forays 'f0reIz Ia$,Kj% 22A +forbad f@'b&d Hc$ 26A,12C,17 +forbade f@'b&d Hc% 26A,12C,17 +forbear 'fObe@R K6% 2 +forbear fO'be@R J5% 22A,3A,6C,7A +forbearance fO'be@r@ns L@% 3 +forbearing fO'be@rIN Jb% 32A,3A,6C,7A +forbears 'fObe@z Kj% 2 +forbears fO'be@z Ja% 22A,3A,6C,7A +forbid f@'bId H5% 26A,12C,17 +forbidden f@'bIdn Hd% 36A,12C,17 +forbidding f@'bIdIN Hb%,OA% 36A,12C,17 +forbiddingly f@'bIdINlI Pu% 4 +forbids f@'bIdz Ha% 26A,12C,17 +forbore fO'bOR Jc% 22A,3A,6C,7A +forborne fO'bOn Jd% 22A,3A,6C,7A +force fOs H2%,M6% 16A,15A,15B,17,22 +force majeure ,fOs m&'Z3R L@% 3 +force-fed 'fOs-fed Hc%,Hd% 26A +force-feed 'fOs-fid H5% 26A +force-feeding 'fOs-fidIN Hb% 36A +force-feeds 'fOs-fidz Ha% 26A +force-land fOs-'l&nd J0% 2 +force-landed fOs-'l&ndId Jc%,Jd% 3 +force-landing fOs-'l&ndIN Jb% 3 +force-lands fOs-'l&ndz Ja% 2 +forced fOst Hc%,Hd% 16A,15A,15B,17,22 +forceful 'fOsf@l OA% 2 +forcefully 'fOsf@lI Pu% 3 +forcefulness 'fOsf@ln@s L@% 3 +forcemeat 'fOsmit L@$ 2 +forceps 'fOseps Kj% 2 +forces 'fOsIz Ha%,Mj% 26A,15A,15B,17,22 +forcible 'fOs@bl OA% 3 +forcibly 'fOs@blI Pu% 3 +forcing 'fOsIN Hb% 26A,15A,15B,17,22 +ford fOd H0%,K6% 16A +fordable 'fOd@bl OA% 3 +forded 'fOdId Hc%,Hd% 26A +fording 'fOdIN Hb% 26A +fords fOdz Ha%,Kj% 16A +fore fOR L@%,OA%,Pu%,W-% 1 +forearm 'fOrAm K6$ 2 +forearm ,fO'rAm H0% 26A +forearmed ,fO'rAmd Hc%,Hd% 26A +forearming ,fO'rAmIN Hb$ 36A +forearms 'fOrAmz Kj% 2 +forearms ,fO'rAmz Ha$ 26A +forebode fO'b@Ud H2$ 26A,9 +foreboded fO'b@UdId Hc$,Hd$ 36A,9 +forebodes fO'b@Udz Ha$ 26A,9 +foreboding fO'b@UdIN Hb%,M6% 36A,9 +forebodings fO'b@UdINz Mj% 3 +forecast 'fOkAst H0%,Hc%,Hd%,K6% 26A +forecasted 'fOkAstId Hc%,Hd% 36A +forecaster 'fOkAst@R K6% 3 +forecasters 'fOkAst@z Kj% 3 +forecasting 'fOkAstIN Hb% 36A +forecastle 'f@Uksl K6$ 2 +forecastles 'f@Ukslz Kj$ 2 +forecasts 'fOkAsts Ha%,Kj% 26A +foreclose fO'kl@Uz J2% 22A,3A,6A +foreclosed fO'kl@Uzd Jc%,Jd% 22A,3A,6A +forecloses fO'kl@UzIz Ja% 32A,3A,6A +foreclosing fO'kl@UzIN Jb% 32A,3A,6A +foreclosure fO'kl@UZ@R M6% 3 +foreclosures fO'kl@UZ@z Mj% 3 +forecourt 'fOkOt K6% 2 +forecourts 'fOkOts Kj% 2 +foredoom fO'dum H0$ 26A,14 +foredoomed fO'dumd Hc$,Hd% 26A,14 +foredooming fO'dumIN Hb$ 36A,14 +foredooms fO'dumz Ha$ 26A,14 +forefather 'fOfAD@R K6% 3 +forefathers 'fOfAD@z Kj% 3 +forefeet 'fOfit Kj% 2 +forefinger 'fOfINg@R K6% 3 +forefingers 'fOfINg@z Kj% 3 +forefoot 'fOfUt Ki$ 2 +forefront 'fOfrVnt K6% 2 +forefronts 'fOfrVnts Kj$ 2 +foregather fO'g&D@R I0% 32A,2C +foregathered fO'g&D@d Ic%,Id% 32A,2C +foregathering fO'g&D@rIN Ib% 42A,2C +foregathers fO'g&D@z Ia% 32A,2C +forego fO'g@U J5% 2 +foregoes fO'g@Uz Ja% 2 +foregoing fO'g@UIN Jb%,OA% 3 +foregone 'fOg0n OA% 2 +foregone fO'g0n Jd% 2 +foreground 'fOgraUnd K6% 2 +foregrounds 'fOgraUndz Kj$ 2 +forehand 'fOh&nd OA% 2 +forehead 'f0rId K6% 2 +foreheads 'f0rIdz Kj% 2 +foreign 'f0r@n OA% 2 +foreigner 'f0r@n@R K6% 3 +foreigners 'f0r@n@z Kj% 3 +foreknew fO'nju Jc$ 22A,3A,6A,8,9,10,17,18B,25 +foreknow fO'n@U J5$ 22A,3A,6A,8,9,10,17,18B,25 +foreknowing fO'n@UIN Jb$ 32A,3A,6A,8,9,10,17,18B,25 +foreknowledge ,fO'n0lIdZ L@% 3 +foreknown fO'n@Un Jd% 22A,3A,6A,8,9,10,17,18B,25 +foreknows fO'n@Uz Ja$ 22A,3A,6A,8,9,10,17,18B,25 +foreland 'fOl@nd K6% 2 +forelands 'fOl@ndz Kj$ 2 +foreleg 'fOleg K6% 2 +forelegs 'fOlegz Kj% 2 +forelock 'fOl0k K6% 2 +forelocks 'fOl0ks Kj$ 2 +foreman 'fOm@n Ki% 2 +foremast 'fOmAst K6% 2 +foremasts 'fOmAsts Kj% 2 +foremen 'fOm@n Kj% 2 +foremost 'fOm@Ust OA%,Pu% 2 +forename 'fOneIm K6% 2 +forenames 'fOneImz Kj% 2 +forenoon 'fOnun K6% 2 +forenoons 'fOnunz Kj% 2 +forensic f@'rensIk OA% 3 +foreordain ,fOrO'deIn H0$ 36A,14,17 +foreordained ,fOrO'deInd Hc$,Hd% 36A,14,17 +foreordaining ,fOrO'deInIN Hb$ 46A,14,17 +foreordains ,fOrO'deInz Ha$ 36A,14,17 +forerunner 'fOrVn@R K6% 3 +forerunners 'fOrVn@z Kj% 3 +foresail 'fOseIl K6% 2 +foresails 'fOseIlz Kj% 2 +foresaw fO'sO Hc% 26A,9,10 +foresee fO'si H5% 26A,9,10 +foreseeable fO'si@bl OA% 4 +foreseeing fO'siIN Hb% 36A,9,10 +foreseen fO'sin Hd% 26A,9,10 +foresees fO'siz Ha% 26A,9,10 +foreshadow fO'S&d@U H0% 36A +foreshadowed fO'S&d@Ud Hc%,Hd% 36A +foreshadowing fO'S&d@UIN Hb% 46A +foreshadows fO'S&d@Uz Ha% 36A +foreshore 'fOSOR K6% 2 +foreshores 'fOSOz Kj$ 2 +foreshorten fO'SOtn H0% 36A +foreshortened fO'SOtnd Hc%,Hd% 36A +foreshortening fO'SOtnIN Hb% 36A +foreshortens fO'SOtnz Ha% 36A +foresight 'fOsaIt L@% 2 +foreskin 'fOskIn K6% 2 +foreskins 'fOskInz Kj$ 2 +forest 'f0rIst M6% 2 +forestall fO'stOl H0% 26A +forestalled fO'stOld Hc%,Hd% 26A +forestalling fO'stOlIN Hb% 36A +forestalls fO'stOlz Ha% 26A +forester 'f0rIst@R K6% 3 +foresters 'f0rIst@z Kj% 3 +forestry 'f0r@strI L@% 3 +forests 'f0rIsts Mj% 2 +foreswear fO'swe@R H5% 26A +foreswearing fO'swe@rIN Hb% 36A +foreswears fO'swe@z Ha% 26A +foreswore fO'swOR Hc% 26A +foresworn fO'swOn Hd% 26A +foretaste 'fOteIst K6% 2 +foretastes 'fOteIsts Kj% 2 +foretell fO'tel H5% 26A,9,10,12A,13A +foretelling fO'telIN Hb% 36A,9,10,12A,13A +foretells fO'telz Ha% 26A,9,10,12A,13A +forethought 'fOTOt L@% 2 +foretold fO't@Uld Hc%,Hd% 26A,9,10,12A,13A +foretop 'fOt0p K6$ 2 +foretops 'fOt0ps Kj$ 2 +forever f@'rev@R Pu% 3 +forewarn fO'wOn H0% 26A +forewarned fO'wOnd Hc%,Hd% 26A +forewarning fO'wOnIN Hb% 36A +forewarns fO'wOnz Ha% 26A +forewent fO'went Jc$ 2 +forewoman 'fOwUm@n Ki$ 3 +forewomen 'fOwImIn Kj$ 3 +foreword 'fOw3d K6% 2 +forewords 'fOw3dz Kj% 2 +forfeit 'fOfIt H0%,K6% 26A +forfeited 'fOfItId Hc%,Hd% 36A +forfeiting 'fOfItIN Hb% 36A +forfeits 'fOfIts Ha%,Kj% 26A +forfeiture 'fOfItS@R L@% 3 +forgather fO'g&D@R I0% 32A,2C +forgathered fO'g&D@d Ic%,Id% 32A,2C +forgathering fO'g&D@rIN Ib% 42A,2C +forgathers fO'g&D@z Ia% 32A,2C +forgave f@'geIv Jc% 22A,6A,12C,14 +forge fOdZ J2%,K6% 12C,6A +forged fOdZd Jc%,Jd% 12C,6A +forger 'fOdZ@R K6% 2 +forgeries 'fOdZ@rIz Mj% 3 +forgers 'fOdZ@z Kj% 2 +forgery 'fOdZ@rI M8% 3 +forges 'fOdZIz Ja%,Kj% 22C,6A +forget f@'get J5% 22A,3A,6A,6C,6D,7A,8,9,10 +forget-me-not f@'get-mI-n0t K6% 4 +forget-me-nots f@'get-mI-n0ts Kj% 4 +forgetful f@'getf@l OA% 3 +forgetfully f@'getf@lI Pu% 4 +forgetfulness f@'getf@ln@s L@% 4 +forgets f@'gets Ja% 22A,3A,6A,6C,6D,7A,8,9,10 +forgetting f@'getIN Jb% 32A,3A,6A,6C,6D,7A,8,9,10 +forging 'fOdZIN Jb$,K6% 22C,6A +forgings 'fOdZINz Kj$ 2 +forgivable f@'gIv@bl OA% 4 +forgivably f@'gIv@blI Pu% 4 +forgive f@'gIv J5% 22A,6A,12C,14 +forgiven f@'gIvn Jd% 32A,6A,12C,14 +forgiveness f@'gIvn@s L@% 3 +forgives f@'gIvz Ja% 22A,6A,12C,14 +forgiving f@'gIvIN Jb%,OA% 32A,6A,12C,14 +forgivingly f@'gIvINlI Pu% 4 +forgo fO'g@U H5% 2 +forgoes fO'g@Uz Ja% 2 +forgoing fO'g@UIN Jb% 3 +forgone fO'g0n Jd% 2 +forgot f@'g0t Jc% 22A,3A,6A,6C,6D,7A,8,9,10 +forgotten f@'g0tn Jd% 32A,3A,6A,6C,6D,7A,8,9,10 +fork fOk J0%,K6% 12A,2C,6A,15A,15B +forked fOkt Jc%,Jd%,OA% 12A,2C,6A,15A,15B +forking 'fOkIN Jb% 22A,2C,6A,15A,15B +forks fOks Ja%,Kj% 12A,2C,6A,15A,15B +forlorn f@'lOn OA% 2 +forlornly f@'lOnlI Pu% 3 +forlornness f@'lOn+n@s L@% 3 +form fOm J0*,M6* 12A,2C,6A,14,15A +formal 'fOml OA% 2 +formaldehyde fO'm&ldIhaId L@$ 4 +formalin 'fOm@lIn L@$ 3 +formalism 'fOm@lIz@m L@$ 4 +formalities fO'm&lItIz Mj% 4 +formality fO'm&lItI M8% 4 +formalize 'fOm@laIz H2% 36A +formalized 'fOm@laIzd Hc%,Hd% 36A +formalizes 'fOm@laIzIz Ha% 46A +formalizing 'fOm@laIzIN Hb% 46A +formally 'fOm@lI Pu% 3 +format 'fOm&t K6% 2 +formation fO'meISn M6% 3 +formations fO'meISnz Mj% 3 +formative 'fOm@tIv OA% 3 +formats 'fOm&ts Kj% 2 +formed fOmd Jc%,Jd% 12A,2C,6A,14,15A +former 'fOm@R OA% 2 +formerly 'fOm@lI Pu% 3 +formic 'fOmIk OA$ 2 +formidable 'fOmId@bl OA% 4 +formidably 'fOmId@blI Pu% 4 +forming 'fOmIN Jb% 22A,2C,6A,14,15A +formless 'fOml@s OA% 2 +formlessly 'fOml@slI Pu% 3 +forms fOmz Ja%,Mj% 12A,2C,6A,14,15A +formula 'fOmjUl@ K6% 3 +formulae 'fOmjUli Kj% 3 +formulas 'fOmjUl@z Kj% 3 +formulate 'fOmjUleIt H2% 36A +formulated 'fOmjUleItId Hc%,Hd% 46A +formulates 'fOmjUleIts Ha% 36A +formulating 'fOmjUleItIN Hb% 46A +formulation ,fOmjU'leISn M6$ 4 +formulations ,fOmjU'leISnz Mj$ 4 +fornicate 'fOnIkeIt I2% 321 +fornicated 'fOnIkeItId Ic%,Id% 421 +fornicates 'fOnIkeIts Ia% 321 +fornicating 'fOnIkeItIN Ib% 421 +fornication ,fOnI'keISn L@% 4 +forrader 'f0r@d@R Pu$ 3 +forsake f@'seIk H5% 26A +forsaken f@'seIk@n Hd% 36A +forsakes f@'seIks Ha% 26A +forsaking f@'seIkIN Hb% 36A +forsook f@'sUk Hc% 26A +forsooth fO'suT Pu$ 2 +forswear fO'swe@R H5% 26A +forswearing fO'swe@rIN Hb% 36A +forswears fO'swe@z Ha% 26A +forswore fO'swOR Hc% 26A +forsworn fO'swOn Hd% 26A +forsythia fO'saITI@ L@$ 4 +fort fOt K6% 1 +forte 'fOteI K6$,OA$,Pu$ 2 +fortes 'fOteIz Kj$ 2 +forth fOT Pu% 1 +forthcoming ,fOT'kVmIN OA% 3 +forthright 'fOTraIt OA% 2 +forthwith ,fOT'wIT Pu% 2 +forties 'fOtIz Kj% 2 +fortieth 'fOtI@T K6%,OA% 3 +fortieths 'fOtI@Ts Kj% 3 +fortification ,fOtIfI'keISn M6% 5 +fortifications ,fOtIfI'keISnz Mj% 5 +fortified 'fOtIfaId Hc%,Hd% 36A,14 +fortifies 'fOtIfaIz Ha% 36A,14 +fortify 'fOtIfaI H3% 36A,14 +fortifying 'fOtIfaIIN Hb% 46A,14 +fortissimo fO'tIsIm@U OA$,Pu% 4 +fortitude 'fOtItjud L@% 3 +fortnight 'fOtnaIt K6% 2 +fortnightly 'fOtnaItlI OA%,Pu% 3 +fortnights 'fOtnaIts Kj% 2 +fortress 'fOtrIs K7% 2 +fortresses 'fOtrIsIz Kj% 3 +forts fOts Kj% 1 +fortuitous fO'tjuIt@s OA% 4 +fortuitously fO'tjuIt@slI Pu% 5 +fortunate 'fOtS@n@t OA% 3 +fortunately 'fOtS@n@tlI Pu% 4 +fortune 'fOtSun M6% 2 +fortunes 'fOtSunz Mj% 2 +forty 'fOtI K8%,OA% 2 +fortyish 'fOtIIS OA% 3 +forum 'fOr@m K6% 2 +forums 'fOr@mz Kj$ 2 +forward 'fOw@d H0%,K6%,OA%,Pu% 26A,12A,13A,15A +forwarded 'fOw@dId Hc%,Hd% 36A,12A,13A,15A +forwarding 'fOw@dIN Hb% 36A,12A,13A,15A +forwardness 'fOw@dn@s L@% 3 +forwards 'fOw@dz Ha%,Kj%,Pu% 26A,12A,13A,15A +forwent fO'went Jc$ 2 +fosse f0s K6$ 1 +fosses 'f0sIz Kj$ 2 +fossil 'f0sl K6% 2 +fossilization ,f0s@laI'zeISn M6% 5 +fossilizations ,f0s@laI'zeISnz Mj$ 5 +fossilize 'f0s@laIz J2% 32A,6A +fossilized 'f0s@laIzd Jc%,Jd% 32A,6A +fossilizes 'f0s@laIzIz Ja% 42A,6A +fossilizing 'f0s@laIzIN Jb% 42A,6A +fossils 'f0slz Kj% 2 +foster 'f0st@R H0% 26A +foster-brother 'f0st@-brVD@R K6% 4 +foster-brothers 'f0st@-brVD@z Kj% 4 +foster-child 'f0st@-tSaIld Ki% 3 +foster-children 'f0st@-tSIldr@n Kj% 4 +foster-father 'f0st@-fAD@R K6% 4 +foster-fathers 'f0st@-fAD@z Kj% 4 +foster-mother 'f0st@-mVD@R K6% 4 +foster-mothers 'f0st@-mVD@z Kj% 4 +foster-parent 'f0st@-pe@r@nt K6% 4 +foster-parents 'f0st@-pe@r@nts Kj% 4 +foster-sister 'f0st@-sIst@R K6% 4 +foster-sisters 'f0st@-sIst@z Kj% 4 +fostered 'f0st@d Hc%,Hd% 26A +fostering 'f0st@rIN Hb% 36A +fosters 'f0st@z Ha% 26A +fought fOt Jc%,Jd% 12A,2B,2C,3A,4A,6A,15A,15B +foul faUl J0%,M6%,OC% 12A,2C,6A +foul-mouthed faUl-'maUDd OA% 2 +foul-spoken faUl-'sp@Uk@n OA% 3 +fouled faUld Jc%,Jd% 12A,2C,6A +fouler 'faUl@R Or% 2 +foulest 'faUlIst Os% 2 +fouling 'faUlIN Jb% 22A,2C,6A +foully 'faUlI Pu% 2 +foulness 'faUln@s L@% 2 +fouls faUlz Ja%,Mj% 12A,2C,6A +found faUnd H0%,Hc*,Hd* 16A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +foundation faUn'deISn M6% 3 +foundation-stone faUn'deISn-st@Un K6% 4 +foundation-stones faUn'deISn-st@Unz Kj% 4 +foundations faUn'deISnz Mj% 3 +founded 'faUndId Hc%,Hd% 26A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +founder 'faUnd@R J0%,K6% 22A,6A +foundered 'faUnd@d Jc%,Jd% 22A,6A +foundering 'faUnd@rIN Jb% 32A,6A +founders 'faUnd@z Ja%,Kj% 22A,6A +founding 'faUndIN Hb% 26A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +foundling 'faUndlIN K6$ 2 +foundlings 'faUndlINz Kj$ 2 +foundress 'faUndrIs K7$ 2 +foundresses 'faUndrIsIz Kj$ 3 +foundries 'faUndrIz Kj% 2 +foundry 'faUndrI K8% 2 +founds faUndz Ha% 16A,8,9,10,12A,12B,13A,13B,14,15A,15B,19B,22,25 +fount faUnt K6% 1 +fountain 'faUntIn K6% 2 +fountain-head 'faUntIn-hed K6% 3 +fountain-heads 'faUntIn-hedz Kj$ 3 +fountain-pen 'faUntIn-pen K6% 3 +fountain-pens 'faUntIn-penz Kj% 3 +fountains 'faUntInz Kj% 2 +founts faUnts Kj% 1 +four fOR K6%,OA* 1 +four-in-hand ,fOr-In-'h&nd K6$ 3 +four-in-hands ,fOr-In-'h&ndz Kj$ 3 +four-part 'fO-pAt OA% 2 +four-ply 'fO-plaI OA% 2 +four-poster fO'-p@Ust@R K6% 3 +four-posters fO'-p@Ust@z Kj% 3 +four-pounder fO'-paUnd@R K6% 3 +four-pounders fO'-paUnd@z Kj% 3 +four-wheeler fO-'wil@R K6% 3 +four-wheelers fO-'wil@z Kj% 3 +fourfold 'fOf@Uld OA%,Pu% 2 +fourpence 'fOp@ns K6% 2 +fourpences 'fOp@nsIz Kj% 3 +fourpenny 'fOpnI OA% 3 +fours fOz Kj% 1 +fourscore 'fOskOR Ki%,OA% 2 +foursome 'fOs@m K6% 2 +foursomes 'fOs@mz Kj% 2 +foursquare 'fOskwe@R OA% 2 +fourteen ,fO'tin K6%,OA% 2 +fourteens ,fO'tinz Kj% 2 +fourteenth ,fO'tinT K6%,OA% 2 +fourteenths ,fO'tinTs Kj% 2 +fourth fOT K6%,OA% 1 +fourthly 'fOTlI Pu% 2 +fourths fOTs Kj% 1 +fowl faUl I0%,M6% 1 +fowl-run 'faUl-rVn K6% 2 +fowl-runs 'faUl-rVnz Kj$ 2 +fowled faUld Ic$,Id$ 1 +fowler 'faUl@R K6$ 2 +fowlers 'faUl@z Kj$ 2 +fowling 'faUlIN Ib$ 2 +fowlingpiece 'faUlINpis K6$ 3 +fowlingpieces 'faUlINpisIz Kj$ 4 +fowlpest 'faUlpest L@% 2 +fowls faUlz Ia%,Mj% 1 +fox f0ks H1%,K7% 16A +fox-terrier f0ks-'terI@R K6% 4 +fox-terriers f0ks-'terI@z Kj% 4 +foxed f0kst Hc%,Hd% 16A +foxes 'f0ksIz Ha%,Kj% 26A +foxglove 'f0ksglVv K6% 2 +foxgloves 'f0ksglVvz Kj% 2 +foxhole 'f0ksh@Ul K6% 2 +foxholes 'f0ksh@Ulz Kj% 2 +foxhound 'f0kshaUnd K6% 2 +foxhounds 'f0kshaUndz Kj% 2 +foxhunt 'f0kshVnt I0%,K6% 2 +foxhunted 'f0kshVntId Ic%,Id% 3 +foxhunter 'f0kshVnt@R K6% 3 +foxhunters 'f0kshVnt@z Kj% 3 +foxhunting 'f0kshVntIN Ib% 3 +foxhunts 'f0kshVnts Ia%,Kj% 2 +foxier 'f0ksI@R Or% 3 +foxiest 'f0ksIIst Os% 3 +foxing 'f0ksIN Hb% 26A +foxtrot 'f0kstr0t K6% 2 +foxtrots 'f0kstr0ts Kj% 2 +foxy 'f0ksI OD% 2 +foyer 'foIeI K6% 2 +foyers 'foIeIz Kj$ 2 +fracas 'fr&kA Ki$ 2 +fracas 'fr&kAz Kj$ 2 +fraction 'fr&kSn K6% 2 +fractional 'fr&kSn@l OA% 3 +fractions 'fr&kSnz Kj% 2 +fractious 'fr&kS@s OA$ 2 +fractiously 'fr&kS@slI Pu$ 3 +fractiousness 'fr&kS@sn@s L@$ 3 +fracture 'fr&ktS@R J2%,M6% 22A,6A +fractured 'fr&ktS@d Jc%,Jd% 22A,6A +fractures 'fr&ktS@z Ja%,Mj% 22A,6A +fracturing 'fr&ktS@rIN Jb% 32A,6A +fragile 'fr&dZaIl OA% 2 +fragility fr@'dZIlItI L@% 4 +fragment 'fr&gm@nt K6% 2 +fragment fr&g'ment I0% 22A +fragmentary 'fr&gm@ntrI OA% 3 +fragmentation ,fr&gmen'teISn M6% 4 +fragmentations ,fr&gmen'teISnz Mj$ 4 +fragmented fr&g'mentId Ic%,Id% 32A +fragmenting fr&g'mentIN Ib% 32A +fragments 'fr&gm@nts Kj% 2 +fragments fr&g'ments Ia% 22A +fragrance 'freIgr@ns M6% 2 +fragrances 'freIgr@nsIz Mj% 3 +fragrant 'freIgr@nt OA% 2 +frail freIl OC% 1 +frailer 'freIl@R Or% 2 +frailest 'freIlIst Os% 2 +frailties 'freIltIz Mj% 2 +frailty 'freIltI M8% 2 +frame freIm J2%,K6% 12A,2C,6A +frame-up 'freIm-Vp K6% 2 +frame-ups 'freIm-Vps Kj% 2 +framed freImd Jc%,Jd% 12A,2C,6A +frames freImz Ja%,Kj% 12A,2C,6A +framework 'freImw3k K6% 2 +frameworks 'freImw3ks Kj% 2 +framing 'freImIN Jb% 22A,2C,6A +franc fr&Nk K6% 1 +franchise 'fr&ntSaIz M6% 2 +franchises 'fr&ntSaIzIz Mj$ 3 +francs fr&Nks Kj% 1 +frank fr&Nk H0%,OC% 16A +franked fr&Nkt Hc%,Hd% 16A +franker 'fr&Nk@R Or% 2 +frankest 'fr&NkIst Os% 2 +frankfurter 'fr&Nkf3t@R K6% 3 +frankfurters 'fr&Nkf3t@z Kj% 3 +frankincense 'fr&NkInsens L@% 3 +franking 'fr&NkIN Hb% 26A +franking-machine 'fr&nkIN-m@Sin K6% 4 +franking-machines 'fr&nkIN-m@Sinz Kj% 4 +franklin 'fr&NklIn K6$ 2 +franklins 'fr&NklInz Kj$ 2 +frankly 'fr&NklI Pu% 2 +frankness 'fr&Nkn@s L@% 2 +franks fr&Nks Ha% 16A +frantic 'fr&ntIk OA% 2 +frantically 'fr&ntIklI Pu% 3 +fraternal fr@'t3nl OA% 3 +fraternally fr@'t3n@lI Pu% 4 +fraternities fr@'t3nItIz Mj% 4 +fraternity fr@'t3nItI M8% 4 +fraternization ,fr&t@naI'zeISn L@% 5 +fraternize 'fr&t@naIz I2% 32A,2C,3A +fraternized 'fr&t@naIzd Ic%,Id% 32A,2C,3A +fraternizes 'fr&t@naIzIz Ia% 42A,2C,3A +fraternizing 'fr&t@naIzIN Ib% 42A,2C,3A +fratricide 'fr&trIsaId M6% 3 +fratricides 'fr&trIsaIdz Mj% 3 +fraud frOd M6% 1 +frauds frOdz Mj% 1 +fraudulent 'frOdjUl@nt OA% 3 +fraudulently 'frOdjUl@ntlI Pu% 4 +fraught frOt Op% 1 +fray freI J0%,K6% 12A,2C,6A +frayed freId Jc%,Jd% 12A,2C,6A +fraying 'freIIN Jb% 22A,2C,6A +frays freIz Ja%,Kj% 12A,2C,6A +frazzle 'fr&zl K6% 2 +frazzles 'fr&zlz Kj% 2 +freak frik J0%,K6% 12C,15B +freak-out 'frik-aUt K6% 2 +freak-outs 'frik-aUts Kj$ 2 +freaked frikt Jc%,Jd% 12C,15B +freakier 'frikI@R Or% 3 +freakiest 'frikIIst Os% 3 +freaking 'frikIN Jb% 22C,15B +freakish 'frikIS OA% 2 +freakishly 'frikISlI Pu% 3 +freakishness 'frikISn@s L@% 3 +freaks friks Ja%,Kj% 12C,15B +freaky 'frikI OD% 2 +freckle 'frekl J2%,K6% 22A,6A +freckled 'frekld Jc%,Jd% 22A,6A +freckles 'freklz Ja%,Kj% 22A,6A +freckling 'freklIN Jb% 22A,6A +free fri H5%,OB% 16A,14 +free-and-easy ,fri-@n-'izI OA% 4 +free-for-all 'fri-f@r-Ol K6% 3 +free-for-alls 'fri-f@r-Olz Kj$ 3 +free-handed fri-'h&ndId OA$ 3 +free-list 'fri-lIst K6$ 2 +free-lists 'fri-lIsts Kj$ 2 +free-liver fri-'lIv@R K6$ 3 +free-livers fri-'lIv@z Kj$ 3 +free-living fri-'lIvIN L@% 3 +free-range fri-'reIndZ OA% 2 +free-spoken fri-'sp@Uk@n OA% 3 +free-standing fri-'st&ndIN OA% 3 +free-thinker fri-'TINk@R K6% 3 +free-thinkers fri-'TINk@z Kj% 3 +free-thinking fri-'TINkIN OA% 3 +free-thought fri-'TOt L@$ 2 +free-trader fri-'treId@R K6$ 3 +free-traders fri-'treId@z Kj$ 3 +freebooter 'fribut@R K6$ 3 +freebooters 'fribut@z Kj$ 3 +freeborn 'fribOn OA% 2 +freed frid Hc%,Hd% 16A,14 +freedman 'fridm@n Ki$ 2 +freedmen 'fridm@n Kj$ 2 +freedom 'frid@m M6% 2 +freedoms 'frid@mz Mj% 2 +freehand 'frih&nd OA% 2 +freehold 'frih@Uld K6% 2 +freeholder 'frih@Uld@R K6% 3 +freeholders 'frih@Uld@z Kj% 3 +freeholds 'frih@Uldz Kj% 2 +freeing 'friIN Hb% 26A,14 +freelance 'frilAns I2%,K6% 2 +freelanced 'frilAnst Ic%,Id% 2 +freelances 'frilAnsIz Ia%,Kj% 3 +freelancing 'frilAnsIN Ib% 3 +freely 'frilI Pu% 2 +freeman 'frim@n Ki% 2 +freemen 'frim@n Kj% 2 +freer 'fri@R Or% 2 +frees friz Ha% 16A,14 +freesia 'frizI@ K6$ 3 +freesias 'frizI@z Kj$ 3 +freest 'friIst Os$ 2 +freestone 'frist@Un L@$ 2 +freestyle 'fristaIl L@% 2 +freeway 'friweI K6% 2 +freeways 'friweIz Kj% 2 +freewheel fri'wil I0% 22A,2C +freewheeled fri'wild Ic%,Id% 22A,2C +freewheeling fri'wilIN Ib% 32A,2C +freewheels fri'wilz Ia% 22A,2C +freewill 'friwIl OA% 2 +freeze friz J5%,K6% 12A,2C,3A,6A,15B +freezer 'friz@R K6% 2 +freezers 'friz@z Kj% 2 +freezes 'frizIz Ja%,Kj% 22A,2C,3A,6A,15B +freezing 'frizIN Jb% 22A,2C,3A,6A,15B +freezing-mixture 'frizIN-mIkstS@R K6$ 4 +freezing-mixtures 'frizIN-mIkstS@z Kj$ 4 +freezing-point 'frizIN-poInt K6% 3 +freezing-points 'frizIN-poInts Kj% 3 +freight freIt H0$,L@% 16A,14 +freight-train 'freIt-treIn K6% 2 +freight-trains 'freIt-treInz Kj% 2 +freighted 'freItId Hc$,Hd$ 26A,14 +freighter 'freIt@R K6% 2 +freighters 'freIt@z Kj% 2 +freighting 'freItIN Hb$ 26A,14 +freightliner 'freItlaIn@R K6% 3 +freightliners 'freItlaIn@z Kj% 3 +freights freIts Ha$ 16A,14 +frenetic fr@'netIk OA% 3 +frenzied 'frenzId OA% 2 +frenziedly 'frenzIdlI Pu% 3 +frenzy 'frenzI L@% 2 +frequencies 'frikw@nsIz Mj% 3 +frequency 'frikw@nsI M8% 3 +frequent 'frikw@nt OA% 2 +frequent frI'kwent H0% 26A +frequented frI'kwentId Hc%,Hd% 36A +frequenting frI'kwentIN Hb% 36A +frequently 'frikw@ntlI Pu% 3 +frequents frI'kwents Ha% 26A +fresco 'fresk@U H0$,M6% 2 +frescoed 'fresk@Ud Hc$,Hd$ 2 +frescoes 'fresk@Uz Kj% 2 +frescoing 'fresk@UIN Hb$ 3 +frescos 'fresk@Uz Ha$,Mj$ 2 +fresh freS OC%,Pu% 1 +freshen 'freSn J0% 22A,2C,6A,15B +freshened 'freSnd Jc%,Jd% 22A,2C,6A,15B +freshening 'freSnIN Jb% 32A,2C,6A,15B +freshens 'freSnz Ja% 22A,2C,6A,15B +fresher 'freS@R K6%,Or% 2 +freshers 'freS@z Kj% 2 +freshest 'freSIst Os% 2 +freshly 'freSlI Pu% 2 +freshman 'freSm@n Ki% 2 +freshmen 'freSm@n Kj% 2 +freshness 'freSn@s L@% 2 +freshwater 'freSwOt@R OA% 3 +fret fret J4%,K6% 12A,2C,3A,6A,15A +fretful 'fretf@l OA% 2 +fretfully 'fretf@lI Pu% 3 +frets frets Ja%,Kj% 12A,2C,3A,6A,15A +fretsaw 'fretsO K6% 2 +fretsaws 'fretsOz Kj% 2 +fretted 'fretId Jc%,Jd% 22A,2C,3A,6A,15A +fretting 'fretIN Jb% 22A,2C,3A,6A,15A +fretwork 'fretw3k L@% 2 +friability ,fraI@'bIlItI L@$ 5 +friable 'fraI@bl OA% 3 +friar 'fraI@R K6% 2 +friars 'fraI@z Kj% 2 +fricassee 'frIk@si M6$ 3 +fricassee ,frIk@'si H5$ 3 +fricasseed ,frIk@'sid Hc$,Hd$ 3 +fricasseeing ,frIk@'siIN Hb$ 4 +fricassees 'frIk@siz Mj$ 3 +fricassees ,frIk@'siz Ha$ 3 +fricative 'frIk@tIv K6$,OA$ 3 +fricatives 'frIk@tIvz Kj$ 3 +friction 'frIkSn M6% 2 +frictions 'frIkSnz Mj$ 2 +fridge frIdZ K6% 1 +fridges 'frIdZIz Kj% 2 +fried fraId Jc%,Jd% 12A,6A +friend frend K6% 1 +friendless 'frendl@s OA% 2 +friendlessness 'frendl@sn@s L@% 3 +friendlier 'frendlI@R Or% 3 +friendliest 'frendlIIst Os% 3 +friendliness 'frendlIn@s L@% 3 +friendly 'frendlI OD% 2 +friends frendz Kj% 1 +friendship 'frendSIp M6% 2 +friendships 'frendSIps Mj% 2 +frier 'fraI@R K6$ 2 +friers 'fraI@z Kj$ 2 +fries fraIz Ja%,Kj% 12A,6A +frieze friz K6% 1 +friezes 'frizIz Kj% 2 +frigate 'frIg@t K6% 2 +frigates 'frIg@ts Kj% 2 +fright fraIt H0$,M6% 1 +frighted 'fraItId Hc$,Hd$ 2 +frighten 'fraItn H0% 26A,14,15B +frightened 'fraItnd Hc%,Hd%,OA% 26A,14,15B +frightening 'fraItnIN Hb%,OA% 36A,14,15B +frighteningly 'fraItnINlI Pu% 4 +frightens 'fraItnz Ha% 26A,14,15B +frightful 'fraItf@l OA% 2 +frightfully 'fraItf@lI Pu% 3 +frightfulness 'fraItf@ln@s L@% 3 +frighting 'fraItIN Hb$ 2 +frights fraIts Ha$,Mj% 1 +frigid 'frIdZId OA% 2 +frigidity frI'dZIdItI L@% 4 +frigidly 'frIdZIdlI Pu% 3 +frill frIl K6% 1 +frilled frIld OA% 1 +frillier 'frIlI@R Or$ 3 +frilliest 'frIlIIst Os$ 3 +frills frIlz Kj% 1 +frilly 'frIlI OD% 2 +fringe frIndZ H2%,K6% 16A +fringed frIndZd Hc%,Hd% 16A +fringes 'frIndZIz Ha%,Kj% 26A +fringing 'frIndZIN Hb% 26A +fripperies 'frIp@rIz Mj$ 3 +frippery 'frIp@rI M8$ 3 +frisk frIsk J0% 12A,2C,6A +frisked frIskt Jc%,Jd% 12A,2C,6A +friskier 'frIskI@R Or% 3 +friskiest 'frIskIIst Os% 3 +friskily 'frIskIlI Pu% 3 +frisking 'frIskIN Jb% 22A,2C,6A +frisks frIsks Ja% 12A,2C,6A +frisky 'frIskI OD% 2 +frisson 'fris0n K6$ 2 +frissons 'fris0nz Kj$ 2 +fritter 'frIt@R H0%,K6% 215B +frittered 'frIt@d Hc%,Hd% 215B +frittering 'frIt@rIN Hb% 315B +fritters 'frIt@z Ha%,Kj% 215B +frivol 'frIvl J4$ 22A,15B +frivolities frI'v0lItIz Mj% 4 +frivolity frI'v0lItI M8% 4 +frivolled 'frIvld Jc$,Jd$ 22A,15B +frivolling 'frIv@lIN Jb$ 32A,15B +frivolous 'frIv@l@s OA% 3 +frivolously 'frIv@l@slI Pu% 4 +frivols 'frIvlz Ja$ 22A,15B +frizz frIz H1$ 16A +frizzed frIzd Hc$,Hd% 16A +frizzes 'frIzIz Ha$ 26A +frizzier 'frIzI@R Or$ 3 +frizziest 'frIzIIst Os$ 3 +frizzing 'frIzIN Hb$ 26A +frizzle 'frIzl J2% 22A,2C,6A,15B +frizzled 'frIzld Jc%,Jd% 22A,2C,6A,15B +frizzles 'frIzlz Ja% 22A,2C,6A,15B +frizzling 'frIzlIN Jb% 22A,2C,6A,15B +frizzy 'frIzI OD% 2 +fro fr@U Pu% 1 +frock fr0k K6% 1 +frock-coat 'fr0k-k@Ut K6% 2 +frock-coats 'fr0k-k@Uts Kj% 2 +frocks fr0ks Kj% 1 +frog fr0g K6% 1 +frogman 'fr0gm@n Ki% 2 +frogmarch 'fr0gmAtS H1% 26A +frogmarched 'fr0gmAtSt Hc%,Hd% 26A +frogmarches 'fr0gmAtSIz Ha% 36A +frogmarching 'fr0gmAtSIN Hb% 36A +frogmen 'fr0gm@n Kj% 2 +frogs fr0gz Kj% 1 +frolic 'fr0lIk I5%,K6% 22A,2C +frolicked 'fr0lIkt Ic%,Id% 22A,2C +frolicking 'fr0lIkIN Ib% 32A,2C +frolics 'fr0lIks Ia%,Kj% 22A,2C +frolicsome 'fr0lIks@m OA% 3 +from fr0m T-* 1 +frond fr0nd K6% 1 +fronds fr0ndz Kj% 1 +front frVnt J0%,M6% 12A,2C,6A +front-bench frVnt-'bentS K7% 2 +front-bencher frVnt-'bentS@R K6% 3 +front-benchers frVnt-'bentS@z Kj% 3 +front-benches frVnt-'bentSIz Kj% 3 +frontage 'frVntIdZ K6$ 2 +frontages 'frVntIdZIz Kj$ 3 +frontal 'frVntl OA% 2 +fronted 'frVntId Jc%,Jd% 22A,2C,6A +frontier 'frVntI@R K6% 3 +frontiers 'frVntI@z Kj% 3 +frontiersman 'frVntI@zm@n Ki% 4 +frontiersmen 'frVntI@zm@n Kj% 4 +fronting 'frVntIN Jb% 22A,2C,6A +frontispiece 'frVntIspis K6% 3 +frontispieces 'frVntIspisIz Kj% 4 +fronts frVnts Ja%,Mj% 12A,2C,6A +frost fr0st J0%,M6% 12A,2C,6A +frost-bound 'fr0st-baUnd OA% 2 +frostbite 'fr0stbaIt L@% 2 +frostbitten 'fr0stbItn OA% 3 +frosted 'fr0stId Jc%,Jd% 22A,2C,6A +frostier 'fr0stI@R Or% 3 +frostiest 'fr0stIIst Os% 3 +frostily 'fr0stIlI Pu% 3 +frostiness 'fr0stIn@s L@% 3 +frosting 'fr0stIN Jb%,L@% 22A,2C,6A +frosts fr0sts Ja%,Mj% 12A,2C,6A +frosty 'fr0stI OD% 2 +froth fr0T I0%,L@% 12A,2C +frothed fr0Tt Ic%,Id% 12A,2C +frothier 'fr0TI@R Or% 3 +frothiest 'fr0TIIst Os% 3 +frothily 'fr0TIlI Pu% 3 +frothiness 'fr0TIn@s L@% 3 +frothing 'fr0TIN Ib% 22A,2C +froths fr0Ts Ia% 12A,2C +frothy 'fr0TI OD% 2 +froward 'fr@U@d OA$ 2 +frown fraUn I0%,K6% 12A,3A +frowned fraUnd Ic%,Id% 12A,3A +frowning 'fraUnIN Ib% 22A,3A +frowningly 'fraUnINlI Pu% 3 +frowns fraUnz Ia%,Kj% 12A,3A +frowsty 'fraUstI OA$ 2 +frowzy 'fraUzI OA$ 2 +froze fr@Uz Jc% 12A,2C,3A,6A,15B +frozen 'fr@Uz@n Jd% 22A,2C,3A,6A,15B +fructification ,frVktIfI'keISn L@$ 5 +fructified 'frVktIfaId Jc$,Jd$ 32A,6A +fructifies 'frVktIfaIz Ja$ 32A,6A +fructify 'frVktIfaI J3$ 32A,6A +fructifying 'frVktIfaIIN Jb$ 42A,6A +frugal 'frugl OA% 2 +frugalities fru'g&lItIz Mj$ 4 +frugality fru'g&lItI M8% 4 +frugally 'frug@lI Pu% 3 +fruit frut I0%,M6% 1 +fruit-flies 'frut-flaIz Kj% 2 +fruit-fly 'frut-flaI K8% 2 +fruitcake 'frutkeIk K6% 2 +fruitcakes 'frutkeIks Kj% 2 +fruited 'frutId Ic%,Id% 2 +fruiterer 'frut@r@R K6% 3 +fruiterers 'frut@r@z Kj% 3 +fruitful 'frutf@l OA% 2 +fruitfully 'frutf@lI Pu% 3 +fruitfulness 'frutf@ln@s L@% 3 +fruitier 'frutI@R Or% 3 +fruitiest 'frutIIst Os% 3 +fruiting 'frutIN Ib% 2 +fruition fru'ISn L@% 3 +fruitless 'frutl@s OA% 2 +fruitlessly 'frutl@slI Pu% 3 +fruitlessness 'frutl@sn@s L@% 3 +fruits fruts Ia%,Mj% 1 +fruity 'frutI OD% 2 +frump frVmp K6% 1 +frumpier 'frVmpI@R Or$ 3 +frumpiest 'frVmpIIst Os$ 3 +frumpish 'frVmpIS OA% 2 +frumps frVmps Kj$ 1 +frumpy 'frVmpI OD% 2 +frustrate frV'streIt H2% 26A,15A +frustrated frV'streItId Hc%,Hd% 36A,15A +frustrates frV'streIts Ha% 26A,15A +frustrating frV'streItIN Hb% 36A,15A +frustration frV'streISn M6% 3 +frustrations frV'streISnz Mj% 3 +fry fraI J3%,K9% 12A,6A +fry-pan 'fraI-p&n K6% 2 +fry-pans 'fraI-p&nz Kj% 2 +fryer 'fraI@R K6$ 2 +fryers 'fraI@z Kj$ 2 +frying 'fraIIN Jb% 22A,6A +frying-pan 'fraIIN-p&n K6% 3 +frying-pans 'fraIIN-p&nz Kj% 3 +ft fit Y]% 2 +fuchsia 'fjuS@ K6% 2 +fuchsias 'fjuS@z Kj% 2 +fuck fVk J0% 12A,6A +fuck-all fVk-'Ol L@% 2 +fucked fVkt Jc%,Jd% 12A,6A +fucker 'fVk@R K6% 2 +fuckers 'fVk@z Kj% 2 +fucking 'fVkIN Jb%,OA% 22A,6A +fucks fVks Ja% 12A,6A +fuddle 'fVdl H2$ 26A,15A +fuddled 'fVdld Hc$,Hd% 26A,15A +fuddles 'fVdlz Ha$ 26A,15A +fuddling 'fVdlIN Hb$ 26A,15A +fuddy-duddies 'fVdI-dVdIz Kj% 4 +fuddy-duddy 'fVdI-dVdI K8% 4 +fudge fVdZ M6%,W-% 1 +fudges 'fVdZIz Mj% 2 +fuel 'fju@l J4%,M6% 22A,6A +fuelled 'fju@ld Jc%,Jd% 22A,6A +fuelling 'fju@lIN Jb% 32A,6A +fuels 'fju@lz Ja%,Mj% 22A,6A +fug fVg K6% 1 +fuggier 'fVgI@R Or$ 3 +fuggiest 'fVgIIst Os$ 3 +fuggy 'fVgI OD% 2 +fugitive 'fjudZ@tIv K6%,OA% 3 +fugitives 'fjudZ@tIvz Kj% 3 +fugs fVgz Kj$ 1 +fugue fjug K6% 1 +fugues fjugz Kj% 1 +fulcra 'fUlkr@ Kj$ 2 +fulcrum 'fUlkr@m K6% 2 +fulcrums 'fUlkr@mz Kj$ 2 +fulfil fUl'fIl H4% 26A +fulfilled fUl'fIld Hc%,Hd% 26A +fulfilling fUl'fIlIN Hb% 36A +fulfilment fUl'fIlm@nt K6% 3 +fulfilments fUl'fIlm@nts Kj$ 3 +fulfils fUl'fIlz Ha% 26A +full fUl OC* 1 +full-blooded fUl-'blVdId OA% 3 +full-blown fUl-'bl@Un OA% 2 +full-dress fUl-'dres OA% 2 +full-fashioned fUl-'f&Snd OA% 3 +full-fledged fUl-'fledZd OA% 2 +full-grown fUl-'gr@Un OA% 2 +full-length fUl-'leNT OA% 2 +full-page fUl-'peIdZ OA% 2 +full-scale fUl-'skeIl OA% 2 +full-time fUl-'taIm OA%,Pu% 2 +fullback 'fUlb&k K6% 2 +fullbacks 'fUlb&ks Kj% 2 +fuller 'fUl@R K6$,Or% 2 +fullers 'fUl@z Kj$ 2 +fullest 'fUlIst Os% 2 +fullness 'fUln@s L@% 2 +fully 'fUlI Pu% 2 +fully-fashioned ,fUlI-'f&Snd OA% 4 +fully-fledged ,fUlI-'fledZd OA% 3 +fully-grown ,fUlI-'gr@Un OA% 3 +fulmar 'fUlm@R K6$ 2 +fulmars 'fUlm@z Kj$ 2 +fulminate 'fVlmIneIt I2$ 32A,3A +fulminated 'fVlmIneItId Ic$,Id$ 42A,3A +fulminates 'fVlmIneIts Ia$ 32A,3A +fulminating 'fVlmIneItIN Ib$ 42A,3A +fulmination ,fVlmI'neISn M6$ 4 +fulminations ,fVlmI'neISnz Mj$ 4 +fulsome 'fUls@m OA% 2 +fulsomely 'fUls@mlI Pu% 3 +fulsomeness 'fUls@mn@s L@$ 3 +fumble 'fVmbl J2% 22A,2C,6A +fumbled 'fVmbld Jc%,Jd% 22A,2C,6A +fumbler 'fVmbl@R K6% 2 +fumblers 'fVmbl@z Kj% 2 +fumbles 'fVmblz Ja% 22A,2C,6A +fumbling 'fVmblIN Jb% 22A,2C,6A +fume fjum J2%,K6% 12A,2C,3A,6A +fumed fjumd Jc%,Jd% 12A,2C,3A,6A +fumes fjumz Ja%,Kj% 12A,2C,3A,6A +fumigate 'fjumIgeIt H2% 36A +fumigated 'fjumIgeItId Hc%,Hd% 46A +fumigates 'fjumIgeIts Ha% 36A +fumigating 'fjumIgeItIN Hb% 46A +fumigation ,fjumI'geISn K6% 4 +fumigations ,fjumI'geISnz Kj% 4 +fuming 'fjumIN Jb% 22A,2C,3A,6A +fun fVn L@% 1 +function 'fVNkSn I0%,K6% 22A,2C +functional 'fVNkS@nl OA% 3 +functionalism 'fVNkS@n@lIz@m L@$ 5 +functionalist 'fVNkSn@lIst K6$ 3 +functionalists 'fVNkSn@lIsts Kj$ 3 +functionally 'fVNkS@n@lI Pu% 4 +functionaries 'fVNkS@n@rIz Kj$ 4 +functionary 'fVNkS@n@rI K8$ 4 +functioned 'fVNkSnd Ic%,Id% 22A,2C +functioning 'fVNkSnIN Ib% 32A,2C +functions 'fVNkSnz Ia%,Kj% 22A,2C +fund fVnd H0%,K6% 16A +fundamental ,fVnd@'mentl K6%,OA% 4 +fundamentalism ,fVnd@'ment@lIz@m L@% 6 +fundamentalist ,fVnd@'ment@lIst K6% 5 +fundamentalists ,fVnd@'ment@lIsts Kj% 5 +fundamentally ,fVnd@'ment@lI Pu% 5 +fundamentals ,fVnd@'mentlz Kj% 4 +funded 'fVndId Hc%,Hd% 26A +funding 'fVndIN Hb% 26A +funds fVndz Ha%,Kj% 16A +funeral 'fjun@r@l K6% 3 +funerals 'fjun@r@lz Kj% 3 +funereal fju'nI@rI@l OA% 4 +funfair 'fVnfe@R K6% 2 +funfairs 'fVnfe@z Kj% 2 +fungi 'fVNgaI Kj% 2 +fungicide 'fVndZIsaId M6% 3 +fungicides 'fVndZIsaIdZ Mj% 3 +fungoid 'fVNgoId OA$ 2 +fungous 'fVNg@s OA$ 2 +fungus 'fVNg@s M7% 2 +funguses 'fVNg@sIz Mj% 3 +funicular fju'nIkjUl@R K6$ 4 +funiculars fju'nIkjUl@z Kj$ 4 +funk fVNk J0%,K6% 12A,6A +funked fVNkt Jc%,Jd% 12A,6A +funkier 'fVNkI@R Or$ 3 +funkiest 'fVNkIIst Os$ 3 +funking 'fVNkIN Jb% 22A,6A +funks fVNks Ja%,Kj% 12A,6A +funky 'fVNkI OD% 2 +funnel 'fVnl J4%,K6% 22A,6A +funnelled 'fVnld Jc%,Jd% 22A,6A +funnelling 'fVn@lIN Jb% 32A,6A +funnels 'fVnlz Ja%,Kj% 22A,6A +funnier 'fVnI@R Or% 3 +funniest 'fVnIIst Os% 3 +funnily 'fVnIlI Pu% 3 +funniness 'fVnIn@s L@% 3 +funny 'fVnI OD% 2 +funny-bone 'fVnI-b@Un K6% 3 +funny-bones 'fVnI-b@Unz Kj% 3 +fur f3R M6% 1 +furbelow 'f3bIl@U K6$ 3 +furbelows 'f3bIl@Uz Kj% 3 +furbish 'f3bIS H1% 26A +furbished 'f3bISt Hc%,Hd% 26A +furbishes 'f3bISIz Ha% 36A +furbishing 'f3bISIN Hb% 36A +furies 'fjU@rIz Mj% 2 +furious 'fjU@rI@s OA% 3 +furiously 'fjU@rI@slI Pu% 4 +furl f3l J0% 12A,6A +furled f3ld Jc%,Jd% 12A,6A +furling 'f3lIN Jb$ 22A,6A +furlong 'f3l0N K6% 2 +furlongs 'f3l0Nz Kj% 2 +furlough 'f3l@U M6$ 2 +furloughs 'f3l@Uz Mj$ 2 +furls f3lz Ja% 12A,6A +furnace 'f3nIs K6% 2 +furnaces 'f3nIsIz Kj% 3 +furnish 'f3nIS H1% 26A,14 +furnished 'f3nISt Hc%,Hd% 26A,14 +furnishes 'f3nISIz Ha% 36A,14 +furnishing 'f3nISIN Hb% 36A,14 +furnishings 'f3nISINz Kj% 3 +furniture 'f3nItS@R L@% 3 +furore fjU'rOrI K6% 3 +furores fjU'rOrIz Kj% 3 +furrier 'f3rI@R Or% 3 +furrier 'fVrI@R K6% 3 +furriers 'fVrI@z Kj% 3 +furriest 'f3rIIst Os% 3 +furrow 'fVr@U H0%,K6% 26A +furrowed 'fVr@Ud Hc%,Hd% 26A +furrowing 'fVr@UIN Hb% 36A +furrows 'fVr@Uz Ha%,Kj% 26A +furry 'f3rI OD% 2 +furs f3z Mj% 1 +further 'f3D@R H0%,Or%,Pu% 26A +furtherance 'f3D@r@ns L@% 3 +furthered 'f3D@d Hc%,Hd% 26A +furthering 'f3D@rIN Hb% 36A +furthermore ,f3D@'mOR Pu% 3 +furthermost 'f3D@m@Ust OA% 3 +furthers 'f3D@z Ha% 26A +furthest 'f3DIst OA%,Pu% 2 +furtive 'f3tIv OA% 2 +furtively 'f3tIvlI Pu% 3 +furtiveness 'f3tIvn@s L@% 3 +fury 'fjU@rI M8% 2 +furze f3z L@$ 1 +fuse fjuz J2%,K6% 12A,6A,15A,15B +fused fjuzd Jc%,Jd% 12A,6A,15A,15B +fuselage 'fjuz@lAZ K6% 3 +fuselages 'fjuz@lAZIz Kj$ 4 +fuses 'fjuzIz Ja%,Kj% 22A,6A,15A,15B +fusilier ,fjuz@'lI@R K6% 4 +fusiliers ,fjuz@'lI@z Kj% 4 +fusillade ,fjuzI'leId K6$ 3 +fusillades ,fjuzI'leIdz Kj$ 3 +fusing 'fjuzIN Jb% 22A,6A,15A,15B +fusion 'fjuZn M6% 2 +fusions 'fjuZnz Mj% 2 +fuss fVs J1%,M7% 12A,2C,6A +fussed fVst Jc%,Jd% 12A,2C,6A +fusses 'fVsIz Ja%,Mj% 22A,2C,6A +fussier 'fVsI@R Or% 3 +fussiest 'fVsIIst Os% 3 +fussily 'fVsIlI Pu% 3 +fussiness 'fVsIn@s L@% 3 +fussing 'fVsIN Jb% 22A,2C,6A +fusspot 'fVsp0t K6% 2 +fusspots 'fVsp0ts Kj% 2 +fussy 'fVsI OD% 2 +fustian 'fVstI@n L@$ 3 +fusty 'fVstI OA$ 2 +futile 'fjutaIl OA% 2 +futilities fju'tIlItIz Mj% 4 +futility fju'tIlItI M8% 4 +future 'fjutS@R M6%,OA% 2 +futureless 'fjutS@l@s OA% 3 +futures 'fjutS@z Mj% 2 +futurism 'fjutS@rIz@m L@$ 4 +futurist 'fjutS@rIst K6$ 3 +futurists 'fjutS@rIsts Kj$ 3 +futurities fju'tjU@rItIz Mj$ 4 +futurity fju'tjU@rItI M8$ 4 +fuze fjuz K6% 1 +fuzes 'fjuzIz Kj% 2 +fuzz fVz L@% 1 +fuzzier 'fVzI@R Or% 3 +fuzziest 'fVzIIst Os% 3 +fuzzy 'fVzI OD% 2 +fwd 'fOw@d Y~% 2 +g dZi Ki$ 1 +g's dZiz Kj$ 1 +g^ateau 'g&t@U K6% 2 +g^ateaus 'g&t@Uz Kj% 2 +gab g&b L@% 1 +gabardine ,g&b@'din L@$ 3 +gabble 'g&bl J2%,L@% 22A,2C,6A,15B +gabbled 'g&bld Jc%,Jd% 22A,2C,6A,15B +gabbles 'g&blz Ja% 22A,2C,6A,15B +gabbling 'g&blIN Jb% 22A,2C,6A,15B +gaberdine ,g&b@'din L@% 3 +gable 'geIbl K6% 2 +gabled 'geIbld OA% 2 +gables 'geIblz Kj% 2 +gad g&d I4$,W-$ 12C +gadabout 'g&d@baUt K6% 3 +gadabouts 'g&d@baUts Kj% 3 +gadded 'g&dId Ic$,Id$ 22C +gadding 'g&dIN Ib$ 22C +gadflies 'g&dflaIz Kj% 2 +gadfly 'g&dflaI K8% 2 +gadget 'g&dZIt K6% 2 +gadgetry 'g&dZItrI L@% 3 +gadgets 'g&dZIts Kj% 2 +gads g&dz Ia$ 12C +gaff g&f K6$ 1 +gaffe g&f K6$ 1 +gaffer 'g&f@R K6% 2 +gaffers 'g&f@z Kj% 2 +gaffes g&fs Kj$ 1 +gaffs g&fs Kj$ 1 +gag g&g J4%,K6% 12A,6A +gaga 'gAgA OA$ 2 +gage geIdZ H2$,K6$ 16A +gaged geIdZd Hc$,Hd$ 16A +gages 'geIdZIz Ha$,Kj$ 26A +gagged g&gd Jc%,Jd% 12A,6A +gagging 'g&gIN Jb% 22A,6A +gaggle 'g&gl K6% 2 +gaggles 'g&glz Kj% 2 +gaging 'geIdZIN Hb$ 26A +gags g&gz Ja%,Kj% 12A,6A +gaiety 'geI@tI L@% 3 +gaily 'geIlI Pu% 2 +gain geIn J0%,M6% 12A,2B,2C,3A,6A,12B,13B,14 +gained geInd Jc%,Jd% 12A,2B,2C,3A,6A,12B,13B,14 +gainful 'geInf@l OA% 2 +gainfully 'geInf@lI Pu% 3 +gaining 'geInIN Jb% 22A,2B,2C,3A,6A,12B,13B,14 +gainings 'geIniNz Kj% 2 +gains geInz Ja%,Mj% 12A,2B,2C,3A,6A,12B,13B,14 +gainsaid ,geIn'sed Hc%,Hd% 26A +gainsay ,geIn'seI H5% 26A +gainsaying ,geIn'seIIN Hb% 36A +gainsays ,geIn'seIz Ha% 26A +gait geIt K6% 1 +gaiter 'geIt@R K6% 2 +gaiters 'geIt@z Kj% 2 +gaits geIts Kj$ 1 +gal g&l K6$ 1 +gala 'gAl@ K6% 2 +galactic g@'l&ktIk OA% 3 +galantine 'g&l@ntin K6$ 3 +galantines 'g&l@ntinz Kj$ 3 +galas 'gAl@z Kj% 2 +galaxies 'g&l@ksIz Kj% 3 +galaxy 'g&l@ksI K8% 3 +gale geIl K6% 1 +gales geIlz Kj% 1 +gall gOl H0%,M6% 16A +gallant 'g&l@nt OA% 2 +gallant g@'l&nt K6$ 2 +gallantly 'g&l@ntlI Pu% 3 +gallantries 'g&l@ntrIz Mj% 3 +gallantry 'g&l@ntrI M8% 3 +gallants g@'l&nts Kj$ 2 +galled gOld Hc%,Hd% 16A +galleon 'g&lI@n K6% 3 +galleons 'g&lI@nz Kj% 3 +galleries 'g&l@rIz Kj% 3 +gallery 'g&l@rI K8% 3 +galley 'g&lI K6% 2 +galley-proof 'g&lI-pruf K6% 3 +galley-proofs 'g&lI-prufs Kj% 3 +galley-slave 'g&lI-sleIv K6% 3 +galley-slaves 'g&lI-sleIvz Kj% 3 +galleys 'g&lIz Kj% 2 +gallicism 'g&lIsIz@m K6$ 4 +gallicisms 'g&lIsIz@mz Kj$ 4 +galling 'gOlIN Hb% 26A +gallivant ,g&lI'v&nt I0% 32C +gallivanted ,g&lI'v&ntId Ic%,Id% 42C +gallivanting ,g&lI'v&ntIN Ib% 42C +gallivants ,g&lI'v&nts Ia% 32C +gallon 'g&l@n K6% 2 +gallons 'g&l@nz Kj% 2 +gallop 'g&l@p J0%,K6% 22A,2B,2C,6A +galloped 'g&l@pt Jc%,Jd% 22A,2B,2C,6A +galloping 'g&l@pIN Jb% 32A,2B,2C,6A +gallops 'g&l@ps Ja%,Kj% 22A,2B,2C,6A +gallows 'g&l@Uz Kj% 2 +gallows-bird 'g&l@Uz-b3d K6$ 3 +gallows-birds 'g&l@Uz-b3dz Kj$ 3 +galls gOlz Ha%,Mj% 16A +gallstone 'gOlst@Un K6% 2 +gallstones 'gOlst@Unz Kj% 2 +galore g@'lOR Pu% 2 +galosh g@'l0S K7$ 2 +galoshes g@'l0SIz Kj% 3 +gals g&lz Kj$ 1 +galumph g@'lVmf I0$ 2 +galumphed g@'lVmft Ic$,Id$ 2 +galumphing g@'lVmfIN Ib$ 3 +galumphs g@'lVmfs Ia$ 2 +galvanic g&l'v&nIk OA$ 3 +galvanism 'g&lv@nIz@m L@$ 4 +galvanize 'g&lv@naIz H2% 36A,14 +galvanized 'g&lv@naIzd Hc%,Hd% 36A,14 +galvanizes 'g&lv@naIzIz Ha% 46A,14 +galvanizing 'g&lv@naIzIN Hb% 46A,14 +gambit 'g&mbIt K6% 2 +gambits 'g&mbIts Kj% 2 +gamble 'g&mbl J2%,K6% 22A,2B,2C,15B +gambled 'g&mbld Jc%,Jd% 22A,2B,2C,15B +gambler 'g&mbl@R K6% 2 +gamblers 'g&mbl@z Kj% 2 +gambles 'g&mblz Ja%,Kj% 22A,2B,2C,15B +gambling 'g&mblIN Jb%,L@% 22A,2B,2C,15B +gambling-den 'g&mblIN-den K6% 3 +gambling-dens 'g&mblIN-denz Kj% 3 +gamboge g&m'buZ L@$ 2 +gambol 'g&mbl I4%,K6% 22A,2C +gambolled 'g&mbld Ic%,Id% 22A,2C +gambolling 'g&mblIN Ib% 32A,2C +gambols 'g&mblz Ia%,Kj% 22A,2C +game geIm J2$,M6%,OA% 12A,2C,15B +game-bag 'geIm-b&g K6$ 2 +game-bags 'geIm-b&gz Kj$ 2 +game-bird 'geIm-b3d K6% 2 +game-birds 'geIm-b3dz Kj% 2 +game-licence 'geIm-laIsns K6% 3 +game-licences 'geIm-laIsnsIz Kj% 4 +gamecock 'geImk0k K6$ 2 +gamecocks 'geImk0ks Kj$ 2 +gamed geImd Jc$,Jd$ 12A,2C,15B +gamekeeper 'geImkip@R K6% 3 +gamekeepers 'geImkip@z Kj% 3 +gamely 'geImlI Pu% 2 +games geImz Ja$,Mj% 12A,2C,15B +games-master 'geImz-mAst@R K6% 3 +games-masters 'geImz-mAst@z Kj% 3 +games-mistress 'geImz-mIstrIs K7% 3 +games-mistresses 'geImz-mIstrIsIz Kj% 4 +gamesmanship 'geImzm@nSIp L@% 3 +gamier 'geImI@R Or$ 3 +gamiest 'geImIIst Os$ 3 +gaming 'geImIN Jb% 22A,2C,15B +gaming-house 'geImIN-haUs K6% 3 +gaming-houses 'geImIN-haUzIz Kj% 4 +gaming-rooms 'geImIN-rumz Kj% 3 +gaming-table 'geImIN-teIbl K6% 4 +gaming-tables 'geImIN-teIblz Kj% 4 +gamma 'g&m@ K6$ 2 +gamma-rays 'g&m@-reIz Kj% 3 +gammas 'g&m@z Kj$ 2 +gammon 'g&m@n M6% 2 +gammons 'g&m@nz Mj$ 2 +gammy 'g&mI OA$ 2 +gamp g&mp K6$ 1 +gamps g&mps Kj$ 1 +gamut 'g&m@t K6% 2 +gamuts 'g&m@ts Kj$ 2 +gamy 'geImI OD$ 2 +gander 'g&nd@R K6% 2 +ganders 'g&nd@z Kj% 2 +gang g&N I0%,K6% 12C +ganged g&Nd Ic%,Id% 12C +ganger 'g&N@R K6% 2 +gangers 'g&N@z Kj% 2 +ganging 'g&NIN Ib% 22C +ganglia 'g&NglI@ Kj$ 3 +gangling 'g&NglIN OA% 2 +ganglion 'g&NglI@n K6$ 3 +ganglions 'g&NglI@nz Kj$ 3 +gangplank 'g&Npl&Nk K6% 2 +gangplanks 'g&Npl&Nks Kj% 2 +gangrene 'g&Ngrin J2$,L@% 22A,6A +gangrened 'g&Ngrind Jc$,Jd$ 22A,6A +gangrenes 'g&Ngrinz Ja$ 22A,6A +gangrening 'g&NgrinIN Jb$ 32A,6A +gangrenous 'g&NgrIn@s OA% 3 +gangs g&Nz Ia%,Kj% 12C +gangster 'g&Nst@R K6% 2 +gangsters 'g&Nst@z Kj% 2 +gangway 'g&NweI K6%,W-% 2 +gangways 'g&NweIz Kj% 2 +gannet 'g&nIt K6% 2 +gannets 'g&nIts Kj% 2 +gantries 'g&ntrIz Kj% 2 +gantry 'g&ntrI K8% 2 +gaol dZeIl H0%,M6% 16A +gaolbird 'dZeIlb3d K6% 2 +gaolbirds 'dZeIlb3dz Kj% 2 +gaolbreak 'dZeIlbreIk K6% 2 +gaolbreaks 'dZeIlbreIks Kj% 2 +gaoled dZeIld Hc%,Hd% 16A +gaoler 'dZeIl@R K6% 2 +gaolers 'dZeIl@z Kj% 2 +gaoling 'dZeIlIN Hb% 26A +gaols dZeIlz Ha%,Mj% 16A +gap g&p K6% 1 +gap-toothed 'g&p-tuTt OA% 2 +gape geIp I2%,K6% 12A,2C +gaped geIpt Ic%,Id% 12A,2C +gapes geIps Ia%,Kj% 12A,2C +gaping 'geIpIN Ib% 22A,2C +gaps g&ps Kj% 1 +garage 'g&rAZ H2%,K6% 26A +garaged 'g&rAZd Hc%,Hd% 26A +garages 'g&rAZIz Ha%,Kj% 36A +garaging 'g&rAZIN Hb% 36A +garb gAb H0$,L@% 16A +garbage 'gAbIdZ L@% 2 +garbage-can 'gAbIdZ-k&n K6% 3 +garbage-cans 'gAbIdZ-k&nz Kj% 3 +garbed gAbd Hc$,Hd% 16A +garbing 'gAbIN Hb$ 26A +garble 'gAbl H2$ 26A +garbled 'gAbld Hc$,Hd% 26A +garbles 'gAblz Ha$ 26A +garbling 'gAblIN Hb$ 26A +garbs gAbz Ha$ 16A +garden 'gAdn I0%,M6% 22A +garden-truck ,gAdn-'trVk K6$ 3 +garden-trucks ,gAdn-'trVks Kj$ 3 +gardened 'gAdnd Ic%,Id% 22A +gardener 'gAdn@R K6% 2 +gardeners 'gAdn@z Kj% 2 +gardenia gA'dinI@ K6% 4 +gardenias gA'dinI@z Kj% 4 +gardening 'gAdnIN Ib%,L@% 22A +gardens 'gAdnz Ia%,Mj% 22A +gargantuan gA'g&ntjU@n OA% 4 +gargle 'gAgl J2%,K6% 22A,6A +gargled 'gAgld Jc%,Jd% 22A,6A +gargles 'gAglz Ja%,Kj% 22A,6A +gargling 'gAglIN Jb% 22A,6A +gargoyle 'gAgoIl K6% 2 +gargoyles 'gAgoIlz Kj% 2 +garish 'ge@rIS OA% 2 +garishly 'ge@rISlI Pu% 3 +garland 'gAl@nd H0%,K6% 26A +garlanded 'gAl@ndId Hc%,Hd% 36A +garlanding 'gAl@ndIN Hb% 36A +garlands 'gAl@ndz Ha%,Kj% 26A +garlic 'gAlIk L@% 2 +garment 'gAm@nt K6% 2 +garments 'gAm@nts Kj% 2 +garner 'gAn@R H0%,K6$ 26A,15B +garnered 'gAn@d Hc%,Hd% 26A,15B +garnering 'gAn@rIN Hb% 36A,15B +garners 'gAn@z Ha%,Kj$ 26A,15B +garnet 'gAnIt K6% 2 +garnets 'gAnIts Kj% 2 +garnish 'gAnIS H1%,K7% 26A,14 +garnished 'gAnISt Hc%,Hd% 26A,14 +garnishes 'gAnISIz Ha%,Kj% 36A,14 +garnishing 'gAnISIN Hb% 36A,14 +garotte g@'r0t H2%,K6% 26A +garotted g@'r0tId Hc%,Hd% 36A +garottes g@'r0ts Ha%,Kj% 26A +garotting g@'r0tIN Hb% 36A +garret 'g&r@t K6% 2 +garrets 'g&r@ts Kj% 2 +garrison 'g&rIsn H0$,K6% 36A +garrisoned 'g&rIsnd Hc$,Hd% 36A +garrisoning 'g&rIsnIN Hb$ 46A +garrisons 'g&rIsnz Ha$,Kj% 36A +garrotte g@'r0t H2$,K6$ 26A +garrotted g@'r0tId Hc$,Hd$ 36A +garrottes g@'r0ts Ha$,Kj$ 26A +garrotting g@'r0tIN Hb$ 36A +garrulity g@'rulItI L@$ 4 +garrulous 'g&r@l@s OA% 3 +garter 'gAt@R K6% 2 +garters 'gAt@z Kj% 2 +gas g&s J5%,M7% 12A,2C,6A +gas-bracket 'g&s-br&kIt K6% 3 +gas-brackets 'g&s-br&kIts Kj% 3 +gas-cooker 'g&s-kUk@R K6% 3 +gas-cookers 'g&s-kUk@z Kj% 3 +gas-engine 'g&s-endZIn K6$ 3 +gas-engines 'g&s-endZInz Kj$ 3 +gas-fitter 'g&s-fIt@R K6% 3 +gas-fitters 'g&s-fIt@z Kj% 3 +gas-fittings 'g&s-fItINz Kj% 3 +gas-helmet 'g&s-helmIt K6$ 3 +gas-helmets 'g&s-helmIts Kj$ 3 +gas-holder 'g&s-h@Uld@R K6% 3 +gas-holders 'g&s-h@Uld@z Kj% 3 +gas-mask 'g&s-mAsk K6% 2 +gas-masks 'g&s-mAsks Kj% 2 +gas-meter 'g&s-mit@R K6% 3 +gas-meters 'g&s-mit@z Kj% 3 +gas-oven 'g&s-Vvn K6% 3 +gas-ovens 'g&s-Vvnz Kj% 3 +gas-ring 'g&s-rIN K6% 2 +gas-rings 'g&s-rINz Kj% 2 +gas-station 'g&s-steISn K6% 3 +gas-stations 'g&s-steISnz Kj% 3 +gas-stove 'g&s-st@Uv K6% 2 +gas-stoves 'g&s-st@Uvz Kj% 2 +gasbag 'g&sb&g K6% 2 +gasbags 'g&sb&gz Kj% 2 +gaseous 'g&sI@s OA% 3 +gases 'g&sIz Mj% 2 +gash g&S H1%,K7% 16A +gashed g&St Hc%,Hd% 16A +gashes 'g&SIz Ha%,Kj% 26A +gashing 'g&SIN Hb% 26A +gasification ,g&sIfI'keISn M6$ 5 +gasifications ,g&sIfI'keISnz Mj$ 5 +gasified 'g&sIfaId Jc$,Jd$ 32A,6A +gasifies 'g&sIfaIz Ja$ 32A,6A +gasify 'g&sIfaI J3$ 32A,6A +gasifying 'g&sIfaIIN Jb$ 42A,6A +gasket 'g&skIt K6% 2 +gaskets 'g&skIts Kj% 2 +gaslight 'g&slaIt L@% 2 +gasmask 'g&smAsk K6% 2 +gasmasks 'g&smAsks Kj% 2 +gasolene 'g&s@lin L@$ 3 +gasoline 'g&s@lin L@% 3 +gasometer g@'s0mIt@R K6% 4 +gasometers g@'s0mIt@z Kj% 4 +gasp gAsp J0%,K6% 12A,2C,6A,15B +gasped gAspt Jc%,Jd% 12A,2C,6A,15B +gasping 'gAspIN Jb% 22A,2C,6A,15B +gasps gAsps Ja%,Kj% 12A,2C,6A,15B +gassed g&st Jc%,Jd% 12A,2C,6A +gasses 'g&sIz Ja% 22A,2C,6A +gassier 'g&sI@R Or% 3 +gassiest 'g&sIIst Os% 3 +gassing 'g&sIN Jb% 22A,2C,6A +gassy 'g&sI OD% 2 +gastric 'g&strIk OA% 2 +gastritis g&'straItIs L@% 3 +gastronomic ,g&str@'n0mIk OA% 4 +gastronomy g&'str0n@mI L@% 4 +gasworks 'g&sw3ks K9% 2 +gate geIt H2$,K6% 16A +gateaux 'g&t@Uz Kj% 2 +gatecrash 'geItkr&S H1% 26A +gatecrashed 'geItkr&St Hc%,Hd% 26A +gatecrasher 'geItkr&S@R K6% 3 +gatecrashers 'geItkr&S@z Kj% 3 +gatecrashes 'geItkr&SIz Ha% 36A +gatecrashing 'geItkr&SIN Hb% 36A +gated 'geItId Hc%,Hd% 26A +gatehouse 'geIthaUs K6% 2 +gatehouses 'geIthaUzIz Kj% 3 +gatepost 'geItp@Ust K6% 2 +gateposts 'geItp@Usts Kj% 2 +gates geIts Ha%,Kj% 16A +gateway 'geItweI K6% 2 +gateways 'geItweIz Kj% 2 +gather 'g&D@R J0% 22A,2C,6A,9,12B,13B,15A,15B +gathered 'g&D@d Jc%,Jd% 22A,2C,6A,9,12B,13B,15A,15B +gatherer 'g&D@r@R K6% 3 +gatherers 'g&D@r@z Kj% 3 +gathering 'g&D@rIN Jb%,K6% 32A,2C,6A,9,12B,13B,15A,15B +gatherings 'g&D@rINz Kj% 3 +gathers 'g&D@z Ja% 22A,2C,6A,9,12B,13B,15A,15B +gating 'geItIN Hb$ 26A +gauche g@US OA% 1 +gaucherie 'g@US@rI M6$ 3 +gaucheries 'g@US@rIz Mj$ 3 +gaucho 'gaUtS@U K6$ 2 +gauchos 'gaUtS@Uz Kj$ 2 +gaud gOd K6$ 1 +gaudier 'gOdI@R Or% 3 +gaudies 'gOdIz Kj$ 2 +gaudiest 'gOdIIst Os% 3 +gaudily 'gOdIlI Pu% 3 +gauds gOdz Kj$ 1 +gaudy 'gOdI K8%,OD% 2 +gauge geIdZ H2%,M6% 16A +gauged geIdZd Hc%,Hd% 16A +gauges 'geIdZIz Ha%,Mj% 26A +gauging 'geIdZIN Hb% 26A +gaunt gOnt OA% 1 +gauntlet 'gOntlIt K6% 2 +gauntlets 'gOntlIts Kj% 2 +gauntness 'gOntn@s L@% 2 +gauze gOz L@% 1 +gauzier 'gOzI@R Or$ 3 +gauziest 'gOzIIst Os$ 3 +gauzy 'gOzI OD% 2 +gave geIv Jc* 12A,2C,3A,6A,12A,12B,13A,15B,16A +gavel 'g&vl K6% 2 +gavels 'g&vlz Kj% 2 +gavotte g@'v0t K6% 2 +gavottes g@'v0ts Kj% 2 +gawk gOk K6% 1 +gawkier 'gOkI@R Or% 3 +gawkiest 'gOkIIst Os% 3 +gawkiness 'gOkIn@s L@% 3 +gawks gOks Kj% 1 +gawky 'gOkI OD% 2 +gawp gOp I0% 12A,3A +gawped gOpt Ic%,Id% 12A,3A +gawping 'gOpIN Ib% 22A,3A +gawps gOps Ia% 12A,3A +gay geI K6%,OC% 1 +gayer 'geI@R Or% 2 +gayest 'geIIst Os% 2 +gayness 'geIn@s L@% 2 +gays geIz Kj% 1 +gaze geIz I2%,Ki% 12A,2C,3A +gazed geIzd Ic%,Id% 12A,2C,3A +gazelle g@'zel K6% 2 +gazelles g@'zelz Kj% 2 +gazes 'geIzIz Ia% 22A,2C,3A +gazette g@'zet H2$,K6% 2 +gazetted g@'zetId Hc$,Hd% 3 +gazetteer ,g&z@'tI@R K6% 3 +gazetteers ,g&z@'tI@z Kj% 3 +gazettes g@'zets Ha$,Kj% 2 +gazetting g@'zetIN Hb$ 3 +gazing 'geIzIN Ib% 22A,2C,3A +gazump g@'zVmp J0% 22A,6A +gazumped g@'zVmpt Jc%,Jd% 22A,6A +gazumping g@'zVmpIN Jb% 32A,6A +gazumps g@'zVmps Ja% 22A,6A +gear gI@R J0%,M6% 12A,2C,3A,14,15A +gear-case 'gI@-keIs K6$ 2 +gear-cases 'gI@-keIsIz Kj$ 3 +gearbox 'gI@b0ks K7% 2 +gearboxes 'gI@b0ksIz Kj% 3 +geared gI@d Jc%,Jd% 12A,2C,3A,14,15A +gearing 'gI@rIN Jb% 22A,2C,3A,14,15A +gears gI@z Ja%,Mj% 12A,2C,3A,14,15A +gearshift 'gI@SIft K6% 2 +gearshifts 'gI@SIfts Kj% 2 +gecko 'gek@U K6$ 2 +geckoes 'gek@Uz Kj$ 2 +geckos 'gek@Uz Kj$ 2 +gee dZi W-% 1 +gee whiz ,dZi 'wIz W-% 2 +gee-gee 'dZi-dZi K6% 2 +gee-gees 'dZi-dZiz Kj% 2 +gee-up ,dZi-'Vp W-% 2 +geese gis Kj% 1 +geezer 'giz@R K6% 2 +geezers 'giz@z Kj% 2 +geisha 'geIS@ K6% 2 +geishas 'geIS@z Kj% 2 +gel dZel I4%,K6% 1 +gelatin 'dZel@tIn L@$ 3 +gelatine 'dZel@tin L@% 3 +gelatinous dZI'l&tIn@s OA% 4 +geld geld H0$ 16A +gelded 'geldId Hc$,Hd% 26A +gelding 'geldIN Hb$,K6% 26A +geldings 'geldINz Kj% 2 +gelds geldz Ha$ 16A +gelignite 'dZelIgnaIt L@% 3 +gelled dZeld Ic%,Id% 1 +gelling 'dZelIN Ib% 2 +gels dZelz Ia%,Kj% 1 +gem dZem K6% 1 +gemmed dZemd OA% 1 +gems dZemz Kj% 1 +gen dZen H4%,L@% 115B +gendarme 'Z0ndAm K6% 2 +gendarmerie Z0n'dAm@rI K6$ 4 +gendarmeries Z0n'dAm@rIz Kj$ 4 +gendarmes 'Z0ndAmz Kj% 2 +gender 'dZend@R K6% 2 +genders 'dZend@z Kj% 2 +gene dZin K6% 1 +genealogical ,dZinI@'l0dZIkl OA% 6 +genealogically ,dZinI@'l0dZIklI Pu% 6 +genealogies ,dZinI'&l@dZIz Mj% 5 +genealogist ,dZinI'&l@dZIst K6% 5 +genealogists ,dZinI'&l@dZIsts Kj% 5 +genealogy ,dZinI'&l@dZI M8% 5 +genera 'dZen@r@ Kj$ 3 +general 'dZenr@l K6%,OA% 2 +generalissimo ,dZenr@'lIsIm@U K6$ 5 +generalissimos ,dZenr@'lIsIm@Uz Kj$ 5 +generalities ,dZen@'r&lItIz Mj% 5 +generality ,dZen@'r&lItI M8% 5 +generalization ,dZenr@laI'zeISn M6% 5 +generalizations ,dZenr@laI'zeISnz Mj% 5 +generalize 'dZenr@laIz J2% 32A,3A,6A,14 +generalized 'dZenr@laIzd Jc%,Jd% 32A,3A,6A,14 +generalizes 'dZenr@laIzIz Ja% 42A,3A,6A,14 +generalizing 'dZenr@laIzIN Jb% 42A,3A,6A,14 +generally 'dZenr@lI Pu% 3 +generals 'dZenr@lz Kj% 2 +generate 'dZen@reIt H2% 36A +generated 'dZen@reItId Hc%,Hd% 46A +generates 'dZen@reIts Ha% 36A +generating 'dZen@reItIN Hb% 46A +generation ,dZen@'reISn M6% 4 +generations ,dZen@'reISnz Mj% 4 +generative 'dZen@r@tIv OA% 4 +generator 'dZen@reIt@R K6% 4 +generators 'dZen@reIt@z Kj% 4 +generic dZI'nerIk OA% 3 +generically dZI'nerIklI Pu% 4 +generosities ,dZen@'r0sItIz Mj$ 5 +generosity ,dZen@'r0sItI M8% 5 +generous 'dZen@r@s OA% 3 +generously 'dZen@r@slI Pu% 4 +genes dZinz Kj% 1 +genesis 'dZen@sIs Ki% 3 +genetic dZI'netIk OA% 3 +genetically dZI'netIklI Pu% 4 +geneticist dZI'netIsIst K6% 4 +geneticists dZI'netIsIsts Kj% 4 +genetics dZI'netIks Lk% 3 +genial 'dZinI@l OA% 3 +genialities ,dZinI'&lItIz Mj$ 5 +geniality ,dZinI'&lItI M8% 5 +genially 'dZinI@lI Pu% 4 +genie 'dZinI K6% 2 +genies 'dZinIz Kj% 2 +genii 'dZinIaI Kj$ 3 +genital 'dZenItl OA% 3 +genitals 'dZenItlz Kj% 3 +genitive 'dZen@tIv OA% 3 +genius 'dZinI@s M7% 3 +genius loci ,dZinI@s 'l@UsaI Ki$ 5 +geniuses 'dZinI@sIz Mj% 4 +genned dZend Hc%,Hd% 115B +genning 'dZenIN Hb$ 215B +genocide 'dZen@saId L@% 3 +genre 'ZAnr@ K6% 2 +genre-painting 'ZAnr@-peIntIN K6$ 4 +genre-paintings 'ZAnr@-peIntINz Kj$ 4 +genres 'ZAnr@z Kj% 2 +gens dZenz Ha$ 115B +gent dZent K6% 1 +genteel dZen'til OA% 2 +genteelly dZen'ti@lI Pu% 3 +gentian 'dZenSn K6$ 2 +gentians 'dZenSnz Kj$ 2 +gentile 'dZentaIl K6%,OA% 2 +gentiles 'dZentaIlz Kj% 2 +gentility dZen'tIlItI L@% 4 +gentle 'dZentl OB% 2 +gentlefolk 'dZentlf@Uk Kj% 3 +gentleman 'dZentlm@n Ki% 3 +gentleman-at-arms ,dZentlm@n-@t-'Amz Ki$ 5 +gentlemanly 'dZentlm@nlI OA% 4 +gentlemen 'dZentlm@n Kj% 3 +gentlemen-at-arms ,dZentlm@n-@t-'Amz Kj$ 5 +gentleness 'dZentln@s L@% 3 +gentler 'dZentl@R Or% 2 +gentlest 'dZentlIst Os% 2 +gentlewoman 'dZentlwUm@n Ki% 4 +gentlewomen 'dZentlwImIn Kj% 4 +gently 'dZentlI Pu% 2 +gentry 'dZentrI K9% 2 +gents dZents Kj% 1 +genuflect 'dZenjUflekt I0% 32A +genuflected 'dZenjUflektId Ic%,Id% 42A +genuflecting 'dZenjUflektIN Ib% 42A +genuflection ,dZenjU'flekSn K6% 4 +genuflections ,dZenjU'flekSnz Kj% 4 +genuflects 'dZenjUflekts Ia% 32A +genuflexion ,dZenjU'flekSn K6$ 4 +genuflexions ,dZenjU'flekSnz Kj$ 4 +genuine 'dZenjUIn OA% 3 +genuinely 'dZenjUInlI Pu% 4 +genuineness 'dZenjUIn+n@s L@% 4 +genus 'dZin@s Ki% 2 +geo- ,dZI@U- U-% 2 +geocentric ,dZi@U'sentrIk OA% 4 +geographer dZI'0gr@f@R K6% 4 +geographers dZI'0gr@f@z Kj% 4 +geographical ,dZI@'gr&fIkl OA% 5 +geographically ,dZI@'gr&fIklI Pu% 5 +geography dZI'0gr@fI L@% 4 +geological ,dZI@'l0dZIkl OA% 5 +geologically ,dZI@'l0dZIklI Pu% 5 +geologist dZI'0l@dZIst K6% 4 +geologists dZI'0l@dZIsts Kj% 4 +geology dZI'0l@dZI L@% 4 +geometric ,dZI@'metrIk OA% 4 +geometrical ,dZI@'metrIkl OA% 5 +geometrically ,dZI@'metrIklI Pu% 5 +geometry dZI'0m@trI L@% 4 +geophysical ,dZI@'fIzIkl OA% 5 +geophysics ,dZi@U'fIzIks Lk% 4 +geopolitics ,dZI@U'p0l@tIks Lk$ 5 +georgette dZO'dZet L@$ 2 +geranium dZ@'reInI@m K6% 4 +geraniums dZ@'reInI@mz Kj% 4 +geriatric ,dZerI'&trIk OA% 4 +geriatrician ,dZerI@'trISn K6% 5 +geriatricians ,dZerI@'trISnz Kj% 5 +geriatrics ,dZerI'&trIks Lk% 4 +germ dZ3m K6% 1 +germane dZ@'meIn OA% 2 +germicide 'dZ3mIsaId K6% 3 +germicides 'dZ3mIsaIdz Kj$ 3 +germinate 'dZ3mIneIt J2% 32A,6A +germinated 'dZ3mIneItId Jc%,Jd% 42A,6A +germinates 'dZ3mIneIts Ja% 32A,6A +germinating 'dZ3mIneItIN Jb% 42A,6A +germination ,dZ3mI'neISn L@% 4 +germs dZ3mz Kj% 1 +gerontology ,dZer0n't0l@dZI L@$ 5 +gerrymander ,dZerI'm&nd@R H0$,K6$ 46A +gerrymandered ,dZerI'm&nd@d Hc$,Hd$ 46A +gerrymandering ,dZerI'm&nd@rIN Hb$ 56A +gerrymanders ,dZerI'm&nd@z Ha$,Kj$ 46A +gerund 'dZer@nd K6$ 2 +gerunds 'dZer@ndz Kj$ 2 +gestation dZe'steISn K6% 3 +gestations dZe'steISnz Kj$ 3 +gesticulate dZe'stIkjUleIt I2% 42A +gesticulated dZe'stIkjUleItId Ic%,Id% 52A +gesticulates dZe'stIkjUleIts Ia% 42A +gesticulating dZe'stIkjUleItIN Ib% 52A +gesticulation dZe,stIkjU'leISn M6% 5 +gesticulations dZe,stIkjU'leISnz Mj% 5 +gesture 'dZestS@R I2%,M6% 22A +gestured 'dZestS@d Ic%,Id% 22A +gestures 'dZestS@z Ia%,Mj% 22A +gesturing 'dZestS@rIN Ib% 32A +get get J5* 12C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +get-at-able ,get-'&t-@bl OA$ 4 +get-together 'get-t@geD@R K6% 4 +get-togethers 'get-t@geD@z Kj$ 4 +get-up 'get-Vp K6% 2 +get-ups 'get-Vps Kj$ 2 +getaway 'get@weI K6% 3 +getaways 'get@weIz Kj$ 3 +gets gets Ja% 12C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +getting 'getIN Jb% 22C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +geum 'dZi@m K6$ 2 +geums 'dZi@mz Kj$ 2 +geyser 'giz@R K6% 2 +geysers 'giz@z Kj% 2 +gharries 'g&rIz Kj$ 2 +gharry 'g&rI K8$ 2 +ghastlier 'gAstlI@R Or% 3 +ghastliest 'gAstlIIst Os% 3 +ghastly 'gAstlI OD% 2 +ghat gOt K6$ 1 +ghats gOts Kj$ 1 +ghee gi L@$ 1 +gherkin 'g3kIn K6% 2 +gherkins 'g3kInz Kj% 2 +ghetto 'get@U K6% 2 +ghettos 'get@Uz Kj% 2 +ghost g@Ust J0%,K6% 1 +ghost-writer 'g@Ust-raIt@R K6% 3 +ghost-writers 'g@Ust-raIt@z Kj% 3 +ghosted 'g@UstId Jc%,Jd% 2 +ghosting 'g@UstIN Jb% 2 +ghostliness 'g@UstlIn@s L@% 3 +ghostly 'g@UstlI OA% 2 +ghosts g@Usts Ja%,Kj% 1 +ghoul gul K6% 1 +ghoulish 'gulIS OA% 2 +ghouls gulz Kj% 1 +giant 'dZaI@nt K6% 2 +giantess 'dZaI@ntes K7$ 3 +giantesses 'dZaI@ntesIz Kj$ 4 +giants 'dZaI@nts Kj% 2 +gibber 'dZIb@R I0$ 22A,2C +gibbered 'dZIb@d Ic%,Id% 22A,2C +gibbering 'dZIb@rIN Ib% 32A,2C +gibberish 'dZIb@rIS L@% 3 +gibbers 'dZIb@z Ia$ 22A,2C +gibbet 'dZIbIt H0$,K6% 2 +gibbeted 'dZIbItId Hc$,Hd$ 3 +gibbeting 'dZIbItIN Hb$ 3 +gibbets 'dZIbIts Ha$,Kj$ 2 +gibbon 'gIb@n K6% 2 +gibbons 'gIb@nz Kj% 2 +gibbous 'dZIb@s OA$ 2 +gibe dZaIb I2%,K6% 12A,3A +gibed dZaIbd Ic%,Id% 12A,3A +gibes dZaIbz Ia%,Kj% 12A,3A +gibing 'dZaIbIN Ib% 22A,3A +gibingly 'dZaIbINlI Pu% 3 +giblets 'dZIblIts Kj% 2 +giddier 'gIdI@R Or% 3 +giddiest 'gIdIIst Os% 3 +giddily 'gIdIlI Pu% 3 +giddiness 'gIdIn@s L@% 3 +giddy 'gIdI OD% 2 +gift gIft H0$,M6% 16A +gifted 'gIftId Hc$,Hd%,OA% 26A +gifting 'gIftIN Hb$ 26A +gifts gIfts Ha$,Mj% 16A +gig gIg K6% 1 +gigantic dZaI'g&ntIk OA% 3 +giggle 'gIgl I2%,K6% 22A,6A +giggled 'gIgld Ic%,Id% 22A,6A +giggles 'gIglz Ia%,Kj% 22A,6A +giggling 'gIglIN Ib% 22A,6A +gigolo 'ZIg@l@U K6% 3 +gigolos 'ZIg@l@Uz Kj% 3 +gigs gIgz Kj% 1 +gild gIld H0%,K6% 16A +gilded 'gIldId Hc%,Hd% 26A +gilder 'gIld@R K6$ 2 +gilders 'gIld@z Kj$ 2 +gilding 'gIldIN Hb%,L@% 26A +gilds gIldz Ha%,Kj% 16A +gill dZIl K6% 1 +gill gIl K6$ 1 +gillie 'gIlI K6$ 2 +gillies 'gIlIz Kj$ 2 +gills dZIlz Kj% 1 +gills gIlz Kj% 1 +gilt gIlt Hd$,L@% 16A +gilt-edged 'gIlt-edZd OA% 2 +gimbals 'dZImblz Kj$ 2 +gimcrack 'gImkr&k OA$ 2 +gimlet 'gImlIt K6% 2 +gimlets 'gImlIts Kj% 2 +gimmick 'gImIk K6% 2 +gimmicks 'gImIks Kj% 2 +gin dZIn H4$,M6% 16A +ginger 'dZIndZ@R H0%,L@% 26A,15B +gingerbread 'dZIndZ@bred M6% 3 +gingerbreads 'dZIndZ@bredz Mj% 3 +gingered 'dZIndZ@d Hc%,Hd% 26A,15B +gingering 'dZIndZ@rIN Hb% 36A,15B +gingerly 'dZIndZ@lI OA%,Pu% 3 +gingers 'dZIndZ@z Ha% 26A,15B +gingham 'gIN@m L@% 2 +gingko 'gINk@U K6$ 2 +gingkoes 'gINk@Uz Kj$ 2 +gingkos 'gINk@Uz Kj$ 2 +ginned dZInd Hc$,Hd$ 16A +ginning 'dZInIN Hb$ 26A +gins dZInz Ha$,Mj$ 16A +ginseng 'dZInseN L@% 2 +gipsies 'dZIpsIz Kj% 2 +gipsy 'dZIpsI K8% 2 +giraffe dZI'rAf K6% 2 +giraffes dZI'rAfs Kj% 2 +gird g3d H0% 115B +girded 'g3dId Hc%,Hd% 215B +girder 'g3d@R K6% 2 +girders 'g3d@z Kj% 2 +girding 'g3dIN Hb% 215B +girdle 'g3dl H2%,K6% 215A,15B +girdled 'g3dld Hc%,Hd% 215A,15B +girdles 'g3dlz Ha%,Kj% 215A,15B +girdling 'g3dlIN Hb% 215A,15B +girds g3dz Ha% 115B +girl g3l K6* 1 +girlfriend 'g3lfrend K6% 2 +girlfriends 'g3lfrendz Kj% 2 +girlhood 'g3lhUd L@% 2 +girlish 'g3lIS OA% 2 +girlishly 'g3lISlI Pu% 3 +girlishness 'g3lISn@s L@% 3 +girls g3lz Kj% 1 +giro 'dZaIr@U L@% 2 +girt g3t Hc$,Hd$ 115B +girth g3T K6% 1 +girths g3Ts Kj% 1 +gist dZIst K6% 1 +gists dZIsts Kj$ 1 +give gIv J5*,L@% 12A,2C,3A,6A,12A,12B,13A,15B,16A +giveaway 'gIv@weI K6% 3 +giveaways 'gIv@weIz Kj$ 3 +given gIvn Jd* 22A,2C,3A,6A,12A,12B,13A,15B,16A +giver 'gIv@R K6% 2 +givers 'gIv@z Kj% 2 +gives gIvz Ja% 12A,2C,3A,6A,12A,12B,13A,15B,16A +giving 'gIvIN Jb% 22A,2C,3A,6A,12A,12B,13A,15B,16A +gizzard 'gIz@d K6$ 2 +gizzards 'gIz@dz Kj$ 2 +glac_e 'gl&seI OA% 2 +glacial 'gleIsI@l OA% 3 +glacier 'gl&sI@R K6% 3 +glaciers 'gl&sI@z Kj% 3 +glad gl&d OE% 1 +gladden 'gl&dn H0% 26A +gladdened 'gl&dnd Hc%,Hd% 26A +gladdening 'gl&dnIN Hb% 36A +gladdens 'gl&dnz Ha% 26A +gladder 'gl&d@R Or$ 2 +gladdest 'gl&dIst Os$ 2 +glade gleId K6% 1 +glades gleIdz Kj% 1 +gladiator 'gl&dIeIt@R K6% 4 +gladiatorial ,gl&dI@'tOrI@l OA% 6 +gladiators 'gl&dIeIt@z Kj% 4 +gladioli ,gl&dI'@UlaI Kj$ 4 +gladiolus ,gl&dI'@Ul@s K7$ 4 +gladioluses ,gl&dI'@Ul@sIz Kj$ 5 +gladly 'gl&dlI Pu% 2 +gladness 'gl&dn@s L@% 2 +gladsome 'gl&ds@m OA$ 2 +glamorization ,gl&m@raI'zeISn L@% 5 +glamorize 'gl&m@raIz H2% 36A +glamorized 'gl&m@raIzd Hc%,Hd% 36A +glamorizes 'gl&m@raIzIz Ha% 46A +glamorizing 'gl&m@raIzIN Hb% 46A +glamorous 'gl&m@r@s OA% 3 +glamour 'gl&m@R L@% 2 +glance glAns J2%,K6% 12C,3A,15A +glanced glAnst Jc%,Jd% 12C,3A,15A +glances 'glAnsIz Ja%,Kj% 22C,3A,15A +glancing 'glAnsIN Jb% 22C,3A,15A +gland gl&nd K6% 1 +glanders 'gl&nd@z L@$ 2 +glands gl&ndz Kj% 1 +glandular 'gl&ndjUl@R OA% 3 +glare gle@R J2%,M6% 12A,2C,3A,6A,14 +glared gle@d Jc%,Jd% 12A,2C,3A,6A,14 +glares gle@z Ja%,Mj% 12A,2C,3A,6A,14 +glaring 'gle@rIN Jb%,OA% 22A,2C,3A,6A,14 +glass glAs H1$,M7% 16A,15B +glass-blower 'glAs-bl@U@R K6% 3 +glass-blowers 'glAs-bl@U@z Kj% 3 +glass-cutter 'glAs-kVt@R K6% 3 +glass-cutters 'glAs-kVt@z Kj% 3 +glass-wool 'glAs-wUl L@$ 2 +glassed glAst Hc$,Hd% 16A,15B +glasses 'glAsIz Ha$,Mj% 26A,15B +glassful 'glAsfUl K6% 2 +glassfuls 'glAsfUlz Kj% 2 +glasshouse 'glAshaUs K6% 2 +glasshouses 'glAshaUzIz Kj% 3 +glassier 'glAsI@R Or$ 3 +glassiest 'glAsIIst Os$ 3 +glassing 'glAsIN Hb$ 26A,15B +glassware 'glAswe@R L@% 2 +glassworks 'glAsw3ks K9% 2 +glassy 'glAsI OD% 2 +glaucoma glO'k@Um@ L@% 3 +glaucous 'glOk@s OA$ 2 +glaze gleIz J2%,M6% 12A,2C,6A,15B +glazed gleIzd Jc%,Jd% 12A,2C,6A,15B +glazes 'gleIzIz Ja%,Mj% 22A,2C,6A,15B +glazier 'gleIzI@R K6% 3 +glaziers 'gleIzI@z Kj% 3 +glazing 'gleIzIN Jb% 22A,2C,6A,15B +gleam glim I0%,K6% 12A,2C +gleamed glimd Ic%,Id% 12A,2C +gleaming 'glimIN Ib% 22A,2C +gleams glimz Ia%,Kj% 12A,2C +glean glin J0% 12A,6A +gleaned glind Jc%,Jd% 12A,6A +gleaner 'glin@R K6% 2 +gleaners 'glin@z Kj% 2 +gleaning 'glinIN Jb% 22A,6A +gleanings 'glinINz Kj% 2 +gleans glinz Ja% 12A,6A +glebe glib K6$ 1 +glebes glibz Kj$ 1 +glee gli M6% 1 +gleeful 'glif@l OA% 2 +gleefully 'glif@lI Pu% 3 +glees gliz Mj$ 1 +glen glen K6% 1 +glens glenz Kj% 1 +glib glIb OE% 1 +glibber 'glIb@R Or$ 2 +glibbest 'glIbIst Os$ 2 +glibly 'glIblI Pu% 2 +glibness 'glIbn@s L@% 2 +glide glaId I2%,K6% 12A,2C +glided 'glaIdId Ic%,Id% 22A,2C +glider 'glaId@R K6% 2 +gliders 'glaId@z Kj% 2 +glides glaIdz Ia%,Kj% 12A,2C +gliding 'glaIdIN Ib%,L@% 22A,2C +glimmer 'glIm@R I0%,K6% 22A,2C +glimmered 'glIm@d Ic%,Id% 22A,2C +glimmering 'glIm@rIN Ib% 32A,2C +glimmers 'glIm@z Ia%,Kj% 22A,2C +glimpse glImps H2%,K6% 16A,19A +glimpsed glImpst Hc%,Hd% 16A,19A +glimpses 'glImpsIz Ha%,Kj% 26A,19A +glimpsing 'glImpsIN Hb% 26A,19A +glint glInt I0%,K6% 1 +glinted 'glIntId Ic%,Id% 2 +glinting 'glIntIN Ib% 2 +glints glInts Ia%,Kj% 1 +glissade glI'seId I2$,K6$ 2 +glissaded glI'seIdId Ic$,Id$ 3 +glissades glI'seIdz Ia$,Kj$ 2 +glissading glI'seIdIN Ib$ 3 +glissando glI's&nd@U OA$,Pu$ 3 +glisten 'glIsn I0% 22A,2C +glistened 'glIsnd Ic%,Id% 22A,2C +glistening 'glIsnIN Ib% 32A,2C +glistens 'glIsnz Ia% 22A,2C +glister 'glIst@R I0$,Ki$ 2 +glistered 'glIst@d Ic$,Id$ 2 +glistering 'glIst@rIN Ib$ 3 +glisters 'glIst@z Ia$ 2 +glitter 'glIt@R I0%,L@% 22A,2C +glittered 'glIt@d Ic%,Id% 22A,2C +glittering 'glIt@rIN Ib%,OA% 32A,2C +glitters 'glIt@z Ia% 22A,2C +gloaming 'gl@UmIN Ki% 2 +gloat gl@Ut I0% 12A,3A +gloated 'gl@UtId Ic%,Id% 22A,3A +gloating 'gl@UtIN Ib% 22A,3A +gloatingly 'gl@UtINlI Pu% 3 +gloats gl@Uts Ia% 12A,3A +global 'gl@Ubl OA% 2 +globe gl@Ub K6% 1 +globes gl@Ubz Kj% 1 +globetrot 'gl@Ubtr0t I4% 22A +globetrots 'gl@Ubtr0ts Ia% 22A +globetrotted 'gl@Ubtr0tId Ic%,Id% 32A +globetrotter 'gl@Ubtr0t@R K6% 3 +globetrotters 'gl@Ubtr0t@z Kj% 3 +globetrotting 'gl@Ubtr0tIN Ib% 32A +globular 'gl0bjUl@R OA% 3 +globule 'gl0bjul K6% 2 +globules 'gl0bjulz Kj% 2 +glockenspiel 'gl0k@nspil K6% 3 +glockenspiels 'gl0k@nspilz Kj% 3 +gloom glum M6% 1 +gloomier 'glumI@R Or% 3 +gloomiest 'glumIIst Os% 3 +gloomily 'glumIlI Pu% 3 +glooms glumz Mj$ 1 +gloomy 'glumI OD% 2 +gloried 'glOrId Ic%,Id% 23A +glories 'glOrIz Ia%,Mj% 23A +glorification ,glOrIfI'keISn L@% 5 +glorified 'glOrIfaId Hc%,Hd% 36A +glorifies 'glOrIfaIz Ha% 36A +glorify 'glOrIfaI H3% 36A +glorifying 'glOrIfaIIN Hb% 46A +glorious 'glOrI@s OA% 3 +gloriously 'glOrI@slI Pu% 4 +glory 'glOrI I3%,M8% 23A +glory-hole 'glOrI-h@Ul K6% 3 +glory-holes 'glOrI-h@Ulz Kj$ 3 +glorying 'glOrIIN Ib% 33A +gloss gl0s H1%,K7% 16A,15A +glossaries 'gl0s@rIz Kj% 3 +glossary 'gl0s@rI K8% 3 +glossed gl0st Hc%,Hd% 16A,15A +glosses 'gl0sIz Ha%,Kj% 26A,15A +glossier 'gl0sI@R Or% 3 +glossiest 'gl0sIIst Os% 3 +glossily 'gl0sIlI Pu% 3 +glossiness 'gl0sIn@s L@% 3 +glossing 'gl0sIN Hb% 26A,15A +glossy 'gl0sI OD% 2 +glottal 'gl0tl OA% 2 +glottis 'gl0tIs K7$ 2 +glottises 'gl0tIsIz Kj$ 3 +glove glVv K6% 1 +glove-compartment 'glVv-k@m,pAtm@nt K6% 4 +glove-compartments 'glVv-k@m,pAtm@nts Kj% 4 +gloved glVvd OA% 1 +gloves glVvz Kj% 1 +glow gl@U I0%,Ki% 12A,2C +glow-worm 'gl@U-w3m K6% 2 +glow-worms 'gl@U-w3mz Kj% 2 +glowed gl@Ud Ic%,Id% 12A,2C +glower 'glaU@R I0% 22A,3A +glowered 'glaU@d Ic%,Id% 22A,3A +glowering 'glaU@rIN Ib% 32A,3A +gloweringly 'glaUw@rINlI Pu% 4 +glowers 'glaU@z Ia% 22A,3A +glowing 'gl@UIN Ib%,OA% 22A,2C +glowingly 'gl@UINlI Pu% 3 +glows gl@Uz Ia% 12A,2C +glucose 'gluk@Us L@% 2 +glue glu H5%,M6% 16A,15A,15B +glued glud Hc%,Hd% 16A,15A,15B +glues gluz Ha%,Mj% 16A,15A,15B +gluey 'gluI OA% 2 +gluing 'gluIN Hb% 26A,15A,15B +glum glVm OE% 1 +glumly 'glVmlI Pu% 2 +glummer 'glVm@R Or% 2 +glummest 'glVmIst Os% 2 +glumness 'glVmn@s L@% 2 +glut glVt H4%,K6% 16A,14 +gluten 'glut@n L@$ 2 +glutinous 'glutIn@s OA% 3 +gluts glVts Ha%,Kj% 16A,14 +glutted 'glVtId Hc%,Hd% 26A,14 +glutting 'glVtIN Hb% 26A,14 +glutton 'glVtn K6% 2 +gluttonous 'glVt@n@s OA% 3 +gluttonously 'glVt@n@slI Pu$ 4 +gluttons 'glVtnz Kj% 2 +gluttony 'glVtnI L@% 3 +glycerine 'glIs@rin L@% 3 +gnarled nAld OA% 1 +gnash n&S J1% 12A,6A +gnashed n&St Jc%,Jd% 12A,6A +gnashes 'n&SIz Ja% 22A,6A +gnashing 'n&SIN Jb% 22A,6A +gnat n&t K6% 1 +gnats n&ts Kj% 1 +gnaw nO J0% 13A,6A,15B +gnawed nOd Jc%,Jd% 13A,6A,15B +gnawing 'nOIN Jb% 23A,6A,15B +gnaws nOz Ja% 13A,6A,15B +gnome n@Um K6% 1 +gnomes n@Umz Kj% 1 +gnu nu K6$ 1 +gnus nuz Kj$ 1 +go g@U I5*,Ki% 12A,2B,2C,2D,2E,3A,4A,6A,15B +go-ahead 'g@U-@hed Ki% 3 +go-as-you-please ,g@U-@z-ju-'pliz Oq$ 4 +go-between 'g@U-bItwin K6% 3 +go-betweens 'g@U-bItwinz Kj% 3 +go-by 'g@U-baI Ki$ 2 +go-cart 'g@U-kAt K6$ 2 +go-carts 'g@U-kAts Kj$ 2 +go-getter ,g@U-'get@R K6% 3 +go-getters ,g@U-'get@z Kj% 3 +go-kart 'g@U-kAt K6% 2 +go-karts 'g@U-kAts Kj% 2 +go-slow 'g@U-sl@U K6% 2 +go-slows 'g@U-sl@Uz Kj$ 2 +go-to-meeting 'g@U-t@-mitIN Oq$ 4 +goad g@Ud H0%,K6% 16A,14,15B,17 +goaded 'g@UdId Hc%,Hd% 26A,14,15B,17 +goading 'g@UdIN Hb% 26A,14,15B,17 +goads g@Udz Ha%,Kj% 16A,14,15B,17 +goal g@Ul K6% 1 +goal-kick 'g@Ul-kIk K6% 2 +goal-kicks 'g@Ul-kIks Kj% 2 +goal-line 'g@Ul-laIn K6% 2 +goal-lines 'g@Ul-laInz Kj% 2 +goalie 'g@UlI K6% 2 +goalies 'g@UlIz Kj% 2 +goalkeeper 'g@Ulkip@R K6% 3 +goalkeepers 'g@Ulkip@z Kj% 3 +goalless 'g@Ul+lIs OA% 2 +goalmouth 'g@UlmaUT K6% 2 +goalmouths 'g@UlmaUDz Kj$ 2 +goals g@Ulz Kj% 1 +goat g@Ut K6% 1 +goatee g@U'ti K6$ 2 +goatees g@U'tiz Kj$ 2 +goatherd 'g@Uth3d K6% 2 +goatherds 'g@Uth3dz Kj% 2 +goats g@Uts Kj% 1 +goatskin 'g@UtskIn M6% 2 +goatskins 'g@UtskInz Mj% 2 +gob g0b K6% 1 +gobbet 'g0bIt K6$ 2 +gobbets 'g0bIts Kj$ 2 +gobble 'g0bl J2%,K6% 22A,2C,6A,15B +gobbled 'g0bld Jc%,Jd% 22A,2C,6A,15B +gobbledygook 'g0bldIgUk L@% 4 +gobbler 'g0bl@R K6$ 2 +gobblers 'g0bl@z Kj$ 2 +gobbles 'g0blz Ja%,Kj% 22A,2C,6A,15B +gobbling 'g0blIN Jb% 22A,2C,6A,15B +goblet 'g0blIt K6% 2 +goblets 'g0blIts Kj% 2 +goblin 'g0blIn K6% 2 +goblins 'g0blInz Kj% 2 +gobs g0bz Kj$ 1 +god g0d K6% 1 +god-damn 'g0d-d&m OA$ 2 +god-damned 'g0d-d&md OA% 2 +godchild 'g0dtSaIld Ki% 2 +godchildren 'g0dtSIldr@n Kj% 3 +goddam 'g0d&m OA%,Pu% 2 +goddaughter 'g0d+dOt@R K6% 3 +goddaughters 'g0d+dOt@z Kj% 3 +goddess 'g0dIs K7% 2 +goddesses 'g0dIsIz Kj% 3 +godfather 'g0dfAD@R K6% 3 +godfathers 'g0dfAD@z Kj% 3 +godfearing 'g0dfI@rIN OA% 3 +godforsaken 'g0df@seIk@n OA% 4 +godhead 'g0dhed L@% 2 +godless 'g0dlIs OA% 2 +godlessness 'g0dlIsn@s L@% 3 +godlier 'g0dlI@R Or$ 3 +godliest 'g0dlIIst Os$ 3 +godlike 'g0dlaIk OA% 2 +godliness 'g0dlIn@s L@% 3 +godly 'g0dlI OD% 2 +godmother 'g0dmVD@R K6% 3 +godmothers 'g0dmVD@z Kj% 3 +godown 'g@UdaUn K6$ 2 +godowns 'g@UdaUnz Kj$ 2 +godparent 'g0dpe@r@nt K6% 3 +godparents 'g0dpe@r@nts Kj% 3 +gods g0dz Kj% 1 +godsend 'g0dsend K6% 2 +godsends 'g0dsendz Kj% 2 +godson 'g0dsVn K6% 2 +godsons 'g0dsVnz Kj% 2 +godspeed g0d'spid L@% 2 +goes g@Uz Ia%,Kj% 12A,2B,2C,2D,2E,3A,4A,6A,15B +goggle 'g0gl I2% 22A,3A +goggle-box 'g0gl-b0ks K7% 3 +goggle-boxes 'g0gl-b0ksIz Kj% 4 +goggle-eyed 'g0gl-aId OA% 3 +goggled 'g0gld Ic%,Id% 22A,3A +goggles 'g0glz Ia%,Kj% 22A,3A +goggling 'g0glIN Ib% 22A,3A +going 'g@UIN Ib*,M6%,OA% 22A,2B,2C,2D,2E,3A,4A,6A,15B +going-over ,g@UIN-'@Uv@R K6% 4 +going-overs ,g@UIN-'@Uv@z Kj$ 4 +goings 'g@UINz Mj% 2 +goings-on ,g@UINz-'0n Kj% 3 +goitre 'goIt@R K6$ 2 +goitres 'goIt@z Kj$ 2 +gold g@Uld L@% 1 +gold-beater 'g@Uld-bit@R K6$ 3 +gold-beaters 'g@Uld-bit@z Kj$ 3 +gold-digger 'g@Uld-dIg@R K6% 3 +gold-diggers 'g@Uld-dIg@z Kj% 3 +gold-dust 'g@Uld-dVst L@% 2 +gold-foil g@Uld-'foIl L@% 2 +gold-leaf g@Uld-'lif L@% 2 +gold-plate g@Uld-'pleIt L@% 2 +gold-rush 'g@Uld-rVS K7% 2 +gold-rushes 'g@Uld-rVSIz Kj$ 3 +golden 'g@Uld@n OA% 2 +goldfield 'g@Uldfild K6% 2 +goldfields 'g@Uldfildz Kj% 2 +goldfinch 'g@UldfIntS K7% 2 +goldfinches 'g@UldfIntSIz Kj% 3 +goldfish 'g@UldfIS K9% 2 +goldfishes 'g@UldfISIz Kj% 3 +goldmine 'g@UldmaIn K6% 2 +goldmines 'g@UldmaInz Kj% 2 +goldsmith 'g@UldsmIT K6% 2 +goldsmiths 'g@UldsmITs Kj% 2 +golf g0lf I0$,L@% 1 +golf-ball 'g0lf-bOl K6% 2 +golf-balls 'g0lf-bOlz Kj% 2 +golf-club 'g0lf-klVb K6% 2 +golf-clubs 'g0lf-klVbz Kj% 2 +golf-course 'g0lf-kOs K6% 2 +golf-courses 'g0lf-kOsIz Kj% 3 +golf-links 'g0lf-lINks K9% 2 +golfed g0lft Ic$,Id$ 1 +golfer 'g0lf@R K6% 2 +golfers 'g0lf@z Kj% 2 +golfing 'g0lfIN Ib% 2 +golfs g0lfs Ia$ 1 +golliwog 'g0lIw0g K6% 3 +golliwogs 'g0lIw0gz Kj% 3 +golly 'g0lI W-% 2 +golosh g@'l0S K7$ 2 +goloshes g@'l0SIz Kj% 3 +gondola 'g0nd@l@ K6% 3 +gondolas 'g0nd@l@z Kj% 3 +gondolier ,g0nd@'lI@R K6% 4 +gondoliers ,g0nd@'lI@z Kj% 4 +gone g0n Id* 12A,2B,2C,2D,2E,3A,4A,6A,15B +goner 'g0n@R K6% 2 +goners 'g0n@z Kj% 2 +gong g0N H0$,K6% 1 +gonged g0Nd Hc$,Hd$ 1 +gonging 'g0NIN Hb$ 2 +gongs g0Nz Ha$,Kj% 1 +gonna 'g0n@ Gh% 2 +gonorrhea ,g0n@'rI@ L@$ 4 +gonorrhoea ,g0n@'rI@ L@% 4 +goo gu L@% 1 +good gUd L@%,OE* 1 +good-fellowship gUd-'fel@USIp L@$ 4 +good-for-naught 'gUd-f@-nOt K6$,OA$ 3 +good-for-naughts 'gUd-f@-nOts Kj$ 3 +good-for-nothing 'gUd-f@-nVTIN K6%,OA% 4 +good-for-nothings 'gUd-f@-nVTINz Kj% 4 +good-humoured gUd-'hjum@d OA% 3 +good-looking gUd-'lUkIN OA% 3 +good-natured gUd-'neItS@d OA% 3 +good-neighbourliness gUd-'neIb@lIn@s L@% 5 +good-tempered gUd-'temp@d OA% 3 +good-time 'gUd-taIm OA% 2 +goodbye ,gUd'baI K6%,W-% 2 +goodbyes ,gUd'baIz Kj% 2 +goodies 'gUdIz Kj% 2 +goodish 'gUdIS Oq% 2 +goodlier 'gUdlI@R Or$ 3 +goodliest 'gUdlIIst Os$ 3 +goodly 'gUdlI OD% 2 +goodness 'gUdn@s L@% 2 +goods gUdz Kj% 1 +goodwill ,gUd'wIl L@% 2 +goody 'gUdI K8$ 2 +goody-goodies 'gUdI-gUdIz Kj% 4 +goody-goody 'gUdI-gUdI K8%,OA% 4 +gooey 'guI OE% 2 +goof guf J0%,K6% 12A,6A +goofed guft Jc%,Jd% 12A,6A +goofier 'gufI@R Or$ 3 +goofiest 'gufIIst Os$ 3 +goofing 'gufIN Jb% 22A,6A +goofs gufs Ja%,Kj% 12A,6A +goofy 'gufI OD% 2 +googlies 'guglIz Kj% 2 +googly 'guglI K8% 2 +gooier 'guI@R Or% 2 +gooiest 'guIIst Os% 3 +goon gun K6% 1 +goons gunz Kj% 1 +goose gus Ki% 1 +goose-flesh 'gus-fleS L@% 2 +goose-step 'gus-step K6% 2 +goose-steps 'gus-steps Kj$ 2 +gooseberries 'gUzb@rIz Kj% 3 +gooseberry 'gUzb@rI K8% 3 +gopher 'g@Uf@R K6$ 2 +gophers 'g@Uf@z Kj$ 2 +gore gOR H2%,L@% 16A +gored gOd Hc%,Hd% 16A +gores gOz Ha% 16A +gorge gOdZ J2%,K6% 12A,2C,6A,14 +gorged gOdZd Jc%,Jd% 12A,2C,6A,14 +gorgeous 'gOdZ@s OA% 2 +gorgeously 'gOdZ@slI Pu% 3 +gorges 'gOdZIz Ja%,Kj% 22A,2C,6A,14 +gorging 'gOdZIN Jb% 22A,2C,6A,14 +gorier 'gOrI@R Or$ 3 +goriest 'gOrIIst Os% 3 +gorilla g@'rIl@ K6% 3 +gorillas g@'rIl@z Kj% 3 +goring 'gOrIN Hb% 26A +gormandize 'gOm@ndaIz I2$ 3 +gormandized 'gOm@ndaIzd Ic$,Id$ 3 +gormandizes 'gOm@ndaIzIz Ia$ 4 +gormandizing 'gOm@ndaIzIN Ib$ 4 +gormless 'gOmlIs OA% 2 +gorse gOs L@% 1 +gory 'gOrI OD% 2 +gosh g0S W-% 1 +gosling 'g0zlIN K6% 2 +goslings 'g0zlINz Kj% 2 +gospel 'g0spl M6% 2 +gospels 'g0splz Mj% 2 +gossamer 'g0s@m@R M6% 3 +gossamers 'g0s@m@z Mj$ 3 +gossip 'g0sIp I0%,M6% 22A,2C +gossiped 'g0sIpt Ic%,Id% 22A,2C +gossiping 'g0sIpIN Ib% 32A,2C +gossipped 'g0sIpt Ic%,Id% 22A,2C +gossipping 'g0sIpIN Ib% 32A,2C +gossips 'g0sIps Ia%,Mj% 22A,2C +got g0t Jc*,Jd* 12C,2D,2E,3A,4A,6A,7A,7B,12B,13B,14,15A,15B,17,19B,22,24C +gotta 'g0t@ Gh% 2 +gotten 'g0t@n Jd$ 22C,2D,2E,3A,4A,6A,7A,12B,13B,14,15A,15B,17,19B,22,24C +gouache gU'AS L@$ 2 +gouge gaUdZ H2%,K6% 16A,15B +gouged gaUdZd Hc%,Hd% 16A,15B +gouges 'gaUdZIz Ha%,Kj% 26A,15B +gouging 'gaUdZIN Hb% 26A,15B +goulash 'gul&S M7% 2 +goulashes 'gul&SIz Mj$ 3 +gourd gU@d K6% 1 +gourds gU@dz Kj% 1 +gourmand 'gU@m@nd K6$ 2 +gourmands 'gU@m@ndz Kj$ 2 +gourmet 'gU@meI K6% 2 +gourmets 'gU@meIz Kj% 2 +gout gaUt L@% 1 +goutier 'gaUtI@R Or$ 3 +goutiest 'gaUtIIst Os$ 3 +gouty 'gaUtI OD% 2 +govern 'gVvn J0% 22A,6A +governance 'gVv@n@ns L@% 3 +governed 'gVvnd Jc%,Jd% 22A,6A +governess 'gVv@nes K7% 3 +governesses 'gVv@nesIz Kj% 4 +governing 'gVvnIN Jb%,OA% 32A,6A +government 'gVv@nm@nt M6% 3 +governmental ,gVvn'mentl OA% 4 +governments 'gVv@nm@nts Mj% 3 +governor 'gVv@n@R K6% 3 +governors 'gVv@n@z Kj% 3 +governs 'gVvnz Ja% 22A,6A +govt 'gVv@nm@nt Y>% 3 +gown gaUn H0$,K6% 1 +gowned gaUnd Hc$,Hd% 1 +gowning 'gaUnIN Hb$ 2 +gowns gaUnz Ha$,Kj% 1 +grab gr&b J4%,K6% 13A,6A +grabbed gr&bd Jc%,Jd% 13A,6A +grabber 'gr&b@R K6% 2 +grabbers 'gr&b@z Kj% 2 +grabbing 'gr&bIN Jb% 23A,6A +grabs gr&bz Ja%,Kj% 13A,6A +grace greIs H2%,M6% 16A +graced greIst Hc%,Hd% 16A +graceful 'greIsf@l OA% 2 +gracefully 'greIsf@lI Pu% 3 +graceless 'greIslIs OA% 2 +gracelessly 'greIslIslI Pu% 3 +graces 'greIsIz Ha%,Mj% 26A +gracing 'greIsIN Hb% 26A +gracious 'greIS@s OA% 2 +graciously 'greIS@slI Pu% 3 +graciousness 'greIS@sn@s L@% 3 +gradation gr@'deISn M6% 3 +gradations gr@'deISnz Mj% 3 +grade greId H2%,K6% 16A,15B +graded 'greIdId Hc%,Hd% 26A,15B +grades greIdz Ha%,Kj% 16A,15B +gradient 'greIdI@nt K6% 3 +gradients 'greIdI@nts Kj% 3 +grading 'greIdIN Hb% 26A,15B +gradual 'gr&dZU@l OA% 3 +gradually 'gr&dZU@lI Pu% 4 +gradualness 'gr&dZU@ln@s L@% 4 +graduate 'gr&dZU@t K6% 3 +graduate 'gr&dZUeIt J2% 32A,2C,6A +graduated 'gr&dZUeItId Jc%,Jd% 42A,2C,6A +graduates 'gr&dZU@ts Kj% 3 +graduates 'gr&dZUeIts Ja% 32A,2C,6A +graduating 'gr&dZUeItIN Jb% 42A,2C,6A +graduation ,gr&dZU'eISn K6% 4 +graduations ,gr&dZU'eISnz Kj$ 4 +graffiti gr@'fiti Kj% 3 +graffito gr@'fit@U Ki$ 3 +graft grAft J0%,M6% 12A,6A,15A,15B +grafted 'grAftId Jc%,Jd% 22A,6A,15A,15B +grafting 'grAftIN Jb% 22A,6A,15A,15B +grafts grAfts Ja%,Mj% 12A,6A,15A,15B +grail greIl K6$ 1 +grails greIlz Kj$ 1 +grain greIn M6% 1 +grained greInd Ot% 1 +grains greInz Mj% 1 +gram gr&m K6% 1 +grammar 'gr&m@R M6% 2 +grammarian gr@'me@rI@n K6% 4 +grammarians gr@'me@rI@nz Kj% 4 +grammars 'gr&m@z Mj% 2 +grammatical gr@'m&tIkl OA% 4 +grammatically gr@'m&tIklI Pu% 4 +gramme gr&m K6% 1 +grammes gr&mz Kj% 1 +gramophone 'gr&m@f@Un K6% 3 +gramophones 'gr&m@f@Unz Kj% 3 +grampus 'gr&mp@s K7$ 2 +grampuses 'gr&mp@sIz Kj$ 3 +grams gr&mz Kj% 1 +granaries 'gr&n@rIz Kj% 3 +granary 'gr&n@rI K8% 3 +grand gr&nd OC% 1 +grand- gr&nd- U-% 1 +grandad 'gr&nd&d K6% 2 +grandads 'gr&nd&dz Kj% 2 +grandaunt gr&nd'Ant K6$ 2 +grandaunts gr&nd'Ants Kj$ 2 +grandchild 'gr&ntSaIld Ki% 2 +grandchildren 'gr&ntSIldr@n Kj% 3 +granddad 'gr&nd&d K6$ 2 +granddads 'gr&nd&dz Kj$ 2 +granddaughter 'gr&ndOt@R K6% 3 +granddaughters 'gr&ndOt@z Kj% 3 +grandee gr&n'di K6$ 2 +grandees gr&n'diz Kj$ 2 +grander 'gr&nd@R Or% 2 +grandest 'gr&ndIst Os% 2 +grandeur 'gr&ndZ@R L@% 2 +grandfather 'gr&nfAD@R K6% 3 +grandfathers 'gr&nfAD@z Kj% 3 +grandiloquence gr&n'dIl@kw@ns L@% 4 +grandiloquent gr&n'dIl@kw@nt OA% 4 +grandiose 'gr&ndI@Us OA% 3 +grandly 'gr&ndlI Pu% 2 +grandma 'gr&nmA K6% 2 +grandmas 'gr&nmAz Kj% 2 +grandmother 'gr&nmVD@R K6% 3 +grandmothers 'gr&nmVD@z Kj% 3 +grandnephew 'gr&n+nefju K6$ 3 +grandnephews 'gr&n+nefjuz Kj$ 3 +grandniece gr&n'nis K6$ 2 +grandnieces gr&n'nisIz Kj$ 3 +grandpa 'gr&npA K6% 2 +grandparent 'gr&npe@r@nt K6% 3 +grandparents 'gr&npe@r@nts Kj% 3 +grandpas 'gr&npAz Kj% 2 +grandson 'gr&nsVn K6% 2 +grandsons 'gr&nsVnz Kj% 2 +grandstand 'gr&nst&nd K6% 2 +grandstands 'gr&nst&ndz Kj% 2 +granduncle 'gr&ndVNkl K6$ 3 +granduncles 'gr&ndVNklz Kj$ 3 +grange greIndZ K6$ 1 +granges 'greIndZIz Kj$ 2 +granite 'gr&nIt L@% 2 +grannie 'gr&nI K6% 2 +grannies 'gr&nIz Kj% 2 +granny 'gr&nI K8% 2 +grant grAnt H0%,K6% 16A,9,12A,13A,25 +granted 'grAntId Hc%,Hd% 26A,9,12A,13A,25 +granting 'grAntIN Hb% 26A,9,12A,13A,25 +grants grAnts Ha%,Kj% 16A,9,12A,13A,25 +granular 'gr&njUl@R OA% 3 +granularity ,gr&njU'l&rItI L@% 5 +granulate 'gr&njUleIt J2$ 32A,6A +granulated 'gr&njUleItId Jc$,Jd% 42A,6A +granulates 'gr&njUleIts Ja$ 32A,6A +granulating 'gr&njUleItIN Jb$ 42A,6A +granule 'gr&njul K6% 2 +granules 'gr&njulz Kj% 2 +grape greIp K6% 1 +grape-sugar 'greIp-SUg@R L@% 3 +grapefruit 'greIpfrut M9% 2 +grapefruits 'greIpfruts Kj% 2 +grapes greIps Kj% 1 +grapeshot 'greIpS0t L@% 2 +grapevine 'greIpvaIn K6% 2 +grapevines 'greIpvaInz Kj% 2 +graph grAf K6% 1 +graphic 'gr&fIk OA% 2 +graphical 'gr&fIkl OA% 3 +graphically 'gr&fIklI Pu% 3 +graphics 'gr&fIks Lk% 2 +graphite 'gr&faIt L@% 2 +graphs grAfs Kj% 1 +grapnel 'gr&pnl K6$ 2 +grapnels 'gr&pnlz Kj$ 2 +grapple 'gr&pl I2% 22A,2C,3A +grappled 'gr&pld Ic%,Id% 22A,2C,3A +grapples 'gr&plz Ia% 22A,2C,3A +grappling 'gr&plIN Ib% 22A,2C,3A +grappling-iron 'gr&plIN-aI@n K6$ 4 +grappling-irons 'gr&plIN-aI@nz Kj$ 4 +grasp grAsp J0%,K6% 13A,6A +grasped grAspt Jc%,Jd% 13A,6A +grasping 'grAspIN Jb%,OA% 23A,6A +grasps grAsps Ja%,Kj% 13A,6A +grass grAs J1%,M7% 12A,3A,6A,15B +grassed grAst Jc%,Jd% 12A,3A,6A,15B +grasses 'grAsIz Ja%,Mj% 22A,3A,6A,15B +grasshopper 'grAsh0p@R K6% 3 +grasshoppers 'grAsh0p@z Kj% 3 +grassier 'grAsI@R Or% 3 +grassiest 'grAsIIst Os% 3 +grassing 'grAsIN Jb% 22A,3A,6A,15B +grassland 'grAsl&nd K6% 2 +grasslands 'grAsl&ndz Kj% 2 +grassroots 'grAsruts Kj% 2 +grassy 'grAsI OD% 2 +grate greIt J2%,K6% 12A,3A,6A,15A +grated 'greItId Jc%,Jd% 22A,3A,6A,15A +grateful 'greItf@l OA% 2 +gratefully 'greItf@lI Pu% 3 +gratefulness 'greItf@ln@s L@% 3 +grater 'greIt@R K6% 2 +graters 'greIt@z Kj% 2 +grates greIts Ja%,Kj% 12A,3A,6A,15A +gratification ,gr&tIfI'keISn M6% 5 +gratifications ,gr&tIfI'keISnz Mj% 5 +gratified 'gr&tIfaId Hc%,Hd% 36A +gratifies 'gr&tIfaIz Ha% 36A +gratify 'gr&tIfaI H3% 36A +gratifying 'gr&tIfaIIN Hb%,OA% 46A +grating 'greItIN Jb%,K6% 22A,3A,6A,15A +gratingly 'greItINlI Pu% 3 +gratings 'greItINz Kj$ 2 +gratis 'gr&tIs OA%,Pu% 2 +gratitude 'gr&tItjud L@% 3 +gratuities gr@'tjuItIz Kj% 4 +gratuitous gr@'tjuIt@s OA% 4 +gratuitously gr@'tjuIt@slI Pu% 5 +gratuity gr@'tjuItI K8% 4 +grave grAv K6% 1 +grave greIv H5$,K6%,OB% 1 +grave-clothes 'greIv-kl@UDz Kj% 2 +gravel 'gr&vl H4$,L@% 26A +gravelled 'gr&vld Hc$,Hd% 26A +gravelling 'gr&v@lIN Hb$ 36A +gravelly 'gr&v@lI OA% 3 +gravels 'gr&vlz Ha$ 26A +gravely 'greIvlI Pu$ 2 +graven 'greIv@n Hd$,OA% 2 +graver 'greIv@R Or% 2 +graves grAvz Kj$ 1 +graves greIvz Kj% 1 +gravest 'greIvIst Os% 2 +gravestone 'greIvst@Un K6% 2 +gravestones 'greIvst@Unz Kj% 2 +graveyard 'greIvjAd K6% 2 +graveyards 'greIvjAdz Kj% 2 +graving dock 'greIvIN d0k K6$ 3 +graving docks 'greIvIN d0ks Kj$ 3 +gravitate 'gr&vIteIt I2% 33A +gravitated 'gr&vIteItId Ic%,Id% 43A +gravitates 'gr&vIteIts Ia% 33A +gravitating 'gr&vIteItIN Ib% 43A +gravitation ,gr&vI'teISn L@% 4 +gravity 'gr&vItI L@% 3 +gravure gr@'vjU@R K6$ 2 +gravures gr@'vjU@z Kj$ 2 +gravy 'greIvI L@% 2 +gravy-boat 'greIvI-b@Ut K6% 3 +gravy-boats 'greIvI-b@Uts Kj% 3 +gray greI J0$,M6%,OC% 12A,6A +grayed greId Jc$,Jd$ 12A,6A +grayer 'greI@R Or% 2 +grayest 'greIIst Os% 2 +graying 'greIIN Jb% 22A,6A +grays greIz Ja$,Mj% 12A,6A +graze greIz J2%,K6% 12A,2C,6A +grazed greIzd Jc%,Jd% 12A,2C,6A +grazes 'greIzIz Ja%,Kj% 22A,2C,6A +grazier 'greIzI@R K6$ 3 +graziers 'greIzI@z Kj$ 3 +grazing 'greIzIN Jb% 22A,2C,6A +grazing-land 'greIzIN-l&nd K6% 3 +grazing-lands 'greIzIN-l&ndz Kj% 3 +grease gris H2%,L@% 1 +grease-gun 'gris-gVn K6% 2 +grease-guns 'gris-gVnz Kj% 2 +greased grist Hc%,Hd% 1 +greasepaint 'grispeInt L@% 2 +greaseproof 'grispruf OA% 2 +greaser 'gris@R K6% 2 +greasers 'gris@z Kj% 2 +greases 'grisIz Ha% 2 +greasier 'grisI@R Or% 3 +greasiest 'grisIIst Os% 3 +greasily 'grisIlI Pu% 3 +greasiness 'grisIn@s L@% 3 +greasing 'grisIN Hb% 2 +greasy 'grisI OD% 2 +great greIt OC* 1 +greatcoat 'greItk@Ut K6% 2 +greatcoats 'greItk@Uts Kj% 2 +greater 'greIt@R Or% 2 +greatest 'greItIst Os% 2 +greatly 'greItlI Pu% 2 +greatness 'greItn@s L@% 2 +greaves grivz Kj$ 1 +grebe grib K6$ 1 +grebes gribz Kj$ 1 +greed grid L@% 1 +greedier 'gridI@R Or% 3 +greediest 'gridIIst Os% 3 +greedily 'gridIlI Pu% 3 +greediness 'gridIn@s L@% 3 +greedy 'gridI OD% 2 +green grin M6%,OC% 1 +greenback 'grinb&k K6$ 2 +greenbacks 'grinb&ks Kj$ 2 +greener 'grin@R Or% 2 +greenery 'grin@rI L@% 3 +greenest 'grinIst Os% 2 +greeneyed 'grinaId OA% 2 +greenfly 'grinflaI L@% 2 +greengage 'gringeIdZ K6% 2 +greengages 'gringeIdZIz Kj% 3 +greengrocer 'gringr@Us@R K6% 3 +greengroceries 'gringr@Us@rIz Kj$ 4 +greengrocers 'gringr@Us@z Kj% 3 +greengrocery 'gringr@Us@rI K8% 4 +greenhorn 'grinhOn K6$ 2 +greenhorns 'grinhOnz Kj$ 2 +greenhouse 'grinhaUs K6% 2 +greenhouses 'grinhaUzIz Kj% 3 +greenish 'grinIS OA% 2 +greenishness 'grinISn@s L@% 3 +greens grinz Mj% 1 +greenstuffs 'grinstVfs Kj$ 2 +greensward 'grinswOd L@$ 2 +greenwood 'grinwUd K6$ 2 +greenwoods 'grinwUdz Kj$ 2 +greet grit H0% 16A,14 +greeted 'gritId Hc%,Hd% 26A,14 +greeting 'gritIN Hb%,K6% 26A,14 +greetings 'gritINz Kj% 2 +greets grits Ha% 16A,14 +gregarious grI'ge@rI@s OA% 4 +gregariously grI'ge@rI@slI Pu% 5 +gregariousness grI'ge@rI@sn@s L@% 5 +gremlin 'gremlIn K6% 2 +gremlins 'gremlInz Kj% 2 +grenade grI'neId K6% 2 +grenades grI'neIdz Kj% 2 +grenadier ,gren@'dI@R K6% 4 +grenadiers ,gren@'dI@z Kj% 4 +grew gru Jc% 12A,2C,2D,3A,4A,6A,12B,13B +grey greI J0$,M6%,OC% 12A,6A +grey-headed greI-'hedId OA% 3 +greybeard 'greIbI@d K6% 2 +greybeards 'greIbI@dz Kj% 2 +greyed greId Jc$,Jd$ 12A,6A +greyer 'greI@R Or% 2 +greyest 'greIIst Os% 2 +greyhound 'greIhaUnd K6% 2 +greyhounds 'greIhaUndz Kj% 2 +greying 'greIIN Jb% 22A,6A +greyish 'greIIS OA% 2 +greyly 'greIlI Pu% 2 +greys greIz Ja$,Mj% 12A,6A +grid grId K6% 1 +griddle 'grIdl K6% 2 +griddles 'grIdlz Kj% 2 +gridiron 'grIdaI@n K6% 3 +gridirons 'grIdaI@nz Kj$ 3 +grids grIdz Kj% 1 +grief grif M6% 1 +griefs grifs Mj% 1 +grievance 'grivns K6% 2 +grievances 'grivnsIz Kj% 3 +grieve griv J2% 12A,2C,6A +grieved grivd Jc%,Jd% 12A,2C,6A +grieves grivz Ja% 12A,2C,6A +grieving 'grivIN Jb% 22A,2C,6A +grievous 'griv@s OA% 2 +grievously 'griv@slI Pu% 3 +griffin 'grIfIn K6$ 2 +griffins 'grIfInz Kj$ 2 +griffon 'grIf@n K6$ 2 +griffons 'grIf@nz Kj$ 2 +grill grIl J0%,K6% 12A,2C,6A +grille grIl K6$ 1 +grilled grIld Jc%,Jd% 12A,2C,6A +grilles grIlz Kj$ 1 +grilling 'grIlIN Jb% 22A,2C,6A +grillroom 'grIlrum K6% 2 +grillrooms 'grIlrumz Kj% 2 +grills grIlz Ja%,Kj% 12A,2C,6A +grim grIm OE% 1 +grimace grI'meIs I2%,K6% 22A +grimaced grI'meIst Ic%,Id% 22A +grimaces grI'meIsIz Ia%,Kj% 32A +grimacing grI'meIsIN Ib% 32A +grime graIm H2$,L@% 16A +grimed graImd Hc$,Hd% 16A +grimes graImz Ha$ 16A +grimier 'graImI@R Or% 3 +grimiest 'graImIIst Os% 3 +griming 'graImIN Hb$ 26A +grimly 'grImlI Pu% 2 +grimmer 'grIm@R Or% 2 +grimmest 'grImIst Os% 2 +grimness 'grImn@s L@% 2 +grimy 'graImI OD% 2 +grin grIn J4%,K6% 12A,2C,6A +grind graInd J5%,K6% 12A,2C,6A,15A,15B +grinder 'graInd@R K6% 2 +grinders 'graInd@z Kj% 2 +grinding 'graIndIN Jb% 22A,2C,6A,15A,15B +grinds graIndz Ja%,Kj% 12A,2C,6A,15A,15B +grindstone 'graIndst@Un K6$ 2 +grindstones 'graIndst@Unz Kj$ 2 +grinned grInd Jc%,Jd% 12A,2C,6A +grinning 'grInIN Jb% 22A,2C,6A +grins grInz Ja%,Kj% 12A,2C,6A +grip grIp J4%,K6% 12A,6A +gripes graIps Kj% 1 +grippe grip K6$ 1 +gripped grIpt Jc%,Jd% 12A,6A +grippes grips Kj$ 1 +gripping 'grIpIN Jb% 22A,6A +grips grIps Ja%,Kj% 12A,6A +gripsack 'grIps&k K6$ 2 +gripsacks 'grIps&ks Kj$ 2 +grisly 'grIzlI OA% 2 +grist grIst L@% 1 +gristle 'grIsl L@% 2 +grit grIt H4%,L@% 1 +grits grIts Ha%,Lk% 1 +gritted 'grItId Hc%,Hd% 2 +grittier 'grItI@R Or% 3 +grittiest 'grItIIst Os% 3 +gritting 'grItIN Hb% 2 +gritty 'grItI OD% 2 +grizzle 'grIzl I2% 2 +grizzled 'grIzld Ic%,Id%,OA% 2 +grizzles 'grIzlz Ia% 2 +grizzlies 'grIzlIz Kj$ 2 +grizzling 'grIzlIN Ib% 2 +grizzly 'grIzlI K8$ 2 +groan gr@Un J0%,K6% 12A,2C,6A,15B +groaned gr@Und Jc%,Jd% 12A,2C,6A,15B +groaning 'gr@UnIN Jb% 22A,2C,6A,15B +groans gr@Unz Ja%,Kj% 12A,2C,6A,15B +groat gr@Ut K6$ 1 +groats gr@Uts Kj$ 1 +grocer 'gr@Us@R K6% 2 +groceries 'gr@Us@rIz Mj% 3 +grocers 'gr@Us@z Kj% 2 +grocery 'gr@Us@rI M8% 3 +grog gr0g L@% 1 +groggier 'gr0gI@R Or$ 3 +groggiest 'gr0gIIst Os$ 3 +groggy 'gr0gI OD% 2 +groin groIn H0$,K6% 1 +groined groInd Hc$,Hd% 1 +groining 'groInIN Hb$ 2 +groins groInz Ha$,Kj$ 1 +groom grum H0%,K6% 16A +groomed grumd Hc%,Hd% 16A +grooming 'grumIN Hb% 26A +grooms grumz Ha%,Kj% 16A +groove gruv H2$,K6% 1 +grooved gruvd Hc$,Hd% 1 +groover 'gruv@R K6% 2 +groovers 'gruv@z Kj% 2 +grooves gruvz Ha$,Kj% 1 +groovier 'gruvI@R Or% 3 +grooviest 'gruvIIst Os% 3 +grooving 'gruvIN Hb$ 2 +groovy 'gruvI OD% 2 +grope gr@Up J2% 12A,2C,3A,15A +groped gr@Upt Jc%,Jd% 12A,2C,3A,15A +gropes gr@Ups Ja% 12A,2C,3A,15A +groping 'gr@UpIN Jb% 22A,2C,3A,15A +gropingly 'gr@UpINlI Pu% 3 +gross gr@Us H1%,K9%,OA% 16A +grossed gr@Ust Hc%,Hd% 16A +grosses 'gr@UsIz Ha% 26A +grossing 'gr@UsIN Hb% 26A +grossly 'gr@UslI Pu% 2 +grossness 'gr@Usn@s L@% 2 +grot gr0t M6% 1 +grotesque gr@U'tesk K6%,OA% 2 +grotesquely gr@U'tesklI Pu% 3 +grotesqueness gr@U'teskn@s L@% 3 +grotesques gr@U'tesks Kj$ 2 +grots gr0ts Mj$ 1 +grottier 'gr0tI@R Or% 3 +grottiest 'gr0tIIst Os% 3 +grotto 'gr0t@U K6% 2 +grottoes 'gr0t@Uz Kj% 2 +grottos 'gr0t@Uz Kj% 2 +grotty 'gr0tI OD% 2 +grouch graUtS I1%,K7% 1 +grouched graUtSt Ic%,Id% 1 +grouches 'graUtSIz Ia%,Kj% 2 +grouchier 'graUtSI@R Or$ 3 +grouchiest 'graUtSIIst Os$ 3 +grouching 'graUtSIN Ib% 2 +grouchy 'graUtSI OD% 2 +ground graUnd J0%,Jc%,Jd%,M6% 12A,2C,6A,14,15A,15B +ground-bait 'graUnd-beIt L@% 2 +ground-fish 'graUnd-fIS K9$ 2 +ground-fishes 'graUnd-fISIz Kj$ 3 +ground-plan 'graUnd-pl&n K6% 2 +ground-plans 'graUnd-pl&nz Kj% 2 +ground-rent 'graUnd-rent M6% 2 +ground-rents 'graUnd-rents Mj$ 2 +grounded 'graUndId Jc%,Jd% 22A,2C,6A,14,15A,15B +grounding 'graUndIN Jb%,K6% 22A,2C,6A,14,15A,15B +groundings 'graUndINz Kj% 2 +groundless 'graUndlIs OA% 2 +groundnut 'graUndnVt K6% 2 +groundnuts 'graUndnVts Kj% 2 +grounds graUndz Ja%,Mj% 12A,2C,6A,14,15A,15B +groundsel 'graUnsl L@$ 2 +groundsheet 'graUndSit K6% 2 +groundsheets 'graUndSits Kj% 2 +groundsman 'graUndzm@n Ki% 2 +groundsmen 'graUndzm@n Kj% 2 +groundwork 'graUndw3k L@% 2 +group grup J0%,K6* 12C,6A,15A,15B +grouped grupt Jc%,Jd% 12C,6A,15A,15B +grouping 'grupIN Jb%,K6% 22C,6A,15A,15B +groupings 'grupINz Kj% 2 +groups grups Ja%,Kj% 12C,6A,15A,15B +grouse graUs I2%,K9% 12A,2C +groused graUst Ic%,Id% 12A,2C +grouses 'graUsIz Ia%,Kj% 22A,2C +grousing 'graUsIN Ib% 22A,2C +grove gr@Uv K6% 1 +grovel 'gr0vl I4% 22A,2C +grovelled 'gr0vld Ic%,Id% 22A,2C +groveller 'gr0vl@R K6% 3 +grovellers 'gr0vl@z Kj% 3 +grovelling 'gr0v@lIN Ib% 32A,2C +grovels 'gr0vlz Ia% 22A,2C +groves gr@Uvz Kj% 1 +grow gr@U J5% 12A,2C,2D,3A,4A,6A,12B,13B +grower 'gr@U@R K6% 2 +growers 'gr@U@z Kj% 2 +growing 'gr@UIN Jb% 22A,2C,2D,3A,4A,6A,12B,13B +growing-pains 'gr@UIN-peInz Kj% 3 +growl graUl J0%,K6% 12A,2C,6A,15B +growled graUld Jc%,Jd% 12A,2C,6A,15B +growler 'graUl@R K6% 2 +growlers 'graUl@z Kj% 2 +growling 'graUlIN Jb% 22A,2C,6A,15B +growlingly 'graUlINlI Pu$ 3 +growls graUlz Ja%,Kj% 12A,2C,6A,15B +grown gr@Un Jd% 12A,2C,2D,3A,4A,6A,12B,13B +grown-up 'gr@Un-Vp K6%,OA% 2 +grown-ups 'gr@Un-Vps Kj% 2 +grows gr@Uz Ja% 12A,2C,2D,3A,4A,6A,12B,13B +growth gr@UT M6% 1 +growths gr@UTs Mj% 1 +groyne groIn K6$ 1 +groynes groInz Kj$ 1 +grub grVb J4$,M6% 12C,6A,15B +grubbed grVbd Jc$,Jd$ 12C,6A,15B +grubbier 'grVbI@R Or% 3 +grubbiest 'grVbIIst Os% 3 +grubbiness 'grVbInIs L@% 3 +grubbing 'grVbIN Jb% 22C,6A,15B +grubby 'grVbI OD% 2 +grubs grVbz Ja$,Mj% 12C,6A,15B +grudge grVdZ H2%,K6% 16C,12A,13A +grudged grVdZd Hc%,Hd% 16C,12A,13A +grudges 'grVdZIz Ha%,Kj% 26C,12A,13A +grudging 'grVdZIN Hb% 26C,12A,13A +grudgingly 'grVdZINlI Pu% 3 +gruel 'gru@l L@$ 2 +gruelling 'gru@lIN OA% 3 +gruesome 'grus@m OA% 2 +gruesomely 'grus@mlI Pu% 3 +gruesomeness 'grus@mn@s L@$ 3 +gruff grVf OC% 1 +gruffer 'grVf@R Or% 2 +gruffest 'grVfIst Os% 2 +gruffly 'grVflI Pu% 2 +gruffness 'grVfn@s L@% 2 +grumble 'grVmbl J2%,K6% 22A,2C,3A,6A,15B +grumbled 'grVmbld Jc%,Jd% 22A,2C,3A,6A,15B +grumbler 'grVmbl@R K6% 2 +grumblers 'grVmbl@z Kj% 2 +grumbles 'grVmblz Ja%,Kj% 22A,2C,3A,6A,15B +grumbling 'grVmblIN Jb% 22A,2C,3A,6A,15B +grumpier 'grVmpI@R Or% 3 +grumpiest 'grVmpIIst Os% 3 +grumpily 'grVmpIlI Pu% 3 +grumpiness 'grVmpIn@s L@% 3 +grumpy 'grVmpI OD% 2 +grunt grVnt J0%,K6% 12A,6A,15B +grunted 'grVntId Jc%,Jd% 22A,6A,15B +grunting 'grVntIN Jb% 22A,6A,15B +grunts grVnts Ja%,Kj% 12A,6A,15B +gryphon 'grIf@n K6$ 2 +gryphons 'grIf@nz Kj$ 2 +guano 'gwAn@U M6$ 2 +guanos 'gwAn@Uz Mj$ 2 +guarantee ,g&r@n'ti H5%,K6% 36A,7A,9,12A,13A,25 +guaranteed ,g&r@n'tid Hc%,Hd% 36A,7A,9,12A,13A,25 +guaranteeing ,g&r@n'tiIN Hb% 46A,7A,9,12A,13A,25 +guarantees ,g&r@n'tiz Ha%,Kj% 36A,7A,9,12A,13A,25 +guaranties 'g&r@ntIz Kj$ 3 +guarantor ,g&r@n'tOR K6% 3 +guarantors ,g&r@n'tOz Kj% 3 +guaranty 'g&r@ntI K8$ 3 +guard gAd J0%,M6% 13A,6A,15A +guard-boat 'gAd-b@Ut K6$ 2 +guard-boats 'gAd-b@Uts Kj$ 2 +guarded 'gAdId Jc%,Jd%,OA% 23A,6A,15A +guardedly 'gAdIdlI Pu% 3 +guardhouse 'gAdhaUs K6% 2 +guardhouses 'gAdhaUzIz Kj% 3 +guardian 'gAdI@n K6% 3 +guardians 'gAdI@nz Kj% 3 +guardianship 'gAdI@nSIp K6% 4 +guardianships 'gAdI@nSIps Kj$ 4 +guarding 'gAdIN Jb% 23A,6A,15A +guardrail 'gAdreIl K6% 2 +guardrails 'gAdreIlz Kj% 2 +guardroom 'gAdrum K6% 2 +guardrooms 'gAdrumz Kj% 2 +guards gAdz Ja%,Mj% 13A,6A,15A +guardship 'gAdSIp K6$ 2 +guardships 'gAdSIps Kj$ 2 +guardsman 'gAdzm@n Ki% 2 +guardsmen 'gAdzm@n Kj% 2 +guava 'gwAv@ M6% 2 +guavas 'gwAv@z Mj% 2 +gudgeon 'gVdZ@n K6$ 2 +gudgeons 'gVdZ@nz Kj$ 2 +guelder rose 'geld@ r@Uz K6$ 3 +guelder roses 'geld@ r@UzIz Kj$ 4 +guerilla g@'rIl@ K6% 3 +guerillas g@'rIl@z Kj% 3 +guerrilla g@'rIl@ K6$ 3 +guerrillas g@'rIl@z Kj$ 3 +guess ges J1%,K7% 12A,2C,3A,6A,8,9,10,25 +guessed gest Jc%,Jd% 12A,2C,3A,6A,8,9,10,25 +guesses 'gesIz Ja%,Kj% 22A,2C,3A,6A,8,9,10,25 +guessing 'gesIN Jb% 22A,2C,3A,6A,8,9,10,25 +guesstimate 'gestIm@t K6$ 3 +guesstimates 'gestIm@ts Kj$ 3 +guesswork 'gesw3k L@% 2 +guest gest K6% 1 +guest-night 'gest-naIt K6% 2 +guest-nights 'gest-naIts Kj% 2 +guesthouse 'gesthaUs K6% 2 +guesthouses 'gesthaUzIz Kj% 3 +guestroom 'gestrum K6% 2 +guestrooms 'gestrumz Kj% 2 +guests gests Kj% 1 +guffaw g@'fO I0%,K6% 2 +guffawed g@'fOd Ic%,Id% 2 +guffawing g@'fOIN Ib$ 3 +guffaws g@'fOz Ia%,Kj% 2 +guidance 'gaIdns L@% 2 +guide gaId H2%,K6% 16A,15A,15B +guidebook 'gaIdbUk K6% 2 +guidebooks 'gaIdbUks Kj% 2 +guided 'gaIdId Hc%,Hd% 26A,15A,15B +guideline 'gaIdlaIn K6% 2 +guidelines 'gaIdlaInz Kj% 2 +guides gaIdz Ha%,Kj% 16A,15A,15B +guiding 'gaIdIN Hb% 26A,15A,15B +guild gIld K6% 1 +guilder 'gIld@R K6$ 2 +guilders 'gIld@z Kj$ 2 +guildhall 'gIldhOl K6% 2 +guildhalls 'gIldhOlz Kj$ 2 +guilds gIldz Kj% 1 +guile gaIl L@% 1 +guileful 'gaIlf@l OA% 2 +guileless 'gaIl+l@s OA% 2 +guillemot 'gIlIm0t K6$ 3 +guillemots 'gIlIm0ts Kj$ 3 +guillotine 'gIl@tin H2%,K6% 36A +guillotined 'gIl@tind Hc%,Hd% 36A +guillotines 'gIl@tinz Ha%,Kj% 36A +guillotining 'gIl@tinIN Hb% 46A +guilt gIlt L@% 1 +guiltier 'gIltI@R Or% 3 +guiltiest 'gIltIIst Os% 3 +guiltily 'gIltIlI Pu% 3 +guiltiness 'gIltIn@s L@% 3 +guiltless 'gIltl@s OA% 2 +guilty 'gIltI OD% 2 +guinea 'gInI K6% 2 +guinea-fowl 'gInI-faUl K9% 3 +guinea-pig 'gInI-pIg K6% 3 +guinea-pigs 'gInI-pIgz Kj% 3 +guineas 'gInIz Kj% 2 +guise gaIz K6% 1 +guises 'gaIzIz Kj% 2 +guitar gI'tAR K6% 2 +guitarist gI'tArIst K6% 3 +guitarists gI'tArIsts Kj% 3 +guitars gI'tAz Kj% 2 +gulch gVltS K7$ 1 +gulches 'gVltSIz Kj$ 2 +gulden 'gUld@n K6$ 2 +guldens 'gUld@nz Kj$ 2 +gulf gVlf K6% 1 +gulfs gVlfs Kj% 1 +gull gVl H0%,K6% 16A,15A +gulled gVld Hc%,Hd% 16A,15A +gullet 'gVlIt K6% 2 +gullets 'gVlIts Kj% 2 +gullibility ,gVl@'bIlItI L@% 5 +gullible 'gVlIbl OA% 3 +gullies 'gVlIz Kj% 2 +gulling 'gVlIN Hb% 26A,15A +gulls gVlz Ha%,Kj% 16A,15A +gully 'gVlI K8% 2 +gulp gVlp J0%,K6% 12A,6A,15B +gulped gVlpt Jc%,Jd% 12A,6A,15B +gulping 'gVlpIN Jb% 22A,6A,15B +gulps gVlps Ja%,Kj% 12A,6A,15B +gum gVm H4%,M6% 16A,15A,15B +gumbo 'gVmb@U K6$ 2 +gumboil 'gVmboIl K6% 2 +gumboils 'gVmboIlz Kj% 2 +gumboot 'gVmbut K6% 2 +gumboots 'gVmbuts Kj% 2 +gumbos 'gVmb@Uz Kj$ 2 +gummed gVmd Hc%,Hd% 16A,15A,15B +gummier 'gVmI@R Or$ 3 +gummiest 'gVmIIst Os$ 3 +gumming 'gVmIN Hb% 26A,15A,15B +gummy 'gVmI OD% 2 +gumption 'gVmpSn L@% 2 +gums gVmz Ha%,Mj% 16A,15A,15B +gumshoe 'gVmSu K6$ 2 +gumshoes 'gVmSuz Kj$ 2 +gun gVn H4%,K6% 16A,15B +gun-carriage 'gVn-k&rIdZ K6% 3 +gun-carriages 'gVn-k&rIdZIz Kj% 4 +gunboat 'gVnb@Ut K6% 2 +gunboats 'gVnb@Uts Kj% 2 +guncotton 'gVnk0tn L@$ 3 +gundog 'gVnd0g K6% 2 +gundogs 'gVnd0gz Kj% 2 +gunfire 'gVnfaI@R L@% 2 +gunman 'gVnm@n Ki% 2 +gunmen 'gVnm@n Kj% 2 +gunmetal 'gVnmetl L@% 3 +gunned gVnd Hc%,Hd% 16A,15B +gunner 'gVn@R K6% 2 +gunners 'gVn@z Kj% 2 +gunnery 'gVn@rI L@% 3 +gunning 'gVnIN Hb% 26A,15B +gunny 'gVnI L@$ 2 +gunplay 'gVnpleI L@% 2 +gunpoint 'gVnpoInt Ki% 2 +gunpowder 'gVnpaUd@R L@% 3 +gunroom 'gVnrum K6% 2 +gunrooms 'gVnrumz Kj% 2 +gunrunner 'gVnrVn@R K6% 3 +gunrunners 'gVnrVn@z Kj% 3 +gunrunning 'gVnrVnIN L@% 3 +guns gVnz Ha%,Kj% 16A,15B +gunshot 'gVnS0t M6% 2 +gunshots 'gVnS0ts Mj% 2 +gunsmith 'gVnsmIT K6% 2 +gunsmiths 'gVnsmITs Kj% 2 +gunwale 'gVnl K6$ 2 +gunwales 'gVnlz Kj$ 2 +gurgle 'g3gl I2%,M6% 2 +gurgled 'g3gld Ic%,Id% 2 +gurgles 'g3glz Ia%,Mj% 2 +gurgling 'g3glIN Ib% 2 +guru 'gUru K6% 2 +gurus 'gUruz Kj% 2 +gush gVS I1%,K7% 12A,2C,3A +gushed gVSt Ic%,Id% 12A,2C,3A +gusher 'gVS@R K6$ 2 +gushers 'gVS@z Kj$ 2 +gushes 'gVSIz Ia%,Kj% 22A,2C,3A +gushing 'gVSIN Ib%,OA% 22A,2C,3A +gushingly 'gVSINlI Pu% 3 +gusset 'gVsIt K6% 2 +gusseted 'gVsItId OA% 3 +gussets 'gVsIts Kj% 2 +gust gVst K6% 1 +gustation gV'steISn L@$ 3 +gustier 'gVstI@R Or$ 3 +gustiest 'gVstIIst Os$ 3 +gusto 'gVst@U L@% 2 +gusts gVsts Kj% 1 +gusty 'gVstI OD% 2 +gut gVt H4%,M6% 16A +gutless 'gVtl@s OA% 2 +guts gVts Ha%,Mj% 16A +gutta-percha ,gVt@-'p3tS@ L@$ 4 +gutted 'gVtId Hc%,Hd% 26A +gutter 'gVt@R I0%,K6% 22A +guttered 'gVt@d Ic%,Id% 22A +guttering 'gVt@rIN Ib% 32A +gutters 'gVt@z Ia%,Kj% 22A +guttersnipe 'gVt@snaIp K6% 3 +guttersnipes 'gVt@snaIps Kj% 3 +gutting 'gVtIN Hb% 26A +guttural 'gVt@r@l K6%,OA% 3 +gutturally 'gVt@r@lI Pu% 4 +gutturals 'gVt@r@lz Kj% 3 +guvnor 'gVvn@R K6$ 2 +guvnors 'gVvn@z Kj$ 2 +guy gaI H0$,K6% 16A +guyed gaId Hc$,Hd$ 16A +guying 'gaIIN Hb$ 26A +guys gaIz Ha$,Kj% 16A +guzzle 'gVzl J2% 22A,6A,15B +guzzled 'gVzld Jc%,Jd% 22A,6A,15B +guzzler 'gVzl@R K6% 2 +guzzlers 'gVzl@z Kj% 2 +guzzles 'gVzlz Ja% 22A,6A,15B +guzzling 'gVzlIN Jb% 22A,6A,15B +gybe dZaIb J2$ 12A,6A +gybed dZaIbd Jc$,Jd$ 12A,6A +gybes dZaIbz Ja$ 12A,6A +gybing 'dZaIbIN Jb$ 22A,6A +gym dZIm K6% 1 +gymkhana dZIm'kAn@ K6% 3 +gymkhanas dZIm'kAn@z Kj% 3 +gymnasium dZIm'neIzI@m K6% 4 +gymnasiums dZIm'neIzI@mz Kj% 4 +gymnast 'dZImn&st K6% 2 +gymnastic dZIm'n&stIk OA% 3 +gymnastics dZIm'n&stIks Lk% 3 +gymnasts 'dZImn&sts Kj% 2 +gyms dZImz Kj% 1 +gymslip 'dZImslIp K6% 2 +gymslips 'dZImslIps Kj% 2 +gynaecological ,gaInIk@'l0dZIkl OA% 6 +gynaecologist ,gaInI'k0l@dZIst K6% 5 +gynaecologists ,gaInI'k0l@dZIsts Kj% 5 +gynaecology ,gaInI'k0l@dZI L@% 5 +gynecological ,gaInIk@'l0dZIkl OA$ 6 +gynecologist ,gaInI'k0l@dZIst K6$ 5 +gynecologists ,gaInI'k0l@dZIsts Kj$ 5 +gyp dZIp H4$,K6% 16A +gypped dZIpt Hc$,Hd$ 16A +gypping 'dZIpIN Hb$ 26A +gyps dZIps Ha$,Kj$ 16A +gypsum 'dZIps@m L@% 2 +gyrate ,dZaI'reIt I2% 2 +gyrated ,dZaI'reItId Ic%,Id% 3 +gyrates ,dZaI'reIts Ia% 2 +gyrating ,dZaI'reItIN Ib% 3 +gyration ,dZaI'reISn M6% 3 +gyrations ,dZaI'reISnz Mj% 3 +gyro 'dZaI@r@U K6$ 2 +gyros 'dZaI@r@Uz Kj$ 2 +gyroscope 'dZaIr@sk@Up K6% 3 +gyroscopes 'dZaIr@sk@Ups Kj% 3 +gyroscopic ,dZaIr@'sk0pIk OA% 4 +h eItS Ki$ 1 +h'm h@m I4$,W-$ 1 +h'mmed h@md Ic$,Id$ 1 +h'mming 'h@mIN Ib$ 1 +h'ms h@mz Ia$ 1 +h's 'eItSIz Kj$ 2 +ha hA W-% 1 +ha'p'orth 'heIp@T K6$ 2 +ha'p'orths 'heIp@Ts Kj$ 2 +ha'pennies 'heIpnIz Kj% 2 +ha'penny 'heIpnI K8% 2 +habeas corpus ,heIbI@s 'kOp@s L@% 4 +haberdasher 'h&b@d&S@R K6% 4 +haberdashers 'h&b@d&S@z Kj% 4 +haberdashery ,h&b@'d&S@rI L@% 5 +habiliments h@'bIlIm@nts Kj$ 4 +habit 'h&bIt M6% 2 +habitable 'h&bIt@bl OA% 4 +habitat 'h&bIt&t K6% 3 +habitation ,h&bI'teISn M6% 4 +habitations ,h&bI'teISnz Mj% 4 +habitats 'h&bIt&ts Kj% 3 +habits 'h&bIts Mj% 2 +habitu_e h@'bItSUeI K6% 4 +habitu_es h@'bItSUeIz Kj% 4 +habitual h@'bItSU@l OA% 4 +habitually h@'bItSU@lI Pu% 5 +habituate h@'bItSUeIt H2$ 414 +habituated h@'bItSUeItId Hc$,Hd% 514 +habituates h@'bItSUeIts Ha$ 414 +habituating h@'bItSUeItIN Hb$ 514 +habituation h@,bItSU'eISn L@% 5 +habitude 'h&bItjud L@$ 3 +hacienda ,h&sI'end@ K6$ 4 +haciendas ,h&sI'end@z Kj$ 4 +hack h&k J0%,K6% 12A,2C,3A,6A,15A,15B +hacked h&kt Jc%,Jd% 12A,2C,3A,6A,15A,15B +hacking 'h&kIN Jb% 22A,2C,3A,6A,15A,15B +hackles 'h&klz Kj% 2 +hackney 'h&knI K6$ 2 +hackneyed 'h&knId OA% 2 +hackneys 'h&knIz Kj$ 2 +hacks h&ks Ja%,Kj% 12A,2C,3A,6A,15A,15B +hacksaw 'h&ksO K6% 2 +hacksaws 'h&ksOz Kj% 2 +had h&d Gc*,Gd*,Jc*,Jd* 16A,6B,7B,15B,18C,19B,24B,24C +haddock 'h&d@k M9% 2 +hadn't 'h&dnt Gg% 2 +haematite 'hem@taIt K6$ 3 +haematites 'hem@taIts Kj$ 3 +haemoglobin ,him@'gl@UbIn L@% 4 +haemophilia ,him@'fIlI@ L@% 5 +haemophiliac ,him@'fIlI&k K6% 5 +haemophiliacs ,him@'fIlI&ks Kj% 5 +haemorrhage 'hem@rIdZ M6% 3 +haemorrhages 'hem@rIdZIz Mj% 4 +haemorrhoids 'hem@roIdz Kj% 3 +haft hAft K6$ 1 +hafts hAfts Kj$ 1 +hag h&g K6% 1 +hag-ridden 'h&g-rIdn OA$ 3 +haggard 'h&g@d OA% 2 +haggis 'h&gIs K7% 2 +haggises 'h&gIsIz Kj% 3 +haggle 'h&gl I2% 22A,3A +haggled 'h&gld Ic%,Id% 22A,3A +haggles 'h&glz Ia% 22A,3A +haggling 'h&glIN Ib% 22A,3A +hagiologies ,h&gI'0l@dZIz Kj$ 5 +hagiology ,h&gI'0l@dZI K8$ 5 +hags h&gz Kj% 1 +haha 'hAhA K6$ 2 +hahas 'hAhAz Kj$ 2 +hail heIl J0%,M6% 12C,3A,6A,15B,16B,23 +hailed heIld Jc%,Jd% 12C,3A,6A,15B,16B,23 +hailing 'heIlIN Jb% 22C,3A,6A,15B,16B,23 +hails heIlz Ja%,Mj% 12C,3A,6A,15B,16B,23 +hailstone 'heIlst@Un K6% 2 +hailstones 'heIlst@Unz Kj% 2 +hailstorm 'heIlstOm K6% 2 +hailstorms 'heIlstOmz Kj% 2 +hair he@R M6% 1 +hair's-breadth 'he@z-bretT K6% 2 +hair's-breadths 'he@z-bretTs Kj% 2 +hair-breadth 'he@-bretT K6$ 2 +hair-breadths 'he@-bretTs Kj$ 2 +hair-dye 'he@-daI K6% 2 +hair-dyes 'he@-daIz Kj% 2 +hair-oil 'he@r-oIl M6% 2 +hair-oils 'he@r-oIlz Mj% 2 +hair-raising 'he@-reIzIN OA% 3 +hair-shirt 'he@-S3t K6% 2 +hair-shirts 'he@-S3ts Kj% 2 +hair-slide 'he@-slaId K6% 2 +hair-slides 'he@-slaIdz Kj% 2 +hair-trigger 'he@-trIg@R K6$ 3 +hair-triggers 'he@-trIg@z Kj$ 3 +hairbrush 'he@brVS K7% 2 +hairbrushes 'he@brVSIz Kj% 3 +haircloth 'he@kl0T K6$ 2 +haircloths 'he@kl0Ts Kj$ 2 +haircut 'he@kVt K6% 2 +haircuts 'he@kVts Kj% 2 +hairdo 'he@du K6% 2 +hairdos 'he@duz Kj% 2 +hairdresser 'he@dres@R K6% 3 +hairdressers 'he@dres@z Kj% 3 +hairdressing 'he@dresIN L@% 3 +hairier 'he@rI@R Or% 3 +hairiest 'he@rIIst Os% 3 +hairiness 'he@rIn@s L@% 3 +hairless 'he@l@s OA% 2 +hairlike 'he@laIk OA% 2 +hairline 'he@laIn K6% 2 +hairlines 'he@laInz Kj% 2 +hairnet 'he@net K6% 2 +hairnets 'he@nets Kj% 2 +hairpiece 'he@pis K6% 2 +hairpieces 'he@pisIz Kj% 3 +hairpin 'he@pIn K6% 2 +hairpins 'he@pInz Kj% 2 +hairs he@z Mj% 1 +hairsplitting 'he@splItIN L@%,OA$ 3 +hairspring 'he@sprIN K6$ 2 +hairsprings 'he@sprINz Kj$ 2 +hairstyle 'he@staIl K6% 2 +hairstyles 'he@staIlz Kj% 2 +hairstylist 'he@staIlIst K6% 3 +hairstylists 'he@staIlIsts Kj% 3 +hairy 'he@rI OD% 2 +hake heIk M9% 1 +halberd 'h&lb@d K6$ 2 +halberdier ,h&lb@'dI@R K6$ 4 +halberdiers ,h&lb@'dI@z Kj$ 4 +halberds 'h&lb@dz Kj$ 2 +halcyon 'h&lsI@n OA% 3 +hale heIl OA% 1 +half hAf Ki* 1 +half-baked hAf-'beIkt OA% 2 +half-blood 'hAf-blVd K6$ 2 +half-bloods 'hAf-blVdz Kj$ 2 +half-breed 'hAf-brid K6% 2 +half-breeds 'hAf-bridz Kj% 2 +half-brother 'hAf-brVD@R K6% 3 +half-brothers 'hAf-brVD@z Kj% 3 +half-caste 'hAf-kAst K6% 2 +half-castes 'hAf-kAsts Kj% 2 +half-crazed hAf-'kreIzd OA% 2 +half-crown hAf-'kraUn K6% 2 +half-crowns hAf-'kraUnz Kj% 2 +half-hardy hAf-'hAdI OA$ 3 +half-hearted 'hAf-hAtId OA% 3 +half-heartedly hAf-'hAtIdlI Pu% 4 +half-holiday hAf-'h0l@deI K6% 4 +half-holidays hAf-'h0l@deIz Kj% 4 +half-hour hAf-'aU@R K6% 3 +half-hourly hAf-'aU@lI OA%,Pu% 4 +half-hours hAf-'aU@z Kj% 3 +half-length hAf-'leNT OA% 2 +half-pay hAf-'peI L@% 2 +half-price hAf-'praIs Pu% 2 +half-seas-over ,hAf-siz-'@Uv@R Op$ 4 +half-sister 'hAf-sIst@R K6% 3 +half-sisters 'hAf-sIst@z Kj% 3 +half-size hAf-'saIz OA% 2 +half-timbered hAf-'tImb@d OA% 3 +half-time hAf-'taIm L@% 2 +half-track 'hAf-tr&k K6$ 2 +half-tracked 'hAf-tr&kt OA$ 2 +half-tracks 'hAf-tr&ks Kj$ 2 +half-truth 'hAf-truT K6% 2 +half-truths 'hAf-truDz Kj% 2 +half-volley hAf-'v0lI K6% 3 +half-volleys hAf-'v0lIz Kj% 3 +half-yearly hAf-'j3lI OA%,Pu% 3 +halfback 'hAfb&k K6% 2 +halfbacks 'hAfb&ks Kj% 2 +halfpennies 'heIpnIz Kj% 2 +halfpenny 'heIpnI K8% 2 +halfpennyworth 'heIpnIw3T K6$ 3 +halfpennyworths 'heIpnIw3Ts Kj$ 3 +halftone 'hAft@Un K6% 2 +halftones 'hAft@Unz Kj% 2 +halfway hAf'weI OA%,Pu% 2 +halfwit 'hAfwIt K6% 2 +halfwits 'hAfwIts Kj% 2 +halfwitted 'hAfwItId OA% 3 +halibut 'h&lIb@t M9% 3 +halitosis ,h&lI't@UsIs L@% 4 +hall hOl K6% 1 +hall-stand 'hOl-st&nd K6% 2 +hall-stands 'hOl-st&ndz Kj% 2 +hallelujah ,h&lI'luj@ K6%,W-% 4 +hallelujahs ,h&lI'luj@z Kj% 4 +halliard 'h&lj@d K6$ 2 +halliards 'h&lj@dz Kj$ 2 +hallmark 'hOlmAk K6% 2 +hallmarks 'hOlmAks Kj% 2 +hallo h@'l@U W-$ 2 +halloo h@'lu I0$,K6$,W-$ 2 +hallooed h@'lud Ic$,Id$ 2 +hallooing h@'luIN Ib$ 3 +halloos h@'luz Ia$,Kj$ 2 +hallow 'h&l@U H0%,K6$ 26A +hallowed 'h&l@Ud Hc%,Hd% 26A +hallowing 'h&l@UIN Hb% 36A +hallows 'h&l@Uz Ha%,Kj$ 26A +halls hOlz Kj% 1 +hallucination h@,lusI'neISn M6% 5 +hallucinations h@,lusI'neISnz Mj% 5 +hallucinatory h@'lusIn@trI OA% 5 +hallucinogenic h@,lusIn@'dZenIk OA% 6 +halma 'h&lm@ L@$ 2 +halo 'heIl@U K6% 2 +haloes 'heIl@Uz Kj% 2 +halos 'heIl@Uz Kj% 2 +halt hOlt J0%,K6%,OA% 12A,2C,6A +halted 'hOltId Jc%,Jd% 22A,2C,6A +halter 'hOlt@R K6% 2 +halters 'hOlt@z Kj% 2 +halting 'hOltIN Jb% 22A,2C,6A +haltingly 'hOltINlI Pu% 3 +halts hOlts Ja%,Kj% 12A,2C,6A +halve hAv H2% 16A +halved hAvd Hc%,Hd% 16A +halves hAvz Ha%,Kj% 16A +halving 'hAvIN Hb% 26A +halyard 'h&lj@d K6$ 2 +halyards 'h&lj@dz Kj$ 2 +ham h&m J4%,M6% 12A,6A,15B +ham-fisted h&m-'fIstId OA% 3 +ham-handed h&m-'h&ndId OA% 3 +hamadryad ,h&m@'draI@d K6$ 4 +hamadryads ,h&m@'draI@dz Kj$ 4 +hamburger 'h&mb3g@R K6% 3 +hamburgers 'h&mb3g@z Kj% 3 +hamlet 'h&mlIt K6% 2 +hamlets 'h&mlIts Kj% 2 +hammed h&md Jc%,Jd% 12A,6A,15B +hammer 'h&m@R J0%,K6% 22A,2C,3A,6A,15B,22 +hammered 'h&m@d Jc%,Jd% 22A,2C,3A,6A,15B,22 +hammering 'h&m@rIN Jb% 32A,2C,3A,6A,15B,22 +hammers 'h&m@z Ja%,Kj% 22A,2C,3A,6A,15B,22 +hamming 'h&mIN Jb% 22A,6A,15B +hammock 'h&m@k K6% 2 +hammocks 'h&m@ks Kj% 2 +hamper 'h&mp@R H0%,K6% 26A +hampered 'h&mp@d Hc%,Hd% 26A +hampering 'h&mp@rIN Hb% 36A +hampers 'h&mp@z Ha%,Kj% 26A +hams h&mz Ja%,Mj% 12A,6A,15B +hamster 'h&mst@R K6% 2 +hamsters 'h&mst@z Kj% 2 +hamstring 'h&mstrIN H5%,K6% 26A +hamstringing 'h&mstrININ Hb$ 36A +hamstrings 'h&mstrINz Ha%,Kj% 26A +hamstrung 'h&mstrVN Hc%,Hd% 26A +hand h&nd H0%,K6* 112A,13A,15A,15B +hand-barrow 'h&nd-b&r@U K6% 3 +hand-barrows 'h&nd-b&r@Uz Kj% 3 +hand-grenade 'h&nd-grIneId K6% 3 +hand-grenades 'h&nd-grIneIdz Kj% 3 +hand-luggage 'h&nd-lVgIdZ L@% 3 +hand-me-down 'h&nd-mI-daUn K6% 3 +hand-me-downs 'h&nd-mI-daUnz Kj% 3 +hand-organ 'h&nd-Og@n K6$ 3 +hand-organs 'h&nd-Og@nz Kj$ 3 +hand-out 'h&nd-aUt K6% 2 +hand-outs 'h&nd-aUts Kj% 2 +hand-picked h&nd-'pIkt OA% 2 +handbag 'h&ndb&g K6% 2 +handbags 'h&ndb&gz Kj% 2 +handbill 'h&ndbIl K6% 2 +handbills 'h&ndbIlz Kj% 2 +handbook 'h&ndbUk K6% 2 +handbooks 'h&ndbUks Kj% 2 +handbrake 'h&ndbreIk K6% 2 +handbrakes 'h&ndbreIks Kj% 2 +handcart 'h&ndkAt K6% 2 +handcarts 'h&ndkAts Kj% 2 +handclap 'h&ndkl&p K6% 2 +handclaps 'h&ndkl&ps Kj% 2 +handcuff 'h&ndkVf H0%,K6% 2 +handcuffed 'h&ndkVft Hc%,Hd% 2 +handcuffing 'h&ndkVfIN Hb% 3 +handcuffs 'h&ndkVfs Ha%,Kj% 2 +handed 'h&ndId Hc%,Hd% 212A,13A,15A,15B +handful 'h&ndfUl K6% 2 +handfuls 'h&ndfUlz Kj% 2 +handhold 'h&ndh@Uld K6% 2 +handholds 'h&ndh@Uldz Kj% 2 +handicap 'h&ndIk&p H4%,K6% 36A +handicapped 'h&ndIk&pt Hc%,Hd% 36A +handicapping 'h&ndIk&pIN Hb% 46A +handicaps 'h&ndIk&ps Ha%,Kj% 36A +handicraft 'h&ndIkrAft M6% 3 +handicrafts 'h&ndIkrAfts Mj% 3 +handier 'h&ndI@R Or% 3 +handiest 'h&ndIIst Os% 3 +handily 'h&ndIlI Pu% 3 +handiness 'h&ndIn@s L@% 3 +handing 'h&ndIN Hb% 212A,13A,15A,15B +handiwork 'h&ndIw3k M6% 3 +handiworks 'h&ndIw3ks Mj$ 3 +handkerchief 'h&Nk@tSIf K6% 3 +handkerchiefs 'h&Nk@tSIfs Kj% 3 +handle 'h&ndl H2%,K6% 26A +handlebar 'h&ndlbAR K6% 3 +handlebars 'h&ndlbAz Kj% 3 +handled 'h&ndld Hc%,Hd% 26A +handler 'h&ndl@R K6% 2 +handlers 'h&ndl@z Kj% 2 +handles 'h&ndlz Ha%,Kj% 26A +handling 'h&ndlIN Hb% 26A +handmade h&nd'meId OA% 2 +handmaid 'h&ndmeId K6% 2 +handmaids 'h&ndmeIdz Kj% 2 +handover 'h&nd@Uv@R K6% 3 +handovers 'h&nd@Uv@z Kj$ 3 +handrail 'h&ndreIl K6% 2 +handrails 'h&ndreIlz Kj% 2 +hands h&ndz Ha%,Kj* 112A,13A,15A,15B +handsaw 'h&ndsO K6$ 2 +handsaws 'h&ndsOz Kj$ 2 +handshake 'h&ndSeIk K6% 2 +handshakes 'h&ndSeIks Kj% 2 +handshaking 'h&ndSeIkIN L@% 3 +handsome 'h&ns@m OA% 2 +handsomely 'h&ns@mlI Pu% 3 +handsomest 'h&ns@mIst Os% 3 +handstand 'h&ndst&nd K6% 2 +handstands 'h&ndst&ndz Kj% 2 +handwork 'h&ndw3k L@% 2 +handwriting 'h&ndraItIN L@% 3 +handy 'h&ndI OD% 2 +handyman 'h&ndIm&n Ki% 3 +handymen 'h&ndImen Kj% 3 +hang h&N J0%,Ki% 12A,2B,2C,3A,6A,15A,15B +hang-up 'h&N-Vp K6% 2 +hang-ups 'h&N-Vps Kj% 2 +hangar 'h&N@R K6% 2 +hangars 'h&N@z Kj% 2 +hangdog 'h&Nd0g Oq% 2 +hanged h&Nd Jc%,Jd% 12A,2B,2C,3A,6A,15A,15B +hanger 'h&N@R K6% 2 +hanger-on ,h&N@r-'0n Ki% 3 +hangers 'h&N@z Kj% 2 +hangers-on ,h&N@z-'0n Kj% 3 +hanging 'h&NIN Jb%,M6% 22A,2B,2C,3A,6A,15A,15B +hangings 'h&NINz Mj% 2 +hangman 'h&Nm@n Ki% 2 +hangmen 'h&Nm@n Kj% 2 +hangnail 'h&NneIl K6$ 2 +hangnails 'h&NneIlz Kj$ 2 +hangover 'h&N@Uv@R K6% 3 +hangovers 'h&N@Uv@z Kj% 3 +hangs h&Nz Ja% 12A,2B,2C,3A,6A,15A,15B +hank h&Nk K6$ 1 +hanker 'h&Nk@R I0% 23A +hankered 'h&Nk@d Ic%,Id% 23A +hankering 'h&Nk@rIN Ib%,K6% 33A +hankerings 'h&Nk@rINz Kj% 3 +hankers 'h&Nk@z Ia% 23A +hankies 'h&NkIz Kj% 2 +hanks h&Nks Kj$ 1 +hanky 'h&NkI K8% 2 +hanky-panky ,h&NkI-'p&NkI L@% 4 +hansom 'h&ns@m K6$ 2 +hansoms 'h&ns@mz Kj$ 2 +hap h&p I4$,K6$ 1 +haphazard h&p'h&z@d OA%,Pu% 3 +haphazardly h&p'h&z@dlI Pu% 4 +hapless 'h&plIs OA% 2 +haply 'h&plI Pu$ 2 +happed h&pt Ic$,Id$ 1 +happen 'h&p@n I0% 22A,3A,4E +happened 'h&p@nd Ic%,Id% 22A,3A,4E +happening 'h&p@nIN Ib%,K6% 32A,3A,4E +happenings 'h&p@nINz Kj% 3 +happens 'h&p@nz Ia% 22A,3A,4E +happier 'h&pI@R Or% 3 +happiest 'h&pIIst Os% 3 +happily 'h&pIlI Pu% 3 +happiness 'h&pIn@s L@% 3 +happing 'h&pIN Ib$ 2 +happy 'h&pI OD% 2 +happy-go-lucky ,h&pI-g@U-'lVkI OA% 5 +haps h&ps Ia$,Kj$ 1 +hara-kiri ,h&r@-'kIrI L@$ 4 +harangue h@'r&N J2%,K6% 22A,6A +harangued h@'r&Nd Jc%,Jd% 22A,6A +harangues h@'r&Nz Ja%,Kj% 22A,6A +haranguing h@'r&NIN Jb% 32A,6A +harass 'h&r@s H1% 26A +harassed 'h&r@st Hc%,Hd% 26A +harasses 'h&r@sIz Ha% 36A +harassing 'h&r@sIN Hb% 36A +harassment 'h&r@sm@nt L@% 3 +harbinger 'hAbIndZ@R K6$ 3 +harbingers 'hAbIndZ@z Kj$ 3 +harbour 'hAb@R J0%,K6% 22A,6A +harbourage 'hAb@rIdZ K6$ 3 +harbourages 'hAb@rIdZIz Kj$ 4 +harboured 'hAb@d Jc%,Jd% 22A,6A +harbouring 'hAb@rIN Jb% 32A,6A +harbours 'hAb@z Ja%,Kj% 22A,6A +hard hAd OC*,Pu* 1 +hard-baked hAd-'beIkt OA% 2 +hard-bitten hAd-'bItn OA% 3 +hard-boiled hAd-'boIld OA% 2 +hard-headed hAd-'hedId OA% 3 +hardback 'hAdb&k K6% 2 +hardbacked 'hAdb&kt OA% 2 +hardbacks 'hAdb&ks Kj% 2 +hardboard 'hAdbOd L@% 2 +hardbound 'hAdbaUnd OA% 2 +hardcover 'hAdkVv@R K6% 3 +hardcovered 'hAdkVv@d OA$ 3 +hardcovers 'hAdkVv@z Kj% 3 +harden 'hAdn J0% 22A,2C,6A,15B +hardened 'hAdnd Jc%,Jd% 22A,2C,6A,15B +hardening 'hAdnIN Jb% 32A,2C,6A,15B +hardens 'hAdnz Ja% 22A,2C,6A,15B +harder 'hAd@R Or% 2 +hardest 'hAdIst Os% 2 +hardhearted hAd'hAtId OA% 3 +hardhitting hAd'hItIN OA% 3 +hardier 'hAdI@R Or% 3 +hardiest 'hAdIIst Os% 3 +hardihood 'hAdIhUd L@$ 3 +hardiness 'hAdIn@s L@% 3 +hardliner hAd'laIn@R K6% 3 +hardliners hAd'laIn@z Kj% 3 +hardly 'hAdlI Pu% 2 +hardness 'hAdn@s L@% 2 +hardship 'hAdSIp M6% 2 +hardships 'hAdSIps Mj% 2 +hardtop 'hAdt0p K6$ 2 +hardtops 'hAdt0ps Kj$ 2 +hardware 'hAdwe@R L@% 2 +hardwood 'hAdwUd L@% 2 +hardworking hAd'w3kIN OA% 3 +hardy 'hAdI OD% 2 +hare he@R I2%,K6% 12C +harebell 'he@bel K6$ 2 +harebells 'he@belz Kj$ 2 +harebrained 'he@breInd OA% 2 +hared he@d Ic%,Id% 12C +harelip 'he@lIp K6% 2 +harelips 'he@lIps Kj$ 2 +harem 'hArim K6% 2 +harems 'hArimz Kj% 2 +hares he@z Ia%,Kj% 12C +haricot 'h&rIk@U K6% 3 +haricots 'h&rIk@Uz Kj% 3 +haring 'he@rIN Ib% 22C +hark hAk I0% 1 +harked hAkt Ic%,Id% 1 +harking 'hAkIN Ib% 2 +harks hAks Ia% 1 +harlequin 'hAlIkwIn K6% 3 +harlequinade ,hAlIkwI'neId K6$ 4 +harlequinades ,hAlIkwI'neIdz Kj$ 4 +harlequins 'hAlIkwInz Kj% 3 +harlot 'hAl@t K6% 2 +harlots 'hAl@ts Kj% 2 +harm hAm H0%,L@% 16A +harmattan ,hAm@'t&n K6$ 3 +harmattans ,hAm@'t&nz Kj$ 3 +harmed hAmd Hc%,Hd% 16A +harmful 'hAmf@l OA% 2 +harmfully 'hAmf@lI Pu% 3 +harming 'hAmIN Hb% 26A +harmless 'hAml@s OA% 2 +harmlessly 'hAml@slI Pu% 3 +harmonic hA'm0nIk K6% 3 +harmonica hA'm0nIk@ K6% 4 +harmonicas hA'm0nIk@z Kj% 4 +harmonics hA'm0nIks Kj% 3 +harmonies 'hAm@nIz Mj% 3 +harmonious hA'm@UnI@s OA% 4 +harmoniously hA'm@UnI@slI Pu% 5 +harmonium hA'm@UnI@m K6% 4 +harmoniums hA'm@UnI@mz Kj% 4 +harmonization ,hAm@naI'zeISn K6% 5 +harmonizations ,hAm@naI'zeISnz Kj$ 5 +harmonize 'hAm@naIz J2% 32A,2C,6A,14 +harmonized 'hAm@naIzd Jc%,Jd% 32A,2C,6A,14 +harmonizes 'hAm@naIzIz Ja% 42A,2C,6A,14 +harmonizing 'hAm@naIzIN Jb% 42A,2C,6A,14 +harmony 'hAm@nI M8% 3 +harms hAmz Ha% 16A +harness 'hAn@s H1%,K7% 26A +harnessed 'hAn@st Hc%,Hd% 26A +harnesses 'hAn@sIz Ha%,Kj% 36A +harnessing 'hAn@sIN Hb% 36A +harp hAp I0%,K6% 1 +harped hApt Ic%,Id% 1 +harper 'hAp@R K6% 2 +harpers 'hAp@z Kj% 2 +harpies 'hApIz Kj% 2 +harping 'hApIN Ib% 2 +harpist 'hApIst K6% 2 +harpists 'hApIsts Kj$ 2 +harpoon hA'pun H0%,K6% 2 +harpooned hA'pund Hc%,Hd% 2 +harpooning hA'punIN Hb% 3 +harpoons hA'punz Ha%,Kj% 2 +harps hAps Ia%,Kj% 1 +harpsichord 'hApsIkOd K6% 3 +harpsichordist 'hApsIkOdIst K6% 4 +harpsichordists 'hApsIkOdIsts Kj% 4 +harpsichords 'hApsIkOdz Kj% 3 +harpy 'hApI K8% 2 +harridan 'h&rId@n K6$ 3 +harridans 'h&rId@nz Kj$ 3 +harried 'h&rId Hc%,Hd% 26A +harrier 'h&rI@R K6% 3 +harriers 'h&rI@z Kj% 3 +harries 'h&rIz Ha% 26A +harrow 'h&r@U H0%,K6% 26A +harrowed 'h&r@Ud Hc%,Hd% 26A +harrowing 'h&r@UIN Hb% 36A +harrows 'h&r@Uz Ha%,Kj% 26A +harry 'h&rI H3% 26A +harrying 'h&rIIN Hb% 36A +harsh hAS OC% 1 +harsher 'hAS@R Or% 2 +harshest 'hASIst Os% 2 +harshly 'hASlI Pu% 2 +harshness 'hASn@s L@% 2 +hart hAt K6$ 1 +harts hAts Kj$ 1 +harum-scarum ,he@r@m-'ske@r@m K6$,OA$ 4 +harum-scarums ,he@r@m-'ske@r@mz Kj$ 4 +harvest 'hAvIst H0%,K6% 26A +harvested 'hAvIstId Hc%,Hd% 36A +harvester 'hAvIst@R K6% 3 +harvesters 'hAvIst@z Kj% 3 +harvesting 'hAvIstIN Hb% 36A +harvests 'hAvIsts Ha%,Kj% 26A +has h&z Ga*,Ja* 16A,6B,7B,15B,18C,19B,24B,24C +has-been 'h&z-bin K6% 2 +has-beens 'h&z-binz Kj$ 2 +hash h&S H1%,L@% 16A,15B +hashed h&St Hc%,Hd% 16A,15B +hashes 'h&SIz Ha% 26A,15B +hashing 'h&SIN Hb% 26A,15B +hashish 'h&SiS L@% 2 +hasn't 'h&znt Gg% 2 +hasp hAsp K6$ 1 +hasps hAsps Kj$ 1 +hassle 'h&sl J2%,K6% 22A,3A,6A +hassled 'h&sld Jc%,Jd% 22A,3A,6A +hassles 'h&slz Ja%,Kj% 22A,3A,6A +hassling 'h&slIN Jb% 22A,3A,6A +hassock 'h&s@k K6% 2 +hassocks 'h&s@ks Kj% 2 +hast h&st Ge$ 1 +haste heIst L@% 1 +hasten 'heIsn J0% 22A,2C,4A,6A +hastened 'heIsnd Jc%,Jd% 22A,2C,4A,6A +hastening 'heIsnIN Jb% 32A,2C,4A,6A +hastens 'heIsnz Ja% 22A,2C,4A,6A +hastier 'heIstI@R Or$ 3 +hastiest 'heIstIIst Os$ 3 +hastily 'heIstIlI Pu% 3 +hastiness 'heIstIn@s L@% 3 +hasty 'heIstI OD% 2 +hat h&t K6% 1 +hatband 'h&tb&nd K6$ 2 +hatbands 'h&tb&ndz Kj$ 2 +hatch h&tS J1%,K7% 12A,6A +hatched h&tSt Jc%,Jd% 12A,6A +hatcheries 'h&tS@rIz Kj% 3 +hatchery 'h&tS@rI K8% 3 +hatches 'h&tSIz Ja%,Kj% 22A,6A +hatchet 'h&tSIt K6% 2 +hatchets 'h&tSIts Kj% 2 +hatching 'h&tSIN Jb%,L@% 22A,6A +hatchway 'h&tSweI K6% 2 +hatchways 'h&tSweIz Kj% 2 +hate heIt H2%,M6% 16A,6D,7A,17,19C +hated 'heItId Hc%,Hd% 26A,6D,7A,17,19C +hateful 'heItf@l OA% 2 +hatefully 'heItf@lI Pu% 3 +hates heIts Ha%,Mj% 16A,6D,7A,17,19C +hatful 'h&tfUl K6% 2 +hatfuls 'h&tfUlz Kj% 2 +hath h&T Ge$ 1 +hating 'heItIN Hb% 26A,6D,7A,17,19C +hatless 'h&tl@s OA% 2 +hatpin 'h&tpIn K6% 2 +hatpins 'h&tpInz Kj% 2 +hatred 'heItrId M6% 2 +hatreds 'heItrIdz Mj$ 2 +hats h&ts Kj% 1 +hatter 'h&t@R K6% 2 +hatters 'h&t@z Kj% 2 +hauberk 'hOb3k K6$ 2 +hauberks 'hOb3ks Kj$ 2 +haughtier 'hOtI@R Or% 3 +haughtiest 'hOtIIst Os% 3 +haughtily 'hOtIlI Pu% 3 +haughtiness 'hOtIn@s L@% 3 +haughty 'hOtI OD% 2 +haul hOl J0%,K6% 12C,3A,6A,15A,15B +haulage 'hOlIdZ L@% 2 +hauled hOld Jc%,Jd% 12C,3A,6A,15A,15B +haulier 'hOlI@R K6% 3 +hauliers 'hOlI@z Kj% 3 +hauling 'hOlIN Jb% 22C,3A,6A,15A,15B +haulm hOm L@$ 1 +hauls hOlz Ja%,Kj% 12C,3A,6A,15A,15B +haunch hOntS K7% 1 +haunches 'hOntSIz Kj% 2 +haunt hOnt H0%,K6% 16A +haunted 'hOntId Hc%,Hd% 26A +haunting 'hOntIN Hb% 26A +haunts hOnts Ha%,Kj% 16A +hautboy 'h@UboI K6$ 2 +hautboys 'h@UboIz Kj$ 2 +hauteur @U't3R L@$ 2 +have h&v G5*,J5* 16A,6B,7B,15B,18C,19B,24B,24C +haven 'heIvn K6% 2 +haven't 'h&vnt Gg% 2 +havens 'heIvnz Kj% 2 +haversack 'h&v@s&k K6% 3 +haversacks 'h&v@s&ks Kj% 3 +haves h&vz Kj% 1 +having 'h&vIN Gb%,Jb% 26A,6B,7B,15B,18C,19B,24B,24C +havoc 'h&v@k L@% 2 +haw hO I0%,K6% 1 +haw-haw 'hO-hO K6$,W-$ 2 +haw-haws 'hO-hOz Kj$ 2 +hawed hOd Ic$,Id$ 1 +hawing 'hOIN Ib$ 2 +hawk hOk H0%,K6% 16A,15B +hawk-eyed 'hOk-aId OA% 2 +hawked hOkt Hc%,Hd% 16A,15B +hawker 'hOk@R K6% 2 +hawkers 'hOk@z Kj% 2 +hawking 'hOkIN Hb% 26A,15B +hawks hOks Ha%,Kj% 16A,15B +haws hOz Ia$,Kj$ 1 +hawser 'hOz@R K6% 2 +hawsers 'hOz@z Kj% 2 +hawthorn 'hOTOn K6% 2 +hawthorns 'hOTOnz Kj% 2 +hay heI L@% 1 +haycock 'heIk0k K6$ 2 +haycocks 'heIk0ks Kj$ 2 +hayfork 'heIfOk K6% 2 +hayforks 'heIfOks Kj% 2 +haymaker 'heImeIk@R K6% 3 +haymakers 'heImeIk@z Kj% 3 +haymaking 'heImeIkIN L@% 3 +hayrick 'heIrIk K6% 2 +hayricks 'heIrIks Kj% 2 +haystack 'heIst&k K6% 2 +haystacks 'heIst&ks Kj% 2 +haywire 'heIwaI@R L@$,Op% 2 +hazard 'h&z@d H0%,M6% 26A +hazarded 'h&z@dId Hc%,Hd% 36A +hazarding 'h&z@dIN Hb% 36A +hazardous 'h&z@d@s OA% 3 +hazards 'h&z@dz Ha%,Mj% 26A +haze heIz H2$,M6% 1 +hazed heIzd Hc$,Hd$ 1 +hazel 'heIzl M6% 2 +hazels 'heIzlz Mj% 2 +hazes 'heIzIz Ha$,Mj% 2 +hazier 'heIzI@R Or% 3 +haziest 'heIzIIst Os% 3 +hazily 'heIzIlI Pu% 3 +haziness 'heIzIn@s L@% 3 +hazing 'heIzIN Hb% 2 +hazy 'heIzI OD% 2 +he hi Qx* 1 +he'd hid Gf% 1 +he'll hil Gf% 1 +he's hiz Gf% 1 +he-goat 'hi-g@Ut K6% 2 +he-goats 'hi-g@Uts Kj% 2 +he-man 'hi-m&n Ki% 2 +he-men 'hi-men Kj% 2 +head hed J0%,K6* 12C,6A,15B +head-hunter 'hed-hVnt@R K6% 3 +head-hunters 'hed-hVnt@z Kj% 3 +head-on 'hed-0n OA%,Pu% 2 +headache 'hedeIk M6% 2 +headaches 'hedeIks Mj% 2 +headband 'hedb&nd K6% 2 +headbands 'hedb&ndz Kj% 2 +headdress 'hed+dres K7% 2 +headdresses 'hed+dresIz Kj% 3 +headed 'hedId Jc%,Jd%,OA% 22C,6A,15B +header 'hed@R K6% 2 +headers 'hed@z Kj% 2 +headgear 'hedgI@R L@% 2 +headier 'hedI@R Or$ 3 +headiest 'hedIIst Os$ 3 +heading 'hedIN Jb%,K6% 22C,6A,15B +headings 'hedINz Kj% 2 +headlamp 'hedl&mp K6% 2 +headlamps 'hedl&mps Kj% 2 +headland 'hedl&nd K6% 2 +headlands 'hedl&ndz Kj% 2 +headless 'hedl@s OA% 2 +headlight 'hedlaIt K6% 2 +headlights 'hedlaIts Kj% 2 +headline 'hedlaIn K6% 2 +headlines 'hedlaInz Kj% 2 +headlong 'hedl0N OA%,Pu% 2 +headman 'hedm&n Ki% 2 +headmaster hed'mAst@R K6% 3 +headmasters hed'mAst@z Kj% 3 +headmen 'hedmen Kj% 2 +headmistress hed'mIstrIs K7% 3 +headmistresses hed'mIstrIsIz Kj% 4 +headphones 'hedf@Unz Kj% 2 +headpiece 'hedpis K6$ 2 +headpieces 'hedpisIz Kj$ 3 +headquarters hed'kwOt@z Kj% 3 +headrest 'hedrest K6% 2 +headrests 'hedrests Kj% 2 +headroom 'hedrum L@% 2 +heads hedz Ja%,Kj% 12C,6A,15B +headset 'hedset K6% 2 +headsets 'hedsets Kj% 2 +headship 'hedSIp K6% 2 +headships 'hedSIps Kj% 2 +headstall 'hedstOl K6$ 2 +headstalls 'hedstOlz Kj$ 2 +headstone 'hedst@Un K6% 2 +headstones 'hedst@Unz Kj% 2 +headstrong 'hedstr0N OA% 2 +headwaters 'hedwOt@z Kj$ 3 +headway 'hedweI L@% 2 +headwind 'hedwInd K6% 2 +headwinds 'hedwIndz Kj% 2 +headword 'hedw3d K6$ 2 +headwords 'hedw3dz Kj$ 2 +heady 'hedI OD% 2 +heal hil J0% 12A,2C,6A +healed hild Jc%,Jd% 12A,2C,6A +healer 'hil@R K6% 2 +healers 'hil@z Kj% 2 +healing 'hilIN Jb%,OA% 22A,2C,6A +heals hilz Ja% 12A,2C,6A +health helT L@% 1 +healthful 'helTf@l OA$ 2 +healthier 'helTI@R Or% 3 +healthiest 'helTIIst Os% 3 +healthily 'helTIlI Pu% 3 +healthy 'helTI OD% 2 +heap hip H0%,K6% 16A,14,15A,15B +heaped hipt Hc%,Hd% 16A,14,15A,15B +heaping 'hipIN Hb% 26A,14,15A,15B +heaps hips Ha%,Kj%,Pu% 16A,14,15A,15B +hear hI@R J5% 12A,3A,6A,9,10,15A,18A,19A,24A +heard h3d Jc*,Jd* 12A,3A,6A,9,10,15A,18A,19A,24A +hearer 'hI@r@R K6% 2 +hearers 'hI@r@z Kj% 2 +hearing 'hI@rIN Jb%,M6% 22A,3A,6A,9,10,15A,18A,19A,24A +hearing-aid 'hI@rIN-eId K6% 3 +hearing-aids 'hI@rIN-eIdz Kj% 3 +hearings 'hI@rINz Mj$ 2 +hearken 'hAk@n I0% 2 +hearkened 'hAk@nd Ic%,Id% 2 +hearkening 'hAk@nIN Ib% 3 +hearkens 'hAk@nz Ia% 2 +hears hI@z Ja% 12A,3A,6A,9,10,15A,18A,19A,24A +hearsay 'hI@seI L@% 2 +hearse h3s K6% 1 +hearses 'h3sIz Kj$ 2 +heart hAt M6% 1 +heart's-ease 'hAts-iz L@$ 2 +heart-disease 'hAt-dIziz M6% 3 +heart-diseases 'hAt-dIzizIz Mj% 4 +heart-failure 'hAt-feIlj@R L@% 3 +heart-rending 'hAt-rendIN OA% 3 +heartache 'hAteIk M6% 2 +heartaches 'hAteIks Mj% 2 +heartbeat 'hAtbit K6% 2 +heartbeats 'hAtbits Kj% 2 +heartbreak 'hAtbreIk L@% 2 +heartbreaking 'hAtbreIkIN OA% 3 +heartbroken 'hAtbr@Uk@n OA% 3 +heartburn 'hAtb3n L@% 2 +heartburning 'hAtb3nIN L@$ 3 +hearted 'hAtId Ot% 2 +hearten 'hAtn H0% 26A +heartened 'hAtnd Hc%,Hd% 26A +heartening 'hAtnIN Hb% 36A +heartens 'hAtnz Ha% 26A +heartfelt 'hAtfelt OA% 2 +hearth hAT K6% 1 +hearthrug 'hATrVg K6% 2 +hearthrugs 'hATrVgz Kj% 2 +hearths hATs Kj% 1 +heartier 'hAtI@R Or% 3 +heartiest 'hAtIIst Os% 3 +heartily 'hAtIlI Pu% 3 +heartless 'hAtl@s OA% 2 +heartlessly 'hAtl@slI Pu% 3 +heartlessness 'hAtl@sn@s L@% 3 +hearts hAts Mj% 1 +heartsick 'hAtsIk OA$ 2 +heartstrings 'hAtstrINz Kj% 2 +hearty 'hAtI OD% 2 +heat hit J0%,M6% 12C,6A,15B +heat-flash 'hit-fl&S K7$ 2 +heat-flashes 'hit-fl&SIz Kj$ 3 +heated 'hitId Jc%,Jd%,OA% 22C,6A,15B +heatedly 'hitIdlI Pu% 3 +heater 'hit@R K6% 2 +heaters 'hit@z Kj% 2 +heath hiT M6% 1 +heathen 'hiDn K6% 2 +heathenish 'hiDnIS OA% 3 +heathens 'hiDnz Kj% 2 +heather 'heD@R M6% 2 +heather-mixture 'heD@-mIkstS@R L@$ 4 +heathers 'heD@z Mj$ 2 +heaths hiTs Mj% 1 +heating 'hitIN Jb%,L@% 22C,6A,15B +heats hits Ja%,Mj$ 12C,6A,15B +heatspot 'hitsp0t K6% 2 +heatspots 'hitsp0ts Kj% 2 +heatstroke 'hitstr@Uk L@% 2 +heatwave 'hitweIv K6% 2 +heatwaves 'hitweIvz Kj% 2 +heave hiv J2%,K6% 12A,2C,3A,6A,15A,15B +heaved hivd Jc%,Jd% 12A,2C,3A,6A,15A,15B +heaven 'hevn K6% 2 +heavenly 'hevnlI OA% 3 +heavens 'hevnz Kj% 2 +heavensent 'hevnsent OA% 3 +heavenward 'hevnw@d OA%,Pu% 3 +heavenwards 'hevnw@dz OA%,Pu% 3 +heaves hivz Ja%,Kj% 12A,2C,3A,6A,15A,15B +heavier 'hevI@R Or% 3 +heaviest 'hevIIst Os% 3 +heavily 'hevIlI Pu% 3 +heaviness 'hevIn@s L@% 3 +heaving 'hivIN Jb% 22A,2C,3A,6A,15A,15B +heavy 'hevI OD%,Pu% 2 +heavy-handed ,hevI-'h&ndId OA% 4 +heavy-hearted ,hevI-'hAtId OA% 4 +heavy-laden ,hevI-'leIdn OA% 4 +heavyweight 'hevIweIt K6% 3 +heavyweights 'hevIweIts Kj% 3 +hebdomadal heb'd0m@dl OA$ 4 +hecatomb 'hek@tum K6$ 3 +hecatombs 'hek@tumz Kj$ 3 +heck hek K6$ 1 +heckle 'hekl H2% 26A +heckled 'hekld Hc%,Hd% 26A +heckler 'hekl@R K6% 2 +hecklers 'hekl@z Kj% 2 +heckles 'heklz Ha% 26A +heckling 'heklIN Hb% 26A +hecks heks Kj$ 1 +hectare 'hekte@R K6% 2 +hectares 'hekte@z Kj% 2 +hectic 'hektIk OA% 2 +hecto- 'hekt@U- U-% 2 +hector 'hekt@R J0$ 2 +hectored 'hekt@d Jc$,Jd$ 2 +hectoring 'hekt@rIN Jb% 3 +hectors 'hekt@z Ja$ 2 +hedge hedZ J2%,K6% 12A,6A,15A,15B +hedge-sparrow 'hedZ-sp&r@U K6% 3 +hedge-sparrows 'hedZ-sp&r@Uz Kj% 3 +hedged hedZd Jc%,Jd% 12A,6A,15A,15B +hedgehog 'hedZh0g K6% 2 +hedgehogs 'hedZh0gz Kj% 2 +hedgehop 'hedZh0p I4$ 2 +hedgehopped 'hedZh0pt Ic$,Id$ 2 +hedgehopping 'hedZh0pIN Ib$ 3 +hedgehops 'hedZh0ps Ia$ 2 +hedgerow 'hedZr@U K6% 2 +hedgerows 'hedZr@Uz Kj% 2 +hedges 'hedZIz Ja%,Kj% 22A,6A,15A,15B +hedging 'hedZIN Jb% 22A,6A,15A,15B +hedonism 'hid@nIz@m L@$ 4 +hedonist 'hid@nIst K6% 3 +hedonistic ,hid@'nIstIk OA$ 4 +hedonists 'hid@nIsts Kj$ 3 +heed hid H0%,L@% 16A +heeded 'hidId Hc%,Hd% 26A +heedful 'hidf@l OA% 2 +heeding 'hidIN Hb% 26A +heedless 'hidl@s OA% 2 +heeds hidz Ha% 16A +heehaw 'hihO K6$ 2 +heehaws 'hihOz Kj$ 2 +heel hil J0%,K6% 12A,2C,6A,15B +heeled hild Jc%,Jd% 12A,2C,6A,15B +heeling 'hilIN Jb% 22A,2C,6A,15B +heels hilz Ja%,Kj% 12A,2C,6A,15B +heftier 'heftI@R Or% 3 +heftiest 'heftIIst Os% 3 +hefty 'heftI OD% 2 +hegemonies hI'gem@nIz Mj$ 4 +hegemony hI'gem@nI M8$ 4 +heifer 'hef@R K6% 2 +heifers 'hef@z Kj% 2 +heighho ,heI'h@U W-$ 2 +height haIt M6% 1 +heighten 'haItn J0% 22A,6A +heightened 'haItnd Jc%,Jd% 22A,6A +heightening 'haItnIN Jb% 32A,6A +heightens 'haItnz Ja% 22A,6A +heights haIts Mj% 1 +heinous 'heIn@s OA% 2 +heinously 'heIn@slI Pu$ 3 +heinousness 'heIn@sn@s L@$ 3 +heir e@R K6% 1 +heiress 'e@rIs K7% 2 +heiresses 'e@rIsIz Kj% 3 +heirloom 'e@lum K6% 2 +heirlooms 'e@lumz Kj% 2 +heirs e@z Kj% 1 +held held Jc*,Jd* 12A,2C,2D,3A,6A,9,14,15A,15B,22,25 +helicopter 'helIk0pt@R K6% 4 +helicopters 'helIk0pt@z Kj% 4 +heliograph 'hilI@grAf H0$,K6$ 4 +heliographed 'hilI@grAft Hc$,Hd$ 4 +heliographing 'hilI@grAfIN Hb$ 5 +heliographs 'hilI@grAfs Ha$,Kj$ 4 +heliotrope 'hilI@tr@Up K6$ 4 +heliotropes 'hilI@tr@Ups Kj$ 4 +heliport 'helIpOt K6$ 3 +heliports 'helIpOts Kj$ 3 +helium 'hilI@m L@% 3 +hell hel K6% 1 +hellcat 'helk&t K6% 2 +hellcats 'helk&ts Kj% 2 +hellish 'helIS OA% 2 +hello h@'l@U W-% 2 +hells helz Kj$ 1 +helm helm K6% 1 +helmet 'helmIt K6% 2 +helmeted 'helmItId OA% 3 +helmets 'helmIts Kj% 2 +helms helmz Kj% 1 +helmsman 'helmzm@n Ki% 2 +helmsmen 'helmzm@n Kj% 2 +helot 'hel@t K6$ 2 +helots 'hel@ts Kj$ 2 +help help J0*,M6* 12A,2C,6A,6C,14,15A,15B,17,18B +helped helpt Jc%,Jd% 12A,2C,6A,6C,14,15A,15B,17,18B +helper 'help@R K6% 2 +helpers 'help@z Kj% 2 +helpful 'helpf@l OA% 2 +helpfully 'helpf@lI Pu% 3 +helpfulness 'helpf@ln@s L@% 3 +helping 'helpIN Jb%,K6% 22A,2C,6A,6C,14,15A,15B,17,18B +helpings 'helpINz Kj% 2 +helpless 'helpl@s OA% 2 +helplessly 'helpl@slI Pu% 3 +helplessness 'helpl@sn@s L@% 3 +helpmate 'helpmeIt K6$ 2 +helpmates 'helpmeIts Kj$ 2 +helpmeet 'helpmit K6$ 2 +helpmeets 'helpmits Kj$ 2 +helps helps Ja%,Mj% 12A,2C,6A,6C,14,15A,15B,17,18B +helter-skelter ,helt@-'skelt@R K6%,Pu% 4 +helter-skelters ,helt@-'skelt@z Kj% 4 +helve helv K6$ 1 +helves helvz Kj$ 1 +hem hem J4%,K6%,W-% 16A,15B +hematite 'hem@taIt K6$ 3 +hematites 'hem@taIts Kj$ 3 +hemisphere 'hemIsfI@R K6% 3 +hemispheres 'hemIsfI@z Kj% 3 +hemline 'hemlaIn K6% 2 +hemlines 'hemlaInz Kj% 2 +hemlock 'heml0k M6% 2 +hemlocks 'heml0ks Mj$ 2 +hemmed hemd Jc%,Jd% 16A,15B +hemming 'hemIN Jb% 26A,15B +hemming-stitch 'hemIN-stItS K7% 3 +hemming-stitches 'hemIN-stItSIz Kj$ 4 +hemoglobin ,him@'gl@UbIn L@$ 4 +hemophilia ,him@'fIlI@ L@$ 5 +hemophiliac ,him@'fIlI&k K6$ 5 +hemophiliacs ,him@'fIlI&ks Kj$ 5 +hemorrhage 'hem@rIdZ M6$ 3 +hemorrhages 'hem@rIdZIz Mj$ 4 +hemorrhoids 'hem@roIdz Kj$ 3 +hemp hemp L@% 1 +hempen 'hemp@n OA$ 2 +hems hemz Ja%,Kj% 16A,15B +hemstitch 'hemstItS H1$,K7% 2 +hemstitched 'hemstItSt Hc$,Hd% 2 +hemstitches 'hemstItSIz Ha$,Kj% 3 +hemstitching 'hemstItSIN Hb% 3 +hen hen K6% 1 +hen-parties 'hen-pAtIz Kj% 3 +hen-party 'hen-pAtI K8% 3 +henbane 'henbeIn L@$ 2 +hence hens Pu% 1 +henceforth hens'fOT Pu% 2 +henceforward hens'fOw@d Pu% 3 +henchman 'hentSm@n Ki% 2 +henchmen 'hentSm@n Kj% 2 +hencoop 'henkup K6% 2 +hencoops 'henkups Kj% 2 +henhouse 'henhaUs K6% 2 +henhouses 'henhaUzIz Kj% 3 +henna 'hen@ L@% 2 +hennaed 'hen@d OA% 2 +henpecked 'henpekt OA% 2 +henroost 'henrust K6% 2 +henroosts 'henrusts Kj% 2 +hens henz Kj% 1 +hep hep OA$ 1 +hepatitis ,hep@'taItIs L@% 4 +heptagon 'hept@g@n K6% 3 +heptagons 'hept@g@nz Kj% 3 +her h3R Oq*,Qx* 1 +herald 'her@ld H0%,K6% 26A +heralded 'her@ldId Hc%,Hd% 36A +heraldic he'r&ldIk OA% 3 +heralding 'her@ldIN Hb% 36A +heraldry 'her@ldrI L@% 3 +heralds 'her@ldz Ha%,Kj% 26A +herb h3b K6% 1 +herbaceous h3'beIS@s OA% 3 +herbage 'h3bIdZ L@$ 2 +herbal 'h3bl OA% 2 +herbalist 'h3b@lIst K6% 3 +herbalists 'h3b@lIsts Kj% 3 +herbivorous h3'bIv@r@s OA% 4 +herbs h3bz Kj% 1 +herculean ,h3kjU'li@n OA% 4 +herd h3d J0%,K6% 12C,15A,15B +herded 'h3dId Jc%,Jd% 22C,15A,15B +herding 'h3dIN Jb% 22C,15A,15B +herds h3dz Ja%,Kj% 12C,15A,15B +herdsman 'h3dzm@n Ki% 2 +herdsmen 'h3dzm@n Kj% 2 +here hI@R Pu* 1 +here's hI@z Gh% 1 +hereabouts ,hI@r@'baUts Pu% 3 +hereafter hI@'rAft@R Ki%,Pu% 3 +hereby hI@'baI Pu% 2 +hereditament ,herI'dIt@m@nt K6$ 5 +hereditaments ,herI'dIt@m@nts Kj$ 5 +hereditary hI'redItrI OA% 4 +heredity hI'redItI L@% 4 +herein ,hI@'rIn Pu% 2 +hereinafter ,hI@rIn'Aft@R Pu% 4 +hereinbefore ,hI@rInbI'fOR Pu$ 4 +hereof hI@'r0v Pu% 2 +heresies 'her@sIz Mj% 3 +heresy 'her@sI M8% 3 +heretic 'her@tIk K6% 3 +heretical hI'retIkl OA% 4 +heretics 'her@tIks Kj% 3 +hereto hI@'tu Pu% 3 +heretofore ,hI@tu'fOR Pu$ 3 +hereupon ,hI@r@'p0n Pu% 3 +herewith ,hI@'wID Pu% 2 +heritable 'herIt@bl OA$ 4 +heritage 'herItIdZ Ki% 3 +hermaphrodite h3'm&fr@daIt K6$ 4 +hermaphrodites h3'm&fr@daIts Kj$ 4 +hermetic h3'metIk OA$ 3 +hermetically h3'metIklI Pu% 4 +hermit 'h3mIt K6% 2 +hermitage 'h3mItIdZ K6% 3 +hermitages 'h3mItIdZIz Kj% 4 +hermits 'h3mIts Kj% 2 +hernia 'h3nI@ M6% 3 +hernias 'h3nI@z Mj% 3 +hero 'hI@r@U K7% 2 +heroes 'hI@r@Uz Kj% 2 +heroic hI'r@UIk OA% 3 +heroically hI'r@UIklI Pu% 4 +heroics hI'r@UIks Lk% 3 +heroin 'her@UIn L@% 3 +heroine 'her@UIn K6% 3 +heroines 'her@UInz Kj% 3 +heroism 'her@UIz@m L@% 4 +heron 'her@n K6% 2 +heronries 'her@nrIz Kj$ 3 +heronry 'her@nrI K8$ 3 +herons 'her@nz Kj% 2 +herring 'herIN M9% 2 +herringbone 'herINb@Un L@% 3 +herrings 'herINz Kj% 2 +hers h3z Qx% 1 +herself h3'self Qx% 2 +hertz h3ts K9$ 1 +hesitance 'hezIt@ns Mi$ 3 +hesitancy 'hezIt@nsI L@$ 4 +hesitant 'hezIt@nt OA% 3 +hesitantly 'hezIt@ntlI Pu% 4 +hesitate 'hezIteIt I2% 32A,3A,3B,4C +hesitated 'hezIteItId Ic%,Id% 42A,3A,3B,4C +hesitates 'hezIteIts Ia% 32A,3A,3B,4C +hesitating 'hezIteItIN Ib% 42A,3A,3B,4C +hesitatingly 'hesIteItINlI Pu% 5 +hesitation ,hezI'teISn M6% 4 +hesitations ,hezI'teISnz Mj% 4 +hessian 'hesI@n L@% 3 +het-up ,het-'Vp OA% 2 +heterodox 'het@r@d0ks OA$ 4 +heterodoxy 'het@r@d0ksI L@$ 5 +heterogeneous ,het@r@'dZinI@s OA% 6 +heterosexual ,het@r@'sekSU@l K6%,OA% 6 +heterosexuality ,het@r@,sekSU'&lItI L@% 8 +heterosexuals ,het@r@'sekSU@lz Kj% 6 +heuristic hjU@'rIstIk OA$ 3 +heuristics hjU@'rIstIks Lk$ 3 +hew hju J0$ 12A,2C,6A,15A,15B +hewed hjud Jc$,Jd$ 12A,2C,6A,15A,15B +hewer 'hju@R K6$ 2 +hewers 'hju@z Kj$ 2 +hewing 'hjuIN Jb% 22A,2C,6A,15A,15B +hewn hjun Jd% 12A,2C,6A,15A,15B +hews hjuz Ja$ 12A,2C,6A,15A,15B +hexagon 'heks@g@n K6% 3 +hexagonal heks'&g@nl OA% 4 +hexagons 'heks@g@nz Kj% 3 +hexameter heks'&mIt@R K6$ 4 +hexameters heks'&mIt@z Kj$ 4 +hey heI W-% 1 +heyday 'heIdeI Ki% 2 +hi haI W-% 1 +hi-fi ,haI-'faI K6%,OA% 2 +hi-fis ,haI-'faIz Kj$ 2 +hiatus haI'eIt@s K7$ 3 +hiatuses haI'eIt@sIz Kj$ 4 +hibernate 'haIb@neIt I2% 32A +hibernated 'haIb@neItId Ic%,Id% 42A +hibernates 'haIb@neIts Ia% 32A +hibernating 'haIb@neItIN Ib% 42A +hibernation ,haIb@'neISn L@% 4 +hibiscus hI'bIsk@s L@$ 3 +hiccough 'hIkVp I0$,K6$ 2 +hiccoughed 'hIkVpt Ic$,Id$ 2 +hiccoughing 'hIkVpIN Ib$ 3 +hiccoughs 'hIkVps Ia$,Kj$ 2 +hiccup 'hIkVp I4%,K6% 2 +hiccupped 'hIkVpt Ic%,Id% 2 +hiccupping 'hIkVpIN Ib% 3 +hiccups 'hIkVps Ia%,Kj% 2 +hick hIk K6$,OA$ 1 +hickories 'hIk@rIz Mj$ 3 +hickory 'hIk@rI M8$ 3 +hicks hIks Kj$ 1 +hid hId Jc% 12A,6A,14 +hidden 'hIdn Jd% 22A,6A,14 +hide haId J5%,M6% 12A,6A,14 +hide-and-seek ,haId-n-'sik L@% 3 +hide-out 'haId-aUt K6% 2 +hide-outs 'haId-aUts Kj$ 2 +hideaway 'haId@weI K6% 3 +hideaways 'haId@weIz Kj$ 3 +hidebound 'haIdbaUnd OA% 2 +hideous 'hIdI@s OA% 3 +hideously 'hIdI@slI Pu% 4 +hides haIdz Ja%,Mj% 12A,6A,14 +hiding 'haIdIN Jb%,M6% 22A,6A,14 +hiding-place 'haIdIN-pleIs K6% 3 +hiding-places 'haIdIN-pleIsIz Kj% 4 +hidings 'haIdINz Mj$ 2 +hie haI I5$ 1 +hied haId Ic$,Id$ 1 +hieing 'haIIN Ib$ 2 +hierarchic ,haI@'rAkIk OA$ 4 +hierarchical ,haI@'rAkIkl OA% 5 +hierarchies 'haI@rAkIz Kj% 4 +hierarchy 'haI@rAkI K8% 4 +hieroglyph 'haI@r@glIf K6$ 4 +hieroglyphic ,haI@r@'glIfIk OA$ 5 +hieroglyphics ,haI@r@'glIfIks Lk% 5 +hieroglyphs 'haI@r@glIfs Kj$ 4 +hies haIz Ia$ 1 +higgledy-piggledy ,hIgldI-'pIgldI OA%,Pu% 6 +high haI OC*,Pu* 1 +high-class 'haI-klAs OA% 2 +high-falutin ,haI-f@'lutn OA% 4 +high-fidelity ,haI-fI'delItI L@%,OA% 5 +high-frequencies haI-'frikw@nsIz Mj$ 4 +high-frequency haI-'frikw@nsI M8% 4 +high-grade 'haI-greId OA% 2 +high-handed haI-'h&ndId OA% 3 +high-handedly haI-'h&ndIdlI Pu% 4 +high-keyed haI-'kid OA$ 2 +high-level 'haI-levl OA% 3 +high-minded haI-'maIndId OA% 3 +high-mindedly ,haI-'maIndIdlI Pu% 4 +high-mindedness ,haI-'maIndIdn@s L@% 4 +high-necked haI-'nekt OA% 2 +high-octane haI-'0kteIn OA% 3 +high-pitched haI-'pItSt OA% 2 +high-powered haI-'paU@d OA% 3 +high-pressure haI-'preS@R L@% 3 +high-priced haI-'praIst OA% 2 +high-principled haI-'prIns@pld OA% 4 +high-ranking haI-'r&nkIN OA% 3 +high-rise 'haI-raIz Oq% 2 +high-sounding haI-'saUndIN OA% 3 +high-speed 'haI-spid OA% 2 +high-spirited haI-'spIrItId OA% 4 +high-tension haI-'tenSn OA% 3 +high-toned haI-'t@Und OA% 2 +high-up 'haI-Vp K6$ 2 +high-ups 'haI-Vps Kj% 2 +highball 'haIbOl K6$ 2 +highballs 'haIbOlz Kj$ 2 +highborn 'haIbOn OA% 2 +highboy 'haIboI K6$ 2 +highboys 'haIboIz Kj$ 2 +highbrow 'haIbraU K6$,OA% 2 +highbrows 'haIbraUz Kj$ 2 +higher 'haI@R Or% 2 +higher-ups ,haI@r-'Vps Kj$ 3 +highest 'haIIst Os% 2 +highflier haI'flaI@R K6% 3 +highfliers haI'flaI@z Kj% 3 +highflown 'haIfl@Un OA% 2 +highflyer haI'flaI@R K6% 3 +highflyers haI'flaI@z Kj% 3 +highflying haI'flaIIN OA% 3 +highjack 'haIdZ&k H0$,K6$ 26A +highjacked 'haIdZ&kt Hc$,Hd$ 26A +highjacking 'haIdZ&kIN Hb$ 36A +highjacks 'haIdZ&ks Ha$,Kj$ 26A +highland 'haIl&nd K6% 2 +highlands 'haIl&ndz Kj% 2 +highlight 'haIlaIt H0%,K6% 2 +highlighted 'haIlaItId Hc%,Hd% 3 +highlighting 'haIlaItIN Hb% 3 +highlights 'haIlaIts Ha%,Kj% 2 +highly 'haIlI Pu% 2 +highness 'haIn@s M7% 2 +highnesses 'haIn@sIz Mj% 3 +highroad 'haIr@Ud K6% 2 +highroads 'haIr@Udz Kj% 2 +highway 'haIweI K6% 2 +highwayman 'haIweIm@n Ki% 3 +highwaymen 'haIweIm@n Kj% 3 +highways 'haIweIz Kj% 2 +hijack 'haIdZ&k H0%,K6% 26A +hijacked 'haIdZ&kt Hc%,Hd% 26A +hijacker 'haIdZ&k@R K6% 3 +hijackers 'haIdZ&k@z Kj% 3 +hijacking 'haIdZ&kIN Hb% 36A +hijacks 'haIdZ&ks Ha%,Kj% 26A +hike haIk I2%,K6% 1 +hiked haIkt Ic%,Id% 1 +hiker 'haIk@R K6% 2 +hikers 'haIk@z Kj% 2 +hikes haIks Ia%,Kj% 1 +hiking 'haIkIN Ib% 2 +hilarious hI'le@rI@s OA% 4 +hilariously hI'le@rI@slI Pu% 5 +hilarity hI'l&rItI L@% 4 +hill hIl K6% 1 +hill-billies 'hIl-bIlIz Kj% 3 +hill-billy 'hIl-bIlI K8% 3 +hillier 'hIlI@R Or% 3 +hilliest 'hIlIIst Os% 3 +hillock 'hIl@k K6% 2 +hillocks 'hIl@ks Kj% 2 +hills hIlz Kj% 1 +hillside 'hIlsaId K6% 2 +hillsides 'hIlsaIdz Kj% 2 +hilly 'hIlI OD% 2 +hilt hIlt K6% 1 +hilts hIlts Kj$ 1 +him hIm Qx* 1 +himself hIm'self Qx* 2 +hind haInd K6$,OA$ 1 +hinder 'hInd@R H0% 26A,6C,15A +hindered 'hInd@d Hc%,Hd% 26A,6C,15A +hindering 'hInd@rIN Hb% 36A,6C,15A +hinders 'hInd@z Ha% 26A,6C,15A +hindmost 'haIndm@Ust OA% 2 +hindrance 'hIndr@ns K6% 2 +hindrances 'hIndr@nsIz Kj% 3 +hinds haIndz Kj$ 1 +hindsight 'haIndsaIt L@% 2 +hinge hIndZ J2%,K6% 13A,6A +hinged hIndZd Jc%,Jd% 13A,6A +hinges 'hIndZIz Ja%,Kj% 23A,6A +hinging 'hIndZIN Jb% 23A,6A +hint hInt J0%,K6% 13A,6A,9 +hinted 'hIntId Jc%,Jd% 23A,6A,9 +hinterland 'hInt@l&nd K6% 3 +hinterlands 'hInt@l&ndz Kj$ 3 +hinting 'hIntIN Jb% 23A,6A,9 +hints hInts Ja%,Kj% 13A,6A,9 +hip hIp K6%,OA%,W-% 1 +hip-bath 'hIp-bAT K6% 2 +hip-baths 'hIp-bADz Kj% 2 +hip-flask 'hIp-flAsk K6% 2 +hip-flasks 'hIp-flAsks Kj% 2 +hip-pocket hIp-'p0kIt K6% 3 +hip-pockets hIp-'p0kIts Kj% 3 +hippie 'hIpI K6% 2 +hippies 'hIpIz Kj% 2 +hippo 'hIp@U K6% 2 +hippodrome 'hIp@dr@Um K6$ 3 +hippodromes 'hIp@dr@Umz Kj$ 3 +hippopotami ,hIp@'p0t@maI Kj% 5 +hippopotamus ,hIp@'p0t@m@s K7% 5 +hippopotamuses ,hIp@'p0t@m@sIz Kj% 6 +hippos 'hIp@Uz Kj% 2 +hippy 'hIpI K8% 2 +hips hIps Kj% 1 +hire 'haI@R H2%,L@% 16A,15B +hired 'haI@d Hc%,Hd% 16A,15B +hireling 'haI@lIN K6% 2 +hirelings 'haI@lINz Kj% 2 +hires 'haI@z Ha% 16A,15B +hiring 'haI@rIN Hb% 26A,15B +hirsute 'h3sjut OA$ 2 +his hIz OA*,Qx* 1 +hiss hIs J1%,K7% 12A,3A,6A,15A +hissed hIst Jc%,Jd% 12A,3A,6A,15A +hisses 'hIsIz Ja%,Kj% 22A,3A,6A,15A +hissing 'hIsIN Jb% 22A,3A,6A,15A +histogram 'hIst@gr&m K6% 3 +histograms 'hIst@gr&mz Kj% 3 +historian hI'stOrI@n K6% 4 +historians hI'stOrI@nz Kj% 4 +historic hI'st0rIk OA% 3 +historical hI'st0rIkl OA% 4 +historically hI'st0rIklI Pu% 4 +histories 'hIstrIz Mj% 2 +history 'hIstrI M8% 2 +histrionic ,hIstrI'0nIk OA% 4 +histrionics ,hIstrI'0nIks Lk% 4 +hit hIt J5%,Jc%,Jd%,K6% 12C,3A,6A,12C,15A,15B +hit-and-run ,hIt-n-'rVn Oq% 3 +hitch hItS J1%,K7% 12A,2C,6A,15A,15B +hitched hItSt Jc%,Jd% 12A,2C,6A,15A,15B +hitches 'hItSIz Ja%,Kj% 22A,2C,6A,15A,15B +hitchhike 'hItShaIk I2% 22A +hitchhiked 'hItShaIkt Ic%,Id% 22A +hitchhiker 'hItShaIk@R K6% 3 +hitchhikers 'hItShaIk@z Kj% 3 +hitchhikes 'hItShaIks Ia% 22A +hitchhiking 'hItShaIkIN Ib% 32A +hitching 'hItSIN Jb% 22A,2C,6A,15A,15B +hither 'hID@R Pu% 2 +hitherto ,hID@'tu Pu% 3 +hits hIts Ja%,Kj% 12C,3A,6A,12C,15A,15B +hitting 'hItIN Jb% 22C,3A,6A,12C,15A,15B +hive haIv J2$,K6% 12C,6A +hived haIvd Jc$,Jd$ 12C,6A +hives haIvz Ja$,Kj% 12C,6A +hiving 'haIvIN Jb$ 22C,6A +ho h@U W-$ 1 +hoar hOR OA$ 1 +hoard hOd J0%,K6% 16A,15B +hoarded 'hOdId Jc%,Jd% 26A,15B +hoarder 'hOd@R K6% 2 +hoarders 'hOd@z Kj% 2 +hoarding 'hOdIN Jb%,K6% 26A,15B +hoardings 'hOdINz Kj% 2 +hoards hOdz Ja%,Kj% 16A,15B +hoarfrost 'hOfr0st L@% 2 +hoarier 'hOrI@R Or$ 3 +hoariest 'hOrIIst Os$ 3 +hoariness 'hOrIn@s L@$ 3 +hoarse hOs OB% 1 +hoarsely 'hOslI Pu% 2 +hoarseness 'hOsn@s L@% 2 +hoarser 'hOs@R Or% 2 +hoarsest 'hOsIst Os% 2 +hoary 'hOrI OD% 2 +hoax h@Uks H1%,K7% 16A,14 +hoaxed h@Ukst Hc%,Hd% 16A,14 +hoaxer 'h@Uks@R K6% 2 +hoaxers 'h@Uks@z Kj% 2 +hoaxes 'h@UksIz Ha%,Kj% 26A,14 +hoaxing 'h@UksIN Hb% 26A,14 +hob h0b K6% 1 +hobbies 'h0bIz Kj% 2 +hobble 'h0bl J2%,K6% 22A,2C,6A +hobble-skirt 'h0bl-sk3t K6$ 3 +hobble-skirts 'h0bl-sk3ts Kj$ 3 +hobbled 'h0bld Jc%,Jd% 22A,2C,6A +hobbledehoy 'h0bldIhoI K6$ 4 +hobbledehoys 'h0bldIhoIz Kj$ 4 +hobbles 'h0blz Ja%,Kj% 22A,2C,6A +hobbling 'h0blIN Jb% 22A,2C,6A +hobby 'h0bI K8% 2 +hobbyhorse 'h0bIhOs K6% 3 +hobbyhorses 'h0bIhOsIz Kj% 4 +hobgoblin ,h0b'g0blIn K6% 3 +hobgoblins ,h0b'g0blInz Kj% 3 +hobnail 'h0bneIl K6% 2 +hobnailed 'h0bneIld OA% 2 +hobnails 'h0bneIlz Kj$ 2 +hobnob 'h0bn0b I4% 22A,2C,3A +hobnobbed 'h0bn0bd Ic%,Id% 22A,2C,3A +hobnobbing 'h0bn0bIN Ib% 32A,2C,3A +hobnobs 'h0bn0bz Ia% 22A,2C,3A +hobo 'h@Ub@U K6% 2 +hoboes 'h@Ub@Uz Kj$ 2 +hobos 'h@Ub@Uz Kj% 2 +hobs h0bz Kj% 1 +hock h0k H0$,M6$ 16A +hocked h0kt Hc$,Hd$ 16A +hockey 'h0kI L@% 2 +hocking 'h0kIN Hb$ 26A +hocks h0ks Ha$,Mj$ 16A +hocus-pocus ,h@Uk@s-'p@Uk@s L@% 4 +hod h0d K6% 1 +hodgepodge 'h0dZp0dZ L@% 2 +hods h0dz Kj% 1 +hoe h@U J5%,K6% 12A,6A,15B +hoed h@Ud Jc%,Jd% 12A,6A,15B +hoeing 'h@UIN Jb% 22A,6A,15B +hoes h@Uz Ja%,Kj% 12A,6A,15B +hog h0g H4%,K6% 16A +hogged h0gd Hc%,Hd% 16A +hogging 'h0gIN Hb% 26A +hoggish 'h0gIS OA$ 2 +hogs h0gz Ha%,Kj% 16A +hogshead 'h0gzhed K6% 2 +hogsheads 'h0gzhedz Kj% 2 +hogwash 'h0gw0S L@% 2 +hoi polloi ,hoI p@'loI Kj$ 3 +hoist hoIst H0%,K6% 16A,15B +hoisted 'hoIstId Hc%,Hd% 26A,15B +hoisting 'hoIstIN Hb% 26A,15B +hoists hoIsts Ha%,Kj% 16A,15B +hoity-toity ,hoItI-'toItI OA%,W-$ 4 +hold h@Uld J5%,M6% 12A,2C,2D,3A,6A,9,14,15A,15B,22,25 +hold-up 'h@Uld-Vp K6% 2 +hold-ups 'h@Uld-Vps Kj$ 2 +holdall 'h@UldOl K6% 2 +holdalls 'h@UldOlz Kj% 2 +holder 'h@Uld@R K6% 2 +holders 'h@Uld@z Kj% 2 +holding 'h@UldIN Jb%,K6% 22A,2C,2D,3A,6A,9,14,15A,15B,22,25 +holdings 'h@UldINz Kj% 2 +holds h@Uldz Ja%,Mj% 12A,2C,2D,3A,6A,9,14,15A,15B,22,25 +holdup 'h@UldVp K6$ 2 +holdups 'h@UldVps Kj$ 2 +hole h@Ul J2%,K6% 12C,6A,15B +hole-and-corner ,h@Ul-n-'kOn@R OA% 4 +holed h@Uld Jc%,Jd% 12C,6A,15B +holes h@Ulz Ja%,Kj% 12C,6A,15B +holiday 'h0l@deI I0%,K6% 3 +holiday-maker 'h0l@dI-,meIk@R K6% 5 +holiday-makers 'h0l@dI-,meIk@z Kj% 5 +holidayed 'h0l@deId Ic% 3 +holidaying 'h0l@deIIN Ib% 4 +holidays 'h0l@deIz Kj% 3 +holier 'h@UlI@R Or% 3 +holies 'h@UlIz Kj% 2 +holiest 'h@UlIIst Os% 3 +holiness 'h@UlIn@s L@% 3 +holing 'h@UlIN Jb% 22C,6A,15B +holler 'h0l@R J0% 2 +hollered 'h0l@d Jc%,Jd% 2 +hollering 'h0l@rIN Jb% 3 +hollers 'h0l@z Ja% 2 +holloa 'h0l@U K6$,W-$ 2 +holloas 'h0l@Uz Kj$ 2 +hollow 'h0l@U H0%,K6%,OA% 26A,15A,15B +hollowed 'h0l@Ud Hc%,Hd% 26A,15A,15B +hollowing 'h0l@UIN Hb% 36A,15A,15B +hollows 'h0l@Uz Ha%,Kj% 26A,15A,15B +holly 'h0lI L@% 2 +hollyhock 'h0lIh0k K6% 3 +hollyhocks 'h0lIh0ks Kj% 3 +holm-oak 'h@Um-@Uk K6$ 2 +holm-oaks 'h@Um-@Uks Kj$ 2 +holocaust 'h0l@kOst K6% 3 +holocausts 'h0l@kOsts Kj$ 3 +holograph 'h0l@grAf K6% 3 +holographs 'h0l@grAfs Kj% 3 +holster 'h@Ulst@R K6% 2 +holsters 'h@Ulst@z Kj% 2 +holy 'h@UlI K8%,OD% 2 +holystone 'h@UlIst@Un H2$,L@$ 3 +holystoned 'h@UlIst@Und Hc$,Hd$ 3 +holystones 'h@UlIst@Unz Ha$ 3 +holystoning 'h@UlIst@UnIN Hb$ 4 +homage 'h0mIdZ L@% 2 +home h@Um K6*,Pu* 1 +home-baked h@Um-'beIkt OA% 2 +home-brewed h@Um-'brud OA% 2 +home-cured h@Um-'kju@d OA% 2 +home-farm h@Um-'fAm K6% 2 +home-farms h@Um-'fAmz Kj% 2 +home-grown 'h@Um-gr@Un OA% 2 +home-made 'h@Um-meId OA% 2 +homecoming 'h@UmkVmIN K6% 3 +homecomings 'h@UmkVmINz Kj% 3 +homeland 'h@Uml&nd K6% 2 +homelands 'h@Uml&ndz Kj% 2 +homeless 'h@Uml@s OA% 2 +homelier 'h@UmlI@R Or% 3 +homeliest 'h@UmlIIst Os% 3 +homelike 'h@UmlaIk OA% 2 +homeliness 'h@UmlIn@s L@% 3 +homely 'h@UmlI OD% 2 +homeopath 'h@UmI@p&T K6% 4 +homeopathic ,h@UmI@'p&TIk OA% 5 +homeopaths 'h@Umi@Up&Ts Kj% 4 +homes h@Umz Kj% 1 +homesick 'h@UmsIk OA% 2 +homesickness 'h@UmsIkn@s L@% 3 +homespun 'h@UmspVn L@$,OA% 2 +homestead 'h@Umsted K6% 2 +homesteads 'h@Umstedz Kj% 2 +homeward 'h@Umw@d OA%,Pu% 2 +homewards 'h@Umw@dz Pu% 2 +homework 'h@Umw3k L@% 2 +homey 'h@UmI OA$ 2 +homicidal ,h0mI'saIdl OA% 4 +homicide 'h0mIsaId M6% 3 +homicides 'h0mIsaIdz Mj% 3 +homiletic ,h0mI'letIk OA$ 4 +homiletics ,h0mI'letIks Lk$ 4 +homilies 'h0mIlIz Kj% 3 +homily 'h0mIlI K8% 3 +homing 'h@UmIN OA% 2 +hominy 'h0mInI L@$ 3 +homo 'h@Um@U K6$ 2 +homo sapiens ,h@Um@U 's&pIenz Ki% 5 +homoeopath 'h@Umi@Up&T K6% 4 +homoeopaths 'h@Umi@Up&Ts Kj% 4 +homoeopathy ,h@UmI'0p@TI L@% 5 +homogeneity ,h@Um@dZI'nI@tI L@% 6 +homogeneous ,h0m@'dZinI@s OA% 5 +homogenize h@'m0dZInaIz H2% 46A +homogenized h@'m0dZInaIzd Hc%,Hd% 46A +homogenizes h@'m0dZInaIzIz Ha$ 56A +homogenizing h@'m0dZInaIzIN Hb$ 56A +homograph 'h0m@grAf K6$ 3 +homographs 'h0m@grAfs Kj$ 3 +homonym 'h0m@nIm K6% 3 +homonyms 'h0m@nImz Kj% 3 +homophone 'h0m@f@Un K6% 3 +homophones 'h0m@f@Unz Kj% 3 +homos 'h@Um@Uz Kj$ 2 +homosexual ,h0m@'sekSU@l K6%,OA% 5 +homosexuality ,h@Um@sekSU'&lItI L@% 7 +homosexuals ,h0m@'sekSU@lz Kj% 5 +hone h@Un H2%,K6$ 16A +honed h@Und Hc%,Hd% 16A +hones h@Unz Ha%,Kj$ 16A +honest '0nIst OA% 2 +honestly '0nIstlI Pu% 3 +honesty '0nIstI L@% 3 +honey 'hVnI M6% 2 +honeybee 'hVnIbi K6% 3 +honeybees 'hVnIbiz Kj% 3 +honeycomb 'hVnIk@Um H0$,M6% 36A +honeycombed 'hVnIk@Umd Hc$,Hd% 36A +honeycombing 'hVnIk@UmIN Hb$ 46A +honeycombs 'hVnIk@Umz Ha$,Mj% 36A +honeydew 'hVnIdju L@% 3 +honeyed 'hVnId OA% 2 +honeymoon 'hVnImun I0%,K6% 3 +honeymooned 'hVnImund Ic%,Id% 3 +honeymooning 'hVnImunIN Ib% 4 +honeymoons 'hVnImunz Ia$,Kj% 3 +honeys 'hVnIz Mj% 2 +honeysuckle 'hVnIsVkl L@% 4 +honing 'h@UnIN Hb% 26A +honk h0Nk I0%,K6% 1 +honked h0Nkt Ic%,Id% 1 +honking 'h0NkIN Ib% 2 +honks h0Nks Ia%,Kj% 1 +honorarium ,0n@'re@rI@m K6% 5 +honorariums ,0n@'re@rI@mz Kj$ 5 +honorary '0n@r@rI OA% 4 +honorific ,0n@'rIfIk K6$,OA% 4 +honorifics ,0n@'rIfIks Kj$ 4 +honour '0n@R H0%,M6% 26A +honourable '0n@r@bl OA% 4 +honourably '0n@r@blI Pu% 4 +honoured '0n@d Hc%,Hd% 26A +honouring '0n@rIN Hb% 36A +honours '0n@z Ha%,Mj% 26A +hooch hutS L@% 1 +hood hUd H0%,K6% 1 +hooded 'hUdId Hc%,Hd% 2 +hooding 'hUdIN Hb% 2 +hoodlum 'hudl@m K6% 2 +hoodlums 'hudl@mz Kj% 2 +hoodoo 'hudu H0$,K6% 2 +hoodooed 'hudud Hc$,Hd$ 2 +hoodooing 'huduIN Hb$ 3 +hoodoos 'huduz Ha$,Kj$ 2 +hoods hUdz Ha%,Kj% 1 +hoodwink 'hUdwINk H0% 26A,14 +hoodwinked 'hUdwINkt Hc%,Hd% 26A,14 +hoodwinking 'hUdwINkIN Hb% 36A,14 +hoodwinks 'hUdwINks Ha% 26A,14 +hooey 'huI L@$ 2 +hoof huf K6% 1 +hoofs hufs Kj% 1 +hook hUk J0%,K6% 12C,6A,15A,15B +hook-nosed 'hUk-n@Uzd OA% 2 +hook-up 'hUk-Vp K6$ 2 +hook-ups 'hUk-Vps Kj$ 2 +hookah 'hUk@ K6$ 2 +hookahs 'hUk@z Kj$ 2 +hooked hUkt Jc%,Jd%,OA% 12C,6A,15A,15B +hooker 'hUk@R K6% 2 +hookers 'hUk@z Kj% 2 +hooking 'hUkIN Jb% 22C,6A,15A,15B +hooks hUks Ja%,Kj% 12C,6A,15A,15B +hookworm 'hUkw3m M6% 2 +hookworms 'hUkw3mz Mj% 2 +hooky 'hUkI Ki% 2 +hooligan 'hulIg@n K6% 3 +hooliganism 'hulIg@nIz@m L@% 5 +hooligans 'hulIg@nz Kj% 3 +hoop hup H0$,K6% 1 +hoop-la 'hup-lA L@% 2 +hooped hupt Hc$,Hd$ 1 +hooping 'hupIN Hb$ 2 +hoops hups Ha$,Kj% 1 +hooray hu'reI W-% 2 +hoot hut J0%,K6% 12A,2C,6A,15A,15B +hooted 'hutId Jc%,Jd% 22A,2C,6A,15A,15B +hooter 'hut@R K6% 2 +hooters 'hut@z Kj% 2 +hooting 'hutIN Jb% 22A,2C,6A,15A,15B +hoots huts Ja%,Kj% 12A,2C,6A,15A,15B +hooves huvz Kj% 1 +hop h0p J4%,K6% 12A,2C,6A +hop-field 'h0p-fild K6% 2 +hop-fields 'h0p-fildz Kj% 2 +hop-garden 'h0p-gAdn K6% 3 +hop-gardens 'h0p-gAdnz Kj% 3 +hop-picker 'h0p-pIk@R K6% 3 +hop-pickers 'h0p-pIk@z Kj% 3 +hop-pole 'h0p-p@Ul K6% 2 +hop-poles 'h0p-p@Ulz Kj% 2 +hope h@Up J2%,M6% 12A,3A,7A,9 +hoped h@Upt Jc%,Jd% 12A,3A,7A,9 +hopeful 'h@Upf@l OA% 2 +hopefully 'h@Upf@lI Pu% 3 +hopefulness 'h@Upfln@s L@% 3 +hopeless 'h@UplIs OA% 2 +hopelessly 'h@UplIslI Pu% 3 +hopelessness 'h@UplIsn@s L@% 3 +hopes h@Ups Ja%,Mj% 12A,3A,7A,9 +hoping 'h@UpIN Jb% 22A,3A,7A,9 +hopped h0pt Jc%,Jd% 12A,2C,6A +hopped-up h0pt-'Vp OA$ 2 +hopper 'h0p@R K6% 2 +hoppers 'h0p@z Kj% 2 +hopping 'h0pIN Jb% 22A,2C,6A +hops h0ps Ja%,Kj% 12A,2C,6A +hopscotch 'h0psk0tS L@% 2 +horde hOd K6% 1 +hordes hOdz Kj% 1 +horizon h@'raIzn K6% 3 +horizons h@'raIznz Kj% 3 +horizontal ,h0rI'z0ntl OA% 4 +horizontally ,h0rI'z0nt@lI Pu% 5 +hormone 'hOm@Un K6% 2 +hormones 'hOm@Unz Kj% 2 +horn hOn I0%,M6% 1 +horn-rimmed 'hOn-rImd OA% 2 +hornbeam 'hOnbim K6% 2 +hornbeams 'hOnbimz Kj% 2 +hornbill 'hOnbIl K6% 2 +hornbills 'hOnbIlz Kj% 2 +horned hOnd Ic%,Id%,OA% 1 +hornet 'hOnIt K6% 2 +hornets 'hOnIts Kj% 2 +hornier 'hOnI@R Or$ 3 +horniest 'hOnIIst Os$ 3 +horning 'hOnIN Ib$ 2 +hornless 'hOnl@s OA% 2 +hornlike 'hOnlaIk OA$ 2 +hornpipe 'hOnpaIp K6% 2 +hornpipes 'hOnpaIps Kj% 2 +horns hOnz Ia$,Mj% 1 +horny 'hOnI OD% 2 +horology h0'r0l@dZI L@$ 4 +horoscope 'h0r@sk@Up K6% 3 +horoscopes 'h0r@sk@Ups Kj% 3 +horrible 'h0r@bl OA% 3 +horribly 'h0r@blI Pu% 3 +horrid 'h0rId OA% 2 +horridly 'h0rIdlI Pu% 3 +horridness 'h0rIdn@s L@% 3 +horrific h@'rIfIk OA% 3 +horrified 'h0rIfaId Hc%,Hd% 36A +horrifies 'h0rIfaIz Ha% 36A +horrify 'h0rIfaI H3% 36A +horrifying 'h0rIfaIIN Hb% 46A +horrifyingly 'h0rIfaIINlI Pu% 5 +horror 'h0r@R M6% 2 +horror-stricken 'h0r@-strIk@n OA% 4 +horror-struck 'h0r@-strVk OA% 3 +horrors 'h0r@z Mj% 2 +hors d'oeuvres ,O 'd3v Kj% 2 +hors de combat ,O d@ 'k0mbA Op% 4 +horse hOs K6% 1 +horse-chestnut hOs-'tSesnVt K6% 3 +horse-chestnuts hOs-'tSesnVts Kj% 3 +horse-laugh 'hOs-lAf K6$ 2 +horse-laughs 'hOs-lAfs Kj$ 2 +horse-pond 'hOs-p0nd K6$ 2 +horse-ponds 'hOs-p0ndz Kj$ 2 +horse-sense 'hOs-sens L@% 2 +horseback 'hOsb&k L@% 2 +horsebox 'hOsb0ks K7% 2 +horseboxes 'hOsb0ksIz Kj% 3 +horseflesh 'hOsfleS L@% 2 +horseflies 'hOsflaIz Kj% 2 +horsefly 'hOsflaI K8% 2 +horsehair 'hOshe@R L@% 2 +horseman 'hOsm@n Ki% 2 +horsemanship 'hOsm@nSIp L@% 3 +horsemeat 'hOsmit L@% 2 +horsemen 'hOsm@n Kj% 2 +horseplay 'hOspleI L@% 2 +horsepower 'hOspaU@R M9% 3 +horserace 'hOsreIs K6% 2 +horseraces 'hOsreIsIz Kj% 3 +horseracing 'hOsreIsIN L@% 3 +horseradish 'hOsr&dIS L@% 3 +horses 'hOsIz Kj% 2 +horseshoe 'hOs+Su K6% 2 +horseshoes 'hOs+Suz Kj% 2 +horsewhip 'hOswIp H4%,K6% 2 +horsewhipped 'hOswIpt Hc%,Hd% 2 +horsewhipping 'hOswIpIN Hb$ 3 +horsewhips 'hOswIps Ha$,Kj$ 2 +horsewoman 'hOswUm@n Ki% 3 +horsewomen 'hOswImIn Kj% 3 +horsy 'hOsI OA% 2 +hortative 'hOt@tIv OA$ 3 +horticultural ,hOtI'kVltS@r@l OA% 5 +horticulture 'hOtIkVltS@R L@% 4 +horticulturist ,hOtI'kVltS@rIst K6$ 5 +horticulturists ,hOtI'kVltS@rIsts Kj$ 5 +hosanna h@U'z&n@ K6$,W-$ 3 +hosannas h@U'z&n@z Kj$ 3 +hose h@Uz H2%,M6% 16A,15B +hosed h@Uzd Hc%,Hd% 16A,15B +hosepipe 'h@UzpaIp K6% 2 +hosepipes 'h@UzpaIps Kj% 2 +hoses 'h@UzIz Ha%,Mj% 26A,15B +hosier 'h@UzI@R K6$ 3 +hosiers 'h@UzI@z Kj$ 3 +hosiery 'h@UzI@rI L@% 4 +hosing 'h@UzIN Hb% 26A,15B +hospice 'h0spIs K6% 2 +hospices 'h0spIsIz Kj% 3 +hospitable h0'spIt@bl OA% 4 +hospitably h0'spIt@blI Pu% 4 +hospital 'h0spItl K6% 3 +hospitality ,h0spI't&lItI L@% 5 +hospitalization ,h0spIt@laI'zeISn M6% 6 +hospitalizations ,h0spIt@laI'zeISnz Mj% 6 +hospitalize 'h0spIt@laIz H2$ 4 +hospitalized 'h0spIt@laIzd Hc$,Hd% 4 +hospitalizes 'h0spIt@laIzIz Ha$ 5 +hospitalizing 'h0spIt@laIzIN Hb$ 5 +hospitals 'h0spItlz Kj% 3 +host h@Ust H0%,K6% 16A +hostage 'h0stIdZ K6% 2 +hostages 'h0stIdZIz Kj% 3 +hosted 'h@UstId Hc%,Hd% 26A +hostel 'h0stl K6% 2 +hosteller 'h0st@l@R K6% 3 +hostellers 'h0st@l@z Kj% 3 +hostelries 'h0stlrIz Kj% 3 +hostelry 'h0stlrI K8% 3 +hostels 'h0stlz Kj% 2 +hostess 'h@UstIs K7% 2 +hostesses 'h@UstIsIz Kj% 3 +hostile 'h0staIl OA% 2 +hostilely 'h0staIlI Pu$ 3 +hostilities h0'stIlItIz Mj% 4 +hostility h0'stIlItI M8% 4 +hosting 'h@UstIN Hb% 26A +hosts h@Usts Ha%,Kj% 16A +hot h0t J4$,OE% 12C,15B +hot-blooded h0t-'blVdId OA% 3 +hot-headed h0t-'hedId OA% 3 +hot-tempered h0t-'temp@d OA% 3 +hot-water-bottle h0t-'wOt@-b0tl K6% 5 +hot-water-bottles h0t-'wOt@-b0tlz Kj% 5 +hotbed 'h0tbed K6% 2 +hotbeds 'h0tbedz Kj% 2 +hotchpotch 'h0tSp0tS K7% 2 +hotchpotches 'h0tSp0tSIz Kj$ 3 +hotel h@U'tel K6% 2 +hotelier h@U'telI@R K6% 4 +hoteliers h@U'telI@z Kj% 4 +hotels h@U'telz Kj% 2 +hotfoot 'h0tfUt I0%,Pu% 2 +hotfooted 'h0tfUtId Ic%,Id% 3 +hotfooting 'h0tfUtIN Ib$ 3 +hotfoots 'h0tfUts Ia$ 2 +hothead 'h0thed K6% 2 +hotheads 'h0thedz Kj% 2 +hothouse 'h0thaUs K6% 2 +hothouses 'h0thaUzIz Kj% 3 +hotly 'h0tlI Pu% 2 +hotplate 'h0tpleIt K6% 2 +hotplates 'h0tpleIts Kj% 2 +hots h0ts Ja$ 12C,15B +hotted 'h0tId Jc$,Jd$ 22C,15B +hotter 'h0t@R Or% 2 +hottest 'h0tIst Os% 2 +hotting 'h0tIN Jb% 22C,15B +hound haUnd H0%,K6% 16A +hounded 'haUndId Hc%,Hd% 26A +hounding 'haUndIN Hb% 26A +hounds haUndz Ha%,Kj% 16A +hour 'aU@R K6% 2 +hourglass 'aU@glAs K7% 3 +hourglasses 'aU@glAsIz Kj% 4 +houri 'hU@rI K6$ 2 +houris 'hU@rIz Kj$ 2 +hourly 'aU@lI OA%,Pu% 3 +hours 'aU@z Kj% 2 +house haUs K6* 1 +house haUz H2% 16A +house-parties 'haUs-pAtIz Kj% 3 +house-party 'haUs-pAtI K8% 3 +house-warming 'haUs-wOmIN K6% 3 +house-warmings 'haUs-wOmINz Kj% 3 +houseboat 'haUsb@Ut K6% 2 +houseboats 'haUsb@Uts Kj% 2 +housebound 'haUsbaUnd OA% 2 +housebreaker 'haUsbreIk@R K6$ 3 +housebreakers 'haUsbreIk@z Kj$ 3 +housecoat 'haUsk@Ut K6% 2 +housecoats 'haUsk@Uts Kj% 2 +housecraft 'haUskrAft L@% 2 +housed haUzd Hc%,Hd% 16A +housedog 'haUsd0g K6% 2 +housedogs 'haUsd0gz Kj% 2 +housefather 'haUsfAD@R K6% 3 +housefathers 'haUsfAD@z Kj% 3 +houseflies 'haUsflaIz Kj% 2 +housefly 'haUsflaI K8% 2 +houseful 'haUsfUl K6% 2 +housefuls 'haUsfUlz Kj% 2 +household 'haUsh@Uld K6% 2 +householder 'haUsh@Uld@R K6% 3 +householders 'haUsh@Uld@z Kj% 3 +households 'haUsh@Uldz Kj% 2 +housekeeper 'haUskip@R K6% 3 +housekeepers 'haUskip@z Kj% 3 +houselights 'haUslaIts Kj% 2 +housemaid 'haUsmeId K6% 2 +housemaids 'haUsmeIdz Kj% 2 +houseman 'haUsm@n Ki% 2 +housemaster 'haUsmAst@R K6% 3 +housemasters 'haUsmAst@z Kj% 3 +housemen 'haUsm@n Kj% 2 +housemother 'haUsmVD@R K6% 3 +housemothers 'haUsmVD@z Kj% 3 +houseproud 'haUspraUd OA% 2 +houseroom 'haUsrum L@% 2 +houses 'haUzIz Ha%,Kj% 26A +housetop 'haUst0p K6% 2 +housetops 'haUst0ps Kj% 2 +housetrained 'haUstreInd OA% 2 +housewife 'haUswaIf Ki% 2 +housewifely 'haUswaIflI OA$ 3 +housewifery 'haUswIfrI L@% 3 +housewives 'haUswaIvz Kj% 2 +housework 'haUsw3k L@% 2 +housewrecker 'haUsrek@R K6$ 3 +housewreckers 'haUsrek@z Kj$ 3 +housing 'haUzIN Hb%,L@% 26A +hove h@Uv Jc$,Jd$ 12A,2C,3A,6A,15A,15B +hovel 'h0vl K6% 2 +hovels 'h0vlz Kj% 2 +hover 'h0v@R I0% 22A,2C +hovercraft 'h0v@krAft K9% 3 +hovered 'h0v@d Ic%,Id% 22A,2C +hovering 'h0v@rIN Ib% 32A,2C +hovers 'h0v@z Ia% 22A,2C +how haU Pu* 1 +how's haUz Gh% 1 +how-d'ye-do ,haU-djU-'du K6$ 3 +how-d'ye-dos ,haU-djU-'duz Kj$ 3 +howbeit haU'biIt V-$ 3 +howdah 'haUd@ K6$ 2 +howdahs 'haUd@z Kj$ 2 +however haU'ev@R Pu* 3 +howitzer 'haUIts@R K6% 3 +howitzers 'haUIts@z Kj% 3 +howl haUl J0%,K6% 12A,2C,6A,15A,15B +howled haUld Jc%,Jd% 12A,2C,6A,15A,15B +howler 'haUl@R K6% 2 +howlers 'haUl@z Kj% 2 +howling 'haUlIN Jb%,OA% 22A,2C,6A,15A,15B +howls haUlz Ja%,Kj% 12A,2C,6A,15A,15B +hoyden 'hoIdn K6$ 2 +hoydenish 'hoIdnIS OA$ 3 +hoydens 'hoIdnz Kj$ 2 +hub hVb K6% 1 +hubbies 'hVbIz Kj% 2 +hubble-bubble 'hVbl-bVbl K6$ 4 +hubble-bubbles 'hVbl-bVblz Kj$ 4 +hubbub 'hVbVb L@% 2 +hubby 'hVbI K8% 2 +hubris 'hjubrIs L@$ 2 +hubs hVbz Kj% 1 +huckaback 'hVk@b&k L@$ 3 +huckleberries 'hVklb@rIz Kj$ 4 +huckleberry 'hVklb@rI K8$ 4 +huckster 'hVkst@R K6$ 2 +hucksters 'hVkst@z Kj$ 2 +huddle 'hVdl J2%,K6% 22C,15A,15B +huddled 'hVdld Jc%,Jd% 22C,15A,15B +huddles 'hVdlz Ja%,Kj% 22C,15A,15B +huddling 'hVdlIN Jb% 22C,15A,15B +hue hju K6% 1 +hued hjud Ot% 1 +hues hjuz Kj% 1 +huff hVf I0%,K6% 1 +huffed hVft Ic%,Id% 1 +huffier 'hVfI@R Or$ 3 +huffiest 'hVfIIst Os$ 3 +huffily 'hVfIlI Pu% 3 +huffing 'hVfIN Ib% 2 +huffish 'hVfIS OA$ 2 +huffs hVfs Ia%,Kj% 1 +huffy 'hVfI OD% 2 +hug hVg H4%,K6% 16A +huge hjudZ OA% 1 +hugely 'hjudZlI Pu% 2 +hugged hVgd Hc%,Hd% 16A +hugger-mugger 'hVg@-mVg@R Ki%,OA%,Pu% 4 +hugging 'hVgIN Hb% 26A +hugs hVgz Ha%,Kj% 16A +hula 'hul@ K6$ 2 +hulas 'hul@z Kj$ 2 +hulk hVlk K6% 1 +hulking 'hVlkIN OA% 2 +hulks hVlks Kj% 1 +hull hVl H0$,K6% 1 +hullabaloo ,hVl@b@'lu K6% 4 +hullabaloos ,hVl@b@'luz Kj% 4 +hulled hVld Hc$,Hd$ 1 +hulling 'hVlIN Hb$ 2 +hullo h@'l@U W-% 2 +hulls hVlz Ha$,Kj% 1 +hum hVm J4%,K6% 12A,2C,6A +human 'hjum@n K6$,OA% 2 +humane hju'meIn OA% 2 +humanely hju'meInlI Pu% 3 +humanism 'hjum@nIz@m L@% 4 +humanist 'hjum@nIst K6% 3 +humanists 'hjum@nIsts Kj% 3 +humanitarian hju,m&nI'te@rI@n K6%,OA% 6 +humanitarianism hju,m&nI'te@rI@nIz@m L@% 8 +humanitarians hju,m&nI'te@rI@nz Kj% 6 +humanities hju'm&nItIz Mj% 4 +humanity hju'm&nItI M8% 4 +humanize 'hjum@naIz J2% 32A,6A +humanized 'hjum@naIzd Jc%,Jd% 32A,6A +humanizes 'hjum@naIzIz Ja% 42A,6A +humanizing 'hjum@naIzIN Jb% 42A,6A +humankind ,hjum@n'kaInd L@% 3 +humanly 'hjum@nlI Pu% 3 +humans 'hjum@nz Kj% 2 +humble 'hVmbl H2%,OB% 26A +humbled 'hVmbld Hc%,Hd% 26A +humbler 'hVmbl@R Or% 2 +humbles 'hVmblz Ha% 26A +humblest 'hVmblIst Os% 2 +humbling 'hVmblIN Hb% 26A +humbly 'hVmblI Pu% 2 +humbug 'hVmbVg H4$,M6%,W-% 26A,14 +humbugged 'hVmbVgd Hc$,Hd$ 26A,14 +humbugging 'hVmbVgIN Hb$ 36A,14 +humbugs 'hVmbVgz Ha$,Mj% 26A,14 +humdinger ,hVm'dIN@R K6% 3 +humdingers ,hVm'dIN@z Kj$ 3 +humdrum 'hVmdrVm OA% 2 +humerus 'hjum@r@s K7% 3 +humeruses 'hjum@r@sIz Kj$ 4 +humid 'hjumId OA% 2 +humidified hju'mIdIfaId Hc$,Hd$ 4 +humidifies hju'mIdIfaIz Ha$ 4 +humidify hju'mIdIfaI H3$ 4 +humidifying hju'mIdIfaIIN Hb$ 5 +humidity hju'mIdItI L@% 4 +humiliate hju'mIlIeIt H2% 46A +humiliated hju'mIlIeItId Hc%,Hd% 56A +humiliates hju'mIlIeIts Ha% 46A +humiliating hju'mIlIeItIN Hb% 56A +humiliation hju,mIlI'eISn M6% 5 +humiliations hju,mIlI'eISnz Mj% 5 +humility hju'mIlItI L@% 4 +hummed hVmd Jc%,Jd% 12A,2C,6A +humming 'hVmIN Jb% 22A,2C,6A +humming-top 'hVmIN-t0p K6$ 3 +humming-tops 'hVmIN-t0ps Kj$ 3 +hummingbird 'hVmINb3d K6% 3 +hummingbirds 'hVmINb3dz Kj% 3 +hummock 'hVm@k K6% 2 +hummocks 'hVm@ks Kj% 2 +humorist 'hjum@rIst K6% 3 +humorists 'hjum@rIsts Kj% 3 +humorous 'hjum@r@s OA% 3 +humorously 'hjum@r@slI Pu% 4 +humour 'hjum@R H0%,M6% 26A +humoured 'hjum@d Hc%,Hd% 26A +humouring 'hjum@rIN Hb% 36A +humourist 'hjum@rIst K6% 3 +humourists 'hjum@rIsts Kj% 3 +humourless 'hjum@lIs OA% 3 +humours 'hjum@z Ha%,Mj% 26A +hump hVmp H0%,K6% 16A,15B +humpback 'hVmp+b&k K6% 2 +humpbacked 'hVmp+b&kt OA% 2 +humpbacks 'hVmp+b&ks Kj% 2 +humped hVmpt Hc%,Hd% 16A,15B +humph hVmpf W-$ 1 +humping 'hVmpIN Hb% 26A,15B +humps hVmps Ha%,Kj% 16A,15B +hums hVmz Ja%,Kj% 12A,2C,6A +humus 'hjum@s L@% 2 +hunch hVntS H1%,K7% 16A,15B +hunchback 'hVntSb&k K6%,OA% 2 +hunchbacked 'hVntSb&kt OA% 2 +hunchbacks 'hVntSb&ks Kj% 2 +hunched hVntSt Hc%,Hd% 16A,15B +hunches 'hVntSIz Ha%,Kj% 26A,15B +hunching 'hVntSIN Hb% 26A,15B +hundred 'hVndr@d K6%,OA% 2 +hundredfold 'hVndr@df@Uld Pu% 3 +hundreds 'hVndr@dz Kj% 2 +hundredth 'hVndr@dT K6%,OA% 2 +hundredths 'hVndr@dTs Kj% 2 +hundredweight 'hVndr@dweIt K6% 3 +hundredweights 'hVndr@dweIts Kj% 3 +hung hVN Jc%,Jd% 12A,2B,2C,3A,6A,15A,15B +hunger 'hVNg@R I0%,L@% 22A,3A,4C +hunger-march 'hVNg@-mAtS K7% 3 +hunger-marcher 'hVNg@-,mAtS@R K6% 4 +hunger-marchers 'hVNg@-,mAtS@z Kj% 4 +hunger-marches 'hVNg@-mAtSIz Kj% 4 +hungered 'hVNg@d Ic%,Id% 22A,3A,4C +hungering 'hVNg@rIN Ib% 32A,3A,4C +hungers 'hVNg@z Ia% 22A,3A,4C +hungrier 'hVNgrI@R Or% 3 +hungriest 'hVNgrIIst Os% 3 +hungrily 'hVNgr@lI Pu% 3 +hungry 'hVNgrI OD% 2 +hunk hVNk K6% 1 +hunkers 'hVNk@z Kj$ 2 +hunks hVNks Kj% 1 +hunt hVnt J0%,K6% 12A,2C,3A,6A,15A,15B +hunted 'hVntId Jc%,Jd% 22A,2C,3A,6A,15A,15B +hunter 'hVnt@R K6% 2 +hunters 'hVnt@z Kj% 2 +hunting 'hVntIN Jb%,L@% 22A,2C,3A,6A,15A,15B +hunting-crop 'hVntIN-kr0p K6% 3 +hunting-crops 'hVntIN-kr0ps Kj% 3 +huntress 'hVntrIs K7% 2 +huntresses 'hVntrIsIz Kj$ 3 +hunts hVnts Ja%,Kj% 12A,2C,3A,6A,15A,15B +huntsman 'hVntsm@n Ki% 2 +huntsmen 'hVntsm@n Kj% 2 +hurdle 'h3dl J2%,K6% 22A,15B +hurdled 'h3dld Jc%,Jd% 22A,15B +hurdler 'h3dl@R K6% 2 +hurdlers 'h3dl@z Kj% 2 +hurdles 'h3dlz Ja%,Kj% 22A,15B +hurdling 'h3dlIN Jb% 22A,15B +hurdy-gurdies 'h3dI-g3dIz Kj$ 4 +hurdy-gurdy 'h3dI-g3dI K8% 4 +hurl h3l H0%,K6$ 16A,15A,15B +hurled h3ld Hc%,Hd% 16A,15A,15B +hurling 'h3lIN Hb%,L@% 26A,15A,15B +hurls h3lz Ha%,Kj$ 16A,15A,15B +hurly-burly 'h3lI-b3lI L@% 4 +hurrah hU'rA I0%,W-% 2 +hurrahed hU'rAd Ic%,Id% 2 +hurrahing hU'rAIN Ib$ 3 +hurrahs hU'rAz Ia$ 2 +hurray hU'reI W-% 2 +hurricane 'hVrIk@n K6% 3 +hurricanes 'hVrIk@nz Kj% 3 +hurried 'hVrId Jc%,Jd%,OA% 22A,2C,6A,15A,15B +hurriedly 'hVrIdlI Pu% 3 +hurries 'hVrIz Ja%,Mj% 22A,2C,6A,15A,15B +hurry 'hVrI J3%,M8% 22A,2C,6A,15A,15B +hurrying 'hVrIIN Jb% 32A,2C,6A,15A,15B +hurt h3t J5%,Jc%,Jd%,L@% 12A,6A,6B +hurtful 'h3tf@l OA% 2 +hurting 'h3tIN Jb% 22A,6A,6B +hurtle 'h3tl I2% 22C +hurtled 'h3tld Ic%,Id% 22C +hurtles 'h3tlz Ia% 22C +hurtling 'h3tlIN Ib% 22C +hurts h3ts Ja% 12A,6A,6B +husband 'hVzb@nd H0%,K6% 21,6A +husbanded 'hVzb@ndId Hc%,Hd% 31,6A +husbanding 'hVzb@ndIN Hb% 31,6A +husbandman 'hVzb@ndm@n Ki% 3 +husbandmen 'hVzb@ndm@n Kj% 3 +husbandry 'hVzb@ndrI L@% 3 +husbands 'hVzb@ndz Ha%,Kj% 21,6A +hush hVS J1%,K7% 12A,15A,15B +hush-hush 'hVS-hVS OA% 2 +hush-money 'hVS-mVnI L@% 3 +hushed hVSt Jc%,Jd% 12A,15A,15B +hushes 'hVSIz Ja%,Kj% 22A,15A,15B +hushing 'hVSIN Jb% 22A,15A,15B +husk hVsk H0$,K6% 1 +husked hVskt Hc$,Hd$ 1 +huskier 'hVskI@R Or% 3 +huskies 'hVskIz Kj% 2 +huskiest 'hVskIIst Os% 3 +huskily 'hVskIlI Pu% 3 +huskiness 'hVskIn@s L@% 3 +husking 'hVskIN Hb$ 2 +husks hVsks Ha$,Kj% 1 +husky 'hVskI K8%,OD% 2 +hussar hU'zAR K6$ 2 +hussars hU'zAz Kj$ 2 +hussies 'hVsIz Kj% 2 +hussy 'hVsI K8% 2 +hustings 'hVstINz Kj% 2 +hustle 'hVsl J2%,Ki% 22A,2C,6A,15A,15B +hustled 'hVsld Jc%,Jd% 22A,2C,6A,15A,15B +hustler 'hVsl@R K6% 2 +hustlers 'hVsl@z Kj% 2 +hustles 'hVslz Ja% 22A,2C,6A,15A,15B +hustling 'hVslIN Jb% 22A,2C,6A,15A,15B +hut hVt K6% 1 +hutch hVtS K7% 1 +hutches 'hVtSIz Kj% 2 +hutment 'hVtm@nt K6$ 2 +hutments 'hVtm@nts Kj$ 2 +huts hVts Kj% 1 +hutted 'hVtId OA$ 2 +hyacinth 'haI@sInT K6% 3 +hyacinths 'haI@sInTs Kj% 3 +hyaena haI'in@ K6$ 3 +hyaenas haI'in@z Kj$ 3 +hybrid 'haIbrId K6%,OA% 2 +hybridize 'haIbrIdaIz J2$ 32A,6A +hybridized 'haIbrIdaIzd Jc$,Jd$ 32A,6A +hybridizes 'haIbrIdaIzIz Ja$ 42A,6A +hybridizing 'haIbrIdaIzIN Jb$ 42A,6A +hybrids 'haIbrIdz Kj% 2 +hydra 'haIdr@ K6$ 2 +hydrangea haI'dreIndZ@ K6% 3 +hydrangeas haI'dreIndZ@z Kj% 3 +hydrant 'haIdr@nt K6% 2 +hydrants 'haIdr@nts Kj% 2 +hydras 'haIdr@z Kj% 2 +hydrate 'haIdreIt J2$,K6$ 2 +hydrated 'haIdreItId Jc$,Jd$ 3 +hydrates 'haIdreIts Ja$,Kj$ 2 +hydrating 'haIdreItIN Jb$ 3 +hydraulic haI'drOlIk OA% 3 +hydraulicly haI'drOlIklI Pu% 4 +hydraulics haI'drOlIks Lk% 3 +hydrocarbon ,haIdr@'kAb@n K6% 4 +hydrocarbons ,haIdr@'kAb@nz Kj% 4 +hydrochloric ,haIdr@'kl0rIk OA% 4 +hydroelectric ,haIdr@UI'lektrIk OA% 5 +hydrofoil 'haIdr@foIl K6% 3 +hydrofoils 'haIdr@foIlz Kj% 3 +hydrogen 'haIdr@dZ@n L@% 3 +hydropathic ,haIdr@'p&TIk OA$ 4 +hydropathy haI'dr0p@TI L@$ 4 +hydrophobia ,haIdr@'f@UbI@ L@% 5 +hydroplane 'haIdr@pleIn K6% 3 +hydroplanes 'haIdr@pleInz Kj% 3 +hydroponics ,haIdr@'p0nIks Lk$ 4 +hyena haI'in@ K6% 3 +hyenas haI'in@z Kj% 3 +hygiene 'haIdZin L@% 2 +hygienic haI'dZinIk OA% 3 +hygienically haI'dZinIklI Pu% 4 +hying 'haIIN Ib$ 2 +hymen 'haIm@n K6$ 2 +hymens 'haIm@nz Kj$ 2 +hymn hIm H0%,K6% 1 +hymnal 'hImn@l K6% 2 +hymnals 'hImn@lz Kj% 2 +hymned hImd Hc%,Hd% 1 +hymning 'hImIN Hb% 2 +hymns hImz Ha%,Kj% 1 +hyperbola haI'p3b@l@ K6$ 4 +hyperbolas haI'p3b@l@z Kj$ 4 +hyperbole haI'p3b@lI M6% 4 +hyperboles haI'p3b@lIz Mj% 4 +hyperbolic ,haIp@'b0lIk OA$ 4 +hypercritical ,haIp@'krItIkl OA% 5 +hypermarket 'haIp@mAkIt K6% 4 +hypermarkets 'haIp@mAkIts Kj% 4 +hypersensitive ,haIp@'sensItIv OA% 5 +hyphen 'haIfn H0%,K6% 2 +hyphenate 'haIf@neIt H2% 3 +hyphenated 'haIf@neItId Hc%,Hd% 4 +hyphenates 'haIf@neIts Ha% 3 +hyphenating 'haIf@neItIN Hb% 4 +hyphened 'haIfnd Hc$,Hd% 2 +hyphening 'haIfnIN Hb$ 3 +hyphens 'haIfnz Ha$,Kj% 2 +hypnoses 'hIpn@Usiz Kj% 3 +hypnosis hIp'n@UsIs Mi% 3 +hypnotic hIp'n0tIk OA% 3 +hypnotism 'hIpn@tIz@m L@% 4 +hypnotist 'hIpn@tIst K6% 3 +hypnotists 'hIpn@tIsts Kj% 3 +hypnotize 'hIpn@taIz H2% 36A +hypnotized 'hIpn@taIzd Hc%,Hd% 36A +hypnotizes 'hIpn@taIzIz Ha% 46A +hypnotizing 'hIpn@taIzIN Hb% 46A +hypo 'haIp@U L@$ 2 +hypochondria ,haIp@'k0ndrI@ M6% 5 +hypochondriac ,haIp@'k0ndrI&k K6%,OA% 5 +hypochondriacal ,haIp@k@n'draI@kl OA% 6 +hypochondriacs ,haIp@'k0ndrI&ks Kj% 5 +hypochondrias ,haIp@'k0ndrI@z Mj$ 5 +hypocrisies hI'p0kr@sIz Mj$ 4 +hypocrisy hI'p0kr@sI M8% 4 +hypocrite 'hIp@krIt K6% 3 +hypocrites 'hIp@krIts Kj% 3 +hypocritical ,hIp@'krItIkl OA% 5 +hypocritically ,hIp@'krItIklI Pu% 5 +hypodermic ,haIp@'d3mIk K6$,OA% 4 +hypodermics ,haIp@'d3mIks Kj$ 4 +hypotenuse ,haI'p0t@njuz K6% 4 +hypotenuses ,haI'p0t@njuzIz Kj$ 5 +hypothecate haI'p0TIkeIt H2$ 4 +hypothecated haI'p0TIkeItId Hc$,Hd$ 5 +hypothecates haI'p0TIkeIts Ha$ 4 +hypothecating haI'p0TIkeItIN Hb$ 5 +hypotheses haI'p0TIsiz Kj% 4 +hypothesis haI'p0T@sIs Ki% 4 +hypothetical ,haIp@'TetIkl OA% 5 +hyssop 'hIs@p L@$ 2 +hysteria hI'stI@rI@ L@% 4 +hysterical hI'sterIkl OA% 4 +hysterically hI'sterIklI Pu% 4 +hysterics hI'sterIks Lk% 3 +i aI Ki$ 1 +i's aIz Kj$ 1 +iamb 'aI&m K6$ 2 +iambi aI'&mbaI Kj$ 3 +iambic aI'&mbIk OA$ 3 +iambics aI'&mbIks Lk$ 3 +iambs 'aI&mz Kj$ 2 +iambus aI'&mb@s K7$ 3 +iambuses aI'&mb@sIz Kj$ 4 +ibex 'aIbeks K7$ 2 +ibexes 'aIbeksIz Kj$ 3 +ibid I'bId Y~% 2 +ibidem 'IbIdem Pu$ 3 +ibis 'aIbIs K7$ 2 +ibises 'aIbIsIz Kj$ 3 +ice aIs J2%,M6% 12C,6A,15B +ice-axe 'aIs-&ks K6% 2 +ice-axes 'aIs-&ksIz Kj% 3 +ice-cream aIs-'krim M6% 2 +ice-creams aIs-'krimz Mj% 2 +ice-lollies aIs-'l0lIz Kj% 3 +ice-lolly aIs-'l0lI K8% 3 +ice-show 'aIs-S@U K6% 2 +ice-shows 'aIs-S@Uz Kj% 2 +ice-skate 'aIs-skeIt I2%,K6% 2 +ice-skated 'aIs-skeItId Ic%,Id% 3 +ice-skates 'aIs-skeIts Ia%,Kj% 2 +ice-skating 'aIs-skeItIN Ib%,L@% 3 +ice-tray 'aIs-treI K6% 2 +ice-trays 'aIs-treIz Kj% 2 +iceberg 'aIsb3g K6% 2 +icebergs 'aIsb3gz Kj% 2 +iceboat 'aIsb@Ut K6$ 2 +iceboats 'aIsb@Uts Kj$ 2 +icebound 'aIsbaUnd OA% 2 +icebox 'aIsb0ks K7% 2 +iceboxes 'aIsb0ksIz Kj% 3 +icebreaker 'aIsbreIk@R K6% 3 +icebreakers 'aIsbreIk@z Kj% 3 +icecap 'aIsk&p K6% 2 +icecaps 'aIsk&ps Kj% 2 +icecube 'aIskjub K6% 2 +icecubes 'aIskjubz Kj% 2 +iced aIst Jc%,Jd% 12C,6A,15B +icefall 'aIsfOl K6$ 2 +icefalls 'aIsfOlz Kj$ 2 +icefield 'aIsfild K6% 2 +icefields 'aIsfildz Kj% 2 +icefloe 'aIsfl@U K6% 2 +icefloes 'aIsfl@Uz Kj% 2 +icefree 'aIsfri OA$ 2 +icehouse 'aIshaUs K6% 2 +icehouses 'aIshaUzIz Kj% 3 +iceman 'aIsm&n Ki$ 2 +icemen 'aIsmen Kj$ 2 +icepack 'aIsp&k K6% 2 +icepacks 'aIsp&ks Kj% 2 +icepick 'aIspIk K6% 2 +icepicks 'aIspIks Kj% 2 +icerink 'aIsrINk K6% 2 +icerinks 'aIsrINks Kj% 2 +ices 'aIsIz Ja%,Mj% 22C,6A,15B +ichneumon Ik'njum@n K6$ 3 +ichneumon-flies Ik'njum@n-flaIz Kj$ 4 +ichneumon-fly Ik'njum@n-flaI K8$ 4 +ichneumons Ik'njum@nz Kj$ 3 +icicle 'aIsIkl K6% 3 +icicles 'aIsIklz Kj% 3 +icier 'aIsI@R Or% 3 +iciest 'aIsIIst Os% 3 +icily 'aIsIlI Pu% 3 +icing 'aIsIN Jb%,L@% 22C,6A,15B +icon 'aIk0n K6% 2 +iconoclast aI'k0n@kl&st K6% 4 +iconoclasts aI'k0n@kl&sts Kj% 4 +icons 'aIk0nz Kj% 2 +icy 'aIsI OD% 2 +id Id Ki$ 1 +id est ,Id 'est Z-$ 2 +idea aI'dI@ K6* 3 +ideal aI'dI@l K6%,OA% 3 +idealism aI'dI@lIz@m L@% 5 +idealist aI'dI@lIst K6% 4 +idealistic aI,dI@'lIstIk OA% 5 +idealists aI'dI@lIsts Kj% 4 +idealization aI,dI@laI'zeISn K6% 6 +idealizations aI,dI@laI'zeISnz Kj% 6 +idealize aI'dI@laIz H2% 46A +idealized aI'dI@laIzd Hc%,Hd% 46A +idealizes aI'dI@laIzIz Ha% 56A +idealizing aI'dI@laIzIN Hb% 56A +ideally aI'dI@lI Pu% 4 +ideals aI'dI@lz Kj% 3 +ideas aI'dI@z Kj% 3 +idem 'Idem Y~$ 2 +identical aI'dentIkl OA% 4 +identically aI'dentIklI Pu% 4 +identifiable aI,dentI'faI@bl OA% 6 +identifiably aI,dentI'faI@blI Pu% 6 +identification aI,dentIfI'keISn L@% 6 +identified aI'dentIfaId Hc%,Hd% 43A,6A,14 +identifies aI'dentIfaIz Ha% 43A,6A,14 +identify aI'dentIfaI H3% 43A,6A,14 +identifying aI'dentIfaIIN Hb% 53A,6A,14 +identikit aI'dentIkIt K6% 4 +identikits aI'dentIkIts Kj$ 4 +identities aI'dentItIz Mj% 4 +identity aI'dentItI M8% 4 +ideogram 'IdI@gr&m K6$ 4 +ideograms 'IdI@gr&mz Kj$ 4 +ideograph 'IdI@grAf K6$ 4 +ideographic ,IdI@'gr&fIk OA$ 5 +ideographs 'IdI@grAfs Kj$ 4 +ideological ,aIdI@'l0dZIkl OA$ 6 +ideologically ,aIdI@'l0dZIklI Pu% 6 +ideologies ,aIdI'0l@dZIz Mj% 5 +ideology ,aIdI'0l@dZI M8% 5 +ides aIdz Kj$ 1 +idiocies 'IdI@sIz Mj% 4 +idiocy 'IdI@sI M8% 4 +idiolect 'IdI@lekt K6$ 4 +idiolects 'IdI@lekts Kj$ 4 +idiom 'IdI@m M6% 3 +idiomatic ,IdI@'m&tIk OA% 5 +idiomatically ,IdI@'m&tIklI Pu% 6 +idioms 'IdI@mz Mj% 3 +idiosyncrasies ,IdI@'sINkr@sIz Kj% 6 +idiosyncrasy ,IdI@'sINkr@sI K8% 6 +idiosyncratic ,IdI@sIN'kr&tIk OA% 6 +idiot 'IdI@t K6% 3 +idiotic ,IdI'0tIk OA% 4 +idiotically ,IdI'0tIklI Pu% 5 +idiots 'IdI@ts Kj% 3 +idle 'aIdl J2%,OB% 22A,2C,15B +idled 'aIdld Jc%,Jd% 22A,2C,15B +idleness 'aIdln@s L@% 3 +idler 'aIdl@R K6%,Or% 2 +idlers 'aIdl@z Kj% 2 +idles 'aIdlz Ja% 22A,2C,15B +idlest 'aIdlIst Os% 2 +idling 'aIdlIN Jb% 22A,2C,15B +idly 'aIdlI Pu% 2 +idol 'aIdl K6% 2 +idolater aI'd0l@t@R K6% 4 +idolaters aI'd0l@t@z Kj% 4 +idolatress aI'd0l@trIs K7$ 4 +idolatresses aI'd0l@trIsIz Kj$ 5 +idolatries aI'd0l@trIz Mj$ 4 +idolatrous aI'd0l@tr@s OA% 4 +idolatrously aI'd0l@tr@slI Pu% 5 +idolatry aI'd0l@trI M8% 4 +idolization ,aId@laI'zeISn K6% 5 +idolizations ,aId@laI'zeISnz Kj$ 5 +idolize 'aId@laIz H2% 36A +idolized 'aId@laIzd Hc%,Hd% 36A +idolizes 'aId@laIzIz Ha% 46A +idolizing 'aId@laIzIN Hb% 46A +idols 'aIdlz Kj% 2 +idyll 'IdIl K6% 2 +idyllic I'dIlIk OA% 3 +idylls 'IdIlz Kj% 2 +ie ,aI'i Y~% 2 +if If V-* 1 +igloo 'Iglu K6% 2 +igloos 'Igluz Kj% 2 +igneous 'IgnI@s OA$ 3 +ignes fatui ,Igniz 'f&tjUaI Kj$ 5 +ignis fatuus ,IgnIs 'f&tjU@s Ki$ 5 +ignite Ig'naIt J2% 22A,6A +ignited Ig'naItId Jc%,Jd% 32A,6A +ignites Ig'naIts Ja% 22A,6A +igniting Ig'naItIN Jb% 32A,6A +ignition Ig'nISn L@% 3 +ignoble Ig'n@Ubl OA% 3 +ignobly Ig'n@UblI Pu% 3 +ignominies 'Ign@mInIz Mj$ 4 +ignominious ,Ign@'mInI@s OA% 5 +ignominiously ,Ign@'mInI@slI Pu% 6 +ignominy 'Ign@mInI M8% 4 +ignoramus ,Ign@'reIm@s K7% 4 +ignoramuses ,Ign@'reIm@sIz Kj% 5 +ignorance 'Ign@r@ns L@% 3 +ignorant 'Ign@r@nt OA% 3 +ignorantly 'Ign@r@ntlI Pu% 4 +ignore Ig'nOR H2% 26A +ignored Ig'nOd Hc%,Hd% 26A +ignores Ig'nOz Ha% 26A +ignoring Ig'nOrIN Hb% 36A +iguana I'gwAn@ K6$ 3 +iguanas I'gwAn@z Kj$ 3 +ikon 'aIk0n K6$ 2 +ikons 'aIk0nz Kj$ 2 +ilex 'aIleks K7$ 2 +ilexes 'aIleksIz Kj$ 3 +ilk Ilk L@% 1 +ill Il M6$,OA%,Pu% 1 +ill-advised ,Il-@d'vaIzd OA% 3 +ill-affected ,Il-@'fektId OA$ 4 +ill-bred Il-'bred OA% 2 +ill-breeding Il-'bridIN L@% 3 +ill-disposed ,Il-dIs'p@Uzd OA% 3 +ill-fated Il-'feItId OA% 3 +ill-favoured Il-'feIv@d OA% 3 +ill-gotten Il-'g0t@n OA% 3 +ill-judged Il-'dZVdZd OA% 2 +ill-mannered Il-'m&n@d OA% 3 +ill-natured Il-'neItS@d OA% 3 +ill-omened Il-'@Umnd OA% 3 +ill-starred Il-'stAd OA% 2 +ill-timed Il-'taImd OA% 2 +ill-treat Il-'trit H0% 2 +ill-treated Il-'tritId Hc%,Hd% 3 +ill-treating Il-'tritIN Hb% 3 +ill-treatment Il-'tritm@nt L@% 3 +ill-treats Il-'trits Ha% 2 +ill-usage Il-'juzIdZ L@% 3 +ill-use Il-'juz H2$ 2 +ill-used Il-'juzd Hc$,Hd% 2 +ill-uses Il-'juzIz Ha$ 3 +ill-using Il-'juzIN Hb$ 3 +illegal I'ligl OA% 3 +illegalities ,IlI'g&lItIz Mj% 5 +illegality ,IlI'g&lItI M8% 5 +illegally I'lig@lI Pu% 4 +illegibility I,ledZ@'bIlItI L@% 6 +illegible I'ledZ@bl OA% 4 +illegibly I'ledZ@blI Pu% 4 +illegitimacy ,IlI'dZItIm@sI L@% 6 +illegitimate ,IlI'dZItIm@t K9%,OA% 5 +illegitimately ,IlI'dZItIm@tlI Pu% 6 +illiberal I'lIb@r@l OA% 4 +illiberality I,lIb@'r&lItI L@$ 6 +illiberally I'lIb@r@lI Pu% 5 +illicit I'lIsIt OA% 3 +illicitly I'lIsItlI Pu% 4 +illimitable I'lImIt@bl OA% 5 +illiteracies I'lIt@r@sIz Mj$ 5 +illiteracy I'lIt@r@sI M8% 5 +illiterate I'lIt@r@t K6%,OA% 4 +illiterates I'lIt@r@ts Kj% 4 +illness 'Iln@s M7% 2 +illnesses 'Iln@sIz Mj% 3 +illogical I'l0dZIkl OA% 4 +illogicalities I,l0dZI'k&lItIz Mj% 6 +illogicality I,l0dZI'k&lItI M8% 6 +illogically I'l0dZIklI Pu% 4 +illogicalness I'l0dZIkln@s L@$ 5 +ills Ilz Mj% 1 +illume I'lum H2$ 2 +illumed I'lumd Hc$,Hd$ 2 +illumes I'lumz Ha$ 2 +illuminate I'lumIneIt H2% 46A +illuminated I'lumIneItId Hc%,Hd% 56A +illuminates I'lumIneIts Ha% 46A +illuminating I'lumIneItIN Hb% 56A +illumination I,lumI'neISn M6% 5 +illuminations I,lumI'neISnz Mj% 5 +illumine I'lumIn H2% 36A +illumined I'lumInd Hc%,Hd% 36A +illumines I'lumInz Ha% 36A +illuming I'lumIN Hb$ 3 +illumining I'lumInIN Hb$ 46A +illusion I'luZn M6% 3 +illusionist I'luZ@nIst K6% 4 +illusionists I'luZ@nIsts Kj% 4 +illusions I'luZnz Mj% 3 +illusive I'lusIv OA$ 3 +illusory I'lus@rI OA% 4 +illustrate 'Il@streIt H2% 36A +illustrated 'Il@streItId Hc%,Hd% 46A +illustrates 'Il@streIts Ha% 36A +illustrating 'Il@streItIN Hb% 46A +illustration ,Il@'streISn M6% 4 +illustrations ,Il@'streISnz Mj% 4 +illustrative 'Il@str@tIv OA% 4 +illustrator 'Il@streIt@R K6% 4 +illustrators 'Il@streIt@z Kj% 4 +illustrious I'lVstrI@s OA% 4 +illustriously I'lVstrI@slI Pu% 5 +image 'ImIdZ H2$,K6% 26A +imaged 'ImIdZd Hc$,Hd$ 26A +imagery 'ImIdZ@rI L@% 4 +images 'ImIdZIz Ha$,Kj% 36A +imaginable I'm&dZIn@bl OA% 5 +imaginary I'm&dZIn@rI OA% 5 +imagination I,m&dZI'neISn M6% 5 +imaginations I,m&dZI'neISnz Mj% 5 +imaginative I'm&dZIn@tIv OA% 5 +imaginatively I'm&dZIn@tIvlI Pu% 6 +imagine I'm&dZIn H2% 36A,6C,9,10,16B,19A,19C,25 +imagined I'm&dZInd Hc%,Hd% 36A,6C,9,10,16B,19A,19C,25 +imagines I'm&dZInz Ha% 36A,6C,9,10,16B,19A,19C,25 +imaging 'ImIdZIN Hb$ 36A +imagining I'm&dZInIN Hb% 46A,6C,9,10,16B,19A,19C,25 +imam I'mAm K6$ 2 +imams I'mAmz Kj$ 2 +imbalance ,Im'b&l@ns K6% 3 +imbalances ,Im'b&l@nsIz Kj$ 4 +imbecile 'Imb@sil K6%,OA% 3 +imbeciles 'Imb@silz Kj% 3 +imbecilities ,Imb@'sIlItIz Mj% 5 +imbecility ,Imb@'sIlItI M8% 5 +imbed Im'bed H4$ 2 +imbedded Im'bedId Hc$,Hd$ 3 +imbedding Im'bedIN Hb$ 3 +imbeds Im'bedz Ha$ 2 +imbibe Im'baIb H2% 2 +imbibed Im'baIbd Hc%,Hd% 2 +imbibes Im'baIbz Ha% 2 +imbibing Im'baIbIN Hb% 3 +imbroglio Im'br@UlI@U K6$ 4 +imbroglios Im'br@UlI@Uz Kj$ 4 +imbue Im'bju H2$ 214 +imbued Im'bjud Hc$,Hd% 214 +imbues Im'bjuz Ha$ 214 +imbuing Im'bjuIN Hb$ 314 +imitate 'ImIteIt H2% 36A +imitated 'ImIteItId Hc%,Hd% 46A +imitates 'ImIteIts Ha% 36A +imitating 'ImIteItIN Hb% 46A +imitation ,ImI'teISn M6% 4 +imitations ,ImI'teISnz Mj% 4 +imitative 'ImIt@tIv OA% 4 +imitator 'ImIteIt@R K6% 4 +imitators 'ImIteIt@z Kj% 4 +immaculate I'm&kjUl@t OA% 4 +immaculately I'm&kjUl@tlI Pu% 5 +immanence 'Im@n@ns K6$ 3 +immanences 'Im@n@nsIz Kj$ 4 +immanent 'Im@n@nt OA$ 3 +immaterial ,Im@'tI@rI@l OA% 5 +immature ,Im@'tjU@R OA% 3 +immaturity ,Im@'tjU@rItI L@% 5 +immeasurable I'meZ@r@bl OA% 5 +immeasurably I'meZ@r@blI Pu% 5 +immediacy I'midI@sI L@% 5 +immediate I'midI@t OA% 4 +immediately I'midI@tlI Pu%,V-% 5 +immemorial ,Im@'mOrI@l OA% 5 +immense I'mens OA% 2 +immensely I'menslI Pu% 3 +immensities I'mensItIz Mj% 4 +immensity I'mensItI M8% 4 +immerse I'm3s H2% 26A,14 +immersed I'm3st Hc%,Hd% 26A,14 +immerses I'm3sIz Ha% 36A,14 +immersing I'm3sIN Hb% 36A,14 +immersion I'm3Sn K6% 3 +immersions I'm3Snz Kj% 3 +immigrant 'ImIgr@nt K6% 3 +immigrants 'ImIgr@nts Kj% 3 +immigrate 'ImIgreIt I2% 32A,3A +immigrated 'ImIgreItId Ic%,Id% 42A,3A +immigrates 'ImIgreIts Ia% 32A,3A +immigrating 'ImIgreItIN Ib% 42A,3A +immigration ,ImI'greISn M6% 4 +immigrations ,ImI'greISnz Mj$ 4 +imminence 'ImIn@ns L@% 3 +imminent 'ImIn@nt OA% 3 +imminently 'ImIn@ntlI Pu% 4 +immobile I'm@UbaIl OA% 3 +immobility ,Im@'bIlItI L@% 5 +immobilization I,m@UbIlaI'zeISn L@% 6 +immobilize I'm@UbIlaIz H2% 46A +immobilized I'm@UbIlaIzd Hc%,Hd% 46A +immobilizes I'm@UbIlaIzIz Ha% 56A +immobilizing I'm@UbIlaIzIN Hb% 56A +immoderate I'm0d@r@t OA% 4 +immoderately I'm0d@r@tlI Pu% 5 +immodest I'm0dIst OA% 3 +immodesties I'm0dIstIz Mj$ 4 +immodestly I'm0dIstlI Pu% 4 +immodesty I'm0dIstI M8% 4 +immolate 'Im@leIt H2$ 36A,14 +immolated 'Im@leItId Hc$,Hd$ 46A,14 +immolates 'Im@leIts Ha$ 36A,14 +immolating 'Im@leItIN Hb$ 46A,14 +immolation ,Im@'leISn M6$ 4 +immolations ,Im@'leISnz Mj$ 4 +immoral I'm0r@l OA% 3 +immoralities ,Im@'r&lItIz Mj% 5 +immorality ,Im@'r&lItI M8% 5 +immorally I'm0r@lI Pu% 4 +immortal I'mOtl K6%,OA% 3 +immortality ,ImO't&lItI L@% 5 +immortalize I'mOt@laIz H2% 46A +immortalized I'mOt@laIzd Hc%,Hd% 46A +immortalizes I'mOt@laIzIz Ha% 56A +immortalizing I'mOt@laIzIN Hb% 56A +immortals I'mOtlz Kj% 3 +immovable I'muv@bl OA% 4 +immovably I'muv@blI Pu% 4 +immune I'mjun OA% 2 +immunity I'mjunItI L@% 4 +immunization ,ImjUnaI'zeISn L@% 5 +immunize 'ImjUnaIz H2% 36A,14 +immunized 'ImjUnaIzd Hc%,Hd% 36A,14 +immunizes 'ImjUnaIzIz Ha% 46A,14 +immunizing 'ImjUnaIzIN Hb% 46A,14 +immunology ,ImjU'n0l@dZI L@% 5 +immure I'mjU@R H2$ 26A +immured I'mjU@d Hc$,Hd$ 26A +immures I'mjU@z Ha$ 26A +immuring I'mjU@rIN Hb$ 36A +immutability I,mjut@'bIlItI L@% 6 +immutable I'mjut@bl OA% 4 +immutably I'mjut@blI Pu% 4 +imp Imp K6% 1 +impact 'Imp&kt M6% 2 +impact Im'p&kt H0$ 2 +impacted Im'p&ktId Hc%,Hd% 3 +impacting Im'p&ktIN Hb$ 3 +impacts 'Imp&kts Mj% 2 +impacts Im'p&kts Ha$ 2 +impair Im'pe@R H0% 26A +impaired Im'pe@d Hc%,Hd% 26A +impairing Im'pe@rIN Hb% 36A +impairment Im'pe@m@nt K6% 3 +impairments Im'pe@m@nts Kj$ 3 +impairs Im'pe@z Ha% 26A +impala Im'pAl@ K6$ 3 +impalas Im'pAl@z Kj$ 3 +impale Im'peIl H2% 26A,15A +impaled Im'peIld Hc%,Hd% 26A,15A +impalement Im'peIlm@nt K6$ 3 +impalements Im'peIlm@nts Kj$ 3 +impales Im'peIlz Ha% 26A,15A +impaling Im'peIlIN Hb% 36A,15A +impalpable Im'p&lp@bl OA$ 4 +impanel Im'p&nl H4$ 36A +impanelled Im'p&nld Hc$,Hd$ 36A +impanelling Im'p&n@lIN Hb$ 46A +impanels Im'p&nlz Ha$ 36A +impart Im'pAt H0% 26A,14 +imparted Im'pAtId Hc%,Hd% 36A,14 +impartial Im'pASl OA% 3 +impartiality ,Im,pASI'&lItI L@% 6 +impartially Im'pAS@lI Pu% 4 +imparting Im'pAtIN Hb% 36A,14 +imparts Im'pAts Ha% 26A,14 +impassable Im'pAs@bl OA% 4 +impasse '&mpAs K6% 2 +impasses '&mpAsIz Kj$ 3 +impassioned Im'p&Snd OA% 3 +impassive Im'p&sIv OA% 3 +impassively Im'p&sIvlI Pu% 4 +impassiveness Im'p&sIvn@s L@% 4 +impassivity ,Imp&'sIvItI L@$ 5 +impatience Im'peISns L@% 3 +impatient Im'peISnt OA% 3 +impatiently Im'peISntlI Pu% 4 +impeach Im'pitS H1% 26A,14 +impeached Im'pitSt Hc%,Hd% 26A,14 +impeaches Im'pitSIz Ha% 36A,14 +impeaching Im'pitSIN Hb% 36A,14 +impeachment Im'pitSm@nt M6% 3 +impeachments Im'pitSm@nts Mj% 3 +impeccable Im'pek@bl OA% 4 +impeccably Im'pek@blI Pu% 4 +impecunious ,ImpI'kjunI@s OA% 5 +impede Im'pid H2% 26A +impeded Im'pidId Hc%,Hd% 36A +impedes Im'pidz Ha% 26A +impediment Im'pedIm@nt K6% 4 +impedimenta Im,pedI'ment@ Kj% 5 +impediments Im'pedIm@nts Kj% 4 +impeding Im'pidIN Hb% 36A +impel Im'pel H4% 214,17 +impelled Im'peld Hc%,Hd% 214,17 +impeller Im'pel@R K6$ 3 +impellers Im'pel@z Kj$ 3 +impelling Im'pelIN Hb% 314,17 +impels Im'pelz Ha% 214,17 +impend Im'pend I0$ 2 +impended Im'pendId Ic$,Id$ 3 +impending Im'pendIN Ib% 3 +impends Im'pendz Ia$ 2 +impenetrable Im'penItr@bl OA% 5 +impenitence Im'penIt@ns L@$ 4 +impenitent Im'penIt@nt OA$ 4 +impenitently Im'penIt@ntlI Pu$ 5 +imperative Im'per@tIv OA% 4 +imperatively Im'per@tIvlI Pu% 5 +imperceptible ,Imp@'sept@bl OA% 5 +imperceptibly ,Imp@'sept@blI Pu% 5 +imperfect Im'p3fIkt Ki%,OA% 3 +imperfection ,Imp@'fekSn M6% 4 +imperfections ,Imp@'fekSnz Mj% 4 +imperfectly Im'p3fIktlI Pu% 4 +imperial Im'pI@rI@l K6$,OA% 4 +imperialism Im'pI@rI@lIz@m L@% 6 +imperialist Im'pI@rI@lIst K6% 5 +imperialistic Im,pI@rI@'lIstIk OA% 6 +imperialists Im'pI@rI@lIsts Kj% 5 +imperially Im'pI@rI@lI Pu% 5 +imperials Im'pI@rI@lz Kj$ 4 +imperil Im'per@l H4% 36A +imperilled Im'per@ld Hc%,Hd% 36A +imperilling Im'per@lIN Hb% 46A +imperils Im'per@lz Ha% 36A +imperious Im'pI@rI@s OA% 4 +imperiously Im'pI@rI@slI Pu% 5 +imperiousness Im'pI@rI@sn@s L@% 5 +imperishable Im'perIS@bl OA% 5 +impermanence Im'p3m@n@ns L@% 4 +impermanent Im'p3m@n@nt OA% 4 +impermeable Im'p3mI@bl OA% 4 +impersonal ,Im'p3s@nl OA% 4 +impersonally ,Im'p3s@n@lI Pu% 5 +impersonate Im'p3s@neIt H2% 46A +impersonated Im'p3s@neItId Hc%,Hd% 56A +impersonates Im'p3s@neIts Ha% 46A +impersonating Im'p3s@neItIN Hb% 56A +impersonation Im,p3s@'neISn M6% 5 +impersonations Im,p3s@'neISnz Mj% 5 +impersonator Im'p3s@neIt@R K6% 5 +impersonators Im'p3s@neIt@z Kj% 5 +impertinence Im'p3tIn@ns M6% 4 +impertinences Im'p3tIn@nsIz Mj% 5 +impertinent Im'p3tIn@nt OA% 4 +impertinently Im'p3tIn@ntlI Pu% 5 +imperturbability ,Imp@,t3b@'bIlItI L@% 7 +imperturbable ,Imp@'t3b@bl OA% 5 +impervious Im'p3vI@s OA% 4 +impetigo ,ImpI'taIg@U L@$ 4 +impetuosities Im,petSU'0sItIz Mj$ 6 +impetuosity Im,petSU'0sItI M8% 6 +impetuous Im'petSU@s OA% 4 +impetuously Im'petSU@slI Pu% 5 +impetus 'ImpIt@s Mi% 3 +impieties Im'paI@tIz Mj$ 4 +impiety Im'paI@tI M8% 4 +impinge Im'pIndZ I2% 23A +impinged Im'pIndZd Ic%,Id% 23A +impingement Im'pIndZm@nt K6$ 3 +impingements Im'pIndZm@nts Kj$ 3 +impinges Im'pIndZIz Ia% 33A +impinging Im'pIndZIN Ib% 33A +impious 'ImpI@s OA% 3 +impiously 'ImpI@slI Pu% 4 +impish 'ImpIS OA% 2 +impishly 'ImpISlI Pu% 3 +impishness 'ImpISn@s L@% 3 +implacable Im'pl&k@bl OA% 4 +implant Im'plAnt H0% 26A,14 +implanted Im'plAntId Hc%,Hd% 36A,14 +implanting Im'plAntIN Hb% 36A,14 +implants Im'plAnts Ha% 26A,14 +implausibility Im,plOzI'bIlItI L@% 6 +implausible Im'plOzIbl OA% 4 +implausibly Im'plOzIblI Pu% 4 +implement 'ImplIm@nt K6% 3 +implement 'ImplIment H0% 36A +implementation ,ImplImen'teISn K6% 5 +implementations ,ImplImen'teISnz Kj% 5 +implemented 'ImplImentId Hc%,Hd% 46A +implementing 'ImplImentIN Hb% 46A +implements 'ImplIm@nts Kj% 3 +implements 'ImplIments Ha% 36A +implicate 'ImplIkeIt H2% 36A,14 +implicated 'ImplIkeItId Hc%,Hd% 46A,14 +implicates 'ImplIkeIts Ha% 36A,14 +implicating 'ImplIkeItIN Hb% 46A,14 +implication ,ImplI'keISn M6% 4 +implications ,ImplI'keISnz Mj% 4 +implicit Im'plIsIt OA% 3 +implicitly Im'plIsItlI Pu% 4 +implied Im'plaId Hc%,Hd% 26A,9 +implies Im'plaIz Ha% 26A,9 +implore Im'plOR H2% 26A,14,17 +implored Im'plOd Hc%,Hd% 26A,14,17 +implores Im'plOz Ha% 26A,14,17 +imploring Im'plOrIN Hb% 36A,14,17 +imploringly Im'plOrINlI Pu% 4 +implosion Im'pl@UZn M6$ 3 +implosions Im'pl@UZnz Mj$ 3 +imply Im'plaI H3% 26A,9 +implying Im'plaIIN Hb% 36A,9 +impolite ,Imp@'laIt OA% 3 +impolitely ,Imp@'laItlI Pu% 4 +impoliteness ,Imp@'laItn@s L@% 4 +impolitic Im'p0l@tIk OA% 4 +imponderable Im'p0nd@r@bl K6%,OA% 5 +imponderables Im'p0nd@r@blz Kj% 5 +import 'ImpOt M6% 2 +import Im'pOt H0% 26A,9,14 +importance Im'pOtns L@% 3 +important Im'pOtnt OA* 3 +importantly Im'pOtntlI Pu% 4 +importation ,ImpO'teISn M6% 4 +importations ,ImpO'teISnz Mj$ 4 +imported Im'pOtId Hc%,Hd% 36A,9,14 +importer Im'pOt@R K6% 3 +importers Im'pOt@z Kj% 3 +importing Im'pOtIN Hb% 36A,9,14 +imports 'ImpOts Mj% 2 +imports Im'pOts Ha% 26A,9,14 +importunate Im'pOtSUn@t OA% 4 +importunately Im'pOtSUn@tlI Pu% 5 +importune ,Imp@'tjun H2% 36A,9,14,17 +importuned ,Imp@'tjund Hc%,Hd% 36A,9,14,17 +importunes ,Imp@'tjunz Ha% 36A,9,14,17 +importuning ,Imp@'tjunIN Hb% 46A,9,14,17 +importunity ,Imp@'tjunItI L@% 5 +impose Im'p@Uz J2% 23A,14 +imposed Im'p@Uzd Jc%,Jd% 23A,14 +imposes Im'p@UzIz Ja% 33A,14 +imposing Im'p@UzIN Jb%,OA% 33A,14 +imposingly Im'p@UzINlI Pu% 4 +imposition ,Imp@'zISn M6% 4 +impositions ,Imp@'zISnz Mj% 4 +impossibilities Im,p0s@'bIlItIz Mj% 6 +impossibility Im,p0s@'bIlItI M8% 6 +impossible Im'p0s@bl OA% 4 +impossibly Im'p0s@blI Pu% 4 +impostor Im'p0st@R K6% 3 +impostors Im'p0st@z Kj% 3 +imposture Im'p0stS@R M6$ 3 +impostures Im'p0stS@z Mj$ 3 +impotence 'Imp@t@ns L@% 3 +impotent 'Imp@t@nt OA% 3 +impotently 'Imp@t@ntlI Pu% 4 +impound Im'paUnd H0% 26A +impounded Im'paUndId Hc%,Hd% 36A +impounding Im'paUndIN Hb% 36A +impounds Im'paUndz Ha% 26A +impoverish Im'p0v@rIS H1% 46A +impoverished Im'p0v@rISt Hc%,Hd% 46A +impoverishes Im'p0v@rISIz Ha% 56A +impoverishing Im'p0v@rISIN Hb% 56A +impoverishment Im'p0v@rISm@nt K6% 5 +impoverishments Im'p0v@rISm@nts Kj$ 5 +impracticability Im,pr&ktIk@'bIlItI L@% 7 +impracticable Im'pr&ktIk@bl OA% 5 +impracticableness Im'pr&ktIk@bln@s L@$ 6 +impracticably Im'pr&ktIk@blI Pu% 5 +impractical Im'pr&ktIkl OA% 4 +imprecate 'ImprIkeIt H2$ 314 +imprecated 'ImprIkeItId Hc$,Hd$ 414 +imprecates 'ImprIkeIts Ha$ 314 +imprecating 'ImprIkeItIN Hb$ 414 +imprecation ,ImprI'keISn K6$ 4 +imprecations ,ImprI'keISnz Kj$ 4 +imprecise ,ImprI'saIs OA% 3 +imprecisely ,ImprI'saIslI Pu% 4 +imprecision ,ImprI'sIZn L@% 4 +impregnability Im,pregn@'bIlItI L@% 6 +impregnable Im'pregn@bl OA% 4 +impregnably Im'pregn@blI Pu% 4 +impregnate 'ImpregneIt H2% 36A,14 +impregnated 'ImpregneItId Hc%,Hd% 46A,14 +impregnates 'ImpregneIts Ha% 36A,14 +impregnating 'ImpregneItIN Hb% 46A,14 +impresario ,ImprI'sArI@U K6% 5 +impresarios ,ImprI'sArI@Uz Kj% 5 +impress 'Impres K7$ 2 +impress Im'pres H1% 26A,14 +impressed Im'prest Hc%,Hd% 26A,14 +impresses 'ImpresIz Kj$ 3 +impresses Im'presIz Ha% 36A,14 +impressing Im'presIN Hb% 36A,14 +impression Im'preSn K6% 3 +impressionable Im'preS@n@bl OA% 5 +impressionism Im'preS@nIz@m L@% 5 +impressionist Im'preS@nIst K6% 4 +impressionistic Im,preS@'nIstIk OA% 5 +impressionists Im'preS@nIsts Kj% 4 +impressions Im'preSnz Kj% 3 +impressive Im'presIv OA% 3 +impressively Im'presIvlI Pu% 4 +impressiveness Im'presIvn@s L@% 4 +imprimatur ,ImprI'meIt@R K6$ 4 +imprimaturs ,ImprI'meIt@z Kj$ 4 +imprint 'ImprInt K6% 2 +imprint Im'prInt H0% 214 +imprinted Im'prIntId Hc%,Hd% 314 +imprinting Im'prIntIN Hb% 314 +imprints 'ImprInts Kj% 2 +imprints Im'prInts Ha% 214 +imprison Im'prIzn H0% 36A +imprisoned Im'prIznd Hc%,Hd% 36A +imprisoning Im'prIznIN Hb% 46A +imprisonment Im'prIznm@nt L@% 4 +imprisons Im'prIznz Ha% 36A +improbabilities Im,pr0b@'bIlItIz Mj% 6 +improbability Im,pr0b@'bIlItI M8% 6 +improbable Im'pr0b@bl OA% 4 +improbably Im'pr0b@blI Pu% 4 +impromptu Im'pr0mptju K6%,OA%,Pu% 3 +impromptus Im'pr0mptjuz Kj$ 3 +improper Im'pr0p@R OA% 3 +improperly Im'pr0p@lI Pu% 4 +improprieties ,Impr@'praI@tIz Mj% 5 +impropriety ,Impr@'praI@tI M8% 5 +improve Im'pruv J2% 22A,3A,6A +improved Im'pruvd Jc%,Jd% 22A,3A,6A +improvement Im'pruvm@nt M6% 3 +improvements Im'pruvm@nts Mj% 3 +improver Im'pruv@R K6% 3 +improvers Im'pruv@z Kj% 3 +improves Im'pruvz Ja% 22A,3A,6A +improvidence Im'pr0vId@ns L@% 4 +improvident Im'pr0vId@nt OA% 4 +improvidently Im'pr0vId@ntlI Pu% 5 +improving Im'pruvIN Jb% 32A,3A,6A +improvisation ,Impr@vaI'zeISn M6% 5 +improvisations ,Impr@vaI'zeISnz Mj% 5 +improvise 'Impr@vaIz J2% 32A,6A +improvised 'Impr@vaIzd Jc%,Jd% 32A,6A +improvises 'Impr@vaIzIz Ja% 42A,6A +improvising 'Impr@vaIzIN Jb% 42A,6A +imprudence Im'prudns M6% 3 +imprudences Im'prudnsIz Mj$ 4 +imprudent Im'prudnt OA% 3 +imprudently Im'prudntlI Pu% 4 +imps Imps Kj% 1 +impudence 'ImpjUd@ns L@% 3 +impudent 'ImpjUd@nt OA% 3 +impudently 'ImpjUd@ntlI Pu% 4 +impugn Im'pjun H0$ 26A +impugned Im'pjund Hc$,Hd$ 26A +impugning Im'pjunIN Hb$ 36A +impugns Im'pjunz Ha$ 26A +impulse 'ImpVls M6% 2 +impulse-bought ,Imp@ls-'bOt Jc$,Jd$ 3 +impulse-buy ,Imp@ls-'baI J5$ 3 +impulse-buying ,Imp@ls-'baIIN Jb$ 4 +impulse-buys ,Imp@ls-'baIz Ja$ 3 +impulses 'ImpVlsIz Mj% 3 +impulsion Im'pVlSn M6$ 3 +impulsions Im'pVlSnz Mj$ 3 +impulsive Im'pVlsIv OA% 3 +impulsively Im'pVlsIvlI Pu% 4 +impulsiveness Im'pVlsIvn@s L@% 4 +impunity Im'pjunItI L@% 4 +impure Im'pjU@R OA% 2 +impurities Im'pjurItIz Mj% 4 +impurity Im'pjurItI M8% 4 +imputation ,ImpjU'teISn M6% 4 +imputations ,ImpjU'teISnz Mj$ 4 +impute Im'pjut H2% 214 +imputed Im'pjutId Hc%,Hd% 314 +imputes Im'pjuts Ha% 214 +imputing Im'pjutIN Hb% 314 +in In K6%,P+*,T-* 1 +in loco parentis In ,l@Uk@U p@'rentIs Pu% 6 +in memoriam ,In m@'mOrI@m Z-% 5 +in situ ,In 'sItju Pu% 3 +in toto In 't@Ut@U Pu$ 3 +in-chief In-'tSif Ot% 2 +in-fighting 'In-faItIN L@% 3 +in-laws 'In-lOz Kj% 2 +in-patient 'In-peISnt K6% 3 +in-patients 'In-peISnts Kj% 3 +in-service 'In-s3vIs Oq% 3 +in-tray 'In-treI K6% 2 +in-trays 'In-treIz Kj% 2 +inability ,In@'bIlItI L@% 5 +inaccessibility ,In&k,ses@'bIlItI L@% 7 +inaccessible ,In&k'ses@bl OA% 5 +inaccuracies In'&kj@r@sIz Mj% 5 +inaccuracy In'&kj@r@sI M8% 5 +inaccurate In'&kjUr@t OA% 4 +inaccurately In'&kjUr@tlI Pu% 5 +inaction In'&kSn L@% 3 +inactivate ,In'&ktIveIt H2% 4 +inactivated ,In'&ktIveItId Hc%,Hd% 5 +inactivates ,In'&ktIveIts Ha$ 4 +inactivating ,In'&ktIveItIN Hb$ 5 +inactive In'&ktIv OA% 3 +inactivity ,In&k'tIvItI L@% 5 +inadequacies In'&dIkw@sIz Mj% 5 +inadequacy In'&dIkw@sI M8% 5 +inadequate In'&dIkw@t OA% 4 +inadequately In'&dIkw@tlI Pu% 5 +inadmissible ,In@d'mIs@bl OA% 5 +inadvertence ,In@d'v3t@ns M6$ 4 +inadvertences ,In@d'v3t@nsIz Mj$ 5 +inadvertent ,In@d'v3t@nt OA% 4 +inadvertently ,In@d'v3t@ntlI Pu% 5 +inadvisability ,In@d,vaIz@b'IlItI L@% 7 +inadvisable ,In@d'vaIz@bl OA% 5 +inadvisably ,In@d'vaIz@blI Pu% 5 +inalienable ,In'eIlI@n@bl OA% 6 +inane I'neIn OA% 2 +inanely I'neInlI Pu% 3 +inanimate In'&nIm@t OA% 4 +inanities I'n&nItIz Mj% 4 +inanition ,In@'nISn L@$ 4 +inanity I'n&nItI M8% 4 +inapplicable In'&plIk@bl OA% 5 +inappreciable ,In@'priS@bl OA$ 5 +inappropriate ,In@'pr@UprI@t OA% 5 +inappropriately ,In@'pr@UprI@tlI Pu% 6 +inappropriateness ,In@'pr@UprI@tnIs L@% 6 +inapt In'&pt OA$ 2 +inaptitude In'&ptItjud L@$ 4 +inarticulate ,InA'tIkjUl@t OA% 5 +inasmuch as ,In@z'mVtS @z Pu% 4 +inattention ,In@'tenSn L@% 4 +inattentive ,In@'tentIv OA% 4 +inaudibility In,Od@'bIlItI L@% 6 +inaudible In'Od@bl OA% 4 +inaugural I'nOgjUr@l K6$,OA% 4 +inaugurals I'nOgjUr@lz Kj$ 4 +inaugurate I'nOgjUreIt H2% 46A +inaugurated I'nOgjUreItId Hc%,Hd% 56A +inaugurates I'nOgjUreIts Ha% 46A +inaugurating I'nOgjUreItIN Hb% 56A +inauguration I,nOgjU'reISn M6% 5 +inaugurations I,nOgjU'reISnz Mj% 5 +inauspicious ,InO'spIS@s OA% 4 +inauspiciously ,InO'spIS@slI Pu% 5 +inboard 'InbOd OA$ 2 +inborn ,In'bOn OA% 2 +inbound 'InbaUnd OA$ 2 +inbred ,In'bred OA% 2 +inbreeding ,In'bridIN L@% 3 +inbuilt ,In'bIlt OA% 2 +incalculable In'k&lkjUl@bl OA% 5 +incandescence ,Ink&n'desns L@% 4 +incandescent ,Ink&n'desnt OA% 4 +incantation ,Ink&n'teISn M6% 4 +incantations ,Ink&n'teISnz Mj% 4 +incapability In,keIp@'bIlItI L@% 6 +incapable In'keIp@bl OA% 4 +incapacitate ,Ink@'p&sIteIt H2% 56A,14 +incapacitated ,Ink@'p&sIteItId Hc%,Hd% 66A,14 +incapacitates ,Ink@'p&sIteIts Ha% 56A,14 +incapacitating ,Ink@'p&sIteItIN Hb% 66A,14 +incapacity ,Ink@'p&sItI L@% 5 +incarcerate In'kAs@reIt H2% 46A +incarcerated In'kAs@reItId Hc%,Hd% 56A +incarcerates In'kAs@reIts Ha% 46A +incarcerating In'kAs@reItIN Hb% 56A +incarceration In,kAs@'reISn K6% 5 +incarcerations In,kAs@'reISnz Kj% 5 +incarnate In'kAn@t OA% 3 +incarnate In'kAneIt H2$ 36A +incarnated In'kAneItId Hc$,Hd$ 46A +incarnates In'kAneIts Ha$ 36A +incarnating In'kAneItIN Hb$ 46A +incarnation ,InkA'neISn K6% 4 +incarnations ,InkA'neISnz Kj% 4 +incautious In'kOS@s OA% 3 +incautiously In'kOS@slI Pu% 4 +incendiaries In'sendI@rIz Kj% 5 +incendiarism In'sendI@rIz@m L@$ 6 +incendiary In'sendI@rI K8% 5 +incense 'Insens L@% 2 +incense In'sens H2% 26A +incensed In'senst Hc%,Hd% 26A +incenses In'sensIz Ha% 36A +incensing In'sensIN Hb% 36A +incentive In'sentIv M6% 3 +incentives In'sentIvz Mj% 3 +inception In'sepSn K6% 3 +inceptions In'sepSnz Kj$ 3 +incertitude In's3tItjud L@$ 4 +incessant In'sesnt OA% 3 +incessantly In'sesntlI Pu% 4 +incest 'Insest L@% 2 +incestuous In'sestjU@s OA% 4 +inch IntS J1%,K7% 12C,15A,15B +inched IntSt Jc%,Jd% 12C,15A,15B +inches 'IntSIz Ja%,Kj% 22C,15A,15B +inching 'IntSIN Jb% 22C,15A,15B +inchoate In'k@UIt OA$ 3 +inchoative In'k@U@tIv OA$ 4 +incidence 'InsId@ns K6% 3 +incidences 'InsId@nsIz Kj$ 4 +incident 'InsId@nt K6%,OA% 3 +incidental ,InsI'dentl OA% 4 +incidentally ,InsI'dent@lI Pu% 5 +incidents 'InsId@nts Kj% 3 +incinerate In'sIn@reIt H2% 46A +incinerated In'sIn@reItId Hc%,Hd% 56A +incinerates In'sIn@reIts Ha% 46A +incinerating In'sIn@reItIN Hb% 56A +incineration In,sIn@'reISn L@% 5 +incinerator In'sIn@reIt@R K6% 5 +incinerators In'sIn@reIt@z Kj% 5 +incipient In'sIpI@nt OA% 4 +incise In'saIz H2$ 26A +incised In'saIzd Hc$,Hd% 26A +incises In'saIzIz Ha$ 36A +incising In'saIzIN Hb$ 36A +incision In'sIZn M6% 3 +incisions In'sIZnz Mj% 3 +incisive In'saIsIv OA% 3 +incisively In'saIsIvlI Pu% 4 +incisor In'saIz@R K6% 3 +incisors In'saIz@z Kj% 3 +incite In'saIt H2% 26A,14,17 +incited In'saItId Hc%,Hd% 36A,14,17 +incitement In'saItm@nt M6% 3 +incitements In'saItm@nts Mj% 3 +incites In'saIts Ha% 26A,14,17 +inciting In'saItIN Hb% 36A,14,17 +incivilities ,InsI'vIlItIz Mj$ 5 +incivility ,InsI'vIlItI M8$ 5 +incl In'kludIN Y~% 3 +inclemency In'klem@nsI L@% 4 +inclement In'klem@nt OA% 3 +inclination ,InklI'neISn M6% 4 +inclinations ,InklI'neISnz Mj% 4 +incline 'InklaIn K6% 2 +incline In'klaIn J2% 22A,3A,4C,6A,15A,17 +inclined In'klaInd Jc%,Jd% 22A,3A,4C,6A,15A,17 +inclines 'InklaInz Kj% 2 +inclines In'klaInz Ja% 22A,3A,4C,6A,15A,17 +inclining In'klaInIN Jb% 32A,3A,4C,6A,15A,17 +inclose In'kl@Uz H2$ 26A,14 +inclosed In'kl@Uzd Hc$,Hd$ 26A,14 +incloses In'kl@UzIz Ha$ 36A,14 +inclosing In'kl@UzIN Hb$ 36A,14 +inclosure In'kl@UZ@R M6$ 3 +inclosures In'kl@UZ@z Mj$ 3 +include In'klud H2% 26A,6C +included In'kludId Hc%,Hd% 36A,6C +includes In'kludz Ha% 26A,6C +including In'kludIN Hb% 36A,6C +inclusion In'kluZn L@% 3 +inclusive In'klusIv OA% 3 +inclusively In'klusIvlI Pu% 4 +incognito ,Ink0g'nit@U OA%,Pu% 4 +incoherence ,Ink@U'hI@r@ns L@% 4 +incoherent ,Ink@U'hI@r@nt OA% 4 +incoherently ,Ink@U'hI@r@ntlI Pu% 5 +incombustible ,Ink@m'bVst@bl OA$ 5 +income 'INkVm K6% 2 +income-tax 'INk@m-t&ks M7% 3 +income-taxes 'INk@m-t&ksIz Mj% 4 +incomes 'INkVmz Kj% 2 +incoming ,In'kVmIN OA% 3 +incommensurable ,Ink@'menS@r@bl OA% 6 +incommensurate ,Ink@'menS@r@t OA$ 5 +incommode ,Ink@'m@Ud H2$ 36A +incommoded ,Ink@'m@UdId Hc$,Hd% 46A +incommodes ,Ink@'m@Udz Ha$ 36A +incommoding ,Ink@'m@UdIN Hb$ 46A +incommunicado ,Ink@,mjunI'kAd@U OA% 6 +incomparable In'k0mpr@bl OA% 4 +incomparably In'k0mpr@blI Pu% 4 +incompatibilities ,Ink@m,p&t@'bIlItIz Mj$ 7 +incompatibility ,Ink@m,p&t@'bIlItI M8% 7 +incompatible ,Ink@m'p&t@bl OA% 5 +incompetence In'k0mpIt@ns L@% 4 +incompetency In'k0mpIt@nsI L@$ 5 +incompetent In'k0mpIt@nt OA% 4 +incompetently In'k0mpIt@ntlI Pu% 5 +incomplete ,Ink@m'plit OA% 3 +incompletely ,Ink@m'plitlI Pu% 4 +incomprehensibility In,k0mprI,hens@'bIlItI L@% 8 +incomprehensible ,In,k0mprI'hens@bl OA% 6 +incomprehension In,k0mprI'henSn L@% 5 +incompressible Ink@m'pres@bl OA$ 5 +inconceivable ,Ink@n'siv@bl OA% 5 +inconclusive ,Ink@n'klusIv OA% 4 +inconclusively ,Ink@n'klusIvlI Pu% 5 +incongruities ,Ink0N'gruItIz Mj% 5 +incongruity ,Ink0N'gruItI M8% 5 +incongruous In'k0NgrU@s OA% 4 +incongruously In'k0NgrU@slI Pu% 5 +inconsequent In'k0nsIkw@nt OA$ 4 +inconsequential In,k0nsI'kwenSl OA% 5 +inconsequentially In,k0nsI'kwenS@lI Pu% 6 +inconsequently In'k0nsIkw@ntlI Pu% 5 +inconsiderable ,Ink@n'sIdr@bl OA% 5 +inconsiderate ,Ink@n'sId@r@t OA% 5 +inconsiderately ,Ink@n'sId@r@tlI Pu% 6 +inconsistencies ,Ink@n'sIst@nsIz Mj% 5 +inconsistency ,Ink@n'sIst@nsI M8% 5 +inconsistent ,Ink@n'sIst@nt OA% 4 +inconsistently ,Ink@n'sIst@ntlI Pu% 5 +inconsolable ,Ink@n's@Ul@bl OA% 5 +inconspicuous ,Ink@n'spIkjU@s OA% 5 +inconspicuously ,Ink@n'spIkjU@slI Pu% 6 +inconstancies In'k0nst@nsIz Mj$ 4 +inconstancy In'k0nst@nsI M8% 4 +inconstant In'k0nst@nt OA% 3 +incontestable ,Ink@n'test@bl OA% 5 +incontinence In'k0ntIn@ns L@% 4 +incontinent In'k0ntIn@nt OA% 4 +incontrovertible In,k0ntr@'v3t@bl OA% 6 +inconvenience ,Ink@n'vinI@ns H2%,M6% 56A +inconvenienced ,Ink@n'vinI@nst Hc%,Hd% 56A +inconveniences ,Ink@n'vinI@nsIz Ha%,Mj% 66A +inconveniencing ,Ink@n'vinI@nsIN Hb% 66A +inconvenient ,Ink@n'vinI@nt OA% 5 +inconveniently ,Ink@n'vinI@ntlI Pu% 6 +inconvertibility ,Ink@n,v3t@'bIlItI L@$ 7 +inconvertible ,Ink@n'v3t@bl OA$ 5 +incorporate In'kOp@r@t OA$ 4 +incorporate In'kOp@reIt J2% 42A,3A,6A,14,23 +incorporated In'kOp@reItId Jc%,Jd% 52A,3A,6A,14,23 +incorporates In'kOp@reIts Ja% 42A,3A,6A,14,23 +incorporating In'kOp@reItIN Jb% 52A,3A,6A,14,23 +incorporation In,kOp@'reISn L@% 5 +incorporeal ,InkO'pOrI@l OA$ 5 +incorrect ,Ink@'rekt OA% 3 +incorrectly ,Ink@'rektlI Pu% 4 +incorrectness ,Ink@'rektn@s L@% 4 +incorrigible In'k0rIdZ@bl OA% 5 +incorruptibility ,Ink@,rVpt@'bIlItI L@% 7 +incorruptible ,Ink@'rVpt@bl OA% 5 +increase 'INkris M6% 2 +increase In'kris J2% 22A,6A +increased In'krist Jc%,Jd% 22A,6A +increases 'INkrisIz Mj% 3 +increases In'krisIz Ja% 32A,6A +increasing In'krisIN Jb% 32A,6A +increasingly In'krisINlI Pu% 4 +incredibility In,kred@'bIlItI L@% 6 +incredible In'kred@bl OA% 4 +incredibly In'kred@blI Pu% 4 +incredulity ,InkrI'djulItI L@% 5 +incredulous In'kredjUl@s OA% 4 +incredulously In'kredjUl@slI Pu% 5 +increment 'Inkr@m@nt M6% 3 +incremental ,Inkr@'mentl OA% 4 +increments 'Inkr@m@nts Mj% 3 +incriminate In'krImIneIt H2% 46A +incriminated In'krImIneItId Hc%,Hd% 56A +incriminates In'krImIneIts Ha% 46A +incriminating In'krImIneItIN Hb% 56A +incrustation ,InkrV'steISn M6$ 4 +incrustations ,InkrV'steISnz Mj$ 4 +incubate 'InkjUbeIt J2% 32A,6A +incubated 'InkjUbeItId Jc%,Jd% 42A,6A +incubates 'InkjUbeIts Ja% 32A,6A +incubating 'InkjUbeItIN Jb% 42A,6A +incubation ,InkjU'beISn K6% 4 +incubations ,InkjU'beISnz Kj% 4 +incubator 'InkjUbeIt@R K6% 4 +incubators 'InkjUbeIt@z Kj% 4 +incubi 'INkjUbaI Kj$ 3 +incubus 'INkjUb@s K7$ 3 +incubuses 'INkjUb@sIz Kj$ 4 +inculcate 'InkVlkeIt H2% 36A,14 +inculcated 'InkVlkeItId Hc%,Hd% 46A,14 +inculcates 'InkVlkeIts Ha% 36A,14 +inculcating 'InkVlkeItIN Hb% 46A,14 +inculpate 'InkVlpeIt H2% 36A +inculpated 'InkVlpeItId Hc$,Hd$ 46A +inculpates 'InkVlpeIts Ha$ 36A +inculpating 'InkVlpeItIN Hb$ 46A +incumbencies In'kVmb@nsIz Kj$ 4 +incumbency In'kVmb@nsI K8$ 4 +incumbent In'kVmb@nt K6%,OA% 3 +incumbents In'kVmb@nts Kj% 3 +incur In'k3R H4% 26A +incurable In'kjU@r@bl K6%,OA% 4 +incurables In'kjU@r@blz Kj% 4 +incurably In'kjU@r@blI Pu% 4 +incurious In'kjU@rI@s OA% 4 +incurred In'k3d Hc%,Hd% 26A +incurring In'k3rIN Hb% 36A +incurs In'k3z Ha% 26A +incursion In'k3Sn K6% 3 +incursions In'k3Snz Kj% 3 +incurved ,In'k3vd OA$ 2 +indebted In'detId OA% 3 +indebtedness In'detIdn@s L@% 4 +indecencies In'dis@nsIz Mj% 4 +indecency In'dis@nsI M8% 4 +indecent In'disnt OA% 3 +indecently In'disntlI Pu% 4 +indecipherable ,IndI'saIfr@bl OA% 5 +indecision ,IndI'sIZn L@% 4 +indecisive ,IndI'saIsIv OA% 4 +indecisively ,IndI'saIsIvlI Pu% 5 +indecorous In'dek@r@s OA% 4 +indecorously In'dek@r@slI Pu% 5 +indecorum ,IndI'kOr@m L@$ 4 +indeed In'did Pu% 2 +indefatigable ,IndI'f&tIg@bl OA% 6 +indefeasible ,IndI'fiz@bl OA$ 5 +indefensible ,IndI'fens@bl OA% 5 +indefinable ,IndI'faIn@bl OA% 5 +indefinite In'defIn@t OA% 4 +indefinitely In'defIn@tlI Pu% 5 +indelible In'del@bl OA% 4 +indelibly In'del@blI Pu% 4 +indelicacies In'delIk@sIz Mj% 5 +indelicacy In'delIk@sI M8% 5 +indelicate In'delIk@t OA% 4 +indemnification In,demnIfI'keISn M6% 6 +indemnifications In,demnIfI'keISnz Mj$ 6 +indemnified In'demnIfaId Hc%,Hd% 46A,14 +indemnifies In'demnIfaIz Ha% 46A,14 +indemnify In'demnIfaI H3% 46A,14 +indemnifying In'demnIfaIIN Hb% 56A,14 +indemnities In'demnItIz Mj% 4 +indemnity In'demnItI M8% 4 +indent 'Indent K6% 2 +indent In'dent J0% 23A,6A +indentation ,Inden'teISn M6% 4 +indentations ,Inden'teISnz Mj% 4 +indented In'dentId Jc%,Jd% 33A,6A +indenting In'dentIN Jb% 33A,6A +indents 'Indents Kj$ 2 +indents In'dents Ja% 23A,6A +indenture In'dentS@R H2%,K6% 36A +indentured In'dentS@d Hc$,Hd$ 36A +indentures In'dentS@z Ha$,Kj$ 36A +indenturing In'dentS@rIN Hb$ 46A +independence ,IndI'pend@ns L@% 4 +independent ,IndI'pend@nt K6%,OA% 4 +independently ,IndI'pend@ntlI Pu% 5 +independents ,IndI'pend@nts Kj% 4 +indescribable ,IndI'skraIb@bl OA% 5 +indescribably ,IndI'skraIb@blI Pu% 5 +indestructibility ,IndI,strVkt@'bIlItI L@% 7 +indestructible ,IndI'strVkt@bl OA% 5 +indeterminable ,IndI't3mIn@bl OA% 6 +indeterminably ,IndI't3mIn@blI Pu% 6 +indeterminacy ,IndI't3mIn@sI L@% 6 +indeterminate ,IndI't3mIn@t OA% 5 +index 'Indeks H1%,K7% 26A +indexed 'Indekst Hc%,Hd% 26A +indexer 'Indeks@R K6% 3 +indexers 'Indeks@z Kj% 3 +indexes 'IndeksIz Ha%,Kj% 36A +indexing 'IndeksIN Hb% 36A +indicate 'IndIkeIt H2% 36A,9,14 +indicated 'IndIkeItId Hc%,Hd% 46A,9,14 +indicates 'IndIkeIts Ha% 36A,9,14 +indicating 'IndIkeItIN Hb% 46A,9,14 +indication ,IndI'keISn M6% 4 +indications ,IndI'keISnz Mj% 4 +indicative In'dIk@tIv OA% 4 +indicator 'IndIkeIt@R K6% 4 +indicators 'IndIkeIt@z Kj% 4 +indices 'IndIsiz Kj% 3 +indict In'daIt H0% 26A,14,16B +indictable In'daIt@bl OA% 4 +indicted In'daItId Hc%,Hd% 36A,14,16B +indicting In'daItIN Hb% 36A,14,16B +indictment In'daItm@nt M6% 3 +indictments In'daItm@nts Mj% 3 +indicts In'daIts Ha% 26A,14,16B +indifference In'dIfr@ns L@% 3 +indifferent In'dIfr@nt OA% 3 +indifferently In'dIfr@ntlI Pu% 4 +indigence 'IndIdZ@ns L@$ 3 +indigenous In'dIdZIn@s OA% 4 +indigent 'IndIdZ@nt OA$ 3 +indigestible ,IndI'dZ@st@bl OA% 5 +indigestion ,IndI'dZestS@n L@% 4 +indignant In'dIgn@nt OA% 3 +indignantly In'dIgn@ntlI Pu% 4 +indignation ,IndIg'neISn L@% 4 +indignities In'dIgnItIz Mj% 4 +indignity In'dIgnItI M8% 4 +indigo 'IndIg@U L@% 3 +indirect ,IndI'rekt OA% 3 +indirectly ,IndI'rektlI Pu% 4 +indirectness ,IndI'rektn@s L@% 4 +indiscernible ,IndI's3n@bl OA% 5 +indiscipline In'dIsIplIn L@% 4 +indiscreet ,IndI'skrit OA% 3 +indiscreetly ,IndI'skritlI Pu% 4 +indiscrete ,IndI'skrit OA$ 3 +indiscretion ,IndI'skreSn M6% 4 +indiscretions ,IndI'skreSnz Mj% 4 +indiscriminate ,IndI'skrImIn@t OA% 5 +indiscriminately ,IndI'skrImIn@tlI Pu% 6 +indispensability ,IndI,spens@'bIlItI L@$ 7 +indispensable ,IndI'spens@bl OA% 5 +indisposed ,IndI'sp@Uzd OA% 3 +indisposition ,IndIsp@'zISn M6% 5 +indispositions ,IndIsp@'zISnz Mj$ 5 +indisputable ,IndI'spjut@bl OA% 5 +indissoluble ,IndI's0ljUbl OA% 5 +indistinct ,IndI'stINkt OA% 3 +indistinctly ,IndI'stINktlI Pu% 4 +indistinctness ,IndI'stINktn@s L@$ 4 +indistinguishable ,IndI'stINgwIS@bl OA% 6 +indite In'daIt H2$ 26A +indited In'daItId Hc$,Hd$ 36A +indites In'daIts Ha$ 26A +inditing In'daItIN Hb$ 36A +individual ,IndI'vIdZU@l K6%,OA% 5 +individualism ,IndI'vIdZU@lIz@m L@% 7 +individualist ,IndI'vIdZU@lIst K6% 6 +individualistic ,IndI,vIdZU@'lIstIk OA% 7 +individualists ,IndI'vIdZU@lIsts Kj% 6 +individualities ,IndI,vIdZU'&lItIz Mj$ 7 +individuality ,IndI,vIdZU'&lItI M8% 7 +individualize ,IndI'vIdZU@laIz H2$ 66A +individualized ,IndI'vIdZU@laIzd Hc$,Hd$ 66A +individualizes ,IndI'vIdZU@laIzIz Ha$ 76A +individualizing ,IndI'vIdZU@laIzIN Hb$ 76A +individually ,IndI'vIdZU@lI Pu% 6 +individuals ,IndI'vIdZU@lz Kj% 5 +indivisible ,IndI'vIz@bl OA% 5 +indoctrinate In'd0ktrIneIt H2% 46A,14 +indoctrinated In'd0ktrIneItId Hc%,Hd% 56A,14 +indoctrinates In'd0ktrIneIts Ha% 46A,14 +indoctrinating In'd0ktrIneItIN Hb% 56A,14 +indoctrination In,d0ktrI'neISn L@% 5 +indolence 'Ind@l@ns L@% 3 +indolent 'Ind@l@nt OA% 3 +indolently 'Ind@l@ntlI Pu% 4 +indomitable In'd0mIt@bl OA% 5 +indoor 'IndOR OA% 2 +indoors ,In'dOz Pu% 2 +indorse In'dOs H2$ 26A +indorsed In'dOst Hc$,Hd$ 26A +indorses In'dOsIz Ha$ 36A +indorsing In'dOsIN Hb$ 36A +indrawn ,In'drOn OA% 2 +indubitable In'djubIt@bl OA% 5 +indubitably In'djubIt@blI Pu% 5 +induce In'djus H2% 26A,14,17 +induced In'djust Hc%,Hd% 26A,14,17 +inducement In'djusm@nt M6% 3 +inducements In'djusm@nts Mj% 3 +induces In'djusIz Ha% 36A,14,17 +inducing In'djusIN Hb% 36A,14,17 +induct In'dVkt H0$ 26A,14,16B +inducted In'dVktId Hc$,Hd$ 36A,14,16B +inducting In'dVktIN Hb$ 36A,14,16B +induction In'dVkSn K6% 3 +inductions In'dVkSnz Kj% 3 +inductive In'dVktIv OA% 3 +inducts In'dVkts Ha$ 26A,14,16B +indue In'dju H2$ 214 +indued In'djud Hc$,Hd$ 214 +indues In'djuz Ha$ 214 +induing In'djuIN Hb$ 314 +indulge In'dVldZ J2% 23A,6A +indulged In'dVldZd Jc%,Jd% 23A,6A +indulgence In'dVldZ@ns M6% 3 +indulgences In'dVldZ@nsIz Mj% 4 +indulgent In'dVldZ@nt OA% 3 +indulgently In'dVldZ@ntlI Pu% 4 +indulges In'dVldZIz Ja% 33A,6A +indulging In'dVldZIN Jb% 33A,6A +industrial In'dVstrI@l OA% 4 +industrialism In'dVstrI@lIz@m L@% 6 +industrialist In'dVstrI@lIst K6% 5 +industrialists In'dVstrI@lIsts Kj% 5 +industrialization In,dVstrI@laI'zeISn L@% 7 +industrialized In'dVstrI@laIzd OA% 5 +industries 'Ind@strIz Mj% 3 +industrious In'dVstrI@s OA% 4 +industriously In'dVstrI@slI Pu% 5 +industry 'Ind@strI M8% 3 +indwelling ,In'dwelIN OA$ 3 +inebriate I'nibrI@t K6$,OA% 4 +inebriate I'nibrIeIt H2$ 46A +inebriated I'nibrIeItId Hc$,Hd% 56A +inebriates I'nibrI@ts Kj$ 4 +inebriates I'nibrIeIts Ha$ 46A +inebriating I'nibrIeItIN Hb$ 56A +inebriation I,nibrI'eISn K6% 5 +inebriations I,nibrI'eISnz Kj$ 5 +inebriety ,InI'braI@tI L@$ 5 +inedible In'ed@bl OA% 4 +ineffable In'ef@bl OA% 4 +ineffably In'ef@blI Pu% 4 +ineffective ,InI'fektIv OA% 4 +ineffectively ,InI'fektIvlI Pu% 5 +ineffectiveness ,InI'fektIvn@s L@% 5 +ineffectual ,InI'fektSU@l OA% 5 +ineffectuality ,InI,fektSU'&lItI L@% 7 +ineffectually ,InI'fektSU@lI Pu% 6 +inefficiencies ,InI'fIS@nsIz Kj% 5 +inefficiency ,InI'fIS@nsI M8% 5 +inefficient ,InI'fISnt OA% 4 +inefficiently ,InI'fISntlI Pu% 5 +inelastic ,InI'l&stIk OA% 4 +inelegance ,In'elIg@ns K6% 4 +inelegances ,In'elIg@nsIz Kj$ 5 +inelegant ,In'elIg@nt OA% 4 +inelegantly ,In'elIg@ntlI Pu% 5 +ineligibility In,elIdZ@'bIlItI L@% 7 +ineligible In'elIdZ@bl OA% 5 +ineluctable ,InI'lVkt@bl OA% 5 +inept I'nept OA% 2 +ineptitude I'neptItjud M6% 4 +ineptitudes I'neptItjudz Mj$ 4 +ineptly I'neptlI Pu% 3 +inequalities ,InI'kw0lItIz Mj% 5 +inequality ,InI'kw0lItI M8% 5 +inequitable In'ekwIt@bl OA% 5 +inequities In'ekwItIz Mj$ 4 +inequity In'ekwItI M8$ 4 +ineradicable ,InI'r&dIk@bl OA% 6 +inert I'n3t OA% 2 +inertia I'n3S@ L@% 3 +inescapable ,InI'skeIp@bl OA% 5 +inescapably ,InI'skeIp@blI Pu% 5 +inessential ,InI'senSl K6$,OA% 4 +inessentials ,InI'senSlz Kj$ 4 +inestimable In'estIm@bl OA% 5 +inevitability In,evIt@'bIlItI L@% 7 +inevitable In'evIt@bl OA% 5 +inevitably In'evIt@blI Pu% 5 +inexact ,InIg'z&kt OA% 3 +inexactitude ,InIg'z&ktItjud M6% 5 +inexactitudes ,InIg'z&ktItjudz Mj$ 5 +inexcusable ,InIk'skjuz@bl OA% 5 +inexhaustible ,InIg'zOst@bl OA% 5 +inexorable ,In'eks@r@bl OA% 5 +inexorably ,In'eks@r@blI Pu% 5 +inexpediency ,InIk'spidI@nsI L@$ 6 +inexpedient ,InIk'spidI@nt OA$ 5 +inexpensive ,InIk'spensIv OA% 4 +inexpensively ,InIk'spensIvlI Pu% 5 +inexperience ,InIk'spI@rI@ns L@% 5 +inexperienced ,InIk'spI@rI@nst OA% 5 +inexpert In'eksp3t OA% 3 +inexpertly In'eksp3tlI Pu% 4 +inexpiable In'ekspI@bl OA$ 5 +inexplicable ,InIk'splIk@bl OA% 5 +inexpressible ,InIk'spres@bl OA% 5 +inextinguishable ,InIk'stINgwIS@bl OA% 6 +inextricable ,InIk'strIk@bl OA% 5 +inextricably ,InIk'strIk@blI Pu% 5 +infallibility In,f&l@'bIlItI L@% 6 +infallible In'f&l@bl OA% 4 +infamies 'Inf@mIz Mj% 3 +infamous 'Inf@m@s OA% 3 +infamy 'Inf@mI M8% 3 +infancies 'Inf@nsIz Mj$ 3 +infancy 'Inf@nsI M8% 3 +infant 'Inf@nt K6% 2 +infanticide In'f&ntIsaId L@% 4 +infantile 'Inf@ntaIl OA% 3 +infantilism In'f&ntIlIz@m L@% 5 +infantries 'Inf@ntrIz Mj% 3 +infantry 'Inf@ntrI M8% 3 +infantryman 'Inf@ntrIm@n Ki% 4 +infantrymen 'Inf@ntrIm@n Kj% 4 +infants 'Inf@nts Kj% 2 +infatuate In'f&tSUeIt H2$ 4 +infatuated In'f&tSUeItId Hc$,Hd% 5 +infatuates In'f&tSUeIts Ha$ 4 +infatuating In'f&tSUeItIN Hb$ 5 +infatuation In,f&tSU'eISn M6% 5 +infatuations In,f&tSU'eISnz Mj% 5 +infect In'fekt H0% 26A,14 +infected In'fektId Hc%,Hd% 36A,14 +infecting In'fektIN Hb% 36A,14 +infection In'fekSn M6% 3 +infections In'fekSnz Mj% 3 +infectious In'fekS@s OA% 3 +infects In'fekts Ha% 26A,14 +infer In'f3R H4% 26A,9,14 +inference 'Inf@r@ns M6% 3 +inferences 'Inf@r@nsIz Mj% 4 +inferential ,Inf@'renSl OA$ 4 +inferior In'fI@rI@R K6%,OA% 4 +inferiority In,fI@rI'0rItI L@% 6 +inferiors In'fI@rI@z Kj% 4 +infernal In'f3nl OA% 3 +infernally In'f3n@lI Pu% 4 +inferno In'f3n@U K6% 3 +infernos In'f3n@Uz Kj% 3 +inferred In'f3d Hc%,Hd% 26A,9,14 +inferring In'f3rIN Hb% 36A,9,14 +infers In'f3z Ha% 26A,9,14 +infertile In'f3taIl OA% 3 +infertility ,Inf@'tIlItI L@% 5 +infest In'fest H0% 26A +infestation ,Infe'steISn M6% 4 +infestations ,Infe'steISnz Mj% 4 +infested In'festId Hc%,Hd% 36A +infesting In'festIN Hb% 36A +infests In'fests Ha% 26A +infidel 'InfId@l K6% 3 +infidelities ,InfI'delItIz Mj% 5 +infidelity ,InfI'delItI M8% 5 +infidels 'InfId@lz Kj% 3 +infield 'Infild L@% 2 +infiltrate 'InfIltreIt J2% 32A,3A,6A,14 +infiltrated 'InfIltreItId Jc%,Jd% 42A,3A,6A,14 +infiltrates 'InfIltreIts Ja% 32A,3A,6A,14 +infiltrating 'InfIltreItIN Jb% 42A,3A,6A,14 +infiltration ,InfIl'treISn L@% 4 +infinite 'InfIn@t OA% 3 +infinitely 'InfIn@tlI Pu% 4 +infinitesimal ,InfInI'tesIml OA% 6 +infinitive In'fIn@tIv K6%,OA% 4 +infinitives In'fIn@tIvz Kj% 4 +infinitude In'fInItjud M6% 4 +infinitudes In'fInItjudz Mj$ 4 +infinity In'fInItI L@% 4 +infirm In'f3m OA% 2 +infirmaries In'f3m@rIz Kj% 4 +infirmary In'f3m@rI K8% 4 +infirmities In'f3mItIz Mj% 4 +infirmity In'f3mItI M8% 4 +inflame In'fleIm J2$ 22A,6A +inflamed In'fleImd Jc$,Jd% 22A,6A +inflames In'fleImz Ja$ 22A,6A +inflaming In'fleImIN Jb$ 32A,6A +inflammable In'fl&m@bl OA% 4 +inflammation ,Infl@'meISn M6% 4 +inflammations ,Infl@'meISnz Mj% 4 +inflammatory In'fl&m@trI OA% 4 +inflatable In'fleIt@bl OA% 4 +inflate In'fleIt H2% 26A,14 +inflated In'fleItId Hc%,Hd% 36A,14 +inflates In'fleIts Ha% 26A,14 +inflating In'fleItIN Hb% 36A,14 +inflation In'fleISn L@% 3 +inflationary In'fleISnrI OA% 4 +inflect In'flekt H0% 26A +inflected In'flektId Hc%,Hd% 36A +inflecting In'flektIN Hb% 36A +inflection In'flekSn M6% 3 +inflectional In'flekSn@l OA% 4 +inflections In'flekSnz Mj% 3 +inflects In'flekts Ha% 26A +inflexibility In,fleks@'bIlItI L@% 6 +inflexible In'fleks@bl OA% 4 +inflexibly In'fleks@blI Pu% 4 +inflexion In'flekSn M6$ 3 +inflexions In'flekSnz Mj$ 3 +inflict In'flIkt H0% 26A,14 +inflicted In'flIktId Hc%,Hd% 36A,14 +inflicting In'flIktIN Hb% 36A,14 +infliction In'flIkSn M6$ 3 +inflictions In'flIkSnz Mj$ 3 +inflicts In'flIkts Ha% 26A,14 +inflorescence ,InflO'resns L@$ 4 +inflow 'Infl@U M6$ 2 +inflows 'Infl@Uz Mj$ 2 +influence 'InflU@ns H2%,M6% 36A +influenced 'InflU@nst Hc%,Hd% 36A +influences 'InflU@nsIz Ha%,Mj% 46A +influencing 'InflU@nsIN Hb% 46A +influential ,InflU'enSl OA% 4 +influentially ,InflU'enS@lI Pu% 5 +influenza ,InflU'enz@ L@% 4 +influx 'InflVks M7% 2 +influxes 'InflVksIz Mj$ 3 +info 'Inf@U L@% 2 +inform In'fOm J0% 23A,6A,11,14,21 +informal In'fOml OA% 3 +informalities ,InfO'm&lItIz Mj% 5 +informality ,InfO'm&lItI M8% 5 +informally In'fOm@lI Pu% 4 +informant In'fOm@nt K6% 3 +informants In'fOm@nts Kj% 3 +information ,Inf@'meISn L@% 4 +informative In'fOm@tIv OA% 4 +informatively In'fOm@tIvlI Pu% 5 +informed In'fOmd Jc%,Jd% 23A,6A,11,14,21 +informer In'fOm@R K6% 3 +informers In'fOm@z Kj% 3 +informing In'fOmIN Jb% 33A,6A,11,14,21 +informs In'fOmz Ja% 23A,6A,11,14,21 +infra 'Infr@ Pu%,U-% 2 +infra dig ,Infr@ 'dIg Op$ 3 +infra-red ,Infr@-'red OA% 3 +infraction In'fr&kSn M6$ 3 +infractions In'fr&kSnz Mj$ 3 +infrastructure 'Infr@strVktS@R K6% 4 +infrastructures 'Infr@strVktS@z Kj$ 4 +infrequency In'frikw@nsI L@% 4 +infrequent In'frikw@nt OA% 3 +infrequently In'frikw@ntlI Pu% 4 +infringe In'frIndZ J2% 23A,6A +infringed In'frIndZd Jc%,Jd% 23A,6A +infringement In'frIndZm@nt M6% 3 +infringements In'frIndZm@nts Mj% 3 +infringes In'frIndZIz Ja% 33A,6A +infringing In'frIndZIN Jb% 33A,6A +infuriate In'fjU@rIeIt H2% 46A +infuriated In'fjU@rIeItId Hc%,Hd% 56A +infuriates In'fjU@rIeIts Ha% 46A +infuriating In'fjU@rIeItIN Hb% 56A +infuse In'fjuz J2$ 22A,6A,14 +infused In'fjuzd Jc$,Jd$ 22A,6A,14 +infuses In'fjuzIz Ja$ 32A,6A,14 +infusing In'fjuzIN Jb$ 32A,6A,14 +infusion In'fjuZn M6% 3 +infusions In'fjuZnz Mj% 3 +ing_enue '&nZeInju K6% 3 +ing_enues '&nZeInjuz Kj% 3 +ingathering 'Ing&D@rIN K6$ 4 +ingatherings 'Ing&D@rINz Kj$ 4 +ingenious In'dZinI@s OA% 4 +ingeniously In'dZinI@slI Pu% 5 +ingenuity ,IndZI'njuItI L@% 5 +ingenuous In'dZenjU@s OA% 4 +ingenuously In'dZenjU@slI Pu% 5 +ingenuousness In'dZenjU@sn@s L@% 5 +ingest In'dZest H0% 26A +ingested In'dZestId Hc%,Hd% 36A +ingesting In'dZestIN Hb% 36A +ingests In'dZests Ha% 26A +ingle-nook 'INgl-nUk K6$ 3 +ingle-nooks 'INgl-nUks Kj$ 3 +inglorious In'glOrI@s OA% 4 +ingloriously In'glOrI@slI Pu% 5 +ingoing 'Ing@UIN OA% 3 +ingot 'INg@t K6$ 2 +ingots 'INg@ts Kj$ 2 +ingraft In'grAft H0$ 26A,14 +ingrafted In'grAftId Hc$,Hd$ 36A,14 +ingrafting In'grAftIN Hb$ 36A,14 +ingrafts In'grAfts Ha$ 26A,14 +ingrained ,In'greInd OA% 2 +ingratiate In'greISIeIt H2% 414 +ingratiated In'greISIeItId Hc%,Hd% 514 +ingratiates In'greISIeIts Ha% 414 +ingratiating In'greISIeItIN Hb% 514 +ingratiatingly In'greISIeItINlI Pu% 6 +ingratitude In'gr&tItjud L@% 4 +ingredient In'gridI@nt K6% 4 +ingredients In'gridI@nts Kj% 4 +ingress 'Ingres L@$ 2 +ingrowing 'Ingr@UIN OA% 3 +inhabit In'h&bIt H0% 36A +inhabitable In'h&bIt@bl OA% 5 +inhabitant In'h&bIt@nt K6% 4 +inhabitants In'h&bIt@nts Kj% 4 +inhabited In'h&bItId Hc%,Hd% 46A +inhabiting In'h&bItIN Hb% 46A +inhabits In'h&bIts Ha% 36A +inhalation ,Inh@'leISn K6% 4 +inhalations ,Inh@'leISnz Kj% 4 +inhale In'heIl J2% 22A,6A +inhaled In'heIld Jc%,Jd% 22A,6A +inhaler In'heIl@R K6% 3 +inhalers In'heIl@z Kj% 3 +inhales In'heIlz Ja% 22A,6A +inhaling In'heIlIN Jb% 32A,6A +inharmonious ,InhA'm@UnI@s OA$ 5 +inherent In'hI@r@nt OA% 3 +inherently In'hI@r@ntlI Pu% 4 +inherit In'herIt J0% 32A,6A +inheritance In'herIt@ns M6% 4 +inheritances In'herIt@nsIz Mj% 5 +inherited In'herItId Jc%,Jd% 42A,6A +inheriting In'herItIN Jb% 42A,6A +inheritor In'herIt@R K6% 4 +inheritors In'herIt@z Kj% 4 +inherits In'herIts Ja% 32A,6A +inhibit In'hIbIt H0% 36A,14 +inhibited In'hIbItId Hc%,Hd% 46A,14 +inhibiting In'hIbItIN Hb% 46A,14 +inhibition ,InI'bISn M6% 4 +inhibitions ,InI'bISnz Mj% 4 +inhibitor In'hIbIt@R K6% 4 +inhibitors In'hIbIt@z Kj% 4 +inhibitory In'hIbItrI OA$ 4 +inhibits In'hIbIts Ha% 36A,14 +inhospitable ,Inh0'spIt@bl OA% 5 +inhuman In'hjum@n OA% 3 +inhumane ,Inhju'meIn OA% 3 +inhumanely ,Inhju'meInlI Pu% 4 +inhumanities ,Inhju'm&nItIz Mj$ 5 +inhumanity ,Inhju'm&nItI M8% 5 +inimical I'nImIkl OA% 4 +inimitable I'nImIt@bl OA% 5 +inimitably I'nImIt@blI Pu% 5 +iniquities I'nIkwItIz Mj% 4 +iniquitous I'nIkwIt@s OA% 4 +iniquitously I'nIkwIt@slI Pu% 5 +iniquity I'nIkwItI M8% 4 +initial I'nISl H4%,K6%,OA% 36A +initialled I'nISld Hc%,Hd% 36A +initialling I'nIS@lIN Hb% 46A +initially I'nIS@lI Pu% 4 +initials I'nISlz Ha%,Kj% 36A +initiate I'nISI@t K6%,OA% 4 +initiate I'nISIeIt H2% 46A,14 +initiated I'nISIeItId Hc%,Hd% 56A,14 +initiates I'nISI@ts Kj% 4 +initiates I'nISIeIts Ha% 46A,14 +initiating I'nISIeItIN Hb% 56A,14 +initiation I,nISI'eISn L@% 5 +initiative I'nIS@tIv M6% 4 +initiatives I'nIS@tIvz Mj% 4 +inject In'dZekt H0% 26A,14 +injected In'dZektId Hc%,Hd% 36A,14 +injecting In'dZektIN Hb% 36A,14 +injection In'dZekSn M6% 3 +injections In'dZekSnz Mj% 3 +injects In'dZekts Ha% 26A,14 +injudicious ,IndZu'dIS@s OA% 4 +injudiciously ,IndZu'dIS@slI Pu% 5 +injunction In'dZVNkSn K6% 3 +injunctions In'dZVNkSnz Kj% 3 +injure 'IndZ@R H2% 26A +injured 'IndZ@d Hc%,Hd%,OA% 26A +injures 'IndZ@z Ha% 26A +injuries 'IndZ@rIz Mj% 3 +injuring 'IndZ@rIN Hb% 36A +injurious In'dZU@rI@s OA% 4 +injury 'IndZ@rI M8% 3 +injustice In'dZVstIs M6% 3 +injustices In'dZVstIsIz Mj% 4 +ink INk H0%,M6% 16A,15B +ink-bottle 'INk-b0tl K6% 3 +ink-bottles 'INk-b0tlz Kj% 3 +ink-pad 'INk-p&d K6% 2 +ink-pads 'INk-p&dz Kj% 2 +ink-pot 'INk-p0t K6% 2 +ink-pots 'INk-p0ts Kj% 2 +inked INkt Hc%,Hd% 16A,15B +inkier 'INkI@R Or$ 3 +inkiest 'INkIIst Os$ 3 +inking 'INkIN Hb% 26A,15B +inkling 'INklIN K6% 2 +inklings 'INklINz Kj$ 2 +inks INks Ha%,Mj% 16A,15B +inkstand 'Inkst&nd K6% 2 +inkstands 'Inkst&ndz Kj% 2 +inkwell 'INkwel K6% 2 +inkwells 'INkwelz Kj% 2 +inky 'INkI OD% 2 +inlaid ,In'leId Hc$,Hd% 26A,14 +inland 'Inl@nd OA% 2 +inland In'l&nd Pu% 2 +inlay 'InleI M6% 2 +inlay ,In'leI H5$ 26A,14 +inlaying ,In'leIIN Hb$ 36A,14 +inlays 'InleIz Mj$ 2 +inlays ,In'leIz Ha$ 26A,14 +inlet 'Inlet K6% 2 +inlets 'Inlets Kj% 2 +inmate 'InmeIt K6% 2 +inmates 'InmeIts Kj% 2 +inmost 'Inm@Ust OA% 2 +inn In K6% 1 +innards 'In@dZ Kj% 2 +innate I'neIt OA% 2 +innately I'neItlI Pu% 3 +inner 'In@R OA% 2 +innermost 'In@m@Ust OA% 3 +inning 'InIN K6$ 2 +innings 'InINz K9% 2 +innkeeper 'Inkip@R K6% 3 +innkeepers 'Inkip@z Kj% 3 +innocence 'In@sns L@% 3 +innocent 'In@snt K6%,OA% 3 +innocently 'In@sntlI Pu% 4 +innocents 'In@snts Kj% 3 +innocuous I'n0kjU@s OA% 4 +innovate 'In@veIt I2$ 32A +innovated 'In@veItId Ic$,Id$ 42A +innovates 'In@veIts Ia$ 32A +innovating 'In@veItIN Ib$ 42A +innovation ,In@'veISn M6% 4 +innovations ,In@'veISnz Mj% 4 +innovator 'In@veIt@R K6% 4 +innovators 'In@veIt@z Kj% 4 +inns Inz Kj% 1 +innuendo ,Inju'end@U K7% 4 +innuendoes ,Inju'end@Uz Kj% 4 +innumerable I'njum@r@bl OA% 5 +inoculate I'n0kjUleIt H2% 46A,14 +inoculated I'n0kjUleItId Hc%,Hd% 56A,14 +inoculates I'n0kjUleIts Ha% 46A,14 +inoculating I'n0kjUleItIN Hb% 56A,14 +inoculation I,n0kjU'leISn M6% 5 +inoculations I,n0kjU'leISnz Mj% 5 +inoffensive ,In@'fensIv OA% 4 +inoffensively ,In@'fensIvlI Pu% 5 +inoperable ,In'0p@r@bl OA% 5 +inoperative ,In'0p@r@tIv OA% 5 +inopportune ,In'0p@tjun OA% 4 +inopportunely ,In'0p@tjunlI Pu% 5 +inordinate I'nOdIn@t OA% 4 +inordinately I'nOdIn@tlI Pu% 5 +inorganic ,InO'g&nIk OA% 4 +inorganically ,InO'g&nIklI Pu% 5 +inpouring 'InpOrIN K6$,OA$ 3 +inpourings 'InpOrINz Kj$ 3 +input 'InpUt M6% 2 +inputs 'InpUts Mj$ 2 +inquest 'Inkwest K6% 2 +inquests 'Inkwests Kj% 2 +inquietude In'kwaI@tjud L@$ 4 +inquire In'kwaI@R J2% 22A,3A,6A,8,10,14 +inquired In'kwaI@d Jc%,Jd% 22A,3A,6A,8,10,14 +inquirer In'kwaI@r@R K6% 3 +inquirers In'kwaI@r@z Kj% 3 +inquires In'kwaI@z Ja% 22A,3A,6A,8,10,14 +inquiries In'kwaI@rIz Mj% 3 +inquiring In'kwaI@rIN Jb%,OA% 32A,3A,6A,8,10,14 +inquiringly In'kwaI@rINlI Pu% 4 +inquiry In'kwaI@rI M8% 3 +inquisition ,InkwI'zISn M6% 4 +inquisitions ,InkwI'zISnz Mj% 4 +inquisitive In'kwIz@tIv OA% 4 +inquisitively In'kwIz@tIvlI Pu% 5 +inquisitiveness In'kwIz@tIvn@s L@% 5 +inquisitor In'kwIzIt@R K6% 4 +inquisitorial In,kwIzI'tOrI@l OA% 6 +inquisitors In'kwIzIt@z Kj% 4 +inroad 'Inr@Ud K6% 2 +inroads 'Inr@Udz Kj% 2 +inrush 'InrVS K7$ 2 +inrushes 'InrVSIz Kj$ 3 +ins 'IntSIz Y)% 2 +ins Inz Kj$ 1 +insane In'seIn OA% 2 +insanely In'seInlI Pu% 3 +insanitary In's&nItrI OA% 4 +insanity In's&nItI L@% 4 +insatiable In'seIS@bl OA% 4 +insatiably In'seIS@blI Pu% 4 +insatiate In'seISI@t OA$ 4 +inscribe In'skraIb H2% 26A,15A +inscribed In'skraIbd Hc%,Hd% 26A,15A +inscribes In'skraIbz Ha% 26A,15A +inscribing In'skraIbIN Hb% 36A,15A +inscription In'skrIpSn K6% 3 +inscriptions In'skrIpSnz Kj% 3 +inscrutable In'skrut@bl OA% 4 +insect 'Insekt K6% 2 +insect-powder 'Insekt-paUd@R K6% 4 +insect-powders 'Insekt-paUd@z Kj% 4 +insecticide In'sektIsaId K6% 4 +insecticides In'sektIsaIdz Kj% 4 +insectivorous ,Insek'tIv@r@s OA% 5 +insects 'Insekts Kj% 2 +insecure ,InsI'kjU@R OA% 3 +insecurely ,InsI'kjU@lI Pu% 4 +insecurity ,InsI'kjU@rItI L@% 5 +inseminate In'semIneIt H2$ 46A +inseminated In'semIneItId Hc$,Hd$ 56A +inseminates In'semIneIts Ha$ 46A +inseminating In'semIneItIN Hb$ 56A +insemination In,semI'neISn L@% 5 +insensate In'senseIt OA$ 3 +insensibility In,sens@'bIlItI L@% 6 +insensible In'sens@bl OA% 4 +insensibly In'sens@blI Pu% 4 +insensitive In'sens@tIv OA% 4 +insensitively In'sens@tIvlI Pu% 5 +insensitivity In,sens@'tIvItI L@% 6 +insentient In'senSnt OA$ 3 +inseparable In'sepr@bl OA% 4 +insert 'Ins3t K6% 2 +insert In's3t H0% 26A,15A +inserted In's3tId Hc%,Hd% 36A,15A +inserting In's3tIN Hb% 36A,15A +insertion In's3Sn M6% 3 +insertions In's3Snz Mj% 3 +inserts 'Ins3ts Kj% 2 +inserts In's3ts Ha% 26A,15A +inset 'Inset K6% 2 +inset ,In'set H5$,Hc$,Hd$ 2 +insets 'Insets Kj$ 2 +insets ,In'sets Ha$ 2 +insetting ,In'setIN Hb$ 3 +inshore ,In'SOR OA%,Pu% 2 +inside In'saId K6%,OA%,Pu%,T-% 2 +insider In'saId@R K6% 3 +insiders In'saId@z Kj% 3 +insides In'saIdz Kj% 2 +insidious In'sIdI@s OA% 4 +insidiously In'sIdI@slI Pu% 5 +insidiousness In'sIdI@sn@s L@% 5 +insight 'InsaIt M6% 2 +insights 'InsaIts Mj% 2 +insignia In'sIgnI@ Kj% 4 +insignificance ,InsIg'nIfIk@ns L@% 5 +insignificant ,InsIg'nIfIk@nt OA% 5 +insignificantly ,InsIg'nIfIk@ntlI Pu% 6 +insincere ,InsIn'sI@R OA% 3 +insincerely ,InsIn'sI@lI Pu% 4 +insincerity ,InsIn'serItI L@$ 5 +insinuate In'sInjUeIt H2$ 46A,9,14 +insinuated In'sInjUeItId Hc$,Hd$ 56A,9,14 +insinuates In'sInjUeIts Ha$ 46A,9,14 +insinuating In'sInjUeItIN Hb% 56A,9,14 +insinuatingly In'sInjUeItINlI Pu% 6 +insinuation In,sInjU'eISn M6% 5 +insinuations In,sInjU'eISnz Mj% 5 +insipid In'sIpId OA% 3 +insipidity ,InsI'pIdItI L@$ 5 +insipidly In'sIpIdlI Pu% 4 +insipidness In'sIpIdn@s L@$ 4 +insist In'sIst J0% 23A,3B +insisted In'sIstId Jc%,Jd% 33A,3B +insistence In'sIst@ns L@% 3 +insistent In'sIst@nt OA% 3 +insisting In'sIstIN Jb% 33A,3B +insists In'sIsts Ja% 23A,3B +insofar ,Ins@'fAR Pu% 3 +insole 'Ins@Ul K6% 2 +insolence 'Ins@l@ns L@% 3 +insolent 'Ins@l@nt OA% 3 +insolently 'Ins@l@ntlI Pu% 4 +insoles 'Ins@Ulz Kj% 2 +insoluble In's0ljUbl OA% 4 +insolvency In's0lv@nsI L@% 4 +insolvent In's0lv@nt K6$,OA% 3 +insolvents In's0lv@nts Kj$ 3 +insomnia In's0mnI@ L@% 4 +insomniac In's0mnI&k K6% 4 +insomniacs In's0mnI&ks Kj% 4 +insomuch ,Ins@U'mVtS Pu% 3 +insouciance In'susI@ns L@$ 4 +insouciant In'susI@nt OA$ 4 +inspan In'sp&n H4$ 2 +inspanned In'sp&nd Hc$,Hd$ 2 +inspanning In'sp&nIN Hb$ 3 +inspans In'sp&nz Ha$ 2 +inspect In'spekt H0% 26A +inspected In'spektId Hc%,Hd% 36A +inspecting In'spektIN Hb% 36A +inspection In'spekSn M6% 3 +inspections In'spekSnz Mj% 3 +inspector In'spekt@R K6% 3 +inspectorate In'spekt@r@t K6% 4 +inspectorates In'spekt@r@ts Kj% 4 +inspectors In'spekt@z Kj% 3 +inspects In'spekts Ha% 26A +inspiration ,Insp@'reISn M6% 4 +inspirational ,Insp@'reIS@nl OA% 5 +inspirationally ,Insp@'reISn@lI Pu% 5 +inspirations ,Insp@'reISnz Mj% 4 +inspire In'spaI@R H2% 26A,14,17 +inspired In'spaI@d Hc%,Hd%,OA% 26A,14,17 +inspires In'spaI@z Ha% 26A,14,17 +inspiring In'spaI@rIN Hb% 36A,14,17 +instabilities ,Inst@'bIlItIz Mj$ 5 +instability ,Inst@'bIlItI M8% 5 +install In'stOl H0% 26A,14 +installation ,Inst@'leISn M6% 4 +installations ,Inst@'leISnz Mj% 4 +installed In'stOld Hc%,Hd% 26A,14 +installing In'stOlIN Hb% 36A,14 +installs In'stOlz Ha% 26A,14 +instalment In'stOlm@nt K6% 3 +instalments In'stOlm@nts Kj% 3 +instance 'Inst@ns H2$,K6% 26A +instanced 'Inst@nst Hc$,Hd$ 26A +instances 'Inst@nsIz Ha$,Kj% 36A +instancing 'Inst@nsIN Hb$ 36A +instant 'Inst@nt K6%,OA% 2 +instantaneous ,Inst@n'teInI@s OA% 5 +instantaneously ,Inst@n'teInI@slI Pu% 6 +instantly 'Inst@ntlI Pu%,V-% 3 +instants 'Inst@nts Kj% 2 +instead In'sted Pu% 2 +instep 'Instep K6% 2 +insteps 'Insteps Kj% 2 +instigate 'InstIgeIt H2% 36A,17 +instigated 'InstIgeItId Hc%,Hd% 46A,17 +instigates 'InstIgeIts Ha% 36A,17 +instigating 'InstIgeItIN Hb% 46A,17 +instigation ,InstI'geISn K6% 4 +instigations ,InstI'geISnz Kj$ 4 +instigator 'InstIgeIt@R K6% 4 +instigators 'InstIgeIt@z Kj% 4 +instil In'stIl H4% 26A,14 +instillation ,InstI'leISn K6$ 4 +instillations ,InstI'leISnz Kj$ 4 +instilled In'stIld Hc%,Hd% 26A,14 +instilling In'stIlIN Hb% 36A,14 +instils In'stIlz Ha% 26A,14 +instinct 'InstINkt M6% 2 +instinct ,In'stINkt Op% 2 +instinctive In'stINktIv OA% 3 +instinctively In'stINktIvlI Pu% 4 +instincts 'InstINkts Mj% 2 +institute 'InstItjut H2%,K6% 36A,14 +instituted 'InstItjutId Hc%,Hd% 46A,14 +institutes 'InstItjuts Ha%,Kj% 36A,14 +instituting 'InstItjutIN Hb% 46A,14 +institution ,InstI'tjuSn M6% 4 +institutional ,InstI'tjuSn@l OA% 5 +institutionalize ,InstI'tjuS@n@laIz H2% 66A +institutionalized ,InstI'tjuS@n@laIzd Hc%,Hd% 66A +institutionalizes ,InstI'tjuS@n@laIzIz Ha% 76A +institutionalizing ,InstI'tjuS@n@laIzIN Hb% 76A +institutionally ,InstI'tjuSn@lI Pu% 5 +institutions ,InstI'tjuSnz Mj% 4 +instruct In'strVkt H0% 26A,11,15A,17,20,21 +instructed In'strVktId Hc%,Hd% 36A,11,15A,17,20,21 +instructing In'strVktIN Hb% 36A,11,15A,17,20,21 +instruction In'strVkSn M6% 3 +instructional In'strVkSn@l OA% 4 +instructions In'strVkSnz Mj% 3 +instructive In'strVktIv OA% 3 +instructively In'strVktIvlI Pu% 4 +instructor In'strVkt@R K6% 3 +instructors In'strVkt@z Kj% 3 +instructress In'strVktrIs K7% 3 +instructresses In'strVktrIsIz Kj$ 4 +instructs In'strVkts Ha% 26A,11,15A,17,20,21 +instrument 'InstrUm@nt K6% 3 +instrumental ,InstrU'mentl OA% 4 +instrumentalist ,InstrU'ment@lIst K6% 5 +instrumentalists ,InstrU'ment@lIsts Kj% 5 +instrumentality ,InstrUmen't&lItI L@$ 6 +instrumentation ,InstrUmen'teISn L@% 5 +instruments 'InstrUm@nts Kj% 3 +insubordinate ,Ins@'bOdIn@t OA% 5 +insubordination ,Ins@,bOdI'neISn M6% 6 +insubordinations ,Ins@,bOdI'neISnz Mj$ 6 +insubstantial ,Ins@b'st&nSl OA% 4 +insubstantially ,Ins@b'st&nS@lI Pu% 5 +insufferable In'sVfr@bl OA% 4 +insufficiency ,Ins@'fISnsI L@% 5 +insufficient ,Ins@'fISnt OA% 4 +insufficiently ,Ins@'fISntlI Pu% 5 +insular 'InsjUl@R OA% 3 +insularism 'InsjUl@rIz@m L@$ 5 +insularity ,InsjU'l&rItI L@% 5 +insulate 'InsjUleIt H2% 36A,14 +insulated 'InsjUleItId Hc%,Hd% 46A,14 +insulates 'InsjUleIts Ha% 36A,14 +insulating 'InsjUleItIN Hb% 46A,14 +insulation ,InsjU'leISn L@% 4 +insulator 'InsjUleIt@R K6% 4 +insulators 'InsjUleIt@z Kj% 4 +insulin 'InsjUlIn L@% 3 +insult 'InsVlt M6% 2 +insult In'sVlt H0% 26A +insulted In'sVltId Hc%,Hd% 36A +insulting In'sVltIN Hb%,OA% 36A +insultingly In'sVltINlI Pu% 4 +insults 'InsVlts Mj% 2 +insults In'sVlts Ha% 26A +insuperable In'sjupr@bl OA% 4 +insuperably In'sjupr@blI Pu% 5 +insupportable ,Ins@'pOt@bl OA% 5 +insurance In'SU@r@ns M6% 3 +insurances In'SU@r@nsIz Mj$ 4 +insure In'SU@R H2% 26A,14 +insured In'SU@d Hc%,Hd% 26A,14 +insures In'SU@z Ha% 26A,14 +insurgent In's3dZ@nt K6%,OA% 3 +insurgents In's3dZ@nts Kj% 3 +insuring In'SU@rIN Hb% 36A,14 +insurmountable ,Ins@'maUnt@bl OA% 5 +insurrection ,Ins@'rekSn M6% 4 +insurrections ,Ins@'rekSnz Mj% 4 +intact In't&kt OA% 2 +intaglio In'tAlI@U M6$ 4 +intaglios In'tAlI@Uz Mj$ 4 +intake 'InteIk M6% 2 +intakes 'InteIks Mj% 2 +intangibility In,t&ndZ@'bIlItI L@$ 6 +intangible In't&ndZ@bl OA% 4 +intangibles In't&ndZ@blz K6% 4 +integer 'IntIdZ@R K6$ 3 +integers 'IntIdZ@z Kj$ 3 +integral 'IntIgr@l OA% 3 +integrally 'IntIgr@lI Pu% 4 +integrate 'IntIgreIt H2% 32A,6A +integrated 'IntIgreItId Hc%,Hd% 42A,6A +integrates 'IntIgreIts Ha% 32A,6A +integrating 'IntIgreItIN Hb% 42A,6A +integration ,IntI'greISn L@% 4 +integrity In'tegrItI L@% 4 +integument In'tegjUm@nt K6$ 4 +integuments In'tegjUm@nts Kj$ 4 +intellect 'Int@lekt M6% 3 +intellects 'Int@lekts Mj% 3 +intellectual ,Int@'lektSU@l K6%,OA% 5 +intellectually ,Int@'lektSU@lI Pu% 6 +intellectuals ,Int@'lektSU@lz Kj% 5 +intelligence In'telIdZ@ns L@% 4 +intelligent In'telIdZ@nt OA% 4 +intelligently In'telIdZ@ntlI Pu% 5 +intelligentsia In,telI'dZentsI@ K6% 6 +intelligentsias In,telI'dZentsI@z Kj$ 6 +intelligibility In,telIdZ@'bIlItI L@$ 7 +intelligible In'telIdZ@bl OA% 5 +intelligibly In'telIdZ@blI Pu% 5 +intemperance In'temp@r@ns L@% 4 +intemperate In'temp@r@t OA% 4 +intemperately In'temp@r@tlI Pu% 5 +intend In'tend H0% 26A,6D,7A,9,14,17 +intended In'tendId Hc%,Hd% 36A,6D,7A,9,14,17 +intending In'tendIN Hb% 36A,6D,7A,9,14,17 +intends In'tendz Ha% 26A,6D,7A,9,14,17 +intense In'tens OA% 2 +intensely In'tenslI Pu% 3 +intensification In,tensIfI'keISn M6% 6 +intensifications In,tensIfI'keISnz Mj$ 6 +intensified In'tensIfaId Jc%,Jd% 42A,6A +intensifies In'tensIfaIz Ja% 42A,6A +intensify In'tensIfaI J3% 42A,6A +intensifying In'tensIfaIIN Jb% 52A,6A +intensities In'tensItIz Mj% 4 +intensity In'tensItI M8% 4 +intensive In'tensIv OA% 3 +intensively In'tensIvlI Pu% 4 +intent In'tent M6%,OA% 2 +intention In'tenSn M6% 3 +intentional In'tenSn@l OA% 4 +intentionally In'tenSn@lI Pu% 4 +intentions In'tenSnz Mj% 3 +intently In'tentlI Pu% 3 +intentness In'tentn@s L@$ 3 +intents In'tents Mj% 2 +inter In't3R H4% 2 +inter alia ,Int@r 'eIlI@ Pu% 5 +interact ,Int@'r&kt I0% 3 +interacted ,Int@'r&ktId Ic%,Id% 4 +interacting ,Int@'r&ktIN Ib% 4 +interaction ,Int@'r&kSn K6% 4 +interactions ,Int@'r&kSnz Kj% 4 +interactive ,Int@'r&ktIv OA$ 4 +interacts ,Int@'r&kts Ia% 3 +interbred ,Int@'bred Jc%,Jd% 32A,6A +interbreed ,Int@'brid J5% 32A,6A +interbreeding ,Int@'bridIN Jb% 42A,6A +interbreeds ,Int@'bridz Ja% 32A,6A +intercalary In't3k@l@rI OA$ 5 +intercede ,Int@'sid I2% 33A +interceded ,Int@'sidId Ic%,Id% 43A +intercedes ,Int@'sidz Ia% 33A +interceding ,Int@'sidIN Ib% 43A +intercept ,Int@'sept H0% 36A +intercepted ,Int@'septId Hc%,Hd% 46A +intercepting ,Int@'septIN Hb% 46A +interception ,Int@'sepSn M6% 4 +interceptions ,Int@'sepSnz Mj% 4 +interceptor ,Int@'sept@R K6% 4 +interceptors ,Int@'sept@z Kj% 4 +intercepts ,Int@'septs Ha% 36A +intercession ,Int@'seSn M6% 4 +intercessions ,Int@'seSnz Mj$ 4 +interchange 'Int@tSeIndZ M6% 3 +interchange ,Int@'tSeIndZ H2% 32A,6A +interchangeable ,Int@'tSeIndZ@bl OA% 5 +interchangeably ,Int@'tSeIndZ@blI Pu% 5 +interchanged ,Int@'tSeIndZd Hc%,Hd% 32A,6A +interchanges 'Int@tSeIndZIz Mj% 4 +interchanges ,Int@'tSeIndZIz Ha% 42A,6A +interchanging ,Int@'tSeIndZIN Hb% 42A,6A +intercollegiate ,Int@k@'lidZI@t OA% 6 +intercom 'Int@k0m K6% 3 +intercommunicate ,Int@k@'mjunIkeIt I2$ 6 +intercommunicated ,Int@k@'mjunIkeItId Ic$,Id$ 7 +intercommunicates ,Int@k@'mjunIkeIts Ia$ 6 +intercommunicating ,Int@k@'mjunIkeItIN Ib$ 7 +intercommunication ,Int@k@,mjunI'keISn L@$ 7 +intercommunion ,Int@k@'mjunI@n K6$ 5 +intercommunions ,Int@k@'mjunI@nz Kj$ 5 +intercoms 'Int@k0mz Kj% 3 +interconnect ,Int@k@'nekt J0% 46A +interconnected ,Int@k@'nektId Jc%,Jd% 56A +interconnectedness ,Int@k@'nektIdnIs L@% 6 +interconnecting ,Int@k@'nektIN Jb% 56A +interconnection ,Int@k@'nekSn M6% 5 +interconnections ,Int@k@'nekSnz Mj% 5 +interconnects ,Int@k@'nekts Ja% 46A +intercontinental ,Int@,k0ntI'nentl OA% 6 +intercourse 'Int@kOs L@% 3 +interdenominational ,Int@dI,n0mI'neIS@nl OA% 8 +interdepartmental ,Int@,dipAt'mentl OA% 6 +interdepartmentally ,Int@,dipAt'ment@lI Pu% 7 +interdependence ,Int@dI'pend@ns K6% 5 +interdependences ,Int@dI'pend@nsIz Kj% 6 +interdependent ,Int@dI'pend@nt OA% 5 +interdict 'Int@dIkt K6$ 3 +interdict ,Int@'dIkt H0$ 36A +interdicted ,Int@'dIktId Hc$,Hd$ 46A +interdicting ,Int@'dIktIN Hb$ 46A +interdiction ,Int@'dIkSn M6$ 4 +interdictions ,Int@'dIkSnz Mj$ 4 +interdicts 'Int@dIkts Kj$ 3 +interdicts ,Int@'dIkts Ha$ 36A +interdisciplinary ,Int@,dIsI'plIn@rI OA% 7 +interest 'Intr@st H0*,M6* 26A,14 +interested 'Intr@stId Hc%,Hd%,OA% 36A,14 +interesting 'Intr@stIN Hb%,OA% 36A,14 +interestingly 'Intr@stINlI Pu% 4 +interests 'Intr@sts Ha%,Mj% 26A,14 +interface 'Int@feIs K6% 3 +interfaces 'Int@feIsIz Kj% 4 +interfere ,Int@'fI@R I2% 32A,3A +interfered ,Int@'fI@d Ic%,Id% 32A,3A +interference ,Int@'fI@r@ns L@% 4 +interferes ,Int@'fI@z Ia% 32A,3A +interfering ,Int@'fI@rIN Ib% 42A,3A +interim 'Int@rIm L@% 3 +interior In'tI@rI@R K6%,OA% 4 +interiors In'tI@rI@z Kj% 4 +interject ,Int@'dZekt H0% 36A +interjected ,Int@'dZektId Hc%,Hd% 46A +interjecting ,Int@'dZektIN Hb% 46A +interjection ,Int@'dZekSn K6% 4 +interjections ,Int@'dZekSnz Kj% 4 +interjects ,Int@'dZekts Ha% 36A +interlace ,Int@'leIs J2$ 32A,6A,14 +interlaced ,Int@'leIst Jc$,Jd% 32A,6A,14 +interlaces ,Int@'leIsIz Ja$ 42A,6A,14 +interlacing ,Int@'leIsIN Jb$ 42A,6A,14 +interlard ,Int@'lAd H0$ 314 +interlarded ,Int@'lAdId Hc$,Hd% 414 +interlarding ,Int@'lAdIN Hb$ 414 +interlards ,Int@'lAdz Ha$ 314 +interleave ,Int@'liv H2$ 36A,14 +interleaved ,Int@'livd Hc$,Hd% 36A,14 +interleaves ,Int@'livz Ha$ 36A,14 +interleaving ,Int@'livIN Hb$ 46A,14 +interlink ,Int@'lINk J0$ 32A,6A +interlinked ,Int@'lINkt Jc$,Jd% 32A,6A +interlinking ,Int@'lINkIN Jb$ 42A,6A +interlinks ,Int@'lINks Ja$ 32A,6A +interlock ,Int@'l0k J0% 32A,6A +interlocked ,Int@'l0kt Jc%,Jd% 32A,6A +interlocking ,Int@'l0kIN Jb% 42A,6A +interlocks ,Int@'l0ks Ja$ 32A,6A +interlocutor ,Int@'l0kjUt@R K6% 5 +interlocutors ,Int@'l0kjUt@z Kj% 5 +interloper 'Int@l@Up@R K6% 4 +interlopers 'Int@l@Up@z Kj% 4 +interlude 'Int@lud K6% 3 +interludes 'Int@ludz Kj% 3 +intermarriage ,Int@'m&rIdZ M6% 4 +intermarriages ,Int@'m&rIdZIz Mj% 5 +intermarried ,Int@'m&rId Ic%,Id% 42A,3A +intermarries ,Int@'m&rIz Ia$ 42A,3A +intermarry ,Int@'m&rI I3% 42A,3A +intermarrying ,Int@'m&rIIN Ib% 52A,3A +intermediaries ,Int@'midI@rIz Kj% 5 +intermediary ,Int@'midI@rI K8% 5 +intermediate ,Int@'midI@t K6%,OA% 5 +intermediately ,Int@'midI@tlI Pu$ 6 +intermediates ,Int@'midI@ts Kj$ 5 +interment In't3m@nt M6$ 3 +interments In't3m@nts Mj$ 3 +intermezzi ,Int@'metsI Kj$ 4 +intermezzo ,Int@'mets@U K6% 4 +intermezzos ,Int@'mets@Uz Kj$ 4 +interminable In't3mIn@bl OA% 5 +interminably In't3mIn@blI Pu% 5 +intermingle ,Int@'mINgl J2% 46A,14 +intermingled ,Int@'mINgld Jc%,Jd% 46A,14 +intermingles ,Int@'mINglz Ja% 46A,14 +intermingling ,Int@'mINglIN Jb% 46A,14 +intermission ,Int@'mISn K6% 4 +intermissions ,Int@'mISnz Kj% 4 +intermittent ,Int@'mItnt OA% 4 +intermittently ,Int@'mItntlI Pu% 5 +intermix ,Int@'mIks J1$ 3 +intermixed ,Int@'mIkst Jc$,Jd% 3 +intermixes ,Int@'mIksIz Ja$ 4 +intermixing ,Int@'mIksIN Jb$ 4 +intermixture ,Int@'mIkstS@R K6$ 4 +intermixtures ,Int@'mIkstS@z Kj$ 4 +intern 'Int3n K6% 2 +intern In't3n H0% 26A +internal In't3nl OA% 3 +internalize In't3n@laIz H2% 46A +internalized In't3n@laIzd Hc%,Hd% 46A +internalizes In't3n@laIzIz Ha% 56A +internalizing In't3n@laIzIN Hb% 56A +internally In't3n@lI Pu% 4 +international ,Int@'n&S@nl K6%,OA% 5 +internationale ,Int@n&S@'nAl K6% 5 +internationales ,Int@n&S@'nAlz Kj$ 5 +internationalism ,Int@'n&Sn@lIz@m L@% 6 +internationalist ,Int@'n&Sn@lIst K6% 5 +internationalists ,Int@'n&Sn@lIsts Kj% 5 +internationalization ,Int@,n&S@n@laI'zeISn M6% 8 +internationalizations ,Int@,n&S@n@laI'zeISnz Mj$ 8 +internationalize ,Int@'n&S@n@laIz H2% 66A +internationalized ,Int@'n&S@n@laIzd Hc%,Hd% 66A +internationalizes ,Int@'n&S@n@laIzIz Ha% 76A +internationalizing ,Int@'n&S@n@laIzIN Hb% 76A +internationally ,Int@'n&Sn@lI Pu% 5 +internationals ,Int@'n&S@nlz Kj% 5 +interne 'Int3n K6$ 2 +internecine ,Int@'nisaIn OA% 4 +interned In't3nd Hc%,Hd% 26A +internee ,Int3'ni K6% 3 +internees ,Int3'niz Kj% 3 +internes 'Int3nz Kj$ 2 +interning In't3nIN Hb$ 36A +internment In't3nm@nt L@% 3 +interns 'Int3nz Kj% 2 +interns In't3nz Ha% 26A +interpellate In't3p@leIt H2$ 46A +interpellated In't3p@leItId Hc$,Hd% 56A +interpellates In't3p@leIts Ha$ 46A +interpellating In't3p@leItIN Hb$ 56A +interpellation In,t3p@'leISn M6$ 5 +interpellations In,t3p@'leISnz Mj$ 5 +interphone 'Int@f@Un K6$ 3 +interphones 'Int@f@Unz Kj$ 3 +interplanetary ,Int@'pl&nItrI OA% 5 +interplay 'Int@pleI L@% 3 +interpolate In't3p@leIt H2% 46A +interpolated In't3p@leItId Hc%,Hd% 56A +interpolates In't3p@leIts Ha% 46A +interpolating In't3p@leItIN Hb% 56A +interpolation In,t3p@'leISn M6% 5 +interpolations In,t3p@'leISnz Mj% 5 +interpose ,Int@'p@Uz J2% 32A,3A,6A,14 +interposed ,Int@'p@Uzd Jc%,Jd% 32A,3A,6A,14 +interposes ,Int@'p@UzIz Ja% 42A,3A,6A,14 +interposing ,Int@'p@UzIN Jb% 42A,3A,6A,14 +interposition ,Int@p@'zISn M6$ 5 +interpositions ,Int@p@'zISnz Mj$ 5 +interpret In't3prIt J0% 32A,6A,16B +interpretation In,t3prI'teISn M6% 5 +interpretations In,t3prI'teISnz Mj% 5 +interpretative In't3prIt@tIv OA% 5 +interpreted In't3prItId Jc%,Jd% 42A,6A,16B +interpreter In't3prIt@R K6% 4 +interpreters In't3prIt@z Kj% 4 +interpreting In't3prItIN Jb% 42A,6A,16B +interprets In't3prIts Ja% 32A,6A,16B +interracial ,Int@'reISl OA% 4 +interred In't3d Hc%,Hd% 2 +interregna ,Int@'regn@ Kj$ 4 +interregnum ,Int@'regn@m K6% 4 +interregnums ,Int@'regn@mz Kj$ 4 +interrelate ,Int@rI'leIt J2% 42A,6A +interrelated ,Int@rI'leItId Jc%,Jd% 52A,6A +interrelates ,Int@rI'leIts Ja% 42A,6A +interrelating ,Int@rI'leItIN Jb% 52A,6A +interrelation ,Int@rI'leISn M6% 5 +interrelations ,Int@rI'leISnz Mj% 5 +interrelationship ,Int@rI'leIS@nSIp M6% 6 +interrelationships ,Int@rI'leIS@nSIps Mj% 6 +interring In't3rIN Hb% 3 +interrogate In'ter@geIt H2% 46A +interrogated In'ter@geItId Hc%,Hd% 56A +interrogates In'ter@geIts Ha% 46A +interrogating In'ter@geItIN Hb% 56A +interrogation In,ter@'geISn M6% 5 +interrogations In,ter@'geISnz Mj% 5 +interrogative ,Int@'r0g@tIv K6%,OA% 5 +interrogatively ,Int@'r0g@tIvlI Pu% 6 +interrogatives ,Int@'r0g@tIvz Kj% 5 +interrogator In'ter@geIt@R K6% 5 +interrogators In'ter@geIt@z Kj% 5 +interrogatory ,Int@'r0g@trI OA% 5 +interrupt ,Int@'rVpt J0% 32A,6A +interrupted ,Int@'rVptId Jc%,Jd% 42A,6A +interrupter ,Int@'rVpt@R K6% 4 +interrupters ,Int@'rVpt@z Kj% 4 +interrupting ,Int@'rVptIN Jb% 42A,6A +interruption ,Int@'rVpSn M6% 4 +interruptions ,Int@'rVpSnz Mj% 4 +interrupts ,Int@'rVpts Ja% 32A,6A +inters In't3z Ha$ 2 +intersect ,Int@'sekt J0% 32A,6A +intersected ,Int@'sektId Jc%,Jd% 42A,6A +intersecting ,Int@'sektIN Jb% 42A,6A +intersection ,Int@'sekSn M6% 4 +intersections ,Int@'sekSnz Mj% 4 +intersects ,Int@'sekts Ja% 32A,6A +intersperse ,Int@'sp3s H2% 314 +interspersed ,Int@'sp3st Hc%,Hd% 314 +intersperses ,Int@'sp3sIz Ha% 414 +interspersing ,Int@'sp3sIN Hb% 414 +interstate ,Int@'steIt OA% 3 +interstellar ,Int@'stel@R OA% 4 +interstice In't3stIs K6$ 3 +interstices In't3stIsIz Kj% 4 +intertribal ,Int@'traIbl OA% 4 +intertwine ,Int@'twaIn J2% 32A,6A +intertwined ,Int@'twaInd Jc%,Jd% 32A,6A +intertwines ,Int@'twaInz Ja% 32A,6A +intertwining ,Int@'twaInIN Jb% 42A,6A +interval 'Int@vl K6% 3 +intervals 'Int@vlz Kj% 3 +intervene ,Int@'vin I2% 32A,3A +intervened ,Int@'vind Ic%,Id% 32A,3A +intervenes ,Int@'vinz Ia% 32A,3A +intervening ,Int@'vinIN Ib% 42A,3A +intervention ,Int@'venSn M6% 4 +interventions ,Int@'venSnz Mj% 4 +interview 'Int@vju H0%,K6% 36A +interviewed 'Int@vjud Hc%,Hd% 36A +interviewer 'Int@vju@R K6% 4 +interviewers 'Int@vju@z Kj% 4 +interviewing 'Int@vjuIN Hb% 46A +interviews 'Int@vjuz Ha%,Kj% 36A +interweave ,Int@'wiv H5% 36A,14 +interweaves ,Int@'wivz Ha% 36A,14 +interweaving ,Int@'wivIN Hb% 46A,14 +interwove ,Int@'w@Uv Hc% 36A,14 +interwoven ,Int@'w@Uvn Hd% 46A,14 +intestate In'testeIt OA$ 3 +intestinal In'testInl OA% 4 +intestine In'testIn K6% 3 +intestines In'testInz Kj% 3 +intimacies 'IntIm@sIz Mj% 4 +intimacy 'IntIm@sI M8% 4 +intimate 'IntIm@t K6%,OA% 3 +intimate 'IntImeIt H2% 36A,9,14 +intimated 'IntImeItId Hc%,Hd% 46A,9,14 +intimately 'IntIm@tlI Pu% 4 +intimates 'IntIm@ts Kj% 3 +intimates 'IntImeIts Ha$ 36A,9,14 +intimating 'IntImeItIN Hb% 46A,9,14 +intimation ,IntI'meISn M6% 4 +intimations ,IntI'meISnz Mj% 4 +intimidate In'tImIdeIt H2% 46A,14 +intimidated In'tImIdeItId Hc%,Hd% 56A,14 +intimidates In'tImIdeIts Ha% 46A,14 +intimidating In'tImIdeItIN Hb% 56A,14 +intimidation In,tImI'deISn L@% 5 +into 'Int@ T-* 2 +intolerable In't0l@r@bl OA% 5 +intolerably In't0l@r@blI Pu% 5 +intolerance In't0l@r@ns L@% 4 +intolerant In't0l@r@nt OA% 4 +intolerantly In't0l@r@ntlI Pu% 5 +intonation ,Int@'neISn L@% 4 +intone In't@Un J2% 22A,6A +intoned In't@Und Jc%,Jd% 22A,6A +intones In't@Unz Ja% 22A,6A +intoning In't@UnIN Jb% 32A,6A +intoxicant In't0ksIk@nt K6%,OA% 4 +intoxicants In't0ksIk@nts Kj% 4 +intoxicate In't0ksIkeIt H2% 46A +intoxicated In't0ksIkeItId Hc%,Hd% 56A +intoxicates In't0ksIkeIts Ha% 46A +intoxicating In't0ksIkeItIN Hb% 56A +intoxication In,t0ksI'keISn L@% 5 +intra-uterine ,Intr@-'jut@raIn OA$ 5 +intractability In,tr&kt@'bIlItI L@% 6 +intractable ,In'tr&kt@bl OA% 4 +intramural ,Intr@'mjU@r@l OA$ 4 +intransigence In'tr&nsIdZ@ns L@% 4 +intransigent In'tr&nsIdZ@nt OA% 4 +intransitive In'tr&ns@tIv OA% 4 +intransitively In'tr&ns@tIvlI Pu% 5 +intravenous ,Intr@'vin@s OA% 4 +intravenously ,Intr@'vin@slI Pu% 5 +intrench In'trentS H1$ 26A +intrenched In'trentSt Hc$,Hd$ 26A +intrenches In'trentSIz Ha$ 36A +intrenching In'trentSIN Hb$ 36A +intrepid In'trepId OA% 3 +intrepidities ,IntrI'pIdItIz Mj$ 5 +intrepidity ,IntrI'pIdItI M8$ 5 +intrepidly In'trepIdlI Pu% 4 +intricacies 'IntrIk@sIz Mj% 4 +intricacy 'IntrIk@sI M8% 4 +intricate 'IntrIk@t OA% 3 +intricately 'IntrIk@tlI Pu% 4 +intrigue In'trig J2%,M6% 22A,3A,6A +intrigued In'trigd Jc%,Jd% 22A,3A,6A +intrigues In'trigz Ja%,Mj% 22A,3A,6A +intriguing In'trigIN Jb% 32A,3A,6A +intrinsic In'trInsIk OA% 3 +intrinsically In'trInsIklI Pu% 4 +intro 'Intr@U Ki% 2 +introduce ,Intr@'djus H2% 36A,14,15A +introduced ,Intr@'djust Hc%,Hd% 36A,14,15A +introduces ,Intr@'djusIz Ha% 46A,14,15A +introducing ,Intr@'djusIN Hb% 46A,14,15A +introduction ,Intr@'dVkSn M6% 4 +introductions ,Intr@'dVkSnz Mj% 4 +introductory ,Intr@'dVkt@rI OA% 5 +introspect ,Intr@'spekt I0$ 32A +introspected ,Intr@'spektId Ic$,Id$ 42A +introspecting ,Intr@'spektIN Ib$ 42A +introspection ,Intr@'spekSn L@% 4 +introspective ,Intr@'spektIv OA% 4 +introspects ,Intr@'spekts Ia$ 32A +introversion ,Intr@'v3Sn L@% 4 +introvert 'Intr@v3t K6% 3 +introvert ,Intr@'v3t H0$ 36A +introverted ,Intr@'v3tId Hc$,Hd% 46A +introverting ,Intr@'v3tIN Hb$ 46A +introverts 'Intr@v3ts Kj% 3 +introverts ,Intr@'v3ts Ha$ 36A +intrude In'trud J2% 22A,3A,14 +intruded In'trudId Jc%,Jd% 32A,3A,14 +intruder In'trud@R K6% 3 +intruders In'trud@z Kj% 3 +intrudes In'trudz Ja% 22A,3A,14 +intruding In'trudIN Jb% 32A,3A,14 +intrusion In'truZn M6% 3 +intrusions In'truZnz Mj% 3 +intrusive In'trusIv OA% 3 +intrust In'trVst H0$ 214 +intrusted In'trVstId Hc$,Hd$ 314 +intrusting In'trVstIN Hb$ 314 +intrusts In'trVsts Ha$ 214 +intuit In'tjuIt J0$ 32A,6A +intuited In'tjuItId Jc$,Jd$ 42A,6A +intuiting In'tjuItIN Jb$ 42A,6A +intuition ,Intju'ISn M6% 4 +intuitions ,Intju'ISnz Mj% 4 +intuitive In'tjuItIv OA% 4 +intuitively In'tjuItIvlI Pu% 5 +intuits In'tjuIts Ja$ 22A,6A +intumescence ,Intju'mesns L@$ 4 +inundate 'InVndeIt H2$ 36A,14 +inundated 'InVndeItId Hc$,Hd% 46A,14 +inundates 'InVndeIts Ha$ 36A,14 +inundating 'InVndeItIN Hb$ 46A,14 +inundation ,InVn'deISn M6% 4 +inundations ,InVn'deISnz Mj% 4 +inure I'njU@R H2$ 214 +inured I'njU@d Hc$,Hd% 214 +inures I'njU@z Ha$ 214 +inuring I'njU@rIN Hb$ 314 +invade In'veId H2% 26A +invaded In'veIdId Hc%,Hd% 36A +invader In'veId@R K6% 3 +invaders In'veId@z Kj% 3 +invades In'veIdz Ha% 26A +invading In'veIdIN Hb% 36A +invalid 'Inv@lId H0%,K6%,OA% 315A +invalid In'v&lId OA% 3 +invalidate In'v&lIdeIt H2% 46A +invalidated In'v&lIdeItId Hc%,Hd% 56A +invalidates In'v&lIdeIts Ha% 46A +invalidating In'v&lIdeItIN Hb% 56A +invalidation In,v&lI'deISn M6% 5 +invalidations In,v&lI'deISnz Mj$ 5 +invalided 'Inv@lIdId Hc%,Hd% 415A +invaliding 'Inv@lIdIN Hb$ 415A +invalidism 'Inv@lIdIz@m L@$ 5 +invalidity ,Inv@'lIdItI L@% 5 +invalids 'Inv@lIdz Ha$,Kj% 315A +invaluable In'v&ljU@bl OA% 5 +invariable In've@rI@bl OA% 5 +invariably In've@rI@blI Pu% 5 +invasion In'veIZn M6% 3 +invasions In'veIZnz Mj% 3 +invasive In'veIsIv OA$ 3 +invective In'vektIv L@% 3 +inveigh In'veI I0$ 23A +inveighed In'veId Ic$,Id$ 23A +inveighing In'veIIN Ib$ 33A +inveighs In'veIz Ia$ 23A +inveigle In'veIgl H2% 314 +inveigled In'veIgld Hc%,Hd% 314 +inveigles In'veIglz Ha% 314 +inveigling In'veIglIN Hb% 314 +invent In'vent H0% 26A +invented In'ventId Hc%,Hd% 36A +inventing In'ventIN Hb% 36A +invention In'venSn M6% 3 +inventions In'venSnz Mj% 3 +inventive In'ventIv OA% 3 +inventively In'ventIvlI Pu% 4 +inventor In'vent@R K6% 3 +inventories 'Inv@ntrIz Kj% 3 +inventors In'vent@z Kj% 3 +inventory 'Inv@ntrI K8% 3 +invents In'vents Ha% 26A +inverse 'Inv3s L@$ 2 +inverse In'v3s OA% 2 +inversely In'v3slI Pu% 3 +inversion In'v3Sn M6% 3 +inversions In'v3Snz Mj% 3 +invert In'v3t H0% 26A +invertebrate In'v3tIbreIt K6%,OA% 4 +invertebrates In'v3tIbreIts Kj% 4 +inverted In'v3tId Hc%,Hd% 36A +inverting In'v3tIN Hb% 36A +inverts In'v3ts Ha% 26A +invest In'vest J0% 23A,6A,14 +invested In'vestId Jc%,Jd% 33A,6A,14 +investigate In'vestIgeIt H2% 46A +investigated In'vestIgeItId Hc%,Hd% 56A +investigates In'vestIgeIts Ha% 46A +investigating In'vestIgeItIN Hb% 56A +investigation In,vestI'geISn M6% 5 +investigations In,vestI'geISnz Mj% 5 +investigator In'vestIgeIt@R K6% 5 +investigators In'vestIgeIt@z Kj% 5 +investing In'vestIN Jb% 33A,6A,14 +investiture In'vestItS@R K6$ 4 +investitures In'vestItS@z Kj$ 4 +investment In'vestm@nt M6% 3 +investments In'vestm@nts Mj% 3 +investor In'vest@R K6% 3 +investors In'vest@z Kj% 3 +invests In'vests Ja% 23A,6A,14 +inveterate In'vet@r@t OA% 4 +invidious In'vIdI@s OA% 4 +invidiously In'vIdI@slI Pu% 5 +invigilate In'vIdZIleIt I2% 42A,6A +invigilated In'vIdZIleItId Ic%,Id% 52A,6A +invigilates In'vIdZIleIts Ia% 42A,6A +invigilating In'vIdZIleItIN Ib% 52A,6A +invigilation In,vIdZI'leISn M6% 5 +invigilations In,vIdZI'leISnz Mj% 5 +invigilator In'vIdZIleIt@R K6% 5 +invigilators In'vIdZIleIt@z Kj% 5 +invigorate In'vIg@reIt H2% 46A +invigorated In'vIg@reItId Hc%,Hd% 56A +invigorates In'vIg@reIts Ha% 46A +invigorating In'vIg@reItIN Hb% 56A +invincibility In,vIns@'bIlItI L@% 6 +invincible In'vIns@bl OA% 4 +invincibly In'vIns@blI Pu% 4 +inviolable In'vaI@l@bl OA% 5 +inviolate ,In'vaI@l@t OA% 4 +invisibility In,vIz@'bIlItI L@% 6 +invisible In'vIz@bl OA% 4 +invisibly In'vIz@blI Pu% 4 +invitation ,InvI'teISn M6% 4 +invitations ,InvI'teISnz Mj% 4 +invite 'InvaIt K6% 2 +invite In'vaIt H2% 26A,15A,15B,17 +invited In'vaItId Hc%,Hd% 36A,15A,15B,17 +invites 'InvaIts Kj% 2 +invites In'vaIts Ha% 26A,15A,15B,17 +inviting In'vaItIN Hb%,OA% 36A,15A,15B,17 +invitingly In'vaItINlI Pu% 4 +invocation ,Inv@'keISn M6% 4 +invocations ,Inv@'keISnz Mj% 4 +invoice 'InvoIs H2%,K6% 2 +invoiced 'InvoIst Hc%,Hd% 2 +invoices 'InvoIsIz Ha%,Kj% 3 +invoicing 'InvoIsIN Hb% 3 +invoke In'v@Uk H2% 26A,14 +invoked In'v@Ukt Hc%,Hd% 26A,14 +invokes In'v@Uks Ha% 26A,14 +invoking In'v@UkIN Hb% 36A,14 +involuntarily In'v0l@ntr@lI Pu% 5 +involuntary In'v0l@ntrI OA% 4 +involute 'Inv@lut OA$ 3 +involution ,Inv@'luSn K6$ 4 +involutions ,Inv@'luSnz Kj$ 4 +involve In'v0lv H2% 26A,6B,14,19C +involved In'v0lvd Hc%,Hd%,OA% 26A,6B,14,19C +involvement In'v0lvm@nt K6% 3 +involvements In'v0lvm@nts Kj% 3 +involves In'v0lvz Ha% 26A,6B,14,19C +involving In'v0lvIN Hb% 36A,6B,14,19C +invulnerable In'vVln@r@bl OA% 5 +inward 'Inw@d OA%,Pu% 2 +inwardly 'Inw@dlI Pu% 3 +inwardness 'Inw@dn@s L@% 3 +inwards 'Inw@dz Pu% 2 +inwrought ,In'rOt OA$ 2 +iodine 'aI@din L@% 3 +ion 'aI@n K6$ 2 +ionization ,aI@naI'zeISn L@$ 5 +ionize 'aI@naIz J2$ 32A,6A +ionized 'aI@naIzd Jc$,Jd$ 32A,6A +ionizes 'aI@naIzIz Ja$ 42A,6A +ionizing 'aI@naIzIN Jb$ 42A,6A +ionosphere aI'0n@sfI@R K6$ 4 +ionospheres aI'0n@sfI@z Kj$ 4 +ions 'aI@nz Kj$ 2 +iota aI'@Ut@ K6$ 3 +iotas aI'@Ut@z Kj$ 3 +ipse dixit ,IpsI 'dIksIt K6$ 4 +ipse dixits ,IpsI 'dIksIts Kj$ 4 +ipso facto ,Ips@U 'f&kt@U Pu% 4 +irascibility I,r&s@'bIlItI L@% 6 +irascible I'r&s@bl OA% 4 +irate aI'reIt OA% 2 +irately aI'reItlI Pu% 3 +ire 'aI@R L@$ 1 +ireful 'aI@f@l OA$ 2 +iridescence ,IrI'desns L@% 4 +iridescent ,IrI'desnt OA% 4 +iridium I'rIdI@m L@$ 4 +iris 'aI@rIs K7% 2 +irises 'aI@rIsIz Kj% 3 +irk 3k H0$ 1 +irked 3kt Hc$,Hd% 1 +irking '3kIN Hb$ 2 +irks 3ks Ha% 1 +irksome '3ks@m OA% 2 +iron 'aI@n J0%,M6% 22A,2C,6A,15A,15B +iron-foundries 'aI@n-faUndrIz Kj% 4 +iron-foundry 'aI@n-faUndrI K8% 4 +iron-grey ,aI@n-'greI L@%,OA% 3 +ironclad 'aI@nkl&d OA$ 3 +ironed 'aI@nd Jc%,Jd% 22A,2C,6A,15A,15B +ironic aI'r0nIk OA% 3 +ironical aI'r0nIkl OA% 4 +ironically aI'r0nIklI Pu% 4 +ironies 'aI@r@nIz Mj% 3 +ironing 'aI@nIN Jb% 32A,2C,6A,15A,15B +ironing-board 'aI@nIN-bOd K6% 4 +ironing-boards 'aI@nIN-bOdz Kj% 4 +ironmonger 'aI@nmVNg@R K6% 4 +ironmongeries 'aI@nmVNg@rIz Mj$ 5 +ironmongers 'aI@nmVNg@z Kj% 4 +ironmongery 'aI@nmVNg@rI M8% 5 +ironmould 'aI@nm@Uld K6$ 3 +ironmoulds 'aI@nm@Uldz Kj$ 3 +irons 'aI@nz Ja%,Mj% 22A,2C,6A,15A,15B +ironside 'aI@nsaId K6$ 3 +ironsides 'aI@nsaIdz Kj$ 3 +ironware 'aI@nwe@R L@$ 3 +ironwork 'aI@nw3k K6% 3 +ironworks 'aI@nw3ks K9$ 3 +irony 'aI@r@nI M8% 3 +irradiate I'reIdIeIt H2% 46A +irradiated I'reIdIeItId Hc%,Hd% 56A +irradiates I'reIdIeIts Ha% 46A +irradiating I'reIdIeItIN Hb% 56A +irrational I'r&S@nl OA% 4 +irrationally I'r&S@n@lI Pu% 5 +irreconcilable I,rek@n'saIl@bl OA% 6 +irrecoverable ,IrI'kVv@r@bl OA% 6 +irredeemable ,IrI'dim@bl OA% 5 +irredentist ,IrI'dentIst K6$ 4 +irredentists ,IrI'dentIsts Kj$ 4 +irreducible ,IrI'djus@bl OA% 5 +irrefutable ,IrI'fjut@bl OA% 5 +irregular I'regjUl@R K6$,OA% 4 +irregularities I,regjU'l&rItIz Mj% 6 +irregularity I,regjU'l&rItI M8% 6 +irregularly I'regjUl@lI Pu% 5 +irregulars I'regjUl@z Kj$ 4 +irrelevance I'rel@v@ns M6% 4 +irrelevances I'rel@v@nsIz Mj$ 5 +irrelevancies I'rel@v@nsIz Mj$ 5 +irrelevancy I'rel@v@nsI M8$ 5 +irrelevant I'rel@v@nt OA% 4 +irrelevantly I'rel@v@ntlI Pu% 5 +irreligious ,IrI'lIdZ@s OA% 4 +irremediable ,IrI'midI@bl OA% 6 +irremovable ,IrI'muv@bl OA% 5 +irreparable I'rep@r@bl OA% 5 +irreplaceable ,IrI'pleIs@bl OA% 5 +irrepressible ,IrI'pres@bl OA% 5 +irreproachable ,IrI'pr@UtS@bl OA% 5 +irresistible ,IrI'zIst@bl OA% 5 +irresolute I'rez@lut OA% 4 +irresolution I,rez@'luSn L@$ 5 +irrespective ,IrI'spektIv OA% 4 +irresponsibility ,IrI,sp0ns@'bIlItI L@% 7 +irresponsible ,IrI'sp0ns@bl OA% 5 +irretrievable ,IrI'triv@bl OA% 5 +irretrievably ,IrI'triv@blI Pu% 5 +irreverence I'rev@r@ns L@% 4 +irreverent I'rev@r@nt OA% 4 +irreverently I'rev@r@ntlI Pu% 5 +irreversibility ,IrI,v3s@'bIlItI L@% 7 +irreversible ,IrI'v3s@bl OA% 5 +irreversibly ,IrI'v3s@blI Pu% 5 +irrevocable I'rev@k@bl OA% 5 +irridentism ,IrI'dentIz@m L@$ 5 +irrigate 'IrIgeIt H2% 36A +irrigated 'IrIgeItId Hc%,Hd% 46A +irrigates 'IrIgeIts Ha% 36A +irrigating 'IrIgeItIN Hb% 46A +irrigation ,IrI'geISn L@% 4 +irritability ,IrIt@'bIlItI L@% 6 +irritable 'IrIt@bl OA% 4 +irritably 'IrIt@blI Pu% 4 +irritant 'IrIt@nt K6%,OA% 3 +irritants 'IrIt@nts Kj% 3 +irritate 'IrIteIt H2% 36A +irritated 'IrIteItId Hc%,Hd% 46A +irritates 'IrIteIts Ha% 36A +irritating 'IrIteItIN Hb% 46A +irritation ,IrI'teISn M6% 4 +irritations ,IrI'teISnz Mj% 4 +irruption I'rVpSn K6$ 3 +irruptions I'rVpSnz Kj$ 3 +is Iz Ga*,Ia% 11 +isinglass 'aIzINglAs L@$ 3 +island 'aIl@nd K6% 2 +islander 'aIl@nd@R K6% 3 +islanders 'aIl@nd@z Kj% 3 +islands 'aIl@ndz Kj% 2 +isle aIl K6% 1 +isles aIlz Kj% 1 +islet 'aIlIt K6$ 2 +islets 'aIlIts Kj$ 2 +ism 'Iz@m K6$ 2 +isms 'Iz@mz Kj$ 2 +isn't 'Iznt Gg% 2 +isobar 'aIs@bAR K6% 3 +isobars 'aIs@bAz Kj% 3 +isolate 'aIs@leIt H2% 36A,14 +isolated 'aIs@leItId Hc%,Hd% 46A,14 +isolates 'aIs@leIts Ha% 36A,14 +isolating 'aIs@leItIN Hb% 46A,14 +isolation ,aIs@'leISn L@% 4 +isolationism ,aIs@'leIS@nIz@m L@% 6 +isolationist ,aIs@'leIS@nIst K6% 5 +isolationists ,aIs@'leIS@nIsts Kj% 5 +isosceles aI's0s@liz OA% 4 +isotherm 'aIs@T3m K6$ 3 +isotherms 'aIs@T3mz Kj$ 3 +isotope 'aIs@t@Up K6% 3 +isotopes 'aIs@t@Ups Kj% 3 +issue 'ISu J2%,M6% 22A,3A,6A,14 +issued 'ISud Jc%,Jd% 22A,3A,6A,14 +issues 'ISuz Ja%,Mj% 22A,3A,6A,14 +issuing 'ISuIN Jb% 32A,3A,6A,14 +isthmus 'Ism@s K7% 2 +isthmuses 'Ism@sIz Kj% 3 +it It Qx* 1 +it'll 'Itl Gf% 2 +it's Its Gf* 1 +italic I't&lIk OA% 3 +italicize I't&lIsaIz H2% 4 +italicized I't&lIsaIzd Hc%,Hd% 4 +italicizes I't&lIsaIzIz Ha% 5 +italicizing I't&lIsaIzIN Hb% 5 +italics I't&lIks Kj% 3 +itch ItS I1%,K7% 12A,3A,4A +itched ItSt Ic%,Id% 12A,3A,4A +itches 'ItSIz Ia%,Kj% 22A,3A,4A +itchier 'ItSI@R Or$ 3 +itchiest 'ItSIIst Os$ 3 +itching 'ItSIN Ib% 22A,3A,4A +itchy 'ItSI OD% 2 +item 'aIt@m K6%,Pu% 2 +itemize 'aIt@maIz H2% 36A +itemized 'aIt@maIzd Hc%,Hd% 36A +itemizes 'aIt@maIzIz Ha% 46A +itemizing 'aIt@maIzIN Hb% 46A +items 'aIt@mz Kj% 2 +iterate 'It@reIt H2$ 36A +iterated 'It@reItId Hc$,Hd$ 46A +iterates 'It@reIts Ha$ 36A +iterating 'It@reItIN Hb$ 46A +iteration ,It@'reISn M6$ 4 +iterations ,It@'reISnz Mj$ 4 +itinerant aI'tIn@r@nt OA% 4 +itineraries aI'tIn@r@rIz Kj% 5 +itinerary aI'tIn@r@rI K8% 5 +its Its OA* 1 +itself It'self Qx% 2 +ivied 'aIvId OA$ 2 +ivies 'aIvIz Mj$ 2 +ivory 'aIv@rI L@% 3 +ivy 'aIvI M8% 2 +j dZeI Ki$ 1 +j's dZeIz Kj$ 1 +jab dZ&b J4%,K6% 13A,14,15B +jabbed dZ&bd Jc%,Jd% 13A,14,15B +jabber 'dZ&b@R J0%,L@% 22A,2C,6A,15B +jabbered 'dZ&b@d Jc%,Jd% 22A,2C,6A,15B +jabberer 'dZ&b@r@R K6% 3 +jabberers 'dZ&b@r@z Kj% 3 +jabbering 'dZ&b@rIN Jb% 32A,2C,6A,15B +jabbers 'dZ&b@z Ja% 22A,2C,6A,15B +jabbing 'dZ&bIN Jb% 23A,14,15B +jabot 'Z&b@U K6$ 2 +jabots 'Z&b@Uz Kj$ 2 +jabs dZ&bz Ja%,Kj% 13A,14,15B +jack dZ&k H0%,K6% 115B +jack-in-the-box 'dZ&k-In-D@-b0ks K7% 4 +jack-in-the-boxes 'dZ&k-In-D@-b0ksIz Kj% 5 +jack-knife 'dZ&k-naIf I2%,Ki% 22A +jack-knifed 'dZ&k-naIft Ic%,Id% 22A +jack-knifes 'dZ&k-naIfs Ia% 22A +jack-knifing 'dZ&k-naIfIN Ib% 32A +jack-knives 'dZ&k-naIvz Kj% 2 +jack-o'-lantern dZ&k-@-'l&nt@n K6$ 4 +jack-o'-lanterns dZ&k-@-'l&nt@nz Kj$ 4 +jack-plane 'dZ&k-pleIn K6$ 2 +jack-planes 'dZ&k-pleInz Kj$ 2 +jackal 'dZ&kOl K6% 2 +jackals 'dZ&kOlz Kj% 2 +jackanapes 'dZ&k@neIps Ki$ 3 +jackass 'dZ&k&s K7% 2 +jackasses 'dZ&k&sIz Kj% 3 +jackboot 'dZ&kbut K6% 2 +jackboots 'dZ&kbuts Kj% 2 +jackdaw 'dZ&kdO K6% 2 +jackdaws 'dZ&kdOz Kj% 2 +jacked dZ&kt Hc%,Hd% 115B +jacket 'dZ&kIt K6% 2 +jackets 'dZ&kIts Kj% 2 +jacking 'dZ&kIN Hb% 215B +jackpot 'dZ&kp0t K6% 2 +jackpots 'dZ&kp0ts Kj% 2 +jacks dZ&ks Ha%,Kj% 115B +jade dZeId M6% 1 +jaded 'dZeIdId OA% 2 +jades dZeIdz Mj$ 1 +jag dZ&g H4$,K6$ 16A +jagged 'dZ&gId OA% 2 +jagged dZ&gd Hc$,Hd$ 16A +jaggier 'dZ&gI@R Or$ 3 +jaggiest 'dZ&gIIst Os$ 3 +jagging 'dZ&gIN Hb$ 26A +jaggy 'dZ&gI OD$ 2 +jags dZ&gz Ha$,Kj$ 16A +jaguar 'dZ&gjU@R K6% 3 +jaguars 'dZ&gjU@z Kj% 3 +jail dZeIl H0%,M6% 16A +jailed dZeIld Hc%,Hd% 16A +jailer 'dZeIl@R K6% 2 +jailers 'dZeIl@z Kj% 2 +jailing 'dZeIlIN Hb% 26A +jailor 'dZeIl@R K6% 2 +jailors 'dZeIl@z Kj% 2 +jails dZeIlz Ha%,Mj% 16A +jakes dZeIks Ki$ 1 +jalopies dZ@'l0pIz Kj% 3 +jalopy dZ@'l0pI K8% 3 +jam dZ&m J4%,M6% 12A,2C,6A,14,15A,15B +jamb dZ&m K6$ 1 +jamboree ,dZ&mb@'ri K6% 3 +jamborees ,dZ&mb@'riz Kj% 3 +jambs dZ&mz Kj$ 1 +jamjar 'dZ&mdZAR K6% 2 +jamjars 'dZ&mdZAz Kj% 2 +jammed dZ&md Jc%,Jd% 12A,2C,6A,14,15A,15B +jamming 'dZ&mIN Jb% 22A,2C,6A,14,15A,15B +jampack ,dZ&m'p&k H0$ 26A +jampacked ,dZ&m'p&kt Hc$,Hd% 26A +jampacking ,dZ&m'p&kIN Hb$ 36A +jampacks ,dZ&m'p&ks Ha$ 26A +jampot 'dZ&mp0t K6% 2 +jampots 'dZ&mp0ts Kj% 2 +jams dZ&mz Ja%,Mj% 12A,2C,6A,14,15A,15B +jangle 'dZ&Ngl J2%,L@% 22A,6A +jangled 'dZ&Ngld Jc%,Jd% 22A,6A +jangles 'dZ&Nglz Ja% 22A,6A +jangling 'dZ&NglIN Jb% 22A,6A +janitor 'dZ&nIt@R K6% 3 +janitors 'dZ&nIt@z Kj% 3 +japan dZ@'p&n H4$ 2 +japanned dZ@'p&nd Hc$,Hd$ 2 +japanning dZ@'p&nIN Hb$ 3 +japans dZ@'p&nz Ha$ 2 +jape dZeIp K6% 1 +japes dZeIps Kj% 1 +japonica dZ@'p0nIk@ L@$ 4 +jar dZAR J4%,K6% 12A,3A,6A +jarful 'dZAfUl K6% 2 +jarfuls 'dZAfUlz Kj% 2 +jargon 'dZAg@n L@% 2 +jarred dZAd Jc%,Jd% 12A,3A,6A +jarring 'dZArIN Jb%,OA% 22A,3A,6A +jarringly 'dZArINlI Pu% 3 +jars dZAz Ja%,Kj% 12A,3A,6A +jasmine 'dZ&smIn L@% 2 +jasper 'dZ&sp@R L@% 2 +jaundice 'dZOndIs H2$,L@% 2 +jaundiced 'dZOndIst Hc$,Hd% 2 +jaundices 'dZOndIsIz Ha$ 3 +jaundicing 'dZOndIsIN Hb$ 3 +jaunt dZOnt I0%,K6% 12A,2C +jaunted 'dZOntId Ic%,Id% 22A,2C +jauntier 'dZOntI@R Or$ 3 +jauntiest 'dZOntIIst Os$ 3 +jauntily 'dZOntIlI Pu% 3 +jauntiness 'dZOntIn@s L@% 3 +jaunting 'dZOntIN Ib% 22A,2C +jaunting-car 'dZOntIN-kAR K6$ 3 +jaunting-cars 'dZOntIN-kAz Kj$ 3 +jaunts dZOnts Ia%,Kj% 12A,2C +jaunty 'dZOntI OD% 2 +javelin 'dZ&vlIn K6% 2 +javelins 'dZ&vlInz Kj% 2 +jaw dZO I0%,K6% 12A,2C,3A +jawbone 'dZOb@Un K6% 2 +jawbones 'dZOb@Unz Kj% 2 +jawbreaker 'dZObreIk@R K6% 3 +jawbreakers 'dZObreIk@z Kj% 3 +jawed dZOd Ic$,Id$ 12A,2C,3A +jawing 'dZOIN Ib$ 22A,2C,3A +jaws dZOz Ia$,Kj% 12A,2C,3A +jay dZeI K6% 1 +jays dZeIz Kj% 1 +jaywalk 'dZeIwOk I0% 2 +jaywalked 'dZeIwOkt Ic%,Id% 2 +jaywalker 'dZeIwOk@R K6% 3 +jaywalkers 'dZeIwOk@z Kj% 3 +jaywalking 'dZeIwOkIN Ib% 3 +jaywalks 'dZeIwOks Ia% 2 +jazz dZ&z H1$,L@% 16A,15B +jazzed dZ&zd Hc$,Hd% 16A,15B +jazzes 'dZ&zIz Ha$ 26A,15B +jazzier 'dZ&zI@R Or$ 3 +jazziest 'dZ&zIIst Os$ 3 +jazzing 'dZ&zIN Hb$ 26A,15B +jazzy 'dZ&zI OD% 2 +jealous 'dZel@s OA% 2 +jealousies 'dZel@sIz Mj% 3 +jealously 'dZel@slI Pu% 3 +jealousy 'dZel@sI M8% 3 +jean dZin L@$ 1 +jeans dZinz Kj% 1 +jeep dZip K6% 1 +jeeps dZips Kj% 1 +jeer dZI@R J0%,K6% 12A,3A,6A +jeered dZI@d Jc%,Jd% 12A,3A,6A +jeering 'dZI@rIN Jb% 22A,3A,6A +jeeringly 'dZI@rINlI Pu% 3 +jeers dZI@z Ja%,Kj% 12A,3A,6A +jejune dZI'dZun OA$ 2 +jejunely dZI'dZunlI Pu$ 3 +jejuneness dZI'dZun+n@s L@$ 3 +jell dZel J0$ 12A,6A +jellaba 'dZel@b@ K6$ 3 +jellabas 'dZel@b@z Kj$ 3 +jelled dZeld Jc$,Jd$ 12A,6A +jellied 'dZelId Jc%,Jd%,OA% 22A,6A +jellies 'dZelIz Ja%,Mj% 22A,6A +jelling 'dZelIN Jb$ 22A,6A +jells dZelz Ja$ 12A,6A +jelly 'dZelI J3%,M8% 22A,6A +jellyfish 'dZelIfIS K9% 3 +jellyfishes 'dZelIfISIz Kj% 4 +jellying 'dZelIIN Jb% 32A,6A +jemmies 'dZemIz Kj% 2 +jemmy 'dZemI K8% 2 +jennies 'dZenIz Kj$ 2 +jenny 'dZenI K8$ 2 +jeopardize 'dZep@daIz H2% 36A +jeopardized 'dZep@daIzd Hc%,Hd% 36A +jeopardizes 'dZep@daIzIz Ha% 46A +jeopardizing 'dZep@daIzIN Hb% 46A +jeopardy 'dZep@dI L@% 3 +jerboa dZ3'b@U@ K6$ 3 +jerboas dZ3'b@U@z Kj$ 3 +jeremiad ,dZerI'maI&d K6$ 4 +jeremiads ,dZerI'maI&dz Kj$ 4 +jerk dZ3k J0%,K6% 12C,6A,15A,15B +jerked dZ3kt Jc%,Jd% 12C,6A,15A,15B +jerkier 'dZ3kI@R Or$ 3 +jerkiest 'dZ3kIIst Os$ 3 +jerkily 'dZ3kIlI Pu% 3 +jerkin 'dZ3kIn K6% 2 +jerkiness 'dZ3kIn@s L@% 3 +jerking 'dZ3kIN Jb% 22C,6A,15A,15B +jerkins 'dZ3kInz Kj% 2 +jerks dZ3ks Ja%,Kj% 12C,6A,15A,15B +jerky 'dZ3kI OD% 2 +jerries 'dZerIz Kj$ 2 +jerry 'dZerI K8$ 2 +jerry-builder 'dZerI-bIld@R K6% 4 +jerry-builders 'dZerI-bIld@z Kj% 4 +jerry-building 'dZerI-bIldIN L@% 4 +jerry-built 'dZerI-bIlt OA% 3 +jersey 'dZ3zI M6% 2 +jerseys 'dZ3zIz Mj% 2 +jest dZest I0%,K6% 12A,3A +jested 'dZestId Ic%,Id% 22A,3A +jester 'dZest@R K6% 2 +jesters 'dZest@z Kj% 2 +jesting 'dZestIN Ib%,OA% 22A,3A +jestingly 'dZestINlI Pu% 3 +jests dZests Ia%,Kj% 12A,3A +jet dZet J4%,M6% 1 +jet-black 'dZet-,bl&k OA% 2 +jet-propelled dZet-pr@'peld OA% 3 +jets dZets Ja%,Mj% 1 +jetsam 'dZets@m L@$ 2 +jetted 'dZetId Jc%,Jd% 2 +jetties 'dZetIz Kj% 2 +jetting 'dZetIN Jb% 2 +jettison 'dZetIsn H0% 36A +jettisoned 'dZetIsnd Hc%,Hd% 36A +jettisoning 'dZetIsnIN Hb$ 46A +jettisons 'dZetIsnz Ha$ 36A +jetty 'dZetI K8% 2 +jewel 'dZu@l H4$,K6% 2 +jewelled 'dZu@ld Hc$,Hd% 2 +jeweller 'dZu@l@R K6% 3 +jewellers 'dZu@l@z Kj% 3 +jewellery 'dZu@lrI L@% 3 +jewelling 'dZu@lIN Hb$ 3 +jewelry 'dZu@lrI L@% 3 +jewels 'dZu@lz Ha$,Kj% 2 +jib dZIb I4%,K6% 12A,3A +jib-boom 'dZIb-bum K6$ 2 +jib-booms 'dZIb-bumz Kj$ 2 +jibbed dZIbd Ic%,Id% 12A,3A +jibbing 'dZIbIN Ib% 22A,3A +jibe dZaIb I2%,K6% 12A,3A +jibed dZaIbd Ic%,Id% 12A,3A +jibes dZaIbz Ia%,Kj% 12A,3A +jibing 'dZaIbIN Ib% 22A,3A +jibs dZIbz Ia%,Kj% 12A,3A +jiffies 'dZIfIz Kj$ 2 +jiffy 'dZIfI K8% 2 +jig dZIg J4%,K6% 12A,2C,15B +jigged dZIgd Jc%,Jd% 12A,2C,15B +jigger 'dZIg@R K6$ 2 +jiggered 'dZIg@d Op% 2 +jiggers 'dZIg@z Kj$ 2 +jiggery-pokery ,dZIg@rI-'p@Uk@rI L@% 6 +jigging 'dZIgIN Jb% 22A,2C,15B +jiggle 'dZIgl J2$,K6$ 2 +jiggled 'dZIgld Jc$,Jd$ 2 +jiggles 'dZIglz Ja$,Kj$ 2 +jiggling 'dZIglIN Jb$ 2 +jigs dZIgz Ja%,Kj% 12A,2C,15B +jigsaw 'dZIgsO K6% 2 +jigsaws 'dZIgsOz Kj% 2 +jihad dZI'hAd K6$ 2 +jihads dZI'hAdz Kj$ 2 +jilt dZIlt H0%,K6% 16A +jilted 'dZIltId Hc%,Hd% 26A +jilting 'dZIltIN Hb% 26A +jilts dZIlts Ha%,Kj% 16A +jim-jams 'dZIm-dZ&mz Kj$ 2 +jiminy 'dZIm@nI W-$ 3 +jimmies 'dZImIz Kj$ 2 +jimmy 'dZImI K8$ 2 +jingle 'dZINgl J2%,K6% 22A,2C,6A,15B +jingled 'dZINgld Jc%,Jd% 22A,2C,6A,15B +jingles 'dZINglz Ja%,Kj% 22A,2C,6A,15B +jingling 'dZINglIN Jb% 22A,2C,6A,15B +jingo 'dZINg@U K7$ 2 +jingoes 'dZINg@Uz Kj$ 2 +jingoism 'dZINg@UIz@m L@% 4 +jingoist 'dZINg@UIst K6% 3 +jingoistic ,dZINg@U'IstIk OA% 4 +jingoists 'dZINg@UIsts Kj% 3 +jinks dZINks L@% 1 +jinn dZIn K6$ 1 +jinns dZInz Kj$ 1 +jinx dZINks K7% 1 +jinxes 'dZINksIz Kj$ 2 +jitney 'dZItnI K6$ 2 +jitneys 'dZItnIz Kj$ 2 +jitterbug 'dZIt@bVg K6% 3 +jitterbugs 'dZIt@bVgz Kj$ 3 +jitters 'dZIt@z Kj% 2 +jittery 'dZIt@rI OA% 3 +jive dZaIv I2%,K6% 1 +jived dZaIvd Ic%,Id% 1 +jives dZaIvz Ia%,Kj% 1 +jiving 'dZaIvIN Ib% 2 +job dZ0b J4$,K6* 12A,6A,14 +jobbed dZ0bd Jc$,Jd$ 12A,6A,14 +jobber 'dZ0b@R K6% 2 +jobbers 'dZ0b@z Kj% 2 +jobbery 'dZ0b@rI L@$ 3 +jobbing 'dZ0bIN Jb% 22A,6A,14 +jobs dZ0bz Ja$,Kj% 12A,6A,14 +jockey 'dZ0kI J0%,K6% 23A,15A +jockeyed 'dZ0kId Jc%,Jd% 23A,15A +jockeying 'dZ0kIIN Jb% 33A,15A +jockeys 'dZ0kIz Ja%,Kj% 23A,15A +jocose dZ@U'k@Us OA% 2 +jocosely dZ@U'k@UslI Pu% 3 +jocoseness dZ@U'k@Usn@s L@$ 3 +jocosity dZ@U'k0sItI L@$ 4 +jocular 'dZ0kjUl@R OA% 3 +jocularities ,dZ0kjU'l&rItIz Mj$ 5 +jocularity ,dZ0kjU'l&rItI M8% 5 +jocularly 'dZ0kjUl@lI Pu% 4 +jocund 'dZ0k@nd OA% 2 +jocundities dZ@U'kVndItIz Mj$ 4 +jocundity dZ@U'kVndItI M8$ 4 +jodhpurs 'dZ0dp@z Kj% 2 +jog dZ0g J4%,K6% 12A,2C,6A,15B +jog-trot 'dZ0g-tr0t K6% 2 +jog-trots 'dZ0g-tr0ts Kj% 2 +jogged dZ0gd Jc%,Jd% 12A,2C,6A,15B +jogger 'dZ0g@R K6% 2 +joggers 'dZ0g@z Kj% 2 +jogging 'dZ0gIN Jb%,L@% 22A,2C,6A,15B +joggle 'dZ0gl J2$,K6$ 22A,6A +joggled 'dZ0gld Jc$,Jd$ 22A,6A +joggles 'dZ0glz Ja$,Kj$ 22A,6A +joggling 'dZ0glIN Jb$ 22A,6A +jogs dZ0gz Ja%,Kj% 12A,2C,6A,15B +john dZ0n Ki$ 1 +joie de vivre ,ZwA d@ 'vivr@ L@% 4 +join dZoIn J0%,K6% 12A,2C,3A,6A,14,15A,15B +joined dZoInd Jc%,Jd% 12A,2C,3A,6A,14,15A,15B +joiner 'dZoIn@R K6% 2 +joiners 'dZoIn@z Kj% 2 +joinery 'dZoIn@rI L@% 3 +joining 'dZoInIN Jb% 22A,2C,3A,6A,14,15A,15B +joins dZoInz Ja%,Kj% 12A,2C,3A,6A,14,15A,15B +joint dZoInt H0$,K6%,OA% 16A +jointed 'dZoIntId Hc$,Hd% 26A +jointing 'dZoIntIN Hb$ 26A +jointly 'dZoIntlI Pu% 2 +joints dZoInts Ha$,Kj% 16A +jointure 'dZoIntS@R K6$ 2 +jointures 'dZoIntS@z Kj$ 2 +joist dZoIst K6% 1 +joists dZoIsts Kj% 1 +joke dZ@Uk I2%,K6% 12A,2C +joked dZ@Ukt Ic%,Id% 12A,2C +joker 'dZ@Uk@R K6% 2 +jokers 'dZ@Uk@z Kj% 2 +jokes dZ@Uks Ia%,Kj% 12A,2C +joking 'dZ@UkIN Ib% 22A,2C +jokingly 'dZ@UkINlI Pu% 3 +jollied 'dZ0lId Hc%,Hd% 26A,15A,15B +jollier 'dZ0lI@R Or% 3 +jollies 'dZ0lIz Ha% 26A,15A,15B +jolliest 'dZ0lIIst Os% 3 +jollification ,dZ0lIfI'keISn M6% 5 +jollifications ,dZ0lIfI'keISnz Mj% 5 +jollities 'dZ0lItIz Mj% 3 +jollity 'dZ0lItI M8% 3 +jolly 'dZ0lI H3%,OD%,Pu% 26A,15A,15B +jollyboat 'dZ0lIb@Ut K6$ 3 +jollyboats 'dZ0lIb@Uts Kj$ 3 +jollying 'dZ0lIIN Hb% 36A,15A,15B +jolt dZ@Ult J0%,K6% 12A,2C,6A,15A,15B +jolted 'dZ@UltId Jc%,Jd% 22A,2C,6A,15A,15B +joltier 'dZ@UltI@R Or$ 3 +joltiest 'dZ@UltIIst Os$ 3 +jolting 'dZ@UltIN Jb% 22A,2C,6A,15A,15B +jolts dZ@Ults Ja%,Kj% 12A,2C,6A,15A,15B +jolty 'dZ@UltI OD% 2 +jonquil 'dZ0NkwIl K6$ 2 +jonquils 'dZ0NkwIlz Kj$ 2 +joss dZ0s K7$ 1 +joss-house 'dZ0s-haUs K6$ 2 +joss-houses 'dZ0s-haUzIz Kj$ 3 +joss-stick 'dZ0s-stIk K6% 2 +joss-sticks 'dZ0s-stIks Kj% 2 +josses 'dZ0sIz Kj$ 2 +jostle 'dZ0sl J2% 22C,6A +jostled 'dZ0sld Jc%,Jd% 22C,6A +jostles 'dZ0slz Ja% 22C,6A +jostling 'dZ0slIN Jb% 22C,6A +jot dZ0t H4%,K6% 115B +jots dZ0ts Ha%,Kj% 115B +jotted 'dZ0tId Hc%,Hd% 215B +jotter 'dZ0t@R K6% 2 +jotters 'dZ0t@z Kj% 2 +jotting 'dZ0tIN Hb% 215B +jottings 'dZ0tINs Kj% 2 +joule dZul K6$ 1 +joules dZulz Kj$ 1 +journal 'dZ3nl K6% 2 +journalese ,dZ3n@'liz L@% 3 +journalism 'dZ3n@lIz@m L@% 4 +journalist 'dZ3n@lIst K6% 3 +journalistic ,dZ3n@'lIstIk OA% 4 +journalistically ,dZ3n@'lIstIklI Pu% 5 +journalists 'dZ3n@lIsts Kj% 3 +journals 'dZ3nlz Kj% 2 +journey 'dZ3nI I0%,K6% 22A,2C +journeyed 'dZ3nId Ic%,Id% 22A,2C +journeying 'dZ3nIIN Ib% 32A,2C +journeyman 'dZ3nIm@n Ki% 3 +journeymen 'dZ3nIm@n Kj% 3 +journeys 'dZ3nIz Ia%,Kj% 22A,2C +joust dZaUst I0%,K6% 1 +jousted 'dZaUstId Ic%,Id% 2 +jousting 'dZaUstIN Ib% 2 +jousts dZaUsts Ia%,Kj% 1 +jovial 'dZ@UvI@l OA% 3 +jovialities ,dZ@UvI'&lItIz Mj$ 5 +joviality ,dZ@UvI'&lItI M8% 5 +jovially 'dZ@UvI@lI Pu% 4 +jowl dZaUl K6% 1 +jowlier 'dZaUlI@R Or$ 3 +jowliest 'dZaUlIIst Os$ 3 +jowls dZaUlz Kj% 1 +jowly 'dZaUlI OD$ 2 +joy dZoI I0$,M6% 1 +joy-bells 'dZoI-belz Kj$ 2 +joy-ride 'dZoI-raId K6% 2 +joy-rides 'dZoI-raIdz Kj% 2 +joy-stick 'dZoI-stIk K6% 2 +joy-sticks 'dZoI-stIks Kj% 2 +joyed dZoId Ic$,Id$ 1 +joyful 'dZoIf@l OA% 2 +joyfully 'dZoIf@lI Pu% 3 +joyfulness 'dZoIf@ln@s L@% 3 +joying 'dZoIIN Ib$ 2 +joyless 'dZoIl@s OA% 2 +joylessly 'dZoIl@slI Pu% 3 +joylessness 'dZoIl@sn@s L@% 3 +joyous 'dZoI@s OA% 2 +joyously 'dZoI@slI Pu% 3 +joyousness 'dZoI@sn@s L@% 3 +joys dZoIz Ia$,Mj% 1 +ju-jitsu ,dZu-'dZItsu L@% 3 +jubilant 'dZubIl@nt OA% 3 +jubilantly 'dZubIl@ntlI Pu% 4 +jubilation ,dZubI'leISn M6% 4 +jubilations ,dZubI'leISnz Mj$ 4 +jubilee 'dZubIli K6% 3 +jubilees 'dZubIliz Kj% 3 +judder 'dZVd@R I0% 2 +juddered 'dZVd@d Ic%,Id% 2 +juddering 'dZVd@rIN Ib% 3 +judders 'dZVd@z Ia% 2 +judge dZVdZ J2%,K6% 12A,3A,6A,9,10,22,25 +judged dZVdZd Jc%,Jd% 12A,3A,6A,9,10,22,25 +judgement 'dZVdZm@nt M6% 2 +judgements 'dZVdZm@nts Mj% 2 +judges 'dZVdZIz Ja%,Kj% 22A,3A,6A,9,10,22,25 +judging 'dZVdZIN Jb% 22A,3A,6A,9,10,22,25 +judicature 'dZudIk@tS@R M6$ 4 +judicatures 'dZudIk@tS@z Mj$ 4 +judicial dZu'dISl OA% 3 +judiciaries dZu'dIS@rIz Kj$ 4 +judiciary dZu'dIS@rI K8% 4 +judicious dZu'dIS@s OA% 3 +judiciously dZu'dIS@slI Pu% 4 +judiciousness dZu'dIS@sn@s L@% 4 +judo 'dZud@U L@% 2 +jug dZVg H4$,K6% 16A +jugful 'dZVgfUl K6% 2 +jugfuls 'dZVgfUlz Kj% 2 +jugged dZVgd Hc$,Hd% 16A +juggernaut 'dZVg@nOt K6% 3 +juggernauts 'dZVg@nOts Kj% 3 +jugging 'dZVgIN Hb$ 26A +juggle 'dZVgl J2% 22A,3A,6A,16A +juggled 'dZVgld Jc%,Jd% 22A,3A,6A,16A +juggler 'dZVgl@R K6% 2 +jugglers 'dZVgl@z Kj% 2 +juggles 'dZVglz Ja% 22A,3A,6A,16A +juggling 'dZVglIN Jb% 22A,3A,6A,16A +jugs dZVgz Ha$,Kj% 16A +jugular 'dZVgjUl@R OA% 3 +juice dZus M6% 1 +juices 'dZusIz Mj% 2 +juicier 'dZusI@R Or% 3 +juiciest 'dZusIIst Os% 3 +juiciness 'dZusIn@s L@% 3 +juicy 'dZusI OD% 2 +juju 'dZudZu K6$ 2 +jujube 'dZudZub K6$ 2 +jujubes 'dZudZubz Kj$ 2 +jujus 'dZudZuz Kj$ 2 +jukebox 'dZukb0ks K7% 2 +jukeboxes 'dZukb0ksIz Kj% 3 +julep 'dZulIp K6$ 2 +juleps 'dZulIps Kj$ 2 +jumble 'dZVmbl J2%,M6% 22C,15B +jumble-sale 'dZVmbl-seIl K6% 3 +jumble-sales 'dZVmbl-seIlz Kj% 3 +jumbled 'dZVmbld Jc%,Jd% 22C,15B +jumbles 'dZVmblz Ja%,Mj% 22C,15B +jumbling 'dZVmblIN Jb% 22C,15B +jumbo 'dZVmb@U OA% 2 +jump dZVmp J0%,K6% 12A,2C,6A +jumped dZVmpt Jc%,Jd% 12A,2C,6A +jumped-up 'dZVmpt-Vp OA% 2 +jumper 'dZVmp@R K6% 2 +jumpers 'dZVmp@z Kj% 2 +jumpier 'dZVmpI@R Or$ 3 +jumpiest 'dZVmpIIst Os$ 3 +jumpiness 'dZVmpIn@s L@% 3 +jumping 'dZVmpIN Jb% 22A,2C,6A +jumps dZVmps Ja%,Kj% 12A,2C,6A +jumpy 'dZVmpI OD% 2 +junction 'dZVNkSn M6% 2 +junctions 'dZVNkSnz Mj% 2 +juncture 'dZVNktS@R K6% 2 +junctures 'dZVNktS@z Kj$ 2 +jungle 'dZVNgl K6% 2 +jungles 'dZVNglz Kj% 2 +junglier 'dZVNglI@R Or$ 3 +jungliest 'dZVNglIIst Os$ 3 +jungly 'dZVNglI OD% 2 +junior 'dZunI@R K6%,OA% 3 +juniors 'dZunI@z Kj% 3 +juniper 'dZunIp@R K6% 3 +junipers 'dZunIp@z Kj% 3 +junk dZVNk M6% 1 +junk-shop 'dZVNk-S0p K6% 2 +junk-shops 'dZVNk-S0ps Kj% 2 +junket 'dZVNkIt I0%,M6% 2 +junketed 'dZVNkItId Ic%,Id% 3 +junketing 'dZVNkItIN Ib%,L@% 3 +junkets 'dZVNkIts Ia%,Mj% 2 +junkie 'dZVNkI K6% 2 +junkies 'dZVNkIz Kj% 2 +junks dZVNks Mj% 1 +junky 'dZVNkI K8% 2 +junta 'dZVnt@ K6% 2 +juntas 'dZVnt@z Kj% 2 +juridical dZU@'rIdIkl OA$ 4 +juries 'dZU@rIz Kj% 2 +jurisdiction ,dZU@rIs'dIkSn L@% 4 +jurisprudence ,dZU@rIs'prudns L@% 4 +jurist 'dZU@rIst K6% 2 +jurists 'dZU@rIsts Kj% 2 +juror 'dZU@r@R K6% 2 +jurors 'dZU@r@z Kj% 2 +jury 'dZU@rI K8% 2 +jury-box 'dZU@rI-b0ks K7% 3 +jury-boxes 'dZU@rI-b0ksIz Kj% 4 +jury-mast 'dZU@rI-mAst K6$ 3 +jury-masts 'dZU@rI-mAsts Kj$ 3 +juryman 'dZU@rIm@n Ki% 3 +jurymen 'dZU@rIm@n Kj% 3 +just dZVst OA%,Pu* 1 +justice 'dZVstIs M6% 2 +justices 'dZVstIsIz Mj% 3 +justiciaries dZV'stIS@rIz Kj$ 4 +justiciary dZV'stIS@rI K8$ 4 +justifiable ,dZVstI'faI@bl OA% 5 +justifiably ,dZVstI'faI@blI Pu% 5 +justification ,dZVstIfI'keISn M6% 5 +justifications ,dZVstIfI'keISnz Mj% 5 +justified 'dZVstIfaId Hc%,Hd% 36A,19C +justifies 'dZVstIfaIz Ha% 36A,19C +justify 'dZVstIfaI H3% 36A,19C +justifying 'dZVstIfaIIN Hb% 46A,19C +justly 'dZVstlI Pu% 2 +justness 'dZVstn@s L@% 2 +jut dZVt I4% 12C +jute dZut L@% 1 +juts dZVts Ia% 12C +jutted 'dZVtId Ic%,Id% 22C +jutting 'dZVtIN Ib% 22C +juvenile 'dZuv@naIl K6%,OA% 3 +juveniles 'dZuv@naIlz Kj% 3 +juxtapose ,dZVkst@'p@Uz H2% 36A +juxtaposed ,dZVkst@'p@Uzd Hc%,Hd% 36A +juxtaposes ,dZVkst@'p@UzIz Ha% 46A +juxtaposing ,dZVkst@'p@UzIN Hb% 46A +juxtaposition ,dZVkst@p@'zISn L@% 5 +k keI Ki$ 1 +k"ummel 'kUm@l L@$ 2 +k's keIz Kj$ 1 +kaffir 'k&f@R K6$ 2 +kaffirs 'k&f@z Kj$ 2 +kail keIl L@$ 1 +kakemono ,k&kI'm@Un@U K6$ 4 +kakemonos ,k&kI'm@Un@Uz Kj$ 4 +kale keIl L@$ 1 +kaleidoscope k@'laId@sk@Up K6% 4 +kaleidoscopes k@'laId@sk@Ups Kj% 4 +kaleidoscopic k@,laId@'sk0pIk OA% 5 +kalends 'k&lendz Kj$ 2 +kampong 'k&mp0N K6$ 2 +kampongs 'k&mp0Nz Kj$ 2 +kangaroo ,k&Ng@'ru K6% 3 +kangaroos ,k&Ng@'ruz Kj% 3 +kaolin 'keI@lIn L@$ 3 +kapok 'keIp0k L@$ 2 +kaput k@'pUt OA$ 2 +karat 'k&r@t K6$ 2 +karate k@'rAtI L@% 3 +karats 'k&r@ts Kj$ 2 +karma 'kAm@ K6$ 2 +karmas 'kAm@z Kj$ 2 +kava 'kAv@ L@$ 2 +kayak 'kaI&k K6$ 2 +kayaks 'kaI&ks Kj$ 2 +kebab k@'b&b K6% 2 +kebabs k@'b&bz Kj% 2 +kedgeree 'kedZ@ri L@% 3 +keel kil J0%,K6% 12C,6A,15B +keeled kild Jc%,Jd% 12C,6A,15B +keeling 'kilIN Jb% 22C,6A,15B +keels kilz Ja%,Kj% 12C,6A,15B +keen kin J0$,K6$,OC% 1 +keened kind Jc$,Jd$ 1 +keener 'kin@R Or% 2 +keenest 'kinIst Os% 2 +keening 'kinIN Jb$ 2 +keenly 'kinlI Pu% 2 +keenness 'kin+n@s L@% 2 +keens kinz Ja$,Kj$ 1 +keep kip J5*,M6% 12A,2C,2E,3A,6A,14,15A,15B,19B,22 +keeper 'kip@R K6% 2 +keepers 'kip@z Kj% 2 +keeping 'kipIN Jb%,L@% 22A,2C,2E,3A,6A,14,15A,15B,19B,22 +keeps kips Ja%,Mj% 12A,2C,2E,3A,6A,14,15A,15B,19B,22 +keepsake 'kipseIk K6% 2 +keepsakes 'kipseIks Kj% 2 +keg keg K6% 1 +kegs kegz Kj% 1 +kelp kelp L@$ 1 +ken ken H4$,L@$ 16A,9 +kenned kend Hc$,Hd$ 16A,9 +kennel 'kenl J4$,K6% 2 +kennelled 'kenld Jc$,Jd$ 2 +kennelling 'ken@lIN Jb$ 3 +kennels 'kenlz Ja$,Kj% 2 +kenning 'kenIN Hb$ 26A,9 +kens kenz Ha$ 16A,9 +kepi 'keIpI K6$ 2 +kepis 'keIpIz Kj$ 2 +kept kept Jc*,Jd* 12A,2C,2E,3A,6A,14,15A,15B,19B,22 +kerb k3b K6% 1 +kerbs k3bz Kj% 1 +kerbstone 'k3bst@Un K6% 2 +kerbstones 'k3bst@Unz Kj% 2 +kerchief 'k3tSIf K6$ 2 +kerchiefs 'k3tSIfs Kj$ 2 +kernel 'k3nl K6% 2 +kernels 'k3nlz Kj% 2 +kerosene 'ker@sin L@% 3 +kestrel 'kestr@l K6% 2 +kestrels 'kestr@lz Kj% 2 +ketch ketS K7$ 1 +ketches 'ketSIz Kj$ 2 +ketchup 'ketS@p L@% 2 +kettle 'ketl K6% 2 +kettledrum 'ketldrVm K6% 3 +kettledrums 'ketldrVmz Kj% 3 +kettles 'ketlz Kj% 2 +key ki H0%,K6% 16A +keyboard 'kibOd K6% 2 +keyboards 'kibOdz Kj% 2 +keyed kid Hc%,Hd% 16A +keyhole 'kih@Ul K6% 2 +keyholes 'kih@Ulz Kj% 2 +keying 'kiIN Hb% 26A +keyless 'kil@s OA$ 2 +keynote 'kin@Ut K6% 2 +keynotes 'kin@Uts Kj% 2 +keyring 'kirIN K6% 2 +keyrings 'kirINz Kj% 2 +keys kiz Ha%,Kj% 16A +keystone 'kist@Un K6% 2 +keystones 'kist@Unz Kj$ 2 +keyword 'kiw3d K6% 2 +keywords 'kiw3dz Kj% 2 +kg 'kIl@gr&mz Y]% 3 +khaki 'kAkI L@%,OA% 2 +khan kAn K6$ 1 +khans kAnz Kj$ 1 +kibbutz kI'bUts Ki% 2 +kibbutzim kIbU'tsim Kj$ 3 +kibbutznik kI'bUtsnIk K6$ 3 +kibbutzniks kI'bUtsnIks Kj$ 3 +kick kIk J0%,M6% 12A,2C,3A,6A,15A,15B +kick-start 'kIk-stAt K6% 2 +kick-starter 'kIk-stAt@R K6% 3 +kick-starters 'kIk-stAt@z Kj% 3 +kick-starts 'kIk-stAts Kj$ 2 +kickback 'kIkb&k K6% 2 +kickbacks 'kIkb&ks Kj$ 2 +kicked kIkt Jc%,Jd% 12A,2C,3A,6A,15A,15B +kicking 'kIkIN Jb% 22A,2C,3A,6A,15A,15B +kickoff 'kIk0f K6% 2 +kickoffs 'kIk0fs Kj% 2 +kicks kIks Ja%,Mj% 12A,2C,3A,6A,15A,15B +kid kId J4%,M6% 1 +kidded 'kIdId Jc%,Jd% 2 +kiddies 'kIdIz Kj% 2 +kidding 'kIdIN Jb% 2 +kiddy 'kIdI K8% 2 +kidnap 'kIdn&p H4% 2 +kidnapped 'kIdn&pt Hc%,Hd% 2 +kidnapper 'kIdn&p@R K6% 3 +kidnappers 'kIdn&p@z Kj% 3 +kidnapping 'kIdn&pIN Hb% 3 +kidnaps 'kIdn&ps Ha% 2 +kidney 'kIdnI K6% 2 +kidney-bean ,kIdnI-'bin K6% 3 +kidney-beans ,kIdnI-'binz Kj% 3 +kidneys 'kIdnIz Kj% 2 +kids kIdz Ja%,Mj% 1 +kill kIl J0%,Ki% 12A,6A,15B +killed kIld Jc%,Jd% 12A,6A,15B +killer 'kIl@R K6% 2 +killers 'kIl@z Kj% 2 +killing 'kIlIN Jb%,M6%,OA% 22A,6A,15B +killingly 'kIlINlI Pu$ 3 +killings 'kIlINz Mj% 2 +killjoy 'kIldZoI K6% 2 +killjoys 'kIldZoIz Kj$ 2 +kills kIlz Ja% 12A,6A,15B +kiln kIln K6% 1 +kilns kIlnz Kj% 1 +kilo 'kil@U K6% 2 +kilo- 'kIl@- U-% 2 +kilocycle 'kIl@saIkl K6$ 4 +kilocycles 'kIl@saIklz Kj$ 4 +kilogram 'kIl@gr&m K6% 3 +kilograms 'kIl@gr&mz Kj% 3 +kilolitre 'kIl@lit@R K6$ 4 +kilolitres 'kIl@lit@z Kj$ 4 +kilometre kI'l0mIt@R K6% 4 +kilometres kI'l0mIt@z Kj% 4 +kilos 'kil@Uz Kj% 2 +kilowatt 'kIl@w0t K6% 3 +kilowatts 'kIl@w0ts Kj% 3 +kilt kIlt K6% 1 +kilts kIlts Kj% 1 +kimono kI'm@Un@U K6% 3 +kimonos kI'm@Un@Uz Kj% 3 +kin kIn Kj% 1 +kind kaInd M6*,OC% 1 +kind-hearted kaInd-'hAtId OA% 3 +kinda 'kaInd@ Pu$ 2 +kinder 'kaInd@R Or% 2 +kindergarten 'kInd@gAtn K6% 4 +kindergartens 'kInd@gAtnz Kj% 4 +kindest 'kaIndIst Os% 2 +kindle 'kIndl J2% 22A,6A +kindled 'kIndld Jc%,Jd% 22A,6A +kindles 'kIndlz Ja% 22A,6A +kindlier 'kaIndlI@R Or% 3 +kindliest 'kaIndlIIst Os% 3 +kindling 'kIndlIN Jb%,L@% 22A,6A +kindly 'kaIndlI OD%,Pu% 2 +kindness 'kaIndn@s M7% 2 +kindnesses 'kaIndn@sIz Mj% 3 +kindred 'kIndrId L@%,OA% 2 +kinds kaIndz Mj% 1 +kine kaIn Kj$ 1 +kinetic kI'netIk OA$ 3 +kinetics kI'netIks Lk$ 3 +king kIN K6% 1 +king-size 'kIN-saIz OA% 2 +king-sized 'kIN-saIzd OA% 2 +kingcup 'kINkVp K6% 2 +kingcups 'kINkVps Kj% 2 +kingdom 'kINd@m K6% 2 +kingdoms 'kINd@mz Kj% 2 +kingfisher 'kINfIS@R K6% 3 +kingfishers 'kINfIS@z Kj% 3 +kinglike 'kINlaIk OA% 2 +kingly 'kINlI OA% 2 +kingpin 'kINpIn K6% 2 +kingpins 'kINpInz Kj$ 2 +kings kINz Kj% 1 +kingship 'kINSIp L@% 2 +kink kINk J0%,K6% 1 +kinked kINkt Jc%,Jd% 1 +kinkier 'kINkI@R Or% 3 +kinkiest 'kINkIIst Os% 3 +kinking 'kINkIN Jb$ 2 +kinks kINks Ja%,Kj% 1 +kinky 'kINkI OD% 2 +kinsfolk 'kInzf@Uk Kj% 2 +kinship 'kinSIp L@% 2 +kinsman 'kInzm@n Ki% 2 +kinsmen 'kInzm@n Kj% 2 +kinswoman 'kInzwUm@n Ki% 3 +kinswomen 'kInzwImIn Kj% 3 +kiosk 'ki0sk K6% 2 +kiosks 'ki0sks Kj% 2 +kip kIp I4%,K6% 12A,2C +kipped kIpt Ic%,Id% 12A,2C +kipper 'kIp@R K6% 2 +kippers 'kIp@z Kj% 2 +kipping 'kIpIN Ib% 22A,2C +kips kIps Ia%,Kj% 12A,2C +kirk k3k K6$ 1 +kirks k3ks Kj$ 1 +kirsch kI@S L@$ 1 +kirtle 'k3tl K6$ 2 +kirtles 'k3tlz Kj$ 2 +kismet 'kIzmet L@$ 2 +kiss kIs J1%,K7% 12A,6A,15A,15B +kissed kIst Jc%,Jd% 12A,6A,15A,15B +kisser 'kIs@R K6% 2 +kissers 'kIs@z Kj% 2 +kisses 'kIsIz Ja%,Kj% 22A,6A,15A,15B +kissing 'kIsIN Jb% 22A,6A,15A,15B +kit kIt H4%,M6% 115B +kitbag 'kItb&g K6% 2 +kitbags 'kItb&gz Kj% 2 +kitchen 'kItSIn K6% 2 +kitchenette ,kItSI'net K6% 3 +kitchenettes ,kItSI'nets Kj% 3 +kitchens 'kItSInz Kj% 2 +kite kaIt K6% 1 +kite-balloon 'kaIt-b@lun K6$ 3 +kite-balloons 'kaIt-b@lunz Kj$ 3 +kites kaIts Kj% 1 +kith kIT Kj% 1 +kits kIts Ha$,Mj% 115B +kitsch kItS OA% 1 +kitted 'kItId Hc%,Hd% 215B +kitten 'kItn K6% 2 +kittenish 'kItnIS OA% 3 +kittens 'kItnz Kj% 2 +kitties 'kItIz Kj% 2 +kitting 'kItIN Hb$ 215B +kitty 'kItI K8% 2 +kiwi 'kiwi K6% 2 +kiwis 'kiwiz Kj% 2 +klaxon 'kl&ksn K6% 2 +klaxons 'kl&ksnz Kj% 2 +kleenex 'klineks M7% 2 +kleenexes 'klineksIz Mj$ 3 +kleptomania ,klept@'meInI@ L@% 5 +kleptomaniac ,klept@'meInI&k K6% 5 +kleptomaniacs ,klept@'meInI&ks Kj% 5 +km 'kIl@mit@z Y]% 4 +knack n&k K6% 1 +knacker 'n&k@R K6% 2 +knackers 'n&k@z Kj% 2 +knacks n&ks Kj$ 1 +knap n&p H4$ 1 +knapped n&pt Hc$,Hd% 1 +knapping 'n&pIN Hb$ 2 +knaps n&ps Ha$ 1 +knapsack 'n&ps&k K6% 2 +knapsacks 'n&ps&ks Kj% 2 +knave neIv K6% 1 +knaveries 'neIv@rIz Mj% 3 +knavery 'neIv@rI M8% 3 +knaves neIvz Kj% 1 +knavish 'neIvIS OA% 2 +knavishly 'neIvISlI Pu% 3 +knead nid H0$ 16A +kneaded 'nidId Hc$,Hd$ 26A +kneading 'nidIN Hb$ 26A +kneads nidz Ha$ 16A +knee ni K6% 1 +knee-breeches 'ni-brItSIz Kj% 3 +knee-deep ni-'dip OA%,Pu% 2 +knee-high ni-'haI OA%,Pu% 2 +kneecap 'nik&p K6% 2 +kneecaps 'nik&ps Kj% 2 +kneel nil I0% 12A,2C +kneeled nild Ic%,Id% 12A,2C +kneeling 'nilIN Ib% 22A,2C +kneels nilz Ia% 12A,2C +knees niz Kj% 1 +knell nel Ki$ 1 +knelt nelt Ic%,Id% 12A,2C +knew nju Jc* 12A,3A,6A,8,9,10,17,18B,25 +knick-knack 'nIk-n&k K6% 2 +knick-knacks 'nIk-n&ks Kj% 2 +knickerbockers 'nIk@b0k@z Kj% 4 +knickers 'nIk@z Kj% 2 +knife naIf H2%,Ki% 16A +knife-edge 'naIf-edZ K6% 2 +knife-edges 'naIf-edZIz Kj$ 3 +knifed naIft Hc%,Hd% 16A +knifes naIfs Ha% 16A +knifing 'naIfIN Hb% 26A +knight naIt H0%,K6% 16A +knight-errant naIt-'er@nt Ki% 3 +knighted 'naItId Hc%,Hd% 26A +knighthood 'naIthUd M6% 2 +knighthoods 'naIthUdz Mj% 2 +knighting 'naItIN Hb% 26A +knightly 'naItlI OA$ 2 +knights naIts Ha%,Kj% 16A +knights-errant naIts-'er@nt Kj% 3 +knit nIt J4%,Jc%,Jd% 12A,2C,6A,15A,15B +knits nIts Ja% 12A,2C,6A,15A,15B +knitted 'nItId Jc%,Jd% 22A,2C,6A,15A,15B +knitter 'nIt@R K6% 2 +knitters 'nIt@z Kj% 2 +knitting 'nItIN Jb%,L@% 22A,2C,6A,15A,15B +knitting-machine 'nItIN-m@Sin K6% 4 +knitting-machines 'nItIN-m@Sinz Kj% 4 +knitting-needle 'nItIN-nidl K6% 4 +knitting-needles 'nItIN-nidlz Kj% 4 +knitwear 'nItwe@R L@% 2 +knives naIvz Kj% 1 +knob n0b K6% 1 +knobble 'n0bl K6$ 2 +knobbles 'n0blz Kj$ 2 +knobblier 'n0blI@R Or$ 3 +knobbliest 'n0blIIst Os$ 3 +knobbly 'n0blI OD% 2 +knobkerrie 'n0bkerI K6$ 3 +knobkerries 'n0bkerIz Kj$ 3 +knobs n0bz Kj% 1 +knock n0k J0%,K6% 12A,2C,6A,14,15A,15B +knock-kneed n0k-'nid OA% 2 +knock-on n0k-'0n K6% 2 +knock-ons n0k-'0nz Kj$ 2 +knockabout 'n0k@baUt OA% 3 +knockdown 'n0kdaUn OA% 2 +knocked n0kt Jc%,Jd% 12A,2C,6A,14,15A,15B +knocker 'n0k@R K6% 2 +knockers 'n0k@z Kj% 2 +knocking 'n0kIN Jb% 22A,2C,6A,14,15A,15B +knockout 'n0kaUt K6%,OA% 2 +knockouts 'n0kaUts Kj% 2 +knocks n0ks Ja%,Kj% 12A,2C,6A,14,15A,15B +knoll n@Ul K6$ 1 +knolls n@Ulz Kj$ 1 +knot n0t J4%,K6% 12A,6A,15B +knothole 'n0th@Ul K6% 2 +knotholes 'n0th@Ulz Kj% 2 +knots n0ts Ja%,Kj% 12A,6A,15B +knotted 'n0tId Jc%,Jd% 22A,6A,15B +knottier 'n0tI@R Or% 3 +knottiest 'n0tIIst Os% 3 +knotting 'n0tIN Jb% 22A,6A,15B +knotty 'n0tI OD% 2 +knout naUt K6$ 1 +knouts naUts Kj$ 1 +know n@U J5*,Ki% 12A,3A,6A,8,9,10,17,18B,25 +know-all 'n@U-Ol K6% 2 +know-alls 'n@U-Olz Kj% 2 +know-how 'n@U-haU L@% 2 +knowing 'n@UIN Jb%,OA% 22A,3A,6A,8,9,10,17,18B,25 +knowingly 'n@UINlI Pu% 3 +knowledge 'n0lIdZ L@% 2 +knowledgeable 'n0lIdZ@bl OA% 4 +known n@Un Jd* 12A,3A,6A,8,9,10,17,18B,25 +knows n@Uz Ja% 12A,3A,6A,8,9,10,17,18B,25 +knuckle 'nVkl I2%,K6% 2 +knuckled 'nVkld Ic%,Id% 2 +knuckles 'nVklz Ia%,Kj% 2 +knuckling 'nVklIN Ib% 2 +koala k@U'Al@ K6% 3 +koalas k@U'Al@z Kj% 3 +kobo 'k@Ub@U K6$ 2 +kobos 'k@Ub@Uz Kj$ 2 +kohl k@Ul L@$ 1 +kohlrabi ,k@Ul'rAbI M6% 3 +kohlrabis ,k@Ul'rAbIz Mj$ 3 +kola 'k@Ul@ K6$ 2 +kola-nut 'k@Ul@-nVt K6$ 3 +kola-nuts 'k@Ul@-nVts Kj$ 3 +kolas 'k@Ul@z Kj$ 2 +kookaburra 'kUk@bVr@ K6$ 4 +kookaburras 'kUk@bVr@z Kj$ 4 +kopeck 'k@Upek K6$ 2 +kopecks 'k@Upeks Kj$ 2 +kopje 'k0pI K6$ 2 +kopjes 'k0pIz Kj$ 2 +koppie 'k0pI K6$ 2 +koppies 'k0pIz Kj$ 2 +kosher 'k@US@R L@$,OA$ 2 +kotow ,kaU'taU I0$,K6$ 2 +kotowed ,kaU'taUd Ic$,Id$ 2 +kotowing ,kaU'taUIN Ib$ 3 +kotows ,kaU'taUz Ia$,Kj$ 2 +koumiss 'kumIs L@$ 2 +kowtow ,kaU'taU I0$,K6$ 2 +kowtowed ,kaU'taUd Ic$,Id$ 2 +kowtowing ,kaU'taUIN Ib$ 3 +kowtows ,kaU'taUz Ia$,Kj$ 2 +kraal krAl K6$ 1 +kraals krAlz Kj$ 1 +krona 'kr@Un@ Ki$ 2 +krone 'kr@Un@ Ki$ 2 +kroner 'kr@Un@R Kj$ 2 +kronor 'kr@Un@R Kj$ 2 +kudos 'kjud0s L@$ 2 +kumis 'kumIs L@$ 2 +kung fu ,kUN 'fu L@% 2 +kvass kv&s L@$ 1 +kw 'kIl@w0ts Y]% 3 +kwacha 'kw&tS@ K9$ 2 +kwela 'kweIl@ L@$ 2 +l el Ki$ 1 +l's elz Kj$ 1 +la lA Ki$ 1 +la-di-da ,lA-dI-'dA OA$ 3 +laager 'lAg@R K6$ 2 +laagers 'lAg@z Kj$ 2 +lab l&b K6% 1 +label 'leIbl H4%,K6% 26A +labelled 'leIbld Hc%,Hd% 26A +labelling 'leIb@lIN Hb% 36A +labels 'leIblz Ha%,Kj% 26A +labial 'leIbI@l OA% 3 +laboratories l@'b0r@trIz Kj% 4 +laboratory l@'b0r@trI K8% 4 +laborious l@'bOrI@s OA% 4 +laboriously l@'bOrI@slI Pu% 5 +labour 'leIb@R J0%,M6% 22A,2C,3A,4A,6A +labour-saving 'leIb@-seIvIN OA% 4 +laboured 'leIb@d Jc%,Jd%,OA% 22A,2C,3A,4A,6A +labourer 'leIb@r@R K6% 3 +labourers 'leIb@r@z Kj% 3 +labouring 'leIb@rIN Jb% 32A,2C,3A,4A,6A +labours 'leIb@z Ja%,Mj% 22A,2C,3A,4A,6A +labs l&bz Kj% 1 +laburnum l@'b3n@m K6% 3 +laburnums l@'b3n@mz Kj% 3 +labyrinth 'l&b@rInT K6% 3 +labyrinthine ,l&b@'rInTaIn OA% 4 +labyrinths 'l&b@rInTs Kj% 3 +lace leIs J2%,M6% 12A,2C,3A,6A,14,15A,15B +laced leIst Jc%,Jd% 12A,2C,3A,6A,14,15A,15B +lacerate 'l&s@reIt H2% 36A +lacerated 'l&s@reItId Hc%,Hd% 46A +lacerates 'l&s@reIts Ha% 36A +lacerating 'l&s@reItIN Hb% 46A +laceration ,l&s@'reISn M6% 4 +lacerations ,l&s@'reISnz Mj% 4 +laces 'leIsIz Ja%,Mj% 22A,2C,3A,6A,14,15A,15B +lachrymal 'l&krIml OA$ 3 +lachrymose 'l&krIm@Us OA$ 3 +lacier 'leIsI@R Or$ 3 +laciest 'leIsIIst Os$ 3 +lacing 'leIsIN Jb% 22A,2C,3A,6A,14,15A,15B +lack l&k J0%,L@% 13A,6B +lack-lustre 'l&k-lVst@R OA% 3 +lackadaisical ,l&k@'deIzIkl OA% 5 +lackadaisically ,l&k@'deIzIklI Pu% 5 +lacked l&kt Jc%,Jd% 13A,6B +lackey 'l&kI K6% 2 +lackeys 'l&kIz Kj% 2 +lacking 'l&kIN Jb% 23A,6B +lacks l&ks Ja% 13A,6B +laconic l@'k0nIk OA% 3 +laconically l@'k0nIklI Pu% 4 +laconicism l@'k0nIsIz@m M6$ 5 +laconicisms l@'k0nIsIz@mz Mj$ 5 +laconism 'l&k@nIz@m M6$ 4 +laconisms 'l&k@nIz@mz Mj$ 4 +lacquer 'l&k@R H0$,M6% 26A +lacquered 'l&k@d Hc$,Hd% 26A +lacquering 'l&k@rIN Hb$ 36A +lacquers 'l&k@z Ha$,Mj$ 26A +lacrosse l@'kr0s L@% 2 +lactic 'l&ktIk OA% 2 +lacuna l@'kjun@ K6$ 3 +lacunae l@'kjuni Kj$ 3 +lacunas l@'kjun@z Kj$ 3 +lacy 'leIsI OD% 2 +lad l&d K6% 1 +ladder 'l&d@R I0%,K6% 2 +ladder-proof 'l&d@-pruf OA% 3 +laddered 'l&d@d Ic%,Id% 2 +laddering 'l&d@rIN Ib% 3 +ladders 'l&d@z Ia%,Kj% 2 +laddie 'l&dI K6% 2 +laddies 'l&dIz Kj% 2 +lade leId H5$ 16A +laden 'leIdn Hd%,OA% 26A +ladies 'leIdIz Kj% 2 +ladies-in-waiting ,leIdIz-In-'weItIN Kj% 5 +lading 'leIdIN L@$ 2 +ladle 'leIdl H2%,K6% 26A,15B +ladled 'leIdld Hc%,Hd% 26A,15B +ladles 'leIdlz Ha%,Kj% 26A,15B +ladling 'leIdlIN Hb% 26A,15B +lads l&dz Kj% 1 +lady 'leIdI K8% 2 +lady's-maid 'leIdIz-meId K6% 3 +lady's-maids 'leIdIz-meIdz Kj% 3 +lady-in-waiting ,leIdI-In-'weItIN Ki% 5 +lady-killer 'leIdI-kIl@R K6$ 4 +lady-killers 'leIdI-kIl@z Kj$ 4 +ladybird 'leIdIb3d K6% 3 +ladybirds 'leIdIb3dz Kj% 3 +ladylike 'leIdIlaIk OA% 3 +ladyship 'leIdISIp K6% 3 +ladyships 'leIdISIps Kj% 3 +lag l&g J4%,K6% 12A,2C,6A,14 +lager 'lAg@R M6% 2 +lagers 'lAg@z Mj% 2 +laggard 'l&g@d K6% 2 +laggards 'l&g@dz Kj% 2 +lagged l&gd Jc%,Jd% 12A,2C,6A,14 +lagging 'l&gIN Jb%,L@% 22A,2C,6A,14 +lagoon l@'gun K6% 2 +lagoons l@'gunz Kj% 2 +lags l&gz Ja%,Kj% 12A,2C,6A,14 +laic 'leIIk OA$ 2 +laicize 'leIIsaIz H2$ 36A +laicized 'leIIsaIzd Hc$,Hd$ 36A +laicizes 'leIIsaIzIz Ha$ 46A +laicizing 'leIIsaIzIN Hb$ 46A +laid leId Jc%,Jd% 12A,2B,2C,6A,12C,14,15A,15B,22 +lain leIn Id$ 12A,2C,2D,3A +lair le@R K6% 1 +laird le@d K6% 1 +lairds le@dz Kj% 1 +lairs le@z Kj% 1 +laissez-faire ,leIseI-'fe@R L@% 3 +laities 'leI@tIz Kj$ 3 +laity 'leI@tI K8% 3 +lake leIk K6% 1 +lakes leIks Kj% 1 +lakh lAk K6$ 1 +lakhs lAks Kj$ 1 +lam l&m J4$ 13A,6A +lam_e 'lAmeI L@% 2 +lama 'lAm@ K6$ 2 +lamas 'lAm@z Kj$ 2 +lamaseries 'lAm@s@rIz Kj$ 4 +lamasery 'lAm@s@rI K8$ 4 +lamb l&m I0%,M6% 1 +lambaste l&m'beIst H2$ 2 +lambasted l&m'beIstId Hc$,Hd% 3 +lambastes l&m'beIsts Ha$ 2 +lambasting l&m'beIstIN Hb$ 3 +lambed l&md Ic%,Id% 1 +lambency 'l&mb@nsI L@$ 3 +lambent 'l&mb@nt OA$ 2 +lambing 'l&mIN Ib% 2 +lambkin 'l&mkIn K6% 2 +lambkins 'l&mkInz Kj% 2 +lambs l&mz Ia%,Mj% 1 +lambskin 'l&mskIn M6% 2 +lambskins 'l&mskInz Mj$ 2 +lame leIm H2%,OB% 1 +lamed leImd Hc%,Hd% 1 +lamely 'leImlI Pu% 2 +lameness 'leImn@s L@% 2 +lament l@'ment J0%,K6% 22A,3A,6A +lamentable 'l&m@nt@bl OA% 4 +lamentably 'l&m@nt@blI Pu% 4 +lamentation ,l&men'teISn M6% 4 +lamentations ,l&men'teISnz Mj% 4 +lamented l@'mentId Jc%,Jd% 32A,3A,6A +lamenting l@'mentIN Jb% 32A,3A,6A +laments l@'ments Ja%,Kj% 22A,3A,6A +lamer 'leIm@R Or% 2 +lames leImz Ha% 1 +lamest 'leImIst Os% 2 +laminate 'l&mIneIt J2% 32A,6A +laminated 'l&mIneItId Jc%,Jd% 42A,6A +laminates 'l&mIneIts Ja% 32A,6A +laminating 'l&mIneItIN Jb% 42A,6A +laming 'leImIN Hb% 2 +lammed l&md Jc$,Jd$ 13A,6A +lamming 'l&mIN Jb$ 23A,6A +lamp l&mp K6% 1 +lamp-black 'l&mp-bl&k L@% 2 +lamplight 'l&mplaIt L@% 2 +lamplighter 'l&mplaIt@R K6% 3 +lamplighters 'l&mplaIt@z Kj% 3 +lamplit 'l&mplIt OA% 2 +lampoon l&m'pun H0%,K6% 26A +lampooned l&m'pund Hc%,Hd% 26A +lampooning l&m'punIN Hb% 36A +lampoons l&m'punz Ha%,Kj% 26A +lamppost 'l&mp@Ust K6% 2 +lampposts 'l&mp@Usts Kj% 2 +lamprey 'l&mprI K6% 2 +lampreys 'l&mprIz Kj% 2 +lamps l&mps Kj% 1 +lampshade 'l&mpSeId K6% 2 +lampshades 'l&mpSeIdz Kj% 2 +lams l&mz Ja$ 13A,6A +lance lAns H2%,K6% 16A +lance-corporal lAns-'kOp@r@l K6% 4 +lance-corporals lAns-'kOp@r@lz Kj% 4 +lanced lAnst Hc%,Hd% 16A +lancer 'lAns@R K6% 2 +lancers 'lAns@z Kj% 2 +lances 'lAnsIz Ha%,Kj% 26A +lancet 'lAnsIt K6% 2 +lancets 'lAnsIts Kj% 2 +lancing 'lAnsIN Hb% 26A +land l&nd J0%,M6* 12A,2C,6A,12C +land-agent 'l&nd-eIdZ@nt K6% 3 +land-agents 'l&nd-eIdZ@nts Kj% 3 +landau 'l&ndO K6$ 2 +landaus 'l&ndOz Kj$ 2 +landed 'l&ndId Jc%,Jd%,OA% 22A,2C,6A,12C +landfall 'l&ndfOl K6% 2 +landfalls 'l&ndfOlz Kj% 2 +landgrave 'l&ndgreIv K6$ 2 +landgraves 'l&ndgreIvz Kj$ 2 +landholder 'l&ndh@Uld@R K6% 3 +landholders 'l&ndh@Uld@z Kj% 3 +landing 'l&ndIN Jb%,K6% 22A,2C,6A,12C +landing-craft 'l&ndIN-krAft K9% 3 +landing-field 'l&ndIN-fild K6% 3 +landing-fields 'l&ndIN-fildz Kj% 3 +landing-gear 'l&ndIN-gI@R L@% 3 +landing-net 'l&ndIN-net K6% 3 +landing-nets 'l&ndIN-nets Kj% 3 +landing-parties 'l&ndIN-pAtIz Kj% 4 +landing-party 'l&ndIN-pAtI K8% 4 +landing-place 'l&ndIN-pleIs K6% 3 +landing-places 'l&ndIN-pleIsIz Kj% 4 +landing-stage 'l&ndIN-steIdZ K6% 3 +landing-stages 'l&ndIN-steIdZIz Kj% 4 +landing-strip 'l&ndIN-strIp K6% 3 +landing-strips 'l&ndIN-strIps Kj% 3 +landings 'l&ndINz Kj% 2 +landladies 'l&ndleIdIz Kj% 3 +landlady 'l&ndleIdI K8% 3 +landless 'l&ndl@s OA% 2 +landlocked 'l&ndl0kt OA% 2 +landlord 'l&ndlOd K6% 2 +landlords 'l&ndlOdz Kj% 2 +landlubber 'l&ndlVb@R K6% 3 +landlubbers 'l&ndlVb@z Kj% 3 +landmark 'l&ndmAk K6% 2 +landmarks 'l&ndmAks Kj% 2 +landmine 'l&ndmaIn K6% 2 +landmines 'l&ndmaInz Kj% 2 +landowner 'l&nd@Un@R K6% 3 +landowners 'l&nd@Un@z Kj% 3 +lands l&ndz Ja%,Mj% 12A,2C,6A,12C +landscape 'l&ndskeIp H2%,M6% 26A +landscaped 'l&ndskeIpt Hc%,Hd% 26A +landscapes 'l&ndskeIps Ha%,Mj% 26A +landscaping 'l&ndskeIpIN Hb% 36A +landslide 'l&ndslaId K6% 2 +landslides 'l&ndslaIdz Kj% 2 +landslip 'l&ndslIp K6% 2 +landslips 'l&ndslIps Kj% 2 +landsman 'l&ndzm@n Ki% 2 +landsmen 'l&ndzm@n Kj% 2 +landward 'l&ndw@d Pu% 2 +lane leIn K6% 1 +lanes leInz Kj% 1 +langsyne ,l&N'saIn L@$,Pu$ 2 +language 'l&NgwIdZ M6% 2 +languages 'l&NgwIdZIz Mj% 3 +languid 'l&NgwId OA% 2 +languidly 'l&NgwIdlI Pu% 3 +languish 'l&NgwIS I1% 22A,2C +languished 'l&NgwISt Ic%,Id% 22A,2C +languishes 'l&NgwISIz Ia% 32A,2C +languishing 'l&NgwISIN Ib% 32A,2C +languor 'l&Ng@R L@$ 2 +languorous 'l&ng@r@s OA$ 3 +languorously 'l&Ng@r@slI Pu$ 4 +langur lVN'gU@R K6$ 2 +langurs lVN'gU@z Kj$ 2 +lank l&Nk OA% 1 +lankier 'l&NkI@R Or% 3 +lankiest 'l&NkIIst Os% 3 +lanky 'l&NkI OD% 2 +lanolin 'l&n@lIn L@% 3 +lantern 'l&nt@n K6% 2 +lantern-jawed 'l&nt@n-dZOd OA% 3 +lanterns 'l&nt@nz Kj% 2 +lanyard 'l&nj@d K6$ 2 +lanyards 'l&nj@dz Kj$ 2 +lap l&p J4%,M6% 12A,2C,6A,15B +lap-dog 'l&p-d0g K6% 2 +lap-dogs 'l&p-d0gz Kj% 2 +lapel l@'pel K6% 2 +lapels l@'pelz Kj% 2 +lapidaries 'l&pId@rIz Kj$ 4 +lapidary 'l&pId@rI K8$,OA$ 4 +lapis lazuli ,l&pIs 'l&zjUlI M6$ 5 +lapis lazulis ,l&pIs 'l&zjUlIz Mj$ 5 +lapped l&pt Jc%,Jd% 12A,2C,6A,15B +lapping 'l&pIN Jb% 22A,2C,6A,15B +laps l&ps Ja%,Mj% 12A,2C,6A,15B +lapse l&ps I2%,K6% 12A,3A +lapsed l&pst Ic%,Id% 12A,3A +lapses 'l&psIz Ia%,Kj% 22A,3A +lapsing 'l&psIN Ib% 22A,3A +lapwing 'l&pwIN K6% 2 +lapwings 'l&pwINz Kj% 2 +larboard 'lAb@d L@$,OA$ 2 +larcenies 'lAs@nIz Mj$ 3 +larceny 'lAs@nI M8% 3 +larch lAtS M7% 1 +larches 'lAtSIz Mj% 2 +lard lAd H0%,L@% 16A +larded 'lAdId Hc%,Hd% 26A +larder 'lAd@R K6% 2 +larders 'lAd@z Kj% 2 +larding 'lAdIN Hb% 26A +lards lAdz Ha% 16A +large lAdZ L@%,OB*,Pu* 1 +large-scale 'lAdZ-skeIl OA% 2 +largely 'lAdZlI Pu% 2 +largeness 'lAdZn@s L@% 2 +larger 'lAdZ@R Or% 2 +largesse lA'dZes L@% 2 +largest 'lAdZIst Os% 2 +largish 'lAdZIS OA$ 2 +largo 'lAg@U K6$ 2 +largos 'lAg@Uz Kj$ 2 +lariat 'l&rI@t K6$ 3 +lariats 'l&rI@ts Kj$ 3 +lark lAk I0%,K6% 12A,2C +larked lAkt Ic%,Id% 12A,2C +larking 'lAkIN Ib% 22A,2C +larks lAks Ia%,Kj% 12A,2C +larkspur 'lAksp3R K6% 2 +larkspurs 'lAksp3z Kj% 2 +larn lAn J0$ 1 +larned lAnd Jc$,Jd$ 1 +larning 'lAnIN Jb$ 2 +larns lAnz Ja$ 1 +larva 'lAv@ Ki% 2 +larvae 'lAvi Kj% 2 +larval 'lAvl OA% 2 +laryngitis ,l&rIn'dZaItIs L@% 4 +larynx 'l&rINks K7% 2 +larynxes 'l&rINksIz Kj% 3 +lascar 'l&sk@R K6$ 2 +lascars 'l&sk@z Kj$ 2 +lascivious l@'sIvI@s OA% 4 +lasciviously l@'sIvI@slI Pu% 5 +lasciviousness l@'sIvI@sn@s L@% 5 +laser 'leIz@R K6% 2 +lasers 'leIz@z Kj% 2 +lash l&S J1%,K7% 12C,6A,14,15A,15B +lash-up 'l&S-Vp K6$ 2 +lash-ups 'l&S-Vps Kj$ 2 +lashed l&St Jc%,Jd% 12C,6A,14,15A,15B +lashes 'l&SIz Ja%,Kj% 22C,6A,14,15A,15B +lashing 'l&SIN Jb%,K6% 22C,6A,14,15A,15B +lashings 'l&SINz Kj% 2 +lass l&s K7% 1 +lasses 'l&sIz Kj% 2 +lassie 'l&sI K6% 2 +lassies 'l&sIz Kj% 2 +lassitude 'l&sItjud L@% 3 +lasso l&'su H0%,K6% 2 +lassoed l&'sud Hc%,Hd% 2 +lassoes l&'suz Kj% 2 +lassoing l&'suIN Hb% 3 +lassos l&'suz Ha%,Kj% 2 +last lAst I0%,K6%,OA*,Pu* 12A,2B,2C +lasted 'lAstId Ic%,Id% 22A,2B,2C +lasting 'lAstIN Ib%,OA% 22A,2B,2C +lastly 'lAstlI Pu% 2 +lasts lAsts Ia%,Kj% 12A,2B,2C +lat l&t Y>% 1 +latch l&tS J1%,K7% 12A,2C,3A,6A +latched l&tSt Jc%,Jd% 12A,2C,3A,6A +latches 'l&tSIz Ja%,Kj% 22A,2C,3A,6A +latching 'l&tSIN Jb% 22A,2C,3A,6A +latchkey 'l&tSki K6% 2 +latchkeys 'l&tSkiz Kj% 2 +late leIt OB%,Pu% 1 +lateen l@'tin OA$ 2 +lately 'leItlI Pu% 2 +latent 'leItnt OA% 2 +later 'leIt@R Or* 2 +lateral 'l&t@r@l OA% 3 +laterally 'l&tr@lI Pu% 3 +laterite 'l&t@raIt L@$ 3 +latest 'leItIst Os% 2 +latex 'leIteks L@% 2 +lath lAT K6$ 1 +lathe leID K6% 1 +lather 'lAD@R J0%,L@% 22A,6A +lathered 'lAD@d Jc%,Jd% 22A,6A +lathering 'lAD@rIN Jb% 32A,6A +lathers 'lAD@z Ja% 22A,6A +lathes leIDz Kj% 1 +lathi 'lAtI K6$ 2 +lathis 'lAtIz Kj$ 2 +laths lADz Kj% 1 +latish 'leItIS OA% 2 +latitude 'l&tItjud M6% 3 +latitudes 'l&tItjudz M6% 3 +latitudinal ,l&tI'tjudInl OA% 5 +latitudinarian ,l&tItjudI'ne@rI@n K6$,OA$ 7 +latitudinarians ,l&tItjudI'ne@rI@nz Kj$ 7 +latrine l@'trin K6% 2 +latrines l@'trinz Kj% 2 +latter 'l&t@R OA% 2 +latter-day 'l&t@-deI OA% 3 +latterly 'l&t@lI Pu% 3 +lattice 'l&tIs K6% 2 +latticed 'l&tIst OA% 2 +lattices 'l&tIsIz Kj% 3 +laud lOd H0$ 16A +laudable 'lOd@bl OA% 3 +laudably 'lOd@blI Pu% 3 +laudanum 'lOd@n@m L@% 3 +laudatory 'lOd@t@rI OA% 4 +lauded 'lOdId Hc$,Hd% 26A +lauding 'lOdIN Hb$ 26A +lauds lOdz Ha$ 16A +laugh lAf J0%,K6% 12A,2B,2C,3A,6B,15A,15B,22 +laughable 'lAf@bl OA% 3 +laughably 'lAf@blI Pu% 3 +laughed lAft Jc%,Jd% 12A,2B,2C,3A,6B,15A,15B,22 +laughing 'lAfIN Jb%,OA% 22A,2B,2C,3A,6B,15A,15B,22 +laughing-gas 'lAfIN-g&s L@% 3 +laughing-stock 'lAfIN-st0k K6% 3 +laughing-stocks 'lAfIN-st0ks Kj% 3 +laughingly 'lAfINlI Pu% 3 +laughs lAfs Ja%,Kj% 12A,2B,2C,3A,6B,15A,15B,22 +laughter 'lAft@R L@% 2 +launch lOntS J1%,K7% 12C,3A,6A,15A +launched lOntSt Jc%,Jd% 12C,3A,6A,15A +launcher 'lOntS@R K6% 2 +launchers 'lOntS@z Kj% 2 +launches 'lOntSIz Ja%,Kj% 22C,3A,6A,15A +launching 'lOntSIN Jb% 22C,3A,6A,15A +launching-pad 'lOntSIN-p&d K6% 3 +launching-pads 'lOntSIN-p&dz Kj% 3 +launching-site 'lOntSIN-saIt K6% 3 +launching-sites 'lOntSIN-saIts Kj% 3 +launder 'lOnd@R J0$ 22A,6A +laundered 'lOnd@d Jc$,Jd% 22A,6A +launderette lOn'dret K6% 2 +launderettes lOn'drets Kj% 2 +laundering 'lOnd@rIN Jb$ 32A,6A +launders 'lOnd@z Ja$ 22A,6A +laundress 'lOndrIs K7$ 2 +laundresses 'lOndrIsIz Kj$ 3 +laundries 'lOndrIz Kj% 2 +laundry 'lOndrI K8% 2 +laundryman 'lOndrIm&n Ki% 3 +laundrymen 'lOndrImen Kj% 3 +laundrywoman 'lOndrIwUm@n Ki% 4 +laundrywomen 'lOndrIwImIn Kj% 4 +laureate 'l0rI@t K6%,OA% 2 +laureates 'l0rI@ts Kj% 2 +laurel 'l0r@l K6% 2 +laurelled 'l0r@ld OA$ 2 +laurels 'l0r@lz Kj% 2 +lav l&v K6% 1 +lava 'lAv@ L@% 2 +lavatories 'l&v@trIz Kj% 3 +lavatory 'l&v@trI K8% 3 +lave leIv H2$ 1 +laved leIvd Hc$,Hd$ 1 +lavender 'l&v@nd@R L@% 3 +laves leIvz Ha$ 1 +laving 'leIvIN Hb$ 2 +lavish 'l&vIS H1%,OA% 214 +lavished 'l&vISt Hc%,Hd% 214 +lavishes 'l&vISIz Ha% 314 +lavishing 'l&vISIN Hb% 314 +lavishly 'l&vISlI Pu% 3 +lavs l&vz Kj% 1 +law lO M6% 1 +law-abiding 'lO-@baIdIN OA% 4 +law-officer 'lO-0fIs@R K6% 4 +law-officers 'lO-0fIs@z Kj% 4 +lawbreaker 'lObreIk@R K6% 3 +lawbreakers 'lObreIk@z Kj% 3 +lawful 'lOf@l OA% 2 +lawfully 'lOf@lI Pu% 3 +lawgiver 'lOgIv@R K6% 3 +lawgivers 'lOgIv@z Kj% 3 +lawless 'lOl@s OA% 2 +lawlessly 'lOl@slI Pu% 3 +lawlessness 'lOl@sn@s L@% 3 +lawmaker 'lOmeIk@R K6% 3 +lawmakers 'lOmeIk@z Kj% 3 +lawmaking 'lOmeIkIN L@% 3 +lawn lOn M6% 1 +lawn-mower 'lOn-m@U@R K6% 3 +lawn-mowers 'lOn-m@U@z Kj% 3 +lawns lOnz Mj% 1 +laws lOz Mj% 1 +lawyer 'lOj@R K6% 2 +lawyers 'lOj@z Kj% 2 +lax l&ks OA% 1 +laxative 'l&ks@tIv M6%,OA% 3 +laxatives 'l&ks@tIvz Mj% 3 +laxities 'l&ksItIz Mj$ 3 +laxity 'l&ksItI M8% 3 +laxly 'l&kslI Pu$ 2 +lay leI Ic%,J5%,K6%,OA% 12A,2B,2C,2D,3A,6A,12C,14,15A,15B,22 +lay figure ,leI 'fIg@R K6$ 3 +lay figures ,leI 'fIg@z Kj$ 3 +lay-off 'leI-0f K6% 2 +lay-offs 'leI-0fs Kj$ 2 +lay-out 'leI-aUt K6% 2 +lay-outs 'leI-aUts Kj$ 2 +layabout 'leI@baUt K6% 3 +layabouts 'leI@baUts Kj% 3 +layby 'leIbaI K6% 2 +laybys 'leIbaIz Kj% 2 +layer 'leI@R H0%,K6% 26A +layer-cake 'leI@-keIk K6% 3 +layer-cakes 'leI@-keIks Kj% 3 +layered 'leI@d Hc%,Hd% 26A +layering 'leI@rIN Hb% 36A +layers 'leI@z Ha%,Kj% 26A +layette leI'et K6$ 2 +layettes leI'ets Kj$ 2 +laying 'leIIN Jb% 22A,2B,2C,6A,12C,14,15A,15B,22 +layman 'leIm@n Ki% 2 +laymen 'leIm@n Kj% 2 +layover 'leI@Uv@R K6$ 3 +layovers 'leI@Uv@z Kj$ 3 +lays leIz Ja%,Kj% 12A,2B,2C,6A,12C,14,15A,15B,22 +lazar 'l&z@R K6$ 2 +lazaret ,l&z@'ret K6$ 3 +lazarets ,l&z@'rets Kj$ 3 +lazarette ,l&z@'ret K6$ 3 +lazarettes ,l&z@'rets Kj$ 3 +lazaretto ,l&z@'ret@U K6$ 4 +lazarettos ,l&z@'ret@Uz Kj$ 4 +lazars 'l&z@z Kj$ 2 +laze leIz J2% 12A,2C,15B +lazed leIzd Jc%,Jd% 12A,2C,15B +lazes 'leIzIz Ja% 22A,2C,15B +lazier 'leIzI@R Or% 3 +laziest 'leIzIIst Os% 3 +lazily 'leIzIlI Pu% 3 +laziness 'leIzIn@s L@% 3 +lazing 'leIzIN Jb% 22A,2C,15B +lazy 'leIzI OD% 2 +lazybones 'leIzIb@Unz Ki% 3 +lb paUnd Y]% 1 +lbs paUndz Y)% 1 +lbw ,el,bi'dVblju Y~% 5 +lea li K6$ 1 +leach litS H1$ 16A,15B +leached litSt Hc$,Hd% 16A,15B +leaches 'litSIz Ha$ 26A,15B +leaching 'litSIN Hb$ 26A,15B +lead led M6% 1 +lead lid J5%,M6% 12A,2C,3A,6A,12C,14,15A,15B,17 +lead-in 'lid-In K6% 2 +lead-ins 'lid-Inz Kj% 2 +lead-ore 'led-OR L@% 2 +leaded 'ledId OA% 2 +leaden 'ledn OA% 2 +leader 'lid@R K6% 2 +leaderless 'lid@l@s OA% 3 +leaders 'lid@z Kj% 2 +leadership 'lid@SIp L@% 3 +leading 'ledIN L@% 2 +leading 'lidIN Jb%,L@%,OA% 22A,2C,3A,6A,12C,14,15A,15B,17 +leading-rein 'lidIN-reIn K6% 3 +leading-reins 'lidIN-reInz Kj% 3 +leading-strings 'lidIN-strINz Kj$ 3 +leads ledz Mj$ 1 +leads lidz Ja%,Mj% 12A,2C,3A,6A,12C,14,15A,15B,17 +leaf lif I0%,Ki% 1 +leaf-bud 'lif-bVd K6$ 2 +leaf-buds 'lif-bVdz Kj$ 2 +leaf-mould 'lif-m@Uld L@% 2 +leafed lift Ic%,Id% 1 +leafier 'lifI@R Or% 3 +leafiest 'lifIIst Os% 3 +leafing 'lifIN Ib% 2 +leafless 'lifl@s OA% 2 +leaflet 'liflIt K6% 2 +leaflets 'liflIts Kj% 2 +leafs lifs Ia$ 1 +leafy 'lifI OD% 2 +league lig J2$,K6% 12C,6A,15A,15B +leagued ligd Jc$,Jd$ 12C,6A,15A,15B +leagues ligz Ja$,Kj% 12C,6A,15A,15B +leaguing 'ligIN Jb$ 22C,6A,15A,15B +leak lik J0%,K6% 12A,2C,6A,14 +leakage 'likIdZ M6% 2 +leakages 'likIdZIz Mj% 3 +leaked likt Jc%,Jd% 12A,2C,6A,14 +leakier 'likI@R Or% 3 +leakiest 'likIIst Os% 3 +leaking 'likIN Jb% 22A,2C,6A,14 +leaks liks Ja%,Kj% 12A,2C,6A,14 +leaky 'likI OD% 2 +leal lil OA$ 1 +lean lin J0%,L@%,OC% 12A,2C,3A,15A +lean-to 'lin-tu K6% 2 +lean-tos 'lin-tuz Kj$ 2 +leaned lind Jc%,Jd% 12A,2C,3A,15A +leaner 'lin@R Or% 2 +leanest 'linIst Os% 2 +leaning 'linIN Jb%,K6% 22A,2C,3A,15A +leanings 'linINz Kj% 2 +leanness 'lin+n@s L@% 2 +leans linz Ja% 12A,2C,3A,15A +leant lent Jc%,Jd% 12A,2C,3A,15A +leap lip J0%,K6% 12A,2C,3A,6A,15A +leap-year 'lip-j3R K6% 2 +leap-years 'lip-j3z Kj% 2 +leaped lipt Jc%,Jd% 12A,2C,3A,6A,15A +leapfrog 'lipfr0g H4%,L@% 2 +leapfrogged 'lipfr0gd Hc%,Hd% 2 +leapfrogging 'lipfr0gIN Hb% 3 +leapfrogs 'lipfr0gz Ha% 2 +leaping 'lipIN Jb% 22A,2C,3A,6A,15A +leaps lips Ja%,Kj% 12A,2C,3A,6A,15A +leapt lept Jc%,Jd% 12A,2C,3A,6A,15A +learn l3n J0% 12A,3A,6A,7A,8,9,10,15A,15B +learned 'l3nId OA% 2 +learned l3nd Jc%,Jd% 12A,3A,6A,7A,8,9,10,15A,15B +learnedly 'l3nIdlI Pu% 3 +learner 'l3n@R K6% 2 +learners 'l3n@z Kj% 2 +learning 'l3nIN Jb%,L@% 22A,3A,6A,7A,8,9,10,15A,15B +learns l3nz Ja% 12A,3A,6A,7A,8,9,10,15A,15B +learnt l3nt Jc%,Jd% 12A,3A,6A,7A,8,9,10,15A,15B +leas liz Kj$ 1 +lease lis H2%,K6% 16A +lease-lend 'lis-lend L@$ 2 +leased list Hc%,Hd% 16A +leasehold 'lish@Uld K6%,OA% 2 +leaseholder 'lish@Uld@R K6% 3 +leaseholders 'lish@Uld@z Kj% 3 +leaseholds 'lish@Uldz Kj% 2 +leases 'lisIz Ha%,Kj% 26A +leash liS K7% 1 +leashes 'liSIz Kj$ 2 +leasing 'lisIN Hb% 26A +least list Ki%,OA*,Pu* 1 +leastways 'listweIz Pu% 2 +leastwise 'listwaIz Pu% 2 +leather 'leD@R M6% 2 +leather-jacket 'leD@-dZ&kIt K6% 4 +leather-jackets 'leD@-dZ&kIts Kj% 4 +leatherette ,leD@'ret L@$ 3 +leatherneck 'leD@nek K6$ 3 +leathernecks 'leD@neks Kj$ 3 +leathers 'leD@z Mj% 2 +leatherwork 'leD@w3k L@% 3 +leathery 'leD@rI OA% 3 +leave liv J5*,M6% 12A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +leave-taking 'liv-teIkIN K6% 3 +leave-takings 'liv-teIkINz Kj% 3 +leaven 'levn H0$,L@$ 26A +leavened 'levnd Hc$,Hd% 26A +leavening 'levnIN Hb$ 36A +leavens 'levnz Ha$ 26A +leaves livz Ja%,Mj% 12A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +leaving 'livIN Jb% 22A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +leavings 'livINz Kj% 2 +lecher 'letS@R K6% 2 +lecheries 'letS@rIz Mj$ 3 +lecherous 'letS@r@s OA% 3 +lechers 'letS@z Kj% 2 +lechery 'letS@rI M8% 3 +lectern 'lekt@n K6% 2 +lecterns 'lekt@nz Kj% 2 +lecture 'lektS@R J2%,K6% 22A,3A,6A,14 +lectured 'lektS@d Jc%,Jd% 22A,3A,6A,14 +lecturer 'lektS@r@R K6% 3 +lecturers 'lektS@r@z Kj% 3 +lectures 'lektS@z Ja%,Kj% 22A,3A,6A,14 +lectureship 'lektS@SIp K6% 3 +lectureships 'lektS@SIps Kj% 3 +lecturing 'lektS@rIN Jb% 32A,3A,6A,14 +led led Jc%,Jd% 12A,2C,3A,6A,12C,14,15A,15B,17 +ledge ledZ K6% 1 +ledger 'ledZ@R K6% 2 +ledgers 'ledZ@z Kj% 2 +ledges 'ledZIz Kj% 2 +lee li L@$ 1 +leech litS K7% 1 +leeches 'litSIz Kj% 2 +leek lik K6% 1 +leeks liks Kj% 1 +leer lI@R I0%,K6% 12A,3A +leered lI@d Ic%,Id% 12A,3A +leering 'lI@rIN Ib% 22A,3A +leers lI@z Ia%,Kj% 12A,3A +lees liz Kj$ 1 +leeward 'liw@d OA%,Pu% 2 +leeway 'liweI L@% 2 +left left Jc*,Jd*,L@%,OA*,Pu* 12A,2C,3A,6A,12B,13B,14,15A,15B,16A,19B,22,24B,25 +left-hand 'left-h&nd OA% 2 +left-handed left-'h&ndId OA% 3 +left-wing left-'wIN K6% 2 +left-winger left-'wIN@R K6% 3 +left-wingers left-'wIN@z Kj% 3 +left-wings left-'wINz Kj$ 2 +leftist 'leftIst K6% 2 +leftists 'leftIsts Kj% 2 +leg leg M6% 1 +leg-pull 'leg-pUl K6% 2 +leg-pulling 'leg-pUlIN L@% 3 +leg-pulls 'leg-pUlz Kj% 2 +legacies 'leg@sIz Kj% 3 +legacy 'leg@sI K8% 3 +legal 'ligl OA% 2 +legalism 'lig@lIz@m L@$ 4 +legalistic ,lig@'lIstIk OA% 4 +legality li'g&lItI L@% 4 +legalization ,lig@laI'zeISn L@% 5 +legalize 'lig@laIz H2% 36A +legalized 'lig@laIzd Hc%,Hd% 36A +legalizes 'lig@laIzIz Ha% 46A +legalizing 'lig@laIzIN Hb% 46A +legally 'lig@lI Pu% 3 +legate 'legIt K6$ 2 +legatee ,leg@'ti K6$ 3 +legatees ,leg@'tiz Kj$ 3 +legates 'legIts Kj$ 2 +legation lI'geISn K6$ 3 +legations lI'geISnz Kj$ 3 +legato lI'gAt@U OA$,Pu$ 3 +legend 'ledZ@nd M6% 2 +legendary 'ledZ@ndrI OA% 3 +legends 'ledZ@ndz Mj% 2 +leger line 'ledZ@ laIn K6$ 3 +leger lines 'ledZ@ laInz Kj$ 3 +legerdemain ,ledZ@d@'meIn L@$ 4 +legged 'legId Ot% 2 +legging 'legIN K6$ 2 +leggings 'legINz Kj% 2 +leggy 'legI OA% 2 +leghorn le'gOn K6$ 2 +leghorns le'gOnz Kj$ 2 +legibility ,ledZ@'bIlItI L@% 5 +legible 'ledZ@bl OA% 3 +legibly 'ledZ@blI Pu% 3 +legion 'lidZ@n K6% 2 +legionaries 'lIdZ@n@rIz Kj% 4 +legionary 'lIdZ@n@rI K8% 4 +legions 'lidZ@nz Kj% 2 +legislate 'ledZIsleIt I2% 32A,3A +legislated 'ledZIsleItId Ic%,Id% 42A,3A +legislates 'ledZIsleIts Ia% 32A,3A +legislating 'ledZIsleItIN Ib% 42A,3A +legislation ,ledZIs'leISn L@% 4 +legislative 'ledZIsl@tIv OA% 4 +legislator 'ledZIsleIt@R K6% 4 +legislators 'ledZIsleIt@z Kj% 4 +legislature 'ledZIsleItS@R K6% 4 +legislatures 'ledZIsleItS@z Kj% 4 +legitimacy lI'dZItIm@sI L@% 5 +legitimate lI'dZItIm@t OA% 4 +legitimately lI'dZItIm@tlI Pu% 5 +legitimatize lI'dZItIm@taIz H2% 5 +legitimatized lI'dZItIm@taIzd Hc%,Hd% 5 +legitimatizes lI'dZItIm@taIzIz Ha% 6 +legitimatizing lI'dZItIm@taIzIN Hb% 6 +legless 'legl@s OA% 2 +legs legz Mj% 1 +leguminous lI'gjumIn@s OA% 4 +lei 'leIi K6$ 1 +leis 'leIiz Kj$ 1 +leisure 'leZ@R L@% 2 +leisured 'leZ@d OA% 2 +leisurely 'leZ@lI OA%,Pu% 3 +lemming 'lemIN K6% 2 +lemmings 'lemINz Kj% 2 +lemon 'lem@n K6% 2 +lemonade ,lem@'neId L@% 3 +lemons 'lem@nz Kj% 2 +lemur 'lim@R K6$ 2 +lemurs 'lim@z Kj$ 2 +lend lend H5% 16A,12A,13A,14 +lender 'lend@R K6% 2 +lenders 'lend@z Kj% 2 +lending 'lendIN Hb% 26A,12A,13A,14 +lending-libraries 'lendIN-laIbr@rIz Kj% 5 +lending-library 'lendIN-laIbr@rI K8% 5 +lends lendz Ha% 16A,12A,13A,14 +length leNT M6% 1 +lengthen 'leNT@n J0% 22A,6A +lengthened 'leNT@nd Jc%,Jd% 22A,6A +lengthening 'leNT@nIN Jb% 32A,6A +lengthens 'leNT@nz Ja% 22A,6A +lengthier 'leNTI@R Or% 3 +lengthiest 'leNTIIst Os% 3 +lengthily 'leNTIlI Pu% 3 +lengths leNTs Mj% 1 +lengthways 'leNTweIz OA%,Pu% 2 +lengthwise 'leNTwaIz Pu% 2 +lengthy 'leNTI OD% 2 +lenience 'linI@ns L@% 3 +leniency 'linI@nsI L@% 4 +lenient 'linI@nt OA% 3 +leniently 'linI@ntlI Pu% 4 +lenity 'lenItI L@$ 3 +lens lenz K7% 1 +lenses 'lenzIz Kj% 2 +lent lent Hc%,Hd% 16A,12A,13A,14 +lentil 'lentl K6% 2 +lentils 'lentlz Kj% 2 +lento 'lent@U OA$,Pu$ 2 +leonine 'lI@naIn OA% 3 +leopard 'lep@d K6% 2 +leopardess ,lep@'des K7% 3 +leopardesses ,lep@'desIz Kj% 4 +leopards 'lep@dz Kj% 2 +leper 'lep@R K6% 2 +lepers 'lep@z Kj% 2 +leprechaun 'lepr@kOn K6% 3 +leprechauns 'lepr@kOnz Kj% 3 +leprosy 'lepr@sI L@% 3 +leprous 'lepr@s OA% 2 +lesbian 'lezbI@n K6% 3 +lesbianism 'lezbI@nIz@m L@% 5 +lesbians 'lezbI@nz Kj% 3 +lese majesty ,leIz 'm&dZIstI L@$ 4 +lesion 'liZn K6% 2 +lesions 'liZnz Kj% 2 +less les L@%,OA*,Pu*,T-* 1 +lessee le'si K6% 2 +lessees le'siz Kj% 2 +lessen 'lesn J0% 22A,6A +lessened 'lesnd Jc%,Jd% 22A,6A +lessening 'lesnIN Jb% 32A,6A +lessens 'lesnz Ja% 22A,6A +lesser 'les@R OA% 2 +lesson 'lesn K6% 2 +lessons 'lesnz Kj% 2 +lessor 'lesOR K6$ 2 +lessors 'lesOz Kj$ 2 +lest lest V-% 1 +let let J5*,Jc*,Jd*,K6% 12C,6A,14,15A,15B,18B,22,24A +let's lets Gf% 1 +let-down 'let-daUn K6% 2 +let-downs 'let-daUnz Kj$ 2 +let-up 'let-Vp K6% 2 +let-ups 'let-Vps Kj$ 2 +lethal 'liTl OA% 2 +lethargic lI'TAdZIk OA% 3 +lethargically lI'TAdZIklI Pu% 4 +lethargy 'leT@dZI L@% 3 +lets lets Ja%,Kj$ 12C,6A,14,15A,15B,18B,22,24A +letter 'let@R K6% 2 +letter-box 'let@-b0ks K7% 3 +letter-boxes 'let@-b0ksIz Kj% 4 +letter-card 'let@-kAd K6$ 3 +letter-cards 'let@-kAdz Kj$ 3 +letter-case 'let@-keIs K6$ 3 +letter-cases 'let@-keIsIz Kj$ 4 +lettered 'let@d OA% 2 +letterhead 'let@hed K6% 3 +letterheads 'let@hedz Kj% 3 +lettering 'let@rIN L@% 3 +letterpress 'let@pres L@% 3 +letters 'let@z Kj% 2 +letting 'letIN Jb%,K6% 22C,6A,14,15A,15B,18B,22,24A +lettings 'letINz Kj% 2 +lettuce 'letIs M6% 2 +lettuces 'letIsIz Mj% 3 +leucocyte 'luk@saIt K6$ 3 +leucocytes 'luk@saIts Kj$ 3 +leukaemia lu'kimI@ L@% 4 +levant lI'v&nt I0$ 2 +levanted lI'v&ntId Ic$,Id$ 3 +levanting lI'v&ntIN Ib$ 3 +levants lI'v&nts Ia$ 2 +levee 'levI K6$ 2 +levees 'levIz Kj$ 2 +level 'levl J4%,M6%,OA% 22C,3A,6A,14,15A,15B +level-headed ,levl-'hedId OA% 4 +levelled 'levld Jc%,Jd% 22C,3A,6A,14,15A,15B +leveller 'levl@R K6% 3 +levellers 'levl@z Kj% 3 +levelling 'lev@lIN Jb% 32C,3A,6A,14,15A,15B +levels 'levlz Ja%,Mj% 22C,3A,6A,14,15A,15B +lever 'liv@R H0%,K6% 26A,15B +leverage 'liv@rIdZ L@% 3 +levered 'liv@d Hc%,Hd% 26A,15B +leveret 'lev@rIt K6$ 3 +leverets 'lev@rIts Kj$ 3 +levering 'liv@rIN Hb% 36A,15B +levers 'liv@z Ha%,Kj% 26A,15B +leviathan lI'vaI@T@n K6$ 4 +leviathans lI'vaI@T@nz Kj$ 4 +levied 'levId Jc%,Jd% 23A,6A,14 +levies 'levIz Ja%,Kj% 23A,6A,14 +levis 'livaIz Kj% 2 +levitate 'levIteIt J2% 32A,6A +levitated 'levIteItId Jc%,Jd% 42A,6A +levitates 'levIteIts Ja% 32A,6A +levitating 'levIteItIN Jb% 42A,6A +levitation ,levI'teISn M6% 4 +levitations ,levI'teISnz Mj% 4 +levities 'levItIz Mj$ 3 +levity 'levItI M8% 3 +levy 'levI J3%,K8% 23A,6A,14 +levying 'levIIN Jb% 33A,6A,14 +lewd ljud OC% 1 +lewder 'ljud@R Or% 2 +lewdest 'ljudIst Os% 2 +lewdly 'ljudlI Pu% 2 +lewdness 'ljudn@s L@% 2 +lexical 'leksIkl OA% 3 +lexically 'leksIklI Pu% 3 +lexicographer ,leksI'k0gr@f@R K6% 5 +lexicographers ,leksI'k0gr@f@z Kj% 5 +lexicography ,leksI'k0gr@fI L@% 5 +lexicon 'leksIk@n K6% 3 +lexicons 'leksIk@nz Kj% 3 +lexis 'leksIs L@$ 2 +ley leI K6$ 1 +leys leIz Kj$ 1 +liabilities ,laI@'bIlItIz Mj% 5 +liability ,laI@'bIlItI M8% 5 +liable 'laI@bl OA% 3 +liaise lI'eIz I2% 22A,3A +liaised lI'eIzd Ic%,Id% 22A,3A +liaises lI'eIzIz Ia% 32A,3A +liaising lI'eIzIN Ib% 32A,3A +liaison lI'eIzn M6% 3 +liaisons lI'eIznz Mj% 3 +liana lI'An@ K6$ 3 +lianas lI'An@z Kj$ 3 +liar 'laI@R K6% 2 +liars 'laI@z Kj% 2 +lib lIb Ki% 1 +libation laI'beISn K6% 3 +libations laI'beISnz Kj% 3 +libel 'laIbl H4%,M6% 26A +libelled 'laIbld Hc%,Hd% 26A +libelling 'laIb@lIN Hb% 36A +libellous 'laIb@l@s OA% 3 +libels 'laIblz Ha%,Mj% 26A +liberal 'lIb@r@l K6%,OA% 3 +liberalism 'lIb@r@lIz@m L@% 5 +liberalities ,lIb@'r&lItIz Mj$ 5 +liberality ,lIb@'r&lItI M8% 5 +liberalization ,lIbr@laI'zeISn K6% 5 +liberalizations ,lIbr@laI'zeISnz Kj$ 5 +liberalize 'lIbr@laIz H2% 3 +liberalized 'lIbr@laIzd Hc%,Hd% 3 +liberalizes 'lIbr@laIzIz Ha% 4 +liberalizing 'lIbr@laIzIN Hb% 4 +liberally 'lIbr@lI Pu% 3 +liberals 'lIb@r@lz Kj% 3 +liberate 'lIb@reIt H2% 36A,14 +liberated 'lIb@reItId Hc%,Hd% 46A,14 +liberates 'lIb@reIts Ha% 36A,14 +liberating 'lIb@reItIN Hb% 46A,14 +liberation ,lIb@'reISn M6% 4 +liberations ,lIb@'reISnz Mj% 4 +liberator 'lIb@reIt@R K6% 4 +liberators 'lIb@reIt@z Kj% 4 +liberties 'lIbItIz Mj% 3 +libertine 'lIb@tin K6% 3 +libertines 'lIb@tinz Kj% 3 +liberty 'lIbItI M8% 3 +libidinous lI'bIdIn@s OA% 4 +libido lI'bid@U M6% 3 +libidos lI'bid@Uz Mj$ 3 +librarian laI'bre@rI@n K6% 4 +librarians laI'bre@rI@nz Kj% 4 +librarianship laI'bre@ri@nSIp L@% 5 +libraries 'laIbr@rIz Kj% 3 +library 'laIbr@rI K8% 3 +libretti lI'breti Kj% 3 +librettist lI'bretIst K6% 3 +librettists lI'bretIsts Kj% 3 +libretto lI'bret@U K6% 3 +librettos lI'bret@Uz Kj% 3 +lice laIs Kj% 1 +licence 'laIsns H2%,M6% 26A,17 +licenced 'laIsnst Hc%,Hd% 26A,17 +licences 'laIsnsIz Ha%,Mj% 36A,17 +licencing 'laIsnsIN Hb% 36A,17 +license 'laIsns H2% 26A,17 +licensed 'laIsnst Hc%,Hd% 26A,17 +licensee ,laIs@n'si K6% 3 +licensees ,laIs@n'siz Kj% 3 +licenses 'laIsnsIz Ha% 36A,17 +licensing 'laIsnsIN Hb% 36A,17 +licentiate laI'senSI@t K6$ 4 +licentiates laI'senSI@ts Kj$ 4 +licentious laI'senS@s OA% 3 +licentiously laI'senS@slI Pu% 4 +licentiousness laI'senS@sn@s L@% 4 +lichee 'laItSi K6% 2 +lichees 'laItSiz Kj% 2 +lichen 'laIk@n L@% 2 +lichgate 'lItSgeIt K6$ 2 +lichgates 'lItSgeIts Kj$ 2 +lichi 'laItSi K6$ 2 +lichis 'laItSiz Kj$ 2 +licit 'lIsIt OA$ 2 +lick lIk J0%,K6% 12A,6A,15A,15B,22 +licked lIkt Jc%,Jd% 12A,6A,15A,15B,22 +licking 'lIkIN Jb%,Ki% 22A,6A,15A,15B,22 +licks lIks Ja%,Kj% 12A,6A,15A,15B,22 +lid lId K6% 1 +lidless 'lIdl@s OA% 2 +lido 'lid@U K6% 2 +lidos 'lid@Uz Kj% 2 +lids lIdz Kj% 1 +lie laI I5%,K6% 12A,2C,2D,3A +lie-abed 'laI-@bed K6$ 3 +lie-abeds 'laI-@bedz Kj$ 3 +lie-detector 'laI-dItekt@R K6% 4 +lie-detectors 'laI-dItekt@z Kj% 4 +lie-in laI-'In K6% 2 +lie-ins laI-'Inz Kj$ 2 +lied laId Ic%,Id% 12A +lied lit Ki$ 1 +lieder 'lid@R Kj% 2 +lieder-singer 'lid@-sIN@R K6% 4 +lieder-singers 'lid@-sIN@z Kj% 4 +lief lif Pu$ 1 +liege lidZ K6$,OA$ 1 +liegeman 'lidZm&n Ki$ 2 +liegemen 'lidZmen Kj$ 2 +lieges 'lidZIz Kj$ 2 +lien lI@n K6$ 2 +liens lI@nz Kj$ 2 +lies laIz Ia%,Kj% 12A,2C,2D,3A +lieu lu L@% 1 +lieutenancies lef'ten@nsIz Kj$ 4 +lieutenancy lef'ten@nsI K8$ 4 +lieutenant lef'ten@nt K6% 3 +lieutenants lef'ten@nts Kj% 3 +life laIf Mi* 1 +life-buoy 'laIf-boI K6% 2 +life-buoys 'laIf-boIz Kj% 2 +life-giving 'laIf-gIvIN OA% 3 +life-jacket 'laIf-dZ&kIt K6% 3 +life-jackets 'laIf-dZ&kIts Kj% 3 +life-office 'laIf-0fIs K6$ 3 +life-offices 'laIf-0fIsIz Kj$ 4 +life-preserver 'laIf-prIz3v@R K6% 4 +life-preservers 'laIf-prIz3v@z Kj% 4 +life-raft 'laIf-rAft K6% 2 +life-rafts 'laIf-rAfts Kj% 2 +life-saver 'laIf-seIv@R K6% 3 +life-savers 'laIf-seIv@z Kj% 3 +life-size 'laIf-saIz OA% 2 +life-sized 'laIf-saIzd OA% 2 +life-span 'laIf-sp&n K6% 2 +life-spans 'laIf-sp&nz Kj% 2 +life-work laIf-'w3k K6$ 2 +life-works laIf-'w3ks Kj$ 2 +lifebelt 'laIfbelt K6% 2 +lifebelts 'laIfbelts Kj% 2 +lifeblood 'laIfblVd L@% 2 +lifeboat 'laIfb@Ut K6% 2 +lifeboats 'laIfb@Uts Kj% 2 +lifebuoy 'laIfboI K6% 2 +lifebuoys 'laIfboIz Kj% 2 +lifeguard 'laIfgAd K6% 2 +lifeguards 'laIfgAdz Kj% 2 +lifeless 'laIfl@s OA% 2 +lifelessly 'laIfl@slI Pu% 3 +lifelike 'laIflaIk OA% 2 +lifeline 'laIflaIn K6% 2 +lifelines 'laIflaInz Kj% 2 +lifelong 'laIfl0N OA% 2 +lifer 'laIf@R K6$ 2 +lifers 'laIf@z Kj$ 2 +lifetime 'laIftaIm K6% 2 +lifetimes 'laIftaImz Kj% 2 +lift lIft J0%,K6% 12A,2C,6A,15A,15B +lift-off 'lIft-0f K6% 2 +lift-offs 'lIft-0fs Kj% 2 +lifted 'lIftId Jc%,Jd% 22A,2C,6A,15A,15B +lifting 'lIftIN Jb% 22A,2C,6A,15A,15B +liftman 'lIftm&n Ki% 2 +liftmen 'lIftmen Kj% 2 +lifts lIfts Ja%,Kj% 12A,2C,6A,15A,15B +ligament 'lIg@m@nt K6% 3 +ligaments 'lIg@m@nts Kj% 3 +ligature 'lIg@tS@R K6$ 3 +ligatures 'lIg@tS@z Kj$ 3 +light laIt J0%,M6*,OC*,Pu% 12C,3A,6A,15A,15B +light-armed laIt-'Amd OA$ 2 +light-coloured laIt-'kVl@d OA% 3 +light-fingered laIt-'fINg@d OA% 3 +light-handed laIt-'h&ndId OA$ 3 +light-handedly laIt-'h&ndIdlI Pu$ 4 +light-headed laIt-'hedId OA% 3 +light-headedly laIt-'hedIdlI Pu% 4 +light-headedness laIt-'hedIdn@s L@% 4 +light-hearted laIt-'hAtId OA% 3 +light-heartedly laIt-'hAtIdlI Pu% 4 +light-heartedness laIt-'hAtIdn@s L@% 4 +light-heavyweight laIt-'hevIweIt K6% 4 +light-heavyweights laIt-'hevIweIts Kj% 4 +light-minded laIt-'maIndId OA$ 3 +light-mindedness laIt-'maIndIdn@s L@$ 4 +light-o'-love laIt-@-'lVv K6$ 3 +light-o'-loves laIt-@-'lVvz Kj$ 3 +lighted 'laItId Jc%,Jd% 22C,3A,6A,15A,15B +lighten 'laItn J0% 22A,6A +lightened 'laItnd Jc%,Jd% 22A,6A +lightening 'laItnIN Jb% 32A,6A +lightens 'laItnz Ja% 22A,6A +lighter 'laIt@R H0$,K6%,Or% 2 +lighterage 'laIt@rIdZ L@$ 3 +lightered 'laIt@d Hc$,Hd$ 2 +lightering 'laIt@rIN Hb$ 3 +lighters 'laIt@z Ha$,Kj% 2 +lightest 'laItIst Os% 2 +lighthouse 'laIthaUs K6% 2 +lighthouses 'laIthaUzIz Kj% 3 +lighting 'laItIN Jb% 22C,3A,6A,15A,15B +lighting-up ,laItIN-'Vp Oq% 3 +lightly 'laItlI Pu% 2 +lightness 'laItnes L@% 2 +lightning 'laItnIN L@% 2 +lightning-conductor 'laItnIN-k@n,dVkt@R K6% 5 +lightning-conductors 'laItnIN-k@n,dVkt@z Kj% 5 +lightning-rod 'laItnIN-r0d K6% 3 +lightning-rods 'laItnIN-r0dz Kj% 3 +lights laIts Ja%,Mj% 12C,3A,6A,15A,15B +lightship 'laItSIp K6% 2 +lightships 'laItSIps Kj% 2 +lightsome 'laIts@m OA$ 2 +lightsomely 'laIts@mlI Pu$ 3 +lightsomeness 'laIts@mn@s L@$ 3 +lightweight 'laItweIt K6%,OA% 2 +lightweights 'laItweIts Kj% 2 +ligneous 'lIgnI@s OA$ 3 +lignite 'lIgnaIt L@$ 2 +likable 'laIk@bl OA$ 3 +like laIk H2*,K6%,OA%,Pu%,T-*,V-*16A,6D,7A,17,19B,19C,22 +like-minded laIk-'maIndId OA% 3 +likeable 'laIk@bl OA% 3 +liked laIkt Hc%,Hd% 16A,6D,7A,17,19B,19C,22 +likelier 'laIklI@R Or% 3 +likeliest 'laIklIIst Os% 3 +likelihood 'laIklIhUd L@% 3 +likely 'laIklI OD%,Pu% 2 +liken 'laIk@n H0% 214 +likened 'laIk@nd Hc%,Hd% 214 +likeness 'laIkn@s M7% 2 +likenesses 'laIkn@sIz Mj% 3 +likening 'laIk@nIN Hb$ 314 +likens 'laIk@nz Ha$ 214 +likes laIks Ha%,Kj% 16A,6D,7A,17,19B,19C,22 +likewise 'laIkwaIz Pu%,V-% 2 +liking 'laIkIN Hb%,K6% 26A,6D,7A,17,19B,19C,22 +likings 'laIkINz Kj% 2 +lilac 'laIl@k K6% 2 +lilacs 'laIl@ks Kj% 2 +lilies 'lIlIz Kj% 2 +lilt lIlt J0%,K6% 1 +lilted 'lIltId Jc%,Jd% 2 +lilting 'lIltIN Jb% 2 +lilts lIlts Ja%,Kj% 1 +lily 'lIlI K8% 2 +lily-livered 'lIlI-lIv@d OA% 4 +lily-white 'lIlI-waIt OA% 3 +limb lIm K6% 1 +limbed lImd Ot% 1 +limber 'lImb@R J0%,OA$ 22C,15B +limbered 'lImb@d Jc%,Jd% 22C,15B +limbering 'lImb@rIN Jb% 32C,15B +limbers 'lImb@z Ja% 22C,15B +limbless 'lIml@s OA% 2 +limbo 'lImb@U M6% 2 +limbos 'lImb@Uz Mj$ 2 +limbs lImz Kj% 1 +lime laIm H2$,M6% 16A +lime-tree 'laIm-tri K6% 2 +lime-trees 'laIm-triz Kj% 2 +limed laImd Hc$,Hd% 16A +limejuice 'laImdZus L@% 2 +limekiln 'laImkIln K6$ 2 +limekilns 'laImkIlnz Kj$ 2 +limelight 'laImlaIt L@% 2 +limerick 'lIm@rIk K6% 3 +limericks 'lIm@rIks Kj% 3 +limes laImz Ha%,Mj% 16A +limestone 'laImst@Un L@% 2 +limey 'laImI K6$ 2 +limeys 'laImIz Kj$ 2 +liming 'laImIN Hb$ 26A +limit 'lImIt H0%,K6% 26A,14 +limitation ,lImI'teISn M6% 4 +limitations ,lImI'teISnz Mj% 4 +limited 'lImItId Hc%,Hd% 36A,14 +limiting 'lImItIN Hb% 36A,14 +limitless 'lImItl@s OA% 3 +limits 'lImIts Ha%,Kj% 26A,14 +limn lIm H0$ 1 +limned lImd Hc$,Hd$ 1 +limning 'lImIN Hb$ 2 +limns lImz Ha$ 1 +limousine 'lIm@zin K6% 3 +limousines 'lIm@zinz Kj% 3 +limp lImp I0%,K6%,OA% 12A,2C +limped lImpt Ic%,Id% 12A,2C +limpet 'lImpIt K6% 2 +limpets 'lImpIts Kj% 2 +limpid 'lImpId OA% 2 +limpidity lIm'pIdItI L@% 4 +limpidly 'lImpIdlI Pu% 3 +limping 'lImpIN Ib% 22A,2C +limply 'lImplI Pu% 2 +limpness 'lImpn@s L@% 2 +limps lImps Ia%,Kj% 12A,2C +linchpin 'lIntSpIn K6% 2 +linchpins 'lIntSpInz Kj% 2 +linden 'lInd@n K6$ 2 +linden-tree 'lInd@n-tri K6$ 3 +linden-trees 'lInd@n-triz Kj$ 3 +lindens 'lInd@nz Kj$ 2 +line laIn J2%,M6* 12C,6A,14,15B +line-shooter 'laIn-Sut@R K6$ 3 +line-shooters 'laIn-Sut@z Kj$ 3 +line-shooting 'laIn-SutIN L@$ 3 +line-up 'laIn-Vp K6% 2 +line-ups 'laIn-Vps Kj% 2 +lineage 'lInIIdZ L@% 3 +lineal 'lInI@l OA$ 3 +lineally 'lInI@lI Pu$ 4 +lineament 'lInI@m@nt K6$ 4 +lineaments 'lInI@m@nts Kj% 4 +linear 'lInI@R OA% 3 +linearly 'lInI@lI Pu% 4 +lined laInd Jc%,Jd% 12C,6A,14,15B +lineman 'laInm@n Ki% 2 +linemen 'laInm@n Kj% 2 +linen 'lInIn L@% 2 +linen-draper 'lInIn-dreIp@R K6$ 4 +linen-drapers 'lInIn-dreIp@z Kj$ 4 +liner 'laIn@R K6% 2 +liner-train 'laIn@-treIn K6$ 3 +liner-trains 'laIn@-treInz Kj$ 3 +liners 'laIn@z Kj% 2 +lines laInz Ja%,Mj% 12C,6A,14,15B +linesman 'laInzm@n Ki% 2 +linesmen 'laInzm@n Kj% 2 +ling lIN M6$ 1 +lingam 'lINg@m K6$ 2 +lingams 'lINg@mz Kj$ 2 +linger 'lINg@R I0% 22A,2C +lingered 'lINg@d Ic%,Id% 22A,2C +lingerer 'lINg@r@R K6% 3 +lingerers 'lINg@r@z Kj% 3 +lingerie 'l&nZ@ri L@% 3 +lingering 'lINg@rIN Ib%,OA% 32A,2C +lingeringly 'lINg@rINlI Pu% 4 +lingers 'lINg@z Ia% 22A,2C +lingo 'lINg@U K7% 2 +lingoes 'lINg@Uz Kj$ 2 +lings lINz Mj$ 1 +lingua franca ,lINgw@ 'fr&Nk@ Ki% 4 +lingual 'lINgw@l OA% 2 +linguist 'lINgwIst K6% 2 +linguistic lIN'gwIstIk OA% 3 +linguistically lIN'gwIstIklI Pu% 4 +linguistics lIN'gwIstIks Lk% 3 +linguists 'lINgwIsts Kj% 2 +liniment 'lInIm@nt M6% 3 +liniments 'lInIm@nts Mj$ 3 +lining 'laInIN Jb%,M6% 22C,6A,14,15B +linings 'laInINz Mj% 2 +link lINk J0%,K6% 12A,2C,6A,15A,15B +link-up 'lINk-Vp K6% 2 +link-ups 'lINk-Vps Kj% 2 +linkage 'lINkIdZ M6% 2 +linkages 'lINkIdZIz Mj% 2 +linkboy 'lInkboI K6$ 2 +linkboys 'lInkboIz Kj$ 2 +linked lINkt Jc%,Jd% 12A,2C,6A,15A,15B +linking 'lINkIN Jb% 22A,2C,6A,15A,15B +linkman 'lINkm&n Ki$ 2 +linkmen 'lINkmen Kj$ 2 +links lINks Ja%,K9% 12A,2C,6A,15A,15B +linnet 'lInIt K6% 2 +linnets 'lInIts Kj% 2 +lino 'laIn@U L@% 2 +linocut 'laIn@UkVt K6% 3 +linocuts 'laIn@UkVts Kj% 3 +linoleum lI'n@UlI@m L@% 4 +linotype 'laIn@UtaIp K6% 3 +linotypes 'laIn@UtaIps Kj% 3 +linseed 'lInsid L@% 2 +linsey-woolsey ,lInzI-'wUlzI L@$ 4 +lint lInt L@% 1 +lintel 'lIntl K6% 2 +lintels 'lIntlz Kj% 2 +lion 'laI@n K6% 2 +lion-hearted 'laI@n-hAtId OA% 4 +lion-hunter 'laI@n-hVnt@R K6% 4 +lion-hunters 'laI@n-hVnt@z Kj% 4 +lioness 'laI@nes K7% 3 +lionesses 'laI@nesIz Kj% 4 +lionize 'laI@naIz H2$ 36A +lionized 'laI@naIzd Hc$,Hd$ 36A +lionizes 'laI@naIzIz Ha$ 46A +lionizing 'laI@naIzIN Hb$ 46A +lions 'laI@nz Kj% 2 +lip lIp M6% 1 +lip-read 'lIp-red Hc$,Hd$ 2 +lip-read 'lIp-rid H5% 2 +lip-reading 'lIp-ridIN Hb%,L@% 3 +lip-reads 'lIp-ridz Ha% 2 +lipped lIpt Ot% 1 +lips lIps Mj% 1 +lipstick 'lIpstIk M6% 2 +lipsticks 'lIpstIks Mj% 2 +liquefaction ,lIkwI'f&kSn L@$ 4 +liquefied 'lIkwIfaId Jc%,Jd% 32A,6A +liquefies 'lIkwIfaIz Ja% 32A,6A +liquefy 'lIkwIfaI J3% 32A,6A +liquefying 'lIkwIfaIIN Jb% 42A,6A +liquescent lI'kwesnt OA$ 3 +liqueur lI'kjU@R K6% 2 +liqueurs lI'kjU@z Kj% 2 +liquid 'lIkwId M6%,OA% 2 +liquidate 'lIkwIdeIt J2% 32A,6A +liquidated 'lIkwIdeItId Jc%,Jd% 42A,6A +liquidates 'lIkwIdeIts Ja% 32A,6A +liquidating 'lIkwIdeItIN Jb% 42A,6A +liquidation ,lIkwI'deISn L@% 4 +liquidator 'lIkwIdeIt@R K6% 4 +liquidators 'lIkwIdeIt@z Kj% 4 +liquidity lI'kwIdItI L@% 4 +liquidize 'lIkwIdaIz H2% 36A +liquidized 'lIkwIdaIzd Hc%,Hd% 36A +liquidizer 'lIkwIdaIz@R K6% 4 +liquidizers 'lIkwIdaIz@z Kj% 4 +liquidizes 'lIkwIdaIzIz Ha% 46A +liquidizing 'lIkwIdaIzIN Hb% 46A +liquids 'lIkwIdz Mj% 2 +liquor 'lIk@R M6% 2 +liquorice 'lIk@rIs L@% 3 +liquors 'lIk@z Mj$ 2 +lira 'lI@r@ K6$ 2 +liras 'lI@r@z Kj$ 2 +lire 'lI@r@ Kj$ 2 +lisle laIl L@$ 1 +lisp lIsp J0%,K6% 12A,6A,15B +lisped lIspt Jc%,Jd% 12A,6A,15B +lisping 'lIspIN Jb% 22A,6A,15B +lispingly 'lIspINlI Pu% 3 +lisps lIsps Ja%,Kj% 12A,6A,15B +lissom 'lIs@m OA% 2 +lissome 'lIs@m OA$ 2 +lissomness 'lIs@mn@s L@$ 3 +list lIst J0%,K6% 12A,2C,6A +list-price 'lIst-praIs K6% 2 +list-prices 'lIst-praIsIz Kj$ 3 +listed 'lIstId Jc%,Jd% 22A,2C,6A +listen 'lIsn I0% 22A,2C,3A +listened 'lIsnd Ic%,Id% 22A,2C,3A +listener 'lIsn@R K6% 2 +listeners 'lIsn@z Kj% 2 +listening 'lIsnIN Ib% 22A,2C,3A +listens 'lIsnz Ia% 22A,2C,3A +listing 'lIstIN Jb%,K6% 22A,2C,6A +listings 'lIstINz Kj% 2 +listless 'lIstlIs OA% 2 +listlessly 'lIstlIslI Pu% 3 +listlessness 'lIstlIsn@s L@% 3 +lists lIsts Ja%,Kj% 12A,2C,6A +lists lists Kj$ 1 +lit lIt Jc%,Jd% 12C,6A,15A,15B +litanies 'lIt@nIz Kj% 3 +litany 'lIt@nI K8% 3 +litchee 'laItSi K6$ 2 +litchees 'laItSiz Kj$ 2 +litchi 'laItSi K6$ 2 +litchis 'laItSiz Kj$ 2 +literacy 'lIt@r@sI L@% 4 +literal 'lIt@r@l K6$,OA% 3 +literally 'lIt@r@lI Pu% 4 +literals 'lIt@r@lz Kj$ 3 +literary 'lIt@r@rI OA% 4 +literate 'lIt@r@t K6$,OA% 3 +literates 'lIt@r@ts Kj$ 3 +literati ,lIt@'rAtI Kj% 4 +literature 'lItr@tS@R L@% 3 +lithe laID OA% 1 +lithograph 'lIT@grAf J0$,K6% 3 +lithographed 'lIT@grAft Jc$,Jd% 3 +lithographic ,lIT@'gr&fIk OA% 4 +lithographing 'lIT@grAfIN Jb$ 4 +lithographs 'lIT@grAfs Ja$,Kj% 3 +lithography lI'T0gr@fI L@% 4 +litigant 'lItIg@nt K6% 3 +litigants 'lItIg@nts Kj% 3 +litigate 'lItIgeIt J2% 32A,6A +litigated 'lItIgeItId Jc%,Jd% 42A,6A +litigates 'lItIgeIts Ja% 32A,6A +litigating 'lItIgeItIN Jb% 42A,6A +litigation ,lItI'geISn L@% 4 +litigious lI'tIdZ@s OA$ 3 +litmus 'lItm@s L@% 2 +litmus-paper 'lItm@s-peIp@R M6% 4 +litmus-papers 'lItm@s-peIp@z Mj% 4 +litotes 'laIt@Utiz K9$ 3 +litre 'lit@R K6% 2 +litres 'lit@z Kj% 2 +litter 'lIt@R J0%,M6% 22A,6A,14,15A,15B +litter-basket 'lIt@-bAskIt K6% 4 +litter-baskets 'lIt@-bAskIts Kj% 4 +litter-lout 'lIt@-laUt K6% 3 +litter-louts 'lIt@-laUts Kj% 3 +litterbin 'lIt@bIn K6% 3 +litterbins 'lIt@bInz Kj% 3 +littered 'lIt@d Jc%,Jd% 22A,6A,14,15A,15B +littering 'lIt@rIN Jb% 32A,6A,14,15A,15B +litters 'lIt@z Ja%,Mj$ 22A,6A,14,15A,15B +little 'lItl L@%,OB*,Pu* 2 +littleness 'lItln@s L@% 3 +littler 'lItl@R Or% 2 +littlest 'lItlIst Os% 2 +littoral 'lIt@r@l K6$,OA$ 3 +littorals 'lIt@r@lz Kj$ 3 +liturgical lI't3dZIkl OA% 4 +liturgies 'lIt@dZIz Mj% 3 +liturgy 'lIt@dZI M8% 3 +livable 'lIv@bl OA% 3 +live lIv J2% 12A,2B,2C,2D,3A,4A,6B,15B +live laIv OA%,Pu% 1 +live-birth 'laIv-b3T K6% 2 +live-births 'laIv-b3Ts Kj% 2 +liveable 'lIv@bl OA% 3 +lived lIvd Jc%,Jd% 12A,2B,2C,2D,3A,4A,6B,15B +livelier 'laIvlI@R Or% 3 +liveliest 'laIvlIIst Os% 3 +livelihood 'laIvlIhUd K6% 3 +livelihoods 'laIvlIhUdz Kj% 3 +liveliness 'laIvlIn@s L@% 3 +livelong 'lIvl0N OA$ 2 +lively 'laIvlI OD% 2 +liven 'laIvn J0% 22C,15B +livened 'laIvnd Jc%,Jd% 22C,15B +livening 'laIvnIN Jb% 22C,15B +livens 'laIvnz Ja% 22C,15B +liver 'lIv@R M6% 2 +liveried 'lIv@rId OA% 3 +liveries 'lIv@rIz Kj$ 3 +liverish 'lIv@rIS OA% 3 +livers 'lIv@z Mj% 2 +liverwurst 'lIv@w3st L@$ 3 +livery 'lIv@rI K8%,OA% 3 +liveryman 'lIv@rIm&n Ki$ 4 +liverymen 'lIv@rImen Kj$ 4 +lives lIvz Ja% 12A,2B,2C,2D,3A,4A,6B,15B +lives laIvz Kj% 1 +livestock 'laIvst0k L@% 2 +livid 'lIvId OA% 2 +lividly 'lIvIdlI Pu$ 3 +living 'lIvIN Jb*,M6%,OA* 22A,2B,2C,2D,3A,4A,6B,15B +living-room 'lIvIN-rum K6% 3 +living-rooms 'lIvIN-rumz Kj% 3 +living-space 'lIvIN-speIs K6% 3 +living-spaces 'lIvIN-speIsIz Kj% 4 +livings 'lIvINz Mj% 2 +lizard 'lIz@d K6% 2 +lizards 'lIz@dz Kj% 2 +ll laInz Y)% 1 +llama 'lAm@ K6% 2 +llamas 'lAm@z Kj% 2 +lo l@U W-$ 1 +load l@Ud J0%,K6% 12A,2C,6A,14,15A,15B +load-line 'l@Ud-laIn K6$ 2 +load-lines 'l@Ud-laInz Kj$ 2 +load-shedding 'l@Ud-SedIN L@$ 3 +loaded 'l@UdId Jc%,Jd%,OA% 22A,2C,6A,14,15A,15B +loader 'l@Ud@R K6% 2 +loaders 'l@Ud@z Kj% 2 +loading 'l@UdIN Jb%,K6% 22A,2C,6A,14,15A,15B +loadings 'l@UdINz Kj% 2 +loads l@Udz Ja%,Kj% 12A,2C,6A,14,15A,15B +loadstar 'l@UdstAR K6$ 2 +loadstars 'l@UdstAz Kj$ 2 +loadstone 'l@Udst@Un L@$ 2 +loaf l@Uf J0%,Mi% 12A,2C,15A,15B +loaf-sugar 'l@Uf-SUg@R L@$ 3 +loafed l@Uft Jc%,Jd% 12A,2C,15A,15B +loafer 'l@Uf@R K6% 2 +loafers 'l@Uf@z Kj% 2 +loafing 'l@UfIN Jb% 22A,2C,15A,15B +loafs l@Ufs Ja% 12A,2C,15A,15B +loam l@Um L@% 1 +loamier 'l@UmI@R Or% 3 +loamiest 'l@UmIIst Os% 3 +loamy 'l@UmI OD% 2 +loan l@Un H0%,M6% 16A,14 +loan-collection 'l@Un-k@,lekSn K6$ 4 +loan-collections 'l@Un-k@,lekSnz Kj$ 4 +loan-office 'l@Un-0fIs K6$ 3 +loan-offices 'l@Un-0fIsIz Kj$ 4 +loaned l@Und Hc%,Hd% 16A,14 +loaning 'l@UnIN Hb% 26A,14 +loans l@Unz Ha%,Mj% 16A,14 +loanword 'l@Unw3d K6% 2 +loanwords 'l@Unw3dz Kj% 2 +loath l@UT OA% 1 +loathe l@UD H2% 16A,6C +loathed l@UDd Hc%,Hd% 16A,6C +loathes l@UDz Ha% 16A,6C +loathing 'l@UDIN Hb%,L@% 26A,6C +loathlier 'l@UTlI@R Or$ 3 +loathliest 'l@UTlIIst Os$ 3 +loathly 'l@UTlI OD$ 2 +loathsome 'l@UDs@m OA% 2 +loaves l@Uvz Kj% 1 +lob l0b J4%,K6% 12C,6A,15A +lobbed l0bd Jc%,Jd% 12C,6A,15A +lobbied 'l0bId Jc%,Jd% 22A,2C,6A,15A +lobbies 'l0bIz Ja%,Kj% 22A,2C,6A,15A +lobbing 'l0bIN Jb% 22C,6A,15A +lobby 'l0bI J3%,K8% 22A,2C,6A,15A +lobbying 'l0bIIN Jb% 32A,2C,6A,15A +lobbyist 'l0bIIst K6% 3 +lobbyists 'l0bIIsts Kj% 3 +lobe l@Ub K6% 1 +lobed l@Ubd OA% 1 +lobes l@Ubz Kj% 1 +lobs l0bz Ja%,Kj% 12C,6A,15A +lobster 'l0bst@R M6% 2 +lobster-pot 'l0bst@-p0t K6% 3 +lobster-pots 'l0bst@-p0ts Kj% 3 +lobsters 'l0bst@z Mj% 2 +loc cit ,l0k 'sIt Y~$ 2 +local 'l@Ukl K6%,OA% 2 +locale l@U'kAl K6% 2 +locales l@U'kAlz Kj$ 2 +localism 'l@Uk@lIz@m M6$ 4 +localisms 'l@Uk@lIz@mz Mj$ 4 +localities l@U'k&lItIz Mj% 4 +locality l@U'k&lItI M8% 4 +localization ,l@Uk@laI'zeISn M6% 5 +localizations ,l@Uk@laI'zeISnz Mj$ 5 +localize 'l@Uk@laIz H2% 36A +localized 'l@Uk@laIzd Hc%,Hd% 36A +localizes 'l@Uk@laIzIz Ha% 46A +localizing 'l@Uk@laIzIN Hb% 46A +locally 'l@Uk@lI Pu% 3 +locals 'l@Uklz Kj% 2 +locate l@U'keIt H2% 26A,15A +located l@U'keItId Hc%,Hd% 36A,15A +locates l@U'keIts Ha% 26A,15A +locating l@U'keItIN Hb% 36A,15A +location l@U'keISn M6% 3 +locations l@U'keISnz Mj% 3 +loch l0k K6% 1 +lochs l0ks Kj% 1 +loci 'l@UsaI Kj$ 2 +lock l0k J0%,M6% 12A,2C,6A,15A,15B +lock-gate 'l0k-geIt K6% 2 +lock-gates 'l0k-geIts Kj% 2 +lock-keeper 'l0k-kip@R K6% 3 +lock-keepers 'l0k-kip@z Kj% 3 +locked l0kt Jc%,Jd% 12A,2C,6A,15A,15B +locker 'l0k@R K6% 2 +lockers 'l0k@z Kj% 2 +locket 'l0kIt K6% 2 +lockets 'l0kIts Kj% 2 +locking 'l0kIN Jb% 22A,2C,6A,15A,15B +lockjaw 'l0kdZO L@% 2 +locknut 'l0knVt K6$ 2 +locknuts 'l0knVts Kj$ 2 +lockout 'l0kaUt K6% 2 +lockouts 'l0kaUts Kj$ 2 +locks l0ks Ja%,Mj% 12A,2C,6A,15A,15B +locksmith 'l0ksmIT K6% 2 +locksmiths 'l0ksmITs Kj% 2 +lockstitch 'l0kstItS K7$ 2 +lockstitches 'l0kstItSIz Kj$ 3 +lockup 'l0kVp K6%,OA% 2 +lockups 'l0kVps Kj$ 2 +loco 'l@Uk@U OA$ 2 +locomotion 'l@Uk@m@USn L@% 4 +locomotive ,l@Uk@'m@UtIv K6%,OA% 4 +locomotives ,l@Uk@'m@UtIvz Kj% 4 +locum 'l@Uk@m K6% 2 +locum tenens ,l@Uk@m 'tinenz Ki$ 4 +locums 'l@Uk@mz Kj$ 2 +locus 'l@Uk@s Ki$ 2 +locus classicus ,l@Uk@s 'kl&sIk@s Ki$ 5 +locust 'l@Uk@st K6% 2 +locust-tree 'l@Uk@st-tri K6$ 3 +locust-trees 'l@Uk@st-triz Kj$ 3 +locusts 'l@Uk@sts Kj% 2 +locution l@'kjuSn M6% 3 +locutions l@'kjuSnz Mj% 3 +lode l@Ud K6$ 1 +lodes l@Udz Kj$ 1 +lodestar 'l@UdstAR K6% 2 +lodestars 'l@UdstAz Kj% 2 +lodestone 'l@Udst@Un L@% 2 +lodge l0dZ J2%,K6% 13A,6A,14,15A +lodged l0dZd Jc%,Jd% 13A,6A,14,15A +lodgement 'l0dZm@nt M6$ 2 +lodgements 'l0dZm@nts Mj$ 2 +lodger 'l0dZ@R K6% 2 +lodgers 'l0dZ@z Kj% 2 +lodges 'l0dZIz Ja%,Kj% 23A,6A,14,15A +lodging 'l0dZIN Jb%,K6% 23A,6A,14,15A +lodging-house 'l0dZIN-haUs K6% 3 +lodging-houses 'l0dZIN-haUzIz Kj% 4 +lodgings 'l0dZINz Kj% 2 +lodgment 'l0dZm@nt M6$ 2 +lodgments 'l0dZm@nts Mj$ 2 +loess 'l@Ues L@$ 2 +loft l0ft H0$,K6% 16A +lofted 'l0ftId Hc$,Hd% 26A +loftier 'l0ftI@R Or% 3 +loftiest 'l0ftIIst Os% 3 +loftily 'l0ftIlI Pu% 3 +loftiness 'l0ftIn@s L@% 3 +lofting 'l0ftIN Hb$ 26A +lofts l0fts Ha$,Kj% 16A +lofty 'l0ftI OD% 2 +log l0g H4%,K6% 16A +log-cabin l0g-'k&bIn K6% 3 +log-cabins l0g-'k&bInz Kj% 3 +log-jam 'l0g-dZ&m K6% 2 +log-jams 'l0g-dZ&mz Kj$ 2 +log-rolling 'l0g-r@UlIN L@% 3 +loganberries 'l@Ug@nberIz Kj% 4 +loganberry 'l@Ug@nberI K8% 4 +logarithm 'l0g@rID@m K6% 4 +logarithmic ,l0g@'rIDmIk OA% 4 +logarithmically ,l0g@'rIDmIklI Pu% 5 +logarithms 'l0g@rID@mz Kj% 4 +logbook 'l0gbUk K6% 2 +logbooks 'l0gbUks Kj% 2 +logged l0gd Hc%,Hd% 16A +loggerheads 'l0g@hedz L@% 3 +loggia 'l0dZI@ K6$ 3 +loggias 'l0dZI@z Kj$ 3 +logging 'l0gIN Hb%,L@% 26A +logic 'l0dZIk M6% 2 +logical 'l0dZIkl OA% 3 +logicality ,l0dZI'k&lItI L@$ 5 +logically 'l0dZIklI Pu% 3 +logician l@'dZISn K6% 3 +logicians l@'dZISnz Kj% 3 +logics 'l0dZIks Mj% 2 +logistics l@'dZIstIks Lk% 3 +logs l0gz Ha%,Kj% 16A +loin loIn K6% 1 +loincloth 'loInkl0T K6% 2 +loincloths 'loInkl0Ts Kj% 2 +loins loInz Kj% 1 +loiter 'loIt@R J0% 22A,2C,15B +loitered 'loIt@d Jc%,Jd% 22A,2C,15B +loiterer 'loIt@r@R K6% 3 +loiterers 'loIt@r@z Kj% 3 +loitering 'loIt@rIN Jb% 32A,2C,15B +loiters 'loIt@z Ja% 22A,2C,15B +loll l0l J0% 12A,2C,15B +lolled l0ld Jc%,Jd% 12A,2C,15B +lollies 'l0lIz Kj% 2 +lolling 'l0lIN Jb% 22A,2C,15B +lollipop 'l0lIp0p K6% 3 +lollipops 'l0lIp0ps Kj% 3 +lolls l0lz Ja% 12A,2C,15B +lolly 'l0lI K8% 2 +lone l@Un OA% 1 +lonelier 'l@UnlI@R Or% 3 +loneliest 'l@UnlIIst Os% 3 +loneliness 'l@UnlIn@s L@% 3 +lonely 'l@UnlI OD% 2 +lonesome 'l@Uns@m OA% 2 +long l0N I0%,M6%,OC*,Pu*,Y>$ 13A,4C +long-distance 'l0N-dIst@ns Oq% 3 +long-drawn-out ,l0N-drOn-'@Ut OA% 3 +long-haired l0N-'he@d OA% 2 +long-headed l0N-'hedId OA$ 3 +long-lived l0N-'lIvd OA% 2 +long-play 'l0N-pleI OA$ 2 +long-playing 'l0N-pleIIN OA% 3 +long-range 'l0N-reIndZ Oq% 2 +long-sighted l0N-'saItId OA% 3 +long-standing 'l0N-st&ndIN OA% 3 +long-suffering l0N-'sVf@rIN OA% 4 +long-term 'l0N-t3m Oq% 2 +long-time 'l0N-taIm Oq% 2 +long-winded l0N-'wIndId OA% 3 +long-windedness l0N-'wIndIdn@s L@% 4 +longboat 'l0Nb@Ut K6% 2 +longboats 'l0Nb@Uts Kj% 2 +longbow 'l0NbaU K6% 2 +longbows 'l0NbaUz Kj% 2 +longed l0Nd Ic%,Id% 13A,4C +longer 'l0Ng@R Or%,Pu% 2 +longest 'l0NgIst Os%,Pu% 2 +longevity l0n'dZevItI L@% 4 +longhand 'l0Nh&nd L@% 2 +longing 'l0NIN Ib%,M6%,OA% 23A,4C +longingly 'l0NINlI Pu% 3 +longings 'l0NINz Mj$ 2 +longish 'l0NIS OA% 2 +longitude 'l0ndZItjud K6% 3 +longitudes 'l0ndZItjudz Kj$ 3 +longitudinal ,l0ndZI'tjudInl OA% 5 +longitudinally ,l0ndZI'tjudIn@lI Pu% 6 +longs l0Nz Ia%,Mj$ 13A,4C +longshoreman 'l0NSOm@n Ki% 3 +longshoremen 'l0NSOm@n Kj% 3 +longways 'l0NweIz Pu% 2 +longwise 'l0NwaIz Pu% 2 +loo lu K6% 1 +loofa 'luf@ K6$ 2 +loofah 'luf@ K6% 2 +loofahs 'luf@z Kj% 2 +loofas 'luf@z Kj$ 2 +look lUk J0*,K6* 12A,2C,2D,3A,4A,4D,6A,8,15B +look-over 'lUk-@Uv@R Ki$ 3 +looked lUkt Jc*,Jd* 12A,2C,2D,3A,4A,4D,6A,8,15B +looker 'lUk@R K6% 2 +looker-on ,lUk@r-'0n Ki% 3 +lookers 'lUk@z Kj% 2 +lookers-on ,lUk@z-'0n Kj% 3 +looking 'lUkIN Jb% 22A,2C,2D,3A,4A,4D,6A,8,15B +looking-glass 'lUkIN-glAs K7% 3 +looking-glasses 'lUkIN-glAsIz Kj% 4 +lookout 'lUkaUt K6% 2 +lookouts 'lUkaUts Kj% 2 +looks lUks Ja%,Kj% 12A,2C,2D,3A,4A,4D,6A,8,15B +loom lum I0%,K6% 12C,2D +loomed lumd Ic%,Id% 12C,2D +looming 'lumIN Ib% 22C,2D +looms lumz Ia%,Kj% 12C,2D +loon lun K6$ 1 +loonier 'lunI@R Or% 3 +loonies 'lunIz Kj% 2 +looniest 'lunIIst Os% 3 +loons lunz Kj$ 1 +loony 'lunI K8%,OD% 2 +loonybin 'lunIbIn K6$ 3 +loonybins 'lunIbInz Kj$ 3 +loop lup J0%,K6% 12A,6A,15B +loop-line 'lup-laIn K6$ 2 +loop-lines 'lup-laInz Kj$ 2 +looped lupt Jc%,Jd% 12A,6A,15B +loophole 'luph@Ul K6% 2 +loopholes 'luph@Ulz Kj% 2 +looping 'lupIN Jb% 22A,6A,15B +loops lups Ja% 12A,6A,15B +loopy 'lupI OA% 2 +loos luz Kj% 1 +loose lus H2%,OB% 16A +loose-leaf 'lus-lif Oq% 2 +loosed lust Hc%,Hd% 16A +loosely 'luslI Pu% 2 +loosen 'lusn J0% 22A,6A,15B +loosened 'lusnd Jc%,Jd% 22A,6A,15B +loosening 'lusnIN Jb% 32A,6A,15B +loosens 'lusnz Ja% 22A,6A,15B +looser 'lus@R Or% 2 +looses 'lusIz Ha% 26A +loosest 'lusIst Os% 2 +loosing 'lusIN Hb% 26A +loot lut J0%,L@% 12A,6A +looted 'lutId Jc%,Jd% 22A,6A +looter 'lut@R K6% 2 +looters 'lut@z Kj% 2 +looting 'lutIN Jb% 22A,6A +loots luts Ja% 12A,6A +lop l0p J4% 16A,15B +lop-eared 'l0p-I@d OA$ 2 +lop-ears 'l0p-I@z Kj$ 2 +lope l@Up I2%,Ki% 12A,2C +loped l@Upt Ic%,Id% 12A,2C +lopes l@Ups Ia% 12A,2C +loping 'l@UpIN Ib% 22A,2C +lopped l0pt Jc%,Jd% 16A,15B +lopping 'l0pIN Jb% 26A,15B +lops l0ps Ja% 16A,15B +lopsided l0p'saIdId OA% 3 +loquacious l@'kweIS@s OA% 3 +loquaciously l@'kweIS@slI Pu% 4 +loquaciousness l@'kweIS@sn@s L@% 4 +loquacity l@'kw&sItI L@$ 4 +loquat 'l@Ukw0t K6$ 2 +loquats 'l@Ukw0ts Kj$ 2 +lor lOR W-$ 1 +lord lOd H0%,K6% 1 +lorded 'lOdId Hc%,Hd% 2 +lording 'lOdIN Hb% 2 +lordless 'lOdl@s OA% 2 +lordlier 'lOdlI@R Or$ 3 +lordliest 'lOdlIIst Os$ 3 +lordliness 'lOdlIn@s L@% 3 +lordly 'lOdlI OD% 2 +lords lOdz Ha%,Kj% 1 +lordship 'lOdSIp M6% 2 +lordships 'lOdSIps Mj% 2 +lore lOR L@% 1 +lorgnette lO'njet K6$ 2 +lorgnettes lO'njets Kj$ 2 +lorn lOn OA$ 1 +lorries 'l0rIz Kj% 2 +lorry 'l0rI K8% 2 +lose luz J5% 12A,2B,3A,6A,12C,15A +loser 'luz@R K6% 2 +losers 'luz@z Kj% 2 +loses 'luzIz Ja% 22A,2B,3A,6A,12C,15A +losing 'luzIN Jb% 22A,2B,3A,6A,12C,15A +loss l0s M7% 1 +loss-leader 'l0s-lid@R K6% 3 +loss-leaders 'l0s-lid@z Kj% 3 +losses 'l0sIz Mj% 2 +lost l0st Jc%,Jd% 12A,2B,3A,6A,12C,15A +lot l0t M6% 1 +loth l@UT OA$ 1 +lotion 'l@USn M6% 2 +lotions 'l@USnz Mj% 2 +lots l0ts Mj% 1 +lotteries 'l0t@rIz Kj% 3 +lottery 'l0t@rI K8% 3 +lotto 'l0t@U L@$ 2 +lotus 'l@Ut@s K7% 2 +lotus-eater 'l@Ut@s-it@R K6$ 4 +lotus-eaters 'l@Ut@s-it@z Kj$ 4 +lotuses 'l@Ut@sIz Kj$ 3 +loud laUd OC%,Pu% 1 +loud-hailer laUd-'heIl@R K6% 3 +loud-hailers laUd-'heIl@z Kj% 3 +louder 'laUd@R Or% 2 +loudest 'laUdIst Os% 2 +loudly 'laUdlI Pu% 2 +loudness 'laUdn@s L@% 2 +loudspeaker laUd'spik@R K6% 3 +loudspeakers laUd'spik@z Kj% 3 +lough l0k K6$ 1 +loughs l0ks Kj$ 1 +lounge laUndZ I2%,K6% 12A,2C +lounge-chair 'laUndZ-tSe@R K6% 2 +lounge-chairs 'laUndZ-tSe@z Kj% 2 +lounge-lizard 'laUndZ-lIz@d K6% 3 +lounge-lizards 'laUndZ-lIz@dz Kj% 3 +lounge-suit 'laUndZ-sut K6% 2 +lounge-suits 'laUndZ-suts Kj% 2 +lounged laUndZd Ic%,Id% 12A,2C +lounger 'laUndZ@R K6% 2 +loungers 'laUndZ@z Kj% 2 +lounges 'laUndZIz Ia%,Kj% 22A,2C +lounging 'laUndZIN Ib% 22A,2C +lour 'laU@R I0$ 22A,3A +loured 'laU@d Ic%,Id% 22A,3A +louring 'laU@rIN Ib% 32A,3A +louringly 'laU@rINlI Pu% 4 +lours 'laU@z Ia$ 22A,3A +louse laUs Ki% 1 +lousier 'laUzI@R Or% 3 +lousiest 'laUzIIst Os% 3 +lousy 'laUzI OD% 2 +lout laUt K6% 1 +loutish 'laUtIS OA% 2 +louts laUts Kj% 1 +louvered 'luv@d OA$ 2 +louvre 'luv@R K6$ 2 +louvres 'luv@z Kj$ 2 +lovable 'lVv@bl OA% 3 +love lVv H2*,M6* 16A,6D,7A,17 +love-affair 'lVv-@fe@R K6% 3 +love-affairs 'lVv-@fe@z Kj% 3 +love-child 'lVv-tSaIld Ki% 2 +love-children 'lVv-tSIldr@n Kj$ 3 +love-feast 'lVv-fist K6$ 2 +love-feasts 'lVv-fists Kj$ 2 +love-knot 'lVv-n0t K6% 2 +love-knots 'lVv-n0ts Kj$ 2 +love-letter 'lVv-let@R K6% 3 +love-letters 'lVv-let@z Kj% 3 +love-match 'lVv-m&tS K7% 2 +love-matches 'lVv-m&tSIz Kj$ 3 +love-philtre 'lVv-fIlt@R K6$ 3 +love-philtres 'lVv-fIlt@z Kj$ 3 +love-potion 'lVv-p@USn K6% 3 +love-potions 'lVv-p@USnz Kj% 3 +love-seat 'lVv-sit K6$ 2 +love-seats 'lVv-sits Kj$ 2 +love-song 'lVv-s0N K6% 2 +love-songs 'lVv-s0Nz Kj% 2 +love-stories 'lVv-stOrIz Kj% 3 +love-story 'lVv-stOrI K8% 3 +love-token 'lVv-t@Uk@n K6% 3 +love-tokens 'lVv-t@Uk@nz Kj% 3 +lovebird 'lVvb3d K6% 2 +lovebirds 'lVvb3dz Kj% 2 +loved lVvd Hc%,Hd% 16A,6D,7A,17 +loveless 'lVvl@s OA% 2 +lovelier 'lVvlI@R Or% 3 +loveliest 'lVvlIIst Os% 3 +loveliness 'lVvlIn@s L@% 3 +lovelorn 'lVvlOn OA% 2 +lovely 'lVvlI OD% 2 +lovemaking 'lVvmeIkIN L@% 3 +lover 'lVv@R K6% 2 +loverlike 'lVv@laIk OA$ 3 +lovers 'lVv@z Kj% 2 +loves lVvz Ha%,Mj% 16A,6D,7A,17 +lovesick 'lVvsIk OA% 2 +loving 'lVvIN Hb%,OA% 26A,6D,7A,17 +loving-cup 'lVvIN-kVp K6% 3 +loving-cups 'lVvIN-kVps Kj% 3 +loving-kindness ,lVvIN-'kaIndn@s L@% 4 +lovingly 'lVvINlI Pu% 3 +low l@U I0%,K6%,OC%,Pu% 1 +low-down l@U-'daUn OA% 2 +low-keyed l@U-'kid OA% 2 +low-pitched l@U-'pItSt OA% 2 +low-relief ,l@U-rI'lif M6% 3 +low-reliefs ,l@U-rI'lifs Mj% 3 +low-spirited l@U-'spIrItId OA% 4 +lowborn l@U'bOn OA% 2 +lowbred l@U'bred OA% 2 +lowbrow 'l@UbraU K6$,OA% 2 +lowbrows 'l@UbraUz Kj$ 2 +lowed l@Ud Ic$,Id$ 1 +lower 'l@U@R J0%,Or%,Pu% 22A,6A,15A +lower 'laU@R I0$ 22A,3A +lowered 'l@U@d Jc%,Jd% 22A,6A,15A +lowered 'laU@d Ic$,Id$ 22A,3A +lowering 'l@U@rIN Jb% 32A,6A,15A +lowering 'laU@rIN Ib$ 32A,3A +lowermost 'l@U@m@Ust OA% 3 +lowers 'l@U@z Ja% 22A,6A,15A +lowers 'laU@z Ia$ 22A,3A +lowest 'l@UIst Os%,Pu% 2 +lowing 'l@UIN Ib$ 2 +lowlander 'l@Ul@nd@R K6% 3 +lowlanders 'l@Ul@nd@z Kj% 3 +lowlands 'l@Ul@ndz Kj% 2 +lowlier 'l@UlI@R Or% 3 +lowliest 'l@UlIIst Os% 3 +lowliness 'l@UlIn@s L@% 3 +lowly 'l@UlI OD% 2 +lowness 'l@Unes L@% 2 +lows l@Uz Ia$,Kj$ 1 +loyal 'loI@l OE% 2 +loyalist 'loI@lIst K6% 3 +loyalists 'loI@lIsts Kj% 3 +loyaller 'loI@l@R Or$ 3 +loyallest 'loI@lIst Os$ 3 +loyally 'loI@lI Pu% 3 +loyalties 'loI@ltIz Mj% 3 +loyalty 'loI@ltI M8% 3 +lozenge 'l0zIndZ K6% 2 +lozenges 'l0zIndZIz Kj% 3 +lubber 'lVb@R K6$ 2 +lubberly 'lVb@lI OA$ 3 +lubbers 'lVb@z Kj$ 2 +lubricant 'lubrIk@nt M6% 3 +lubricants 'lubrIk@nts Mj% 3 +lubricate 'lubrIkeIt H2% 36A +lubricated 'lubrIkeItId Hc%,Hd% 46A +lubricates 'lubrIkeIts Ha% 36A +lubricating 'lubrIkeItIN Hb% 46A +lubrication ,lubrI'keISn M6% 4 +lubrications ,lubrI'keISnz Mj% 4 +lucent 'lusnt OA$ 2 +lucerne lu's3n L@$ 2 +lucid 'lusId OA% 2 +lucidity lu'sIdItI L@% 4 +lucidly 'lusIdlI Pu% 3 +luck lVk L@% 1 +luckier 'lVkI@R Or% 3 +luckiest 'lVkIIst Os% 3 +luckily 'lVkIlI Pu% 3 +luckless 'lVkl@s OA% 2 +lucky 'lVkI OD% 2 +lucrative 'lukr@tIv OA% 3 +lucre 'luk@R L@% 2 +ludicrous 'ludIkr@s OA% 3 +ludicrously 'ludIkr@slI Pu% 4 +ludo 'lud@U L@% 2 +luff lVf J0$ 1 +luffed lVft Jc$,Jd$ 1 +luffing 'lVfIN Jb$ 2 +luffs lVfs Ja$ 1 +lug lVg H4%,K6% 16A,15A,15B +luge luZ K6$ 1 +luges 'luZIz Kj$ 2 +luggage 'lVgIdZ L@% 2 +luggage-carrier 'lVgIdZ-k&rI@R K6% 5 +luggage-carriers 'lVgIdZ-k&rI@z Kj% 5 +luggage-rack 'lVgIdZ-r&k K6% 3 +luggage-racks 'lVgIdZ-r&ks Kj% 3 +luggage-van 'lVgIdZ-v&n K6% 3 +luggage-vans 'lVgIdZ-v&nz Kj% 3 +lugged lVgd Hc%,Hd% 16A,15A,15B +lugger 'lVg@R K6$ 2 +luggers 'lVg@z Kj$ 2 +lugging 'lVgIN Hb% 26A,15A,15B +lugs lVgz Ha%,Kj% 16A,15A,15B +lugsail 'lVgseIl K6$ 2 +lugsails 'lVgseIlz Kj$ 2 +lugubrious l@'gubrI@s OA% 4 +lugubriously l@'gubrI@slI Pu% 5 +lugubriousness l@'gubrI@sn@s L@% 5 +lukewarm ,luk'wOm OA% 2 +lukewarmly ,luk'wOmlI Pu$ 3 +lukewarmness ,luk'wOmn@s L@$ 3 +lull lVl J0%,K6% 12A,6A,15A +lullabies 'lVl@baIz Kj% 3 +lullaby 'lVl@baI K8% 3 +lulled lVld Jc%,Jd% 12A,6A,15A +lulling 'lVlIN Jb% 22A,6A,15A +lulls lVlz Ja%,Kj% 12A,6A,15A +lumbago lVm'beIg@U L@% 3 +lumbar 'lVmb@R OA$ 2 +lumber 'lVmb@R J0%,L@% 22C,6A,14,15A,15B +lumber-mill 'lVmb@-mIl K6% 3 +lumber-mills 'lVmb@-mIlz Kj% 3 +lumbered 'lVmb@d Jc%,Jd% 22C,6A,14,15A,15B +lumbering 'lVmb@rIN Jb% 32C,6A,14,15A,15B +lumberjack 'lVmb@dZ&k K6% 3 +lumberjacks 'lVmb@dZ&ks Kj% 3 +lumberman 'lVmb@m&n Ki$ 3 +lumbermen 'lVmb@men Kj$ 3 +lumberroom 'lVmb@rum K6% 3 +lumberrooms 'lVmb@rumz Kj% 3 +lumbers 'lVmb@z Ja$ 22C,6A,14,15A,15B +lumberyard 'lVmb@jAd K6% 3 +lumberyards 'lVmb@jAdz Kj% 3 +luminaries 'lumIn@rIz Kj% 4 +luminary 'lumIn@rI K8% 4 +luminosity ,lumI'n0sItI L@% 5 +luminous 'lumIn@s OA% 3 +lumme 'lVmI W-$ 2 +lummy 'lVmI W-$ 2 +lump lVmp H0%,K6% 12A,6A,15B +lumped lVmpt Hc%,Hd% 12A,6A,15B +lumpier 'lVmpI@R Or% 3 +lumpiest 'lVmpIIst Os% 3 +lumping 'lVmpIN Hb% 22A,6A,15B +lumpish 'lVmpIS OA$ 2 +lumps lVmps Ha%,Kj% 12A,6A,15B +lumpy 'lVmpI OD% 2 +lunacies 'lun@sIz Mj$ 3 +lunacy 'lun@sI M8% 3 +lunar 'lun@R OA% 2 +lunatic 'lun@tIk K6% 3 +lunatics 'lun@tIks Kj% 3 +lunch lVntS J1%,K7% 1 +lunched lVntSt Jc%,Jd% 1 +luncheon 'lVntS@n K6% 2 +luncheons 'lVntS@nz Kj% 2 +lunches 'lVntSIz Ja%,Kj% 2 +lunching 'lVntSIN Jb% 2 +lunchtime 'lVntStaIm M6% 2 +lunchtimes 'lVntStaImz Mj% 2 +lung lVN K6% 1 +lung-power 'lVN-paU@R L@$ 3 +lunge lVndZ I2%,K6% 12A,2C +lunged lVndZd Ic%,Id% 12A,2C +lunges 'lVndZIz Ia%,Kj% 22A,2C +lunging 'lVndZIN Ib% 22A,2C +lungs lVNz Kj% 1 +lupin 'lupIn K6% 2 +lupins 'lupInz Kj% 2 +lurch l3tS I1%,K7% 12C +lurched l3tSt Ic%,Id% 12C +lurcher 'l3tS@R K6$ 2 +lurchers 'l3tS@z Kj$ 2 +lurches 'l3tSIz Ia%,Kj% 22C +lurching 'l3tSIN Ib% 22C +lure lU@R H2%,K6% 16A,15B +lured lU@d Hc%,Hd% 16A,15B +lures lU@z Ha%,Kj% 16A,15B +lurid 'lU@rId OA% 2 +luridly 'lU@rIdlI Pu% 3 +luridness 'lU@rIdn@s L@$ 3 +luring 'lU@rIN Hb% 26A,15B +lurk l3k I0% 12C +lurked l3kt Ic%,Id% 12C +lurking 'l3kIN Ib% 22C +lurking-place 'l3kIN-pleIs K6$ 3 +lurking-places 'l3kIN-pleIsIz Kj$ 4 +lurks l3ks Ia% 12C +luscious 'lVS@s OA% 2 +lusciously 'lVS@slI Pu% 3 +lusciousness 'lVS@sn@s L@% 3 +lush lVS K7$,OC% 1 +lusher 'lVS@R Or% 2 +lushes 'lVSIz Kj$ 2 +lushest 'lVSIst Os% 2 +lust lVst I0%,M6% 13A +lusted 'lVstId Ic%,Id% 23A +lustful 'lVstf@l OA% 2 +lustfully 'lVstf@lI Pu% 3 +lustier 'lVstI@R Or% 3 +lustiest 'lVstIIst Os% 3 +lustily 'lVstIlI Pu% 3 +lusting 'lVstIN Ib% 23A +lustre 'lVst@R L@% 2 +lustrous 'lVstr@s OA% 2 +lusts lVsts Ia%,Mj% 13A +lusty 'lVstI OD% 2 +lutanist 'lut@nIst K6% 3 +lutanists 'lut@nIsts Kj% 3 +lute lut K6% 1 +lutenist 'lut@nIst K6% 3 +lutenists 'lut@nIsts Kj% 3 +lutes luts Kj% 1 +luxe lVks OA$ 1 +luxuriance lVg'ZU@rI@ns L@% 4 +luxuriant lVg'ZU@rI@nt OA% 4 +luxuriantly lVg'ZU@rI@ntlI Pu% 5 +luxuriate lVg'ZU@rIeIt I2% 43A +luxuriated lVg'ZU@rIeItId Ic%,Id% 53A +luxuriates lVg'ZU@rIeIts Ia% 43A +luxuriating lVg'ZU@rIeItIN Ib% 53A +luxuries 'lVkS@rIz Mj% 3 +luxurious lVg'ZU@rI@s OA% 4 +luxuriously lVg'ZU@rI@slI Pu% 5 +luxury 'lVkS@rI M8% 3 +lyc_ee 'liseI K6$ 2 +lyc_ees 'liseIz Kj$ 2 +lyceum laI'si@m K6$ 3 +lyceums laI'si@mz Kj$ 3 +lychee 'laItSi K6% 2 +lychees 'laItSiz Kj% 2 +lychgate 'lItSgeIt K6% 2 +lychgates 'lItSgeIts Kj% 2 +lye laI K6$ 1 +lyes laIz Kj$ 1 +lying 'laIIN Ib% 22A,2C,2D,3A +lying-in ,laIIN-'In OA% 3 +lymph lImf L@% 1 +lymphatic lIm'f&tIk OA% 3 +lynch lIntS H1%,L@% 16A +lynched lIntSt Hc%,Hd% 16A +lynches 'lIntSIz Ha% 26A +lynching 'lIntSIN Hb% 26A +lynchpin 'lIntSpIn K6% 2 +lynchpins 'lIntSpInz Kj% 2 +lynx lINks K7% 1 +lynx-eyed 'lINks-aId OA% 2 +lynxes 'lINksIz Kj% 2 +lyre 'laI@R K6% 1 +lyre-bird 'laI@-b3d K6% 2 +lyre-birds 'laI@-b3dz Kj% 2 +lyres 'laI@z Kj% 1 +lyric 'lIrIk K6%,OA% 2 +lyrical 'lIrIkl OA% 3 +lyrically 'lIrIklI Pu% 3 +lyricism 'lIrIsIzm L@% 4 +lyricist 'lIrIsIst K6% 3 +lyricists 'lIrIsIsts Kj% 3 +lyrics 'lIrIks Kj% 2 +lysol 'laIs0l L@$ 2 +m em Ki$ 1 +m's emz Kj$ 1 +m^el_ee 'meleI K6% 2 +m^el_ees 'meleIz Kj% 2 +m_elange 'meIlAnZ K6$ 2 +m_elanges 'meIlAnZIz Kj$ 3 +m_enage meI'nAZ K6% 2 +m_enages meI'nAZIz Kj% 3 +m_esalliance ,meI'z&lIAns K6$ 4 +m_esalliances ,meI'z&lIAnsIz Kj$ 5 +m_etier 'metIeI K6% 3 +m_etiers 'metIeIz Kj% 3 +ma mA Ki% 1 +ma'am m&m Ki% 1 +mac m&k K6% 1 +macabre m@'kAbr@ OA% 3 +macadam m@'k&d@m L@% 3 +macadamize m@'k&d@maIz H2$ 4 +macadamized m@'k&d@maIzd Hc$,Hd$ 4 +macadamizes m@'k&d@maIzIz Ha$ 5 +macadamizing m@'k&d@maIzIN Hb$ 5 +macaroni ,m&k@'r@UnI L@% 4 +macaroon ,m&k@'run K6% 3 +macaroons ,m&k@'runz Kj% 3 +macaw m@'kO K6% 2 +macaws m@'kOz Kj% 2 +mace meIs M6% 1 +mace-bearer 'meIs-be@r@R K6% 3 +mace-bearers 'meIs-be@r@z Kj% 3 +macerate 'm&s@reIt J2$ 32A,6A +macerated 'm&s@reItId Jc$,Jd% 42A,6A +macerates 'm&s@reIts Ja$ 32A,6A +macerating 'm&s@reItIN Jb$ 42A,6A +maces 'meIsIz Mj% 2 +machete m@'tSetI K6% 3 +machetes m@'tSetIz Kj% 3 +machiavellian ,m&kI@'velI@n OA% 6 +machination ,m&kI'neISn M6% 4 +machinations ,m&kI'neISnz Mj% 4 +machine m@'Sin H2%,K6% 26A +machine-gun m@'Sin-gVn K6% 3 +machine-guns m@'Sin-gVnz Kj% 3 +machine-made m@'Sin-meId OA% 3 +machined m@'Sind Hc%,Hd% 26A +machinery m@'Sin@rI L@% 4 +machines m@'Sinz Ha%,Kj% 26A +machining m@'SinIN Hb% 36A +machinist m@'SinIst K6% 3 +machinists m@'SinIsts Kj% 3 +machismo m@'tSIzm@U L@% 3 +mackerel 'm&kr@l M9% 2 +mackintosh 'm&kInt0S K7% 3 +mackintoshes 'm&kInt0SIz Kj% 4 +macrobiotic ,m&kr@UbaI'0tIk OA% 5 +macrocosm 'm&kr@Uk0z@m K6$ 4 +macrocosms 'm&kr@Uk0z@mz Kj$ 4 +macs m&ks Kj% 1 +mad m&d OE% 1 +madam 'm&d@m K6% 2 +madams 'm&d@mz Kj$ 2 +madcap 'm&dk&p K6$ 2 +madcaps 'm&dk&ps Kj$ 2 +madden 'm&dn H0% 26A +maddened 'm&dnd Hc%,Hd% 26A +maddening 'm&dnIN Hb% 36A +maddens 'm&dnz Ha% 26A +madder 'm&d@R L@$,Or% 2 +maddest 'm&dIst Os% 2 +made meId Jc*,Jd* 12A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +madhouse 'm&dhaUs K6% 2 +madhouses 'm&dhaUzIz Kj$ 3 +madly 'm&dlI Pu% 2 +madman 'm&dm@n Ki% 2 +madmen 'm&dm@n Kj% 2 +madness 'm&dn@s L@% 2 +madrigal 'm&drIgl K6% 3 +madrigals 'm&drIglz Kj% 3 +madwoman 'm&dwUm@n Ki% 3 +madwomen 'm&dwImIn Kj% 3 +maelstrom 'meIlstr@m K6% 2 +maelstroms 'meIlstr@mz Kj$ 2 +maenad 'min&d K6$ 2 +maenads 'min&dz Kj$ 2 +maestri 'maIstrI Kj$ 2 +maestro 'maIstr@U K6% 2 +maestros 'maIstr@Uz Kj% 2 +maffick 'm&fIk I0$ 2 +mafficked 'm&fIkt Ic$,Id$ 2 +mafficking 'm&fIkIN Ib$ 3 +mafficks 'm&fIks Ia$ 2 +mag m&g K6% 1 +magazine ,m&g@'zin K6% 3 +magazines ,m&g@'zinz Kj% 3 +magenta m@'dZent@ L@%,OA% 3 +maggot 'm&g@t K6% 2 +maggots 'm&g@ts Kj% 2 +maggoty 'm&g@tI OA% 3 +magic 'm&dZIk L@%,OA% 2 +magical 'm&dZIkl OA% 3 +magically 'm&dZIklI Pu% 3 +magician m@'dZISn K6% 3 +magicians m@'dZISnz Kj% 3 +magisterial ,m&dZI'stI@rI@l OA% 5 +magisterially ,m&dZI'stI@rI@lI Pu% 6 +magistracies 'm&dZIstr@sIz Kj$ 4 +magistracy 'm&dZIstr@sI K8$ 4 +magistrate 'm&dZIstreIt K6% 3 +magistrates 'm&dZIstreIts Kj% 3 +magnanimities ,m&gn@'nImItIz Mj$ 5 +magnanimity ,m&gn@'nImItI M8% 5 +magnanimous m&g'n&nIm@s OA% 4 +magnanimously m&g'n&nIm@slI Pu% 5 +magnate 'm&gneIt K6% 2 +magnates 'm&gneIts Kj% 2 +magnesia m&g'niS@ L@$ 3 +magnesium m&g'nizI@m L@% 4 +magnet 'm&gnIt K6% 2 +magnetic m&g'netIk OA% 3 +magnetically m&g'netIklI Pu% 4 +magnetism 'm&gnItIz@m L@% 4 +magnetization ,m&gnItaI'zeISn L@% 5 +magnetize 'm&gnItaIz H2% 36A +magnetized 'm&gnItaIzd Hc%,Hd% 36A +magnetizes 'm&gnItaIzIz Ha% 46A +magnetizing 'm&gnItaIzIN Hb% 46A +magneto m&g'nit@U K6$ 3 +magnetos m&g'nit@Uz Kj$ 3 +magnets 'm&gnIts Kj% 2 +magnification ,m&gnIfI'keISn M6% 5 +magnifications ,m&gnIfI'keISnz Mj% 5 +magnificence m&g'nIfIsns L@% 4 +magnificent m&g'nIfIsnt OA% 4 +magnificently m&g'nIfIsntlI Pu% 5 +magnified 'm&gnIfaId Hc%,Hd% 36A +magnifier 'm&gnIfaI@R K6% 4 +magnifiers 'm&gnIfaI@z Kj% 4 +magnifies 'm&gnIfaIz Ha% 36A +magnify 'm&gnIfaI H3% 36A +magnifying 'm&gnIfaIIN Hb% 46A +magniloquence m&g'nIl@kw@ns L@$ 4 +magniloquent m&g'nIl@kw@nt OA$ 4 +magniloquently m&g'nIl@kw@ntlI Pu$ 5 +magnitude 'm&gnItjud L@% 3 +magnolia m&g'n@UlI@ K6% 4 +magnolias m&g'n@UlI@z Kj% 4 +magnum 'm&gn@m K6% 2 +magnum opus ,m&gn@m '@Up@s Ki$ 4 +magnums 'm&gn@mz Kj$ 2 +magpie 'm&gpaI K6% 2 +magpies 'm&gpaIz Kj% 2 +mags m&gz Kj% 1 +mahjong ,mA'dZ0N L@% 2 +mahoganies m@'h0g@nIz Mj$ 4 +mahogany m@'h0g@nI M8% 4 +mahout m@'haUt K6$ 2 +mahouts m@'haUts Kj$ 2 +maid meId K6% 1 +maiden 'meIdn K6%,OA% 2 +maidenhair 'meIdnhe@R K6% 3 +maidenhairs 'meIdnhe@z Kj$ 3 +maidenhead 'meIdnhed L@% 3 +maidenhood 'meIdnhUd K6% 3 +maidenhoods 'meIdnhUdz Kj$ 3 +maidenlike 'meIdnlaIk OA$ 3 +maidenly 'meIdnlI OA% 3 +maidens 'meIdnz Kj% 2 +maids meIdz Kj% 1 +maidservant 'meIds3vnt K6% 3 +maidservants 'meIds3vnts Kj% 3 +mail meIl H0%,M6% 16A +mail-train 'meIl-treIn K6% 2 +mail-trains 'meIl-treInz Kj% 2 +mailbag 'meIlb&g K6% 2 +mailbags 'meIlb&gz Kj% 2 +mailboat 'meIlb@Ut K6% 2 +mailboats 'meIlb@Uts Kj% 2 +mailbox 'meIlb0ks K7% 2 +mailboxes 'meIlb0ksIz Kj% 3 +mailed meIld Hc%,Hd%,OA% 16A +mailing 'meIlIN Hb% 26A +mailing-card 'meIlIN-kAd K6% 3 +mailing-cards 'meIlIN-kAdz Kj% 3 +mailing-list 'meIlIN-lIst K6% 3 +mailing-lists 'meIlIN-lIsts Kj% 3 +mailman 'meIlm&n Ki% 2 +mailmen 'meIlmen Kj% 2 +mails meIlz Ha%,Mj% 16A +maim meIm H0% 16A +maimed meImd Hc%,Hd% 16A +maiming 'meImIN Hb% 26A +maims meImz Ha% 16A +main meIn K6%,OA% 1 +mainland 'meInl&nd K6% 2 +mainlands 'meInl&ndz Kj$ 2 +mainly 'meInlI Pu% 2 +mainmast 'meInmAst K6% 2 +mainmasts 'meInmAsts Kj$ 2 +mains meInz Kj% 1 +mainspring 'meInsprIN K6% 2 +mainsprings 'meInsprINz Kj$ 2 +mainstay 'meInsteI K6% 2 +mainstays 'meInsteIz Kj$ 2 +mainstream 'meInstrim Ki% 2 +maintain meIn'teIn H0% 26A,9,25 +maintainable meIn'teIn@bl OA% 4 +maintained meIn'teInd Hc%,Hd% 26A,9,25 +maintaining meIn'teInIN Hb% 36A,9,25 +maintains meIn'teInz Ha% 26A,9,25 +maintenance 'meInt@n@ns L@% 3 +maisonnette ,meIz@'net K6% 3 +maisonnettes ,meIz@'nets Kj% 3 +maize meIz L@% 1 +majestic m@'dZestIk OA% 3 +majestically m@'dZestIklI Pu% 4 +majesties 'm&dZ@stIz Mj% 3 +majesty 'm&dZ@stI M8% 3 +majolica m@'dZ0lIk@ L@$ 4 +major 'meIdZ@R I0%,K6%,OA% 23A +major-domo ,meIdZ@-'d@Um@U K6$ 4 +major-domos ,meIdZ@-'d@Um@Uz Kj$ 4 +major-general ,meIdZ@-'dZenr@l K6% 4 +major-generals ,meIdZ@-'dZenr@lz Kj% 4 +majored 'meIdZ@d Ic%,Id% 23A +majoring 'meIdZ@rIN Ib% 33A +majorities m@'dZ0rItIz Kj% 4 +majority m@'dZ0rItI K8% 4 +majors 'meIdZ@z Ia%,Kj% 23A +make meIk J5*,M6% 12A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +make-believe 'meIk-bIliv M6% 3 +make-believes 'meIk-bIlivz Mj$ 3 +make-up 'meIk-Vp M6% 2 +make-ups 'meIk-Vps Mj$ 2 +maker 'meIk@R K6% 2 +makers 'meIk@z Kj% 2 +makes meIks Ja%,Mj% 12A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +makeshift 'meIkSIft K6% 2 +makeshifts 'meIkSIfts Kj$ 2 +makeweight 'meIkweIt K6% 2 +makeweights 'meIkweIts Kj$ 2 +making 'meIkIN Jb*,K6% 22A,2C,2D,3A,6A,12A,12B,13A,13B,14,15B,16A,18B,22,23,24A,25 +makings 'meIkINz Kj% 2 +malacca m@'l&k@ L@$ 3 +malachite 'm&l@kaIt L@$ 3 +maladies 'm&l@dIz Kj% 3 +maladjusted ,m&l@'dZVstId OA% 4 +maladjustment ,m&l@'dZVsm@nt L@% 4 +maladroit 'm&l@droIt OA% 3 +maladroitly 'm&l@droItlI Pu$ 4 +maladroitness 'm&l@droItn@s L@$ 4 +malady 'm&l@dI K8% 3 +malaise m&'leIz M6% 2 +malaises m&'leIzIz Mj$ 3 +malapropism 'm&l@pr0pIz@m K6% 5 +malapropisms 'm&l@pr0pIz@mz Kj% 5 +malapropos ,m&l,&pr@'p@U OA$,Pu$ 4 +malaria m@'le@rI@ L@% 4 +malarial m@'le@rI@l OA% 4 +malcontent 'm&lk@ntent K6%,OA$ 3 +malcontents 'm&lk@ntents Kj% 3 +male meIl K6%,OA% 1 +malediction ,m&lI'dIkSn K6$ 4 +maledictions ,m&lI'dIkSnz Kj$ 4 +malefactor 'm&lIf&kt@R K6% 4 +malefactors 'm&lIf&kt@z Kj% 4 +maleficent m@'lefIsnt OA$ 4 +males meIlz Kj% 1 +malevolence m@'lev@lns L@% 4 +malevolent m@'lev@lnt OA% 4 +malevolently m@'lev@lntlI Pu% 5 +malfeasance ,m&l'fizns M6$ 3 +malfeasances ,m&l'fiznsIz Mj$ 4 +malformation ,m&lfO'meISn M6% 4 +malformations ,m&lfO'meISnz Mj% 4 +malformed ,m&l'fOmd OA% 2 +malfunction ,m&l'fVNkSn I0%,M6% 32A +malfunctioned ,m&l'fVNkSnd Ic%,Id% 32A +malfunctioning ,m&l'fVNkSnIN Ib% 42A +malfunctions ,m&l'fVNkSnz Ia%,Mj% 32A +malice 'm&lIs L@% 2 +malicious m@'lIS@s OA% 3 +maliciously m@'lIS@slI Pu% 4 +malign m@'laIn H0%,OA% 26A +malignancy m@'lIgn@nsI L@% 4 +malignant m@'lIgn@nt OA% 3 +malignantly m@'lIgn@ntlI Pu% 4 +maligned m@'laInd Hc%,Hd% 26A +maligning m@'laInIN Hb% 36A +malignities m@'lIgnItIz Mj$ 4 +malignity m@'lIgnItI M8$ 4 +maligns m@'laInz Ha% 26A +malinger m@'lINg@R I0% 32A +malingered m@'lINg@d Ic%,Id% 32A +malingerer m@'lINg@r@R K6% 4 +malingerers m@'lINg@r@z Kj% 4 +malingering m@'lINg@rIN Ib% 42A +malingers m@'lINg@z Ia% 32A +mallard 'm&lAd K6% 2 +mallards 'm&lAdz Kj% 2 +malleability ,m&lI@'bIlItI L@% 6 +malleable 'm&lI@bl OA% 4 +mallet 'm&lIt K6% 2 +mallets 'm&lIts Kj% 2 +mallow 'm&l@U K6$ 2 +mallows 'm&l@Uz Kj$ 2 +malmsey 'mAmzI L@$ 2 +malnutrition ,m&lnju'trISn L@% 4 +malodorous ,m&l'@Ud@r@s OA% 4 +malpractice ,m&l'pr&ktIs M6% 3 +malpractices ,m&l'pr&ktIsIz Mj% 4 +malt mOlt J0%,L@% 12A,6A +malted 'mOltId Jc%,Jd% 22A,6A +malting 'mOltIN Jb% 22A,6A +maltreat ,m&l'trit H0% 26A +maltreated ,m&l'tritId Hc%,Hd% 36A +maltreating ,m&l'tritIN Hb% 36A +maltreatment ,m&l'tritm@nt L@% 3 +maltreats ,m&l'trits Ha% 26A +malts mOlts Ja$ 12A,6A +maltster 'mOltst@R K6$ 2 +maltsters 'mOltst@z Kj$ 2 +malversation ,m&lv@'seISn L@$ 4 +mama m@'mA K6% 2 +mamas m@'mAz Kj$ 2 +mamba 'm&mb@ K6% 2 +mambas 'm&mb@z Kj% 2 +mamma m@'mA K6$ 2 +mammal 'm&ml K6% 2 +mammals 'm&mlz Kj% 2 +mammas m@'mAz Kj$ 2 +mammies 'm&mIz Kj% 2 +mammon 'm&m@n L@% 2 +mammoth 'm&m@T K6% 2 +mammoths 'm&m@Ts Kj% 2 +mammy 'm&mI K8% 2 +man m&n H4%,Ki* 16A +man-at-arms ,m&n-@t-'Amz Ki% 3 +man-eater 'm&n-it@R K6% 3 +man-eaters 'm&n-it@z Kj% 3 +man-hour 'm&n-aU@R K6% 3 +man-hours 'm&n-aU@z Kj% 3 +man-of-war ,m&n-@v-'wOR Ki% 3 +man-sized 'm&n-saIzd OA% 2 +manacle 'm&n@kl H2%,K6% 36A +manacled 'm&n@kld Hc%,Hd% 36A +manacles 'm&n@klz Ha$,Kj% 36A +manacling 'm&n@klIN Hb$ 36A +manage 'm&nIdZ J2% 22A,2C,3A,4A,6A +manageability ,m&nIdZ@'bIlItI L@% 6 +manageable 'm&nIdZ@bl OA% 4 +manageably 'm&nIdZ@blI Pu% 4 +managed 'm&nIdZd Jc%,Jd% 22A,2C,3A,4A,6A +management 'm&nIdZm@nt M6% 3 +managements 'm&nIdZm@nts Mj% 3 +manager 'm&nIdZ@R K6% 3 +manageress ,m&nIdZ@'res K7% 4 +manageresses ,m&nIdZ@'resIz Kj% 5 +managerial ,m&nI'dZI@rI@l OA% 5 +managers 'm&nIdZ@z Kj% 3 +manages 'm&nIdZIz Ja% 32A,2C,3A,4A,6A +managing 'm&nIdZIN Jb% 32A,2C,3A,4A,6A +manatee ,m&n@'ti K6$ 3 +manatees ,m&n@'tiz Kj$ 3 +mandarin 'm&nd@rIn K6% 3 +mandarins 'm&nd@rInz Kj% 3 +mandataries 'm&nd@t@rIz Kj$ 4 +mandatary 'm&nd@t@rI K8$ 4 +mandate 'm&ndeIt H2%,K6% 26A +mandated 'm&ndeItId Hc%,Hd% 36A +mandates 'm&ndeIts Ha$,Kj% 26A +mandating 'm&ndeItIN Hb$ 36A +mandatories 'm&nd@trIz Kj$ 3 +mandatory 'm&nd@trI K8$,OA% 3 +mandible 'm&ndIbl K6% 3 +mandibles 'm&ndIblz Kj% 3 +mandolin 'm&nd@lIn K6% 3 +mandolins 'm&nd@lInz Kj% 3 +mandragora m&n'dr&g@r@ L@$ 4 +mandrake 'm&ndreIk K6$ 2 +mandrakes 'm&ndreIks Kj$ 2 +mandrill 'm&ndrIl K6$ 2 +mandrills 'm&ndrIlz Kj$ 2 +mane meIn K6% 1 +manes 'mAneIz Kj% 2 +manes meInz Kj% 1 +manful 'm&nf@l OA% 2 +manfully 'm&nf@lI Pu% 3 +manganese 'm&Ng@niz L@% 3 +mange meIndZ L@$ 1 +mangel-wurzel 'm&Ngl-w3zl K6% 4 +mangel-wurzels 'm&Ngl-w3zlz Kj% 4 +manger 'meIndZ@R K6% 2 +mangers 'meIndZ@z Kj% 2 +mangier 'meIndZI@R Or% 3 +mangiest 'meIndZIIst Os% 3 +mangily 'meIndZIlI Pu$ 3 +mangle 'm&Ngl H2%,K6% 26A +mangled 'm&Ngld Hc%,Hd% 26A +mangles 'm&Nglz Ha%,Kj% 26A +mangling 'm&NglIN Hb% 26A +mango 'm&Ng@U K6% 2 +mangoes 'm&Ng@Uz Kj% 2 +mangos 'm&Ng@Uz Kj% 2 +mangosteen ,m&Ng@'stin K6$ 3 +mangosteens ,m&Ng@'stinz Kj$ 3 +mangrove 'm&Ngr@Uv K6% 2 +mangroves 'm&Ngr@Uvz Kj% 2 +mangy 'meIndZI OD% 2 +manhandle m&n'h&ndl H2% 3 +manhandled m&n'h&ndld Hc%,Hd% 3 +manhandles m&n'h&ndlz Ha$ 3 +manhandling m&n'h&ndlIN Hb% 3 +manhattan m&n'h&tn K6$ 3 +manhattans m&n'h&tnz Kj$ 3 +manhole 'm&nh@Ul K6% 2 +manholes 'm&nh@Ulz Kj% 2 +manhood 'm&nhUd L@% 2 +mania 'meInI@ M6% 3 +maniac 'meInI&k K6% 3 +maniacal m@'naI@kl OA% 4 +maniacally m@'naI@klI Pu% 4 +maniacs 'meInI&ks Kj% 3 +manias 'meInI@z Mj% 3 +manic-depressive ,m&nIk-dI'presIv K6%,OA% 5 +manic-depressives ,m&nIk-dI'presIvz Kj% 5 +manicure 'm&nIkjU@R H2%,M6% 36A +manicured 'm&nIkjU@d Hc%,Hd% 36A +manicures 'm&nIkjU@z Ha%,Mj% 36A +manicuring 'm&nIkjU@rIN Hb% 46A +manicurist 'm&nIkjurIst K6% 4 +manicurists 'm&nIkjurIsts Kj% 4 +manifest 'm&nIfest H0%,K6$,OA% 36A +manifestation ,m&nIfe'steISn M6% 5 +manifestations ,m&nIfe'steISnz Mj% 5 +manifested 'm&nIfestId Hc%,Hd% 46A +manifesting 'm&nIfestIN Hb% 46A +manifestly 'm&nIfestlI Pu% 4 +manifesto ,m&nI'fest@U K6% 4 +manifestoes ,m&nI'fest@Uz Kj% 4 +manifestos ,m&nI'fest@Uz Kj% 4 +manifests 'm&nIfests Ha%,Kj$ 36A +manifold 'm&nIf@Uld H0$,K6$,OA% 36A +manifolded 'm&nIf@UldId Hc$,Hd$ 46A +manifolding 'm&nIf@UldIN Hb$ 46A +manifolds 'm&nIf@Uldz Ha$,Kj$ 36A +manikin 'm&nIkIn K6$ 3 +manikins 'm&nIkInz Kj$ 3 +manipulate m@'nIpjUleIt H2% 46A +manipulated m@'nIpjUleItId Hc%,Hd% 56A +manipulates m@'nIpjUleIts Ha% 46A +manipulating m@'nIpjUleItIN Hb% 56A +manipulation m@,nIpjU'leISn M6% 5 +manipulations m@,nIpjU'leISnz Mj% 5 +manipulative m@'nIpjUl@tIv OA% 5 +mankind 'm&nkaInd L@% 2 +mankind ,m&n'kaInd L@% 2 +manlier 'm&nlI@R Or% 3 +manliest 'm&nlIIst Os% 3 +manlike 'm&nlaIk OA$ 2 +manliness 'm&nlIn@s L@% 3 +manly 'm&nlI OD% 2 +manna 'm&n@ L@% 2 +manned m&nd Hc%,Hd% 16A +mannequin 'm&nIkIn K6% 3 +mannequins 'm&nIkInz Kj% 3 +manner 'm&n@R K6% 2 +mannered 'm&n@d OA% 2 +mannerism 'm&n@rIz@m K6% 4 +mannerisms 'm&n@rIz@mz Kj% 4 +mannerly 'm&n@lI OA% 3 +manners 'm&n@z Kj% 2 +manning 'm&nIN Hb% 26A +mannish 'm&nIS OA% 2 +manoeuvrability m@,nuvr@'bIlItI L@% 6 +manoeuvrable m@'nuvr@bl OA% 4 +manoeuvre m@'nuv@R J2%,K6% 32A,2C,6A,15A +manoeuvred m@'nuv@d Jc%,Jd% 32A,2C,6A,15A +manoeuvrer m@'nuv@r@R K6$ 3 +manoeuvrers m@'nuv@r@z Kj$ 3 +manoeuvres m@'nuv@z Ja%,Kj% 32A,2C,6A,15A +manoeuvring m@'nuv@rIN Jb% 32A,2C,6A,15A +manor 'm&n@R K6% 2 +manor-house 'm&n@-haUs K6% 3 +manor-houses 'm&n@-haUzIz Kj% 4 +manorial m@'nOrI@l OA% 4 +manors 'm&n@z Kj$ 2 +manpower 'm&npaU@R L@% 3 +mans m&nz Ha% 16A +mansard 'm&nsAd K6$ 2 +mansards 'm&nsAdz Kj$ 2 +manse m&ns K6% 1 +manservant 'm&ns3v@nt K6% 3 +manservants 'm&ns3v@nts Kj% 3 +manses 'm&nsIz Kj$ 2 +mansion 'm&nSn K6% 2 +mansions 'm&nSnz Kj% 2 +manslaughter 'm&nslOt@R L@% 3 +mantel 'm&ntl K6% 2 +mantelpiece 'm&ntlpis K6% 3 +mantelpieces 'm&ntlpisIz Kj% 4 +mantels 'm&ntlz Kj% 2 +mantilla m&n'tIl@ K6$ 3 +mantillas m&n'tIl@z Kj$ 3 +mantis 'm&ntIs K7% 2 +mantises 'm&ntIsIz Kj% 3 +mantle 'm&ntl J2%,K6% 22C,6A +mantled 'm&ntld Jc%,Jd% 22C,6A +mantles 'm&ntlz Ja%,Kj% 22C,6A +mantling 'm&ntlIN Jb% 22C,6A +mantrap 'm&ntr&p K6% 2 +mantraps 'm&ntr&ps Kj% 2 +manual 'm&njU@l K6%,OA% 3 +manually 'm&njU@lI Pu% 4 +manuals 'm&njU@lz Kj% 3 +manufacture ,m&njU'f&ktS@R H2%,L@% 46A +manufactured ,m&njU'f&ktS@d Hc%,Hd% 46A +manufacturer ,m&njU'f&ktS@r@R K6% 5 +manufacturers ,m&njU'f&ktS@r@z Kj% 5 +manufactures ,m&njU'f&ktS@z Ha% 46A +manufacturing ,m&njU'f&ktS@rIN Hb% 56A +manumission ,m&njU'mISn M6$ 4 +manumissions ,m&njU'mISnz Mj$ 4 +manumit ,m&njU'mIt H4$ 3 +manumits ,m&njU'mIts Ha$ 3 +manumitted ,m&njU'mItId Hc$,Hd$ 4 +manumitting ,m&njU'mItIN Hb$ 4 +manure m@'njU@R H2$,L@% 26A +manured m@'njU@d Hc$,Hd% 26A +manures m@'njU@z Ha$ 26A +manuring m@'njU@rIN Hb$ 36A +manuscript 'm&njUskrIpt K6% 3 +manuscripts 'm&njUskrIpts Kj% 3 +many 'menI Kj%,OA* 2 +many-sided ,menI-'saIdId OA% 4 +map m&p H4%,K6% 16A,15B +map-reader 'm&p-rid@R K6% 3 +map-readers 'm&p-rid@z Kj% 3 +maple 'meIpl M6% 2 +maple-leaf 'meIpl-lif Ki% 3 +maple-leaves 'meIpl-livz Kj% 3 +maples 'meIplz Mj% 2 +mapped m&pt Hc%,Hd% 16A,15B +mapping 'm&pIN Hb% 26A,15B +maps m&ps Ha%,Kj% 16A,15B +maquis 'm&ki Ki$ 2 +mar mAR H4% 16A +marabou 'm&r@bu K6$ 3 +marabous 'm&r@buz Kj$ 3 +maraschino ,m&r@'skin@U K6% 4 +maraschinos ,m&r@'skin@Uz Kj$ 4 +marathon 'm&r@T@n K6% 3 +marathons 'm&r@T@nz Kj% 3 +maraud m@'rOd I0$ 22A +marauded m@'rOdId Ic$,Id$ 32A +marauder m@'rOd@R K6% 3 +marauders m@'rOd@z Kj% 3 +marauding m@'rOdIN Ib% 32A +marauds m@'rOdz Ia$ 22A +marble 'mAbl M6% 2 +marbled 'mAbld OA% 2 +marbles 'mAblz Mj% 2 +marbling 'mAblIN L@% 2 +march mAtS J1%,M7% 12A,2B,2C,3A,15A,15B +marched mAtSt Jc%,Jd% 12A,2B,2C,3A,15A,15B +marcher 'mAtS@R K6% 2 +marchers 'mAtS@z Kj% 2 +marches 'mAtSIz Ja%,Mj% 22A,2B,2C,3A,15A,15B +marching 'mAtSIN Jb% 22A,2B,2C,3A,15A,15B +marchioness ,mAS@'nes K7% 3 +marchionesses ,mAS@'nesIz Kj$ 4 +mare me@R K6% 1 +mares me@z Kj% 1 +margarine ,mAdZ@'rin L@% 3 +marge mAdZ L@% 1 +margin 'mAdZIn K6% 2 +marginal 'mAdZInl OA% 3 +marginally 'mAdZIn@lI Pu% 4 +margins 'mAdZInz Kj% 2 +marguerite ,mAg@'rit K6$ 3 +marguerites ,mAg@'rits Kj$ 3 +marigold 'm&rIg@Uld K6% 3 +marigolds 'm&rIg@Uldz Kj% 3 +marihuana ,m&rI'wAn@ L@% 4 +marijuana ,m&rI'wAn@ L@% 4 +marimba m@'rImb@ K6$ 3 +marimbas m@'rImb@z Kj$ 3 +marina m@'rin@ K6% 3 +marinade ,m&rI'neId H2%,L@% 3 +marinaded ,m&rI'neIdId Hc%,Hd% 4 +marinades ,m&rI'neIdz Ha% 3 +marinading ,m&rI'neIdIN Hb% 4 +marinas m@'rin@z Kj% 3 +marinate 'm&rIneIt H2% 3 +marinated 'm&rIneItId Hc%,Hd% 4 +marinates 'm&rIneIts Ha% 3 +marinating 'm&rIneItIN Hb% 4 +marine m@'rin K6%,OA% 2 +mariner 'm&rIn@R K6% 3 +mariners 'm&rIn@z Kj% 3 +marines m@'rinz Kj% 2 +marionette ,m&rI@'net K6% 4 +marionettes ,m&rI@'nets Kj% 4 +marital 'm&rItl OA% 3 +maritime 'm&rItaIm OA% 3 +marjoram 'mAdZ@r@m L@% 3 +mark mAk H0%,M6% 12A,6A,8,10,15A,15B,22 +mark-up 'mAk-Vp K6% 2 +mark-ups 'mAk-Vps Kj$ 2 +marked mAkt Hc%,Hd%,OA% 12A,6A,8,10,15A,15B,22 +markedly 'mAkIdlI Pu% 3 +marker 'mAk@R K6% 2 +markers 'mAk@z Kj% 2 +market 'mAkIt J0%,K6% 22A,6A +market-cross ,mAkIt-'kr0s K7% 3 +market-crosses ,mAkIt-'kr0sIz Kj% 4 +market-day 'mAkIt-deI K6% 3 +market-days 'mAkIt-deIz Kj% 3 +market-garden ,mAkIt-'gAdn K6% 4 +market-gardening ,mAkIt-'gAdnIN L@% 4 +market-gardens ,mAkIt-'gAdnz Kj% 4 +market-square ,mAkIt-'skwe@R K6% 3 +market-squares ,mAkIt-'skwe@z Kj% 3 +market-town 'mAkIt-taUn K6% 3 +market-towns 'mAkIt-taUnz Kj% 3 +marketable 'mAkIt@bl OA% 4 +marketed 'mAkItId Jc%,Jd% 32A,6A +marketing 'mAkItIN Jb%,M6% 32A,6A +marketings 'mAkItINz Kj$ 3 +marketplace 'mAkItpleIs K6% 3 +marketplaces 'mAkItpleIsIz Kj% 4 +markets 'mAkIts Ja%,Kj% 22A,6A +marking 'mAkIN Hb%,K6% 22A,6A,8,10,15A,15B,22 +marking-ink 'mAkIN-INk M6% 3 +marking-inks 'mAkIN-INks M6% 3 +markings 'mAkINz Kj% 2 +marks mAks Ha%,Mj% 12A,6A,8,10,15A,15B,22 +marksman 'mAksm@n Ki% 2 +marksmanship 'mAksm@nSIp L@% 3 +marksmen 'mAksm@n Kj% 2 +marl mAl L@$ 1 +marlinespike 'mAlInspaIk K6$ 3 +marlinespikes 'mAlInspaIks Kj$ 3 +marmalade 'mAm@leId L@% 3 +marmoreal mA'mOrI@l OA$ 4 +marmoset 'mAm@zet K6$ 3 +marmosets 'mAm@zets Kj$ 3 +marmot 'mAm@t K6$ 2 +marmots 'mAm@ts Kj$ 2 +marocain 'm&r@keIn L@$ 3 +maroon m@'run H0%,K6%,OA% 26A +marooned m@'rund Hc%,Hd% 26A +marooning m@'runIN Hb$ 36A +maroons m@'runz Ha$,Kj$ 26A +marque mAk K6$ 1 +marquee mA'ki K6% 2 +marquees mA'kiz Kj% 2 +marques mAks Kj$ 1 +marquess 'mAkwIs K7% 2 +marquesses 'mAkwIsIz Kj% 3 +marquetry 'mAkItrI L@% 3 +marquis 'mAkwIs K7% 2 +marquises 'mAkwIsIz Kj% 3 +marred mAd Hc%,Hd% 16A +marriage 'm&rIdZ M6% 2 +marriageability ,m&rIdZ@'bIlItI L@$ 6 +marriageable 'm&rIdZ@bl OA% 4 +marriages 'm&rIdZIz Mj% 3 +married 'm&rId Jc%,Jd%,OA% 22A,2D,4A,6A,15B +marries 'm&rIz Ja% 22A,2D,4A,6A,15B +marring 'mArIN Hb% 26A +marrow 'm&r@U M6% 2 +marrowbone 'm&r@Ub@Un K6% 3 +marrowbones 'm&r@Ub@Unz Kj$ 3 +marrows 'm&r@Uz Mj% 2 +marry 'm&rI J3% 22A,2D,4A,6A,15B +marrying 'm&rIIN Jb% 32A,2D,4A,6A,15B +mars mAz Ha% 16A +marsh mAS M7% 1 +marshal 'mASl H4%,K6% 26A,15A,15B +marshalled 'mASld Hc%,Hd% 26A,15A,15B +marshalling 'mAS@lIN Hb% 36A,15A,15B +marshalling-yard 'mAS@lIN-jAd K6% 4 +marshalling-yards 'mAS@lIN-jAdz Kj% 4 +marshals 'mASlz Ha%,Kj% 26A,15A,15B +marshes 'mASIz Mj% 2 +marshier 'mASI@R Or% 3 +marshiest 'mASIIst Os% 3 +marshmallow mAS'm&l@U M6% 3 +marshmallows mAS'm&l@Uz Mj% 3 +marshy 'mASI OD% 2 +marsupial mA'supI@l K6%,OA% 4 +marsupials mA'supI@lz Kj% 4 +mart mAt K6$ 1 +marten 'mAtIn M6$ 2 +martens 'mAtInz Mj$ 2 +martial 'mASl OA% 2 +martially 'mAS@lI Pu% 3 +martin 'mAtIn K6$ 2 +martinet ,mAtI'net K6% 3 +martinets ,mAtI'nets Kj% 3 +martini mA'tinI K6% 3 +martinis mA'tinIz Kj% 3 +martins 'mAtInz Kj$ 2 +marts mAts Kj$ 1 +martyr 'mAt@R H0%,K6% 26A +martyrdom 'mAt@d@m K6% 3 +martyrdoms 'mAt@d@mz Kj$ 3 +martyred 'mAt@d Hc%,Hd% 26A +martyring 'mAt@rIN Hb$ 36A +martyrs 'mAt@z Ha$,Kj% 26A +marvel 'mAvl I4%,K6% 23A,3B +marvelled 'mAvld Ic%,Id% 23A,3B +marvelling 'mAv@lIN Ib% 33A,3B +marvellous 'mAv@l@s OA% 3 +marvellously 'mAv@l@slI Pu% 4 +marvelous 'mAv@l@s OA$ 3 +marvelously 'mAv@l@slI Pu$ 4 +marvels 'mAvlz Ia%,Kj% 23A,3B +marzipan 'mAzIp&n M6% 3 +marzipans 'mAzIp&nz Mj$ 3 +masc m&sk Y~% 1 +mascara m&'skAr@ L@% 3 +mascot 'm&sk@t K6% 2 +mascots 'm&sk@ts Kj% 2 +masculine 'm&skjUlIn OA% 3 +masculinity ,m&skjU'lInItI L@% 5 +maser 'meIz@R K6$ 2 +masers 'meIz@z Kj$ 2 +mash m&S H1%,M7% 16A +mashed m&St Hc%,Hd% 16A +masher 'm&S@R K6% 2 +mashers 'm&S@z Kj$ 2 +mashes 'm&SIz Ha%,Mj% 26A +mashing 'm&SIN Hb% 26A +mask mAsk H0%,K6% 16A +masked mAskt Hc%,Hd% 16A +masking 'mAskIN Hb% 26A +masks mAsks Ha%,Kj% 16A +masochism 'm&s@kIz@m L@% 4 +masochist 'm&s@kIst K6% 3 +masochistic ,m&s@'kIstIk OA% 4 +masochistically ,m&s@'kIstIklI Pu% 5 +masochists 'm&s@kIsts Kj% 3 +mason 'meIsn K6% 2 +masonic m@'s0nIk OA% 3 +masonry 'meIsnrI L@% 3 +masons 'meIsnz Kj% 2 +masque mAsk K6% 1 +masquerade ,mAsk@'reId I2%,K6% 32A,2C +masqueraded ,mAsk@'reIdId Ic%,Id% 42A,2C +masquerades ,mAsk@'reIdz Ia%,Kj% 32A,2C +masquerading ,mAsk@'reIdIN Ib% 42A,2C +masques mAsks Kj% 1 +mass m&s J1%,M7% 12A,6A +mass-produce ,m&s-pr@'djus H2% 3 +mass-produced ,m&s-pr@'djust Hc%,Hd% 3 +mass-produces ,m&s-pr@'djusIz Ha% 4 +mass-producing ,m&s-pr@'djusIN Hb% 4 +massacre 'm&s@k@R H2%,K6% 36A +massacred 'm&s@k@d Hc%,Hd% 36A +massacres 'm&s@k@z Ha%,Kj% 36A +massacring 'm&s@k@rIN Hb% 36A +massage 'm&sAZ H2%,M6% 26A +massaged 'm&sAZd Hc%,Hd% 26A +massages 'm&sAZIz Ha%,Mj% 36A +massaging 'm&sAZIN Hb% 36A +massed m&st Jc%,Jd% 12A,6A +masses 'm&sIz Ja%,Mj% 22A,6A +masseur m&'s3R K6% 2 +masseurs m&'s3z Kj% 2 +masseuse m&'s3z K6% 2 +masseuses m&'s3z Kj$ 2 +massier 'm&sI@R Or$ 3 +massiest 'm&sIIst Os$ 3 +massif m&'sif K6$ 2 +massifs m&'sifs Kj$ 2 +massing 'm&sIN Jb% 22A,6A +massive 'm&sIv OA% 2 +massively 'm&sIvlI Pu% 3 +massiveness 'm&sIvn@s L@% 3 +massy 'm&sI OD$ 2 +mast mAst M6% 1 +master 'mAst@R H0%,K6% 26A +master-at-arms ,mAst@r-@t-'Amz Ki$ 4 +master-key ,mAst@-'ki K6% 3 +master-keys ,mAst@-'kiz Kj% 3 +mastered 'mAst@d Hc%,Hd% 26A +masterful 'mAst@f@l OA% 3 +masterfully 'mAst@f@lI Pu% 4 +mastering 'mAst@rIN Hb% 36A +masterless 'mAst@l@s OA% 3 +masterly 'mAst@lI OA% 3 +mastermind 'mAst@maInd H0%,K6% 3 +masterminded 'mAst@maIndId Hc%,Hd% 4 +masterminding 'mAst@maIndIN Hb% 4 +masterminds 'mAst@maIndz Ha%,Kj% 3 +masterpiece 'mAst@pis K6% 3 +masterpieces 'mAst@pisIz Kj% 4 +masters 'mAst@z Ha%,Kj% 26A +masters-at-arms ,m&st@z-@t-'Amz Kj$ 4 +mastership 'mAst@SIp M6% 3 +masterships 'mAst@SIps Mj$ 3 +masterstroke 'mAst@str@Uk K6% 3 +masterstrokes 'mAst@str@Uks Kj$ 3 +mastery 'mAst@rI L@% 3 +masthead 'mAsthed K6% 2 +mastheads 'mAsthedz Kj$ 2 +masticate 'm&stIkeIt H2$ 36A +masticated 'm&stIkeItId Hc$,Hd$ 46A +masticates 'm&stIkeIts Ha$ 36A +masticating 'm&stIkeItIN Hb$ 46A +mastication ,m&stI'keISn L@$ 4 +mastiff 'm&stIf K6% 2 +mastiffs 'm&stIfs Kj% 2 +mastodon 'm&st@d0n K6$ 3 +mastodons 'm&st@d0nz Kj$ 3 +mastoid 'm&stoId K6% 2 +mastoiditis ,m&stoI'daItIs L@% 4 +mastoids 'm&stoIdz Kj% 2 +masts mAsts Mj% 1 +masturbate 'm&st@beIt J2% 32A,6A +masturbated 'm&st@beItId Jc%,Jd% 42A,6A +masturbates 'm&st@beIts Ja% 32A,6A +masturbating 'm&st@beItIN Jb% 42A,6A +masturbation ,m&st@'beISn L@% 4 +mat m&t J4%,K6%,OA% 12A,2C,6A,15A +mat_e 'mAteI L@$ 2 +matador 'm&t@dOR K6% 3 +matadors 'm&t@dOz Kj% 3 +match m&tS J1%,K7% 12A,6A,12B,13B,14 +match-point m&tS-'poInt K6% 2 +match-points m&tS-'poInts Kj% 2 +matchbox 'm&tSb0ks K7% 2 +matchboxes 'm&tSb0ksIz Kj% 3 +matched m&tSt Jc%,Jd% 12A,6A,12B,13B,14 +matches 'm&tSIz Ja%,Kj% 22A,6A,12B,13B,14 +matchet 'm&tSIt K6$ 2 +matchets 'm&tSIts Kj$ 2 +matching 'm&tSIN Jb% 22A,6A,12B,13B,14 +matchless 'm&tSl@s OA% 2 +matchlock 'm&tSl0k K6$ 2 +matchlocks 'm&tSl0ks Kj$ 2 +matchmaker 'm&tSmeIk@R K6% 3 +matchmakers 'm&tSmeIk@z Kj% 3 +matchwood 'm&tSwUd L@% 2 +mate meIt J2%,K6% 12A,3A,6A,14 +mated 'meItId Jc%,Jd% 22A,3A,6A,14 +material m@'tI@rI@l M6%,OA% 4 +materialism m@'tI@rI@lIz@m L@% 6 +materialist m@'tI@rI@lIst K6% 5 +materialistic m@,tI@rI@'lIstIk OA% 6 +materialistically m@,tI@rI@'lIstIklI Pu% 7 +materialists m@'tI@rI@lIsts Kj% 5 +materialization m@,tI@rI@laI'zeISn K6% 7 +materializations m@,tI@rI@laI'zeISnz Kj$ 7 +materialize m@'tI@rI@laIz I2% 52A,6A +materialized m@'tI@rI@laIzd Ic%,Id% 52A,6A +materializes m@'tI@rI@laIzIz Ia% 62A,6A +materializing m@'tI@rI@laIzIN Ib% 62A,6A +materially m@'tI@rI@lI Pu% 5 +materials m@'tI@rI@lz Mj% 4 +maternal m@'t3nl OA% 3 +maternally m@'t3n@lI Pu% 4 +maternity m@'t3nItI L@% 4 +mates meIts Ja%,Kj% 12A,3A,6A,14 +matey 'meItI OA% 2 +mathematical ,m&T@'m&tIkl OA% 5 +mathematically ,m&T@'m&tIklI Pu% 5 +mathematician ,m&T@m@'tISn K6% 5 +mathematicians ,m&T@m@'tISnz Kj% 5 +mathematics ,m&T@'m&tIks Lk% 4 +maths m&Ts Lk% 1 +matin_ee 'm&tIneI K6% 3 +matin_ees 'm&tIneIz Kj% 3 +mating 'meItIN Jb% 22A,3A,6A,14 +matins 'm&tInz Kj% 2 +matriarch 'meItrIAk K6% 3 +matriarchal ,meItrI'Akl OA% 4 +matriarchies 'meItrIAkIz Kj% 4 +matriarchs 'meItrIAks Kj% 3 +matriarchy 'meItrIAkI K8% 4 +matric m@'trIk K6$ 2 +matrices 'meItrIsiz Kj% 3 +matricide 'm&trIsaId M6% 3 +matricides 'm&trIsaIdz Mj% 3 +matrics m@'trIks Kj$ 2 +matriculate m@'trIkjUleIt J2% 42A,2C,6A +matriculated m@'trIkjUleItId Jc%,Jd% 52A,2C,6A +matriculates m@'trIkjUleIts Ja% 42A,2C,6A +matriculating m@'trIkjUleItIN Jb% 52A,2C,6A +matriculation m@,trIkjU'leISn M6% 5 +matriculations m@,trIkjU'leISnz Mj$ 5 +matrimonial ,m&trI'm@UnI@l OA% 5 +matrimony 'm&trIm@nI L@% 4 +matrix 'meItrIks K7% 2 +matrixes 'meItrIksIz Kj% 3 +matron 'meItr@n K6% 2 +matronly 'meItr@nlI OA% 3 +matrons 'meItr@nz Kj% 2 +mats m&ts Ja%,Kj% 12A,2C,6A,15A +matt m&t OA% 1 +matted 'm&tId Jc%,Jd%,OA% 22A,2C,6A,15A +matter 'm&t@R I0*,M6* 22A,2C +matter-of-course ,m&t@r-@v-'kOs OA% 4 +matter-of-fact ,m&t@r-@v-'f&kt OA% 4 +mattered 'm&t@d Ic%,Id% 22A,2C +mattering 'm&t@rIN Ib$ 32A,2C +matters 'm&t@z Ia%,Mj% 22A,2C +matting 'm&tIN Jb$,L@% 22A,2C,6A,15A +mattins 'm&tInz Kj% 2 +mattock 'm&t@k K6$ 2 +mattocks 'm&t@ks Kj$ 2 +mattress 'm&trIs K7% 2 +mattresses 'm&trIsIz Kj% 3 +maturate 'm&tjUreIt I2$ 32A +maturated 'm&tjUreItId Ic$,Id$ 42A +maturates 'm&tjUreIts Ia$ 32A +maturating 'm&tjUreItIN Ib$ 42A +maturation ,m&tjU'reISn L@% 4 +mature m@'tjU@R J2%,OA% 22A,6A +matured m@'tjU@d Jc%,Jd% 22A,6A +maturely m@'tjU@lI Pu% 3 +matures m@'tjU@z Ja% 22A,6A +maturing m@'tjU@rIN Jb% 32A,6A +maturity m@'tjU@rItI L@% 4 +matutinal m@'tjutInl OA$ 4 +maudlin 'mOdlIn OA% 2 +maul mOl H0% 16A,15B +mauled mOld Hc%,Hd% 16A,15B +mauling 'mOlIN Hb% 26A,15B +mauls mOlz Ha% 16A,15B +maulstick 'mOlstIk K6$ 2 +maulsticks 'mOlstIks Kj$ 2 +maunder 'mOnd@R I0$ 22A,2C +maundered 'mOnd@d Ic$,Id$ 22A,2C +maundering 'mOnd@rIN Ib$ 32A,2C +maunders 'mOnd@z Ia$ 22A,2C +mausoleum ,mOs@'li@m K6% 4 +mausoleums ,mOs@'li@mz Kj% 4 +mauve m@Uv M6%,OA% 1 +mauves m@Uvz Mj$ 1 +maverick 'm&v@rIk K6% 3 +mavericks 'm&v@rIks Kj% 3 +mavis 'meIvIs K7$ 2 +mavises 'meIvIsIz Kj$ 3 +maw mO K6% 1 +mawkish 'mOkIS OA% 2 +mawkishly 'mOkISlI Pu% 3 +mawkishness 'mOkISn@s L@% 3 +maws mOz Kj$ 1 +max m&ks Y>% 1 +maxi- 'm&ksI- U-% 2 +maxim 'm&ksIm K6% 2 +maxima 'm&ksIm@ Kj$ 3 +maximal 'm&ksIml OA$ 3 +maximally 'm&ksIm@lI Pu$ 4 +maximization ,m&ksImaI'zeISn M6% 5 +maximizations ,m&ksImaI'zeISnz Mj$ 5 +maximize 'm&ksImaIz H2% 36A +maximized 'm&ksImaIzd Hc%,Hd% 36A +maximizes 'm&ksImaIzIz Ha% 46A +maximizing 'm&ksImaIzIN Hb% 46A +maxims 'm&ksImz Kj% 2 +maximum 'm&ksIm@m K6%,OA% 3 +maximums 'm&ksIm@mz Kj$ 3 +may meI G5*,Ga* 15 +may-beetle 'meI-bitl K6$ 3 +may-beetles 'meI-bitlz Kj$ 3 +may-bug 'meI-bVg K6$ 2 +may-bugs 'meI-bVgz Kj$ 2 +maybe 'meIbi Pu% 2 +mayday 'meIdeI K6% 2 +maydays 'meIdeIz Kj% 2 +mayflies 'meIflaIz Kj% 2 +mayfly 'meIflaI K8% 2 +mayhem 'meIhem L@% 2 +mayn't 'meI@nt Gg% 2 +mayonnaise ,meI@'neIz L@% 3 +mayor me@R K6% 1 +mayoral 'me@r@l OA% 3 +mayoralties 'me@r@ltIz Kj$ 4 +mayoralty 'me@r@ltI K8% 4 +mayoress me@'res K7% 2 +mayoresses me@'resIz Kj% 3 +mayors me@z Kj% 1 +maypole 'meIp@Ul K6% 2 +maypoles 'meIp@Ulz Kj% 2 +maze meIz K6% 1 +mazed meIzd OA$ 1 +mazes 'meIzIz Kj% 2 +mazurka m@'z3k@ K6% 3 +mazurkas m@'z3k@z Kj% 3 +me mi Qx* 1 +mead mid M6$ 1 +meadow 'med@U M6% 2 +meadows 'med@Uz Mj% 2 +meads midz Mj$ 1 +meagre 'mig@R OA% 2 +meagrely 'mig@lI Pu% 3 +meagreness 'mig@n@s L@% 3 +meal mil M6% 1 +mealie 'milI K6$ 2 +mealier 'milI@R Or$ 3 +mealies 'milIz Kj$ 2 +mealiest 'milIIst Os$ 3 +meals milz Mj% 1 +mealtime 'miltaIm K6% 2 +mealtimes 'miltaImz Kj% 2 +mealy 'milI OD$ 2 +mealy-bug 'milI-bVg K6% 3 +mealy-bugs 'milI-bVgz Kj% 3 +mealy-mouthed 'milI-maUDd OA% 3 +mean min H5*,K6%,OC* 16A,6A,6C,7A,9,12A,13A,14,16B,17 +meander mI'&nd@R I0% 32A,2C +meandered mI'&nd@d Ic%,Id% 32A,2C +meandering mI'&nd@rIN Ib% 42A,2C +meanderingly mI'&ndrINlI Pu% 4 +meanderings mI'&ndrINz Kj% 3 +meanders mI'&nd@z Ia% 32A,2C +meaner 'min@R Or% 2 +meanest 'minIst Os% 2 +meanie 'minI K6% 2 +meanies 'minIz Kj% 2 +meaning 'minIN Hb%,M6%,OA% 26A,6A,6C,7A,9,12A,13A,14,16B,17 +meaningful 'minINf@l OA% 3 +meaningfully 'minINf@lI Pu% 4 +meaningless 'minINl@s OA% 3 +meaningly 'minINlI Pu% 3 +meanings 'minINz Mj% 2 +meanly 'minlI Pu% 2 +meanness 'min+n@s L@% 2 +means minz Ha*,Kj* 16A,6C,7A,9,12A,13A,14,16B,17 +meant ment Hc%,Hd% 16A,6A,6C,7A,9,12A,13A,14,16B,17 +meantime 'mintaIm L@%,Pu% 2 +meanwhile 'minwaIl Pu% 2 +meany 'minI K8% 2 +measles 'mizlz Lk% 2 +measly 'mizlI OA% 2 +measurable 'meZ@r@bl OA% 4 +measurably 'meZ@r@blI Pu% 4 +measure 'meZ@R J2%,M6% 22A,2B,6A,15A,15B +measured 'meZ@d Jc%,Jd%,OA% 22A,2B,6A,15A,15B +measureless 'meZ@l@s OA% 3 +measurement 'meZ@m@nt M6% 3 +measurements 'meZ@m@nts Mj% 3 +measures 'meZ@z Ja%,Mj% 22A,2B,6A,15A,15B +measuring 'meZ@rIN Jb% 32A,2B,6A,15A,15B +meat mit M6% 1 +meat-safe 'mit-seIf K6% 2 +meat-safes 'mit-seIfs Kj$ 2 +meatball 'mitbOl K6% 2 +meatballs 'mitbOlz Kj% 2 +meatier 'mitI@R Or% 3 +meatiest 'mitIIst Os% 3 +meatless 'mitl@s OA$ 2 +meats mits Mj% 1 +meaty 'mitI OD% 2 +mechanic mI'k&nIk K6% 3 +mechanical mI'k&nIkl OA% 4 +mechanically mI'k&nIklI Pu% 4 +mechanics mI'k&nIks Kj%,Lk% 3 +mechanism 'mek@nIz@m M6% 4 +mechanisms 'mek@nIz@mz Mj% 4 +mechanistic ,mek@'nIstIk OA% 4 +mechanistically ,mek@'nIstIklI Pu% 5 +mechanization ,mek@naI'zeISn M6% 5 +mechanizations ,mek@naI'zeISnz Mj$ 5 +mechanize 'mek@naIz H2% 36A +mechanized 'mek@naIzd Hc%,Hd% 36A +mechanizes 'mek@naIzIz Ha% 46A +mechanizing 'mek@naIzIN Hb% 46A +medal 'medl K6% 2 +medalist 'med@lIst K6% 3 +medalists 'med@lIsts Kj% 3 +medallion mI'd&lI@n K6% 4 +medallions mI'd&lI@nz Kj% 4 +medallist 'med@lIst K6$ 3 +medallists 'med@lIsts Kj$ 3 +medals 'medlz Kj% 2 +meddle 'medl I2% 22A,3A +meddled 'medld Ic%,Id% 22A,3A +meddler 'medl@R K6% 2 +meddlers 'medl@z Kj% 2 +meddles 'medlz Ia% 22A,3A +meddlesome 'medls@m OA% 3 +meddling 'medlIN Ib% 22A,3A +media 'midI@ Kj% 3 +mediaeval ,medI'ivl OA% 4 +medial 'midI@l OA% 3 +medially 'midI@lI Pu$ 4 +median 'midI@n K6$,OA$ 3 +medians 'midI@nz Kj$ 3 +mediate 'midIeIt J2% 32A,3A,6A +mediated 'midIeItId Jc%,Jd% 42A,3A,6A +mediates 'midIeIts Ja% 32A,3A,6A +mediating 'midIeItIN Jb% 42A,3A,6A +mediation ,midI'eISn L@% 4 +mediator 'midIeIt@R K6% 4 +mediators 'midIeIt@z Kj% 4 +medic 'medIk K6% 2 +medical 'medIkl K6%,OA% 3 +medically 'medIklI Pu% 3 +medicals 'medIklz Kj% 3 +medicament mI'dIk@m@nt K6% 4 +medicaments mI'dIk@m@nts Kj% 4 +medicate 'medIkeIt H2% 36A +medicated 'medIkeItId Hc%,Hd% 46A +medicates 'medIkeIts Ha% 36A +medicating 'medIkeItIN Hb% 46A +medication ,medI'keISn M6% 4 +medications ,medI'keISnz Mj% 4 +medicinal mI'dIsn@l OA% 4 +medicine 'medsn M6% 2 +medicine-ball 'medsn-bOl K6% 3 +medicine-balls 'medsn-bOlz Kj% 3 +medicine-chest 'medsn-tSest K6% 3 +medicine-chests 'medsn-tSests Kj% 3 +medicine-man 'medsn-m&n Ki% 3 +medicine-men 'medsn-men Kj% 3 +medicines 'medsnz Mj% 3 +medico 'medIk@U K6$ 3 +medicos 'medIk@Uz Kj$ 3 +medics 'medIks Kj% 2 +medieval ,medI'ivl OA% 4 +mediocre ,midI'@Uk@R OA% 4 +mediocrities ,midI'0krItIz Mj% 5 +mediocrity ,midI'0krItI M8% 5 +meditate 'medIteIt J2% 32A,3A,6A +meditated 'medIteItId Jc%,Jd% 42A,3A,6A +meditates 'medIteIts Ja% 32A,3A,6A +meditating 'medIteItIN Jb% 42A,3A,6A +meditation ,medI'teISn M6% 4 +meditations ,medI'teISnz Mj% 4 +meditative 'medIt@tIv OA% 4 +meditatively 'medIt@tIvlI Pu% 5 +medium 'midI@m K6%,OA% 3 +mediums 'midI@mz Kj% 3 +medlar 'medl@R K6$ 2 +medlars 'medl@z Kj$ 2 +medley 'medlI K6% 2 +medleys 'medlIz Kj% 2 +meed mid K6$ 1 +meeds midz Kj$ 1 +meek mik OC% 1 +meeker 'mik@R Or% 2 +meekest 'mikIst Os% 2 +meekly 'miklI Pu% 2 +meekness 'mikn@s L@% 2 +meerschaum 'mI@S@m M6$ 2 +meerschaums 'mI@S@mz Mj$ 2 +meet mit J5%,K6$,OA$ 12A,2C,6A +meeting 'mitIN Jb%,K6% 22A,2C,6A +meeting-house 'mitIN-haUs K6% 3 +meeting-houses 'mitIN-haUzIz Kj% 4 +meeting-place 'mitIN-pleIs K6% 3 +meeting-places 'mitIN-pleIsIz Kj% 4 +meetings 'mitINz Kj% 2 +meets mits Ja%,Kj% 12A,2C,6A +megacycle 'meg@saIkl K6$ 4 +megacycles 'meg@saIklz Kj$ 4 +megadeath 'meg@deT K6$ 3 +megadeaths 'meg@deTs Kj$ 3 +megalith 'meg@lIT K6$ 3 +megalithic ,meg@'lITIk OA$ 4 +megaliths 'meg@lITs Kj$ 3 +megalomania ,meg@l@'meInI@ L@% 6 +megalomaniac ,meg@l@'meInI&k K6% 6 +megalomaniacs ,meg@l@'meInI&ks Kj% 6 +megaphone 'meg@f@Un K6% 3 +megaphones 'meg@f@Unz Kj% 3 +megaton 'meg@tVn K6% 3 +megatons 'meg@tVnz Kj% 3 +megrim 'migrIm K6$ 2 +megrims 'migrImz Kj$ 2 +meiosis maI'@UsIs L@$ 3 +melancholia ,mel@n'k@UlI@ L@% 5 +melancholic ,mel@N'k0lIk OA% 4 +melancholy 'mel@Nk0lI L@%,OA% 4 +meliorate 'milI@reIt J2$ 42A,6A +meliorated 'milI@reItId Jc$,Jd$ 52A,6A +meliorates 'milI@reIts Ja$ 42A,6A +meliorating 'milI@reItIN Jb$ 52A,6A +melioration ,milI@'reISn M6$ 5 +meliorations ,milI@'reISnz Mj$ 5 +meliorism 'milI@rIz@m L@$ 5 +mellifluous me'lIflU@s OA% 4 +mellow 'mel@U J0%,OC% 22A,6A +mellowed 'mel@Ud Jc%,Jd% 22A,6A +mellower 'mel@U@R Or% 3 +mellowest 'mel@UIst Os% 3 +mellowing 'mel@UIN Jb% 32A,6A +mellowly 'mel@UlI Pu% 3 +mellowness 'mel@Un@s L@% 3 +mellows 'mel@Uz Ja% 22A,6A +melodic mI'l0dIk OA% 3 +melodies 'mel@dIz Mj% 3 +melodious mI'l@UdI@s OA% 4 +melodiously mI'l@UdI@slI Pu% 5 +melodiousness mI'l@UdI@sn@s L@% 5 +melodrama 'mel@drAm@ M6% 4 +melodramas 'mel@drAm@z Mj% 4 +melodramatic ,mel@dr@'m&tIk OA% 5 +melodramatically ,mel@dr@'m&tIklI Pu% 6 +melody 'mel@dI M8% 3 +melon 'mel@n K6% 2 +melons 'mel@nz Kj% 2 +melt melt J0% 12A,2C,6A,15B +melted 'meltId Jc%,Jd% 22A,2C,6A,15B +melting 'meltIN Jb%,OA% 22A,2C,6A,15B +melting-point 'meltIN-poInt K6% 3 +melting-points 'meltIN-poInts Kj% 3 +melting-pot 'meltIN-p0t K6% 3 +melting-pots 'meltIN-p0ts Kj$ 3 +melts melts Ja% 12A,2C,6A,15B +member 'memb@R K6% 2 +members 'memb@z Kj% 2 +membership 'memb@SIp L@% 3 +membrane 'membreIn M6% 2 +membranes 'membreInz Mj% 2 +membranous 'membr@n@s OA$ 3 +memento mI'ment@U K6% 3 +mementoes mI'ment@Uz Kj% 3 +mementos mI'ment@Uz Kj% 3 +memo 'mem@U K6% 2 +memoir 'memwAR K6% 2 +memoirs 'memwAz Kj% 2 +memorable 'mem@r@bl OA% 4 +memorably 'mem@r@blI Pu% 4 +memoranda ,mem@'r&nd@ Kj% 4 +memorandum ,mem@'r&nd@m K6% 4 +memorandums ,mem@'r&nd@mz Kj% 4 +memorial mI'mOrI@l K6% 4 +memorialize mI'mOrI@laIz H2$ 56A +memorialized mI'mOrI@laIzd Hc$,Hd$ 56A +memorializes mI'mOrI@laIzIz Ha$ 66A +memorializing mI'mOrI@laIzIN Hb$ 66A +memorials mI'mOrI@lz Kj% 4 +memories 'mem@rIz Mj% 3 +memorize 'mem@raIz H2% 36A +memorized 'mem@raIzd Hc%,Hd% 36A +memorizes 'mem@raIzIz Ha% 46A +memorizing 'mem@raIzIN Hb% 46A +memory 'mem@rI M8% 3 +memos 'mem@Uz Kj% 2 +memsahib 'memsAb K6$ 2 +memsahibs 'memsAbz Kj$ 2 +men men Kj* 1 +men-at-arms ,men-@t-'Amz Kj% 3 +men-of-war ,men-@v-'wOR Kj% 3 +menace 'men@s H2%,M6% 26A +menaced 'men@st Hc%,Hd% 26A +menaces 'men@sIz Ha%,Mj% 36A +menacing 'men@sIN Hb% 36A +menacingly 'men@sINlI Pu% 4 +menagerie mI'n&dZ@rI K6% 4 +menageries mI'n&dZ@rIz Kj% 4 +mend mend J0%,K6% 12A,6A +mendacious men'deIS@s OA% 3 +mendaciously men'deIS@slI Pu% 4 +mendacities men'd&sItIz Mj$ 4 +mendacity men'd&sItI M8% 4 +mended 'mendId Jc%,Jd% 22A,6A +mender 'mend@R K6% 2 +menders 'mend@z Kj% 2 +mendicant 'mendIk@nt K6$,OA$ 3 +mendicants 'mendIk@nts Kj$ 3 +mending 'mendIN Jb%,L@% 22A,6A +mends mendz Ja%,Kj% 12A,6A +menfolk 'menf@Uk Kj% 2 +menial 'minI@l K6$,OA% 3 +menially 'minI@lI Pu% 4 +menials 'minI@lz Kj$ 3 +meningitis ,menIn'dZaItIs L@% 4 +menopause 'men@pOz K6% 3 +menopauses 'men@pOzIz Kj$ 4 +menses 'mensiz Kj$ 2 +menstrual 'menstrU@l OA% 3 +menstruate 'menstrUeIt I2% 32A +menstruated 'menstrUeItId Ic%,Id% 42A +menstruates 'menstrUeIts Ia% 32A +menstruating 'menstrUeItIN Ib% 42A +menstruation ,menstrU'eISn L@% 4 +mensurable 'mensjUr@bl OA$ 4 +mensuration ,mensjU'reISn M6$ 4 +mensurations ,mensjU'reISnz Mj$ 4 +mental 'mentl OA% 2 +mentalities men't&lItIz Mj$ 4 +mentality men't&lItI M8% 4 +mentally 'ment@lI Pu% 3 +menthol 'menT0l L@% 2 +mentholated 'menT@leItId OA% 4 +mention 'menSn H0%,M6% 26A,6C,9,13A +mentioned 'menSnd Hc%,Hd%,Ot% 26A,6C,9,13A +mentioning 'menSnIN Hb% 36A,6C,9,13A +mentions 'menSnz Ha%,Mj% 26A,6C,9,13A +mentor 'mentOR K6% 2 +mentors 'mentOz Kj% 2 +menu 'menju K6% 2 +menus 'menjuz Kj% 2 +mercantile 'm3k@ntaIl OA% 3 +mercenaries 'm3sIn@rIz Kj% 4 +mercenary 'm3sIn@rI K8%,OA% 4 +mercer 'm3s@R K6$ 2 +mercerize 'm3s@raIz H2$ 36A +mercerized 'm3s@raIzd Hc$,Hd$ 36A +mercerizes 'm3s@raIzIz Ha$ 46A +mercerizing 'm3s@raIzIN Hb$ 46A +mercers 'm3s@z Kj$ 2 +merchandise 'm3tS@ndaIz L@% 3 +merchant 'm3tS@nt K6% 2 +merchantman 'm3tS@ntm@n Ki% 3 +merchantmen 'm3tS@ntm@n Kj% 3 +merchants 'm3tS@nts Kj% 2 +mercies 'm3sIz Mj% 2 +merciful 'm3sIf@l OA% 3 +mercifully 'm3sIf@lI Pu% 4 +merciless 'm3sIlIs OA% 3 +mercilessly 'm3sIlIslI Pu% 4 +mercurial m3'kjU@rI@l OA% 4 +mercury 'm3kjUrI L@% 3 +mercy 'm3sI M8% 2 +mere mI@R K6$,OA% 1 +merely 'mI@lI Pu% 2 +meres mI@z Kj$ 1 +meretricious ,merI'trIS@s OA% 4 +meretriciously ,merI'trIS@slI Pu$ 5 +meretriciousness ,merI'trIS@sn@s L@$ 5 +merge m3dZ J2% 12A,3A,6A,14 +merged m3dZd Jc%,Jd% 12A,3A,6A,14 +merger 'm3dZ@R M6% 2 +mergers 'm3dZ@z Mj% 2 +merges 'm3dZIz Ja% 22A,3A,6A,14 +merging 'm3dZIN Jb% 22A,3A,6A,14 +meridian m@'rIdI@n K6% 4 +meridians m@'rIdI@nz Kj% 4 +meridional m@'rIdI@nl OA$ 5 +meringue m@'r&N M6% 2 +meringues m@'r&Nz Mj% 2 +merino m@'rin@U L@$ 3 +merino-sheep m@,rin@U-'Sip K9$ 4 +merit 'merIt H0%,M6% 26A +merited 'merItId Hc%,Hd% 36A +meriting 'merItIN Hb% 36A +meritocracies ,merI't0kr@sIz Kj% 5 +meritocracy ,merI't0kr@sI K8% 5 +meritocratic ,merIt@'kr&tIk OA% 5 +meritorious ,merI'tOrI@s OA% 5 +meritoriously ,merI'tOrI@slI Pu% 6 +merits 'merIts Ha%,Mj% 26A +mermaid 'm3meId K6% 2 +mermaids 'm3meIdz Kj% 2 +merman 'm3m@n Ki$ 2 +mermen 'm3m@n Kj$ 2 +merrier 'merI@R Or% 3 +merriest 'merIIst Os% 3 +merrily 'mer@lI Pu% 3 +merriment 'merIm@nt L@% 3 +merry 'merI OD% 2 +merry-go-round 'merI-g@-raUnd K6% 4 +merry-go-rounds 'merI-g@-raUndz Kj% 4 +merrymaker 'merImeIk@R K6% 4 +merrymakers 'merImeIk@z Kj% 4 +merrymaking 'merImeIkIN L@% 4 +mescal 'meskl M6$ 2 +mescaline 'mesk@lIn L@$ 3 +mescals 'mesklz Mj$ 2 +meseems mI'simz Pu$ 2 +mesh meS J1%,K7% 12A,3A,6A +meshed meSt Jc%,Jd% 12A,3A,6A +meshes 'meSIz Ja%,Kj% 22A,3A,6A +meshing 'meSIN Jb% 22A,3A,6A +mesmeric mez'merIk OA$ 3 +mesmerism 'mezm@rIz@m L@$ 4 +mesmerist 'mezm@rIst K6$ 3 +mesmerists 'mezm@rIsts Kj$ 3 +mesmerize 'mezm@raIz H2% 36A +mesmerized 'mezm@raIzd Hc%,Hd% 36A +mesmerizes 'mezm@raIzIz Ha% 46A +mesmerizing 'mezm@raIzIN Hb% 46A +meson 'mis@n K6$ 2 +mesons 'mis@nz Kj$ 2 +mess mes J1%,M7% 12C,6A,15B +mess-jacket 'mes-dZ&kIt K6$ 3 +mess-jackets 'mes-dZ&kIts Kj$ 3 +mess-up 'mes-Vp K6% 2 +mess-ups 'mes-Vps Kj$ 2 +message 'mesIdZ K6% 2 +messages 'mesIdZIz Kj% 3 +messed mest Jc%,Jd% 12C,6A,15B +messenger 'mesIndZ@R K6% 3 +messengers 'mesIndZ@z Kj% 3 +messes 'mesIz Ja%,Mj% 22C,6A,15B +messianic ,mesI'&nIk OA% 4 +messier 'mesI@R Or% 3 +messiest 'mesIIst Os% 3 +messily 'mesIlI Pu% 3 +messiness 'mesInIs L@% 3 +messing 'mesIN Jb% 22C,6A,15B +messmate 'mesmeIt K6% 2 +messmates 'mesmeIts Kj% 2 +messuage 'meswIdZ K6$ 2 +messuages 'meswIdZIz Kj$ 3 +messy 'mesI OD% 2 +met met Jc%,Jd% 12A,2C,6A +metabolic ,met@'b0lIk OA% 4 +metabolism mI't&b@lIz@m L@% 5 +metacarpal ,met@'kApl K6$,OA$ 4 +metacarpals ,met@'kAplz Kj$ 4 +metal 'metl H4%,M6% 26A +metalled 'metld Hc%,Hd% 26A +metallic mI't&lIk OA% 3 +metalling 'met@lIN Hb$ 36A +metallurgical ,met@'l3dZIkl OA% 5 +metallurgist mI't&l@dZIst K6% 4 +metallurgists mI't&l@dZIsts Kj% 4 +metallurgy mI't&l@dZI L@% 4 +metals 'metlz Ha$,Mj% 26A +metalwork 'metlw3k K6% 3 +metalworker 'metlw3k@R K6% 4 +metalworkers 'metlw3k@z Kj% 4 +metalworks 'metlw3ks Kj% 3 +metamorphose ,met@'mOf@Uz J2$ 43A,6A,14 +metamorphosed ,met@'mOf@Uzd Jc$,Jd$ 43A,6A,14 +metamorphoses ,met@'mOf@UzIz Ja$ 53A,6A,14 +metamorphoses ,met@'mOf@siz Kj% 5 +metamorphosing ,met@'mOf@UzIN Jb$ 53A,6A,14 +metamorphosis ,met@'mOf@sIs Ki% 5 +metaphor 'met@f@R M6% 3 +metaphorical ,met@'f0rIkl OA% 5 +metaphorically ,met@'f0rIklI Pu% 5 +metaphors 'met@f@z Mj% 3 +metaphysical ,met@'fIzIkl OA% 5 +metaphysically ,met@'fIzIklI Pu% 5 +metaphysics ,met@'fIzIks Lk% 4 +metatarsal ,met@'tAsl K6$,OA$ 4 +metatarsals ,met@'tAslz Kj$ 4 +mete mit H2% 115B +meted 'mitId Hc%,Hd% 215B +meteor 'mitI@R K6% 3 +meteoric ,mitI'0rIk OA% 4 +meteorite 'mitI@raIt K6% 4 +meteorites 'mitI@raIts Kj% 4 +meteorological ,mitj@r@'l0dZIkl OA% 6 +meteorologist ,mitI@'r0l@dZIst K6% 6 +meteorologists ,mitI@'r0l@dZIsts Kj% 6 +meteorology ,mitI@'r0l@dZI L@% 6 +meteors 'mitI@z Kj% 3 +meter 'mit@R K6% 2 +meters 'mit@z Kj% 2 +metes mits Ha$ 115B +methane 'miTeIn L@% 2 +methinks mI'TINks Pu$ 2 +method 'meT@d M6% 2 +methodical mI'T0dIkl OA% 4 +methodically mI'T0dIklI Pu% 4 +methodological ,meT@d@'l0dZIkl OA% 6 +methodologically ,meT@d@'l0dZIklI Pu% 6 +methodologies ,meT@'d0l@dZIz Mj% 5 +methodology ,meT@'d0l@dZI M8% 5 +methods 'meT@dz Mj% 2 +methought mI'TOt Pu$ 2 +meths meTs Kj% 1 +methyl 'meTIl M6$ 2 +methylated 'meTIleItId OA% 4 +methyls 'meTIlz Mj$ 2 +meticulous mI'tIkjUl@s OA% 4 +meticulously mI'tIkjUl@slI Pu% 5 +meticulousness mI'tIkjUl@snIs L@% 5 +meting 'mitIN Hb$ 215B +metre 'mit@R M6% 2 +metres 'mit@z Mj% 2 +metric 'metrIk OA% 2 +metrical 'metrIkl OA% 3 +metrically 'metrIklI Pu% 3 +metrication ,metrI'keISn M6% 4 +metrications ,metrI'keISnz Mj$ 4 +metricize 'metrIsaIz H2$ 3 +metricized 'metrIsaIzd Hc$,Hd$ 3 +metricizes 'metrIsaIzIz Ha$ 4 +metricizing 'metrIsaIzIN Hb$ 4 +metronome 'metr@n@Um K6% 3 +metronomes 'metr@n@Umz Kj% 3 +metropolis m@'tr0p@lIs K7% 4 +metropolises m@'tr0p@lIsIz Kj$ 5 +metropolitan ,metr@'p0lIt@n K6%,OA% 5 +metropolitans ,metr@'p0lIt@nz Kj$ 5 +mettle 'metl L@% 2 +mettlesome 'metls@m OA$ 3 +mew mju I0%,K6% 12A +mewed mjud Ic%,Id% 12A +mewing 'mjuIN Ib% 22A +mews mjuz Ia%,K9% 12A +mezzanine 'mez@nin K6%,OA% 3 +mezzanines 'mez@ninz Kj$ 3 +mezzo 'mets@U Pu$ 2 +mezzo-soprano ,mets@U-s@'prAn@U K6% 5 +mezzo-sopranos ,mets@U-s@'prAn@Uz Kj% 5 +mezzotint 'mets@UtInt M6$ 3 +mezzotints 'mets@UtInts Mj$ 3 +mg 'mIlIgr&mz Y]% 3 +mi mi Ki$ 1 +miaou mi'aU I0$,K6$ 2 +miaoued mi'aUd Ic$,Id$ 2 +miaouing mi'aUIN Ib$ 3 +miaous mi'aUz Ia$,Kj$ 2 +miaow mi'aU I0%,K6% 22A +miaowed mi'aUd Ic%,Id% 22A +miaowing mi'aUIN Ib% 32A +miaows mi'aUz Ia%,Kj% 22A +miasma mI'&zm@ K6$ 3 +miasmas mI'&zm@z Kj$ 3 +mica 'maIk@ L@$ 2 +mice maIs Kj% 1 +mickey 'mIkI Ki% 2 +mickle 'mIkl Ki$ 2 +micro-organism ,maIkr@U-'Og@nIz@m K6% 6 +micro-organisms ,maIkr@U-'Og@nIz@mz Kj% 6 +microbe 'maIkr@Ub K6% 2 +microbes 'maIkr@Ubz Kj% 2 +microbiology ,maIkr@UbaI'0l@dZI L@% 6 +microcosm 'maIkr@Uk0z@m K6% 4 +microcosms 'maIkr@Uk0z@mz Kj% 4 +microdot 'maIkr@Ud0t K6$ 3 +microdots 'maIkr@Ud0ts Kj$ 3 +microelectronics ,maIkr@U,ilek'tr0nIks Lk% 6 +microfiche 'maIkr@UfiS M6% 3 +microfiches 'maIkr@UfiSIz Mj$ 4 +microfilm 'maIkr@UfIlm H0$,M6% 36A +microfilmed 'maIkr@UfIlmd Hc$,Hd$ 36A +microfilming 'maIkr@UfIlmIN Hb$ 46A +microfilms 'maIkr@UfIlmz Ha$,Mj$ 36A +micrometer maI'kr0mIt@R K6$ 4 +micrometers maI'kr0mIt@z Kj$ 4 +micron 'maIkr0n K6$ 2 +microns 'maIkr0nz Kj$ 2 +microphone 'maIkr@f@Un K6% 3 +microphones 'maIkr@f@Unz Kj% 3 +microscope 'maIkr@sk@Up K6% 3 +microscopes 'maIkr@sk@Ups Kj% 3 +microscopic ,maIkr@'sk0pIk OA% 4 +microscopical ,maIkr@'sk0pIkl OA$ 5 +microscopically ,maIkr@'sk0pIklI Pu% 5 +microscopy maI'kr0sk@pI L@% 4 +microwave 'maIkr@UweIv K6% 3 +microwaves 'maIkr@UweIvz Kj% 3 +mid mId OA%,T-% 1 +mid-off mId-'0f Ki% 2 +mid-on mId-'0n Ki% 2 +midday ,mId'deI L@% 2 +midden 'mIdn K6$ 2 +middens 'mIdnz Kj$ 2 +middies 'mIdIz Kj$ 2 +middle 'mIdl K6% 2 +middle-aged ,mIdl-'eIdZd OA% 3 +middle-class ,mIdl-'klAs OA% 3 +middle-distance ,mIdl-'dIst@ns OA% 4 +middle-of-the-road ,mIdl-@v-D@-'r@Ud OA% 5 +middleman 'mIdlm&n Ki% 3 +middlemen 'mIdlmen Kj% 3 +middles 'mIdlz Kj% 2 +middleweight 'mIdlweIt K6%,OA% 3 +middleweights 'mIdlweIts Kj% 3 +middling 'mIdlIN K6$,OA%,Pu% 2 +middlings 'mIdlINz Kj$ 2 +middy 'mIdI K8$ 2 +midfield 'mIdfild Ki% 2 +midge mIdZ K6% 1 +midges 'mIdZIz Kj% 2 +midget 'mIdZIt K6% 2 +midgets 'mIdZIts Kj% 2 +midinette ,mIdI'net K6$ 3 +midinettes ,mIdI'nets Kj$ 3 +midland 'mIdl@nd K6% 2 +midlands 'mIdl@ndz Kj% 2 +midmost 'mIdm@Ust OA$,Pu$ 2 +midnight 'mIdnaIt L@% 2 +midriff 'mIdrIf K6% 2 +midriffs 'mIdrIfs Kj$ 2 +midshipman 'mIdSIpm@n Ki% 3 +midshipmen 'mIdSIpm@n Kj% 3 +midships 'mIdSIps Pu$ 2 +midst mIdst Ki%,T-% 1 +midstream ,mId'strim L@% 2 +midsummer ,mId'sVm@R L@% 3 +midway ,mId'weI OA%,Pu% 2 +midweek mId'wik Oq%,Pu% 2 +midwife 'mIdwaIf Ki% 2 +midwifery 'mIdwIfrI L@% 3 +midwives 'mIdwaIvz Kj% 2 +mien min K6$ 1 +miens minz Kj$ 1 +might maIt Gc*,L@% 15 +might-have-been 'maIt-@v-bin K6$ 3 +might-have-beens 'maIt-@v-binz Kj$ 3 +mightier 'maItI@R Or% 3 +mightiest 'maItIIst Os% 3 +mightily 'maItIlI Pu% 3 +mightn't 'maItnt Gg% 2 +mighty 'maItI OD%,Pu% 2 +mignonette ,mInj@'net L@$ 3 +migraine 'migreIn K6% 2 +migraines 'migreInz Kj$ 2 +migrant 'maIgr@nt K6% 2 +migrants 'maIgr@nts Kj% 2 +migrate maI'greIt I2% 22A,3A +migrated maI'greItId Ic%,Id% 32A,3A +migrates maI'greIts Ia% 22A,3A +migrating maI'greItIN Ib% 32A,3A +migration maI'greISn M6% 3 +migrations maI'greISnz Mj% 3 +migratory 'maIgr@trI OA% 3 +mikado mI'kAd@U K6$ 3 +mikados mI'kAd@Uz Kj$ 3 +mike maIk K6% 1 +mikes maIks Kj% 1 +miladies mI'leIdIz Kj$ 3 +milady mI'leIdI K8$ 3 +milage 'maIlIdZ K6% 2 +milages 'maIlIdZIz Kj% 3 +milch mIltS OA$ 1 +mild maIld OC% 1 +milder 'maIld@R Or% 2 +mildest 'maIldIst Os% 2 +mildew 'mIldju J0$,L@% 22A,6A +mildewed 'mIldjud Jc$,Jd$ 22A,6A +mildewing 'mIldjuIN Jb$ 32A,6A +mildews 'mIldjuz Ja$ 22A,6A +mildly 'maIldlI Pu% 2 +mildness 'maIldn@s L@% 2 +mile maIl K6% 1 +mileage 'maIlIdZ K6% 2 +mileages 'maIlIdZIz Kj% 3 +mileometer maI'l0mIt@R K6% 4 +mileometers maI'l0mIt@z Kj% 4 +miler 'maIl@R K6% 2 +milers 'maIl@z Kj% 2 +miles maIlz Kj% 1 +milestone 'maIlst@Un K6% 2 +milestones 'maIlst@Unz Kj% 2 +milieu 'milj3 K6% 2 +milieus 'milj3z Kj$ 2 +militancy 'mIlIt@nsI L@% 4 +militant 'mIlIt@nt K6%,OA% 3 +militants 'mIlIt@nts Kj% 3 +militarily 'mIlItrIlI Pu% 4 +militarism 'mIlIt@rIz@m L@% 5 +militarist 'mIlIt@rIst K6% 4 +militaristic ,mIlIt@'rIstIk OA% 5 +militarists 'mIlIt@rIsts Kj$ 4 +military 'mIlItrI L@%,OA% 3 +militate 'mIlIteIt I2% 33A +militated 'mIlIteItId Ic%,Id% 43A +militates 'mIlIteIts Ia% 33A +militating 'mIlIteItIN Ib% 43A +militia mI'lIS@ K6% 3 +militiaman mI'lIS@m@n Ki% 4 +militiamen mI'lIS@m@n Kj% 4 +militias mI'lIS@z Kj% 3 +milk mIlk J0%,L@% 12A,6A +milk-churn 'mIlk-tS3n K6% 2 +milk-churns 'mIlk-tS3nz Kj% 2 +milk-powder 'mIlk-paUd@R M6% 3 +milk-powders 'mIlk-paUd@z Mj% 3 +milk-shake 'mIlk-SeIk K6% 2 +milk-shakes 'mIlk-SeIks Kj% 2 +milk-teeth 'mIlk-tiT Kj% 2 +milk-tooth 'mIlk-tuT Ki$ 2 +milk-white 'mIlk-waIt OA% 2 +milkbar 'mIlkbAR K6% 2 +milkbars 'mIlkbAz Kj% 2 +milked mIlkt Jc%,Jd% 12A,6A +milkier 'mIlkI@R Or% 3 +milkiest 'mIlkIIst Os% 3 +milking 'mIlkIN Jb% 22A,6A +milking-machine 'mIlkIN-m@Sin K6% 4 +milking-machines 'mIlkIN-m@Sinz Kj% 4 +milkmaid 'mIlkmeId K6% 2 +milkmaids 'mIlkmeIdz Kj% 2 +milkman 'mIlkm@n Ki% 2 +milkmen 'mIlkm@n Kj% 2 +milks mIlks Ja% 12A,6A +milkshake 'mIlkSeIk K6% 2 +milkshakes 'mIlkSeIks Kj% 2 +milksop 'mIlks0p K6% 2 +milksops 'mIlks0ps Kj% 2 +milkweed 'mIlkwid M6$ 2 +milkweeds 'mIlkwidz Mj$ 2 +milky 'mIlkI OD% 2 +mill mIl J0%,K6% 12C,6A +mill-dam 'mIl-d&m K6$ 2 +mill-dams 'mIl-d&mz Kj$ 2 +mill-girl 'mIl-g3l K6% 2 +mill-girls 'mIl-g3lz Kj% 2 +mill-hand 'mIl-h&nd K6% 2 +mill-hands 'mIl-h&ndz Kj% 2 +millboard 'mIlbOd L@$ 2 +milled mIld Jc%,Jd% 12C,6A +millenarian ,mIlI'ne@rI@n K6$ 5 +millenarians ,mIlI'ne@rI@nz Kj$ 5 +millennia mI'lenI@ Kj% 4 +millennial mI'lenI@l OA% 4 +millennium mI'lenI@m Ki% 4 +millepede 'mIlIpid K6% 3 +millepedes 'mIlIpidz Kj% 3 +miller 'mIl@R K6% 2 +millers 'mIl@z Kj% 2 +millet 'mIlIt L@% 2 +milli- 'mIlI- U-% 2 +milliard 'mIlIAd K6$ 3 +milliards 'mIlIAdz Kj$ 3 +millibar 'mIlIbAR K6% 3 +millibars 'mIlIbAz Kj% 3 +milligram 'mIlIgr&m K6% 3 +milligrams 'mIlIgr&mz Kj% 3 +millimetre 'mIlImit@R K6% 4 +millimetres 'mIlImit@z Kj% 4 +milliner 'mIlIn@R K6% 3 +milliners 'mIlIn@z Kj% 3 +millinery 'mIlIn@rI L@% 4 +milling 'mIlIN Jb% 22C,6A +million 'mIlI@n K6%,OA% 3 +millionaire ,mIlI@'ne@R K6% 4 +millionaires ,mIlI@'ne@z Kj% 4 +millionairess ,mIlI@'ne@rIs K6% 5 +millionairesses ,mIlI@'ne@rIsIz Kj$ 6 +millionfold 'mIlI@nf@Uld Pu% 4 +millions 'mIlI@nz Kj% 3 +millionth 'mIlI@nT K6%,OA% 3 +millionths 'mIlI@nTs Kj% 3 +millipede 'mIlIpid K6% 3 +millipedes 'mIlIpidz Kj% 3 +millpond 'mIlp0nd K6% 2 +millponds 'mIlp0ndz Kj$ 2 +millrace 'mIlreIs K6% 2 +millraces 'mIlreIsIz Kj$ 3 +mills mIlz Ja%,Kj% 12C,6A +millstone 'mIlst@Un K6% 2 +millstones 'mIlst@Unz Kj% 2 +millwheel 'mIlwil K6% 2 +millwheels 'mIlwilz Kj% 2 +millwright 'mIlraIt K6$ 2 +millwrights 'mIlraIts Kj$ 2 +milometer maI'l0mIt@R K6% 4 +milometers maI'l0mIt@z Kj% 4 +milord mI'lOd K6$ 2 +milords mI'lOdz Kj$ 2 +milt mIlt L@$ 1 +mime maIm J2%,M6% 12A,6A +mimed maImd Jc%,Jd% 12A,6A +mimeograph 'mImI@grAf H0%,K6% 46A +mimeographed 'mImI@grAft Hc%,Hd% 46A +mimeographing 'mImI@grAfIN Hb$ 56A +mimeographs 'mImI@grAfs Ha$,Kj% 46A +mimes maImz Ja%,Mj% 12A,6A +mimetic mI'metIk OA$ 3 +mimic 'mImIk H5%,K6%,Oq% 26A +mimicked 'mImIkt Hc%,Hd% 26A +mimicking 'mImIkIN Hb% 36A +mimicry 'mImIkrI L@% 3 +mimics 'mImIks Ha%,Kj% 26A +miming 'maImIN Jb% 22A,6A +mimosa mI'm@Uz@ M6% 3 +mimosas mI'm@Uz@z Mj$ 3 +min min Y>% 1 +minaret ,mIn@'ret K6% 3 +minarets ,mIn@'rets Kj% 3 +minatory 'mIn@t@rI OA$ 4 +mince mIns J2%,L@% 12A,6A +mince-pie mIns-'paI K6% 2 +mince-pies mIns-'paIz Kj% 2 +minced mInst Jc%,Jd% 12A,6A +mincemeat 'mInsmit L@% 2 +mincer 'mIns@R K6% 2 +mincers 'mIns@z Kj% 2 +minces 'mInsIz Ja% 22A,6A +mincing 'mInsIN Jb%,OA% 22A,6A +mincingly 'mInsINlI Pu% 3 +mind maInd J0*,M6* 12A,6A,6C,9,19C +mind-bending 'maInd-bendIN OA% 3 +mind-blowing 'maInd-bl@UIN OA% 3 +mind-boggling 'maInd-b0glIN OA% 3 +mind-reader 'maInd-rid@R K6% 3 +mind-readers 'maInd-rid@z Kj% 3 +minded 'maIndId Jc%,Jd%,Op%,Ot% 22A,6A,6C,9,19C +minder 'maInd@R K6% 2 +minders 'maInd@z Kj% 2 +mindful 'maIndf@l OA% 2 +mindfully 'maIndf@lI Pu% 3 +mindfulness 'maIndfln@s L@% 3 +minding 'maIndIN Jb% 22A,6A,6C,9,19C +mindless 'maIndlIs OA% 2 +mindlessly 'maIndlIslI Pu% 3 +mindlessness 'maIndlIsn@s L@% 3 +minds maIndz Ja%,Mj% 12A,6A,6C,9,19C +mine maIn J2%,K6%,OA%,Qx% 12A,3A,6A +mine-detector 'maIn-dItekt@R K6% 4 +mine-detectors 'maIn-dItekt@z Kj% 4 +mine-disposal 'maIn-dIsp@Uzl M6% 4 +mine-disposals 'maIn-dIsp@Uzlz Mj$ 4 +mined maInd Jc%,Jd% 12A,3A,6A +minefield 'maInfild K6% 2 +minefields 'maInfildz Kj% 2 +minelayer 'maInleI@R K6% 3 +minelayers 'maInleI@z Kj% 3 +minelaying 'maInleIIN L@% 3 +miner 'maIn@R K6% 2 +mineral 'mIn@r@l K6%,OA% 3 +mineralogist ,mIn@'r&l@dZIst K6% 5 +mineralogists ,mIn@'r&l@dZIsts Kj% 5 +mineralogy ,mIn@'r&l@dZI L@% 5 +minerals 'mIn@r@lz Kj% 3 +miners 'maIn@z Kj% 2 +mines maInz Ja%,Kj% 12A,3A,6A +minestrone ,mInI'str@UnI L@% 4 +minesweeper 'maInswip@R K6% 3 +minesweepers 'maInswip@z Kj% 3 +minesweeping 'maInswipIN L@% 3 +mineworker 'maInw3k@R K6% 3 +mineworkers 'maInw3k@z Kj% 3 +mingier 'mIndZI@R Or$ 3 +mingiest 'mIndZIIst Os$ 3 +mingle 'mINgl J2% 22A,2C,6A,14 +mingled 'mINgld Jc%,Jd% 22A,2C,6A,14 +mingles 'mINglz Ja% 22A,2C,6A,14 +mingling 'mINglIN Jb% 22A,2C,6A,14 +mingy 'mIndZI OD% 2 +mini- 'mInI- U-% 2 +miniature 'mInItS@R M6% 3 +miniatures 'mInItS@z Mj% 3 +miniaturist 'mInItS@rIst K6% 4 +miniaturists 'mInItS@rIsts Kj% 4 +miniaturization ,mInItS@raI'zeISn L@% 6 +miniaturize 'mInItS@raIz H2% 46A +miniaturized 'mInItS@raIzd Hc%,Hd% 46A +miniaturizes 'mInItS@raIzIz Ha% 56A +miniaturizing 'mInItS@raIzIN Hb% 56A +minim 'mInIm K6% 2 +minima 'mInIm@ Kj$ 3 +minimal 'mInIml OA% 3 +minimally 'mInIm@lI Pu% 4 +minimize 'mInImaIz H2% 36A +minimized 'mInImaIzd Hc%,Hd% 36A +minimizes 'mInImaIzIz Ha% 46A +minimizing 'mInImaIzIN Hb% 46A +minims 'mInImz Kj% 2 +minimum 'mInIm@m K6%,OA% 3 +minimums 'mInIm@mz Kj$ 3 +mining 'maInIN Jb%,L@% 22A,3A,6A +minion 'mInI@n K6$ 2 +minions 'mInI@nz Kj% 2 +minister 'mInIst@R I0%,K6% 33A +ministered 'mInIst@d Ic%,Id% 33A +ministerial ,mInI'stI@rI@l OA% 5 +ministerially ,mInI'stI@rI@lI Pu% 6 +ministering 'mInIst@rIN Ib% 43A +ministers 'mInIst@z Ia%,Kj% 33A +ministrant 'mInIstr@nt K6$,Oq$ 3 +ministrants 'mInIstr@nts Kj$ 3 +ministration ,mInI'streISn M6$ 4 +ministrations ,mInI'streISnz Mj% 4 +ministries 'mInIstrIz Kj% 3 +ministry 'mInIstrI K8% 3 +miniver 'mInIv@R L@$ 3 +mink mINk M6% 1 +minks mINks Mj% 1 +minnow 'mIn@U K6% 2 +minnows 'mIn@Uz Kj% 2 +minor 'maIn@R K6%,OA% 2 +minorities maI'n0rItIz Mj% 4 +minority maI'n0rItI M8% 4 +minors 'maIn@z Kj% 2 +minster 'mInst@R K6% 2 +minsters 'mInst@z Kj$ 2 +minstrel 'mInstr@l K6% 2 +minstrels 'mInstr@lz Kj% 2 +minstrelsy 'mInstr@lsI L@$ 3 +mint mInt H0%,M6% 16A +minted 'mIntId Hc%,Hd% 26A +minting 'mIntIN Hb% 26A +mints mInts Ha%,Mj% 16A +minuet ,mInjU'et K6% 3 +minuets ,mInjU'ets Kj% 3 +minus 'maIn@s K7%,OA%,T-% 2 +minuscule 'mIn@skjul OA% 3 +minuses 'maIn@sIz Kj$ 3 +minute 'mInIt H2%,K6% 26A +minute maI'njut OB% 2 +minute-book 'mInIt-bUk K6% 3 +minute-books 'mInIt-bUks Kj% 3 +minute-gun 'mInIt-gVn K6$ 3 +minute-guns 'mInIt-gVnz Kj$ 3 +minute-hand 'mInIt-h&nd K6% 3 +minute-hands 'mInIt-h&ndz Kj$ 3 +minuted 'mInItId Hc%,Hd% 36A +minutely maI'njutlI Pu% 3 +minuteman 'mInItm&n Ki$ 3 +minutemen 'mInItmen Kj$ 3 +minuteness maI'njutn@s L@% 3 +minuter maI'njut@R Or$ 3 +minutes 'mInIts Ha$,Kj% 26A +minutest maI'njutIst Os% 3 +minutiae maI'njuSIi Kj% 4 +minuting 'mInItIN Hb% 36A +minx mINks K7% 1 +minxes 'mINksIz Kj% 2 +miracle 'mIr@kl K6% 3 +miracles 'mIr@klz Kj% 3 +miraculous mI'r&kjUl@s OA% 4 +miraculously mI'r&kjUl@slI Pu% 5 +mirage 'mIrAZ K6% 2 +mirages 'mIrAZIz Kj% 3 +mire 'maI@R J2$,L@% 12A,6A +mired 'maI@d Jc$,Jd$ 12A,6A +mires 'maI@z Ja$ 12A,6A +mirier 'maI@rI@R Or$ 3 +miriest 'maI@rIIst Os$ 3 +miring 'maI@rIN Jb$ 22A,6A +mirror 'mIr@R H0%,K6% 26A +mirrored 'mIr@d Hc%,Hd% 26A +mirroring 'mIr@rIN Hb% 36A +mirrors 'mIr@z Ha%,Kj% 26A +mirth m3T L@% 1 +mirthful 'm3Tf@l OA% 2 +mirthfully 'm3Tf@lI Pu% 3 +mirthless 'm3Tl@s OA% 2 +miry 'maI@rI OD$ 2 +misadventure ,mIs@d'ventS@R M6% 4 +misadventures ,mIs@d'ventS@z Mj$ 4 +misadvise ,mIs@d'vaIz H2$ 36A +misadvised ,mIs@d'vaIzd Hc$,Hd$ 36A +misadvises ,mIs@d'vaIzIz Ha$ 46A +misadvising ,mIs@d'vaIzIN Hb$ 46A +misalliance ,mIs@'laI@ns K6$ 4 +misalliances ,mIs@'laI@nsIz Kj$ 5 +misanthrope 'mIsnTr@Up K6% 3 +misanthropes 'mIsnTr@Ups Kj$ 3 +misanthropic ,mIsn'Tr0pIk OA% 4 +misanthropy mIs'&nTr@pI L@% 4 +misapplication ,mIs,&plI'keISn K6% 5 +misapplications ,mIs,&plI'keISnz Kj$ 5 +misapplied ,mIs@'plaId Hc%,Hd% 36A +misapplies ,mIs@'plaIz Ha% 36A +misapply ,mIs@'plaI H3% 36A +misapplying ,mIs@'plaIIN Hb% 46A +misapprehend ,mIs&prI'hend H0% 46A +misapprehended ,mIs&prI'hendId Hc%,Hd% 56A +misapprehending ,mIs&prI'hendIN Hb% 56A +misapprehends ,mIs&prI'hendz Ha% 46A +misapprehension ,mIs&prI'henSn M6% 5 +misapprehensions ,mIs&prI'henSnz Mj% 5 +misappropriate ,mIs@'pr@UprIeIt H2% 56A +misappropriated ,mIs@'pr@UprIeItId Hc%,Hd% 66A +misappropriates ,mIs@'pr@UprIeIts Ha% 56A +misappropriating ,mIs@'pr@UprIeItIN Hb% 66A +misappropriation ,mIs@,pr@UprI'eISn M6% 6 +misappropriations ,mIs@,pr@UprI'eISnz Mj% 6 +misbegotten ,mIsbI'g0tn OA% 4 +misbehave ,mIsbI'heIv J2% 32A,6B +misbehaved ,mIsbI'heIvd Jc%,Jd% 32A,6B +misbehaves ,mIsbI'heIvz Ja% 32A,6B +misbehaving ,mIsbI'heIvIN Jb% 42A,6B +misbehaviour ,mIsbI'heIvI@R L@% 4 +misc mIsk Y~% 1 +miscalculate ,mIs'k&lkjUleIt J2% 4 +miscalculated ,mIs'k&lkjUleItId Jc%,Jd% 5 +miscalculates ,mIs'k&lkjUleIts Ja% 4 +miscalculating ,mIs'k&lkjUleItIN Jb% 5 +miscalculation ,mIs,k&lkjU'leISn M6% 5 +miscalculations ,mIs,k&lkjU'leISnz Mj% 5 +miscall ,mIs'kOl H0$ 2 +miscalled ,mIs'kOld Hc$,Hd$ 2 +miscalling ,mIs'kOlIN Hb$ 3 +miscalls ,mIs'kOlz Ha$ 2 +miscarriage ,mIs'k&rIdZ M6% 3 +miscarriages ,mIs'k&rIdZIz Mj% 4 +miscarried ,mIs'k&rId Hc%,Hd% 32A +miscarries ,mIs'k&rIz Ha% 32A +miscarry ,mIs'k&rI H3% 32A +miscarrying ,mIs'k&rIIN Hb% 42A +miscast ,mIs'kAst H5$,Hc%,Hd% 26A +miscasting ,mIs'kAstIN Hb% 36A +miscasts ,mIs'kAsts Ha$ 26A +miscegenation ,mIsIdZI'neISn L@$ 5 +miscellanea ,mIs@'leInI@ Kj% 5 +miscellaneous ,mIs@'leInI@s OA% 5 +miscellanies mI'sel@nIz Kj$ 4 +miscellany mI'sel@nI K8% 4 +mischance ,mIs'tSAns M6% 2 +mischances ,mIs'tSAnsIz Mj$ 3 +mischief 'mIstSIf M6% 2 +mischief-maker 'mIstSif-meIk@R K6% 4 +mischief-makers 'mIstSif-meIk@z Kj% 4 +mischief-making 'mIstSif-meIkIN L@% 4 +mischiefs 'mIstSIfs Mj$ 2 +mischievous 'mIstSIv@s OA% 3 +mischievously 'mIstSIv@slI Pu% 4 +mischievousness 'mIstSIv@sn@s L@% 4 +misconceive ,mIsk@n'siv J2$ 33A,6A +misconceived ,mIsk@n'sivd Jc$,Jd% 33A,6A +misconceives ,mIsk@n'sivz Ja$ 33A,6A +misconceiving ,mIsk@n'sivIN Jb$ 43A,6A +misconception ,mIsk@n'sepSn M6% 4 +misconceptions ,mIsk@n'sepSnz Mj% 4 +misconduct ,mIs'k0ndVkt L@% 3 +misconduct ,mIsk@n'dVkt H0$ 36A,6B,14 +misconducted ,mIsk@n'dVktId Hc$,Hd$ 46A,6B,14 +misconducting ,mIsk@n'dVktIN Hb$ 46A,6B,14 +misconducts ,mIsk@n'dVkts Ha$ 36A,6B,14 +misconstruction ,mIsk@n'strVkSn M6% 4 +misconstructions ,mIsk@n'strVkSnz Mj$ 4 +misconstrue ,mIsk@n'stru H2% 36A +misconstrued ,mIsk@n'strud Hc%,Hd% 36A +misconstrues ,mIsk@n'struz Ha% 36A +misconstruing ,mIsk@n'struIN Hb% 46A +miscount ,mIs'kaUnt J0%,K6% 22A,6A +miscounted ,mIs'kaUntId Jc%,Jd% 32A,6A +miscounting ,mIs'kaUntIN Jb% 32A,6A +miscounts ,mIs'kaUnts Ja%,Kj% 22A,6A +miscreant 'mIskrI@nt K6% 3 +miscreants 'mIskrI@nts Kj% 3 +misdate ,mIs'deIt H2% 26A +misdated ,mIs'deItId Hc$,Hd$ 36A +misdates ,mIs'deIts Ha$ 26A +misdating ,mIs'deItIN Hb$ 36A +misdeal ,mIs'dil J5$,K6$ 22A,6A +misdealing ,mIs'dilIN Jb$ 32A,6A +misdeals ,mIs'dilz Ja$,Kj$ 22A,6A +misdealt ,mIs'delt Jc$,Jd$ 22A,6A +misdeed ,mIs'did K6% 2 +misdeeds ,mIs'didz Kj% 2 +misdemeanour ,mIsdI'min@R K6% 4 +misdemeanours ,mIsdI'min@z Kj% 4 +misdirect ,mIsdI'rekt H0% 36A +misdirected ,mIsdI'rektId Hc%,Hd% 46A +misdirecting ,mIsdI'rektIN Hb% 46A +misdirection ,mIsdI'rekSn K6$ 4 +misdirections ,mIsdI'rekSnz Kj$ 4 +misdirects ,mIsdI'rekts Ha% 36A +misdoing ,mIs'duIN K6% 3 +misdoings ,mIs'duINz Kj% 3 +mise en sc`ene ,miz 0n 'seIn L@$ 3 +miser 'maIz@R K6% 2 +miserable 'mIzr@bl OA% 3 +miserably 'mIzr@blI Pu% 3 +miseries 'mIz@rIz Mj% 3 +miserliness 'maIz@lIn@s L@% 4 +miserly 'maIz@lI OA% 3 +misers 'maIz@z Kj% 2 +misery 'mIz@rI M8% 3 +misfire ,mIs'faI@R I2%,K6% 22A +misfired ,mIs'faI@d Ic%,Id% 22A +misfires ,mIs'faI@z Ia%,Kj% 22A +misfiring ,mIs'faI@rIN Ib% 32A +misfit 'mIsfIt K6% 2 +misfits 'mIsfIts Kj% 2 +misfortune ,mIs'fOtSun M6% 3 +misfortunes ,mIs'fOtSunz Mj% 3 +misgave ,mIs'geIv Hc$ 2 +misgive ,mIs'gIv H5$ 2 +misgiven ,mIs'gIvn Hd$ 3 +misgives ,mIs'gIvz Ha$ 2 +misgiving ,mIs'gIvIN Hb$,M6$ 3 +misgivings ,mIs'gIvINz Mj% 3 +misgovern ,mIs'gVvn H0% 36A +misgoverned ,mIs'gVvnd Hc%,Hd% 36A +misgoverning ,mIs'gVvnIN Hb% 46A +misgovernment ,mIs'gVvnm@nt L@% 4 +misgoverns ,mIs'gVvnz Ha% 36A +misguide ,mIs'gaId H2$ 26A,14 +misguided ,mIs'gaIdId Hc$,Hd%,OA% 36A,14 +misguides ,mIs'gaIdz Ha$ 26A,14 +misguiding ,mIs'gaIdIN Hb$ 36A,14 +mishandle ,mIs'h&ndl H2% 3 +mishandled ,mIs'h&ndld Hc%,Hd% 3 +mishandles ,mIs'h&ndlz Ha% 3 +mishandling ,mIs'h&ndlIN Hb% 3 +mishap 'mIsh&p M6% 2 +mishaps 'mIsh&ps Mj% 2 +mishmash 'mISm&S L@% 2 +misinform ,mIsIn'fOm H0% 36A +misinformation ,mIsInf@'meISn L@% 5 +misinformed ,mIsIn'fOmd Hc%,Hd% 36A +misinforming ,mIsIn'fOmIN Hb% 46A +misinforms ,mIsIn'fOmz Ha% 36A +misinterpret ,mIsIn't3prIt H0% 46A +misinterpretation ,mIsIn,t3prI'teISn M6% 6 +misinterpretations ,mIsIn,t3prI'teISnz Mj% 6 +misinterpreted ,mIsIn't3prItId Hc%,Hd% 56A +misinterpreting ,mIsIn't3prItIN Hb% 56A +misinterprets ,mIsIn't3prIts Ha% 46A +misjudge ,mIs'dZVdZ J2% 22A,6A +misjudged ,mIs'dZVdZd Jc%,Jd% 22A,6A +misjudges ,mIs'dZVdZIz Ja% 32A,6A +misjudging ,mIs'dZVdZIN Jb% 32A,6A +mislaid ,mIs'leId Hc%,Hd% 26A +mislay ,mIs'leI H5% 26A +mislaying ,mIs'leIIN Hb% 36A +mislays ,mIs'leIz Ha% 26A +mislead ,mIs'lid H5% 26A +misleading ,mIs'lidIN Hb% 36A +misleads ,mIs'lidz Ha% 26A +misled ,mIs'led Hc%,Hd% 26A +mismanage ,mIs'm&nIdZ H2% 36A +mismanaged ,mIs'm&nIdZd Hc%,Hd% 36A +mismanagement ,mIs'm&nIdZm@nt L@% 4 +mismanages ,mIs'm&nIdZIz Ha% 46A +mismanaging ,mIs'm&nIdZIN Hb% 46A +misname ,mIs'neIm H2% 26A +misnamed ,mIs'neImd Hc%,Hd% 26A +misnames ,mIs'neImz Ha% 26A +misnaming ,mIs'neImIN Hb% 36A +misnomer ,mIs'n@Um@R K6% 3 +misnomers ,mIs'n@Um@z Kj% 3 +misogynist mI's0dZInIst K6% 4 +misogynists mI's0dZInIsts Kj% 4 +misplace ,mIs'pleIs H2% 26A +misplaced ,mIs'pleIst Hc%,Hd% 26A +misplaces ,mIs'pleIsIz Ha% 36A +misplacing ,mIs'pleIsIN Hb% 36A +misprint 'mIsprInt K6% 2 +misprint ,mIs'prInt H0$ 26A +misprinted ,mIs'prIntId Hc$,Hd% 36A +misprinting ,mIs'prIntIN Hb$ 36A +misprints 'mIsprInts Kj% 2 +misprints ,mIs'prInts Ha$ 26A +mispronounce ,mIspr@'naUns H2% 36A +mispronounced ,mIspr@'naUnst Hc%,Hd% 36A +mispronounces ,mIspr@'naUnsIz Ha% 46A +mispronouncing ,mIspr@'naUnsIN Hb% 46A +mispronunciation ,mIspr@,nVnsI'eISn K6% 6 +mispronunciations ,mIspr@,nVnsI'eISnz Kj% 6 +misquotation ,mIskw@U'teISn M6% 4 +misquotations ,mIskw@U'teISnz Mj% 4 +misquote ,mIs'kw@Ut H2% 26A +misquoted ,mIs'kw@UtId Hc%,Hd% 36A +misquotes ,mIs'kw@Uts Ha% 26A +misquoting ,mIs'kw@UtIN Hb% 36A +misread ,mIs'red Hc%,Hd% 26A +misread ,mIs'rid H5% 26A +misreading ,mIs'ridIN Hb% 36A +misreads ,mIs'ridz Ha% 26A +misrepresent ,mIs,reprI'zent H0% 4 +misrepresentation ,mIs,reprIzen'teISn M6% 6 +misrepresentations ,mIs,reprIzen'teISnz Mj% 6 +misrepresented ,mIs,reprI'zentId Hc%,Hd% 5 +misrepresenting ,mIs,reprI'zentIN Hb% 5 +misrepresents ,mIs,reprI'zents Ha% 4 +misrule ,mIs'rul L@% 2 +miss mIs J1%,K7% 12A,2C,6A,6B,6C,15B +missal 'mIsl K6$ 2 +missals 'mIslz Kj$ 2 +missed mIst Jc%,Jd% 12A,2C,6A,6B,6C,15B +misses 'mIsIz Ja%,Kj% 22A,2C,6A,6B,6C,15B +misshapen ,mIs'SeIp@n OA% 3 +missies 'mIsIz Kj$ 2 +missile 'mIsaIl K6% 2 +missiles 'mIsaIlz Kj% 2 +missing 'mIsIN Jb%,OA% 22A,2C,6A,6B,6C,15B +mission 'mISn K6% 2 +missionaries 'mIS@nrIz Kj% 3 +missionary 'mIS@nrI K8% 3 +missions 'mISnz Kj% 2 +missis 'mIsIz Ki$ 2 +missive 'mIsIv K6% 2 +missives 'mIsIvz Kj% 2 +misspell ,mIs'spel H0% 26A +misspelled ,mIs'speld Hc%,Hd% 26A +misspelling ,mIs'spelIN Hb%,K6% 36A +misspellings ,mIs'spelINz Kj% 3 +misspells ,mIs'spelz Ha% 26A +misspelt ,mIs'spelt Hc%,Hd% 26A +misspend ,mIs'spend H5% 26A +misspending ,mIs'spendIN Hb% 36A +misspends ,mIs'spendz Ha% 26A +misspent ,mIs'spent Hc%,Hd% 26A +misstate ,mIs'steIt H2$ 26A +misstated ,mIs'steItId Hc$,Hd$ 36A +misstatement ,mIs'steItm@nt K6% 3 +misstatements ,mIs'steItm@nts Kj% 3 +misstates ,mIs'steIts Ha$ 26A +misstating ,mIs'steItIN Hb$ 36A +missus 'mIsIz Ki$ 2 +missy 'mIsI K8$ 2 +mist mIst J0%,M6% 12C,6A +mistake mI'steIk J5%,K6% 26A,10,14 +mistaken mI'steIkn Jd%,OA% 36A,10,14 +mistakenly mI'steIknlI Pu% 4 +mistakes mI'steIks Ja%,Kj% 26A,10,14 +mistaking mI'steIkIN Jb% 36A,10,14 +misted 'mIstId Jc%,Jd% 22C,6A +mister 'mIst@R Ki% 2 +mistier 'mIstI@R Or% 3 +mistiest 'mIstIIst Os% 3 +mistily 'mIstIlI Pu% 3 +mistime ,mIs'taIm H2% 2 +mistimed ,mIs'taImd Hc%,Hd% 2 +mistimes ,mIs'taImz Ha% 2 +mistiming ,mIs'taImIN Hb% 3 +mistiness 'mIstIn@s L@% 3 +misting 'mIstIN Jb% 22C,6A +mistletoe 'mIslt@U L@% 3 +mistook mI'stUk Jc% 26A,10,14 +mistral 'mIstr@l K6$ 2 +mistrals 'mIstr@lz Kj$ 2 +mistranslate ,mIstr&nz'leIt H2% 36A +mistranslated ,mIstr&nz'leItId Hc%,Hd% 46A +mistranslates ,mIstr&nz'leIts Ha% 36A +mistranslating ,mIstr&nz'leItIN Hb% 46A +mistranslation ,mIstr&ns'leISn M6% 4 +mistranslations ,mIstr&ns'leISnz Mj% 4 +mistress 'mIstrIs K7% 2 +mistresses 'mIstrIsIz Kj% 3 +mistrial ,mIs'traI@l K6$ 3 +mistrials ,mIs'traI@lz Kj$ 3 +mistrust ,mIs'trVst H0%,L@% 26A +mistrusted ,mIs'trVstId Hc%,Hd% 36A +mistrustful ,mIs'trVstf@l OA% 3 +mistrustfully mIs'trVstf@lI Pu% 4 +mistrusting ,mIs'trVstIN Hb% 36A +mistrusts ,mIs'trVsts Ha% 26A +mists mIsts Ja%,Mj% 12C,6A +misty 'mIstI OD% 2 +misunderstand ,mIs,Vnd@'st&nd H5% 46A +misunderstanding ,mIs,Vnd@'st&ndIN Hb%,M6% 56A +misunderstandings ,mIs,Vnd@'st&ndINz Mj% 5 +misunderstands ,mIs,Vnd@'st&ndz Ha% 46A +misunderstood ,mIs,Vnd@'stUd Hc%,Hd% 46A +misuse ,mIs'jus M6% 2 +misuse ,mIs'juz H2% 26A +misused ,mIs'juzd Hc%,Hd% 26A +misuses ,mIs'jusIz Mj$ 3 +misuses ,mIs'juzIz Ha% 36A +misusing ,mIs'juzIN Hb% 36A +mite maIt K6$ 1 +mites maIts Kj$ 1 +mitigate 'mItIgeIt H2% 36A +mitigated 'mItIgeItId Hc%,Hd% 46A +mitigates 'mItIgeIts Ha% 36A +mitigating 'mItIgeItIN Hb% 46A +mitigation ,mItI'geISn L@% 4 +mitre 'maIt@R K6% 2 +mitre-joint 'maIt@-dZoInt K6$ 3 +mitre-joints 'maIt@-dZoInts Kj$ 3 +mitres 'maIt@z Kj% 2 +mitt mIt K6% 1 +mitten 'mItn K6% 2 +mittens 'mItnz Kj% 2 +mitts mIts Kj% 1 +mix mIks J1%,K7% 12A,2C,3A,6A,12B,13B,14,15B +mix-up 'mIks-Vp K6% 2 +mix-ups 'mIks-Vps Kj% 2 +mixed mIkst Jc%,Jd%,OA% 12A,2C,3A,6A,12B,13B,14,15B +mixed-up mIkst-'Vp OA% 2 +mixer 'mIks@R K6% 2 +mixers 'mIks@z Kj% 2 +mixes 'mIksIz Ja%,Kj% 22A,2C,3A,6A,12B,13B,14,15B +mixing 'mIksIN Jb% 22A,2C,3A,6A,12B,13B,14,15B +mixture 'mIkstS@R M6% 2 +mixtures 'mIkstS@z Mj% 2 +mizen 'mIzn K6$ 2 +mizens 'mIznz Kj$ 2 +mizzen 'mIzn K6$ 2 +mizzen-mast 'mIzn-mAst K6$ 3 +mizzen-masts 'mIzn-mAsts Kj$ 3 +mizzens 'mIznz Kj$ 2 +mizzle 'mIzl I2$ 22A +mizzled 'mIzld Ic$,Id$ 22A +mizzles 'mIzlz Ia$ 22A +mizzling 'mIzlIN Ib$ 22A +ml 'mIlIlit@z Y]% 4 +mm 'mIlImit@z Y]% 4 +mnemonic nI'm0nIk OA% 3 +mnemonics nI'm0nIks Lk% 3 +mo m@U Ki$ 1 +moan m@Un J0%,K6% 12A,2C,15B +moaned m@Und Jc%,Jd% 12A,2C,15B +moaning 'm@UnIN Jb% 22A,2C,15B +moans m@Unz Ja%,Kj% 12A,2C,15B +moat m@Ut K6% 1 +moated 'm@UtId OA% 2 +moats m@Uts Kj% 1 +mob m0b H4%,K6% 16A +mobbed m0bd Hc%,Hd% 16A +mobbing 'm0bIN Hb% 26A +mobcap 'm0bk&p K6$ 2 +mobcaps 'm0bk&ps Kj$ 2 +mobile 'm@UbaIl K6%,OA% 2 +mobiles 'm@UbaIlz Kj% 2 +mobility m@U'bIlItI L@% 4 +mobilization ,m@UbIlaI'zeISn M6% 5 +mobilizations ,m@UbIlaI'zeISnz Mj% 5 +mobilize 'm@UbIlaIz J2% 32A,6A +mobilized 'm@UbIlaIzd Jc%,Jd% 32A,6A +mobilizes 'm@UbIlaIzIz Ja% 42A,6A +mobilizing 'm@UbIlaIzIN Jb% 42A,6A +mobs m0bz Ha%,Kj% 16A +mobster 'm0bst@R K6% 2 +mobsters 'm0bst@z Kj% 2 +moccasin 'm0k@sIn M6% 3 +moccasins 'm0k@sInz Mj% 3 +mocha 'm0k@ L@$ 2 +mock m0k J0%,K6%,Oq% 13A,6A +mock-up 'm0k-Vp K6% 2 +mock-ups 'm0k-Vps Kj% 2 +mocked m0kt Jc%,Jd% 13A,6A +mocker 'm0k@R K6% 2 +mockeries 'm0k@rIz Mj% 3 +mockers 'm0k@z Kj% 2 +mockery 'm0k@rI M8% 3 +mocking 'm0kIN Jb% 23A,6A +mockingly 'm0kINlI Pu% 3 +mocks m0ks Ja%,Kj% 13A,6A +mod m0d K6$,OA$ 1 +mod cons ,m0d 'k0nz Y)% 2 +modal 'm@Udl OA% 2 +modalities m@U'd&lItIz Mj% 4 +modality m@U'd&lItI M8% 4 +mode m@Ud K6% 1 +model 'm0dl J4%,K6% 22A,6A,14,15A +modeler 'm0dl@R K6% 3 +modelers 'm0dl@z Kj% 3 +modelled 'm0dld Jc%,Jd% 22A,6A,14,15A +modeller 'm0dl@R K6% 3 +modellers 'm0dl@z Kj% 3 +modelling 'm0d@lIN Jb%,L@% 32A,6A,14,15A +models 'm0dlz Ja%,Kj% 22A,6A,14,15A +moderate 'm0d@r@t K6%,OA% 3 +moderate 'm0d@reIt J2% 32A,6A +moderated 'm0d@reItId Jc%,Jd% 42A,6A +moderately 'm0d@r@tlI Pu% 4 +moderates 'm0d@r@ts Kj% 3 +moderates 'm0d@reIts Ja% 32A,6A +moderating 'm0d@reItIN Jb% 42A,6A +moderation ,m0d@'reISn L@% 4 +moderator 'm0d@reIt@R K6% 4 +moderators 'm0d@reIt@z Kj% 4 +modern 'm0dn K6%,OA% 2 +modernism 'm0d@nIz@m L@% 4 +modernist 'm0d@nIst K6% 3 +modernistic ,m0d@'nIstIk OA% 4 +modernists 'm0d@nIsts Kj% 3 +modernity m@'d3nItI L@% 4 +modernization ,m0d@naI'zeISn L@% 5 +modernize 'm0d@naIz H2% 36A +modernized 'm0d@naIzd Hc%,Hd% 36A +modernizes 'm0d@naIzIz Ha% 46A +modernizing 'm0d@naIzIN Hb% 46A +moderns 'm0dnz Kj$ 2 +modes m@Udz Kj% 1 +modest 'm0dIst OA% 2 +modestly 'm0dIstlI Pu% 3 +modesty 'm0dIstI L@% 3 +modicum 'm0dIk@m Ki% 3 +modification ,m0dIfI'keISn M6% 5 +modifications ,m0dIfI'keISnz Mj% 5 +modified 'm0dIfaId Hc%,Hd% 36A +modifier 'm0dIfaI@R K6% 4 +modifiers 'm0dIfaI@z Kj% 4 +modifies 'm0dIfaIz Ha% 36A +modify 'm0dIfaI H3% 36A +modifying 'm0dIfaIIN Hb% 46A +modish 'm@UdIS OA% 2 +modishly 'm@UdISlI Pu% 3 +modiste m@U'dist K6$ 2 +modistes m@U'dists Kj$ 2 +mods m0dz Kj% 1 +modular 'm0djUl@R OA% 3 +modulate 'm0djUleIt J2% 32C,6A +modulated 'm0djUleItId Jc%,Jd% 42C,6A +modulates 'm0djUleIts Ja% 32C,6A +modulating 'm0djUleItIN Jb% 42C,6A +modulation ,m0djU'leISn M6% 4 +modulations ,m0djU'leISnz Mj% 4 +module 'm0djul K6% 2 +modules 'm0djulz Kj% 2 +modus operandi ,m@Ud@s ,0p@'r&ndi Ki% 6 +modus vivendi ,m@Ud@s vI'vendi Ki% 5 +mogul 'm@Ugl K6$ 2 +moguls 'm@Uglz Kj$ 2 +mohair 'm@Uhe@R L@% 2 +moieties 'moI@tIz Kj$ 3 +moiety 'moI@tI K8$ 3 +moil moIl I0$ 1 +moiled moIld Ic$,Id$ 1 +moiling 'moIlIN Ib$ 2 +moils moIlz Ia$ 1 +moist moIst OA% 1 +moisten 'moIsn J0% 22A,6A +moistened 'moIsnd Jc%,Jd% 22A,6A +moistening 'moIsnIN Jb% 32A,6A +moistens 'moIsnz Ja% 22A,6A +moistly 'moIstlI Pu% 2 +moisture 'moIstS@R L@% 2 +moke m@Uk K6$ 1 +mokes m@Uks Kj$ 1 +molar 'm@Ul@R K6%,OA% 2 +molars 'm@Ul@z Kj% 2 +molasses m@'l&sIz L@% 3 +moldier 'm@UldI@R Or% 3 +moldiest 'm@UldIIst Os% 3 +moldy 'm@UldI OD% 2 +mole m@Ul K6% 1 +molecular m@'lekjUl@R OA% 4 +molecule 'm0lIkjul K6% 3 +molecules 'm0lIkjulz Kj% 3 +molehill 'm@UlhIl K6% 2 +molehills 'm@UlhIlz Kj% 2 +moles m@Ulz Kj% 1 +moleskin 'm@UlskIn K6% 2 +moleskins 'm@UlskInz Kj% 2 +molest m@'lest H0% 26A +molestation ,m@Ul@'steISn L@% 4 +molested m@'lestId Hc%,Hd% 36A +molesting m@'lestIN Hb% 36A +molests m@'lests Ha% 26A +moll m0l K6% 1 +mollification ,m0lIfI'keISn L@$ 5 +mollified 'm0lIfaId Hc%,Hd% 36A +mollifies 'm0lIfaIz Ha% 36A +mollify 'm0lIfaI H3% 36A +mollifying 'm0lIfaIIN Hb% 46A +molls m0lz Kj$ 1 +mollusc 'm0l@sk K6% 2 +molluscs 'm0l@sks Kj% 2 +mollycoddle 'm0lIk0dl H2%,K6% 46A +mollycoddled 'm0lIk0dld Hc%,Hd% 46A +mollycoddles 'm0lIk0dlz Ha%,Kj% 46A +mollycoddling 'm0lIk0dlIN Hb% 46A +molten 'm@Ult@n Jd% 22A,2C,6A,15B +molto 'm0lt@U Pu$ 2 +molybdenum m@'lIbd@n@m L@$ 4 +moment 'm@Um@nt M6* 2 +momentarily 'm@Um@ntr@lI Pu% 4 +momentary 'm@Um@ntrI OA% 3 +momentous m@'ment@s OA% 3 +momentously m@'ment@slI Pu% 4 +momentousness m@'ment@sn@s L@$ 4 +moments 'm@Um@nts Mj% 2 +momentum m@'ment@m L@% 3 +monarch 'm0n@k K6% 2 +monarchic m@'nAkIk OA$ 3 +monarchies 'm0n@kIz Mj% 3 +monarchism 'm0n@kIz@m L@% 4 +monarchist 'm0n@kIst K6% 3 +monarchists 'm0n@kIsts Kj% 3 +monarchs 'm0n@ks Kj% 2 +monarchy 'm0n@kI M8% 3 +monasteries 'm0n@strIz Kj% 3 +monastery 'm0n@strI K8% 3 +monastic m@'n&stIk OA% 3 +monasticism m@'n&stIsIz@m L@% 5 +monaural ,m0n'Or@l OA$ 3 +monetary 'mVnItrI OA% 3 +monetize 'mVn@taIz H2$ 36A +monetized 'mVn@taIzd Hc$,Hd$ 36A +monetizes 'mVn@taIzIz Ha$ 46A +monetizing 'mVn@taIzIN Hb$ 46A +money 'mVnI L@* 2 +money-grubber 'mVnI-grVb@R K6% 4 +money-grubbers 'mVnI-grVb@z Kj% 4 +money-order 'mVnI-Od@R K6% 4 +money-orders 'mVnI-Od@z Kj% 4 +money-spinner 'mVnI-spIn@R K6% 4 +money-spinners 'mVnI-spIn@z Kj% 4 +moneybox 'mVnIb0ks K7% 3 +moneyboxes 'mVnIb0ksIz Kj% 4 +moneychanger 'mVnItSeIndZ@R K6% 4 +moneychangers 'mVnItSeIndZ@z Kj% 4 +moneyed 'mVnId OA% 2 +moneylender 'mVnIlend@R K6% 4 +moneylenders 'mVnIlend@z Kj% 4 +moneyless 'mVnIl@s OA% 3 +monger 'mVNg@R K6$ 2 +mongers 'mVNg@z Kj$ 2 +mongol 'm0Ngl K6%,Oq% 2 +mongolism 'm0Ng@lIz@m L@% 4 +mongols 'm0Nglz Kj% 2 +mongoose 'm0Ngus K6% 2 +mongooses 'm0NgusIz Kj% 3 +mongrel 'mVNgr@l K6%,Oq% 2 +mongrels 'mVNgr@lz Kj% 2 +monies 'mVnIz Kj% 2 +monitor 'm0nIt@R J0%,K6% 3 +monitored 'm0nIt@d Jc%,Jd% 3 +monitoring 'm0nIt@rIN Jb% 4 +monitors 'm0nIt@z Ja%,Kj% 3 +monk mVNk K6% 1 +monkey 'mVNkI I0%,K6% 22C +monkey-jacket 'mVNkI-dZ&kIt K6$ 4 +monkey-jackets 'mVNkI-dZ&kIts Kj$ 4 +monkey-nut 'mVNkI-nVt K6% 3 +monkey-nuts 'mVNkI-nVts Kj% 3 +monkey-puzzle 'mVNkI-pVzl K6% 4 +monkey-puzzles 'mVNkI-pVzlz Kj% 4 +monkey-wrench 'mVNkI-rentS K7% 3 +monkey-wrenches 'mVNkI-rentSIz Kj% 4 +monkeyed 'mVNkId Ic%,Id% 22C +monkeying 'mVNkIIN Ib% 32C +monkeys 'mVNkIz Ia%,Kj% 22C +monkish 'mVNkIS OA% 2 +monks mVNks Kj% 1 +mono 'm0n@U OA% 2 +monochrome 'm0n@kr@Um K6%,OA% 3 +monochromes 'm0n@kr@Umz Kj$ 3 +monocle 'm0n@kl K6% 3 +monocled 'm0n@kld OA% 3 +monocles 'm0n@klz Kj% 3 +monogamist m@'n0g@mIst K6$ 4 +monogamists m@'n0g@mIsts Kj$ 4 +monogamous m@'n0g@m@s OA% 4 +monogamy m@'n0g@mI L@% 4 +monogram 'm0n@gr&m K6% 3 +monograms 'm0n@gr&mz Kj% 3 +monograph 'm0n@grAf K6% 3 +monographs 'm0n@grAfs Kj% 3 +monolith 'm0n@lIT K6% 3 +monolithic ,m0n@'lITIk OA% 4 +monoliths 'm0n@lITs Kj% 3 +monologue 'm0n@l0g K6% 3 +monologues 'm0n@l0gz Kj% 3 +monomania ,m0n@U'meInI@ M6% 5 +monomaniac ,m0n@U'meInI&k K6% 5 +monomaniacs ,m0n@U'meInI&ks Kj% 5 +monomanias ,m0n@U'meInI@z Mj$ 5 +monoplane 'm0n@pleIn K6% 3 +monoplanes 'm0n@pleInz Kj% 3 +monopolies m@'n0p@lIz Kj% 4 +monopolist m@'n0p@lIst K6$ 4 +monopolistic m@,n0p@'lIstIk OA% 5 +monopolists m@'n0p@lIsts Kj$ 4 +monopolization m@,n0p@laI'zeISn M6% 6 +monopolizations m@,n0p@laI'zeISnz Mj$ 6 +monopolize m@'n0p@laIz H2% 46A +monopolized m@'n0p@laIzd Hc%,Hd% 46A +monopolizes m@'n0p@laIzIz Ha% 56A +monopolizing m@'n0p@laIzIN Hb% 56A +monopoly m@'n0p@lI K8% 4 +monorail 'm0n@UreIl K6% 3 +monorails 'm0n@UreIlz Kj% 3 +monosyllabic ,m0n@sI'l&bIk OA% 5 +monosyllable 'm0n@sIl@bl K6% 5 +monosyllables 'm0n@sIl@blz Kj% 5 +monotheism 'm0n@UTiIz@m L@$ 5 +monotheist 'm0n@UTiIst K6$ 4 +monotheistic ,m0n@UTi'Istik OA$ 5 +monotheists 'm0n@UTiIsts Kj$ 4 +monotone 'm0n@t@Un K6% 3 +monotones 'm0n@t@Unz Kj% 3 +monotonous m@'n0t@n@s OA% 4 +monotonously m@'n0t@n@slI Pu% 5 +monotony m@'n0t@nI L@% 4 +monotype 'm0n@taIp K6$ 3 +monotypes 'm0n@taIps Kj$ 3 +monoxide m0'n0ksaId M6% 3 +monoxides m0'n0ksaIdz Mj% 3 +monsoon m0n'sun K6% 2 +monsoons m0n'sunz Kj% 2 +monster 'm0nst@R K6% 2 +monsters 'm0nst@z Kj% 2 +monstrance 'm0nstr@ns K6$ 2 +monstrances 'm0nstr@nsIz Kj$ 3 +monstrosities m0n'str0sItIz Mj% 4 +monstrosity m0n'str0sItI M8% 4 +monstrous 'm0nstr@s OA% 2 +monstrously 'm0nstr@slI Pu% 3 +montage 'm0ntAZ L@% 2 +month mVnT K6% 1 +monthlies 'mVnTlIz Kj% 2 +monthly 'mVnTlI K8%,OA%,Pu% 2 +months mVnTs Kj% 1 +monument 'm0njUm@nt K6% 3 +monumental ,m0njU'mentl OA% 4 +monuments 'm0njUm@nts Kj% 3 +moo mu I0%,K6% 1 +moo-cow 'mu-kaU K6% 2 +moo-cows 'mu-kaUz Kj% 2 +mooch mutS I1% 12C +mooched mutSt Ic%,Id% 12C +mooches 'mutSIz Ia% 22C +mooching 'mutSIN Ib% 22C +mood mud K6% 1 +moodier 'mudI@R Or% 3 +moodiest 'mudIIst Os% 3 +moodily 'mudIlI Pu% 3 +moodiness 'mudIn@s L@% 3 +moods mudz Kj% 1 +moody 'mudI OD% 2 +mooed mud Ic%,Id% 1 +mooing 'muIN Ib% 2 +moon mun J0%,K6% 12C,15B +moonbeam 'munbim K6% 2 +moonbeams 'munbimz Kj% 2 +mooned mund Jc%,Jd% 12C,15B +moonflower 'munflaU@R K6$ 3 +moonflowers 'munflaU@z Kj$ 3 +moonier 'munI@R Or$ 3 +mooniest 'munIIst Os$ 3 +mooning 'munIN Jb% 22C,15B +moonless 'munl@s OA% 2 +moonlight 'munlaIt L@% 2 +moonlit 'munlIt OA% 2 +moons munz Ja$,Kj% 12C,15B +moonshine 'munSaIn L@% 2 +moonstone 'munst@Un K6% 2 +moonstones 'munst@Unz Kj% 2 +moonstruck 'munstrVk OA% 2 +moony 'munI OD% 2 +moor mU@R H0%,M6% 16A,15A +moorcock 'mU@k0k K6$ 2 +moorcocks 'mU@k0ks Kj$ 2 +moored mU@d Hc%,Hd% 16A,15A +moorfowl 'mU@faUl K6% 2 +moorfowls 'mU@faUlz Kj$ 2 +moorgame 'mU@geIm K9$ 2 +moorhen 'mU@hen K6% 2 +moorhens 'mU@henz Kj% 2 +mooring 'mU@rIN Hb% 26A,15A +mooring-mast 'mU@rIN-mAst K6$ 3 +mooring-masts 'mU@rIN-mAsts Kj$ 3 +moorings 'mU@rINz Kj% 2 +moorland 'mU@l&nd M6% 2 +moorlands 'mU@l&ndz Mj% 2 +moors mU@z Ha%,Mj% 16A,15A +moos muz Ia$,Kj$ 1 +moose mus K9% 1 +mooses 'musIz Kj$ 2 +moot mut H0$,OA$ 16A +mooted 'mutId Hc$,Hd% 26A +mooting 'mutIN Hb% 26A +moots muts Ha$ 16A +mop m0p J4%,K6% 16A,15B +mope m@Up I2%,K6% 12A,2C +moped 'm@Uped K6% 2 +moped m@Upt Ic%,Id% 12A,2C +mopeds 'm@Upedz Kj% 2 +mopes m@Ups Ia%,Kj% 12A,2C +moping 'm@UpIN Ib% 22A,2C +mopped m0pt Jc%,Jd% 16A,15B +mopping 'm0pIN Jb% 26A,15B +mops m0ps Ja%,Kj% 16A,15B +moquette m@'ket L@$ 2 +moraine m0'reIn K6$ 2 +moraines m0'reInz Kj$ 2 +moral 'm0r@l K6%,OA% 2 +morale m@'rAl L@% 2 +moralist 'm0r@lIst K6% 3 +moralistic ,m0r@'lIstIk OA% 4 +moralists 'm0r@lIsts Kj% 3 +moralities m@'r&lItIz Mj% 4 +morality m@'r&lItI M8% 4 +moralize 'm0r@laIz J2% 32A,3A,6A +moralized 'm0r@laIzd Jc%,Jd% 32A,3A,6A +moralizes 'm0r@laIzIz Ja% 42A,3A,6A +moralizing 'm0r@laIzIN Jb% 42A,3A,6A +morally 'm0r@lI Pu% 3 +morals 'm0r@lz Kj% 2 +morass m@'r&s K7% 2 +morasses m@'r&sIz Kj$ 3 +moratoria ,m0r@'tOrI@ Kj% 5 +moratorium ,m0r@'tOrI@m K6% 5 +moratoriums ,m0r@'tOrI@mz Kj% 5 +morbid 'mObId OA% 2 +morbidities mO'bIdItIz Mj$ 4 +morbidity mO'bIdItI M8% 4 +morbidly 'mObIdlI Pu% 3 +morbidness 'mObIdn@s L@$ 3 +mordant 'mOdnt OA% 2 +more mOR L@*,Or*,Pu* 1 +morello m@'rel@U K6% 3 +morellos m@'rel@Uz Kj$ 3 +moreover mO'r@Uv@R Pu% 3 +mores 'mOreIz Kj% 2 +morganatic ,mOg@'n&tIk OA$ 4 +morgue mOg K6% 1 +morgues mOgz Kj% 1 +moribund 'm0rIbVnd OA% 3 +morn mOn K6% 1 +morning 'mOnIN M6* 2 +morning-glories ,mOnIN-'glOrIz Kj$ 4 +morning-glory ,mOnIN-'glOrI K8$ 4 +morning-room 'mOnIN-rum K6% 3 +morning-rooms 'mOnIN-rumz Kj% 3 +mornings 'mOnINz Mj% 2 +morns mOnz Kj$ 1 +morocco m@'r0k@U L@% 3 +moron 'mOr0n K6% 2 +moronic m@'r0nIk OA% 3 +morons 'mOr0nz Kj% 2 +morose m@'r@Us OA% 2 +morosely m@'r@UslI Pu% 3 +moroseness m@'r@Usn@s L@% 3 +morpheme 'mOfim K6$ 2 +morphemes 'mOfimz Kj$ 2 +morphemic mO'fimIk OA$ 3 +morphia 'mOfI@ L@$ 3 +morphine 'mOfin L@% 2 +morphological ,mOf@'l0dZIkl OA$ 5 +morphologically ,mOf@'l0dZIklI Pu$ 5 +morphology mO'f0l@dZI L@$ 4 +morris dance 'm0rIs dAns K6$ 3 +morris dances 'm0rIs dAnsIz Kj$ 4 +morrow 'm0r@U K6% 2 +morrows 'm0r@Uz Kj$ 2 +morsel 'mOsl K6% 2 +morsels 'mOslz Kj% 2 +mortal 'mOtl K6%,OA% 2 +mortality mO't&lItI L@% 4 +mortally 'mOt@lI Pu% 3 +mortals 'mOtlz Kj% 2 +mortar 'mOt@R H0%,M6% 26A +mortarboard 'mOt@bOd K6% 3 +mortarboards 'mOt@bOdz Kj% 3 +mortared 'mOt@d Hc$,Hd$ 26A +mortaring 'mOt@rIN Hb$ 36A +mortars 'mOt@z Ha$,Mj$ 26A +mortgage 'mOgIdZ H2%,K6% 26A,14 +mortgaged 'mOgIdZd Hc%,Hd% 26A,14 +mortgagee ,mOgI'dZi K6% 3 +mortgagees ,mOgI'dZiz Kj% 3 +mortgages 'mOgIdZIz Ha%,Kj% 36A,14 +mortgaging 'mOgIdZIN Hb% 36A,14 +mortgagor ,mOgI'dZOR K6% 3 +mortgagors ,mOgI'dZOz Kj% 3 +mortice 'mOtIs H2%,K6% 215A,15B +morticed 'mOtIst Hc%,Hd% 215A,15B +mortices 'mOtIsIz Ha$,Kj$ 315A,15B +mortician mO'tISn K6% 3 +morticians mO'tISnz Kj% 3 +morticing 'mOtIsIN Hb$ 315A,15B +mortification ,mOtIfI'keISn L@% 5 +mortified 'mOtIfaId Jc%,Jd% 32A,6A +mortifies 'mOtIfaIz Ja% 32A,6A +mortify 'mOtIfaI J3% 32A,6A +mortifying 'mOtIfaIIN Jb% 42A,6A +mortise 'mOtIs H2$,K6$ 215A,15B +mortised 'mOtIst Hc$,Hd% 215A,15B +mortises 'mOtIsIz Ha$,Kj$ 315A,15B +mortising 'mOtIsIN Hb$ 315A,15B +mortuaries 'mOtS@rIz Kj% 3 +mortuary 'mOtS@rI K8% 3 +mosaic m@U'zeIIk K6%,OA% 3 +mosaics m@U'zeIIks Kj% 3 +moselle m@U'zel M6% 2 +moselles m@U'zelz Mj$ 2 +mosey 'm@UzI I0% 22A,2C +moseyed 'm@UzId Ic%,Id% 22A,2C +moseying 'm@UzIIN Ib% 32A,2C +moseys 'm@UzIz Ia% 22A,2C +mosque m0sk K6% 1 +mosques m0sks Kj% 1 +mosquito m@'skit@U K7% 3 +mosquito-craft m@'skit@U-krAft K9$ 4 +mosquito-net m@'skit@U-net K6% 4 +mosquito-nets m@'skit@U-nets Kj% 4 +mosquitoes m@'skit@Uz Kj% 3 +moss m0s M7% 1 +moss-grown 'm0s-gr@Un OA$ 2 +mosses 'm0sIz Mj% 2 +mossier 'm0sI@R Or% 3 +mossiest 'm0sIIst Os% 3 +mossy 'm0sI OD% 2 +most m@Ust K9*,Os*,Pu* 1 +mostly 'm@UstlI Pu% 2 +mote m@Ut K6$ 1 +motel m@U'tel K6% 2 +motels m@U'telz Kj% 2 +motes m@Uts Kj$ 1 +moth m0T K6% 1 +moth-eaten 'm0T-itn OA% 3 +mothball 'm0TbOl K6% 2 +mothballs 'm0TbOlz Kj% 2 +mother 'mVD@R H0%,K6* 26A +mother-in-law 'mVD@r-In-lO Ki% 4 +mother-of-pearl ,mVD@r-@v-'p3l L@% 4 +mothered 'mVD@d Hc%,Hd% 26A +motherhood 'mVD@hUd L@% 3 +mothering 'mVD@rIN Hb% 36A +motherland 'mVD@l&nd K6% 3 +motherlands 'mVD@l&ndz Kj$ 3 +motherless 'mVD@l@s OA% 3 +motherlike 'mVD@laIk OA% 3 +motherliness 'mVD@lIn@s L@% 4 +motherly 'mVD@lI OA% 3 +mothers 'mVD@z Ha%,Kj% 26A +mothers-in-law 'mVD@z-In-lO Kj$ 4 +mothproof 'm0Tpruf H0%,OA% 2 +mothproofed 'm0Tpruft Hc%,Hd% 2 +mothproofing 'm0TprufIN Hb$ 3 +mothproofs 'm0Tprufs Ha$ 2 +moths m0Ts Kj% 1 +motif m@U'tif K6% 2 +motifs m@U'tifs Kj% 2 +motion 'm@USn J0%,M6% 23A,15A,15B,17 +motioned 'm@USnd Jc%,Jd% 23A,15A,15B,17 +motioning 'm@USnIN Jb$ 33A,15A,15B,17 +motionless 'm@USnl@s OA% 3 +motionlessly 'm@USnl@slI Pu% 4 +motions 'm@USnz Ja%,Mj% 23A,15A,15B,17 +motivate 'm@UtIveIt H2% 36A +motivated 'm@UtIveItId Hc%,Hd% 46A +motivates 'm@UtIveIts Ha% 36A +motivating 'm@UtIveItIN Hb% 46A +motivation ,m@UtI'veISn M6% 4 +motivations ,m@UtI'veISnz Mj% 4 +motive 'm@UtIv K6%,OA% 2 +motiveless 'm@UtIvl@s OA% 3 +motives 'm@UtIvz Kj% 2 +motley 'm0tlI L@$,OA% 2 +motor 'm@Ut@R I0%,K6% 22A,2C +motor-assisted ,m@Ut@r-@'sIstId OA% 5 +motorbike 'm@Ut@baIk K6% 3 +motorbikes 'm@Ut@baIks Kj% 3 +motorboat 'm@Ut@b@Ut K6% 3 +motorboats 'm@Ut@b@Uts Kj% 3 +motorcade 'm@Ut@keId K6% 3 +motorcades 'm@Ut@keIdz Kj% 3 +motorcar 'm@Ut@kAR K6% 3 +motorcars 'm@Ut@kAz Kj% 3 +motorcoach 'm@Ut@k@UtS K7% 3 +motorcoaches 'm@Ut@k@UtSIz Kj% 4 +motorcycle 'm@Ut@saIkl K6% 4 +motorcycles 'm@Ut@saIklz Kj% 4 +motored 'm@Ut@d Ic%,Id% 22A,2C +motoring 'm@Ut@rIN Ib% 32A,2C +motorist 'm@Ut@rIst K6% 3 +motorists 'm@Ut@rIsts Kj% 3 +motorize 'm@Ut@raIz H2$ 36A +motorized 'm@Ut@raIzd Hc$,Hd% 36A +motorizes 'm@Ut@raIzIz Ha$ 46A +motorizing 'm@Ut@raIzIN Hb$ 46A +motorman 'm@Ut@m@n Ki% 3 +motormen 'm@Ut@m@n Kj% 3 +motors 'm@Ut@z Ia%,Kj% 22A,2C +motorway 'm@Ut@weI K6% 3 +motorways 'm@Ut@weIz Kj% 3 +mottle 'm0tl H2$ 26A +mottled 'm0tld Hc$,Hd% 26A +mottles 'm0tlz Ha$ 26A +mottling 'm0tlIN Hb$ 26A +motto 'm0t@U K6% 2 +mottoes 'm0t@Uz Kj% 2 +mottos 'm0t@Uz Kj% 2 +moujik 'muZIk K6$ 2 +moujiks 'muZIks Kj$ 2 +mould m@Uld J0%,M6% 12A,6A,14 +moulded 'm@UldId Jc%,Jd% 22A,6A,14 +moulder 'm@Uld@R I0% 22A,2C +mouldered 'm@Uld@d Ic%,Id% 22A,2C +mouldering 'm@Uld@rIN Ib% 32A,2C +moulders 'm@Uld@z Ia$ 22A,2C +mouldier 'm@UldI@R Or% 3 +mouldiest 'm@UldIIst Os% 3 +moulding 'm@UldIN Jb%,M6% 22A,6A,14 +mouldings 'm@UldINz Mj% 2 +moulds m@Uldz Ja%,Mj% 12A,6A,14 +mouldy 'm@UldI OD% 2 +moult m@Ult J0%,K6$ 12A,6A +moulted 'm@UltId Jc%,Jd% 22A,6A +moulting 'm@UltIN Jb% 22A,6A +moults m@Ults Ja%,Kj$ 12A,6A +mound maUnd K6% 1 +mounds maUndz Kj% 1 +mount maUnt J0%,K6% 12A,2C,6A +mountain 'maUntIn K6% 2 +mountaineer ,maUntI'nI@R K6% 3 +mountaineering ,maUntI'nI@rIN L@% 4 +mountaineers ,maUntI'nI@z Kj% 3 +mountainous 'maUntIn@s OA% 3 +mountains 'maUntInz Kj% 2 +mountebank 'maUntIb&Nk K6$ 3 +mountebanks 'maUntIb&Nks Kj$ 3 +mounted 'maUntId Jc%,Jd% 22A,2C,6A +mounting 'maUntIN Jb% 22A,2C,6A +mounts maUnts Ja%,Kj% 12A,2C,6A +mourn mOn J0% 13A,6A +mourned mOnd Jc%,Jd% 13A,6A +mourner 'mOn@R K6% 2 +mourners 'mOn@z Kj% 2 +mournful 'mOnf@l OA% 2 +mournfully 'mOnf@lI Pu% 3 +mourning 'mOnIN Jb%,L@% 23A,6A +mourning-band 'mOnIN-b&nd K6$ 3 +mourning-bands 'mOnIN-b&ndz Kj$ 3 +mourning-ring 'mOnIN-rIN K6$ 3 +mourning-rings 'mOnIN-rINz Kj$ 3 +mourns mOnz Ja% 13A,6A +mouse maUs I2$,Ki% 12A +moused maUst Ic$,Id$ 12A +mouser 'maUz@R K6% 2 +mousers 'maUz@z Kj% 2 +mouses 'maUsIz Ia$ 22A +mousetrap 'maUstr&p K6% 2 +mousetraps 'maUstr&ps Kj% 2 +mousier 'maUsI@R Or% 3 +mousiest 'maUsIIst Os% 3 +mousing 'maUsIN Ib% 22A +mousse mus M6% 1 +mousses 'musIz Mj% 2 +moustache m@'stAS K6% 2 +moustaches m@'stASIz Kj% 3 +mousy 'maUsI OD% 2 +mouth maUD J0% 12A,6A +mouth maUT K6% 1 +mouth-organ 'maUT-Og@n K6% 3 +mouth-organs 'maUT-Og@nz Kj% 3 +mouth-watering 'maUT-wOt@rIN OA% 4 +mouthed maUDd Jc%,Jd% 12A,6A +mouthful 'maUTfVl K6% 2 +mouthfuls 'maUTfVlz Kj% 2 +mouthing 'maUDIN Jb% 22A,6A +mouthpiece 'maUTpis K6% 2 +mouthpieces 'maUTpisIz Kj% 3 +mouths maUDz Ja%,Kj% 12A,6A +movable 'muv@bl OA% 3 +movables 'muv@blz Kj% 3 +move muv J2%,K6% 12A,2C,3A,6A,9,15A,15B,17 +moved muvd Jc%,Jd% 12A,2C,3A,6A,9,15A,15B,17 +movement 'muvm@nt M6% 2 +movements 'muvm@nts Mj% 2 +mover 'muv@R K6% 2 +movers 'muv@z Kj% 2 +moves muvz Ja%,Kj% 12A,2C,3A,6A,9,15A,15B,17 +movie 'muvI K6% 2 +movies 'muvIz Kj% 2 +moving 'muvIN Jb% 22A,2C,3A,6A,9,15A,15B,17 +mow m@U H0%,K6% 12A,6A,15B +mow maU I0$ 1 +mowed m@Ud Hc%,Hd% 12A,6A,15B +mowed maUd Ic$,Id$ 1 +mower 'm@U@R K6% 2 +mowers 'm@U@z Kj% 2 +mowing 'm@UIN Hb% 22A,6A,15B +mowing 'maUIN Ib$ 2 +mown m@Un Hd% 12A,6A,15B +mows m@Uz Ha%,Kj% 12A,6A,15B +mows maUz Ia$ 1 +mpg ,em,pi'dZi Y]% 3 +mph ,em,pi'eItS Y]% 3 +much mVtS Ki*,OA*,Pu* 1 +muchness 'mVtSn@s L@% 2 +mucilage 'mjusIlIdZ L@$ 3 +muck mVk J0%,L@% 12C,6A,15B +muck-heap 'mVk-hip K6% 2 +muck-heaps 'mVk-hips Kj% 2 +mucked mVkt Jc%,Jd% 12C,6A,15B +muckier 'mVkI@R Or% 3 +muckiest 'mVkIIst Os% 3 +mucking 'mVkIN Jb% 22C,6A,15B +muckle 'mVkl Ki$ 2 +muckraker 'mVkreIk@R K6% 3 +muckrakers 'mVkreIk@z Kj$ 3 +muckraking 'mVkreIkIN L@% 3 +mucks mVks Ja% 12C,6A,15B +mucky 'mVkI OD% 2 +mucous 'mjuk@s OA% 2 +mucus 'mjuk@s L@% 2 +mud mVd H4%,L@% 16A +mud-bath 'mVd-bAT K6% 2 +mud-baths 'mVd-bADz Kj% 2 +mudded 'mVdId Hc$,Hd$ 26A +muddied 'mVdId Hc%,Hd% 26A +muddier 'mVdI@R Or% 3 +muddies 'mVdIz Ha% 26A +muddiest 'mVdIIst Os% 3 +mudding 'mVdIN Hb$ 26A +muddle 'mVdl J2%,K6% 22C,6A,15B +muddle-headed ,mVdl-'hedId OA% 4 +muddled 'mVdld Jc%,Jd% 22C,6A,15B +muddles 'mVdlz Ja%,Kj% 22C,6A,15B +muddling 'mVdlIN Jb% 22C,6A,15B +muddy 'mVdI H3%,OD% 26A +muddying 'mVdIIN Hb% 36A +mudguard 'mVdgAd K6% 2 +mudguards 'mVdgAdz Kj% 2 +muds mVdz Ha$ 16A +mudslinger 'mVdslIN@R K6% 3 +mudslingers 'mVdslIN@z Kj% 3 +muesli 'mjuzlI L@% 2 +muezzin mu'ezIn K6$ 3 +muezzins mu'ezInz Kj$ 3 +muff mVf H0%,K6% 16A +muffed mVft Hc%,Hd% 16A +muffin 'mVfIn K6% 2 +muffin-man 'mVfIn-m&n Ki% 3 +muffin-men 'mVfIn-men Kj% 3 +muffing 'mVfIN Hb% 26A +muffins 'mVfInz Kj% 2 +muffle 'mVfl H2% 26A,15B +muffled 'mVfld Hc%,Hd% 26A,15B +muffler 'mVfl@R K6% 2 +mufflers 'mVfl@z Kj% 2 +muffles 'mVflz Ha% 26A,15B +muffling 'mVflIN Hb% 26A,15B +muffs mVfs Ha%,Kj% 16A +mufti 'mVftI L@% 2 +mug mVg H4%,K6% 16A,15B +mugged mVgd Hc%,Hd% 16A,15B +mugger 'mVg@R K6% 2 +muggers 'mVg@z Kj% 2 +muggier 'mVgI@R Or$ 3 +muggiest 'mVgIIst Os$ 3 +mugginess 'mVgIn@s L@$ 3 +mugging 'mVgIN Hb%,M6% 26A,15B +muggings 'mVgINz Mj% 2 +muggins 'mVgInz K7% 2 +mugginses 'mVgInzIz Kj$ 3 +muggy 'mVgI OD% 2 +mugs mVgz Ha%,Kj% 16A,15B +mugwump 'mVgwVmp K6$ 2 +mugwumps 'mVgwVmps Kj$ 2 +mulatto mju'l&t@U K6$ 3 +mulattoes mju'l&t@Uz Kj$ 3 +mulattos mju'l&t@Uz Kj$ 3 +mulberries 'mVlbrIz Kj% 2 +mulberry 'mVlbrI K8% 2 +mulch mVltS H1$,K7$ 1 +mulched mVltSt Hc$,Hd$ 1 +mulches 'mVltSIz Ha$,Kj$ 2 +mulching 'mVltSIN Hb$ 2 +mulct mVlkt H0$ 112C,14 +mulcted 'mVlktId Hc$,Hd$ 212C,14 +mulcting 'mVlktIN Hb$ 212C,14 +mulcts mVlkts Ha$ 112C,14 +mule mjul K6% 1 +mules mjulz Kj% 1 +muleteer ,mjul@'tI@R K6% 3 +muleteers ,mjul@'tI@z Kj% 3 +mulish 'mjulIS OA% 2 +mulishly 'mjulISlI Pu% 3 +mulishness 'mjulISn@s L@% 3 +mull mVl H0%,K6% 16A,15A +mullah 'mVl@ K6$ 2 +mullahs 'mVl@z Kj$ 2 +mulled mVld Hc%,Hd% 16A,15A +mullein 'mVlIn K6$ 2 +mulleins 'mVlInz Kj$ 2 +mullet 'mVlIt K6% 2 +mullets 'mVlIts Kj$ 2 +mulligatawny ,mVlIg@'tOnI L@% 5 +mulling 'mVlIN Hb% 26A,15A +mullion 'mVlI@n K6% 3 +mullioned 'mVlI@nd OA% 3 +mullions 'mVlI@nz Kj% 3 +mulls mVlz Ha%,Kj% 16A,15A +multi- 'mVltI- U-% 2 +multi-lingual ,mVltI-'lINgw@l OA% 4 +multifarious ,mVltI'fe@rI@s OA% 5 +multifariously ,mVltI'fe@rI@slI Pu% 6 +multiform 'mVltIfOm OA% 3 +multilateral ,mVltI'l&t@r@l OA% 5 +multiple 'mVltIpl K6%,OA% 3 +multiples 'mVltIplz Kj% 3 +multiplex 'mVltIpleks OA$ 3 +multiplication ,mVltIplI'keISn M6% 5 +multiplications ,mVltIplI'keISnz Mj% 5 +multiplicity ,mVltI'plIsItI L@% 5 +multiplied 'mVltIplaId Jc%,Jd% 32A,6A,14 +multiplies 'mVltIplaIz Ja% 32A,6A,14 +multiply 'mVltIplaI J3% 32A,6A,14 +multiplying 'mVltIplaIIN Jb% 42A,6A,14 +multitude 'mVltItjud M6% 3 +multitudes 'mVltItjudz Mj% 3 +multitudinous ,multI'tjudIn@s OA% 5 +multum in parvo ,mUlt@m In 'pAv@U L@$ 5 +mum mVm K6%,OA%,W-% 1 +mumble 'mVmbl J2% 22A,2C,6A +mumbled 'mVmbld Jc%,Jd% 22A,2C,6A +mumbles 'mVmblz Ja% 22A,2C,6A +mumbling 'mVmblIN Jb% 22A,2C,6A +mumbo-jumbo ,mVmb@U-'dZVmb@U L@% 4 +mummer 'mVm@R K6$ 2 +mummeries 'mVm@rIz Mj$ 3 +mummers 'mVm@z Kj$ 2 +mummery 'mVm@rI M8$ 3 +mummies 'mVmIz Kj% 2 +mummification ,mVmIfI'keISn M6% 5 +mummifications ,mVmIfI'keISnz Mj$ 5 +mummified 'mVmIfaId Hc$,Hd% 36A +mummifies 'mVmIfaIz Ha$ 36A +mummify 'mVmIfaI H3$ 36A +mummifying 'mVmIfaIIN Hb$ 46A +mummy 'mVmI K8% 2 +mumps mVmps Lk% 1 +mums mVmz Kj% 1 +munch mVntS J1% 12A,2C,6A +munched mVntSt Jc%,Jd% 12A,2C,6A +munches 'mVntSIz Ja% 22A,2C,6A +munching 'mVntSIN Jb% 22A,2C,6A +mundane mVn'deIn OA% 2 +mundanely mVn'deInlI Pu% 3 +municipal mju'nIsIpl OA% 4 +municipalities mju,nIsI'p&lItIz Kj% 6 +municipality mju,nIsI'p&lItI K8% 6 +municipally mju'nIsIplI Pu% 4 +munificence mju'nIfIsns L@% 4 +munificent mju'nIfIsnt OA% 4 +munificently mju'nIfIsntlI Pu% 5 +muniments 'mjunIm@nts Kj$ 3 +munition mju'nISn H0$,K6% 36A +munitioned mju'nISnd Hc%,Hd% 36A +munitioning mju'nISnIN Hb$ 46A +munitions mju'nISnz Ha$,Kj% 36A +mural 'mjU@r@l K6%,OA% 2 +murals 'mjU@r@lz Kj% 2 +murder 'm3d@R H0%,M6% 26A +murdered 'm3d@d Hc%,Hd% 26A +murderer 'm3d@r@R K6% 3 +murderers 'm3d@r@z Kj% 3 +murderess 'm3d@rIs K7% 3 +murderesses 'm3d@rIsIz Kj% 4 +murdering 'm3d@rIN Hb% 36A +murderous 'm3d@r@s OA% 3 +murderously 'm3d@r@slI Pu% 4 +murders 'm3d@z Ha%,Mj% 26A +murk m3k L@% 1 +murkier 'm3kI@R Or% 3 +murkiest 'm3kIIst Os% 3 +murkily 'm3kIlI Pu% 3 +murky 'm3kI OD% 2 +murmur 'm3m@R J0%,K6% 22A,2C,3A,6A +murmured 'm3m@d Jc%,Jd% 22A,2C,3A,6A +murmuring 'm3m@rIN Jb% 32A,2C,3A,6A +murmurs 'm3m@z Ja%,Kj% 22A,2C,3A,6A +murphies 'm3fIz Kj$ 2 +murphy 'm3fI K8$ 2 +murrain 'mVrIn L@$ 2 +muscatel ,mVsk@'tel L@$ 3 +muscle 'mVsl I2%,M6% 22C +muscle-bound 'mVsl-baUnd OA% 3 +muscled 'mVsld Ic%,Id% 22C +muscleman 'mVslm&n Ki% 3 +musclemen 'mVslmen Kj% 3 +muscles 'mVslz Ia%,Mj% 22C +muscling 'mVslIN Ib% 22C +muscular 'mVskjUl@R OA% 3 +muse mjuz I2%,K6% 12A,3A +mused mjuzd Ic%,Id% 12A,3A +muses 'mjuzIz Ia%,Kj% 22A,3A +museum mju'zI@m K6% 3 +museums mju'zI@mz Kj% 3 +mush mVS L@% 1 +mushier 'mVSI@R Or% 3 +mushiest 'mVSIIst Os% 3 +mushroom 'mVSrUm I0%,K6% 22C +mushroomed 'mVSrUmd Ic%,Id% 22C +mushrooming 'mVSrUmIN Ib% 32C +mushrooms 'mVSrUmz Ia%,Kj% 22C +mushy 'mVSI OD% 2 +music 'mjuzIk L@% 2 +music-box 'mjuzIk-b0ks K7% 3 +music-boxes 'mjuzIk-b0ksIz Kj% 4 +music-hall 'mjuzIk-hOl K6% 3 +music-halls 'mjuzIk-hOlz Kj% 3 +music-stand 'mjuzIk-st&nd K6% 3 +music-stands 'mjuzIk-st&ndz Kj% 3 +music-stool 'mjuzIk-stul K6% 3 +music-stools 'mjuzIk-stulz Kj% 3 +musical 'mjuzIkl K6%,OA% 3 +musical-box 'mjuzIkl-b0ks K7% 4 +musical-boxes 'mjuzIkl-b0ksIz Kj% 5 +musically 'mjuzIklI Pu% 3 +musicals 'mjuzIklz Kj% 3 +musician mju'zISn K6% 3 +musicians mju'zISnz Kj% 3 +musicianship mju'zISnSIp L@% 4 +musing 'mjuzIN Ib% 22A,3A +musingly 'mjuzINlI Pu% 3 +musk mVsk L@$ 1 +musk-deer 'mVsk-dI@R K9$ 2 +musk-rose 'mVsk-r@Uz K6$ 2 +musk-roses 'mVsk-r@UzIz Kj$ 3 +musket 'mVskIt K6% 2 +musketeer ,mVskI'tI@R K6% 3 +musketeers ,mVskI'tI@z Kj% 3 +musketry 'mVskItrI L@$ 3 +muskets 'mVskIts Kj% 2 +muskier 'mVskI@R Or$ 3 +muskiest 'mVskIIst Os$ 3 +muskrat 'mVskr&t K6$ 2 +muskrats 'mVskr&ts Kj$ 2 +musky 'mVskI OD% 2 +muslin 'mVzlIn L@% 2 +musquash 'mVskw0S L@$ 2 +muss mVs H1$,M7$ 16A,15B +mussed mVst Hc%,Hd% 16A,15B +mussel 'mVsl K6% 2 +mussels 'mVslz Kj% 2 +musses 'mVsIz Ha$,Mj$ 26A,15B +mussing 'mVsIN Hb$ 26A,15B +must mVst G5*,M6% 15 +mustachio m@'stASI@U K6$ 4 +mustachios m@'stASI@Uz Kj$ 4 +mustang 'mVst&N K6$ 2 +mustangs 'mVst&Nz Kj$ 2 +mustard 'mVst@d L@% 2 +muster 'mVst@R J0%,K6% 22A,6A,15B +mustered 'mVst@d Jc%,Jd% 22A,6A,15B +mustering 'mVst@rIN Jb% 32A,6A,15B +musters 'mVst@z Ja$,Kj$ 22A,6A,15B +mustier 'mVstI@R Or% 3 +mustiest 'mVstIIst Os% 3 +mustiness 'mVstIn@s L@% 3 +mustn't 'mVsnt Gg% 2 +musts mVsts Mj$ 1 +musty 'mVstI OD% 2 +mutability ,mjut@'bIlItI L@% 5 +mutable 'mjut@bl OA% 3 +mutation mju'teISn M6% 3 +mutations mju'teISnz Mj% 3 +mutatis mutandis mu,tAtIs mu't&ndIs Pu$ 6 +mute mjut H2$,K6%,OA% 16A +muted 'mjutId Hc$,Hd% 26A +mutely 'mjutlI Pu% 2 +mutes mjuts Ha$,Kj% 16A +mutilate 'mjutIleIt H2% 36A +mutilated 'mjutIleItId Hc%,Hd% 46A +mutilates 'mjutIleIts Ha% 36A +mutilating 'mjutIleItIN Hb% 46A +mutilation ,mjutI'leISn M6% 4 +mutilations ,mjutI'leISnz Mj% 4 +mutineer ,mjutI'nI@R K6% 3 +mutineers ,mjutI'nI@z Kj% 3 +muting 'mjutIN Hb$ 26A +mutinied 'mjutInId Ic%,Id% 32A,3A +mutinies 'mjutInIz Ia%,Mj% 32A,3A +mutinous 'mjutIn@s OA% 3 +mutiny 'mjutInI I3%,M8% 32A,3A +mutinying 'mjutInIIN Ib% 42A,3A +mutt mVt K6$ 1 +mutter 'mVt@R J0%,K6% 22A,2C,6A,14 +muttered 'mVt@d Jc%,Jd% 22A,2C,6A,14 +mutterer 'mVt@r@R K6% 3 +mutterers 'mVt@r@z Kj% 3 +muttering 'mVt@rIN Jb% 32A,2C,6A,14 +mutters 'mVt@z Ja%,Kj% 22A,2C,6A,14 +mutton 'mVtn L@% 2 +mutton-head 'mVtn-hed K6$ 3 +mutton-heads 'mVtn-hedz Kj$ 3 +mutts mVts Kj$ 1 +mutual 'mjutSU@l OA% 3 +mutually 'mjutSU@lI Pu% 4 +muzzier 'mVzI@R Or% 3 +muzziest 'mVzIIst Os% 3 +muzzle 'mVzl H2%,K6% 26A +muzzle-velocities ,mVzl-vI'l0sItIz Kj$ 6 +muzzle-velocity ,mVzl-vI'l0sItI K8$ 6 +muzzled 'mVzld Hc%,Hd% 26A +muzzles 'mVzlz Ha%,Kj% 26A +muzzling 'mVzlIN Hb% 26A +muzzy 'mVzI OD% 2 +my maI OA* 1 +mycology maI'k0l@dZI L@$ 4 +myelitis maI@'laItIs L@$ 4 +myna 'maIn@ K6$ 2 +mynah 'maIn@ K6$ 2 +mynahs 'maIn@z Kj$ 2 +mynas 'maIn@z Kj$ 2 +myopia maI'@UpI@ L@% 4 +myopic maI'0pIk OA% 3 +myriad 'mIrI@d K6%,Oq% 3 +myriads 'mIrI@dz Kj% 3 +myrmidon 'm3mId@n K6$ 3 +myrmidons 'm3mId@nz Kj$ 3 +myrrh m3R L@% 1 +myrtle 'm3tl K6% 2 +myrtles 'm3tlz Kj$ 2 +myself maI'self Qx% 2 +mysteries 'mIst@rIz Mj% 3 +mysterious mI'stI@rI@s OA% 4 +mysteriously mI'stI@rI@slI Pu% 5 +mystery 'mIst@rI M8% 3 +mystic 'mIstIk K6%,OA% 2 +mystical 'mIstIkl OA% 3 +mysticism 'mIstIsIz@m L@% 4 +mystics 'mIstIks Kj% 2 +mystification ,mIstIfI'keISn M6% 5 +mystifications ,mIstIfI'keISnz Mj% 5 +mystified 'mIstIfaId Hc%,Hd% 36A +mystifies 'mIstIfaIz Ha% 36A +mystify 'mIstIfaI H3% 36A +mystifying 'mIstIfaIIN Hb% 46A +mystique mI'stik K6% 2 +mystiques mI'stiks Kj$ 2 +myth mIT M6% 1 +mythical 'mITIkl OA% 3 +mythological ,mIT@'l0dZIkl OA% 5 +mythologies mI'T0l@dZIz Mj% 4 +mythologist mI'T0l@dZIst K6% 4 +mythologists mI'T0l@dZIsts Kj% 4 +mythology mI'T0l@dZI M8% 4 +myths mITs Mj% 1 +myxomatosis ,mIks@m@'t@UsIs L@% 5 +n en Ki$ 1 +n's enz Kj$ 1 +n_ee neI OA% 1 +n_eglig_e 'neglIZeI M6% 3 +n_eglig_es 'neglIZeIz Mj% 3 +na"ive naI'iv OA% 2 +nab n&b H4% 1 +nabbed n&bd Hc%,Hd% 1 +nabbing 'n&bIN Hb$ 2 +nabob 'neIb0b K6$ 2 +nabobs 'neIb0bz Kj$ 2 +nabs n&bz Ha% 1 +nacelle n&'sel K6$ 2 +nacelles n&'selz Kj$ 2 +nacre 'neIk@R L@$ 2 +nadir 'neIdI@R K6% 2 +nadirs 'neIdI@z Kj$ 2 +nag n&g J4%,K6% 12A,2C,3A,6A +nagged n&gd Jc%,Jd% 12A,2C,3A,6A +nagger 'n&g@R K6% 2 +naggers 'n&g@z Kj% 2 +nagging 'n&gIN Jb% 22A,2C,3A,6A +nags n&gz Ja%,Kj% 12A,2C,3A,6A +naiad 'naI&d K6$ 2 +naiades 'naI&diz Kj$ 3 +naiads 'naI&dz Kj$ 2 +nail neIl H0%,K6% 115A,15B +nail-polish 'neIl-p0lIS M7% 3 +nail-polishes 'neIl-p0lISIz Mj$ 4 +nail-scissors 'neIl-sIz@z Kj% 3 +nail-varnish 'neIl-vAnIS M7% 3 +nail-varnishes 'neIl-vAnISIz Mj$ 4 +nailbrush 'neIlbrVS K7% 2 +nailbrushes 'neIlbrVSIz Kj% 3 +nailed neIld Hc%,Hd% 115A,15B +nailfile 'neIlfaIl K6% 2 +nailfiles 'neIlfaIlz Kj% 2 +nailing 'neIlIN Hb% 215A,15B +nails neIlz Ha%,Kj% 115A,15B +nainsook 'neInsUk L@$ 2 +naira 'naIr@ K6$ 2 +nairas 'naIr@z Kj$ 2 +naive naI'iv OA% 2 +naively naI'ivlI Pu% 3 +naivet_e naI'iv@tI M6$ 4 +naivet_es naI'iv@tIz Mj$ 4 +naiveties naI'iv@tIz Mj% 4 +naivety naI'iv@tI M8% 4 +naked 'neIkId OA% 2 +nakedly 'neIkIdlI Pu% 3 +nakedness 'neIkIdn@s L@% 3 +namby-pambies ,n&mbI-'p&mbIz Kj% 4 +namby-pamby ,n&mbI-'p&mbI K8%,OA% 4 +name neIm H2%,K6* 16A,14,23 +name-day 'neIm-deI K6$ 2 +name-days 'neIm-deIz Kj$ 2 +name-drop 'neIm-dr0p I4$ 22A +name-dropped 'neIm-dr0pt Ic$,Id$ 22A +name-dropping 'neIm-dr0pIN Ib%,L@% 32A +name-drops 'neIm-dr0ps Ia$ 22A +name-part 'neIm-pAt K6$ 2 +name-parts 'neIm-pAts Kj$ 2 +named neImd Hc%,Hd% 16A,14,23 +nameless 'neImlIs OA% 2 +namely 'neImlI Pu% 2 +nameplate 'neImpleIt K6% 2 +nameplates 'neImpleIts Kj% 2 +names neImz Ha%,Kj% 16A,14,23 +namesake 'neImseIk K6% 2 +namesakes 'neImseIks Kj% 2 +naming 'neImIN Hb% 26A,14,23 +nankeen n&n'kin L@$ 2 +nannies 'n&nIz Kj% 2 +nanny 'n&nI K8% 2 +nanny-goat 'n&nI-g@Ut K6% 3 +nanny-goats 'n&nI-g@Uts Kj% 3 +nap n&p I4%,M6% 1 +napalm 'neIpAm L@% 2 +nape neIp K6% 1 +napery 'neIp@rI L@$ 3 +napes neIps Kj$ 1 +naphtha 'n&fT@ L@% 2 +naphthalene 'n&fT@lin L@% 3 +napkin 'n&pkIn K6% 2 +napkin-ring 'n&pkIn-rIN K6% 3 +napkin-rings 'n&pkIn-rINz Kj% 3 +napkins 'n&pkInz Kj% 2 +napped n&pt Ic$,Id$ 1 +nappies 'n&pIz Kj% 2 +napping 'n&pIN Ib% 2 +nappy 'n&pI K8% 2 +naps n&ps Ia$,Mj% 1 +narcissi nA'sIsaI Kj% 3 +narcissism 'nAsIsIz@m L@% 4 +narcissus nA'sIs@s K7% 3 +narcissuses nA'sIs@sIz Kj$ 4 +narcotic nA'k0tIk K6%,OA% 3 +narcotics nA'k0tIks Kj% 3 +nark nAk H0$,K6% 1 +narked nAkt Hc$,Hd% 1 +narking 'nAkIN Hb$ 2 +narks nAks Ha$,Kj% 1 +narrate n@'reIt H2% 26A +narrated n@'reItId Hc%,Hd% 36A +narrates n@'reIts Ha% 26A +narrating n@'reItIN Hb% 36A +narration n@'reISn M6% 3 +narrations n@'reISnz Mj% 3 +narrative 'n&r@tIv M6% 3 +narratives 'n&r@tIvz Mj% 3 +narrator n@'reIt@R K6% 3 +narrators n@'reIt@z Kj% 3 +narrow 'n&r@U J0%,K6%,OC% 22A,6A +narrow-minded ,n&r@U-'maIndId OA% 4 +narrow-mindedly ,n&r@U-'maIndIdlI Pu% 5 +narrow-mindedness ,n&r@U-'maIndIdn@s L@% 5 +narrowed 'n&r@Ud Jc%,Jd% 22A,6A +narrower 'n&r@U@R Or% 3 +narrowest 'n&r@UIst Os% 3 +narrowing 'n&r@UIN Jb% 32A,6A +narrowly 'n&r@UlI Pu% 3 +narrowness 'n&r@Un@s L@% 3 +narrows 'n&r@Uz Ja%,Kj% 22A,6A +narwhal 'nAw@l K6$ 2 +narwhals 'nAw@lz Kj$ 2 +nasal 'neIzl K6%,OA% 2 +nasalize 'neIz@laIz H2$ 36A +nasalized 'neIz@laIzd Hc%,Hd% 36A +nasalizes 'neIz@laIzIz Ha$ 46A +nasalizing 'neIz@laIzIN Hb$ 46A +nasals 'neIzlz Kj% 2 +nascent 'n&snt OA$ 2 +nastier 'nAstI@R Or% 3 +nastiest 'nAstIIst Os% 3 +nastily 'nAstIlI Pu% 3 +nastiness 'n&stIn@s L@% 3 +nasturtium n@'st3S@m K6% 3 +nasturtiums n@'st3S@mz Kj% 3 +nasty 'nAstI OD% 2 +natal 'neItl OA$ 2 +nation 'neISn K6% 2 +national 'n&Sn@l K6%,OA% 2 +nationalism 'n&Sn@lIz@m L@% 4 +nationalist 'n&Sn@lIst K6%,OA% 3 +nationalistic ,n&Sn@'lIstIk OA% 4 +nationalists 'n&Sn@lIsts Kj% 3 +nationalities ,n&S@'n&lItIz Mj% 5 +nationality ,n&S@'n&lItI M8% 5 +nationalization ,n&Sn@laI'zeISn M6% 5 +nationalizations ,n&Sn@laI'zeISnz Mj$ 5 +nationalize 'n&Sn@laIz H2% 36A +nationalized 'n&Sn@laIzd Hc%,Hd% 36A +nationalizes 'n&Sn@laIzIz Ha% 46A +nationalizing 'n&Sn@laIzIN Hb% 46A +nationally 'n&Sn@lI Pu% 3 +nationals 'n&Sn@lz Kj% 2 +nations 'neISnz Kj% 2 +nationwide 'neISnwaId OA%,Pu% 3 +native 'neItIv K6%,OA% 2 +natives 'neItIvz Kj% 2 +nativities n@'tIvItIz Kj% 4 +nativity n@'tIvItI K8% 4 +natter 'n&t@R I0% 22A,2C +nattered 'n&t@d Ic%,Id% 22A,2C +nattering 'n&t@rIN Ib% 32A,2C +natters 'n&t@z Ia% 22A,2C +nattier 'n&tI@R Or% 3 +nattiest 'n&tIIst Os% 3 +nattily 'n&tIlI Pu% 3 +natty 'n&tI OD% 2 +natural 'n&tSr@l K6%,OA% 2 +naturalism 'n&tSr@lIz@m L@% 4 +naturalist 'n&tSr@lIst K6% 3 +naturalistic ,n&tSr@'lIstIk OA% 4 +naturalists 'n&tSr@lIsts Kj% 3 +naturalization ,n&tSr@laI'zeISn L@% 5 +naturalize 'n&tSr@laIz J2$ 32A,6A +naturalized 'n&tSr@laIzd Jc%,Jd% 32A,6A +naturalizes 'n&tSr@laIzIz Ja$ 42A,6A +naturalizing 'n&tSr@laIzIN Jb$ 42A,6A +naturally 'n&tSr@lI Pu% 3 +naturalness 'n&tSr@lnIs L@% 3 +naturals 'n&tSr@lz Kj% 3 +nature 'neItS@R M6% 2 +natures 'neItS@z Mj% 2 +naturism 'neItS@rIz@m L@% 4 +naturist 'neItS@rIst K6% 3 +naturists 'neItS@rIsts Kj% 3 +naught nOt M6% 1 +naughtier 'nOtI@R Or% 3 +naughtiest 'nOtIIst Os% 3 +naughtily 'nOtIlI Pu% 3 +naughtiness 'nOtIn@s L@% 3 +naughts nOts Mj% 1 +naughty 'nOtI OD% 2 +nausea 'nOsI@ L@% 3 +nauseate 'nOsIeIt H2$ 36A +nauseated 'nOsIeItId Hc$,Hd% 46A +nauseates 'nOsIeIts Ha$ 36A +nauseating 'nOsIeItIN Hb% 46A +nauseous 'nOsI@s OA% 3 +nautch nOtS K7$ 1 +nautch-girl 'nOtS-g3l K6$ 2 +nautch-girls 'nOtS-g3lz Kj$ 2 +nautches 'nOtSIz Kj$ 2 +nautical 'nOtIkl OA% 3 +nautilus 'nOtIl@s K7$ 3 +nautiluses 'nOtIl@sIz Kj$ 4 +naval 'neIvl OA% 2 +nave neIv K6% 1 +navel 'neIvl K6% 2 +navels 'neIvlz Kj% 2 +naves neIvz Kj% 1 +navies 'neIvIz Kj% 2 +navigability ,n&vIg@'bIlItI L@% 6 +navigable 'n&vIg@bl OA% 4 +navigate 'n&vIgeIt J2% 32A,6A +navigated 'n&vIgeItId Jc%,Jd% 42A,6A +navigates 'n&vIgeIts Ja% 32A,6A +navigating 'n&vIgeItIN Jb% 42A,6A +navigation ,n&vI'geISn L@% 4 +navigator 'n&vIgeIt@R K6% 4 +navigators 'n&vIgeIt@z Kj% 4 +navvies 'n&vIz Kj% 2 +navvy 'n&vI K8% 2 +navy 'neIvI K8% 2 +nay neI Pu% 1 +ne plus ultra ,ni ,plVs 'Vltr@ Ki$ 4 +ne'er ne@R Pu$ 1 +ne'er-do-well 'ne@-du-wel K6% 3 +ne'er-do-wells 'ne@-du-welz Kj% 3 +neap nip K6$ 1 +neap-tide 'nip-taId K6% 2 +neap-tides 'nip-taIdz Kj% 2 +neaps nips Kj$ 1 +near nI@R J0%,OC*,Pu*,T-* 12A,6A +near-sighted nI@-'saItId OA% 3 +nearby 'nI@baI OA% 2 +neared nI@d Jc%,Jd% 12A,6A +nearer 'nI@r@R Or%,Pu% 2 +nearest 'nI@rIst Os%,Pu% 2 +nearing 'nI@rIN Jb% 22A,6A +nearly 'nI@lI Pu% 2 +nearness 'nI@n@s L@% 2 +nears nI@z Ja% 12A,6A +nearside 'nI@saId K6% 2 +nearsides 'nI@saIdz Kj$ 2 +neat nit OC% 1 +neater 'nit@R Or% 2 +neatest 'nitIst Os% 2 +neatly 'nitlI Pu% 2 +neatness 'nitn@s L@% 2 +nebula 'nebjUl@ K6% 3 +nebulae 'nebjUli Kj% 3 +nebular 'nebjUl@R OA$ 3 +nebulas 'nebjUl@z Kj% 3 +nebulous 'nebjUl@s OA% 3 +necessaries 'nes@s@rIz Kj% 4 +necessarily ,nes@'ser@lI Pu% 5 +necessary 'nes@s@rI K8%,OA% 4 +necessitate nI'sesIteIt H2% 46A,6C +necessitated nI'sesIteItId Hc%,Hd% 56A,6C +necessitates nI'sesIteIts Ha% 46A,6C +necessitating nI'sesIteItIN Hb% 56A,6C +necessities nI'sesItIz Mj% 4 +necessitous nI'sesIt@s OA$ 4 +necessity nI'sesItI M8% 4 +neck nek I0%,K6% 1 +neckband 'nekb&nd K6% 2 +neckbands 'nekb&ndz Kj% 2 +neckcloth 'nek+kl0T K6$ 2 +neckcloths 'nek+kl0Ts Kj$ 2 +necked nekt Ic%,Id% 1 +neckerchief 'nek@tSIf K6$ 3 +neckerchiefs 'nek@tSIfs Kj$ 3 +necking 'nekIN Ib% 2 +necklace 'nekl@s K6% 2 +necklaces 'nekl@sIz Kj% 3 +necklet 'neklIt K6$ 2 +necklets 'neklIts Kj$ 2 +neckline 'neklaIn K6% 2 +necklines 'neklaInz Kj% 2 +necks neks Ia%,Kj% 1 +necktie 'nektaI K6% 2 +neckties 'nektaIz Kj% 2 +neckwear 'nekwe@R L@% 2 +necromancer 'nekr@m&ns@R K6$ 4 +necromancers 'nekr@m&ns@z Kj$ 4 +necromancy 'nekr@m&nsI L@$ 4 +necropolis nI'kr0p@lIs K7$ 4 +necropolises nI'kr0p@lIsIz Kj$ 5 +nectar 'nekt@R L@% 2 +nectarine 'nekt@rIn K6% 3 +nectarines 'nekt@rInz Kj% 3 +need nid G0*,H0*,M6* 15,6A,6E,7A +needed 'nidId Gc%,Gd%,Hc%,Hd% 25,6A,6E,7A +needful 'nidf@l OA% 2 +needfully 'nidf@lI Pu$ 3 +needier 'nidI@R Or% 3 +neediest 'nidIIst Os% 3 +needing 'nidIN Gb%,Hb% 25,6A,6E,7A +needle 'nidl H2%,K6% 26A,15A +needlecraft 'nidlkrAft L@% 3 +needled 'nidld Hc%,Hd% 26A,15A +needles 'nidlz Ha%,Kj% 26A,15A +needless 'nidl@s OA% 2 +needlessly 'nidl@slI Pu% 3 +needlewoman 'nidlwUm@n Ki% 4 +needlewomen 'nidlwImIn Kj% 4 +needlework 'nidlw3k L@% 3 +needling 'nidlIN Hb% 26A,15A +needn't 'nidnt Gg% 2 +needs nidz Ga%,Ha%,Mj%,Pu$ 15,6A,6E,7A +needy 'nidI OD% 2 +nefarious nI'fe@rI@s OA% 4 +nefariously nI'fe@rI@slI Pu% 5 +nefariousness nI'fe@rI@sn@s L@$ 5 +negate nI'geIt H2% 26A +negated nI'geItId Hc%,Hd% 36A +negates nI'geIts Ha% 26A +negating nI'geItIN Hb% 36A +negation nI'geISn L@% 3 +negative 'neg@tIv H2$,K6%,OA% 36A +negatived 'neg@tIvd Hc$,Hd$ 36A +negatively 'neg@tIvlI Pu% 4 +negatives 'neg@tIvz Ha%,Kj% 36A +negativing 'neg@tIvIN Hb$ 46A +neglect nI'glekt H0%,L@% 26A,6C,7A +neglected nI'glektId Hc%,Hd% 36A,6C,7A +neglectful nI'glektf@l OA% 3 +neglectfully nI'glektf@lI Pu% 4 +neglectfulness nI'glektf@ln@s L@% 4 +neglecting nI'glektIN Hb% 36A,6C,7A +neglects nI'glekts Ha% 26A,6C,7A +negligee 'neglIZeI M6% 3 +negligees 'neglIZeIz Mj% 3 +negligence 'neglIdZ@ns L@% 3 +negligent 'neglIdZ@nt OA% 3 +negligently 'neglIdZ@ntlI Pu% 4 +negligible 'neglIdZ@bl OA% 4 +negotiable nI'g@USI@bl OA% 4 +negotiate nI'g@USIeIt J2% 42A,3A,6A,14 +negotiated nI'g@USIeItId Jc%,Jd% 52A,3A,6A,14 +negotiates nI'g@USIeIts Ja% 42A,3A,6A,14 +negotiating nI'g@USIeItIN Jb% 52A,3A,6A,14 +negotiation nI,g@USI'eISn M6% 5 +negotiations nI,g@USI'eISnz Mj% 5 +negotiator nI'g@USIeIt@R K6% 5 +negotiators nI'g@USIeIt@z Kj% 5 +negus 'nig@s L@$ 2 +neigh neI I0%,K6% 1 +neighbour 'neIb@R J0$,K6% 23A,6A +neighboured 'neIb@d Jc$,Jd$ 23A,6A +neighbourhood 'neIb@hUd K6% 3 +neighbourhoods 'neIb@hUdz Kj% 3 +neighbouring 'neIb@rIN Jb% 33A,6A +neighbourliness 'neIb@lIn@s L@% 4 +neighbourly 'neIb@lI OA% 3 +neighbours 'neIb@z Ja$,Kj% 23A,6A +neighed neId Ic%,Id% 1 +neighing 'neIIN Ib% 2 +neighs neIz Ia%,Kj% 1 +neither 'naID@R OA%,Pu%,Qx%,V-% 2 +nem con ,nem 'k0n Pu$ 2 +nemeses 'nem@siz Kj$ 3 +nemesis 'nem@sIs Ki% 3 +neo- 'ni@U- U-% 2 +neocolonialism ,ni@Uk@'l@UnI@lIz@m L@% 8 +neolithic ,ni@'lITIk OA% 4 +neologism ni'0l@dZIz@m M6% 5 +neologisms ni'0l@dZIz@mz Mj% 5 +neon 'ni0n L@% 2 +neophyte 'ni@faIt K6$ 3 +neophytes 'ni@faIts Kj$ 3 +neoplasm 'ni@Upl&z@m K6$ 4 +neoplasms 'ni@Upl&z@mz Kj$ 4 +nephew 'nevju K6% 2 +nephews 'nevjuz Kj% 2 +nephritis nI'fraItIs L@$ 3 +nepotism 'nep@tIz@m L@% 4 +nereid 'nI@rIId K6$ 3 +nereids 'nI@rIIdz Kj$ 3 +nerve n3v H2%,M6% 16A,14,16A +nerve-cell 'n3v-sel K6% 2 +nerve-cells 'n3v-selz Kj% 2 +nerve-centre 'n3v-sent@R K6% 3 +nerve-centres 'n3v-sent@z Kj% 3 +nerve-racking 'n3v-r&kIN OA% 3 +nerved n3vd Hc%,Hd% 16A,14,16A +nerveless 'n3vl@s OA% 2 +nervelessly 'n3vl@slI Pu% 3 +nerves n3vz Ha$,Mj% 16A,14,16A +nerving 'n3vIN Hb$ 26A,14,16A +nervous 'n3v@s OA% 2 +nervously 'n3v@slI Pu% 3 +nervousness 'n3v@sn@s L@% 3 +nervy 'n3vI OA% 2 +nescience 'nesI@ns L@$ 3 +nescient 'nesI@nt OA$ 3 +ness nes K7$ 1 +nesses 'nesIz Kj$ 2 +nest nest I0%,K6% 12A,2C +nest-egg 'nest-eg K6% 2 +nest-eggs 'nest-egz Kj% 2 +nested 'nestId Ic%,Id% 22A,2C +nesting 'nestIN Ib% 22A,2C +nestle 'nesl J2% 22C,15A +nestled 'nesld Jc%,Jd% 22C,15A +nestles 'neslz Ja% 22C,15A +nestling 'neslIN Jb% 22C,15A +nestling 'nestlIN K6% 2 +nestlings 'nestlINz Kj% 2 +nests nests Ia%,Kj% 12A,2C +net net H4%,M6%,OA% 16A +netball 'netbOl L@% 2 +nether 'neD@R OA% 2 +nethermost 'neD@m@Ust OA% 3 +nets nets Ha%,Mj% 16A +nett net H0$,OA$ 16A +netted 'netId Hc%,Hd% 26A +netting 'netIN Hb%,L@% 26A +nettle 'netl H2%,K6% 26A +nettled 'netld Hc%,Hd% 26A +nettlerash 'netlr&S L@$ 3 +nettles 'netlz Ha%,Kj% 26A +nettling 'netlIN Hb% 26A +netts nets Ha$ 16A +network 'netw3k K6% 2 +networks 'netw3ks Kj% 2 +neural 'njU@r@l OA% 2 +neuralgia njU@'r&ldZ@ L@% 3 +neuralgic nju'r&ldZIk OA$ 3 +neurasthenia ,njU@r@s'TinI@ L@% 5 +neurasthenic ,njur@s'TenIk K6$,OA$ 4 +neurasthenics ,njur@s'TenIks Kj$ 4 +neuritis njU@'raItIs L@$ 3 +neurologist njU@'r0l@dZIst K6% 4 +neurologists njU@'r0l@dZIsts Kj% 4 +neurology njU@'r0l@dZI L@% 4 +neuroses njU@'r@Usiz Kj% 3 +neurosis njU@'r@UsIs Ki% 3 +neurotic njU@'r0tIk K6%,OA% 3 +neurotically njU@'r0tIklI Pu% 4 +neurotics njU@'r0tIks Kj% 3 +neuter 'njut@R H0$,K6%,OA% 2 +neutered 'njut@d Hc$,Hd% 2 +neutering 'njut@rIN Hb$ 3 +neuters 'njut@z Ha$,Kj$ 2 +neutral 'njutr@l K6%,OA% 2 +neutrality nju'tr&lItI L@% 4 +neutralization ,njutr@laI'zeISn M6% 5 +neutralizations ,njutr@laI'zeISnz Mj% 5 +neutralize 'njutr@laIz H2% 36A +neutralized 'njutr@laIzd Hc%,Hd% 36A +neutralizes 'njutr@laIzIz Ha% 46A +neutralizing 'njutr@laIzIN Hb% 46A +neutrals 'njutr@lz Kj% 2 +neutron 'njutr0n K6% 2 +neutrons 'njutr0nz Kj% 2 +never 'nev@R Pu* 2 +nevermore ,nev@'mOR Pu% 3 +nevertheless ,nev@D@'les Pu%,V-% 4 +new nju OC*,Pu* 1 +newcomer 'njukVm@R K6% 3 +newcomers 'njukVm@z Kj% 3 +newel 'nju@l K6$ 2 +newels 'nju@lz Kj$ 2 +newer 'nju@R Or% 2 +newest 'njuIst Os% 2 +newfangled ,nju'f&Ngld OA% 3 +newly 'njulI Pu% 2 +newlywed 'njulIwed K6% 3 +newlyweds 'njulIwedz Kj% 3 +newness 'njun@s L@% 2 +news njuz L@% 1 +newsagent 'njuzeIdZ@nt K6% 3 +newsagents 'njuzeIdZ@nts Kj% 3 +newsboy 'njuzboI K6% 2 +newsboys 'njuzboIz Kj% 2 +newscast 'njuzkAst K6% 2 +newscaster 'njuzkAst@R K6% 3 +newscasters 'njuzkAst@z Kj% 3 +newscasts 'njuzkAsts Kj% 2 +newsdealer 'njuzdil@R K6% 3 +newsdealers 'njuzdil@z Kj% 3 +newsflash 'njuzfl&S K7% 2 +newsflashes 'njuzfl&SIz Kj% 3 +newsier 'njuzI@R Or$ 3 +newsiest 'njuzIIst Os$ 3 +newsless 'njuzl@s OA$ 2 +newsletter 'njuzlet@R K6% 3 +newsletters 'njuzlet@z Kj% 3 +newsmonger 'njuzmVNg@R K6$ 3 +newsmongers 'njuzmVNg@z Kj$ 3 +newspaper 'njuspeIp@R K6% 3 +newspaperman 'njuspeIp@m&n Ki% 4 +newspapermen 'njuspeIp@men Kj% 4 +newspapers 'njuspeIp@z Kj% 3 +newsprint 'njuzprInt L@% 2 +newsreel 'njuzril K6% 2 +newsreels 'njuzrilz Kj% 2 +newsroom 'njuzrum K6% 2 +newsrooms 'njuzrumz Kj% 2 +newssheet 'njuz+Sit K6% 2 +newssheets 'njuz+Sits Kj% 2 +newsstand 'njuz+st&nd K6% 2 +newsstands 'njuz+st&ndz Kj% 2 +newsvendor 'njuzvend@R K6% 3 +newsvendors 'njuzvend@z Kj% 3 +newsworthy 'njuzw3DI OA% 3 +newsy 'njuzI OD% 2 +newt njut K6% 1 +newts njuts Kj% 1 +next nekst K9%,OA*,Pu*,T-* 1 +nexus 'neks@s K7% 2 +nexuses 'neks@sIz Kj$ 3 +nib nIb K6% 1 +nibble 'nIbl J2%,K6% 22A,3A,6A +nibbled 'nIbld Jc%,Jd% 22A,3A,6A +nibbles 'nIblz Ja%,Kj% 22A,3A,6A +nibbling 'nIblIN Jb% 22A,3A,6A +nibs nIbz Kj% 1 +nice naIs OB% 1 +nicely 'naIslI Pu% 2 +niceness 'naIsn@s L@% 2 +nicer 'naIs@R Or% 2 +nicest 'naIsIst Os% 2 +niceties 'naIs@tIz Mj% 3 +nicety 'naIs@tI M8$ 3 +niche nItS K6% 1 +niches 'nItSIz Kj% 2 +nick nIk H0%,K6% 1 +nicked nIkt Hc%,Hd% 1 +nickel 'nIkl H4%,M6% 2 +nickelled 'nIkld Hc$,Hd$ 2 +nickelling 'nIk@lIN Hb$ 3 +nickels 'nIklz Ha$,Mj$ 2 +nicking 'nIkIN Hb% 2 +nicknack 'nIkn&k K6% 2 +nicknacks 'nIkn&ks Kj% 2 +nickname 'nIkneIm H2%,K6% 26A,23 +nicknamed 'nIkneImd Hc%,Hd% 26A,23 +nicknames 'nIkneImz Ha%,Kj% 26A,23 +nicknaming 'nIkneImIN Hb% 36A,23 +nicks nIks Ha%,Kj% 1 +nicotine 'nIk@tin L@% 3 +niece nis K6% 1 +nieces 'nisIz Kj% 2 +niff nIf K6$ 1 +niffier 'nIfI@R Or$ 3 +niffiest 'nIfIIst Os$ 3 +niffs nIfs Kj$ 1 +niffy 'nIfI OD$ 2 +niftier 'nIftI@R Or% 3 +niftiest 'nIftIIst Os% 3 +nifty 'nIftI OD% 2 +niggard 'nIg@d K6$ 2 +niggardliness 'nIg@dlIn@s L@% 4 +niggardly 'nIg@dlI OA% 3 +niggards 'nIg@dz Kj$ 2 +nigger 'nIg@R K6% 2 +niggers 'nIg@z Kj% 2 +niggle 'nIgl I2% 2 +niggled 'nIgld Ic%,Id% 2 +niggles 'nIglz Ia% 2 +niggling 'nIglIN Ib%,OA% 2 +nigh naI Pu$,T-$ 1 +nigher 'naI@R Pu$,T-$ 2 +nighest 'naIIst Pu$,T-$ 2 +night naIt M6* 1 +night-bell 'naIt-bel K6$ 2 +night-bells 'naIt-belz Kj$ 2 +night-bird 'naIt-b3d K6% 2 +night-birds 'naIt-b3dz Kj% 2 +night-light 'naIt-laIt K6% 2 +night-lights 'naIt-laIts Kj% 2 +night-line 'naIt-laIn K6$ 2 +night-lines 'naIt-laInz Kj$ 2 +night-porter naIt-'pOt@R K6% 3 +night-porters naIt-'pOt@z Kj% 3 +night-soil 'naIt-soIl L@% 2 +night-stop 'naIt-st0p K6$ 2 +night-stops 'naIt-st0ps Kj$ 2 +night-time 'naIt-aIm L@% 2 +night-watch 'naIt-w0tS K7% 2 +night-watches 'naIt-w0tSIz Kj% 3 +night-watchman naIt-'w0tSm@n Ki% 3 +night-watchmen naIt-'w0tSm@n Kj% 3 +nightcap 'naItk&p K6% 2 +nightcaps 'naItk&ps Kj% 2 +nightclub 'naItklVb K6% 2 +nightclubs 'naItklVbz Kj% 2 +nightdress 'naItdres K7% 2 +nightdresses 'naItdresIz Kj% 3 +nightfall 'naItfOl L@% 2 +nightgown 'naItgaUn K6% 2 +nightgowns 'naItgaUnz Kj% 2 +nightie 'naItI K6% 2 +nighties 'naItIz Kj% 2 +nightingale 'naItINgeIl K6% 3 +nightingales 'naItINgeIlz Kj% 3 +nightjar 'naItdZAR K6% 2 +nightjars 'naItdZAz Kj% 2 +nightlong 'naItl0N OA% 2 +nightly 'naItlI OA%,Pu% 2 +nightmare 'naItme@R K6% 2 +nightmares 'naItme@z Kj% 2 +nightmarish 'naItme@rIS OA% 3 +nights naIts Mj% 1 +nightshade 'naItSeId L@% 2 +nightshirt 'naItS3t K6% 2 +nightshirts 'naItS3ts Kj% 2 +nightwork 'naItw3k L@% 2 +nihilism 'naIIlIz@m L@% 4 +nihilist 'naIIlIst K6$ 3 +nihilistic ,naII'lIstIk OA% 4 +nihilists 'naIIlIsts Kj$ 3 +nil nIl L@% 1 +nimble 'nImbl OB% 2 +nimbleness 'nImbln@s L@% 3 +nimbler 'nImbl@R Or% 2 +nimblest 'nImblIst Os% 2 +nimbly 'nImblI Pu% 2 +nimbus 'nImb@s K7$ 2 +nimbuses 'nImb@sIz Kj$ 3 +niminy-piminy ,nImInI-'pImInI OA$ 6 +nincompoop 'nINk@mpup K6% 3 +nincompoops 'nINk@mpups Kj% 3 +nine naIn K6%,OA% 1 +ninefold 'naInf@Uld OA%,Pu% 2 +ninepence 'naInp@ns K6% 2 +ninepences 'naInp@nsIz Kj% 3 +ninepenny 'naInp@nI OA% 3 +ninepins 'naInpInz Lk% 2 +nines naInz Kj% 1 +nineteen ,naIn'tin K6%,OA% 2 +nineteens ,naIn'tinz Kj% 2 +nineteenth ,naIn'tinT K6%,OA% 2 +nineteenths ,naIn'tinTs Kj% 2 +nineties 'naIntIz Kj% 2 +ninetieth 'naIntI@T K6%,OA% 3 +ninetieths 'naIntI@Ts Kj% 3 +ninety 'naIntI K8%,OA% 2 +ninnies 'nInIz Kj% 2 +ninny 'nInI K8% 2 +ninth naInT K6%,OA% 1 +ninths naInTs Kj% 1 +nip nIp J4%,K6% 12A,2C,6A,15A,15B +nipped nIpt Jc%,Jd% 12A,2C,6A,15A,15B +nipper 'nIp@R K6% 2 +nippers 'nIp@z Kj% 2 +nippier 'nIpI@R Or$ 3 +nippiest 'nIpIIst Os$ 3 +nipping 'nIpIN Jb%,OA% 22A,2C,6A,15A,15B +nipple 'nIpl K6% 2 +nipples 'nIplz Kj% 2 +nippy 'nIpI OD% 2 +nips nIps Ja%,Kj% 12A,2C,6A,15A,15B +nirvana nI@'vAn@ K6$ 3 +nirvanas nI@'vAn@z Kj$ 3 +nisi 'naIsaI OA$,V-$ 2 +nit nIt K6% 1 +nitrate 'naItreIt K6% 2 +nitrates 'naItreIts Kj% 2 +nitre 'naIt@R L@$ 2 +nitric 'naItrIk OA% 2 +nitrochalk ,naItr@U'tSOk L@$ 3 +nitrogen 'naItr@dZ@n L@% 3 +nitroglycerin ,naItr@U'glIs@rin L@% 5 +nitroglycerine ,naItr@U'glIs@rin L@% 5 +nitrous 'naItr@s OA% 2 +nits nIts Kj% 1 +nitty-gritty ,nItI-'grItI L@% 4 +nitwit 'nItwIt K6% 2 +nitwits 'nItwIts Kj% 2 +nitwitted ,nIt'wItId OA% 3 +nix nIks L@$ 1 +no 'nVmb@R Y>% 2 +no n@U K6%,OA*,Pu*,W-* 1 +no one 'n@U wVn Qx% 2 +no-ball 'n@U-bOl K6% 2 +no-balls 'n@U-bOlz Kj% 2 +no-go 'n@U-g@U Oq% 2 +no-man's-land 'n@U-m&nz-l&nd Ki% 3 +no-one 'n@U-wVn Qx% 2 +nob n0b K6$ 1 +nobble 'n0bl H2% 26A +nobbled 'n0bld Hc%,Hd% 26A +nobbles 'n0blz Ha% 26A +nobbling 'n0blIN Hb% 26A +nobility n@U'bIlItI L@% 4 +noble 'n@Ubl K6%,OB% 2 +noble-mindedness ,n@Ubl-'maIndIdn@s L@% 5 +nobleman 'n@Ublm@n Ki% 3 +noblemen 'n@Ublm@n Kj% 3 +nobler 'n@Ubl@R Or% 2 +nobles 'n@Ublz Kj% 2 +noblesse n@U'bles Ki% 2 +noblesse oblige n@U,bles @'bliZ L@% 4 +noblest 'n@UblIst Os% 2 +nobly 'n@UblI Pu% 2 +nobodies 'n@Ub@dIz Kj% 3 +nobody 'n@Ub@dI K8%,Qx% 3 +nobs n0bz Kj% 1 +noctambulist n0k't&mbjUlIst K6$ 4 +noctambulists n0k't&mbjUlIsts Kj$ 4 +nocturnal n0k't3nl OA% 3 +nocturne 'n0kt3n K6% 2 +nocturnes 'n0kt3nz Kj% 2 +nod n0d J4%,K6% 12A,2C,3A,4A,6A,12A,13A +nodded 'n0dId Jc%,Jd% 22A,2C,3A,4A,6A,12A,13A +nodding 'n0dIN Jb% 22A,2C,3A,4A,6A,12A,13A +noddle 'n0dl K6$ 2 +noddles 'n0dlz Kj$ 2 +node n@Ud K6$ 1 +nodes n@Udz Kj$ 1 +nods n0dz Ja%,Kj% 12A,2C,3A,4A,6A,12A,13A +nodular 'n0djUl@R OA$ 3 +nodulated 'n0djUleItId OA$ 4 +nodule 'n0djul K6% 2 +nodules 'n0djulz Kj% 2 +noggin 'n0gIn K6$ 2 +noggins 'n0gInz Kj$ 2 +nohow 'n@UhaU Pu$ 2 +noise noIz H2%,M6% 1 +noised noIzd Hc%,Hd% 1 +noiseless 'noIzl@s OA% 2 +noiselessly 'noIzl@slI Pu% 3 +noiselessness 'noIzl@sn@s L@% 3 +noises 'noIzIz Ha%,Mj% 2 +noisier 'noIzI@R Or% 3 +noisiest 'noIzIIst Os% 3 +noisily 'noIzIlI Pu% 3 +noisiness 'noIzIn@s L@% 3 +noising 'noIzIN Hb$ 2 +noisome 'noIs@m OA$ 2 +noisy 'noIzI OD% 2 +nom de plume ,n0m d@ 'plum Ki% 3 +nomad 'n@Um&d K6% 2 +nomadic n@U'm&dIk OA% 3 +nomads 'n@Um&dz Kj% 2 +nomenclature n@'menkl@tS@R K6% 4 +nomenclatures n@'menkl@tS@z Kj$ 4 +nominal 'n0mInl OA% 3 +nominally 'n0mIn@lI Pu% 4 +nominate 'n0mIneIt H2% 36A,14,23 +nominated 'n0mIneItId Hc%,Hd% 46A,14,23 +nominates 'n0mIneIts Ha% 36A,14,23 +nominating 'n0mIneItIN Hb% 46A,14,23 +nomination ,n0mI'neISn M6% 4 +nominations ,n0mI'neISnz Mj% 4 +nominative 'n0mIn@tIv K6$,OA$ 4 +nominatives 'n0mIn@tIvz Kj$ 4 +nominee ,n0mI'ni K6% 3 +nominees ,n0mI'niz Kj% 3 +noms de plume ,n0m d@ 'plum Kj$ 3 +non compos mentis ,n0n ,k0mp@s 'mentIs OA$ 5 +non sequitur ,n0n 'sekwIt@R K6% 4 +non sequiturs ,n0n 'sekwIt@z Kj% 4 +non- ,n0n- U-% 1 +non-U 'n0n-ju OA$ 2 +non-compliance ,n0n-k@m'plaI@ns L@% 4 +non-contentious ,n0n-k@n'tenS@s OA% 4 +non-interference ,n0n-Int@'fI@r@ns L@% 5 +non-skid 'n0n-skId OA% 2 +nonage 'n@UnIdZ L@$ 2 +nonagenarian ,n0n@dZI'ne@rI@n K6$,OA$ 6 +nonagenarians ,n0n@dZI'ne@rI@nz Kj$ 6 +nonaggression ,n0n@'greSn L@% 4 +nonalignment ,n0n@'laInm@nt L@% 4 +nonce n0ns K6$ 1 +nonce-word 'n0ns-w3d K6$ 2 +nonce-words 'n0ns-w3dz Kj$ 2 +nonces 'n0nsIz Kj$ 2 +nonchalance 'n0nS@l@ns L@% 3 +nonchalant 'n0nS@l@nt OA% 3 +nonchalantly 'n0nS@l@ntlI Pu% 4 +noncombatant n0n'k0mb@t@nt K6% 4 +noncombatants n0n'k0mb@t@nts Kj% 4 +noncommissioned ,n0nk@'mISnd OA% 4 +noncommittal ,n0nk@'mItl OA% 4 +nonconductor ,n0nk@n'dVkt@R K6$ 4 +nonconductors ,n0nk@n'dVkt@z Kj$ 4 +nonconformist ,n0nk@n'fOmIst K6% 4 +nonconformists ,n0nk@n'fOmIsts Kj% 4 +nonconformity ,n0nk@n'fOmItI L@% 5 +nondescript 'n0ndIskrIpt K6$,OA% 3 +nondescripts 'n0ndIskrIpts Kj$ 3 +none nVn Pu%,Qx% 1 +nonentities n0'nentItIz Kj% 4 +nonentity n0'nentItI K8% 4 +nonesuch 'nVnsVtS Ki$ 2 +nonevent 'n0nIvent K6% 3 +nonevents 'n0nIvents Kj$ 3 +nonfiction n0n'fIkSn L@% 3 +nonflammable n0n'fl&m@bl OA% 4 +nonintervention ,n0nInt@'venSn L@% 5 +nonmoral n0n'm0r@l OA$ 3 +nonobservance ,n0n@b'z3v@ns L@% 4 +nonpareil ,n0np@'reIl K6$,OA$ 3 +nonpareils ,n0np@'reIlz Kj$ 3 +nonpayment n0n'peIm@nt M6% 3 +nonpayments n0n'peIm@nts Mj$ 3 +nonplus n0n'plVs H5$ 26A +nonplussed n0n'plVst Hc$,Hd% 26A +nonplusses n0n'plVsIz Ha$ 36A +nonplussing n0n'plVsIN Hb$ 36A +nonresident n0n'rezId@nt OA% 4 +nonsense 'n0nsns M6% 2 +nonsenses 'n0nsnsIz Mj% 3 +nonsensical n0n'sensIkl OA% 4 +nonsmoker n0n'sm@Uk@R K6% 3 +nonsmokers n0n'sm@Uk@z Kj% 3 +nonstarter n0n'stAt@R K6% 3 +nonstarters n0n'stAt@z Kj% 3 +nonstick 'n0nstIk OA% 2 +nonstop 'n0nst0p OA%,Pu% 2 +nonsuch 'nVnsVtS Ki$ 2 +nonunion n0n'junI@n OA% 3 +nonviolence n0n'vaI@l@ns L@% 4 +noodle 'nudl K6% 2 +noodles 'nudlz Kj% 2 +nook nUk K6% 1 +nooks nUks Kj% 1 +noon nun L@% 1 +noonday 'nundeI OA% 2 +noontide 'nuntaId L@% 2 +noose nus H2$,K6% 1 +noosed nust Hc$,Hd$ 1 +nooses 'nusIz Ha$,Kj% 2 +noosing 'nusIN Hb$ 2 +nope n@Up W-$ 1 +nor nOR V-% 1 +nor'- ,nOR- U-$ 1 +nor'-east ,nOr-'ist L@%,Pu% 2 +nor'-nor'-east ,nO-nOr-'ist L@%,Pu% 3 +nor'-nor'-west ,nO-nO-'west L@%,Pu% 3 +nor'-west ,nO-'west L@%,Pu% 2 +norm nOm K6% 1 +normal 'nOml L@%,OA% 2 +normalcy 'nOmlsI L@$ 3 +normality nO'm&lItI L@% 4 +normalization ,nOm@laI'zeISn M6% 5 +normalizations ,nOm@laI'zeISnz Mj% 5 +normalize 'nOm@laIz H2% 3 +normalized 'nOm@laIzd Hc%,Hd% 3 +normalizes 'nOm@laIzIz Ha% 4 +normalizing 'nOm@laIzIN Hb% 4 +normally 'nOm@lI Pu% 3 +normative 'nOm@tIv OA$ 3 +norms nOmz Kj% 1 +north nOT L@%,Pu% 1 +north-northeast ,nOT-nOT'ist L@%,Pu% 3 +north-northwest ,nOT-nOT'west L@%,Pu% 3 +northeast nOT'ist L@%,Pu% 2 +northeaster nOT'ist@R K6% 3 +northeasterly nOT'ist@lI OA% 4 +northeastern nOT'ist@n OA% 3 +northeasters nOT'ist@z Kj% 3 +northerly 'nOD@lI OA%,Pu% 3 +northern 'nOD@n OA% 2 +northerner 'nOD@n@R K6% 3 +northerners 'nOD@n@z Kj% 3 +northernmost 'nOD@nm@Ust OA% 3 +northwards 'nOTw@dz Pu% 2 +northwest nOT'west L@%,Pu% 2 +northwester nOT'west@R K6$ 3 +northwesterly nOT'west@lI OA% 4 +northwestern nOT'west@n OA% 3 +northwesters nOT'west@z Kj$ 3 +nos 'nVmb@z Y)% 2 +nos n@Uz Kj$ 1 +nose n@Uz J2%,K6% 12C,3A,15A,15B +nose-flute 'n@Uz-flut K6$ 2 +nose-flutes 'n@Uz-fluts Kj$ 2 +nose-wheel 'n@Uz-wil K6$ 2 +nose-wheels 'n@Uz-wilz Kj$ 2 +nosebag 'n@Uzb&g K6% 2 +nosebags 'n@Uzb&gz Kj% 2 +nosebleed 'n@Uzblid K6% 2 +nosebleeds 'n@Uzblidz Kj% 2 +nosecone 'n@Uzk@Un K6% 2 +nosecones 'n@Uzk@Unz Kj% 2 +nosed n@Uzd Jc%,Jd%,Ot% 12C,3A,15A,15B +nosedive 'n@UzdaIv I2%,K6% 2 +nosedived 'n@UzdaIvd Ic%,Id% 2 +nosedives 'n@UzdaIvz Ia%,Kj% 2 +nosediving 'n@UzdaIvIN Ib% 3 +nosegay 'n@UzgeI K6% 2 +nosegays 'n@UzgeIz Kj% 2 +nosering 'n@UzrIN K6$ 2 +noserings 'n@UzrINz Kj$ 2 +noses 'n@UzIz Ja%,Kj% 22C,3A,15A,15B +nosey 'n@UzI OA% 2 +nosh n0S I1%,L@% 1 +nosh-up 'n0S-Vp K6% 2 +nosh-ups 'n0S-Vps Kj$ 2 +noshed n0St Ic%,Id% 1 +noshes 'n0SIz Ia$ 2 +noshing 'n0SIN Ib$ 2 +nosier 'n@UzI@R Or% 3 +nosiest 'n@UzIIst Os% 3 +nosing 'n@UzIN Jb% 22C,3A,15A,15B +nostalgia n0'st&ldZ@ L@% 3 +nostalgic n0'st&ldZIk OA% 3 +nostalgically n0'st&ldZIklI Pu% 4 +nostril 'n0str@l K6% 2 +nostrils 'n0str@lz Kj% 2 +nostrum 'n0str@m K6$ 2 +nostrums 'n0str@mz Kj$ 2 +nosy 'n@UzI OD% 2 +not n0t Pu* 1 +nota bene ,n@Ut@ 'beneI Z-$ 4 +notabilities ,n@Ut@'bIlItIz Mj$ 5 +notability ,n@Ut@'bIlItI M8$ 5 +notable 'n@Ut@bl K6%,OA% 3 +notables 'n@Ut@blz Kj% 3 +notably 'n@Ut@blI Pu% 3 +notaries 'n@Ut@rIz Kj% 3 +notary 'n@Ut@rI K8% 3 +notation n@U'teISn M6% 3 +notations n@U'teISnz Mj% 3 +notch n0tS H1%,K7% 16A,15B +notched n0tSt Hc%,Hd% 16A,15B +notches 'n0tSIz Ha%,Kj% 26A,15B +notching 'n0tSIN Hb% 26A,15B +note n@Ut H2%,M6% 16A,8,9,10,15B +notebook 'n@UtbUk K6% 2 +notebooks 'n@UtbUks Kj% 2 +notecase 'n@UtkeIs K6$ 2 +notecases 'n@UtkeIsIz Kj$ 3 +noted 'n@UtId Hc%,Hd%,OA% 26A,8,9,10,15B +notepaper 'n@UtpeIp@R L@% 3 +notes n@Uts Ha%,Mj% 16A,8,9,10,15B +noteworthy 'n@Utw3DI OA% 3 +nothing 'nVTIN K6*,Pu* 2 +nothingness 'nVTINn@s L@% 3 +nothings 'nVTINz Kj% 2 +notice 'n@UtIs J2%,M6% 22A,6A,8,9,10,18A,19A +notice-board 'n@UtIs-bOd K6% 3 +notice-boards 'n@UtIs-bOdz Kj% 3 +noticeable 'n@UtIs@bl OA% 4 +noticeably 'n@UtIs@blI Pu% 4 +noticed 'n@UtIst Jc%,Jd% 22A,6A,8,9,10,18A,19A +notices 'n@UtIsIz Ja%,Mj% 32A,6A,8,9,10,18A,19A +noticing 'n@UtIsIN Jb% 32A,6A,8,9,10,18A,19A +notifiable 'n@UtIfaI@bl OA% 5 +notification ,n@UtIfI'keISn M6% 5 +notifications ,n@UtIfI'keISnz Mj% 5 +notified 'n@UtIfaId Hc%,Hd% 36A,11,14 +notifies 'n@UtIfaIz Ha% 36A,11,14 +notify 'n@UtIfaI H3% 36A,11,14 +notifying 'n@UtIfaIIN Hb% 46A,11,14 +noting 'n@UtIN Hb% 26A,8,9,10,15B +notion 'n@USn K6% 2 +notional 'n@USn@l OA% 3 +notions 'n@USnz Kj% 2 +notoriety ,n@Ut@'raI@tI L@% 5 +notorious n@U'tOrI@s OA% 4 +notoriously n@U'tOrI@slI Pu% 5 +notwithstanding ,n0twIT'st&ndIN Pu%,T-%,V-% 4 +nougat 'nugA M6% 2 +nougats 'nugAz Mj$ 2 +nought nOt K6% 1 +noughts nOts Kj% 1 +noun naUn K6% 1 +nouns naUnz Kj% 1 +nourish 'nVrIS H1% 26A +nourished 'nVrISt Hc%,Hd% 26A +nourishes 'nVrISIz Ha% 36A +nourishing 'nVrISIN Hb% 36A +nourishment 'nVrISm@nt L@% 3 +nous naUs L@$ 1 +nouveau riche ,nuv@U 'riS Ki$ 3 +nouveaux riches ,nuv@U 'riS Kj$ 3 +nova 'n@Uv@ K6$ 2 +novae 'n@Uvi Kj$ 2 +novas 'n@Uv@z Kj$ 2 +novel 'n0vl K6%,OA% 2 +novelette ,n0v@l'et K6% 3 +novelettes ,n0v@l'ets Kj% 3 +novelist 'n0v@lIst K6% 3 +novelists 'n0v@lIsts Kj% 3 +novels 'n0vlz Kj% 2 +novelties 'n0vltIz Mj% 3 +novelty 'n0vltI M8% 3 +novice 'n0vIs K6% 2 +novices 'n0vIsIz Kj% 3 +noviciate n@'vISI@t K6% 4 +noviciates n@'vISI@ts Kj$ 4 +novitiate n@'vISI@t K6% 4 +novitiates n@'vISI@ts Kj$ 4 +now naU Pu*,V-* 1 +nowadays 'naU@deIz Pu% 3 +nowhere 'n@Uwe@R Pu% 2 +nowise 'n@UwaIz Pu$ 2 +noxious 'n0kS@s OA% 2 +noxiously 'n0kS@slI Pu% 3 +noxiousness 'n0kS@sn@s L@% 3 +nozzle 'n0zl K6% 2 +nozzles 'n0zlz Kj% 2 +nr nI@R Y~% 2 +nuance 'njuAns K6% 2 +nuances 'njuAnsIz Kj% 3 +nub nVb K6% 1 +nubile 'njubaIl OA% 2 +nubs nVbz Kj$ 1 +nuclear 'njuklI@R OA% 3 +nuclei 'njuklIaI Kj% 3 +nucleic nju'kleIIk OA% 3 +nucleus 'njuklI@s Ki% 3 +nude njud K6%,OA% 1 +nudes njudz Kj% 1 +nudge nVdZ H2%,K6% 16A +nudged nVdZd Hc%,Hd% 16A +nudges 'nVdZIz Ha%,Kj% 26A +nudging 'nVdZIN Hb% 26A +nudism 'njudIz@m L@% 3 +nudist 'njudIst K6% 2 +nudists 'njudIsts Kj% 2 +nudity 'njudItI L@% 3 +nugatory 'njug@t@rI OA$ 4 +nugget 'nVgIt K6% 2 +nuggets 'nVgIts Kj% 2 +nuisance 'njusns K6% 2 +nuisances 'njusnsIz Kj% 3 +null nVl OA% 1 +nullification ,nVlIfI'keISn L@% 5 +nullified 'nVlIfaId Hc%,Hd% 36A +nullifies 'nVlIfaIz Ha% 36A +nullify 'nVlIfaI H3% 36A +nullifying 'nVlIfaIIN Hb% 46A +nullity 'nVlItI L@% 3 +numb nVm H0%,OA% 16A +numbed nVmd Hc%,Hd% 16A +number 'nVmb@R H0%,K6* 22C,6A,14 +numbered 'nVmb@d Hc%,Hd% 22C,6A,14 +numbering 'nVmb@rIN Hb% 32C,6A,14 +numberless 'nVmb@lIs OA% 3 +numberplate 'nVmb@pleIt K6% 3 +numberplates 'nVmb@pleIts Kj% 3 +numbers 'nVmb@z Ha%,Kj% 22C,6A,14 +numbing 'nVmIN Hb% 26A +numbly 'nVmlI Pu% 2 +numbness 'nVmn@s L@% 2 +numbs nVmz Ha% 16A +numerable 'njum@r@bl OA$ 4 +numeracy 'njum@r@sI L@% 4 +numeral 'njum@r@l K6%,OA% 3 +numerals 'njum@r@lz Kj% 3 +numerate 'njum@r@t OA% 3 +numeration ,njum@'reISn M6$ 4 +numerations ,njum@'reISnz Mj$ 4 +numerator 'njum@reIt@R K6$ 4 +numerators 'njum@reIt@z Kj$ 4 +numeric nju'merIk OA% 3 +numerical nju'merIkl OA% 4 +numerically nju'merIklI Pu% 4 +numerous 'njum@r@s OA% 3 +numinous 'njumIn@s OA$ 3 +numismatics ,njumIz'm&tIks Lk$ 4 +numismatist nju'mIzm@tIst K6$ 4 +numismatists nju'mIzm@tIsts Kj$ 4 +numskull 'nVmskVl K6% 2 +numskulls 'nVmskVlz Kj% 2 +nun nVn K6% 1 +nuncio 'nVnsI@U K6$ 3 +nuncios 'nVnsI@Uz Kj$ 3 +nunneries 'nVn@rIz Kj% 3 +nunnery 'nVn@rI K8% 3 +nuns nVnz Kj% 1 +nuptial 'nVpSl OA% 2 +nuptials 'nVpSlz Kj% 2 +nurse n3s H2%,M6% 16A +nursed n3st Hc%,Hd% 16A +nurseling 'n3slIN K6% 2 +nurselings 'n3slINz Kj% 2 +nursemaid 'n3smeId K6% 2 +nursemaids 'n3smeIdz Kj% 2 +nurseries 'n3s@rIz Kj% 3 +nursery 'n3s@rI K8% 3 +nurseryman 'n3s@rIm@n Ki% 4 +nurserymen 'n3s@rIm@n Kj% 4 +nurses 'n3sIz Ha%,Mj% 26A +nursing 'n3sIN Hb% 26A +nursing-home 'n3sIN-h@Um K6% 3 +nursing-homes 'n3sIN-h@Umz Kj% 3 +nursling 'n3slIN K6% 2 +nurslings 'n3slINz Kj% 2 +nurture 'n3tS@R H2%,L@% 2 +nurtured 'n3tS@d Hc%,Hd% 2 +nurtures 'n3tS@z Ha% 2 +nurturing 'n3tS@rIN Hb% 3 +nut nVt I4%,K6% 1 +nut-brown 'nVt-braUn OA% 2 +nut-butter nVt-'bVt@R M6$ 3 +nut-butters nVt-'bVt@z Mj$ 3 +nutcrackers 'nVtkr&k@z Kj% 3 +nuthouse 'nVthaUs K6% 2 +nuthouses 'nVthaUzIz Kj$ 3 +nutmeg 'nVtmeg M6% 2 +nutmegs 'nVtmegz Mj$ 2 +nutria 'njutrI@ L@$ 3 +nutrient 'njutrI@nt K6%,OA% 3 +nutrients 'njutrI@nts Kj% 3 +nutriment 'njutrIm@nt K6% 3 +nutriments 'njutrIm@nts Kj% 3 +nutrition nju'trISn L@% 3 +nutritional nju'trIS@nl OA% 4 +nutritionally nju'trISn@lI Pu% 4 +nutritious nju'trIS@s OA% 3 +nutritive 'njutrItIv OA$ 3 +nuts nVts Ia$,Kj%,OA% 1 +nutshell 'nVt+Sel K6% 2 +nutshells 'nVt+Selz Kj% 2 +nutted 'nVtId Ic%,Id% 2 +nuttier 'nVtI@R Or% 3 +nuttiest 'nVtIIst Os% 3 +nutting 'nVtIN Ib$ 2 +nutty 'nVtI OD% 2 +nuzzle 'nVzl J2% 22C,6A +nuzzled 'nVzld Jc%,Jd% 22C,6A +nuzzles 'nVzlz Ja% 22C,6A +nuzzling 'nVzlIN Jb% 22C,6A +nylon 'naIl0n M6% 2 +nylons 'naIl0nz Mj% 2 +nymph nImf K6% 1 +nymphet nIm'fet K6$ 2 +nymphets nIm'fets Kj$ 2 +nympho 'nImf@U K6% 2 +nymphomania ,nImf@'meInI@ L@% 5 +nymphomaniac ,nImf@'meInI&k K6%,OA% 5 +nymphomaniacs ,nImf@'meInI&ks Kj% 5 +nymphos 'nImf@Uz Kj% 2 +nymphs nImfs Kj% 1 +o @U Ki$ 1 +o'clock @'kl0k Z-% 2 +o'er OR Pu$,T-$ 1 +o's @Uz Kj$ 1 +oaf @Uf K6% 1 +oafish '@UfIS OA% 2 +oafs @Ufs Kj% 1 +oak @Uk M6% 1 +oak-apple '@Uk-&pl K6% 3 +oak-apples '@Uk-&plz Kj% 3 +oaken '@Uk@n OA% 2 +oaks @Uks Mj% 1 +oakum '@Uk@m L@$ 2 +oar OR K6% 1 +oars Oz Kj% 1 +oarsman 'Ozm@n Ki% 2 +oarsmanship 'Ozm@nSIp L@% 3 +oarsmen 'Ozm@n Kj% 2 +oarswoman 'OzwUm@n Ki% 3 +oarswomen 'OzwImIn Kj% 3 +oases @U'eIsiz Kj% 3 +oasis @U'eIsIs Ki% 3 +oast @Ust K6$ 1 +oasthouse '@UsthaUs K6% 2 +oasthouses '@UsthaUzIz Kj% 3 +oasts @Usts Kj$ 1 +oat @Ut K6% 1 +oatcake '@UtkeIk K6% 2 +oatcakes '@UtkeIks Kj% 2 +oath @UT K6% 1 +oaths @UDz Kj% 1 +oatmeal '@Utmil L@% 2 +oats @Uts Kj% 1 +oaves @Uvz Kj$ 1 +ob 0b Y~% 1 +obbligato ,0blI'gAt@U K6$ 4 +obbligatos ,0blI'gAt@Uz Kj$ 4 +obduracy '0bdjU@r@sI L@% 4 +obdurate '0bdjU@r@t OA% 3 +obdurately '0bdjU@r@tlI Pu% 4 +obedience @'bidI@ns L@% 4 +obedient @'bidI@nt OA% 4 +obediently @'bidI@ntlI Pu% 5 +obeisance @U'beIsns M6$ 3 +obeisances @U'beIsnsIz Mj$ 4 +obelisk '0b@lIsk K6% 3 +obelisks '0b@lIsks Kj% 3 +obese @U'bis OA% 2 +obesity @U'bisItI L@% 4 +obey @'beI J0% 22A,6A +obeyed @'beId Jc%,Jd% 22A,6A +obeying @'beIIN Jb% 32A,6A +obeys @'beIz Ja% 22A,6A +obfuscate '0bf@skeIt H2$ 36A +obfuscated '0bf@skeItId Hc$,Hd$ 46A +obfuscates '0bf@skeIts Ha$ 36A +obfuscating '0bf@skeItIN Hb$ 46A +obi '@UbI K6$ 2 +obis '@UbIz Kj$ 2 +obiter dicta ,0bIt@ 'dIkt@ Kj$ 5 +obiter dictum ,0bIt@ 'dIkt@m Ki$ 5 +obituaries @'bItSU@rIz Kj% 5 +obituary @'bItSU@rI K8% 5 +object '0bdZIkt K6% 2 +object @b'dZekt J0% 22A,3A,9 +objected @b'dZektId Jc%,Jd% 32A,3A,9 +objecting @b'dZektIN Jb% 32A,3A,9 +objection @b'dZekSn M6% 3 +objectionable @b'dZekSn@bl OA% 4 +objectionably @b'dZekSn@blI Pu% 5 +objections @b'dZekSnz Mj% 3 +objective @b'dZektIv K6%,OA% 3 +objectively @b'dZektIvlI Pu% 4 +objectives @b'dZektIvz Kj% 3 +objectivity ,0bdZek'tIvItI L@% 5 +objector @b'dZekt@R K6% 3 +objectors @b'dZekt@z Kj% 3 +objects '0bdZIkts Kj% 2 +objects @b'dZekts Ja% 22A,3A,9 +objurgate '0bdZ@geIt H2$ 36A +objurgated '0bdZ@geItId Hc$,Hd$ 46A +objurgates '0bdZ@geIts Ha$ 36A +objurgating '0bdZ@geItIN Hb$ 46A +objurgation ,0bdZ@'geISn M6$ 4 +objurgations ,0bdZ@'geISnz Mj$ 4 +oblate '0bleIt OA$ 2 +oblation @'bleISn K6$ 3 +oblations @'bleISnz Kj$ 3 +obligate '0blIgeIt H2% 317 +obligated '0blIgeItId Hc%,Hd% 417 +obligates '0blIgeIts Ha% 317 +obligating '0blIgeItIN Hb$ 417 +obligation ,0blI'geISn K6% 4 +obligations ,0blI'geISnz Kj% 4 +obligatory @'blIg@trI OA% 4 +oblige @'blaIdZ H2% 26A,14,17 +obliged @'blaIdZd Hc%,Hd% 26A,14,17 +obliges @'blaIdZIz Ha% 36A,14,17 +obliging @'blaIdZIN Hb%,OA% 36A,14,17 +obligingly @'blaIdZINlI Pu% 4 +oblique @'blik OA% 2 +obliquely @'bliklI Pu% 3 +obliquities @'blIkwItIz Mj$ 4 +obliquity @'blIkwItI M8$ 4 +obliterate @'blIt@reIt H2% 46A +obliterated @'blIt@reItId Hc%,Hd% 56A +obliterates @'blIt@reIts Ha% 46A +obliterating @'blIt@reItIN Hb% 56A +obliteration @,blIt@'reISn L@% 5 +oblivion @'blIvI@n L@% 4 +oblivious @'blIvI@s OA% 4 +oblong '0bl0N K6%,OA% 2 +oblongs '0bl0Nz Kj% 2 +obloquy '0bl@kwI L@$ 3 +obnoxious @b'n0kS@s OA% 3 +obnoxiously @b'n0kS@slI Pu% 4 +obnoxiousness @b'n0kS@sn@s L@% 4 +oboe '@Ub@U K6% 2 +oboes '@Ub@Uz Kj% 2 +oboist '@Ub@UIst K6% 3 +oboists '@Ub@UIsts Kj% 3 +obscene @b'sin OA% 2 +obscenely @b'sinlI Pu% 3 +obscenities @b'senItIz Mj% 4 +obscenity @b'senItI M8% 4 +obscurantism ,0bskjU'r&ntIz@m L@$ 5 +obscurantist ,0bskjU'r&ntIst K6$ 4 +obscurantists ,0bskjU'r&ntIsts Kj$ 4 +obscure @b'skjU@R H2%,OA% 26A +obscured @b'skjU@d Hc%,Hd% 26A +obscurely @b'skjU@lI Pu% 3 +obscures @b'skjU@z Ha% 26A +obscuring @b'skjU@rIN Hb% 36A +obscurities @b'skjU@rItIz Mj% 4 +obscurity @b'skjU@rItI M8% 4 +obsequies '0bsIkwIz Kj$ 3 +obsequious @b'sikwI@s OA% 4 +obsequiously @b'sikwI@slI Pu% 5 +obsequiousness @b'sikwI@sn@s L@% 5 +observable @b'z3v@bl OA% 4 +observably @b'z3v@blI Pu% 4 +observance @b'z3v@ns M6% 3 +observances @b'z3v@nsIz Mj% 4 +observant @b'z3v@nt OA% 3 +observantly @b'z3v@ntlI Pu% 4 +observation ,0bz@'veISn M6% 4 +observations ,0bz@'veISnz Mj% 4 +observatories @b'z3v@trIz Kj% 4 +observatory @b'z3v@trI K8% 4 +observe @b'z3v J2% 22A,6A,8,9,10,18A,19A,25 +observed @b'z3vd Jc%,Jd% 22A,6A,8,9,10,18A,19A,25 +observer @b'z3v@R K6% 3 +observers @b'z3v@z Kj% 3 +observes @b'z3vz Ja% 22A,6A,8,9,10,18A,19A,25 +observing @b'z3vIN Jb%,OA% 32A,6A,8,9,10,18A,19A,25 +observingly @b'z3vINlI Pu$ 4 +obsess @b'ses H1$ 26A +obsessed @b'sest Hc$,Hd% 26A +obsesses @b'sesIz Ha$ 36A +obsessing @b'sesIN Hb$ 36A +obsession @b'seSn M6% 3 +obsessional @b'seS@nl OA% 4 +obsessionally @b'seSn@lI Pu% 4 +obsessions @b'seSnz Mj% 3 +obsessive @b'sesIv OA% 3 +obsessively @b'sesIvlI Pu% 4 +obsidian @b'sIdI@n L@$ 4 +obsolescence ,0bs@'lesns L@% 4 +obsolescent ,0bs@'lesnt OA% 4 +obsolete '0bs@lit OA% 3 +obstacle '0bst@kl K6% 3 +obstacles '0bst@klz Kj% 3 +obstetric @b'stetrIk OA% 3 +obstetrical @b'stetrIkl OA$ 4 +obstetrician ,0bstI'trISn K6% 4 +obstetricians ,0bstI'trISnz Kj% 4 +obstetrics @b'stetrIks Lk% 3 +obstinacy '0bstIn@sI L@% 4 +obstinate '0bstIn@t OA% 3 +obstinately '0bstIn@tlI Pu% 4 +obstreperous @b'strep@r@s OA% 4 +obstreperously @b'strep@r@slI Pu% 5 +obstreperousness @b'strep@r@sn@s L@% 5 +obstruct @b'strVkt H0% 26A +obstructed @b'strVktId Hc%,Hd% 36A +obstructing @b'strVktIN Hb% 36A +obstruction @b'strVkSn M6% 3 +obstructionism @b'strVkS@nIz@m L@$ 5 +obstructionist @b'strVkS@nIst K6$ 4 +obstructionists @b'strVkS@nIsts Kj$ 4 +obstructions @b'strVkSnz Mj% 3 +obstructive @b'strVktIv OA% 3 +obstructively @b'strVktIvlI Pu% 4 +obstructs @b'strVkts Ha% 26A +obtain @b'teIn J0% 22A,6A +obtainable @b'teIn@bl OA% 4 +obtained @b'teInd Jc%,Jd% 22A,6A +obtaining @b'teInIN Jb% 32A,6A +obtains @b'teInz Ja% 22A,6A +obtrude @b'trud J2% 22A,14 +obtruded @b'trudId Jc%,Jd% 32A,14 +obtrudes @b'trudz Ja% 22A,14 +obtruding @b'trudIN Jb% 32A,14 +obtrusive @b'trusIv OA% 3 +obtrusively @b'trusIvlI Pu% 4 +obtuse @b'tjus OA% 2 +obtusely @b'tjuslI Pu% 3 +obtuseness @b'tjusn@s L@% 3 +obverse '0bv3s K6% 2 +obverses '0bv3sIz Kj$ 3 +obviate '0bvIeIt H2% 36A +obviated '0bvIeItId Hc%,Hd% 46A +obviates '0bvIeIts Ha% 36A +obviating '0bvIeItIN Hb% 46A +obvious '0bvI@s OA% 3 +obviously '0bvI@slI Pu% 4 +obviousness '0bvI@sn@s L@% 4 +ocarina ,0k@'rin@ K6$ 4 +ocarinas ,0k@'rin@z Kj$ 4 +occasion @'keIZn H0%,M6% 36A,12A,13A +occasional @'keIZ@nl OA% 4 +occasionally @'keIZ@n@lI Pu% 5 +occasioned @'keIZnd Hc%,Hd% 36A,12A,13A +occasioning @'keIZnIN Hb% 46A,12A,13A +occasions @'keIZnz Ha%,Mj% 36A,12A,13A +occult 0'kVlt Ki%,OA% 2 +occupancies '0kjUp@nsIz Kj% 4 +occupancy '0kjUp@nsI K8% 4 +occupant '0kjUp@nt K6% 3 +occupants '0kjUp@nts Kj% 3 +occupation ,0kjU'peISn M6% 4 +occupational ,0kjU'peISn@l OA% 5 +occupations ,0kjU'peISnz Mj% 4 +occupied '0kjUpaId Hc%,Hd% 36A +occupier '0kjUpaI@R K6% 4 +occupiers '0kjUpaI@z Kj% 4 +occupies '0kjUpaIz Ha% 36A +occupy '0kjUpaI H3% 36A +occupying '0kjUpaIIN Hb% 46A +occur @'k3R I4% 22A,2C,3A +occurred @'k3d Ic%,Id% 22A,2C,3A +occurrence @'kVr@ns M6% 3 +occurrences @'kVr@nsIz Mj% 4 +occurring @'k3rIN Ib% 32A,2C,3A +occurs @'k3z Ia% 22A,2C,3A +ocean '@USn K6% 2 +oceanic ,@USI'&nIk OA% 4 +oceans '@USnz Kj% 2 +ochre '@Uk@R L@$ 2 +octagon '0kt@g@n K6% 3 +octagonal 0k't&g@nl OA% 4 +octagons '0kt@g@nz Kj% 3 +octane '0kteIn L@% 2 +octave '0ktIv K6% 2 +octaves '0ktIvz Kj% 2 +octavo 0k'teIv@U K6$ 3 +octavos 0k'teIv@Uz Kj$ 3 +octet 0k'tet K6% 2 +octets 0k'tets Kj% 2 +octette 0k'tet K6$ 2 +octettes 0k'tets Kj$ 2 +octogenarian ,0kt@dZI'ne@rI@n K6$,OA$ 6 +octogenarians ,0kt@dZI'ne@rI@nz Kj$ 6 +octopus '0kt@p@s K7% 3 +octopuses '0kt@p@sIz Kj% 4 +octroi '0ktrwA K6$ 2 +octrois '0ktrwAz Kj$ 2 +ocular '0kjUl@R OA% 3 +oculist '0kjUlIst K6% 3 +oculists '0kjUlIsts Kj% 3 +odalisque '@Ud@lIsk K6$ 3 +odalisques '@Ud@lIsks Kj$ 3 +odd 0d OC% 1 +odd-job 0d-'dZ0b Oq% 2 +odder '0d@R Or% 2 +oddest '0dIst Os% 2 +oddities '0dItIz Mj% 3 +oddity '0dItI M8% 3 +oddly '0dlI Pu% 2 +oddment '0dm@nt K6% 2 +oddments '0dm@nts Kj% 2 +odds 0dz Kj% 1 +odds-on 0dz-'0n OA%,Pu% 2 +ode @Ud K6% 1 +odes @Udz Kj% 1 +odious '@UdI@s OA% 3 +odiously '@UdI@slI Pu% 4 +odium '@UdI@m L@% 3 +odoriferous ,@Ud@'rIf@r@s OA$ 5 +odorous '@Ud@r@s OA% 3 +odour '@Ud@R M6% 2 +odourless '@Ud@l@s OA% 3 +odours '@Ud@z Mj% 2 +odyssey '0dIsI K6% 3 +odysseys '0dIsIz Kj% 3 +oecumenical ,ikju'menIkl OA$ 5 +oesophagus i's0f@g@s K7% 4 +oesophaguses i's0f@g@sIz Kj$ 5 +of 0v T-* 1 +off 0f OA%,P+*,T-*,U-* 1 +off-day '0f-deI K6% 2 +off-days '0f-deIz Kj$ 2 +off-licence '0f-laIsns K6% 3 +off-licences '0f-laIsnsIz Kj% 4 +off-peak '0f-pik Oq% 2 +off-putting ,0f-'pUtIN OA% 3 +off-scourings '0f-skaU@rINz Kj$ 4 +off-street '0f-strit Oq$ 2 +off-white ,0f-'waIt OA% 2 +offal '0fl L@% 2 +offbeat ,0f'bit OA% 2 +offence @'fens M6% 2 +offenceless @'fensl@s OA$ 3 +offences @'fensIz Mj% 3 +offend @'fend J0% 23A,6A +offended @'fendId Jc%,Jd% 33A,6A +offender @'fend@R K6% 3 +offenders @'fend@z Kj% 3 +offending @'fendIN Jb% 33A,6A +offends @'fendz Ja% 23A,6A +offensive @'fensIv K6%,OA% 3 +offensively @'fensIvlI Pu% 4 +offensiveness @'fensIvn@s L@% 4 +offensives @'fensIvz Kj% 3 +offer '0f@R J0%,K6% 22A,6A,7A,12A,13A,14,15B +offered '0f@d Jc%,Jd% 22A,6A,7A,12A,13A,14,15B +offering '0f@rIN Jb%,M6% 32A,6A,7A,12A,13A,14,15B +offerings '0f@rINz Mj% 3 +offers '0f@z Ja%,Kj% 22A,6A,7A,12A,13A,14,15B +offertories '0f@trIz Kj$ 3 +offertory '0f@trI K8$ 3 +offhand ,0f'h&nd OA%,Pu% 2 +offhanded ,0f'h&ndId OA%,Pu% 3 +offhandedly ,0f'h&ndIdlI OA%,Pu% 4 +office '0fIs K6* 2 +office-bearer '0fIs-be@r@R K6% 4 +office-bearers '0fIs-be@r@z Kj% 4 +office-block '0fIs-bl0k K6% 3 +office-blocks '0fIs-bl0ks Kj% 3 +office-boy '0fIs-boI K6% 3 +office-boys '0fIs-boIz Kj% 3 +office-holder '0fIs-h@Uld@R K6% 4 +office-holders '0fIs-h@Uld@z Kj% 4 +officer '0fIs@R K6% 3 +officers '0fIs@z Kj% 3 +offices '0fIsIz Kj% 3 +official @'fISl K6%,OA% 3 +officialdom @'fISld@m K6% 4 +officialdoms @'fISld@mz Kj$ 4 +officialese @,fIS@'liz L@$ 4 +officially @'fIS@lI Pu% 4 +officials @'fISlz Kj% 3 +officiate @'fISIeIt I2% 42A,2C,3A +officiated @'fISIeItId Ic%,Id% 52A,2C,3A +officiates @'fISIeIts Ia% 42A,2C,3A +officiating @'fISIeItIN Ib% 52A,2C,3A +officious @'fIS@s OA% 3 +officiously @'fIS@slI Pu% 4 +officiousness @'fIS@sn@s L@% 4 +offing '0fIN Ki% 2 +offish '0fIS OA$ 2 +offprint '0fprInt K6% 2 +offprints '0fprInts Kj% 2 +offset '0fset H5%,Hc%,Hd%,L@% 26A,14 +offsets '0fsets Ha% 26A,14 +offsetting 0f'setIN Hb% 36A,14 +offshoot '0fSut K6% 2 +offshoots '0fSuts Kj% 2 +offshore ,0f'SOR OA% 2 +offside 0f'saId Oq%,Pu% 2 +offspring '0fsprIN K9% 2 +offstage 0f'steIdZ OA%,Pu% 2 +oft 0ft Pu$ 1 +oft-times '0f-taImz Pu$ 2 +often '0fn Pu* 2 +oftener '0fn@R Pu% 2 +ogle '@Ugl J2% 23A,6A +ogled '@Ugld Jc%,Jd% 23A,6A +ogles '@Uglz Ja% 23A,6A +ogling '@UglIN Jb% 23A,6A +ogre '@Ug@R K6% 2 +ogreish '@Ug@rIS OA$ 3 +ogres '@Ug@z Kj% 2 +ogress '@Ugres K7$ 2 +ogresses '@UgresIz Kj$ 3 +oh @U W-% 1 +ohm @Um K6$ 1 +ohms @Umz Kj$ 1 +oho @U'h@U W-$ 2 +oil oIl H0%,M6% 16A +oil-bearing 'oIl-be@rIN OA% 3 +oil-burner 'oIl-b3n@R K6% 3 +oil-burners 'oIl-b3n@z Kj% 3 +oil-cake 'oIl-keIk L@$ 2 +oil-colours 'oIl-kVl@z Kj% 3 +oil-painting 'oIl-peIntIN M6% 3 +oil-paintings 'oIl-peIntINz Mj% 3 +oil-palm 'oIl-pAm K6% 2 +oil-palms 'oIl-pAmz Kj% 2 +oil-paper 'oIl-peIp@R L@$ 3 +oil-rig 'oIl-rIg K6% 2 +oil-rigs 'oIl-rIgz Kj% 2 +oil-silk 'oIl-sIlk L@$ 2 +oil-slick 'oIl-slIk K6% 2 +oil-slicks 'oIl-slIks Kj% 2 +oil-tanker 'oIl-t&Nk@R K6% 3 +oil-tankers 'oIl-t&Nk@z Kj% 3 +oil-well 'oIl-wel K6% 2 +oil-wells 'oIl-welz Kj% 2 +oilcan 'oIlk&n K6% 2 +oilcans 'oIlk&nz Kj% 2 +oilcloth 'oIlkl0T L@% 2 +oiled oIld Hc%,Hd%,OA% 16A +oiler 'oIl@R K6$ 2 +oilers 'oIl@z Kj$ 2 +oilfield 'oIlfild K6% 2 +oilfields 'oIlfildz Kj% 2 +oilfired 'oIlfaI@d OA% 2 +oilier 'oIlI@R Or% 3 +oiliest 'oIlIIst Os% 3 +oiliness 'oIlIn@s L@% 3 +oiling 'oIlIN Hb% 26A +oils oIlz Ha%,Mj% 16A +oilskin 'oIlskIn M6% 2 +oilskins 'oIlskInz Mj% 2 +oily 'oIlI OD% 2 +ointment 'oIntm@nt M6% 2 +ointments 'oIntm@nts Mj% 2 +okapi @U'kApI K6$ 3 +okapis @U'kApIz Kj$ 3 +okay ,@U'keI H0%,Ki%,OA%,Pu% 26A +okayed ,@U'keId Hc%,Hd% 26A +okaying ,@U'keIIN Hb$ 36A +okays ,@U'keIz Ha% 26A +okra '@Ukr@ L@$ 2 +old @Uld L@%,OC* 1 +old-fashioned @Ul-'f&Snd OA% 3 +old-maidish @Ul-'meIdIS OA% 3 +old-time '@Ul-taIm OA% 2 +old-timer @Ul-'taIm@R K6% 3 +old-timers @Ul-'taIm@z Kj% 3 +old-womanish @Ul-'wUm@nIS OA% 4 +old-world '@Uld-w3ld OA% 2 +olden '@Uld@n OA% 2 +older '@Uld@R Or% 2 +oldest '@UldIst Os% 2 +oldish '@UldIS OA% 2 +oldster '@Uldst@R K6% 2 +oldsters '@Uldst@z Kj% 2 +oleaginous ,@UlI'&dZIn@s OA$ 5 +oleander ,@UlI'&nd@R K6$ 4 +oleanders ,@UlI'&nd@z Kj$ 4 +olfactory 0l'f&kt@rI OA$ 4 +oligarch '0lIgAk K6$ 3 +oligarchies '0lIgAkIz Mj$ 4 +oligarchs '0lIgAks Kj$ 3 +oligarchy '0lIgAkI M8$ 4 +olive '0lIv K6%,OA% 2 +olive-tree '0lIv-tri K6% 3 +olive-trees '0lIv-triz Kj% 3 +olives '0lIvz Kj% 2 +ombudsman '0mbUdzm&n Ki% 3 +ombudsmen '0mbUdzmen Kj% 3 +omega '@UmIg@ K6% 3 +omegas '@UmIg@z Kj$ 3 +omelet '0mlIt K6$ 2 +omelets '0mlIts Kj$ 2 +omelette '0mlIt K6% 2 +omelettes '0mlIts Kj% 2 +omen '@Umen H0$,M6% 26A +omened '@Umend Hc$,Hd% 26A +omening '@UmenIN Hb$ 36A +omens '@Umenz Ha$,Mj% 26A +ominous '0mIn@s OA% 3 +ominously '0mIn@slI Pu% 4 +omission @'mISn M6% 3 +omissions @'mISnz Mj% 3 +omit @'mIt H4% 26A,6C,7A +omits @'mIts Ha% 26A,6C,7A +omitted @'mItId Hc%,Hd% 36A,6C,7A +omitting @'mItIN Hb% 36A,6C,7A +omnibus '0mnIb@s K7% 3 +omnibuses '0mnIb@sIz Kj% 4 +omnipotence 0m'nIp@t@ns L@% 4 +omnipotent 0m'nIp@t@nt OA% 4 +omniscience 0m'nIsI@ns L@% 4 +omniscient 0m'nIsI@nt OA% 4 +omnivorous 0m'nIv@r@s OA% 4 +on 0n P+*,T-* 1 +on to '0n t@ T-% 2 +on-licence '0n-laIsns K6$ 3 +on-licences '0n-laIsnsIz Kj$ 4 +once wVns Pu* 1 +oncoming '0nkVmIN Ki%,OA% 3 +one wVn K6%,OA*,Qx* 1 +one-armed 'wVn-Amd OA% 2 +one-eyed 'wVn-aId OA% 2 +one-horse 'wVn-hOs OA% 2 +one-idea'd wVn-aI'dI@d OA$ 4 +one-sided wVn-'saIdId OA% 3 +one-step 'wVn-step K6$ 2 +one-steps 'wVn-steps Kj$ 2 +one-time 'wVn-taIm OA% 2 +one-upmanship wVn-'Vpm@nSIp L@% 4 +oneness 'wVn+nIs L@% 2 +onerous '0n@r@s OA% 3 +onerously '0n@r@slI Pu% 4 +ones wVnz Kj% 1 +oneself wVn'self Qx% 2 +ongoing '0ng@UIN OA% 3 +onion 'VnI@n M6% 2 +onions 'VnI@nz Mj% 2 +onlooker '0nlUk@R K6% 3 +onlookers '0nlUk@z Kj% 3 +only '@UnlI OA*,Pu*,V-* 2 +onomatopoeia ,0n@,m&t@'pI@ L@$ 6 +onrush '0nrVS K7% 2 +onrushes '0nrVSIz Kj$ 3 +onset '0nset K6% 2 +onsets '0nsets Kj$ 2 +onshore '0nSOR OA%,Pu% 2 +onslaught '0nslOt K6% 2 +onslaughts '0nslOts Kj% 2 +onto '0nt@ T-% 2 +ontologies 0n't0l@dZIz Mj$ 4 +ontology 0n't0l@dZI M8$ 4 +onus '@Un@s Ki% 2 +onward '0nw@d OA%,Pu% 2 +onwards '0nw@dz Pu% 2 +onyx '0nIks L@$ 2 +oodles 'udlz Kj% 2 +oomph Umf L@$ 1 +ooze uz J2%,L@% 12C,6A +oozed uzd Jc%,Jd% 12C,6A +oozes 'uzIz Ja% 22C,6A +oozier 'uzI@R Or$ 3 +ooziest 'uzIIst Os$ 3 +oozing 'uzIN Jb% 22C,6A +oozy 'uzI OD$ 2 +op 0p Y~% 1 +op art '0p At L@$ 2 +op cit ,0p 'sIt Y~% 2 +opacity @U'p&sItI L@% 4 +opal '@Upl K6% 2 +opalescent ,@Up@'lesnt OA% 4 +opals '@Uplz Kj% 2 +opaque @U'peIk OA% 2 +opaquely @U'peIklI Pu% 3 +opaqueness @U'peIkn@s L@% 3 +open '@Up@n J0*,L@%,OA* 22A,2C,3A,6A,12C,14,15A,15B,16A +open-air '@Up@n-e@R Oq% 3 +open-ended ,@Up@n-'endId OA% 4 +open-eyed ,@Up@n-'aId OA% 3 +open-handed ,@Up@n-'h&ndId OA% 4 +open-hearted ,@Up@n-'hAtId OA% 4 +open-minded @Up@n-'maIndId OA% 4 +open-mouthed ,@Up@n-'maUDd OA% 3 +opencast '@Up@nkAst OA% 3 +opened '@Up@nd Jc%,Jd% 22A,2C,3A,6A,12C,14,15A,15B,16A +opener '@Up@n@R K6% 3 +openers '@Up@n@z Kj% 3 +opening '@Up@nIN Jb%,K6%,OA% 32A,2C,3A,6A,12C,14,15A,15B,16A +openings '@Up@nINz Kj% 3 +openly '@Up@nlI Pu% 3 +openness '@Up@n+n@s L@% 3 +opens '@Up@nz Ja% 22A,2C,3A,6A,12C,14,15A,15B,16A +openwork '@Up@nw3k L@$ 3 +opera '0p@r@ Kj$ 3 +opera '0pr@ M6% 2 +opera-cloak '0p@r@-kl@Uk K6% 4 +opera-cloaks '0p@r@-kl@Uks Kj% 4 +opera-glasses '0p@r@-glAsIz Kj% 5 +opera-hat '0p@r@-h&t K6$ 4 +opera-hats '0p@r@-h&ts Kj$ 4 +opera-house '0p@r@-haUs K6% 4 +opera-houses '0p@r@-haUzIz Kj% 5 +operable '0p@r@bl OA% 4 +operas '0pr@z Mj% 2 +operate '0p@reIt J2% 32A,2C,3A,4A,6A +operated '0p@reItId Jc%,Jd% 42A,2C,3A,4A,6A +operates '0p@reIts Ja% 32A,2C,3A,4A,6A +operatic ,0p@'r&tIk OA% 4 +operating '0p@reItIN Jb% 42A,2C,3A,4A,6A +operating-table '0p@reItIN-teIbl K6% 6 +operating-tables '0p@reItIN-teIblz Kj% 6 +operating-theatre '0p@reItIN-TI@t@R K6% 7 +operating-theatres '0p@reItIN-TI@t@z Kj% 7 +operation ,0p@'reISn M6% 4 +operational ,0p@'reISn@l OA% 4 +operations ,0p@'reISnz Mj% 4 +operative '0p@r@tIv K6%,OA% 4 +operatives '0p@r@tIvz Kj% 4 +operator '0p@reIt@R K6% 4 +operators '0p@reIt@z Kj% 4 +operetta ,0p@'ret@ K6% 4 +operettas ,0p@'ret@z Kj% 4 +ophthalmia 0f'T&lmI@ L@$ 4 +ophthalmic 0f'T&lmIk OA% 3 +ophthalmoscope 0f'T&lm@sk@Up K6% 4 +ophthalmoscopes 0f'T&lm@sk@Ups Kj% 4 +opiate '@UpI@t K6$ 3 +opiates '@UpI@ts Kj$ 3 +opine @'paIn H2$ 29 +opined @'paInd Hc$,Hd$ 29 +opines @'paInz Ha$ 29 +opining @'paInIN Hb$ 39 +opinion @'pInI@n M6% 3 +opinionated @'pInI@neItId OA% 5 +opinionative @'pInI@n@tIv OA$ 5 +opinions @'pInI@nz Mj% 3 +opium '@UpI@m L@% 3 +opium-den '@UpI@m-den K6% 4 +opium-dens '@UpI@m-denz Kj% 4 +opossum @'p0s@m K6$ 3 +opossums @'p0s@mz Kj$ 3 +opp 0p Y~$ 1 +opponent @'p@Un@nt K6% 3 +opponents @'p@Un@nts Kj% 3 +opportune '0p@tjun OA% 3 +opportunely '0p@tjunlI Pu% 4 +opportunism ,0p@'tjunIz@m L@% 5 +opportunist ,0p@'tjunIst K6% 4 +opportunists ,0p@'tjunIsts Kj% 4 +opportunities ,0p@'tjunItIz Mj% 5 +opportunity ,0p@'tjunItI M8% 5 +oppose @'p@Uz H2% 26A,14 +opposed @'p@Uzd Hc%,Hd% 26A,14 +opposes @'p@UzIz Ha% 36A,14 +opposing @'p@UzIN Hb% 36A,14 +opposite '0p@zIt K6%,OA% 3 +opposites '0p@zIts Kj% 3 +opposition ,0p@'zISn L@% 4 +oppress @'pres H1% 26A +oppressed @'prest Hc%,Hd% 26A +oppresses @'presIz Ha% 36A +oppressing @'presIN Hb% 36A +oppression @'preSn M6% 3 +oppressions @'preSnz Mj% 3 +oppressive @'presIv OA% 3 +oppressively @'presIvlI Pu% 4 +oppressor @'pres@R K6% 3 +oppressors @'pres@z Kj% 3 +opprobrious @'pr@UbrI@s OA$ 4 +opprobriously @'pr@UbrI@slI Pu$ 5 +opprobrium @'pr@UbrI@m L@% 4 +oppugn @'pjun H0$ 26A +oppugned @'pjund Hc$,Hd$ 26A +oppugning @'pjunIN Hb$ 36A +oppugns @'pjunz Ha$ 26A +opt 0pt I0% 13A +optative '0pt@tIv K6$,OA$ 3 +optatives '0pt@tIvz Kj$ 3 +opted '0ptId Ic%,Id% 23A +optic '0ptIk OA% 2 +optical '0ptIkl OA% 3 +optically '0ptIklI Pu% 3 +optician 0p'tISn K6% 3 +opticians 0p'tISnz Kj% 3 +optics '0ptIks Lk% 2 +optimal '0ptIml OA% 3 +optimally '0ptIm@lI Pu% 4 +optimism '0ptImIz@m L@% 4 +optimist '0ptImIst K6% 3 +optimistic ,0ptI'mIstIk OA% 4 +optimistically ,0ptI'mIstIklI Pu% 5 +optimists '0ptImIsts Kj% 3 +optimum '0ptIm@m K6% 3 +optimums '0ptIm@mz Kj$ 3 +opting '0ptIN Ib% 23A +option '0pSn M6% 2 +optional '0pSn@l OA% 3 +optionally '0pSn@lI Pu% 4 +options '0pSnz Mj% 2 +opts 0pts Ia% 13A +opulence '0pjUl@ns L@% 3 +opulent '0pjUl@nt OA% 3 +opulently '0pjul@ntlI Pu% 4 +opus '@Up@s Ki% 2 +or OR V-* 1 +oracle '0r@kl K6% 3 +oracles '0r@klz Kj% 3 +oracular @'r&kjUl@R OA% 4 +oral 'Or@l K6$,OA% 2 +orally 'Or@lI Pu% 3 +orals 'Or@lz Kj$ 2 +orang-outan O,r&N-u't&n K6$ 4 +orang-outang O,r&N-u't&N K6$ 4 +orang-outangs O,r&N-u't&Nz Kj$ 4 +orang-outans O,r&N-u't&nz Kj$ 4 +orang-utan O,r&N-u't&n K6$ 4 +orang-utans O,r&N-u't&nz Kj$ 4 +orange '0rIndZ M6%,OA% 2 +orangeade ,0rIndZ'eId L@% 3 +oranges '0rIndZIz Mj% 3 +orate O'reIt I2$ 22A +orated O'reItId Ic$,Id$ 32A +orates O'reIts Ia$ 22A +orating O'reItIN Ib$ 32A +oration O'reISn K6% 3 +orations O'reISnz Kj% 3 +orator '0r@t@R K6% 3 +oratorical ,0r@'t0rIkl OA% 5 +oratories '0r@trIz Mj% 3 +oratorio ,0r@'tOrI@U M6% 5 +oratorios ,0r@'tOrI@Uz Mj% 5 +orators '0r@t@z Kj% 3 +oratory '0r@trI M8% 3 +orb Ob K6$ 1 +orbit 'ObIt J0%,K6% 22A,2C,6A +orbital 'ObItl OA% 3 +orbited 'ObItId Jc%,Jd% 32A,2C,6A +orbiting 'ObItIN Jb% 32A,2C,6A +orbits 'ObIts Ja%,Kj% 22A,2C,6A +orbs Obz Kj$ 1 +orchard 'OtS@d K6% 2 +orchards 'OtS@dz Kj% 2 +orchestra 'OkIstr@ K6% 3 +orchestral O'kestr@l OA% 3 +orchestras 'OkIstr@z Kj% 3 +orchestrate 'OkIstreIt H2% 36A +orchestrated 'OkIstreItId Hc%,Hd% 46A +orchestrates 'OkIstreIts Ha% 36A +orchestrating 'OkIstreItIN Hb% 46A +orchestration ,OkI'streISn K6% 4 +orchestrations ,OkI'streISnz Kj% 4 +orchid 'OkId K6% 2 +orchids 'OkIdz Kj% 2 +orchis 'OkIs K7$ 2 +orchises 'OkIsIz Kj$ 3 +ordain O'deIn H0% 26A,9,23 +ordained O'deInd Hc%,Hd% 26A,9,23 +ordaining O'deInIN Hb% 36A,9,23 +ordains O'deInz Ha% 26A,9,23 +ordeal O'dil K6% 2 +ordeals O'dilz Kj% 2 +order 'Od@R H0%,M6* 26A,9,12B,13B,15A,15B,17 +order-book 'Od@-bUk K6% 3 +order-books 'Od@-bUks Kj% 3 +order-form 'Od@-fOm K6% 3 +order-forms 'Od@-fOmz Kj% 3 +order-paper 'Od@-peIp@R K6% 4 +order-papers 'Od@-peIp@z Kj% 4 +ordered 'Od@d Hc%,Hd% 26A,9,12B,13B,15A,15B,17 +ordering 'Od@rIN Hb%,K6% 36A,9,12B,13B,15A,15B,17 +orderings 'Od@rINz Kj$ 3 +orderlies 'Od@lIz Kj% 3 +orderliness 'Od@lIn@s L@% 4 +orderly 'Od@lI K8%,OA% 3 +orders 'Od@z Ha%,Mj% 26A,9,12B,13B,15A,15B,17 +ordinal 'OdInl K6$,OA% 3 +ordinals 'OdInlz Kj$ 3 +ordinance 'OdIn@ns K6$ 3 +ordinances 'OdIn@nsIz Kj$ 4 +ordinand ,OdI'n&nd K6$ 3 +ordinands ,OdI'n&ndz Kj$ 3 +ordinarily 'OdIn@r@lI Pu% 5 +ordinary 'OdInrI OA% 3 +ordination ,OdI'neISn M6% 4 +ordinations ,OdI'neISnz Mj$ 4 +ordnance 'Odn@ns L@% 2 +ordure 'OdjU@R L@$ 2 +ore OR M6% 1 +ores Oz Mj$ 1 +organ 'Og@n K6% 2 +organ-blower 'Og@n-bl@U@R K6% 4 +organ-blowers 'Og@n-bl@U@z Kj% 4 +organ-grinder 'Og@n-graInd@R K6% 4 +organ-grinders 'Og@n-graInd@z Kj% 4 +organ-loft 'Og@n-l0ft K6% 3 +organ-lofts 'Og@n-l0fts Kj% 3 +organdie O'g&ndI L@$ 3 +organic O'g&nIk OA% 3 +organically O'g&nIklI Pu% 4 +organism 'Og@nIz@m K6% 4 +organisms 'Og@nIz@mz Kj% 4 +organist 'Og@nIst K6% 3 +organists 'Og@nIsts Kj% 3 +organization ,Og@naI'zeISn M6% 5 +organizational ,Og@naI'zeISnl OA% 5 +organizationally ,Og@naI'zeISn@lI Pu% 6 +organizations ,Og@naI'zeISnz Mj% 5 +organize 'Og@naIz H2% 36A +organized 'Og@naIzd Hc%,Hd%,OA% 36A +organizer 'Og@naIz@R K6% 4 +organizers 'Og@naIz@z Kj% 4 +organizes 'Og@naIzIz Ha% 46A +organizing 'Og@naIzIN Hb% 46A +organs 'Og@nz Kj% 2 +orgasm 'Og&z@m K6% 3 +orgasms 'Og&z@mz Kj% 3 +orgiastic ,OdZI'&stIk OA% 4 +orgies 'OdZIz Kj% 2 +orgy 'OdZI K8% 2 +oriel 'OrI@l K6$ 3 +oriels 'OrI@lz Kj$ 3 +orient 'OrI@nt H0%,Ki%,OA% 3 +oriental ,OrI'entl K6%,OA% 4 +orientalist ,OrI'ent@lIst K6% 5 +orientalists ,OrI'ent@lIsts Kj% 5 +orientals ,OrI'entlz Kj% 4 +orientate 'OrI@nteIt H2% 46A +orientated 'OrI@nteItId Hc%,Hd% 56A +orientates 'OrI@nteIts Ha% 46A +orientating 'OrI@nteItIN Hb% 56A +orientation ,OrIen'teISn L@% 5 +oriented 'OrI@ntId Hc%,Hd% 4 +orienting 'OrI@ntIN Hb% 4 +orients 'OrI@nts Ha% 3 +orifice '0rIfIs K6% 3 +orifices '0rIfIsIz Kj% 4 +origin '0rIdZIn M6% 3 +original @'rIdZ@nl K6%,OA% 4 +originality @,rIdZ@'n&lItI L@% 6 +originally @'rIdZ@n@lI Pu% 5 +originals @'rIdZ@nlz Kj% 4 +originate @'rIdZIneIt J2% 42C,3A,6A +originated @'rIdZIneItId Jc%,Jd% 52C,3A,6A +originates @'rIdZIneIts Ja% 42C,3A,6A +originating @'rIdZIneItIN Jb% 52C,3A,6A +originator @'rIdZIneIt@R K6% 5 +originators @'rIdZIneIt@z Kj% 5 +origins '0rIdZInz Mj% 3 +oriole 'OrI@Ul K6$ 3 +orioles 'OrI@Ulz Kj$ 3 +orison '0rIzn K6$ 3 +orisons '0rIznz Kj$ 3 +orlop 'Ol0p K6$ 2 +orlops 'Ol0ps Kj$ 2 +ormolu 'Om@lu M6$ 3 +ormolus 'Om@luz Mj$ 3 +ornament 'On@m@nt M6% 3 +ornament 'On@ment H0% 36A,14 +ornamental ,On@'mentl OA% 4 +ornamentation ,On@men'teISn L@% 5 +ornamented 'On@mentId Hc%,Hd% 46A,14 +ornamenting 'On@mentIN Hb% 46A,14 +ornaments 'On@m@nts Mj% 3 +ornaments 'On@ments Ha% 36A,14 +ornate O'neIt OA% 2 +ornately O'neItlI Pu% 3 +ornateness O'neItn@s L@% 3 +ornery 'On@rI OA$ 3 +ornithological ,OnIT@'l0dZIkl OA% 6 +ornithologist ,OnI'T0l@dZIst K6% 5 +ornithologists ,OnI'T0l@dZIsts Kj% 5 +ornithology ,OnI'T0l@dZI L@% 5 +orotund 'Or@UtVnd OA$ 3 +orphan 'Ofn H0%,K6% 26A +orphanage 'Of@nIdZ K6% 3 +orphanages 'Of@nIdZIz Kj% 4 +orphaned 'Ofnd Hc%,Hd% 26A +orphaning 'OfnIN Hb$ 36A +orphans 'Ofnz Ha%,Kj% 26A +orrisroot '0rIsrut L@$ 3 +orthodontic ,OT@'d0ntIk OA% 4 +orthodontics ,OT@'d0ntIks Lk$ 4 +orthodontist ,OT@'d0ntIst K6% 4 +orthodontists ,OT@'d0ntIsts Kj$ 4 +orthodox 'OT@d0ks OA% 3 +orthodoxies 'OT@d0ksIz Mj% 4 +orthodoxy 'OT@d0ksI M8% 4 +orthogonal O'T0g@nl OA% 4 +orthogonally O'T0g@n@lI Pu% 5 +orthographic ,OT@'gr&fIk OA% 4 +orthographies O'T0gr@fIz Mj% 4 +orthography O'T0gr@fI M8% 4 +orthopaedic ,OT@'pidIk OA% 4 +orthopaedics ,OT@'pidIks Lk% 4 +orthopedic ,OT@'pidIk OA% 4 +orthopedics ,OT@'pidIks Lk% 4 +ortolan 'Ot@l@n K6$ 3 +ortolans 'Ot@l@nz Kj$ 3 +oryx '0rIks K7$ 2 +oryxes '0rIksIz Kj$ 3 +oscillate '0sIleIt J2% 32A,6A +oscillated '0sIleItId Jc%,Jd% 42A,6A +oscillates '0sIleIts Ja% 32A,6A +oscillating '0sIleItIN Jb% 42A,6A +oscillation ,0sI'leISn M6% 4 +oscillations ,0sI'leISnz Mj% 4 +oscillator '0sIleIt@R K6% 4 +oscillators '0sIleIt@z Kj% 4 +oscillograph @'sIl@grAf K6$ 4 +oscillographs @'sIl@grAfs Kj$ 4 +oscilloscope @'sIl@sk@Up K6% 4 +oscilloscopes @'sIl@sk@Ups Kj% 4 +osier '@UzI@R K6$ 3 +osiers '@UzI@z Kj$ 3 +osprey '0sprI K6% 2 +ospreys '0sprIz Kj% 2 +osseous '0sI@s OA$ 3 +ossification ,0sIfI'keISn L@% 5 +ossified '0sIfaId Jc%,Jd% 32A,6A +ossifies '0sIfaIz Ja$ 32A,6A +ossify '0sIfaI J3% 32A,6A +ossifying '0sIfaIIN Jb$ 42A,6A +ostensible 0'stens@bl OA% 4 +ostensibly 0'stens@blI Pu% 4 +ostentation ,0sten'teISn L@% 4 +ostentatious ,0sten'teIS@s OA% 4 +ostentatiously ,0sten'teIS@slI Pu% 5 +osteopath '0stI@p&T K6% 4 +osteopaths '0stI@p&Ts Kj% 4 +osteopathy ,0stI'0p@TI L@% 5 +ostler '0sl@R K6$ 2 +ostlers '0sl@z Kj$ 2 +ostracism '0str@sIz@m L@% 4 +ostracize '0str@saIz H2% 36A +ostracized '0str@saIzd Hc%,Hd% 36A +ostracizes '0str@saIzIz Ha% 46A +ostracizing '0str@saIzIN Hb% 46A +ostrich '0strItS K7% 2 +ostriches '0strItSIz Kj% 3 +other 'VD@R K6*,OA*,Pu% 2 +others 'VD@z Kj* 2 +otherwise 'VD@waIz Pu%,V-% 3 +otherworldly ,VD@'w3ldlI OA% 4 +otiose '@USI@Us OA$ 3 +otter '0t@R M6% 2 +otters '0t@z Mj% 2 +ottoman '0t@m@n K6$ 3 +ottomans '0t@m@nz Kj$ 3 +oubliette ,ublI'et K6$ 3 +oubliettes ,ublI'ets Kj$ 3 +ouch aUtS W-% 1 +ought Ot G5% 17B +oughtn't 'Otnt Gg% 2 +ouija 'widZ@ K6$ 2 +ouija-board 'widZ@-bOd K6% 3 +ouija-boards 'widZ@-bOdz Kj% 3 +ouijas 'widZ@z Kj$ 2 +ounce aUns K6% 1 +ounces 'aUnsIz Kj% 2 +our 'aU@R OA* 2 +ours 'aU@z Op%,Qx% 2 +ourselves aU@'selvz Qx% 3 +oust aUst H0$ 16A,14 +ousted 'aUstId Hc%,Hd% 26A,14 +ousting 'aUstIN Hb$ 26A,14 +ousts aUsts Ha$ 16A,14 +out aUt H0%,P+* 1 +out-herod ,aUt-'her@d H0$ 36A +out-heroded ,aUt-'her@dId Hc$,Hd$ 46A +out-heroding ,aUt-'her@dIN Hb$ 46A +out-herods ,aUt-'her@dz Ha$ 36A +out-of-date ,aUt-@v-'deIt OA% 3 +out-of-door ,aUt-@v-'dOR Oq$ 3 +out-of-doors ,aUt-@v-'dOz Pu$ 3 +out-of-the-way ,aUt-@v-D@-'weI OA%,Pu% 4 +out-of-work 'aUt-@v-w3k OA% 3 +out-tray 'aUt-treI K6% 2 +out-trays 'aUt-treIz Kj% 2 +outback 'aUtb&k Ki%,OA% 2 +outbalance aUt'b&l@ns H2$ 36A +outbalanced aUt'b&l@nst Hc$,Hd$ 36A +outbalances aUt'b&l@nsIz Ha$ 46A +outbalancing aUt'b&l@nsIN Hb$ 46A +outbid aUt'bId H5%,Hc%,Hd% 26A +outbidding aUt'bIdIN Hb% 36A +outbids aUt'bIdz Ha% 26A +outboard 'aUtbOd Oq% 2 +outbound 'aUtbaUnd OA$ 2 +outbrave aUt'breIv H2$ 26A +outbraved aUt'breIvd Hc$,Hd$ 26A +outbraves aUt'breIvz Ha$ 26A +outbraving aUt'breIvIN Hb$ 36A +outbreak 'aUtbreIk K6% 2 +outbreaks 'aUtbreIks Kj% 2 +outbuilding 'aUtbIldIN K6% 3 +outbuildings 'aUtbIldINz Kj% 3 +outburst 'aUtb3st K6% 2 +outbursts 'aUtb3sts Kj% 2 +outcast 'aUtkAst K6%,OA% 2 +outcaste 'aUtkAst K6$,OA$ 2 +outcastes 'aUtkAsts Kj$ 2 +outcasts 'aUtkAsts Kj% 2 +outclass aUt'klAs H1$ 26A +outclassed aUt'klAst Hc%,Hd% 26A +outclasses aUt'klAsIz Ha$ 36A +outclassing aUt'klAsIN Hb$ 36A +outcome 'aUtkVm K6% 2 +outcomes 'aUtkVmz Kj% 2 +outcries 'aUtkraIz Mj% 2 +outcrop 'aUtkr0p K6% 2 +outcrops 'aUtkr0ps Kj% 2 +outcry 'aUtkraI M8% 2 +outdated aUt'deItId OA% 3 +outdid aUt'dId Hc% 26A +outdistance aUt'dIst@ns H2% 36A +outdistanced aUt'dIst@nst Hc%,Hd% 36A +outdistances aUt'dIst@nsIz Ha% 46A +outdistancing aUt'dIst@nsIN Hb% 46A +outdo aUt'du H5% 26A +outdoes aUt'dVz Ha% 26A +outdoing aUt'duIN Hb% 36A +outdone aUt'dVn Hd% 26A +outdoor 'aUtdOR Oq% 2 +outdoors ,aUt'dOz Pu% 2 +outed 'aUtId Hc$,Hd$ 2 +outer 'aUt@R OA% 2 +outermost 'aUt@m@Ust OA% 3 +outface ,aUt'feIs H2% 26A +outfaced ,aUt'feIst Hc%,Hd% 26A +outfaces ,aUt'feIsIz Ha% 36A +outfacing ,aUt'feIsIN Hb% 36A +outfall 'aUtfOl K6% 2 +outfalls 'aUtfOlz Kj% 2 +outfield 'aUtfild K6% 2 +outfielder 'aUtfild@R K6% 3 +outfielders 'aUtfild@z Kj% 3 +outfields 'aUtfildz Kj$ 2 +outfight ,aUt'faIt H5$ 26A +outfighting ,aUt'faItIN Hb$ 36A +outfights ,aUt'faIts Ha$ 26A +outfit 'aUtfIt H4%,K6% 2 +outfits 'aUtfIts Ha%,Kj% 2 +outfitted 'aUtfItId Hc%,Hd% 3 +outfitter 'aUtfIt@R K6% 3 +outfitters 'aUtfIt@z Kj% 3 +outfitting 'aUtfItIN Hb% 3 +outflank ,aUt'fl&Nk H0% 26A +outflanked ,aUt'fl&Nkt Hc%,Hd% 26A +outflanking ,aUt'fl&NkIN Hb% 36A +outflanks ,aUt'fl&Nks Ha% 26A +outflow 'aUtfl@U K6% 2 +outflows 'aUtfl@Uz Kj% 2 +outfought ,aUt'fOt Hc$,Hd$ 26A +outfox ,aUt'f0ks H1$ 26A +outfoxed ,aUt'f0kst Hc$,Hd$ 26A +outfoxes ,aUt'f0ksIz Ha$ 36A +outfoxing ,aUt'f0ksIN Hb$ 36A +outgo 'aUtg@U I5$,K7$ 2 +outgoes 'aUtg@Uz Ia$,Kj$ 2 +outgoing 'aUtg@UIN OA% 3 +outgoings 'aUtg@UINz Kj% 3 +outgone aUt'g0n Id$ 2 +outgrew ,aUt'gru Hc% 26A +outgrow ,aUt'gr@U H5% 26A +outgrowing ,aUt'gr@UIN Hb% 36A +outgrown ,aUt'gr@Un Hd% 26A +outgrows ,aUt'gr@Uz Ha% 26A +outgrowth 'aUtgr@UT K6% 2 +outgrowths 'aUtgr@UTs Kj% 2 +outhouse 'aUthaUs K6% 2 +outhouses 'aUthaUzIz Kj% 3 +outing 'aUtIN Hb%,K6% 2 +outings 'aUtINz Kj% 2 +outlandish aUt'l&ndIS OA% 3 +outlandishly aUt'l&ndISlI Pu% 4 +outlandishness aUt'l&ndISn@s L@% 4 +outlast ,aUt'lAst H0% 26A +outlasted ,aUt'lAstId Hc%,Hd% 36A +outlasting ,aUt'lAstIN Hb% 36A +outlasts ,aUt'lAsts Ha% 26A +outlaw 'aUtlO H0%,K6% 26A +outlawed 'aUtlOd Hc%,Hd% 26A +outlawing 'aUtlOIN Hb$ 36A +outlawry 'aUtlOrI L@$ 3 +outlaws 'aUtlOz Ha%,Kj% 26A +outlay 'aUtleI M6% 2 +outlays 'aUtleIz Mj% 2 +outlet 'aUtlet K6% 2 +outlets 'aUtlets Kj% 2 +outlier 'aUtlaI@R K6% 3 +outliers 'aUtlaI@z Kj% 3 +outline 'aUtlaIn H2%,K6% 26A +outlined 'aUtlaInd Hc%,Hd% 26A +outlines 'aUtlaInz Ha%,Kj% 26A +outlining 'aUtlaInIN Hb% 36A +outlive ,aUt'lIv H2% 26A +outlived ,aUt'lIvd Hc%,Hd% 26A +outlives ,aUt'lIvz Ha% 26A +outliving ,aUt'lIvIN Hb% 36A +outlook 'aUtlUk K6% 2 +outlooks 'aUtlUks Kj% 2 +outlying 'aUtlaIIN OA% 3 +outmanoeuvre ,aUtm@'nuv@R H2% 46A +outmanoeuvred ,aUtm@'nuv@d Hc%,Hd% 46A +outmanoeuvres ,aUtm@'nuv@z Ha% 46A +outmanoeuvring ,aUtm@'nuv@rIN Hb% 56A +outmarch ,aUt'mAtS H1$ 26A +outmarched ,aUt'mAtSt Hc$,Hd$ 26A +outmarches ,aUt'mAtSIz Ha$ 36A +outmarching ,aUt'mAtSIN Hb$ 36A +outmatch ,aUt'm&tS H1$ 26A +outmatched ,aUt'm&tSt Hc$,Hd% 26A +outmatches ,aUt'm&tSIz Ha$ 36A +outmatching ,aUt'm&tSIN Hb$ 36A +outmoded ,aUt'm@UdId OA% 3 +outmost 'aUtm@Ust OA$ 2 +outnumber ,aUt'nVmb@R H0% 36A +outnumbered ,aUt'nVmb@d Hc%,Hd% 36A +outnumbering ,aUt'nVmb@rIN Hb% 46A +outnumbers ,aUt'nVmb@z Ha% 36A +outpatient 'aUtpeISnt K6% 3 +outpatients 'aUtpeISnts Kj% 3 +outplay ,aUt'pleI H0% 26A +outplayed ,aUt'pleId Hc%,Hd% 26A +outplaying ,aUt'pleIIN Hb% 36A +outplays ,aUt'pleIz Ha% 26A +outpoint ,aUt'poInt H0$ 26A +outpointed ,aUt'poIntId Hc$,Hd% 36A +outpointing ,aUt'poIntIN Hb$ 36A +outpoints ,aUt'poInts Ha$ 26A +outport 'aUtpOt K6$ 2 +outports 'aUtpOts Kj$ 2 +outpost 'aUtp@Ust K6% 2 +outposts 'aUtp@Usts Kj% 2 +outpouring 'aUtpOrIN K6% 3 +outpourings 'aUtpOrINz Kj% 3 +output 'aUtpUt Ki% 2 +outr_e 'utreI OA$ 2 +outrage 'aUtreIdZ H2$,M6% 26A +outraged 'aUtreIdZd Hc$,Hd% 26A +outrageous aUt'reIdZ@s OA% 3 +outrageously aUt'reIdZ@slI Pu% 4 +outrages 'aUtreIdZIz Ha$,Mj$ 36A +outraging 'aUtreIdZIN Hb$ 36A +outran ,aUt'r&n Hc% 26A +outrange ,aUt'reIndZ H2$ 26A +outranged ,aUt'reIndZd Hc$,Hd$ 26A +outranges ,aUt'reIndZIz Ha$ 36A +outranging ,aUt'reIndZIN Hb$ 36A +outrank ,aUt'r&Nk H0% 26A +outranked ,aUt'r&Nkt Hc%,Hd% 26A +outranking ,aUt'r&NkIN Hb% 36A +outranks ,aUt'r&Nks Ha% 26A +outridden ,aUt'rIdn Hd$ 36A +outride ,aUt'raId H5$ 26A +outrider 'aUtraId@R K6% 3 +outriders 'aUtraId@z Kj% 3 +outrides ,aUt'raIdz Ha$ 26A +outriding ,aUt'raIdIN Hb$ 36A +outrigged 'aUtrIgd OA$ 2 +outrigger 'aUtrIg@R K6% 3 +outriggers 'aUtrIg@z Kj% 3 +outright 'aUtraIt OA%,Pu% 2 +outrival ,aUt'raIvl H4$ 36A +outrivalled ,aUt'raIvld Hc$,Hd$ 36A +outrivalling ,aUt'raIv@lIN Hb$ 46A +outrivals ,aUt'raIvlz Ha$ 36A +outrode ,aUt'r@Ud Hc$ 26A +outrun ,aUt'rVn H5%,Hd% 26A +outrunning ,aUt'rVnIN Hb% 36A +outruns ,aUt'rVnz Ha% 26A +outs aUts Ha$ 1 +outsail aUt'seIl H0$ 26A +outsailed aUt'seIld Hc$,Hd$ 26A +outsailing aUt'seIlIN Hb$ 36A +outsails aUt'seIlz Ha$ 26A +outset 'aUtset K6% 2 +outsets 'aUtsets Kj$ 2 +outshine ,aUt'SaIn H5% 26A +outshines ,aUt'SaInz Ha% 26A +outshining ,aUt'SaInIN Hb% 36A +outshone ,aUt'S0n Hc%,Hd% 26A +outside 'aUtsaId OA*,Pu*,T-* 2 +outside ,aUt'saId K6% 2 +outsider ,aUt'saId@R K6% 3 +outsiders ,aUt'saId@z Kj% 3 +outsides ,aUt'saIdz Kj% 2 +outsize 'aUtsaIz OA% 2 +outskirts 'aUtsk3ts Kj% 2 +outsmart ,aUt'smAt H0% 26A +outsmarted ,aUt'smAtId Hc%,Hd% 36A +outsmarting ,aUt'smAtIN Hb$ 36A +outsmarts ,aUt'smAts Ha% 26A +outspan ,aUt'sp&n J4$ 22A,6A +outspanned ,aUt'sp&nd Jc$,Jd$ 22A,6A +outspanning ,aUt'sp&nIN Jb$ 32A,6A +outspans ,aUt'sp&nz Ja$ 22A,6A +outspoken ,aUt'sp@Uk@n OA% 3 +outspokenly ,aUt'sp@Uk@nlI Pu% 4 +outspokenness ,aUt'sp@Uk@n+n@s L@% 4 +outspread 'aUtspred OA% 2 +outstanding ,aUt'st&ndIN OA% 3 +outstandingly ,aUt'st&ndINlI Pu% 4 +outstation 'aUtsteISn K6% 3 +outstations 'aUtsteISnz Kj% 3 +outstay ,aUt'steI H0% 26A +outstayed ,aUt'steId Hc%,Hd% 26A +outstaying ,aUt'steIIN Hb% 36A +outstays ,aUt'steIz Ha% 26A +outstretched ,aUt'stretSt OA% 2 +outstrip ,aUt'strIp H4% 26A +outstripped ,aUt'strIpt Hc%,Hd% 26A +outstripping ,aUt'strIpIN Hb% 36A +outstrips ,aUt'strIps Ha% 26A +outvie ,aUt'vaI H5$ 26A +outvied ,aUt'vaId Hc$,Hd$ 26A +outvies ,aUt'vaIz Ha$ 26A +outvote ,aUt'v@Ut H2% 26A +outvoted ,aUt'v@UtId Hc%,Hd% 36A +outvotes ,aUt'v@Uts Ha% 26A +outvoting ,aUt'v@UtIN Hb% 36A +outvying ,aUt'vaIIN Hb$ 36A +outward 'aUtw@d OA%,Pu% 2 +outwardly 'aUtw@dlI Pu% 3 +outwards 'aUtw@dz Pu% 2 +outwear aUt'we@R H5% 26A +outwearing ,aUt'we@rIN Hb% 36A +outwears ,aUt'we@z Ha% 26A +outweigh ,aUt'weI H0% 26A +outweighed ,aUt'weId Hc%,Hd% 26A +outweighing ,aUt'weIIN Hb% 36A +outweighs ,aUt'weIz Ha% 26A +outwent aUt'went Ic$ 2 +outwit ,aUt'wIt H4% 26A +outwits ,aUt'wIts Ha% 26A +outwitted ,aUt'wItId Hc%,Hd% 36A +outwitting ,aUt'wItIN Hb% 36A +outwore ,aUt'wOR Hc$ 26A +outwork 'aUtw3k K6$ 2 +outworks 'aUtw3ks Kj$ 2 +outworn ,aUt'wOn Hd% 26A +ouzel 'uzl K6$ 2 +ouzels 'uzlz Kj$ 2 +ouzo 'uz@U L@$ 2 +ova '@Uv@ Kj$ 2 +oval '@Uvl K6%,OA% 2 +ovals '@Uvlz Kj% 2 +ovaries '@Uv@rIz Kj% 3 +ovary '@Uv@rI K8% 3 +ovation @U'veISn K6% 3 +ovations @U'veISnz Kj% 3 +oven 'Vvn K6% 2 +ovens 'Vvnz Kj% 2 +ovenware 'Vvnwe@R L@% 3 +over '@Uv@R K6%,Pu*,T-* 2 +over- ,@Uv@R- U-% 2 +over-abundance ,@Uv@r-@'bVnd@ns L@% 5 +over-ripe ,@Uv@-'raIp OA% 3 +overabundant ,@Uv@r@'bVnd@nt OA% 5 +overact ,@Uv@'r&kt J0% 32A,6A +overacted ,@Uv@'r&ktId Jc%,Jd% 42A,6A +overacting ,@Uv@'r&ktIN Jb% 42A,6A +overactive ,@Uv@'r&ktIv OA% 4 +overacts ,@Uv@'r&kts Ja% 32A,6A +overall '@Uv@rOl K6$ 3 +overall ,@Uv@'rOl OA% 3 +overalls '@Uv@rOlz Kj% 3 +overambitious ,@Uv@r&m'bIS@s OA% 5 +overanxiety ,@Uv@r&N'zaI@tI L@% 6 +overanxious ,@Uv@'r&NkS@s OA% 4 +overarch ,@Uv@'rAtS J1$ 32A,6A +overarched ,@Uv@'rAtSt Jc$,Jd$ 32A,6A +overarches ,@Uv@'rAtSIz Ja$ 42A,6A +overarching ,@Uv@'rAtSIN Jb$ 42A,6A +overarm '@Uv@rAm OA%,Pu% 3 +overate ,@Uv@'reIt Ic% 3 +overawe ,@Uv@'rO H2% 36A +overawed ,@Uv@'rOd Hc%,Hd% 36A +overawes ,@Uv@'rOz Ha% 36A +overawing ,@Uv@'rOIN Hb$ 46A +overbalance ,@Uv@'b&l@ns J2% 42A,6A +overbalanced ,@Uv@'b&l@nst Jc%,Jd% 42A,6A +overbalances ,@Uv@'b&l@nsIz Ja% 52A,6A +overbalancing ,@Uv@'b&l@nsIN Jb% 52A,6A +overbear ,@Uv@'be@R H5$ 36A +overbearing ,@Uv@'be@rIN Hb$,OA% 46A +overbearingly ,@Uv@'be@rINlI Pu% 5 +overbears ,@Uv@'be@z Ha$ 36A +overbid '@Uv@bId K6$ 3 +overbid ,@Uv@'bId J5%,Jc%,Jd% 32A,6A +overbidding ,@Uv@'bIdIN Jb% 42A,6A +overbids '@Uv@bIdz Kj$ 3 +overbids ,@Uv@'bIdz Ja$ 32A,6A +overblown ,@Uv@'bl@Un OA% 3 +overboard '@Uv@bOd Pu% 3 +overbold ,@Uv@'b@Uld OA$ 3 +overbore ,@Uv@'bOR Hc$ 36A +overborne ,@Uv@'bOn Hd$ 36A +overburden ,@Uv@'b3d@n H0%,L@$ 46A +overburdened ,@Uv@'b3d@nd Hc%,Hd% 46A +overburdening ,@Uv@'b3d@nIN Hb$ 56A +overburdens ,@Uv@'b3d@nz Ha$ 46A +overbusy ,@Uv@'bIzI OA% 4 +overcall ,@Uv@'kOl J0$ 3 +overcalled ,@Uv@'kOld Jc$,Jd$ 3 +overcalling ,@Uv@'kOlIN Jb$ 4 +overcalls ,@Uv@'kOlz Ja$ 3 +overcame ,@Uv@'keIm Hc% 36A +overcapitalization ,@Uv@,k&pIt@laI'zeISn L@% 8 +overcapitalize ,@Uv@'k&pIt@laIz H2$ 6 +overcapitalized ,@Uv@'k&pIt@laIzd Hc$,Hd% 6 +overcapitalizes ,@Uv@'k&pIt@laIzIz Ha$ 7 +overcapitalizing ,@Uv@'k&pIt@laIzIN Hb$ 7 +overcareful ,@Uv@'ke@f@l OA% 4 +overcast ,@Uv@'kAst Ki%,OA% 3 +overcautious ,@Uv@'kOS@s OA% 4 +overcharge '@Uv@tSAdZ K6$ 3 +overcharge ,@Uv@'tSAdZ J2% 32A,6A +overcharged ,@Uv@'tSAdZd Jc%,Jd% 32A,6A +overcharges '@Uv@tSAdZIz Kj$ 4 +overcharges ,@Uv@'tSAdZIz Ja% 42A,6A +overcharging ,@Uv@'tSAdZIN Jb% 42A,6A +overclothe ,@Uv@'kl@UD H2% 36A +overclothed ,@Uv@'kl@UDd Hc%,Hd% 36A +overclothes ,@Uv@'kl@UDz Ha% 36A +overclothing ,@Uv@'kl@UDIN Hb% 46A +overcloud ,@Uv@'klaUd J0$ 32A,6A +overclouded ,@Uv@'klaUdId Jc$,Jd% 42A,6A +overclouding ,@Uv@'klaUdIN Jb$ 42A,6A +overclouds ,@Uv@'klaUdz Ja$ 32A,6A +overcoat '@Uv@k@Ut K6% 3 +overcoats '@Uv@k@Uts Kj% 3 +overcome ,@Uv@'kVm H5%,Hd% 36A +overcomes ,@Uv@'kVmz Ha% 36A +overcoming ,@Uv@'kVmIN Hb% 46A +overconfidence ,@Uv@'k0nfId@ns L@% 5 +overconfident ,@Uv@'k0nfId@nt OA% 5 +overcook ,@Uv@'kUk H0% 3 +overcooked ,@Uv@'kUkt Hc%,Hd% 3 +overcooking ,@Uv@'kUkIN Hb% 4 +overcooks ,@Uv@'kUks Ha% 3 +overcredulity ,@Uv@krI'djulItI L@$ 6 +overcredulous ,@Uv@'kredjUl@s OA$ 5 +overcritical ,@Uv@'krItIkl OA% 5 +overcrop ,@Uv@'kr0p H4$ 36A +overcropped ,@Uv@'kr0pt Hc$,Hd% 36A +overcropping ,@Uv@'kr0pIN Hb$ 46A +overcrops ,@Uv@'kr0ps Ha$ 36A +overcrowd ,@Uv@'kraUd H0% 36A +overcrowded ,@Uv@'kraUdId Hc%,Hd% 46A +overcrowding ,@Uv@'kraUdIN Hb% 46A +overcrowds ,@Uv@'kraUdz Ha% 36A +overcurious ,@Uv@'kjU@rI@s OA% 5 +overdelicate ,@Uv@'delIk@t OA% 5 +overdid ,@Uv@'dId Hc% 36A +overdo ,@Uv@'du H5% 36A +overdoes ,@Uv@'dVz Ha% 36A +overdoing ,@Uv@'duIN Hb% 46A +overdone ,@Uv@'dVn Hd% 36A +overdraft '@Uv@drAft K6% 3 +overdrafts '@Uv@drAfts Kj% 3 +overdraw ,@Uv@'drO J5% 32A,6A +overdrawing ,@Uv@'drOIN Jb$ 42A,6A +overdrawn ,@Uv@'drOn Jd% 32A,6A +overdraws ,@Uv@'drOz Ja% 32A,6A +overdress ,@Uv@'dres J1% 32A,6A +overdressed ,@Uv@'drest Jc%,Jd% 32A,6A +overdresses ,@Uv@'dresIz Ja% 42A,6A +overdressing ,@Uv@'dresIN Jb% 42A,6A +overdrew ,@Uv@'dru Jc$ 32A,6A +overdrive '@Uv@draIv M6% 3 +overdrives '@Uv@draIvz Mj$ 3 +overdue ,@Uv@'dju OA% 3 +overeager ,@Uv@'rig@R OA% 4 +overeat ,@Uv@'rit I5% 3 +overeaten ,@Uv@'ritn Id% 4 +overeating ,@Uv@'ritIN Ib% 4 +overeats ,@Uv@'rits Ia% 3 +overemotional ,@Uv@rI'm@US@nl OA% 6 +overemphasis ,@Uv@'emf@sIs L@% 5 +overemphasize ,@Uv@'remf@saIz H2% 5 +overemphasized ,@Uv@'remf@saIzd Hc%,Hd% 5 +overemphasizes ,@Uv@'remf@saIzIz Ha% 6 +overemphasizing ,@Uv@'remf@saIzIN Hb% 6 +overenthusiastic ,@Uv@rIn,TjuzI'&stIk OA% 7 +overestimate ,@Uv@'restImeIt H2% 5 +overestimated ,@Uv@'restImeItId Hc%,Hd% 6 +overestimates ,@Uv@'restImeIts Ha% 5 +overestimating ,@Uv@'restImeItIN Hb% 6 +overexcited ,@Uv@rIk'saItId OA% 5 +overexert ,@Uv@rIg'z3t H0% 4 +overexerted ,@Uv@rIg'z3tId Hc%,Hd% 5 +overexerting ,@Uv@rIg'z3tIN Hb% 5 +overexertion ,@Uv@rIg'z3Sn M6% 5 +overexertions ,@Uv@rIg'z3Snz Mj% 5 +overexerts ,@Uv@rIg'z3ts Ha% 4 +overexpose ,@Uv@rIk'sp@Uz H2% 4 +overexposed ,@Uv@rIk'sp@Uzd Hc%,Hd% 4 +overexposes ,@Uv@rIk'sp@UzIz Ha% 5 +overexposing ,@Uv@rIk'sp@UzIN Hb% 5 +overexposure ,@Uv@rIk'sp@UZ@R M6% 5 +overexposures ,@Uv@rIk'sp@UZ@z Mj$ 5 +overfamiliar ,@Uv@f@'mIlI@R OA% 6 +overfed ,@Uv@'fed Jc%,Jd% 32A,2C,3A,6A,14,15A,15B +overfeed ,@Uv@'fid J0% 32A,2C,3A,6A,14,15A,15B +overfeeding ,@Uv@'fidIN Jb%,L@% 42A,2C,3A,6A,14,15A,15B +overfeeds ,@Uv@'fidz Ja% 32A,2C,3A,6A,14,15A,15B +overflew ,@Uv@'flu Hc% 32A,2B,2C,2D,4A,6A,15A,15B +overflies ,@Uv@'flaIz Ha% 32A,2B,2C,2D,4A,6A,15A,15B +overflow '@Uv@fl@U K6% 3 +overflow ,@Uv@'fl@U J0% 32A,3A,6A +overflowed ,@Uv@'fl@Ud Jc%,Jd% 32A,3A,6A +overflowing ,@Uv@'fl@UIN Jb% 42A,3A,6A +overflown ,@Uv@'fl@Un Hb% 32A,2B,2C,2D,4A,6A,15A,15B +overflows '@Uv@fl@Uz Kj% 3 +overflows ,@Uv@'fl@Uz Ja% 32A,3A,6A +overfly ,@Uv@'flaI H5% 32A,2B,2C,2D,4A,6A,15A,15B +overflying ,@Uv@'flaIIN Hb% 42A,2B,2C,2D,4A,6A,15A,15B +overfond ,@Uv@'f0nd OA% 3 +overfull ,@Uv@'fUl OA% 3 +overgenerous ,@Uv@'dZen@r@s OA% 5 +overgreedy ,@Uv@'gridI OA% 4 +overgrown ,@Uv@'gr@Un OA% 3 +overgrowth '@Uv@gr@UT M6% 3 +overgrowths '@Uv@gr@UTs Mj$ 3 +overhand '@Uv@h&nd OA$ 3 +overhang '@Uv@h&N K6% 3 +overhang ,@Uv@'h&N J5% 32A,6A +overhanging ,@Uv@'h&NIN Jb% 42A,6A +overhangs '@Uv@h&Nz Kj$ 3 +overhangs ,@Uv@'h&Nz Ja% 32A,6A +overhasty ,@Uv@'heIstI OA% 4 +overhaul '@Uv@hOl K6% 3 +overhaul ,@Uv@'hOl H0% 36A +overhauled ,@Uv@'hOld Hc%,Hd% 36A +overhauling ,@Uv@'hOlIN Hb% 46A +overhauls '@Uv@hOlz Kj% 3 +overhauls ,@Uv@'hOlz Ha% 36A +overhead '@Uv@hed OA% 3 +overhead ,@Uv@'hed Pu% 3 +overheads '@Uv@hedz Kj% 3 +overhear ,@Uv@'hI@R H5% 36A,18A,19A +overheard ,@Uv@'h3d Hc%,Hd% 36A,18A,19A +overhearing ,@Uv@'hI@rIN Hb% 46A,18A,19A +overhears ,@Uv@'hI@z Ha% 36A,18A,19A +overheat ,@Uv@'hit H0% 3 +overheated ,@Uv@'hitId Hc%,Hd% 4 +overheating ,@Uv@'hitIN Hb% 4 +overheats ,@Uv@'hits Ha% 3 +overhung ,@Uv@'hVN Jc%,Jd% 32A,6A +overindulge ,@Uv@rIn'dVldZ J2% 4 +overindulged ,@Uv@rIn'dVldZd Jc%,Jd% 4 +overindulgence ,@Uv@rIn'dVldZ@ns M6% 5 +overindulgences ,@Uv@rIn'dVldZ@nsIz Mj$ 6 +overindulges ,@Uv@rIn'dVldZIz Ja% 5 +overindulging ,@Uv@rIn'dVldZIN Jb% 5 +overjealous ,@Uv@'dZel@s OA$ 4 +overjoyed ,@Uv@'dZoId OA% 3 +overkill '@Uv@kIl L@% 3 +overladen ,@Uv@'leIdn OA% 4 +overlaid ,@Uv@'leId Hc%,Hd% 3 +overlain @Uv@'leIn Id$ 32A,2C,2D,3A +overland '@Uv@l&nd OA% 3 +overlap '@Uv@l&p M6% 3 +overlap ,@Uv@'l&p J4% 32A,6A +overlapped ,@Uv@'l&pt Jc%,Jd% 32A,6A +overlapping ,@Uv@'l&pIN Jb% 42A,6A +overlaps '@Uv@l&ps Mj% 3 +overlaps ,@Uv@'l&ps Ja% 32A,6A +overlarge ,@Uv@'lAdZ OA% 3 +overlay '@Uv@leI K6% 3 +overlay ,@Uv@'leI H5% 3 +overlaying ,@Uv@'leIIN Hb% 4 +overlays '@Uv@leIz Kj% 3 +overlays ,@Uv@'leIz Ha% 3 +overleaf ,@Uv@'lif Pu% 3 +overleap ,@Uv@'lip H0% 36A +overleaped ,@Uv@'lipt Hc%,Hd% 36A +overleaping ,@Uv@'lipIN Hb% 46A +overleaps ,@Uv@'lips Ha% 36A +overleapt ,@Uv@'lept Hc%,Hd% 36A +overlie ,@Uv@'laI I5$ 32A,2C,2D,3A +overlies ,@Uv@'laIz Ia$ 32A,2C,2D,3A +overload ,@Uv@'l@Ud H0% 36A +overloaded ,@Uv@'l@UdId Hc%,Hd% 46A +overloading ,@Uv@'l@UdIN Hb% 46A +overloads ,@Uv@'l@Udz Ha% 36A +overlook ,@Uv@'lUk H0% 36A +overlooked ,@Uv@'lUkt Hc%,Hd% 36A +overlooking ,@Uv@'lUkIN Hb% 46A +overlooks ,@Uv@'lUks Ha% 36A +overlord '@Uv@lOd K6% 3 +overlords '@Uv@lOdz Kj% 3 +overly '@Uv@lI Pu$ 3 +overlying ,@Uv@'laIIN Ib% 42A,2C,2D,3A +overmantel '@Uv@m&ntl K6$ 4 +overmantels '@Uv@m&ntlz Kj$ 4 +overmaster ,@Uv@'mAst@R H0$ 46A +overmastered ,@Uv@'mAst@d Hc$,Hd$ 46A +overmastering ,@Uv@'mAst@rIN Hb$ 56A +overmasters ,@Uv@'mAst@z Ha$ 46A +overmodest ,@Uv@'m0dIst OA% 4 +overmuch ,@Uv@'mVtS OA%,Pu% 3 +overnervous ,@Uv@'n3v@s OA$ 4 +overnight '@Uv@naIt OA% 3 +overnight ,@Uv@'naIt Pu% 3 +overpaid ,@Uv@'peId Hc%,Hd% 36A,14 +overpass '@Uv@pAs K7$ 3 +overpasses '@Uv@pAsIz Kj$ 4 +overpay ,@Uv@'peI H5% 36A,14 +overpaying ,@Uv@'peIIN Hb% 46A,14 +overpayment ,@Uv@'peIm@nt M6% 4 +overpayments ,@Uv@'peIm@nts Mj% 4 +overpays ,@Uv@'peIz Ha% 36A,14 +overplay ,@Uv@'pleI H0% 3 +overplayed ,@Uv@'pleId Hc%,Hd% 3 +overplaying ,@Uv@'pleIIN Hb% 4 +overplays ,@Uv@'pleIz Ha% 3 +overplus '@Uv@plVs K7$ 3 +overpluses '@Uv@plVsIz Kj$ 4 +overpopulation ,@Uv@,p0pjU'leISn L@% 6 +overpower ,@Uv@'paU@R H0% 46A +overpowered ,@Uv@'paU@d Hc%,Hd% 46A +overpowering ,@Uv@'paU@rIN Hb%,OA% 56A +overpowers ,@Uv@'paU@z Ha% 46A +overpraise ,@Uv@'preIz H2% 3 +overpraised ,@Uv@'preIzd Hc%,Hd% 3 +overpraises ,@Uv@'preIzIz Ha% 4 +overpraising ,@Uv@'preIzIN Hb% 4 +overprint '@Uv@prInt K6$ 3 +overprint ,@Uv@'prInt H0% 36A +overprinted ,@Uv@'prIntId Hc%,Hd% 46A +overprinting ,@Uv@'prIntIN Hb% 46A +overprints '@Uv@prInts Kj$ 3 +overprints ,@Uv@'prInts Ha% 36A +overproduce ,@Uv@pr@'djus J2% 4 +overproduced ,@Uv@pr@'djust Jc%,Jd% 4 +overproduces ,@Uv@pr@'djusIz Ja% 5 +overproducing ,@Uv@pr@'djusIN Jb% 5 +overproduction ,@Uv@pr@'dVkSn L@% 5 +overproud ,@Uv@'praUd OA% 3 +overran ,@Uv@'r&n Hc% 36A +overrate ,@Uv@'reIt H2% 36A +overrated ,@Uv@'reItId Hc%,Hd% 46A +overrates ,@Uv@'reIts Ha% 36A +overrating ,@Uv@'reItIN Hb% 46A +overreach ,@Uv@'ritS H1% 36A +overreached ,@Uv@'ritSt Hc%,Hd% 36A +overreaches ,@Uv@'ritSIz Ha% 46A +overreaching ,@Uv@'ritSIN Hb% 46A +overridden ,@Uv@'rIdn Hd% 46A +override ,@Uv@'raId H5% 36A +overrides ,@Uv@'raIdz Ha% 36A +overriding ,@Uv@'raIdIN Hb% 46A +overripe ,@Uv@'raIp OA% 3 +overrode ,@Uv@'r@Ud Hc% 36A +overrule ,@Uv@'rul H2% 36A +overruled ,@Uv@'ruld Hc%,Hd% 36A +overrules ,@Uv@'rulz Ha% 36A +overruling ,@Uv@'rulIN Hb% 46A +overrun ,@Uv@'rVn H5%,Hd% 36A +overrunning ,@Uv@'rVnIN Hb% 46A +overruns ,@Uv@'rVnz Ha% 36A +overs '@Uv@z Kj% 2 +oversaw ,@Uv@'sO Hc% 36A +oversea ,@Uv@'si OA%,Pu% 3 +overseas ,@Uv@'siz OA%,Pu% 3 +oversee ,@Uv@'si H5% 36A +overseeing ,@Uv@'siIN Hb% 46A +overseen ,@Uv@'sin Hd% 36A +overseer '@Uv@sI@R K6% 3 +overseers '@Uv@sI@z Kj% 3 +oversees ,@Uv@'siz Ha% 36A +oversensitive ,@Uv@'sens@tIv OA% 5 +overserious ,@Uv@'sI@rI@s OA% 5 +oversew ,@Uv@'s@U H5% 32A,2B,2C,6A,15B +oversewed ,@Uv@'s@Ud Hc% 32A,2B,2C,6A,15B +oversewing ,@Uv@'s@UIN Hb% 32A,2B,2C,6A,15B +oversewn ,@Uv@'s@Un Hd%,OA% 32A,2B,2C,6A,15B +oversews ,@Uv@'s@Uz Ha% 32A,2B,2C,6A,15B +oversexed ,@Uv@'sekst OA% 3 +overshadow ,@Uv@'S&d@U H0% 46A +overshadowed ,@Uv@'S&d@Ud Hc%,Hd% 46A +overshadowing ,@Uv@'S&d@UIN Hb% 56A +overshadows ,@Uv@'S&d@Uz Ha% 46A +overshoe '@Uv@Su K6$ 3 +overshoes '@Uv@Suz Kj% 3 +overshoot ,@Uv@'Sut H5% 36A +overshooting ,@Uv@'SutIN Hb% 46A +overshoots ,@Uv@'Suts Ha% 36A +overshot ,@Uv@'S0t Hc%,Hd%,OA% 36A +overside '@Uv@saId Pu$ 3 +oversight '@Uv@saIt M6% 3 +oversights '@Uv@saIts Mj% 3 +oversimplified ,@Uv@'sImplIfaId Hc%,Hd% 5 +oversimplifies ,@Uv@'sImplIfaIz Ha% 5 +oversimplify ,@Uv@'sImplIfaI H3% 5 +oversimplifying ,@Uv@'sImplIfaIIN Hb% 6 +oversize ,@Uv@'saIz OA% 3 +overskirt '@Uv@sk3t K6$ 3 +overskirts '@Uv@sk3ts Kj$ 3 +oversleep ,@Uv@'slip I5% 32A +oversleeping ,@Uv@'slipIN Ib% 42A +oversleeps ,@Uv@'slips Ia% 32A +overslept ,@Uv@'slept Ic%,Id% 32A +overspend ,@Uv@'spend J5% 32A,6A,14,19B +overspending ,@Uv@'spendIN Jb% 42A,6A,14,19B +overspends ,@Uv@'spendz Ja% 32A,6A,14,19B +overspent ,@Uv@'spent Jc%,Jd% 32A,6A,14,19B +overspill '@Uv@spIl K6% 3 +overspills '@Uv@spIlz Kj$ 3 +overstate ,@Uv@'steIt H2% 36A +overstated ,@Uv@'steItId Hc%,Hd% 46A +overstatement '@Uv@steItm@nt M6% 4 +overstatements '@Uv@steItm@nts Mj% 4 +overstates ,@Uv@'steIts Ha% 36A +overstating ,@Uv@'steItIN Hb% 46A +overstay ,@Uv@'steI H0% 36A +overstayed ,@Uv@'steId Hc%,Hd% 36A +overstaying ,@Uv@'steIIN Hb% 46A +overstays ,@Uv@'steIz Ha% 36A +overstep ,@Uv@'step H4% 36A +overstepped ,@Uv@'stept Hc%,Hd% 36A +overstepping ,@Uv@'stepIN Hb% 46A +oversteps ,@Uv@'steps Ha% 36A +overstock ,@Uv@'st0k H0% 36A +overstocked ,@Uv@'st0kt Hc%,Hd% 36A +overstocking ,@Uv@'st0kIN Hb% 46A +overstocks ,@Uv@'st0ks Ha% 36A +overstrain '@Uv@streIn L@% 3 +overstrain ,@Uv@'streIn H0% 3 +overstrained ,@Uv@'streInd Hc%,Hd% 3 +overstraining ,@Uv@'streInIN Hb% 4 +overstrains ,@Uv@'streInz Ha% 3 +overstrung ,@Uv@'strVN OA% 3 +overstuffed ,@Uv@'stVft OA% 3 +oversubscribed ,@Uv@s@b'skraIbd OA% 4 +oversuspicious ,@Uv@s@'spIS@s OA% 5 +overt @U'v3t OA% 2 +overtake ,@Uv@'teIk H5% 36A +overtaken ,@Uv@'teIk@n Hd% 46A +overtakes ,@Uv@'teIks Ha% 36A +overtaking ,@Uv@'teIkIN Hb% 46A +overtax ,@Uv@'t&ks H1% 36A +overtaxed ,@Uv@'t&kst Hc%,Hd% 36A +overtaxes ,@Uv@'t&ksIz Ha% 46A +overtaxing ,@Uv@'t&ksIN Hb% 46A +overthrew ,@Uv@'Tru Hc% 36A +overthrow '@Uv@Tr@U K6% 3 +overthrow ,@Uv@'Tr@U H5% 36A +overthrowing ,@Uv@'Tr@UIN Hb% 46A +overthrown ,@Uv@'Tr@Un Hd% 36A +overthrows '@Uv@Tr@Uz Kj% 3 +overthrows ,@Uv@'Tr@Uz Ha% 36A +overtime '@Uv@taIm L@%,Pu% 3 +overtly @U'v3tlI Pu% 3 +overtolerance ,@Uv@'t0l@r@ns L@$ 5 +overtone '@Uv@t@Un K6% 3 +overtones '@Uv@t@Unz Kj% 3 +overtook ,@Uv@'tUk Hc% 36A +overtop ,@Uv@'t0p H4$ 36A +overtopped ,@Uv@'t0pt Hc$,Hd% 36A +overtopping ,@Uv@'t0pIN Hb$ 46A +overtops ,@Uv@'t0ps Ha$ 36A +overtrump ,@Uv@'trVmp H0$ 36A +overtrumped ,@Uv@'trVmpt Hc$,Hd$ 36A +overtrumping ,@Uv@'trVmpIN Hb$ 46A +overtrumps ,@Uv@'trVmps Ha$ 36A +overture '@Uv@tjU@R K6% 3 +overtures '@Uv@tjU@z Kj% 3 +overturn ,@Uv@'t3n J0% 32A,6A +overturned ,@Uv@'t3nd Jc%,Jd% 32A,6A +overturning ,@Uv@'t3nIN Jb% 42A,6A +overturns ,@Uv@'t3nz Ja% 32A,6A +overvalue ,@Uv@'v&lju H2% 4 +overvalued ,@Uv@'v&ljud Hc%,Hd% 4 +overvalues ,@Uv@'v&ljuz Ha% 4 +overvaluing ,@Uv@'v&ljuIN Hb% 5 +overweening ,@Uv@'winIN OA% 4 +overweight '@Uv@weIt L@$ 3 +overweight ,@Uv@'weIt OA% 3 +overweighted ,@Uv@'weItId OA% 4 +overwhelm ,@Uv@'welm H0% 36A +overwhelmed ,@Uv@'welmd Hc%,Hd% 36A +overwhelming ,@Uv@'welmIN Hb% 46A +overwhelmingly ,@Uv@'welmINlI Pu% 5 +overwhelms ,@Uv@'welmz Ha% 36A +overwork '@Uv@w3k L@$ 3 +overwork ,@Uv@'w3k J0% 32A,6A +overworked ,@Uv@'w3kt Jc%,Jd% 32A,6A +overworking ,@Uv@'w3kIN Jb% 42A,6A +overworks ,@Uv@'w3ks Ja% 32A,6A +overwrought ,@Uv@'rOt OA% 3 +overzealous ,@Uv@'zel@s OA% 4 +oviduct '@UvIdVkt K6$ 3 +oviducts '@UvIdVkts Kj$ 3 +oviparous @U'vIp@r@s OA$ 4 +ovoid '@UvoId K6$,OA$ 2 +ovoids '@UvoIdz Kj$ 2 +ovum '@Uv@m Ki$ 2 +owe @U J2% 12A,3A,6A,12A,13A,14 +owed @Ud Jc%,Jd% 12A,3A,6A,12A,13A,14 +owes @Uz Ja% 12A,3A,6A,12A,13A,14 +owing '@UIN Jb%,OA% 22A,3A,6A,12A,13A,14 +owl aUl K6% 1 +owlet 'aUlIt K6$ 2 +owlets 'aUlIts Kj$ 2 +owlish 'aUlIS OA% 2 +owlishly 'aUlISlI Pu% 3 +owls aUlz Kj% 1 +own @Un J0%,OA*,Qx* 12C,3B,6A,9 +owned @Und Jc%,Jd% 12C,3B,6A,9 +owner '@Un@R K6% 2 +owner-driven ,@Un@-'drIvn OA$ 4 +owner-driver ,@Un@-'draIv@R K6% 4 +owner-drivers ,@Un@-'draIv@z Kj% 4 +owner-occupied ,@Un@r-'0kj@paId OA% 5 +owner-occupier ,@Un@r-'0kjUpaI@R K6% 6 +owner-occupiers ,@Un@r-'0kjUpaI@z Kj% 6 +ownerless '@Un@l@s OA% 3 +owners '@Un@z Kj% 2 +ownership '@Un@SIp L@% 3 +owning '@UnIN Jb% 22C,3B,6A,9 +owns @Unz Ja% 12C,3B,6A,9 +ox 0ks Ki% 1 +oxen '0ksn Kj% 2 +oxeye '0ksaI K6$ 2 +oxeyed '0ksaId OA$ 2 +oxeyes '0ksaIz Kj$ 2 +oxidation ,0ksId'eISn L@% 4 +oxide '0ksaId M6% 2 +oxides '0ksaIdz Mj% 2 +oxidization ,0ksIdaI'zeISn M6% 5 +oxidizations ,0ksIdaI'zeISnz Mj$ 5 +oxidize '0ksIdaIz J2% 32A,6A +oxidized '0ksIdaIzd Jc%,Jd% 32A,6A +oxidizes '0ksIdaIzIz Ja% 42A,6A +oxidizing '0ksIdaIzIN Jb% 42A,6A +oxtail '0ksteIl K6% 2 +oxtails '0ksteIlz Kj$ 2 +oxyacetylene ,0ksI@'set@lin L@%,OA% 6 +oxygen '0ksIdZ@n L@% 3 +oxygenate '0ksIdZ@neIt H2% 4 +oxygenated '0ksIdZ@neItId Hc%,Hd% 5 +oxygenates '0ksIdZ@neIts Ha% 4 +oxygenating '0ksIdZ@neItIN Hb% 5 +oxygenize '0ksIdZ@naIz H2$ 4 +oxygenized '0ksIdZ@naIzd Hc$,Hd$ 4 +oxygenizes '0ksIdZ@naIzIz Ha$ 5 +oxygenizing '0ksIdZ@naIzIN Hb$ 5 +oyes @U'jes W-$ 2 +oyez @U'jez W-$ 2 +oyster 'oIst@R K6% 2 +oyster-bank 'oIst@-b&Nk K6$ 3 +oyster-banks 'oIst@-b&Nks Kj$ 3 +oyster-bar 'oIst@-bAR K6$ 3 +oyster-bars 'oIst@-bAz Kj$ 3 +oyster-bed 'oIst@-bed K6% 3 +oyster-beds 'oIst@-bedz Kj% 3 +oyster-catcher 'oIst@-k&tS@R K6% 4 +oyster-catchers 'oIst@-k&tS@z Kj% 4 +oysters 'oIst@z Kj% 2 +oz 0z Y]% 1 +ozone '@Uz@Un L@% 2 +p pi Ki$ 1 +p's piz Kj$ 1 +p^at_e 'p&teI M6% 2 +p^at_es 'p&teIz Mj% 2 +pa pA Ki% 1 +pabulum 'p&bjUl@m L@$ 3 +pace peIs J2%,K6% 12A,2C,6A,15B +paced peIst Jc%,Jd% 12A,2C,6A,15B +pacemaker 'peIsmeIk@R K6% 3 +pacemakers 'peIsmeIk@z Kj% 3 +paces 'peIsIz Ja%,Kj% 22A,2C,6A,15B +pacesetter 'peIs+set@R K6% 3 +pacesetters 'peIs+set@z Kj% 3 +pachyderm 'p&kId3m K6$ 3 +pachyderms 'p&kId3mz Kj$ 3 +pacific p@'sIfIk OA$ 3 +pacifically p@'sIfIklI Pu$ 4 +pacification ,p&sIfI'keISn L@$ 5 +pacified 'p&sIfaId Hc%,Hd% 36A +pacifies 'p&sIfaIz Ha% 36A +pacifism 'p&sIfIz@m L@% 4 +pacifist 'p&sifIst K6% 3 +pacifists 'p&sifIsts Kj% 3 +pacify 'p&sIfaI H3% 36A +pacifying 'p&sIfaIIN Hb% 46A +pacing 'peIsIN Jb% 22A,2C,6A,15B +pack p&k J0%,K6% 12A,2C,3A,6A,14,15A,15B +pack-animal 'p&k-&nIml K6% 4 +pack-animals 'p&k-&nImlz Kj% 4 +pack-saddle 'p&k-s&dl K6% 3 +pack-saddles 'p&k-s&dlz Kj% 3 +pack-thread 'p&k-Tred L@$ 2 +package 'p&kIdZ H2%,K6% 2 +packaged 'p&kIdZd Hc%,Hd% 2 +packages 'p&kIdZIz Ha%,Kj% 3 +packaging 'p&kIdZIN Hb% 3 +packed p&kt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B +packer 'p&k@R K6% 2 +packers 'p&k@z Kj% 2 +packet 'p&kIt K6% 2 +packet-boat 'p&kIt-b@Ut K6% 3 +packet-boats 'p&kIt-b@Uts Kj% 3 +packets 'p&kIts Kj% 2 +packhorse 'p&khOs K6% 2 +packhorses 'p&khOsIz Kj% 3 +packing 'p&kIN Jb%,L@% 22A,2C,3A,6A,14,15A,15B +packing-case 'p&kIN-keIs K6% 3 +packing-cases 'p&kIN-keIsIz Kj% 4 +packing-needle 'p&kIN-nidl K6$ 4 +packing-needles 'p&kIN-nidlz Kj$ 4 +packs p&ks Ja%,Kj% 12A,2C,3A,6A,14,15A,15B +pact p&kt K6% 1 +pacts p&kts Kj$ 1 +pad p&d J4%,K6% 12A,2C,6A,15B +padded 'p&dId Jc%,Jd% 22A,2C,6A,15B +paddies 'p&dIz Mj$ 2 +padding 'p&dIN Jb%,L@% 22A,2C,6A,15B +paddle 'p&dl J2%,K6% 22A,6A +paddle-box 'p&dl-b0ks K7$ 3 +paddle-boxes 'p&dl-b0ksIz Kj$ 4 +paddle-steamer 'p&dl-stim@R K6% 4 +paddle-steamers 'p&dl-stim@z Kj% 4 +paddle-wheel 'p&dl-wil K6% 3 +paddle-wheels 'p&dl-wilz Kj% 3 +paddled 'p&dld Jc%,Jd% 22A,6A +paddles 'p&dlz Ja%,Kj% 22A,6A +paddling 'p&dlIN Jb% 22A,6A +paddock 'p&d@k K6% 2 +paddocks 'p&d@ks Kj% 2 +paddy 'p&dI M8$ 2 +paddy-field 'p&dI-fild K6% 3 +paddy-fields 'p&dI-fildz Kj% 3 +padlock 'p&dl0k H0%,K6% 26A +padlocked 'p&dl0kt Hc%,Hd% 26A +padlocking 'p&dl0kIN Hb% 36A +padlocks 'p&dl0ks Ha%,Kj% 26A +padre 'pAdreI K6% 2 +padres 'pAdreIz Kj% 2 +pads p&dz Ja%,Kj% 12A,2C,6A,15B +paean 'pi@n K6$ 2 +paeans 'pi@nz Kj$ 2 +paederasty 'ped@r&stI L@$ 4 +paediatrics ,pidI'&trIks Lk% 4 +paeonies 'pi@nIz Kj$ 3 +paeony 'pi@nI K8$ 3 +pagan 'peIg@n K6%,OA% 2 +paganism 'peIg@nIz@m L@$ 4 +pagans 'peIg@nz Kj$ 2 +page peIdZ H2%,K6% 16A +pageant 'p&dZ@nt K6% 2 +pageantry 'p&dZ@ntrI L@% 3 +pageants 'p&dZ@nts Kj% 2 +paged peIdZd Hc%,Hd% 16A +pages 'peIdZIz Ha%,Kj% 26A +pagination ,p&dZI'neISn L@% 4 +paging 'peIdZIN Hb% 26A +pagoda p@'g@Ud@ K6% 3 +pagodas p@'g@Ud@z Kj% 3 +pah pA W-$ 1 +paid peId Jc%,Jd% 12A,3A,6A,12A,12B,13A,13B,14,15B +pail peIl K6% 1 +pailful 'peIlfUl K6% 2 +pailfuls 'peIlfUlz Kj% 2 +paillasse 'p&lI&s K6$ 3 +paillasses 'p&lI&sIz Kj$ 4 +pailliasse 'p&lI&s K6$ 3 +pailliasses 'p&lI&sIz Kj$ 4 +pails peIlz Kj% 1 +pain peIn H0%,M6% 16A +pained peInd Hc%,Hd%,OA% 16A +painful 'peInf@l OA% 2 +painfully 'peInf@lI Pu% 3 +paining 'peInIN Hb% 26A +painkiller 'peInkIl@R K6% 3 +painkillers 'peInkIl@z Kj% 3 +painless 'peInl@s OA% 2 +painlessly 'peInl@slI Pu% 3 +pains peInz Ha%,Mj% 16A +painstaking 'peInzteIkIN OA% 3 +painstakingly 'peInzteIkINlI Pu% 4 +paint peInt J0%,M6% 12A,2C,6A,15A,15B,22 +paintbox 'peIntb0ks K7% 2 +paintboxes 'peIntb0ksIz Kj% 3 +paintbrush 'peIntbrVS K7% 2 +paintbrushes 'peIntbrVSIz Kj% 3 +painted 'peIntId Jc%,Jd% 22A,2C,6A,15A,15B,22 +painter 'peInt@R K6% 2 +painters 'peInt@z Kj% 2 +painting 'peIntIN Jb%,M6% 22A,2C,6A,15A,15B,22 +paintings 'peIntINz Mj% 2 +paints peInts Ja%,Mj% 12A,2C,6A,15A,15B,22 +pair pe@R J0%,K6% 12A,2C,6A,15B +paired pe@d Jc%,Jd% 12A,2C,6A,15B +pairing 'pe@rIN Jb% 22A,2C,6A,15B +pairs pe@z Ja%,Kj% 12A,2C,6A,15B +paisley 'peIzlI L@% 2 +pajamas p@'dZAm@z Kj% 3 +pal p&l I4%,K6% 1 +palace 'p&lIs K6% 2 +palaces 'p&lIsIz Kj% 3 +paladin 'p&l@dIn K6$ 3 +paladins 'p&l@dInz Kj$ 3 +palaeo- ,p&lI@U- U-% 3 +palaeolithic ,p&lI@U'lITIk OA% 5 +palaeontologist ,p&lI0n't0l@dZIst K6% 6 +palaeontologists ,p&lI0n't0l@dZIsts Kj% 6 +palaeontology ,p&lI0n't0l@dZI L@% 6 +palankeen ,p&l@n'kin K6$ 3 +palankeens ,p&l@n'kinz Kj$ 3 +palanquin ,p&l@n'kin K6$ 3 +palanquins ,p&l@n'kinz Kj$ 3 +palatable 'p&l@t@bl OA% 4 +palatably 'p&l@t@blI Pu% 4 +palatal 'p&l@tl K6$,OA$ 3 +palatals 'p&l@tlz Kj$ 3 +palate 'p&l@t K6% 2 +palates 'p&l@ts Kj% 2 +palatial p@'leISl OA% 3 +palatinate p@'l&tIn@t K6$ 4 +palatinates p@'l&tIn@ts Kj$ 4 +palaver p@'lAv@R I0$,M6$ 32A +palavered p@'lAv@d Ic$,Id$ 32A +palavering p@'lAv@rIN Ib$ 42A +palavers p@'lAv@z Ia$,Mj$ 32A +pale peIl I2%,K6%,OB% 12A,2C +paled peIld Ic%,Id% 12A,2C +paleface 'peIlfeIs K6% 2 +palefaces 'peIlfeIsIz Kj% 3 +palely 'peIl+lI Pu$ 2 +paleness 'peIln@s L@% 2 +paleolithic ,p&lI@U'lITIk OA% 5 +paleontologist ,p&lI0n't0l@dZIst K6% 6 +paleontologists ,p&lI0n't0l@dZIsts Kj% 6 +paleontology ,p&lI0n't0l@dZI L@% 6 +paler 'peIl@R Or% 2 +pales peIlz Ia%,Kj% 12A,2C +palest 'peIlIst Os% 2 +palette 'p&lIt K6% 2 +palette-knife 'p&lIt-naIf Ki% 3 +palette-knives 'p&lIt-naIvz Kj% 3 +palettes 'p&lIts Kj% 2 +palfrey 'pOlfrI K6$ 2 +palfreys 'pOlfrIz Kj$ 2 +palimpsest 'p&lImpsest K6$ 3 +palimpsests 'p&lImpsests Kj$ 3 +palindrome 'p&lIndr@Um K6% 3 +palindromes 'p&lIndr@Umz Kj% 3 +paling 'peIlIN Ib$,K6$ 22A,2C +palings 'peIlINz Kj% 2 +palisade ,p&lI'seId H2$,K6$ 36A +palisaded ,p&lI'seIdId Hc$,Hd$ 46A +palisades ,p&lI'seIdz Ha$,Kj$ 36A +palisading ,p&lI'seIdIN Hb$ 46A +palish 'peIlIS OA$ 2 +pall pOl I0%,K6% 12A,3A +pallbearer 'pOlbe@r@R K6% 3 +pallbearers 'pOlbe@r@z Kj% 3 +palled p&ld Ic$,Id$ 1 +palled pOld Ic%,Id% 12A,3A +pallet 'p&lIt K6% 2 +pallets 'p&lIts Kj% 2 +palliasse 'p&lI&s K6$ 3 +palliasses 'p&lI&sIz Kj$ 4 +palliate 'p&lIeIt H2$ 36A +palliated 'p&lIeItId Hc$,Hd$ 46A +palliates 'p&lIeIts Ha$ 36A +palliating 'p&lIeItIN Hb$ 46A +palliation ,p&lI'eISn M6$ 4 +palliations ,p&lI'eISnz Mj$ 4 +palliative 'p&lI@tIv K6%,OA% 4 +palliatives 'p&lI@tIvz Kj% 4 +pallid 'p&lId OA% 2 +pallidly 'p&lIdlI Pu% 3 +pallidness 'p&lIdn@s L@$ 3 +pallier 'p&lI@R Or$ 3 +palliest 'p&lIIst Os$ 3 +palling 'p&lIN Ib% 2 +palling 'pOlIN Ib% 22A,3A +pallor 'p&l@R L@% 2 +palls pOlz Ia%,Kj% 12A,3A +pally 'p&lI OD% 2 +palm pAm H0%,K6% 16A,15B +palm-oil 'pAm-oIl L@% 2 +palmed pAmd Hc%,Hd% 16A,15B +palmer 'pAm@R K6$ 2 +palmers 'pAm@z Kj$ 2 +palmetto p&l'met@U K6$ 3 +palmettoes p&l'met@Uz Kj$ 3 +palmettos p&l'met@Uz Kj$ 3 +palmier 'pAmI@R Or$ 3 +palmiest 'pAmIIst Os$ 3 +palming 'pAmIN Hb% 26A,15B +palmist 'pAmIst K6% 2 +palmistry 'pAmIstrI L@% 3 +palmists 'pAmIsts Kj% 2 +palms pAmz Ha%,Kj% 16A,15B +palmy 'pAmI OD% 2 +palpable 'p&lp@bl OA% 3 +palpably 'p&lp@blI Pu% 3 +palpitate 'p&lpIteIt I2% 32A,2C +palpitated 'p&lpIteItId Ic%,Id% 42A,2C +palpitates 'p&lpIteIts Ia% 32A,2C +palpitating 'p&lpIteItIN Ib% 42A,2C +palpitation ,p&lpI'teISn K6% 4 +palpitations ,p&lpI'teISnz Kj% 4 +pals p&lz Ia%,Kj% 1 +palsied 'pOlzId Hc$,Hd% 2 +palsies 'pOlzIz Ha$ 2 +palsy 'pOlzI H3$,L@% 2 +palsying 'pOlzIIN Hb$ 3 +palter 'pOlt@R I0$ 23A +paltered 'pOlt@d Ic$,Id$ 23A +paltering 'pOlt@rIN Ib$ 33A +palters 'pOlt@z Ia$ 23A +paltrier 'pOltrI@R Or% 3 +paltriest 'pOltrIIst Os% 3 +paltry 'pOltrI OD% 2 +pampas 'p&mp@s Kj% 2 +pampas-grass 'p&mp@s-grAs L@% 3 +pamper 'p&mp@R H0% 26A +pampered 'p&mp@d Hc%,Hd% 26A +pampering 'p&mp@rIN Hb% 36A +pampers 'p&mp@z Ha% 26A +pamphlet 'p&mflIt K6% 2 +pamphleteer ,p&mfl@'tI@R K6% 3 +pamphleteers ,p&mfl@'tI@z Kj% 3 +pamphlets 'p&mflIts Kj% 2 +pan p&n J4%,M6% 12C,3A,6A,15B +pan- p&n- U-% 1 +pan-pipes 'p&n-paIps Kj% 2 +panacea ,p&n@'sI@ K6% 4 +panaceas ,p&n@'sI@z Kj% 4 +panache p&'n&S L@% 2 +panama 'p&n@mA K6$ 3 +panamas 'p&n@mAz Kj$ 3 +panatella ,p&n@'tel@ K6$ 4 +panatellas ,p&n@'tel@z Kj$ 4 +pancake 'p&nkeIk K6% 2 +pancakes 'p&nkeIks Kj% 2 +panchromatic ,p&nkr@'m&tIk OA$ 4 +pancreas 'p&NkrI@s K7% 3 +pancreases 'p&NkrI@sIz Kj$ 4 +pancreatic ,p&NkrI'&tIk OA% 4 +panda 'p&nd@ K6% 2 +pandas 'p&nd@z Kj% 2 +pandemic p&n'demIk K6$,OA$ 3 +pandemics p&n'demIks Kj$ 3 +pandemonium ,p&ndI'm@UnI@m M6% 5 +pandemoniums ,p&ndI'm@UnI@mz Mj$ 5 +pander 'p&nd@R I0%,K6% 23A +pandered 'p&nd@d Ic%,Id% 23A +pandering 'p&nd@rIN Ib% 33A +panders 'p&nd@z Ia%,Kj% 23A +pane peIn K6% 1 +panegyric ,p&nI'dZIrIk K6% 4 +panegyrics ,p&nI'dZIrIks Kj% 4 +panel 'p&nl H4%,K6% 2 +panelled 'p&nld Hc%,Hd% 2 +panelling 'p&n@lIN Hb%,L@% 3 +panels 'p&nlz Ha%,Kj% 2 +panes peInz Kj% 1 +pang p&N K6% 1 +panga 'p&Ng@ K6$ 2 +pangas 'p&Ng@z Kj$ 2 +pangs p&Nz Kj% 1 +panhandle 'p&nh&ndl I2$,K6$ 3 +panhandled 'p&nh&ndld Ic$,Id$ 3 +panhandles 'p&nh&ndlz Ia$,Kj$ 3 +panhandling 'p&nh&ndlIN Ib$ 3 +panic 'p&nIk I5%,M6% 2 +panic-stricken 'p&nIk-strIk@n OA% 4 +panicked 'p&nIkt Ic%,Id% 2 +panicking 'p&nIkIN Ib% 3 +panicky 'p&nIkI OA% 3 +panics 'p&nIks Ia%,Mj% 2 +panjandrum p&n'dZ&ndr@m K6$ 3 +panjandrums p&n'dZ&ndr@mz Kj$ 3 +panned p&nd Jc%,Jd% 12C,3A,6A,15B +pannier 'p&nI@R K6% 3 +panniers 'p&nI@z Kj% 3 +pannikin 'p&nIkIn K6$ 3 +pannikins 'p&nIkInz Kj$ 3 +panning 'p&nIN Jb% 22C,3A,6A,15B +panoplied 'p&n@plId OA% 3 +panoplies 'p&n@plIz Kj% 3 +panoply 'p&n@plI K8% 3 +panoptic p&n'0ptIk OA$ 3 +panorama ,p&n@'rAm@ K6% 4 +panoramas ,p&n@'rAm@z Kj% 4 +panoramic ,p&n@'r&mIk OA% 4 +pans p&nz Ja%,Mj% 12C,3A,6A,15B +pansies 'p&nzIz Kj% 2 +pansy 'p&nzI K8% 2 +pant p&nt J0%,K6% 12A,2C,3A,6A,15B +pantaloon ,p&nt@'lun K6$ 3 +pantaloons ,p&nt@'lunz Kj$ 3 +pantechnicon p&n'teknIk@n K6% 4 +pantechnicons p&n'teknIk@nz Kj$ 4 +panted 'p&ntId Jc%,Jd% 22A,2C,3A,6A,15B +pantheism 'p&nTIIz@m L@% 4 +pantheist 'p&nTIIst K6% 3 +pantheistic ,p&nTI'IstIk OA% 4 +pantheists 'p&nTIIsts Kj$ 3 +pantheon 'p&nTI@n K6% 3 +pantheons 'p&nTI@nz Kj$ 3 +panther 'p&nT@R K6% 2 +panthers 'p&nT@z Kj% 2 +panties 'p&ntIz Kj% 2 +pantile 'p&ntaIl K6$ 2 +pantiles 'p&ntaIlz Kj$ 2 +panting 'p&ntIN Jb% 22A,2C,3A,6A,15B +pantingly 'p&ntINlI Pu$ 3 +panto 'p&nt@U K6% 2 +pantograph 'p&nt@grAf K6$ 3 +pantographs 'p&nt@grAfs Kj$ 3 +pantomime 'p&nt@maIm M6% 3 +pantomimes 'p&nt@maImz Mj% 3 +pantos 'p&nt@Uz Kj% 2 +pantries 'p&ntrIz Kj% 2 +pantry 'p&ntrI K8% 2 +pantryman 'p&ntrIm&n Ki$ 3 +pantrymen 'p&ntrImen Kj$ 3 +pants p&nts Ja%,Kj% 12A,2C,3A,6A,15B +panty-hose 'p&ntI-h@Uz L@% 3 +panzer 'p&nts@R Oq$ 2 +pap p&p L@% 1 +papa p@'pA K6% 2 +papacies 'peIp@sIz Kj$ 3 +papacy 'peIp@sI K8% 3 +papal 'peIpl OA% 2 +papas p@'pAz Kj$ 2 +papaw 'pOpO K6$ 2 +papaws pO'pOz Kj$ 2 +papaya p@'paI@ K6$ 3 +papayas p@'paI@z Kj$ 3 +paper 'peIp@R H0%,M6% 26A,15B +paper-chase 'peIp@-tSeIs K6% 3 +paper-chases 'peIp@-tSeIsIz Kj$ 4 +paperback 'peIp@b&k K6% 3 +paperbacked 'peIp@b&kt OA% 3 +paperbacks 'peIp@b&ks Kj% 3 +paperclip 'peIp@klIp K6% 3 +paperclips 'peIp@klIps Kj% 3 +papered 'peIp@d Hc%,Hd% 26A,15B +paperhanger 'peIp@h&N@R K6$ 4 +paperhangers 'peIp@h&N@z Kj$ 4 +papering 'peIp@rIN Hb% 36A,15B +paperknife 'peIp@naIf Ki% 3 +paperknives 'peIp@naIvz Kj% 3 +paperless 'peIp@lIs OA% 3 +papermill 'peIp@mIl K6% 3 +papermills 'peIp@mIlz Kj% 3 +papers 'peIp@z Ha%,Mj% 26A,15B +paperweight 'peIp@weIt K6% 3 +paperweights 'peIp@weIts Kj% 3 +paperwork 'peIp@w3k L@% 3 +papier-m^ach_e ,p&pIeI-'m&SeI L@% 4 +papist 'peIpIst K6%,OA% 2 +papists 'peIpIsts Kj% 2 +papoose p@'pus K6$ 2 +papooses p@'pusIz Kj$ 3 +paprika 'p&prIk@ L@% 3 +papyri p@'paIraI Kj$ 3 +papyrus p@'paIr@s M7$ 3 +papyruses p@'paIr@sIz Mj$ 4 +par pAR M6% 1 +par excellence ,pAr 'eks@lAns Pu% 4 +para 'p&r@ Y>% 2 +parable 'p&r@bl K6% 3 +parables 'p&r@blz Kj% 3 +parabola p@'r&b@l@ K6% 4 +parabolas p@'r&b@l@z Kj% 4 +parabolic ,p&r@'b0lIk OA% 4 +parabolical ,p&r@'b0lIkl OA$ 5 +parachute 'p&r@Sut J2%,K6% 32A,2C,6A,15A,15B +parachuted 'p&r@SutId Jc%,Jd% 42A,2C,6A,15A,15B +parachutes 'p&r@Suts Ja%,Kj% 32A,2C,6A,15A,15B +parachuting 'p&r@SutIN Jb% 42A,2C,6A,15A,15B +parachutist 'p&r@SutIst K6% 4 +parachutists 'p&r@SutIsts Kj% 4 +parade p@'reId J2%,M6% 22A,6A +parade-ground p@'reId-graUnd K6% 3 +parade-grounds p@'reId-graUndz Kj% 3 +paraded p@'reIdId Jc%,Jd% 32A,6A +parades p@'reIdz Ja%,Mj% 22A,6A +paradigm 'p&r@daIm K6% 3 +paradigms 'p&r@daImz Kj% 3 +parading p@'reIdIN Jb% 32A,6A +paradise 'p&r@daIs M6% 3 +paradises 'p&r@daIsIz Mj$ 4 +paradisiac ,p&r@'dIzI&k OA$ 5 +paradisiacal ,p&r@dI'zaI@kl OA$ 6 +paradox 'p&r@d0ks K7% 3 +paradoxes 'p&r@d0ksIz Kj% 4 +paradoxical ,p&r@'d0ksIkl OA% 5 +paradoxically ,p&r@'d0ksIklI Pu% 5 +paraffin 'p&r@fIn L@% 3 +paragon 'p&r@g@n K6% 3 +paragons 'p&r@g@nz Kj% 3 +paragraph 'p&r@grAf H0%,K6% 3 +paragraphed 'p&r@grAft Hc%,Hd% 3 +paragraphing 'p&r@grAfIN Hb% 4 +paragraphs 'p&r@grAfs Ha%,Kj% 3 +parakeet 'p&r@kit K6% 3 +parakeets 'p&r@kits Kj% 3 +parallel 'p&r@lel H4%,M6%,OA% 36A +paralleled 'p&r@leld Hc%,Hd% 36A +paralleling 'p&r@lelIN Hb% 46A +parallelism 'p&r@lelIz@m M6% 5 +parallelisms 'p&r@lelIz@mz Mj$ 5 +parallelogram ,p&r@'lel@gr&m K6% 5 +parallelograms ,p&r@'lel@gr&mz Kj% 5 +parallels 'p&r@lelz Ha%,Mj% 36A +paralyse 'p&r@laIz H2% 36A +paralysed 'p&r@laIzd Hc%,Hd% 36A +paralyses 'p&r@laIzIz Ha% 46A +paralysing 'p&r@laIzIN Hb% 46A +paralysis p@'r&l@sIs L@% 4 +paralytic ,p&r@'lItIk K6%,OA% 4 +paralytics ,p&r@'lItIks Kj% 4 +paralyze 'p&r@laIz H2% 36A +paralyzed 'p&r@laIzd Hc%,Hd% 36A +paralyzes 'p&r@laIzIz Ha% 46A +paralyzing 'p&r@laIzIN Hb% 46A +parameter p@'r&mIt@R K6% 4 +parameters p@'r&mIt@z Kj% 4 +paramilitary ,p&r@'mIlItrI OA% 5 +paramount 'p&r@maUnt OA% 3 +paramountcy 'p&r@maUntsI L@$ 4 +paramour 'p&r@mU@R K6% 3 +paramours 'p&r@mU@z Kj% 3 +paranoia ,p&r@'noI@ L@% 4 +paranoiac ,p&r@'noI&k K6% 4 +paranoiacs ,p&r@'noI&ks Kj% 4 +paranoid 'p&r@noId K6$,OA% 3 +paranoids 'p&r@noIdz Kj$ 3 +parapet 'p&r@pIt K6% 3 +parapets 'p&r@pIts Kj% 3 +paraphernalia ,p&r@f@'neIlI@ L@% 6 +paraphrase 'p&r@freIz H2% 36A +paraphrased 'p&r@freIzd Hc%,Hd% 36A +paraphrases 'p&r@freIzIz Ha% 46A +paraphrasing 'p&r@freIzIN Hb% 46A +paraplegia ,p&r@'plidZ@ L@% 5 +paraplegic ,p&r@'plidZIk K6%,OA% 4 +paraplegics ,p&r@'plidZIks Kj% 4 +parasite 'p&r@saIt K6% 3 +parasites 'p&r@saIts Kj% 3 +parasitic ,p&r@'sItIk OA% 4 +parasitical ,p&r@'sItIkl OA% 5 +parasol 'p&r@s0l K6% 3 +parasols 'p&r@s0lz Kj% 3 +paratrooper 'p&r@trup@R K6% 4 +paratroopers 'p&r@trup@z Kj% 4 +paratroops 'p&r@trups Kj% 3 +paratyphoid ,p&r@'taIfoId L@% 4 +parboil 'pAboIl H0% 26A +parboiled 'pAboIld Hc%,Hd% 26A +parboiling 'pAboIlIN Hb$ 36A +parboils 'pAboIlz Ha$ 26A +parcel 'pAsl H4%,K6% 26A,15B +parcelled 'pAsld Hc%,Hd% 26A,15B +parcelling 'pAslIN Hb% 26A,15B +parcels 'pAslz Ha%,Kj% 26A,15B +parch pAtS H1$ 16A +parched pAtSt Hc$,Hd% 16A +parches 'pAtSIz Ha$ 26A +parching 'pAtSIN Hb$ 26A +parchment 'pAtSm@nt M6% 2 +parchments 'pAtSm@nts Mj% 2 +pardon 'pAdn H0%,M6% 26A,12B,13B +pardonable 'pAdn@bl OA% 3 +pardonably 'pAdn@blI Pu% 3 +pardoned 'pAdnd Hc%,Hd% 26A,12B,13B +pardoner 'pAd@n@R K6% 3 +pardoners 'pAd@n@z Kj% 3 +pardoning 'pAd@nIN Hb% 36A,12B,13B +pardons 'pAdnz Ha%,Mj% 26A,12B,13B +pare pe@R H2% 16A,15B +pared pe@d Hc%,Hd% 16A,15B +paregoric ,p&r@'g0rIk L@$ 4 +parent 'pe@r@nt K6% 2 +parentage 'pe@r@ntIdZ L@% 3 +parental p@'rentl OA% 3 +parentally p@'rent@lI Pu% 4 +parentheses p@'renT@siz Kj% 4 +parenthesis p@'renT@sIs Ki% 4 +parenthetic ,p&r@n'TetIk OA$ 4 +parenthetical ,p&r@n'TetIkl OA$ 5 +parenthetically ,p&r@n'TetIklI Pu% 5 +parents 'pe@r@nts Kj% 2 +pares pe@z Ha% 16A,15B +pari passu ,p&rI 'p&su Pu$ 4 +pari-mutuel ,p&rI-'mjutjUel K6$ 5 +pari-mutuels ,p&rI-'mjutjUelz Kj$ 5 +pariah p@'raI@ K6% 3 +pariah-dog p@-'raI@d0g K6$ 4 +pariah-dogs p@-'raI@d0gz Kj$ 4 +pariahs p@'raI@z Kj% 3 +paring 'pe@rIN Hb% 26A,15B +parings 'pe@rINz Kj% 2 +parish 'p&rIS K7% 2 +parishes 'p&rISIz Kj% 3 +parishioner p@'rIS@n@R K6% 4 +parishioners p@'rIS@n@z Kj% 4 +parity 'p&rItI L@% 3 +park pAk J0%,K6% 12A,6A,15A +parka 'pAk@ K6$ 2 +parkas 'pAk@z Kj$ 2 +parked pAkt Jc%,Jd% 12A,6A,15A +parking 'pAkIN Jb%,L@% 22A,6A,15A +parks pAks Ja%,Kj% 12A,6A,15A +parky 'pAkI OA% 2 +parlance 'pAl@ns K6% 2 +parlances 'pAl@nsIz Kj$ 3 +parley 'pAlI I0%,K6% 22A,3A +parleyed 'pAlId Ic%,Id% 22A,3A +parleying 'pAlIIN Ib% 32A,3A +parleys 'pAlIz Ia%,Kj% 22A,3A +parliament 'pAl@m@nt K6% 3 +parliamentarian ,pAl@m@n'te@rI@n K6% 6 +parliamentarians ,pAl@m@n'te@rI@nz Kj% 6 +parliamentary ,pAl@'mentrI OA% 4 +parliaments 'pAl@m@nts Kj% 3 +parlour 'pAl@R K6% 2 +parlour-car 'pAl@-kAR K6$ 3 +parlour-cars 'pAl@-kAz Kj$ 3 +parlours 'pAl@z Kj% 2 +parlous 'pAl@s OA$ 2 +parochial p@'r@UkI@l OA% 4 +parochialism p@'r@UkI@lIz@m L@% 6 +parochially p@'r@UkI@lI Pu% 5 +parodied 'p&r@dId Hc%,Hd% 36A +parodies 'p&r@dIz Ha%,Mj% 36A +parodist 'p&r@dIst K6$ 3 +parodists 'p&r@dIsts Kj$ 3 +parody 'p&r@dI H3%,M8% 36A +parodying 'p&r@dIIN Hb% 46A +parole p@'r@Ul H2$,L@% 26A +paroled p@'r@Uld Hc$,Hd% 26A +paroles p@'r@Ulz Ha$ 26A +paroling p@'r@UlIN Hb$ 36A +paroquet 'p&r@kit K6$ 3 +paroquets 'p&r@kits Kj$ 3 +paroxysm 'p&r@ksIz@m K6% 4 +paroxysms 'p&r@ksIz@mz Kj% 4 +parquet 'pAkeI L@% 2 +parr pAR K6$ 1 +parricide 'p&rIsaId M6$ 3 +parricides 'p&rIsaIdz Mj$ 3 +parried 'p&rId Hc%,Hd% 26A +parries 'p&rIz Ha%,Kj% 26A +parrot 'p&r@t K6% 2 +parrots 'p&r@ts Kj% 2 +parrs pAz Kj$ 1 +parry 'p&rI H3%,K8% 26A +parrying 'p&rIIN Hb% 36A +pars pAz Mj$ 1 +parse pAz H2% 16A +parsed pAzd Hc%,Hd% 16A +parses 'pAzIz Ha% 26A +parsimonious ,pAsI'm@UnI@s OA% 5 +parsimony 'pAsIm@nI L@% 4 +parsing 'pAzIN Hb% 26A +parsley 'pAslI L@% 2 +parsnip 'pAsnIp K6% 2 +parsnips 'pAsnIps Kj% 2 +parson 'pAsn K6% 2 +parsonage 'pAs@nIdZ K6% 3 +parsonages 'pAs@nIdZIz Kj$ 4 +parsons 'pAsnz Kj% 2 +part pAt J0%,K6*,Pu% 12A,2D,3A,6A +part-owner pAt-'@Un@R K6% 3 +part-owners pAt-'@Un@z Kj% 3 +part-singing 'pAt-sININ L@% 3 +part-song 'pAt-s0N K6% 2 +part-songs 'pAt-s0Nz Kj% 2 +part-time 'pAt-taIm OA%,Pu% 2 +part-timer pAt-'taIm@R K6% 3 +part-timers pAt-'taIm@z Kj% 3 +partake pA'teIk J5% 23A +partaken pA'teIk@n Jd% 33A +partakes pA'teIks Ja% 23A +partaking pA'teIkIN Jb% 33A +parted 'pAtId Jc%,Jd% 22A,2D,3A,6A +parterre pA'te@R K6$ 2 +parterres pA'te@z Kj$ 2 +parthenogenesis ,pATIn@U'dZen@sIs L@$ 6 +parti-coloured 'pAtI-kVl@d OA$ 4 +partial 'pASl OA% 2 +partialities ,pASI'&lItIz Mj% 5 +partiality ,pASI'&lItI M8% 5 +partially 'pAS@lI Pu% 3 +participant pA'tIsIp@nt K6% 4 +participants pA'tIsIp@nts Kj% 4 +participate pA'tIsIpeIt I2% 42A,3A +participated pA'tIsIpeItId Ic%,Id% 52A,3A +participates pA'tIsIpeIts Ia% 42A,3A +participating pA'tIsIpeItIN Ib% 52A,3A +participation pA,tIsI'peISn L@% 5 +participial ,pAtI'sIpI@l OA$ 5 +participle 'pAtIsIpl K6% 4 +participles 'pAtIsIplz Kj% 4 +particle 'pAtIkl K6% 3 +particles 'pAtIklz Kj% 3 +particular p@'tIkjUl@R K6%,OA% 4 +particularities p@,tIkjU'l&rItIz Mj% 6 +particularity p@,tIkjU'l&rItI M8% 6 +particularize p@'tIkjul@raIz J2% 52A,6A +particularized p@'tIkjul@raIzd Jc%,Jd% 52A,6A +particularizes p@'tIkjul@raIzIz Ja% 62A,6A +particularizing p@'tIkjul@raIzIN Jb% 62A,6A +particularly p@'tIkjUl@lI Pu% 5 +particulars p@'tIkjUl@z Kj% 4 +parties 'pAtIz Mj% 2 +parting 'pAtIN Jb%,M6% 22A,2D,3A,6A +partings 'pAtINz Mj% 2 +partisan ,pAtI'z&n K6%,OA% 3 +partisans ,pAtI'z&nz Kj% 3 +partisanship ,pAtI'z&nSIp L@% 4 +partition pA'tISn H0%,M6% 36A,15B +partitioned pA'tISnd Hc%,Hd% 36A,15B +partitioning pA'tISnIN Hb% 46A,15B +partitions pA'tISnz Ha%,Mj% 36A,15B +partitive 'pAtItIv K6$,OA$ 3 +partitives 'pAtItIvz Kj$ 3 +partly 'pAtlI Pu% 2 +partner 'pAtn@R H0%,K6% 26A,15A +partnered 'pAtn@d Hc%,Hd% 26A,15A +partnering 'pAtn@rIN Hb% 36A,15A +partners 'pAtn@z Ha%,Kj% 26A,15A +partnership 'pAtn@SIp M6% 3 +partnerships 'pAtn@SIps Mj% 3 +partook pA'tUk Jc% 23A +partridge 'pAtrIdZ M6% 2 +partridges 'pAtrIdZIz Mj% 3 +parts pAts Ja%,Kj% 12A,2D,3A,6A +parturition ,pAtjU'rISn L@% 4 +party 'pAtI M8* 2 +party-spirit ,pAtI-'spIrIt L@% 4 +party-spirited ,pAtI-'spIrItId OA$ 5 +party-wall ,pAtI-'wOl K6% 3 +party-walls ,pAtI-'wOlz Kj% 3 +parvenu 'pAv@nju K6$ 3 +parvenus 'pAv@njuz Kj$ 3 +paschal 'p&skl OA$ 2 +pasha 'pAS@ K6$ 2 +pashas 'pAS@z Kj$ 2 +pass pAs J1%,K7% 12A,2C,3A,6A,12A,13A,14,15A,15B +pass_e 'p&seI OA% 2 +pass_ee 'p&seI OA$ 2 +passable 'pAs@bl OA% 3 +passably 'pAs@blI Pu% 3 +passage 'p&sIdZ M6% 2 +passages 'p&sIdZIz Mj% 3 +passageway 'p&sIdZweI K6% 3 +passageways 'p&sIdZweIz Kj% 3 +passbook 'pAsbUk K6% 2 +passbooks 'pAsbUks Kj% 2 +passed pAst Jc%,Jd% 12A,2C,3A,6A,12A,13A,14,15A,15B +passenger 'p&sIndZ@R K6% 3 +passengers 'p&sIndZ@z Kj% 3 +passepartout ,p&spA'tu M6$ 3 +passepartouts ,p&spA'tuz Mj$ 3 +passer-by ,pAs@-'baI Ki% 3 +passers-by ,pAs@z-'baI Kj% 3 +passes 'pAsIz Ja%,Kj% 22A,2C,3A,6A,12A,13A,14,15A,15B +passim 'p&sIm Pu$ 2 +passing 'pAsIN Jb%,L@%,OA%,Pu% 22A,2C,3A,6A,12A,13A,14,15A,15B +passing-out ,pAsIN-'aUt OA% 3 +passion 'p&Sn M6% 2 +passion-flower 'p&Sn-flaU@R K6% 4 +passion-flowers 'p&Sn-flaU@z Kj% 4 +passionate 'p&S@n@t OA% 3 +passionately 'p&S@n@tlI Pu% 4 +passionless 'p&Snl@s OA% 3 +passions 'p&Snz Mj% 2 +passive 'p&sIv K6%,OA% 2 +passively 'p&sIvlI Pu% 3 +passiveness 'p&sIvn@s L@% 3 +passives 'p&sIvz Kj$ 2 +passivity p&'sIvItI L@% 4 +passkey 'pAski K6% 2 +passkeys 'pAskiz Kj% 2 +passport 'pAspOt K6% 2 +passports 'pAspOts Kj% 2 +password 'pAsw3d K6% 2 +passwords 'pAsw3dz Kj% 2 +past pAst Jd%,K6*,OA*,Pu*,T-* 12A,2C,3A,6A,12A,13A,14,15A,15B +pasta 'p&st@ L@% 2 +paste peIst H2%,M6% 16A,15A,15B +paste-up 'peIst-Vp K6$ 2 +paste-ups 'peIst-Vps Kj$ 2 +pasteboard 'peIstbOd L@% 2 +pasted 'peIstId Hc%,Hd% 26A,15A,15B +pastel 'p&stl K6% 2 +pastels 'p&stlz Kj% 2 +pastern 'p&st@n K6$ 2 +pasterns 'p&st@nz Kj$ 2 +pastes peIsts Ha%,Mj% 16A,15A,15B +pasteurization ,pAstS@raI'zeISn L@% 5 +pasteurize 'pAstS@raIz H2% 36A +pasteurized 'pAstS@raIzd Hc%,Hd% 36A +pasteurizes 'pAstS@raIzIz Ha% 46A +pasteurizing 'pAstS@raIzIN Hb% 46A +pastiche p&'stiS K6% 2 +pastiches p&'stiSIz Kj$ 3 +pastier 'peIstI@R Or% 3 +pasties 'p&stIz Kj% 2 +pastiest 'peIstIIst Os% 3 +pastille 'p&stIl K6% 2 +pastilles 'p&stIlz Kj% 2 +pastime 'pAstaIm K6% 2 +pastimes 'pAstaImz Kj% 2 +pasting 'peIstIN Hb%,K6% 26A,15A,15B +pastings 'peIstINz Kj% 2 +pastor 'pAst@R K6% 2 +pastoral 'pAst@r@l K6%,OA% 3 +pastorals 'pAst@r@lz Kj% 3 +pastorate 'pAst@r@t K6$ 3 +pastorates 'pAst@r@ts Kj$ 3 +pastors 'pAst@z Kj% 2 +pastries 'peIstrIz Mj% 2 +pastry 'peIstrI M8% 2 +pastry-cook 'peIstrI-kUk K6% 3 +pastry-cooks 'peIstrI-kUks Kj% 3 +pasts pAsts Kj% 1 +pasturage 'pAstS@rIdZ L@% 3 +pasture 'pAstS@R J2%,M6% 22A,6A +pastured 'pAstS@d Jc%,Jd% 22A,6A +pastures 'pAstS@z Ja%,Mj% 22A,6A +pasturing 'pAstS@rIN Jb% 32A,6A +pasty 'p&stI K8% 2 +pasty 'peIstI OD% 2 +pat p&t J4%,K6%,Pu% 12A,6A,15A +patch p&tS H1%,K7% 16A,15B +patch-pocket 'p&tS-p0kIt K6$ 3 +patch-pockets 'p&tS-p0kIts Kj$ 3 +patched p&tSt Hc%,Hd% 16A,15B +patches 'p&tSIz Ha%,Kj% 26A,15B +patchier 'p&tSI@R Or% 3 +patchiest 'p&tSIIst Os% 3 +patchily 'p&tSIlI Pu% 3 +patchiness 'p&tSIn@s L@% 3 +patching 'p&tSIN Hb% 26A,15B +patchouli 'p&tSUlI L@$ 3 +patchwork 'p&tSw3k L@% 2 +patchy 'p&tSI OD% 2 +pate peIt K6% 1 +pate de foie gras ,p&teI d@ ,fwA 'grA L@% 5 +patella p@'tel@ K6% 3 +patellas p@'tel@z Kj$ 3 +patent 'peItnt H0%,K6%,OA% 26A +patented 'peItntId Hc%,Hd% 36A +patentee ,peItn'ti K6$ 3 +patentees ,peItn'tiz Kj$ 3 +patenting 'peItntIN Hb% 36A +patently 'peItntlI Pu% 3 +patents 'peItnts Ha%,Kj% 26A +paterfamilias ,peIt@f@'mIlI&s Ki% 6 +paternal p@'t3nl OA% 3 +paternalism p@'t3n@lIz@m L@% 5 +paternally p@'t3n@lI Pu% 4 +paternity p@'t3nItI L@% 4 +paternoster ,p&t@'n0st@R K6$ 4 +paternosters ,p&t@'n0st@z Kj$ 4 +pates peIts Kj% 1 +path pAT K6% 1 +path-finder 'pAT-faInd@R K6% 3 +path-finders 'pAT-faInd@z Kj% 3 +pathetic p@'TetIk OA% 3 +pathetically p@'TetIklI Pu% 4 +pathless 'pATl@s OA% 2 +pathogen 'p&T@dZ@n K6% 3 +pathogens 'p&T@dZ@nz Kj% 3 +pathological ,p&T@'l0dZIkl OA% 5 +pathologically ,p&T@'l0dZIklI Pu% 5 +pathologist p@'T0l@dZIst K6% 4 +pathologists p@'T0l@dZIsts Kj% 4 +pathology p@'T0l@dZI L@% 4 +pathos 'peIT0s L@% 2 +paths pADz Kj% 1 +pathway 'pATweI K6% 2 +pathways 'pATweIz Kj% 2 +patience 'peISns L@% 2 +patient 'peISnt K6%,OA% 2 +patiently 'peISntlI Pu% 3 +patients 'peISnts Kj% 2 +patina 'p&tIn@ K6$ 3 +patinas 'p&tIn@z Kj$ 3 +patio 'p&tI@U K6% 3 +patios 'p&tI@Uz Kj% 3 +patisserie p@'tis@rI K6% 4 +patisseries p@'tis@rIz Kj% 4 +patois 'p&twA Ki$ 2 +patois 'p&twAz Kj$ 2 +patrial 'peItrI@l K6$ 3 +patrials 'peItrI@lz Kj$ 3 +patriarch 'peItrIAk K6% 3 +patriarchal ,peItrI'Akl OA% 4 +patriarchate 'peItrIAkeIt K6$ 4 +patriarchates 'peItrIAkeIts Kj$ 4 +patriarchies 'peItrIAkIz Kj$ 4 +patriarchs 'peItrIAks Kj% 3 +patriarchy 'peItrIAkI K8% 4 +patrician p@'trISn K6%,OA% 3 +patricians p@'trISnz Kj% 3 +patricide 'p&trIsaId M6% 3 +patricides 'p&trIsaIdz Mj% 3 +patrimonial ,p&trI'm@UnI@l OA$ 5 +patrimonies 'p&trIm@nIz Kj$ 4 +patrimony 'p&trIm@nI K8$ 4 +patriot 'p&trI@t K6% 3 +patriotic ,p&trI'0tIk OA% 4 +patriotically ,p&trI'0tIklI Pu% 5 +patriotism 'p&trI@tIz@m L@% 5 +patriots 'p&trI@ts Kj% 3 +patrol p@'tr@Ul J4%,M6% 22A,6A +patrolled p@'tr@Uld Jc%,Jd% 22A,6A +patrolling p@'tr@UlIN Jb% 32A,6A +patrolman p@'tr@Ulm@n Ki% 3 +patrolmen p@'tr@Ulm@n Kj% 3 +patrols p@'tr@Ulz Ja%,Mj% 22A,6A +patron 'peItr@n K6% 2 +patronage 'p&tr@nIdZ L@% 3 +patroness 'peItr@nes K7% 3 +patronesses 'peItr@nesIz Kj% 4 +patronize 'p&tr@naIz H2% 36A +patronized 'p&tr@naIzd Hc%,Hd% 36A +patronizes 'p&tr@naIzIz Ha% 46A +patronizing 'p&tr@naIzIN Hb%,OA% 46A +patronizingly 'p&tr@naIzINlI Pu% 5 +patrons 'peItr@nz Kj% 2 +patronymic ,p&tr@'nImIk K6%,OA% 4 +patronymics ,p&tr@'nImIks Kj% 4 +pats p&ts Ja%,Kj% 12A,6A,15A +patted 'p&tId Jc%,Jd% 22A,6A,15A +patten 'p&tn K6$ 2 +pattens 'p&tnz Kj$ 2 +patter 'p&t@R J0%,L@% 22A,2C,6A +pattered 'p&t@d Jc%,Jd% 22A,2C,6A +pattering 'p&t@rIN Jb% 32A,2C,6A +pattern 'p&tn H0%,K6% 214 +patterned 'p&tnd Hc%,Hd% 214 +patterning 'p&tnIN Hb% 314 +patterns 'p&tnz Ha%,Kj% 214 +patters 'p&t@z Ja% 22A,2C,6A +patties 'p&tIz Kj% 2 +patting 'p&tIN Jb% 22A,6A,15A +patty 'p&tI K8% 2 +patty-pan 'p&tI-p&n K6$ 3 +patty-pans 'p&tI-p&nz Kj$ 3 +paucity 'pOsItI L@% 3 +paunch pOntS K7% 1 +paunches 'pOntSIz Kj% 2 +paunchier 'pOntSI@R Or% 3 +paunchiest 'pOntSIIst Os% 3 +paunchiness 'pOntSIn@s L@% 3 +paunchy 'pOntSI OD% 2 +pauper 'pOp@R K6% 2 +pauperism 'pOp@rIz@m L@$ 4 +pauperization ,pOp@raI'zeISn L@$ 5 +pauperize 'pOp@raIz H2% 36A +pauperized 'pOp@raIzd Hc%,Hd% 36A +pauperizes 'pOp@raIzIz Ha% 46A +pauperizing 'pOp@raIzIN Hb% 46A +paupers 'pOp@z Kj% 2 +pause pOz I2%,K6% 12A,4A +paused pOzd Ic%,Id% 12A,4A +pauses 'pOzIz Ia%,Kj% 22A,4A +pausing 'pOzIN Ib% 22A,4A +pave peIv H2% 16A +paved peIvd Hc%,Hd% 16A +pavement 'peIvm@nt K6% 2 +pavements 'peIvm@nts Kj% 2 +paves peIvz Ha% 16A +pavilion p@'vIlI@n K6% 4 +pavilions p@'vIlI@nz Kj% 4 +paving 'peIvIN Hb% 26A +paving-stone 'peIvIN-st@Un K6% 3 +paving-stones 'peIvIN-st@Unz Kj% 3 +paw pO H0%,K6% 16A,15B +pawed pOd Hc%,Hd% 16A,15B +pawing 'pOIN Hb% 26A,15B +pawkily 'pOkIlI Pu$ 3 +pawky 'pOkI OA$ 2 +pawl pOl K6$ 1 +pawls pOlz Kj$ 1 +pawn pOn H0%,M6% 16A +pawn-ticket 'pOn-tIkIt K6% 3 +pawn-tickets 'pOn-tIkIts Kj% 3 +pawnbroker 'pOnbr@Uk@R K6% 3 +pawnbrokers 'pOnbr@Uk@z Kj% 3 +pawned pOnd Hc%,Hd% 16A +pawning 'pOnIN Hb% 26A +pawns pOnz Ha%,Mj% 16A +pawnshop 'pOnS0p K6% 2 +pawnshops 'pOnS0ps Kj% 2 +pawpaw 'pOpO K6% 2 +pawpaws pO'pOz Kj% 2 +paws pOz Ha%,Kj% 16A,15B +pax p&ks K7$ 1 +paxes 'p&ksIz Kj$ 2 +pay peI J5%,L@% 12A,3A,6A,12A,12B,13A,13B,14,15B +pay-as-you-earn ,peI-@z-ju-'3n L@% 4 +pay-claim 'peI-kleIm K6% 2 +pay-claims 'peI-kleImz Kj% 2 +pay-packet 'peI-p&kIt K6% 3 +pay-packets 'peI-p&kIts Kj% 3 +pay-station 'peI-steISn K6$ 3 +pay-stations 'peI-steISnz Kj$ 3 +payable 'peI@bl OA% 3 +payday 'peIdeI K6% 2 +paydays 'peIdeIz Kj% 2 +paydirt 'peId3t L@% 2 +payee peI'i K6% 2 +payees peI'iz Kj% 2 +payer 'peI@R K6% 2 +payers 'peI@z Kj% 2 +paying 'peIIN Jb% 22A,3A,6A,12A,12B,13A,13B,14,15B +payload 'peIl@Ud K6% 2 +payloads 'peIl@Udz Kj% 2 +paymaster 'peImAst@R K6% 3 +paymasters 'peImAst@z Kj% 3 +payment 'peIm@nt M6% 2 +payments 'peIm@nts Mj% 2 +paynim 'peInIm K6$ 2 +paynims 'peInImz Kj$ 2 +payoff 'peI0f K6% 2 +payoffs 'peI0fs Kj% 2 +payphone 'peIf@Un K6% 2 +payphones 'peIf@Unz Kj% 2 +payroll 'peIr@Ul K6% 2 +payrolls 'peIr@Ulz Kj% 2 +pays peIz Ja% 12A,3A,6A,12A,12B,13A,13B,14,15B +paysheet 'peISit K6% 2 +paysheets 'peISits Kj% 2 +payslip 'peIslIp K6% 2 +payslips 'peIslIps Kj% 2 +pea pi K6% 1 +pea-chick 'pi-tSIk K6$ 2 +pea-chicks 'pi-tSIks Kj$ 2 +pea-flour 'pi-flaU@R L@$ 3 +pea-green 'pi-grin M6%,OA% 2 +pea-greens 'pi-grinz Mj$ 2 +pea-jacket 'pi-dZ&kIt K6$ 3 +pea-jackets 'pi-dZ&kIts Kj$ 3 +pea-soup pi-'sup M6% 2 +pea-soups pi-'sups Mj$ 2 +peace pis L@% 1 +peace-offering 'pis-0f@rIN K6% 4 +peace-offerings 'pis-0f@rINz Kj% 4 +peaceable 'pis@bl OA% 3 +peaceably 'pis@blI Pu% 3 +peaceful 'pisf@l OA% 2 +peacefully 'pisf@lI Pu% 3 +peacefulness 'pisfln@s L@% 3 +peacemaker 'pismeIk@R K6% 3 +peacemakers 'pismeIk@z Kj% 3 +peacetime 'pistaIm L@% 2 +peach pitS J1$,K7% 12A,3A,6A +peached pitSt Jc$,Jd$ 12A,3A,6A +peaches 'pitSIz Ja$,Kj% 22A,3A,6A +peaching 'pitSIN Jb$ 22A,3A,6A +peacock 'pik0k K6% 2 +peacock-blue ,pik0k-'blu M6%,OA% 3 +peacock-blues ,pik0k-'bluz Mj$ 3 +peacocks 'pik0ks Kj% 2 +peafowl 'pifaUl K6$ 2 +peafowls 'pifaUlz Kj$ 2 +peahen 'pihen K6% 2 +peahens 'pihenz Kj% 2 +peak pik I0%,K6% 12A +peaked pikt Ic%,Id%,OA% 12A +peakier 'pikI@R Or$ 3 +peakiest 'pikIIst Os$ 3 +peaking 'pikIN Ib% 22A +peaks piks Ia%,Kj% 12A +peaky 'pikI OD% 2 +peal pil J0%,K6% 12A,2C,6A +pealed pild Jc%,Jd% 12A,2C,6A +pealing 'pilIN Jb% 22A,2C,6A +peals pilz Ja%,Kj% 12A,2C,6A +peanut 'pinVt K6% 2 +peanuts 'pinVts Kj% 2 +pear pe@R M6% 1 +pearl p3l I0%,K6% 1 +pearl-barley p3l-'bAlI L@% 3 +pearl-diver 'p3l-daIv@R K6% 3 +pearl-divers 'p3l-daIv@z Kj% 3 +pearl-fisheries 'p3l-fIS@rIz Kj% 4 +pearl-fishery 'p3l-fIS@rI K8% 4 +pearl-oyster 'p3l-oIst@R K6% 3 +pearl-oysters 'p3l-oIst@z Kj% 3 +pearl-sago p3l-'seIg@U L@% 3 +pearled p3ld Ic$,Id$ 1 +pearlier 'p3lI@R Or$ 3 +pearlies 'p3liz Kj$ 2 +pearliest 'p3lIIst Os$ 3 +pearling 'p3lIN Ib$ 2 +pearls p3lz Ia$,Kj% 1 +pearly 'p3lI OD% 2 +pearmain 'pe@meIn K6$ 2 +pearmains 'pe@meInz Kj$ 2 +pears pe@z Mj% 1 +peas piz Kj% 1 +peasant 'pesnt K6% 2 +peasantries 'pezntrIz Kj$ 3 +peasantry 'pezntrI K8% 3 +peasants 'peznts Kj% 2 +pease piz L@$ 1 +pease-pudding piz-'pUdIN M6% 3 +pease-puddings piz-'pUdINz Mj% 3 +peashooter 'piSut@R K6% 3 +peashooters 'piSut@z Kj% 3 +peasouper pi'sup@R K6% 3 +peasoupers pi'sup@z Kj$ 3 +peat pit L@% 1 +peatier 'pitI@R Or$ 3 +peatiest 'pitIIst Os$ 3 +peaty 'pitI OD% 2 +pebble 'pebl K6% 2 +pebbles 'peblz Kj% 2 +pebblier 'peblI@R Or$ 3 +pebbliest 'peblIIst Os$ 3 +pebbly 'peblI OD% 2 +pecan pI'k&n K6% 2 +pecans pI'k&nz Kj$ 2 +peccable 'pek@bl OA$ 3 +peccadillo ,pek@'dIl@U K6% 4 +peccadilloes ,pek@'dIl@Uz Kj% 4 +peccadillos ,pek@'dIl@Uz Kj% 4 +peccaries 'pek@rIz Kj$ 3 +peccary 'pek@rI K8$ 3 +peck pek J0%,K6% 12A,2C,3A,6A +pecked pekt Jc%,Jd% 12A,2C,3A,6A +pecker 'pek@R K6% 2 +peckers 'pek@z Kj% 2 +pecking 'pekIN Jb% 22A,2C,3A,6A +peckish 'pekIS OA% 2 +pecks peks Ja%,Kj% 12A,2C,3A,6A +pectic 'pektIk OA$ 2 +pectin 'pektIn L@% 2 +pectoral 'pekt@r@l OA% 3 +peculate 'pekjUleIt J2$ 3 +peculated 'pekjUleItId Jc$,Jd$ 4 +peculates 'pekjUleIts Ja$ 3 +peculating 'pekjUleItIN Jb$ 4 +peculation ,pekjU'leISn M6$ 4 +peculations ,pekjU'leISnz Mj$ 4 +peculiar pI'kjulI@R OA% 4 +peculiarities pI,kjulI'&rItIz Mj% 6 +peculiarity pI,kjulI'&rItI M8% 6 +peculiarly pI'kjulI@lI Pu% 5 +pecuniary pI'kjunI@rI OA% 5 +pedagogic ,ped@'g0dZIk OA% 4 +pedagogical ,ped@'g0dZIk@l OA% 5 +pedagogue 'ped@g0g K6% 3 +pedagogues 'ped@g0gz Kj% 3 +pedagogy 'ped@g0dZI L@% 4 +pedal 'pedl J4%,K6%,OA% 22A,2C,6A +pedalled 'pedld Jc%,Jd% 22A,2C,6A +pedalling 'ped@lIN Jb% 32A,2C,6A +pedals 'pedlz Ja%,Kj% 22A,2C,6A +pedant 'pednt K6% 2 +pedantic pI'd&ntIk OA% 3 +pedantically pI'd&ntIklI Pu% 4 +pedantries 'pedntrIz Mj% 3 +pedantry 'pedntrI M8% 3 +pedants 'pednts Kj% 2 +peddle 'pedl J2% 22A,6A +peddled 'pedld Jc%,Jd% 22A,6A +peddler 'pedl@R K6% 2 +peddlers 'pedl@z Kj% 2 +peddles 'pedlz Ja% 22A,6A +peddling 'pedlIN Jb%,OA% 22A,6A +pederast 'ped@r&st K6$ 3 +pederasts 'ped@r&sts Kj$ 3 +pederasty 'ped@r&stI L@$ 4 +pedestal 'pedIstl K6% 3 +pedestals 'pedIstlz Kj% 3 +pedestrian pI'destrI@n K6%,OA% 4 +pedestrians pI'destrI@nz Kj% 4 +pediatrician ,pidI@'trISn K6% 5 +pediatricians ,pidI@'trISnz Kj% 5 +pediatrics ,pidI'&trIks Lk% 4 +pedicab 'pedIk&b K6$ 3 +pedicabs 'pedIk&bz Kj$ 3 +pedicure 'pedIkjU@R K6% 3 +pedicures 'pedIkjU@z Kj$ 3 +pedigree 'pedIgri M6% 3 +pedigrees 'pedIgriz Mj% 3 +pediment 'pedIm@nt K6$ 3 +pediments 'pedIm@nts Kj$ 3 +pedlar 'pedl@R K6% 2 +pedlars 'pedl@z Kj% 2 +pedometer pI'd0mIt@R K6$ 4 +pedometers pI'd0mIt@z Kj$ 4 +pee pi I5%,M6% 12A +peed pid Ic%,Id% 12A +peeing 'piIN Ib% 22A +peek pik I0%,K6% 1 +peek-a-boo ,pik-@-'bu L@% 3 +peeked pikt Ic%,Id% 1 +peeking 'pikIN Ib% 2 +peeks piks Ia%,Kj% 1 +peel pil J0%,L@% 12A,2C,6A,15B +peeled pild Jc%,Jd% 12A,2C,6A,15B +peeler 'pil@R K6% 2 +peelers 'pil@z Kj% 2 +peeling 'pilIN Jb% 22A,2C,6A,15B +peelings 'pilINz Kj% 2 +peels pilz Ja% 12A,2C,6A,15B +peep pip I0%,K6% 12A,2C +peeped pipt Ic%,Id% 12A,2C +peeper 'pip@R K6$ 2 +peepers 'pip@z Kj$ 2 +peephole 'piph@Ul K6% 2 +peepholes 'piph@Ulz Kj% 2 +peeping 'pipIN Ib% 22A,2C +peeps pips Ia%,Kj% 12A,2C +peepshow 'pipS@U K6% 2 +peepshows 'pipS@Uz Kj% 2 +peepul 'pip@l K6$ 2 +peepuls 'pip@lz Kj$ 2 +peer pI@R I0%,K6% 12A,3A +peerage 'pI@rIdZ K6% 2 +peerages 'pI@rIdZIz Kj% 3 +peered pI@d Ic%,Id% 12A,3A +peeress 'pI@res K7% 2 +peeresses 'pI@resIz Kj$ 3 +peering 'pI@rIN Ib% 22A,3A +peerless 'pI@l@s OA% 2 +peers pI@z Ia%,Kj% 12A,3A +pees piz Ia%,Mj% 12A +peeve piv H2$ 1 +peeved pivd Hc$,Hd%,OA% 1 +peeves pivz Ha$ 1 +peeving 'pivIN Hb$ 2 +peevish 'pivIS OA% 2 +peevishly 'pivISlI Pu% 3 +peevishness 'pivISn@s L@% 3 +peewit 'piwIt K6% 2 +peewits 'piwIts Kj% 2 +peg peg J4%,K6% 12C,6A,15B +pegged pegd Jc%,Jd% 12C,6A,15B +pegging 'pegIN Jb% 22C,6A,15B +pegs pegz Ja%,Kj% 12C,6A,15B +peignoir 'peInwAR K6$ 2 +peignoirs 'peInwAz Kj$ 2 +pejorative pI'dZ0r@tIv OA% 4 +pejoratively pI'dZ0r@tIvlI Pu% 5 +peke pik K6$ 1 +pekes piks Kj$ 1 +pekinese ,pikI'niz K9% 3 +pekoe 'pik@U L@$ 2 +pelf pelf L@$ 1 +pelican 'pelIk@n K6% 3 +pelicans 'pelIk@nz Kj% 3 +pelisse pe'lis K6$ 2 +pelisses pe'lisIz Kj$ 3 +pell-mell ,pel-'mel Pu% 2 +pellet 'pelIt K6% 2 +pellets 'pelIts Kj% 2 +pellucid pe'lusId OA% 3 +pellucidly pe'lusIdlI Pu% 4 +pelmet 'pelmIt K6% 2 +pelmets 'pelmIts Kj% 2 +pelota p@'l@Ut@ L@$ 3 +pelt pelt J0%,K6% 12C,6A,14 +pelted 'peltId Jc%,Jd% 22C,6A,14 +pelting 'peltIN Jb% 22C,6A,14 +pelts pelts Ja%,Kj% 12C,6A,14 +pelves 'pelviz Kj$ 2 +pelvic 'pelvIk OA% 2 +pelvis 'pelvIs K7% 2 +pelvises 'pelvIsIz Kj% 3 +pemmican 'pemIk@n L@$ 3 +pen pen H4%,K6% 115A,15B +pen-and-ink ,pen-@n-'INk L@% 3 +pen-friend 'pen-frend K6% 2 +pen-friends 'pen-frendz Kj% 2 +pen-name 'pen-neIm K6% 2 +pen-names 'pen-neImz Kj% 2 +pen-pusher 'pen-pUS@R K6% 3 +pen-pushers 'pen-pUS@z Kj% 3 +penal 'pinl OA% 2 +penalization ,pin@laI'zeISn M6$ 5 +penalizations ,pin@laI'zeISnz Mj$ 5 +penalize 'pin@laIz H2% 36A,14 +penalized 'pin@laIzd Hc%,Hd% 36A,14 +penalizes 'pin@laIzIz Ha% 46A,14 +penalizing 'pin@laIzIN Hb% 46A,14 +penally 'pin@lI Pu% 3 +penalties 'penltIz Mj% 3 +penalty 'penltI M8% 3 +penance 'pen@ns L@% 2 +pence pens Kj% 1 +penchant 'pAnSAn K6% 2 +penchants 'pAnSAnz Kj$ 2 +pencil 'pensl H4%,K6% 26A +pencilled 'pensld Hc%,Hd% 26A +pencilling 'pens@lIN Hb% 36A +pencils 'penslz Ha%,Kj% 26A +pendant 'pend@nt K6% 2 +pendants 'pend@nts Kj% 2 +pendent 'pend@nt OA$ 2 +pending 'pendIN OA%,T-% 2 +pendulous 'pendjUl@s OA% 3 +pendulum 'pendjUl@m K6% 3 +pendulums 'pendjUl@mz Kj% 3 +penetrability ,penItr@'bIlItI L@$ 6 +penetrable 'penItr@bl OA% 4 +penetrate 'penItreIt J2% 33A,6A +penetrated 'penItreItId Jc%,Jd% 43A,6A +penetrates 'penItreIts Ja% 33A,6A +penetrating 'penItreItIN Jb%,OA% 43A,6A +penetratingly 'penItreItINlI Pu% 5 +penetration ,penI'treISn M6% 4 +penetrations ,penI'treISnz Mj$ 4 +penetrative 'penItr@tIv OA$ 4 +penguin 'peNgwIn K6% 2 +penguins 'peNgwInz Kj% 2 +penicillin ,penI'sIlIn L@% 4 +peninsula p@'nInsjUl@ K6% 4 +peninsular p@'nInsjUl@R OA% 4 +peninsulas p@'nInsjUl@z Kj% 4 +penis 'pinIs K7% 2 +penises 'pinIsIz Kj% 3 +penitence 'penIt@ns L@% 3 +penitent 'penIt@nt K6%,OA% 3 +penitential ,penI'tenSl OA% 4 +penitentially ,penI'tenS@lI Pu% 5 +penitentiaries ,penI'tenS@rIz Kj% 5 +penitentiary ,penI'tenS@rI K8%,OA% 5 +penitently 'penIt@ntlI Pu% 4 +penitents 'penIt@nts Kj% 3 +penknife 'pen+naIf Ki% 2 +penknives 'pen+naIvz Kj% 2 +penmanship 'penm@nSIp L@% 3 +penn'orth 'pen@T K6$ 2 +penn'orths 'pen@Ts Kj$ 2 +pennant 'pen@nt K6% 2 +pennants 'pen@nts Kj% 2 +penned pend Hc%,Hd% 115A,15B +pennies 'penIz Kj% 2 +penniless 'penIlIs OA% 3 +penning 'penIN Hb% 215A,15B +pennon 'pen@n K6$ 2 +pennons 'pen@nz Kj$ 2 +penny 'penI K8% 2 +pennyweight 'penIweIt K6$ 3 +pennyweights 'penIweIts Kj$ 3 +pennyworth 'penIw@T K6% 3 +pennyworths 'penIw@Ts Kj$ 3 +penology pi'n0l@dZI L@$ 4 +pens penz Ha%,Kj% 115A,15B +pension 'p0nsI0n K6$ 3 +pension 'penSn H0%,K6% 215B +pensionable 'penSn@bl OA% 3 +pensioned 'penSnd Hc%,Hd% 215B +pensioner 'penSn@R K6% 3 +pensioners 'penSn@z Kj% 3 +pensioning 'penSnIN Hb$ 315B +pensions 'p0nsI0nz Kj$ 3 +pensions 'penSnz Ha$,Kj% 215B +pensive 'pensIv OA% 2 +pensively 'pensIvlI Pu% 3 +pensiveness 'pensIvn@s L@% 3 +penstock 'penst0k K6$ 2 +penstocks 'penst0ks Kj$ 2 +pent-up ,pent-'Vp OA% 2 +pentagon 'pent@g@n K6% 3 +pentagonal pen't&g@nl OA% 4 +pentagons 'pent@g@nz Kj% 3 +pentameter pen't&mIt@R K6% 4 +pentameters pen't&mIt@z Kj% 4 +pentathlon pen't&Tl@n K6% 3 +pentathlons pen't&Tl@nz Kj$ 3 +penthouse 'penthaUs K6% 2 +penthouses 'penthaUzIz Kj% 3 +penultimate pen'VltIm@t K6$,OA% 4 +penultimates pen'VltIm@ts Kj$ 4 +penumbra pI'nVmbr@ K6% 3 +penumbras pI'nVmbr@z Kj$ 3 +penurious pI'njU@rI@s OA% 4 +penuriously pI'njU@rI@slI Pu$ 5 +penuriousness pI'njU@rI@sn@s L@$ 5 +penury 'penjU@rI L@% 3 +peon 'pi@n K6$ 2 +peonage 'pi@nIdZ L@$ 3 +peonies 'pi@nIz Kj$ 3 +peons 'pi@nz Kj$ 2 +peony 'pi@nI K8$ 3 +people 'pipl H2$,M6* 26A +peopled 'pipld Hc$,Hd% 26A +peoples 'piplz Ha$,Mj$ 26A +peopling 'piplIN Hb$ 26A +pep pep H4%,L@% 115B +pepped pept Hc%,Hd% 115B +pepper 'pep@R H0%,M6% 26A +pepper-and-salt ,pep@r-@n-'s0lt L@% 4 +pepper-mill 'pep@-mIl K6% 3 +pepper-mills 'pep@-mIlz Kj% 3 +pepper-pot 'pep@-p0t K6% 3 +pepper-pots 'pep@-p0ts Kj% 3 +peppercorn 'pep@kOn K6% 3 +peppercorns 'pep@kOnz Kj% 3 +peppered 'pep@d Hc%,Hd% 26A +peppering 'pep@rIN Hb% 36A +peppermint 'pep@mInt M6% 3 +peppermints 'pep@mInts Mj% 3 +peppers 'pep@z Ha%,Mj% 26A +peppery 'pep@rI OA% 3 +pepping 'pepIN Hb% 215B +peps peps Ha% 115B +pepsin 'pepsIn L@% 2 +peptic 'peptIk OA% 2 +per p3R T-% 1 +peradventure ,p3r@d'ventS@R Pu% 4 +perambulate p@'r&mbjUleIt J2% 42A,6A +perambulated p@'r&mbjUleItId Jc%,Jd% 52A,6A +perambulates p@'r&mbjUleIts Ja% 42A,6A +perambulating p@'r&mbjUleItIN Jb% 52A,6A +perambulation p@,r&mbjU'leISn K6% 5 +perambulations p@,r&mbjU'leISnz Kj% 5 +perambulator p@'r&mbjUleIt@R K6% 5 +perambulators p@'r&mbjUleIt@z Kj% 5 +perceivable p@'siv@bl OA% 4 +perceive p@'siv H2% 26A,8,9,10,18A,19A,25 +perceived p@'sivd Hc%,Hd% 26A,8,9,10,18A,19A,25 +perceiver p@'siv@R K6% 3 +perceivers p@'siv@z Kj% 3 +perceives p@'sivz Ha% 26A,8,9,10,18A,19A,25 +perceiving p@'sivIN Hb% 36A,8,9,10,18A,19A,25 +percent p@'sent K9% 2 +percentage p@'sentIdZ K6% 3 +percentages p@'sentIdZIz Kj% 4 +perceptibility p@,sept@'bIlItI L@$ 6 +perceptible p@'sept@bl OA% 4 +perceptibly p@'sept@blI Pu% 4 +perception p@'sepSn M6% 3 +perceptions p@'sepSnz Mj% 3 +perceptive p@'septIv OA% 3 +perceptively p@'septIvlI Pu% 4 +perceptual p@'septjU@l OA% 4 +perceptually p@'septjU@lI Pu% 5 +perch p3tS J1%,K9% 12C +perchance p@'tSAns Pu% 2 +perched p3tSt Jc%,Jd% 12C +perches 'p3tSIz Ja%,Kj% 22C +perching 'p3tSIN Jb% 22C +percipient p@'sIpI@nt OA$ 4 +percolate 'p3k@leIt J2% 32A,3A,6A +percolated 'p3k@leItId Jc%,Jd% 42A,3A,6A +percolates 'p3k@leIts Ja% 32A,3A,6A +percolating 'p3k@leItIN Jb% 42A,3A,6A +percolator 'p3k@leIt@R K6% 4 +percolators 'p3k@leIt@z Kj% 4 +percussion p@'kVSn M6% 3 +percussionist p@'kVS@nIst K6% 4 +percussionists p@'kVS@nIsts Kj% 4 +percussions p@'kVSnz Mj$ 3 +perdition p@'dISn L@$ 3 +peregrination ,perIgrI'neISn M6% 5 +peregrinations ,perIgrI'neISnz Mj% 5 +peremptorily p@'remptr@lI Pu% 4 +peremptory p@'rempt@rI OA% 4 +perennial p@'renI@l K6%,OA% 4 +perennially p@'renI@lI Pu% 5 +perennials p@'renI@lz Kj% 4 +perfect 'p3fIkt OA% 2 +perfect p@'fekt H0% 26A +perfected p@'fektId Hc%,Hd% 36A +perfectibility p@,fekt@'bIlItI L@% 6 +perfectible p@'fekt@bl OA% 4 +perfecting p@'fektIN Hb% 36A +perfection p@'fekSn L@% 3 +perfectionist p@'fekS@nIst K6% 4 +perfectionists p@'fekS@nIsts Kj% 4 +perfectly 'p3fIktlI Pu% 3 +perfects p@'fekts Ha% 26A +perfervid p3'f3vId OA$ 3 +perfidies 'p3fIdIz Mj% 3 +perfidious p@'fIdI@s OA% 4 +perfidiously p@'fIdI@slI Pu% 5 +perfidiousness p@'fIdI@sn@s L@% 5 +perfidy 'p3fIdI M8% 3 +perforate 'p3f@reIt H2% 36A +perforated 'p3f@reItId Hc%,Hd% 46A +perforates 'p3f@reIts Ha% 36A +perforating 'p3f@reItIN Hb% 46A +perforation ,p3f@'reISn M6% 4 +perforations ,p3f@'reISnz Mj% 4 +perforce p@'fOs Pu% 2 +perform p@'fOm J0% 22A,6A +performance p@'fOm@ns M6% 3 +performances p@'fOm@nsIz Mj% 4 +performed p@'fOmd Jc%,Jd% 22A,6A +performer p@'fOm@R K6% 3 +performers p@'fOm@z Kj% 3 +performing p@'fOmIN Jb% 32A,6A +performs p@'fOmz Ja% 22A,6A +perfume 'p3fjum M6% 2 +perfume p@'fjum H2% 26A +perfumed p@'fjumd Hc%,Hd% 26A +perfumer 'p3fjum@R K6% 3 +perfumers 'p3fjum@z Kj% 3 +perfumes 'p3fjumz Mj% 2 +perfumes p@'fjumz Ha% 26A +perfuming p@'fjumIN Hb% 36A +perfunctorily p@'fVNkt@rIlI Pu% 5 +perfunctory p@'fVNkt@rI OA% 4 +pergola 'p3g@l@ K6$ 3 +pergolas 'p3g@l@z Kj$ 3 +perhaps p@'h&ps Pu* 2 +peri 'pI@rI K6$ 2 +perigee 'perIdZi K6$ 3 +perigees 'perIdZiz Kj$ 3 +perihelion ,perI'hilI@n K6$ 5 +perihelions ,perI'hilI@nz Kj$ 5 +peril 'per@l H4%,M6% 2 +perilled 'per@ld Hc%,Hd% 2 +perilling 'per@lIN Hb% 3 +perilous 'per@l@s OA% 3 +perilously 'per@l@slI Pu% 4 +perils 'per@lz Ha%,Mj% 2 +perimeter p@'rImIt@R K6% 4 +perimeters p@'rImIt@z Kj% 4 +period 'pI@rI@d K6% 3 +periodic ,pI@rI'0dIk OA% 4 +periodical ,pI@rI'0dIkl K6%,OA% 5 +periodically ,pI@rI'0dIklI Pu% 5 +periodicals ,pI@rI'0dIklz Kj% 5 +periods 'pI@rI@dz Kj% 3 +peripatetic ,perIp@'tetIk OA% 5 +peripheral p@'rIf@r@l OA% 4 +peripheries p@'rIf@rIz Kj$ 4 +periphery p@'rIf@rI K8% 4 +periphrases p@'rIfr@siz Kj$ 4 +periphrasis p@'rIfr@sIs Ki$ 4 +periphrastic ,perI'fr&stIk OA$ 4 +peris 'pI@rIz Kj$ 2 +periscope 'perIsk@Up K6% 3 +periscopes 'perIsk@Ups Kj% 3 +perish 'perIS J1% 22A,2C,6A +perishable 'perIS@bl OA% 4 +perishables 'perIS@blz Kj% 4 +perished 'perISt Jc%,Jd% 22A,2C,6A +perisher 'perIS@R K6% 3 +perishers 'perIS@z Kj% 3 +perishes 'perISIz Ja% 32A,2C,6A +perishing 'perISIN Jb% 32A,2C,6A +peristyle 'perIstaIl K6$ 3 +peristyles 'perIstaIlz Kj$ 3 +peritonitis ,perIt@'naItIs L@% 5 +periwig 'perIwIg K6$ 3 +periwigs 'perIwIgz Kj$ 3 +periwinkle 'perIwINkl K6% 4 +periwinkles 'perIwINklz Kj% 4 +perjure 'p3dZ@R H2% 26A +perjured 'p3dZ@d Hc%,Hd% 26A +perjurer 'p3dZ@r@R K6% 3 +perjurers 'p3dZ@r@z Kj% 3 +perjures 'p3dZ@z Ha% 26A +perjuries 'p3dZ@rIz Mj% 3 +perjuring 'p3dZ@rIN Hb% 36A +perjury 'p3dZ@rI M8% 3 +perk p3k J0%,K6% 12C,15B +perked p3kt Jc%,Jd% 12C,15B +perkier 'p3kI@R Or% 3 +perkiest 'p3kIIst Os% 3 +perkily 'p3kIlI Pu% 3 +perkiness 'p3kIn@s L@% 3 +perking 'p3kIN Jb% 22C,15B +perks p3ks Ja%,Kj% 12C,15B +perky 'p3kI OD% 2 +perm p3m H0%,K6% 1 +permafrost 'p3m@fr0st L@$ 3 +permanence 'p3m@n@ns L@% 3 +permanencies 'p3m@n@nsIz Mj$ 4 +permanency 'p3m@n@nsI M8$ 4 +permanent 'p3m@n@nt OA% 3 +permanently 'p3m@n@ntlI Pu% 4 +permanganate p@'m&Ng@neIt M6$ 4 +permanganates p@'m&Ng@neIts Mj$ 4 +permeability ,p3mI@'bIlItI L@% 6 +permeable 'p3mI@bl OA% 4 +permeate 'p3mIeIt J2% 33A,6A +permeated 'p3mIeItId Jc%,Jd% 43A,6A +permeates 'p3mIeIts Ja% 33A,6A +permeating 'p3mIeItIN Jb% 43A,6A +permeation ,p3mI'eISn L@$ 4 +permed p3md Hc%,Hd% 1 +perming 'p3mIN Hb% 2 +permissible p@'mIs@bl OA% 4 +permissibly p@'mIs@blI Pu% 4 +permission p@'mISn L@% 3 +permissive p@'mIsIv OA% 3 +permissiveness p@'mIsIvn@s L@% 4 +permit 'p3mIt K6% 2 +permit p@'mIt J4% 23A,6A,6C,17,19C +permits 'p3mIts Kj% 2 +permits p@'mIts Ja% 23A,6A,6C,17,19C +permitted p@'mItId Jc%,Jd% 33A,6A,6C,17,19C +permitting p@'mItIN Jb% 33A,6A,6C,17,19C +perms p3mz Ha%,Kj% 1 +permutation ,p3mju'teISn M6% 4 +permutations ,p3mju'teISnz Mj% 4 +permute p@'mjut H2$ 26A +permuted p@'mjutId Hc$,Hd$ 36A +permutes p@'mjuts Ha$ 26A +permuting p@'mjutIN Hb$ 36A +pernicious p@'nIS@s OA% 3 +perniciously p@'nIS@slI Pu% 4 +perniciousness p@'nIS@sn@s L@% 4 +pernickety p@'nIk@tI OA% 4 +peroration ,per@'reISn K6$ 4 +perorations ,per@'reISnz Kj$ 4 +peroxide p@'r0ksaId M6% 3 +peroxides p@'r0ksaIdz Mj% 3 +perpendicular ,p3p@n'dIkjUl@R M6%,OA% 5 +perpendicularly ,p3p@n'dIkjUl@lI Pu% 6 +perpendiculars ,p3p@n'dIkjUl@z Mj% 5 +perpetrate 'p3pItreIt H2% 36A +perpetrated 'p3pItreItId Hc%,Hd% 46A +perpetrates 'p3pItreIts Ha% 36A +perpetrating 'p3pItreItIN Hb% 46A +perpetration ,p3pI'treISn K6% 4 +perpetrations ,p3pI'treISnz Kj$ 4 +perpetrator 'p3pItreIt@R K6% 4 +perpetrators 'p3pItreIt@z Kj% 4 +perpetual p@'petSU@l OA% 4 +perpetually p@'petSU@lI Pu% 5 +perpetuate p@'petSUeIt H2% 46A +perpetuated p@'petSUeItId Hc%,Hd% 56A +perpetuates p@'petSUeIts Ha% 46A +perpetuating p@'petSUeItIN Hb% 56A +perpetuation p@,petSU'eISn K6% 5 +perpetuations p@,petSU'eISnz Kj$ 5 +perpetuities ,p3pI'tjuItIz Mj$ 5 +perpetuity ,p3pI'tjuItI M8% 5 +perplex p@'pleks H1% 26A,14 +perplexed p@'plekst Hc%,Hd%,OA% 26A,14 +perplexedly p@'pleks@dlI Pu% 4 +perplexes p@'pleksIz Ha% 36A,14 +perplexing p@'pleksIN Hb% 36A,14 +perplexities p@'pleksItIz Mj% 4 +perplexity p@'pleksItI M8% 4 +perquisite 'p3kwIzIt K6$ 3 +perquisites 'p3kwIzIts Kj$ 3 +perry 'perI L@$ 2 +persecute 'p3sIkjut H2% 36A +persecuted 'p3sIkjutId Hc%,Hd% 46A +persecutes 'p3sIkjuts Ha% 36A +persecuting 'p3sIkjutIN Hb% 46A +persecution ,p3sI'kjuSn M6% 4 +persecutions ,p3sI'kjuSnz Mj% 4 +persecutor 'p3sIkjut@R K6% 4 +persecutors 'p3sIkjut@z Kj% 4 +perseverance ,p3sI'vI@r@ns L@% 4 +persevere ,p3sI'vI@R I2% 32A,3A +persevered ,p3sI'vI@d Ic%,Id% 32A,3A +perseveres ,p3sI'vI@z Ia% 32A,3A +persevering ,p3sI'vI@rIN Ib%,OA% 42A,3A +perseveringly ,p3sI'vI@rINlI Pu% 5 +persiflage 'p3sIflAZ L@$ 3 +persimmon p@'sIm@n K6$ 3 +persimmons p@'sIm@nz Kj$ 3 +persist p@'sIst I0% 22A,3A +persisted p@'sIstId Ic%,Id% 32A,3A +persistence p@'sIst@ns L@% 3 +persistent p@'sIst@nt OA% 3 +persistently p@'sIst@ntlI Pu% 4 +persisting p@'sIstIN Ib% 32A,3A +persists p@'sIsts Ia% 22A,3A +person 'p3sn K6% 2 +persona p3's@Un@ K6% 3 +persona grata p@,s@Un@ 'grAt@ Ki% 5 +persona non grata p@,s@Un@ ,n0n 'grAt@ Ki% 6 +personable 'p3s@n@bl OA% 4 +personage 'p3s@nIdZ K6% 3 +personages 'p3s@nIdZIz Kj% 4 +personal 'p3s@nl K6%,OA% 3 +personalities ,p3s@'n&lItIz Mj% 5 +personality ,p3s@'n&lItI M8% 5 +personalize 'p3s@n@laIz H2% 46A +personalized 'p3s@n@laIzd Hc%,Hd% 46A +personalizes 'p3s@n@laIzIz Ha% 56A +personalizing 'p3s@n@laIzIN Hb% 56A +personally 'p3s@n@lI Pu% 4 +personals 'p3s@nlz Kj$ 3 +personalty 'p3s@nltI L@$ 4 +personas p3's@Un@z Kj% 3 +personate 'p3s@neIt H2$ 36A +personated 'p3s@neItId Hc$,Hd$ 46A +personates 'p3s@neIts Ha$ 36A +personating 'p3s@neItIN Hb$ 46A +personation ,p3s@'neISn K6$ 4 +personations ,p3s@'neISnz Kj$ 4 +personification p@,s0nIfI'keISn M6% 6 +personifications p@,s0nIfI'keISnz Mj% 6 +personified p@'s0nIfaId Hc%,Hd% 46A +personifies p@'s0nIfaIz Ha% 46A +personify p@'s0nIfaI H3% 46A +personifying p@'s0nIfaIIN Hb% 56A +personnel ,p3s@'nel Kj% 3 +persons 'p3snz Kj% 2 +perspective p@'spektIv M6% 3 +perspectives p@'spektIvz Mj% 3 +perspex 'p3speks L@% 2 +perspicacious ,p3spI'keIS@s OA% 4 +perspicacity ,p3spI'k&sItI L@% 5 +perspicuity ,p3spI'kjuItI L@% 5 +perspicuous p@'spIkjU@s OA% 4 +perspicuously p@'spIkjU@slI Pu$ 5 +perspicuousness p@'spIkjU@sn@s L@% 5 +perspiration ,p3sp@'reISn L@% 4 +perspire p@'spaI@R I2% 22A +perspired p@'spaI@d Ic%,Id% 22A +perspires p@'spaI@z Ia% 22A +perspiring p@'spaI@rIN Ib% 32A +persuadable p@'sweId@bl OA% 4 +persuade p@'sweId H2% 211,14,17 +persuaded p@'sweIdId Hc%,Hd% 311,14,17 +persuades p@'sweIdz Ha% 211,14,17 +persuading p@'sweIdIN Hb% 311,14,17 +persuasion p@'sweIZn M6% 3 +persuasions p@'sweIZnz Mj% 3 +persuasive p@'sweIsIv OA% 3 +persuasively p@'sweIsIvlI Pu% 4 +persuasiveness p@'sweIsIvn@s L@% 4 +pert p3t OA% 1 +pertain p@'teIn I0% 23A +pertained p@'teInd Ic%,Id% 23A +pertaining p@'teInIN Ib% 33A +pertains p@'teInz Ia% 23A +pertinacious ,p3tI'neIS@s OA$ 4 +pertinaciously ,p3tI'neIS@slI Pu$ 5 +pertinacity ,p3tI'n&sItI L@$ 5 +pertinence 'p3tIn@ns L@$ 3 +pertinent 'p3tIn@nt OA% 3 +pertinently 'p3tIn@ntlI Pu% 4 +pertly 'p3tlI Pu% 2 +pertness 'p3tn@s L@% 2 +perturb p@'t3b H0% 26A +perturbation ,p3t@'beISn M6% 4 +perturbations ,p3t@'beISnz Mj% 4 +perturbed p@'t3bd Hc%,Hd% 26A +perturbing p@'t3bIN Hb% 36A +perturbs p@'t3bz Ha% 26A +peruke p@'ruk K6$ 2 +perukes p@'ruks Kj$ 2 +perusal p@'ruzl M6% 3 +perusals p@'ruzlz Mj$ 3 +peruse p@'ruz H2% 26A +perused p@'ruzd Hc%,Hd% 26A +peruses p@'ruzIz Ha% 36A +perusing p@'ruzIN Hb% 36A +pervade p@'veId H2% 26A +pervaded p@'veIdId Hc%,Hd% 36A +pervades p@'veIdz Ha% 26A +pervading p@'veIdIN Hb% 36A +pervasion p@'veIZn L@$ 3 +pervasive p@'veIsIv OA% 3 +pervasively p@'veIsIvlI Pu% 4 +pervasiveness p@'veIsIvn@s L@% 4 +perverse p@'v3s OA% 2 +perversely p@'v3slI Pu% 3 +perverseness p@'v3sn@s L@% 3 +perversion p@'v3Sn M6% 3 +perversions p@'v3Snz Mj% 3 +perversities p@'v3sItIz Mj% 4 +perversity p@'v3sItI M8% 4 +pervert 'p3v3t K6% 2 +pervert p@'v3t H0% 26A +perverted p@'v3tId Hc%,Hd% 36A +perverting p@'v3tIN Hb% 36A +perverts 'p3v3ts Kj% 2 +perverts p@'v3ts Ha% 26A +peseta p@'seIt@ K6% 3 +pesetas p@'seIt@z Kj% 3 +peskier 'peskI@R Or% 3 +peskiest 'peskIIst Os% 3 +pesky 'peskI OD% 2 +peso 'peIs@U K6% 2 +pesos 'peIs@Uz Kj% 2 +pessaries 'pes@rIz Kj% 3 +pessary 'pes@rI K8% 3 +pessimism 'pesImIz@m L@% 4 +pessimist 'pesImIst K6% 3 +pessimistic ,pesI'mIstIk OA% 4 +pessimistically ,pesI'mIstIklI Pu% 5 +pessimists 'pesImIsts Kj% 3 +pest pest K6% 1 +pester 'pest@R H0% 26A,14,17 +pestered 'pest@d Hc%,Hd% 26A,14,17 +pestering 'pest@rIN Hb% 36A,14,17 +pesters 'pest@z Ha% 26A,14,17 +pesticide 'pestIsaId M6% 3 +pesticides 'pestIsaIdz Mj% 3 +pestiferous pe'stIf@r@s OA$ 4 +pestilence 'pestIl@ns M6% 3 +pestilences 'pestIl@nsIz Mj$ 4 +pestilent 'pestIl@nt OA% 3 +pestilential ,pestI'lenSl OA% 4 +pestle 'pesl H2$,K6$ 2 +pestled 'pesld Hc$,Hd$ 2 +pestles 'peslz Ha$,Kj$ 2 +pestling 'peslIN Hb$ 2 +pests pests Kj% 1 +pet pet H4%,K6% 1 +petal 'petl K6% 2 +petaled 'petld OA$ 2 +petalled 'petld OA% 2 +petals 'petlz Kj% 2 +petard pI'tAd K6% 2 +petards pI'tAdz Kj$ 2 +peter 'pit@R I0% 22C +petered 'pit@d Ic%,Id% 22C +petering 'pit@rIN Ib% 32C +peters 'pit@z Ia% 22C +petit bourgeois ,petI 'bU@ZwA Ki% 4 +petite p@'tit OA% 2 +petition pI'tISn J0%,K6% 33A,6A,11,14,17 +petitioned pI'tISnd Jc%,Jd% 33A,6A,11,14,17 +petitioner pI'tISn@R K6% 4 +petitioners pI'tISn@z Kj% 4 +petitioning pI'tISnIN Jb% 43A,6A,11,14,17 +petitions pI'tISnz Ja%,Kj% 33A,6A,11,14,17 +petits bourgeois ,petI 'bU@ZwAz Kj$ 4 +petrel 'petr@l K6$ 2 +petrels 'petr@lz Kj$ 2 +petrifaction ,petrI'f&kSn M6% 4 +petrifactions ,petrI'f&kSnz Mj$ 4 +petrified 'petrIfaId Jc%,Jd% 32A,6A +petrifies 'petrIfaIz Ja% 32A,6A +petrify 'petrIfaI J3% 32A,6A +petrifying 'petrIfaIIN Jb% 42A,6A +petro- ,petr@U- U-% 2 +petro-chemical ,petr@U-'kemIkl K6% 5 +petro-chemicals ,petr@U-'kemIklz Kj% 5 +petrol 'petr@l L@% 2 +petroleum pI'tr@UlI@m L@% 4 +petrology pI'tr0l@dZI L@$ 4 +pets pets Ha%,Kj% 1 +petted 'petId Hc%,Hd% 2 +petticoat 'petIk@Ut K6% 3 +petticoats 'petIk@Uts Kj% 3 +pettier 'petI@R Or% 3 +pettiest 'petIIst Os% 3 +pettifogging 'petIf0gIN OA% 4 +pettily 'petIlI Pu% 3 +pettiness 'petIn@s M7% 3 +pettinesses 'petIn@sIz Kj% 4 +petting 'petIN Hb% 2 +pettish 'petIS OA% 2 +pettishly 'petISlI Pu% 3 +pettishness 'petISn@s L@% 3 +petty 'petI OD% 2 +petulance 'petjUl@ns L@% 3 +petulant 'petjUl@nt OA% 3 +petulantly 'petjUl@ntlI Pu% 4 +petunia pI'tjunI@ K6% 4 +petunias pI'tjunI@z Kj% 4 +pew pju K6% 1 +pew-opener 'pju-@Up@n@R K6$ 4 +pew-openers 'pju-@Up@n@z Kj$ 4 +pewit 'piwIt K6$ 2 +pewits 'piwIts Kj$ 2 +pews pjuz Kj% 1 +pewter 'pjut@R L@% 2 +peyote peI'@UtI K6$ 3 +peyotes peI'@UtIz Kj$ 3 +pfennig 'fenIg K6$ 2 +pfennigs 'fenIgz Kj$ 2 +phaeton 'feItn K6$ 2 +phaetons 'feItnz Kj$ 2 +phagocyte 'f&g@saIt K6$ 3 +phagocytes 'f&g@saIts Kj$ 3 +phalanges f@'l&ndZiz Kj$ 3 +phalanx 'f&l&Nks K7% 2 +phalanxes 'f&l&NksIz Kj% 3 +phallic 'f&lIk OA% 2 +phallus 'f&l@s K7% 2 +phalluses 'f&l@sIz Kj% 3 +phantasies 'f&nt@sIz Kj$ 3 +phantasm 'f&nt&z@m K6% 3 +phantasmagoria ,f&nt&zm@'g0rI@ K6% 6 +phantasmagorias ,f&nt&zm@'g0rI@z Kj$ 6 +phantasmal f&n't&zm@l OA% 3 +phantasms 'f&nt&z@mz Kj% 3 +phantasy 'f&nt@sI K8% 3 +phantom 'f&nt@m K6% 2 +phantoms 'f&nt@mz Kj% 2 +pharisaic ,f&rI'seIIk OA$ 4 +pharisaical ,f&rI'seIIk@l OA$ 5 +pharmaceutical ,fAm@'sjutIkl OA% 5 +pharmacies 'fAm@sIz Mj% 3 +pharmacist 'fAm@sIst K6% 3 +pharmacists 'fAm@sIsts Kj% 3 +pharmacological ,fAm@k@'l0dZIkl OA% 6 +pharmacologically ,fAm@k@'l0dZIklI Pu% 6 +pharmacologist ,fAm@'k0l@dZIst K6% 5 +pharmacologists ,fAm@'k0l@dZIsts Kj% 5 +pharmacology ,fAm@'k0l@dZI L@% 5 +pharmacopoeia ,fAm@k@'pi@ K6% 5 +pharmacopoeias ,fAm@k@'pi@z Kj$ 5 +pharmacy 'fAm@sI M8% 3 +pharos 'fe@r0s Ki$ 2 +pharyngitis ,f&rIn'dZaItIs L@% 4 +pharynx 'f&rINks K7% 2 +pharynxes 'f&rINksIz Kj$ 3 +phase feIz H2%,K6% 16A,15B +phased feIzd Hc%,Hd% 16A,15B +phases 'feIzIz Ha%,Kj% 26A,15B +phasing 'feIzIN Hb% 26A,15B +pheasant 'feznt M6% 2 +pheasants 'feznts Mj% 2 +phenobarbitone ,fin@U'bAbIt@Un L@$ 5 +phenol 'fin0l L@$ 2 +phenomena fI'n0mIn@ Kj% 4 +phenomenal fI'n0mInl OA% 4 +phenomenally fI'n0mIn@lI Pu% 5 +phenomenon fI'n0mIn@n Ki% 4 +phew fju W-$ 1 +phial 'faI@l K6% 2 +phials 'faI@lz Kj% 2 +philander fI'l&nd@R I0% 32A +philandered fI'l&nd@d Ic%,Id% 32A +philanderer fI'l&nd@r@R K6% 4 +philanderers fI'l&nd@r@z Kj% 4 +philandering fI'l&nd@rIN Ib% 42A +philanders fI'l&nd@z Ia% 32A +philanthropic ,fIl@n'Tr0pIk OA% 4 +philanthropically ,fIl@n'Tr0pIklI Pu% 5 +philanthropist fI'l&nTr@pIst K6% 4 +philanthropists fI'l&nTr@pIsts Kj% 4 +philanthropy fI'l&nTr@pI L@% 4 +philatelic ,fIl@'telIk OA% 4 +philatelist fi'l&t@lIst K6% 4 +philatelists fi'l&t@lIsts Kj% 4 +philately fI'l&t@lI L@% 4 +philharmonic ,fIl@'m0nIk OA% 4 +philhellene fIl'helin K6$,OA$ 3 +philhellenes fIl'helinz Kj$ 3 +philhellenic ,fIlhe'linIk OA$ 4 +philological ,fIl@'l0dZIkl OA% 5 +philologist fI'l0l@dZIst K6% 4 +philologists fI'l0l@dZIsts Kj% 4 +philology fI'l0l@dZI L@% 4 +philosopher fI'l0s@f@R K6% 4 +philosophers fI'l0s@f@z Kj% 4 +philosophic ,fIl@'s0fIk OA% 4 +philosophical ,fIl@'s0fIkl OA% 5 +philosophically ,fIl@'s0fIklI Pu% 5 +philosophies fI'l0s@fIz Mj% 4 +philosophize fI'l0s@faIz I2% 42A +philosophized fI'l0s@faIzd Ic%,Id% 42A +philosophizes fI'l0s@faIzIz Ia% 52A +philosophizing fI'l0s@faIzIN Ib% 52A +philosophy fI'l0s@fI M8% 4 +philtre 'fIlt@R K6$ 2 +philtres 'fIlt@z Kj$ 2 +phlebitis flI'baItIs L@% 3 +phlegm flem L@% 1 +phlegmatic fleg'm&tIk OA% 3 +phlegmatically fleg'm&tIklI Pu% 4 +phlox fl0ks L@$ 1 +phobia 'f@UbI@ K6% 3 +phobias 'f@UbI@z Kj% 3 +phoenix 'finIks K7% 2 +phoenixes 'finIksIz Kj$ 3 +phone f@Un J2%,K6% 12A,4A,6A,11,12A,13A +phone-in 'f@Un-In K6% 2 +phone-ins 'f@Un-Inz Kj% 2 +phonebooth 'f@UnbuD K6% 2 +phonebooths 'f@UnbuDz Kj% 2 +phonecall 'f@UnkOl K6% 2 +phonecalls 'f@UnkOlz Kj% 2 +phoned f@Und Jc%,Jd% 12A,4A,6A,11,12A,13A +phoneme 'f@Unim K6% 2 +phonemes 'f@Unimz Kj% 2 +phonemic f@'nimIk OA% 3 +phonemics f@'nimIks Lk% 3 +phones f@Unz Ja%,Kj% 12A,4A,6A,11,12A,13A +phonetic f@'netIk OA% 3 +phonetically f@'netIklI Pu% 4 +phonetician ,f@UnI'tISn K6% 4 +phoneticians ,f@UnI'tISnz Kj% 4 +phonetics f@'netIks Lk% 3 +phoney 'f@UnI K6%,OA% 2 +phoneys 'f@UnIz Kj$ 2 +phonic 'f0nIk OA$ 2 +phonics 'f0nIks Lk$ 2 +phonies 'f@UnIz Kj$ 2 +phoning 'f@UnIN Jb% 22A,4A,6A,11,12A,13A +phonograph 'f@Un@grAf K6% 3 +phonographs 'f@Un@grAfs Kj% 3 +phonological ,f@Un@'l0dZIkl OA% 5 +phonology f@'n0l@dZI L@% 4 +phony 'f@UnI K8$,OA$ 2 +phooey 'fuI W-$ 2 +phosgene 'f0zdZin L@$ 2 +phosphate 'f0sfeIt M6% 2 +phosphates 'f0sfeIts Mj% 2 +phosphorescence ,f0sf@'resns L@% 4 +phosphorescent ,f0sf@'resnt OA% 4 +phosphoric f0s'f0rIk OA% 3 +phosphorous 'f0sf@r@s OA$ 3 +phosphorus 'f0sf@r@s L@% 3 +photo 'f@Ut@U K6% 2 +photo- 'f@Ut@U- U-% 2 +photocopied 'f@Ut@Uk0pId Hc%,Hd% 46A +photocopier 'f@Ut@Uk0pI@R K6% 5 +photocopiers 'f@Ut@Uk0pI@z Kj% 5 +photocopies 'f@Ut@Uk0pIz Ha%,Kj% 46A +photocopy 'f@Ut@Uk0pI H3%,K8% 46A +photocopying 'f@Ut@Uk0pIIN Hb% 56A +photoelectric ,f@Ut@UI'lektrIk OA% 5 +photoflash 'f@Ut@Ufl&S K7% 3 +photoflashes 'f@Ut@Ufl&SIz Kj% 4 +photogenic ,f@Ut@'dZenIk OA% 4 +photograph 'f@Ut@grAf H0%,K6% 36A +photographed 'f@Ut@grAft Hc%,Hd% 36A +photographer f@'t0gr@f@R K6% 4 +photographers f@'t0gr@f@z Kj% 4 +photographic ,f@Ut@'gr&fIk OA% 4 +photographically ,f@Ut@'gr&fIklI Pu% 5 +photographing 'f@Ut@grAfIN Hb% 46A +photographs 'f@Ut@grAfs Ha%,Kj% 36A +photography f@'t0gr@fI L@% 4 +photogravure ,f@Ut@gr@'vjU@R M6% 4 +photogravures ,f@Ut@gr@'vjU@z Mj% 4 +photolithography ,f@Ut@UlI'T0gr@fI L@% 6 +photometer f@U't0mIt@R K6$ 4 +photometers f@U't0mIt@z Kj$ 4 +photon 'f@Ut0n K6% 2 +photons 'f@Ut0nz Kj% 2 +photos 'f@Ut@Uz Kj% 2 +photosensitize ,f@Ut@U'sensItaIz H2% 5 +photosensitized ,f@Ut@U'sensItaIzd Hc%,Hd% 5 +photosensitizes ,f@Ut@U'sensItaIzIz Ha% 6 +photosensitizing ,f@Ut@U'sensItaIzIN Hb% 6 +photostat 'f@Ut@st&t H4%,K6% 3 +photostats 'f@Ut@st&ts Ha%,Kj% 3 +photostatted 'f@Ut@st&tId Hc%,Hd% 4 +photostatting 'f@Ut@st&tIN Hb% 4 +photosynthesis ,f@Ut@U'sInT@sIs L@% 5 +phrasal 'freIzl OA% 2 +phrase freIz H2%,K6% 16A +phrase-book 'freIz-bUk K6% 2 +phrase-books 'freIz-bUks Kj% 2 +phrased freIzd Hc%,Hd% 16A +phraseology ,freIzI'0l@dZI L@% 5 +phrases 'freIzIz Ha%,Kj% 26A +phrasing 'freIzIN Hb% 26A +phrenetic fr@'netIk OA$ 3 +phrenologist frI'n0l@dZIst K6% 4 +phrenologists frI'n0l@dZIsts Kj% 4 +phrenology fr@'n0l@dZI L@% 4 +phthisis 'TaIsIs L@$ 2 +phut fVt Pu$ 1 +phylum 'faIl@m K6$ 2 +phylums 'faIl@mz Kj$ 2 +physic 'fIzIk K6% 2 +physical 'fIzIkl OA% 3 +physically 'fIzIklI Pu% 3 +physician fI'zISn K6% 3 +physicians fI'zISnz Kj% 3 +physicist 'fIzIsIst K6% 3 +physicists 'fIzIsIsts Kj% 3 +physics 'fIzIks Lk% 2 +physiognomies ,fIzI'0n@mIz Mj% 5 +physiognomy ,fIzI'0n@mI M8% 5 +physiological ,fIzI@'l0dZIkl OA% 6 +physiologist ,fIzI'0l@dZIst K6% 5 +physiologists ,fIzI'0l@dZIsts Kj% 5 +physiology ,fIzI'0l@dZI L@% 5 +physiotherapist ,fIzI@U'Ter@pIst K6% 6 +physiotherapists ,fIzI@U'Ter@pIsts Kj% 6 +physiotherapy ,fIzI@U'Ter@pI L@% 6 +physique fI'zik M6% 2 +physiques fI'ziks Mj% 2 +pi paI K6$ 1 +pianissimo pj&'nIsIm@U OA%,Pu% 5 +pianist 'pI@nIst K6% 3 +pianists 'pI@nIsts Kj% 3 +piano 'pjAn@U OA$,Pu$ 3 +piano pI'&n@U K6% 3 +pianoforte pI,&n@U'fOtI K6% 5 +pianofortes pI,&n@U'fOtIz Kj% 5 +pianola pI@'n@Ul@ K6$ 4 +pianolas pI@'n@Ul@z Kj$ 4 +pianos pI'&n@Uz Kj% 3 +piastre pI'&st@R K6$ 3 +piastres pI'&st@z Kj$ 3 +piazza pI'&ts@ K6% 3 +piazzas pI'&ts@z Kj% 3 +pibroch 'pibr0k K6$ 2 +pibrochs 'pibr0ks Kj$ 2 +pica 'paIk@ K9$ 2 +picador 'pIk@dOR K6% 3 +picadors 'pIk@dOz Kj% 3 +picaresque ,pIk@'resk OA% 3 +piccalilli ,pIk@'lIlI L@% 4 +piccaninnies ,pIk@'nInIz Kj$ 4 +piccaninny ,pIk@'nInI K8$ 4 +piccolo 'pIk@l@U K6% 3 +piccolos 'pIk@l@Uz Kj% 3 +pick pIk J0%,K6% 13A,6A,15B +pick-me-up 'pIk-mI-Vp K6$ 3 +pick-me-ups 'pIk-mI-Vps Kj$ 3 +pick-up 'pIk-Vp K6% 2 +pick-ups 'pIk-Vps Kj% 2 +pickaback 'pIk@b&k Pu% 3 +pickaxe 'pIk&ks K6% 2 +pickaxes 'pIk&ksIz Kj% 3 +picked pIkt Jc%,Jd% 13A,6A,15B +picker 'pIk@R K6$ 2 +pickerel 'pIk@r@l K9$ 3 +pickers 'pIk@z Kj$ 2 +picket 'pIkIt J0%,K6% 22A,6A +picketed 'pIkItId Jc%,Jd% 32A,6A +picketing 'pIkItIN Jb% 32A,6A +pickets 'pIkIts Ja%,Kj% 22A,6A +picking 'pIkIN Jb%,M6% 23A,6A,15B +pickings 'pIkINz Mj% 2 +pickle 'pIkl H2%,M6% 26A +pickled 'pIkld Hc%,Hd% 26A +pickles 'pIklz Ha%,Mj% 26A +pickling 'pIklIN Hb% 26A +pickpocket 'pIkp0kIt K6% 3 +pickpockets 'pIkp0kIts Kj% 3 +picks pIks Ja%,Kj% 13A,6A,15B +picnic 'pIknIk I5%,K6% 2 +picnicked 'pIknIkt Ic%,Id% 2 +picnicker 'pIknIk@R K6% 3 +picnickers 'pIknIk@z Kj% 3 +picnicking 'pIknIkIN Ib% 3 +picnics 'pIknIks Ia%,Kj% 2 +picric 'pIkrIk OA$ 2 +pictorial pIk'tOrI@l K6%,OA% 4 +pictorials pIk'tOrI@lz Kj% 4 +picture 'pIktS@R H2%,K6% 26A,14 +picture-book 'pIktS@-bUk K6% 3 +picture-books 'pIktS@-bUks Kj% 3 +picture-card 'pIktS@-kAd K6% 3 +picture-cards 'pIktS@-kAdz Kj% 3 +picture-galleries 'pIktS@-g&l@rIz Kj% 5 +picture-gallery 'pIktS@-g&l@rI K8% 5 +pictured 'pIktS@d Hc%,Hd% 26A,14 +pictures 'pIktS@z Ha%,Kj% 26A,14 +picturesque ,pIktS@'resk OA% 3 +picturesquely ,pIktS@'resklI Pu% 4 +picturesqueness ,pIktS@'reskn@s L@% 4 +picturing 'pIktS@rIN Hb% 36A,14 +piddle 'pIdl I2%,K6% 2 +piddled 'pIdld Ic%,Id% 2 +piddles 'pIdlz Ia%,Kj% 2 +piddling 'pIdlIN Ib%,OA% 2 +pidgin 'pIdZIn K6% 2 +pidgins 'pIdZInz Kj$ 2 +pie paI M6% 1 +pie-crust 'paI-krVst L@% 2 +piebald 'paIbOld OA% 2 +piece pis H2%,K6% 16A,15A,15B +piece-goods 'pis-gUdz Kj$ 2 +pieced pist Hc%,Hd% 16A,15A,15B +piecemeal 'pismil OA%,Pu% 2 +pieces 'pisIz Ha%,Kj% 26A,15A,15B +piecework 'pisw3k L@% 2 +piecing 'pisIN Hb% 26A,15A,15B +pied paId OA% 1 +pied-`a-terre ,pjeId-A-'te@R K6% 3 +pied-`a-terres ,pjeId-A-'te@z Kj$ 3 +pier pI@R K6% 1 +pier-glass 'pI@-glAs K7$ 2 +pier-glasses 'pI@-glAsIz Kj$ 3 +pierce pI@s J2% 12C,6A +pierced pI@st Jc%,Jd% 12C,6A +pierces 'pI@sIz Ja% 22C,6A +piercing 'pI@sIN Jb%,OA% 22C,6A +piercingly 'pI@sINlI Pu% 3 +pierrot 'pI@r@U K6% 2 +pierrots 'pI@r@Uz Kj% 2 +piers pI@z Kj% 1 +pies paIz Mj% 1 +piet`a ,pie'tA K6$ 3 +piet`as ,pie'tAz Kj$ 3 +pieties 'paI@tIz Mj% 3 +piety 'paI@tI M8% 3 +piffle 'pIfl I2$,L@% 2 +piffled 'pIfld Ic$,Id$ 2 +piffles 'pIflz Ia$ 2 +piffling 'pIflIN Ib$,OA% 2 +pig pIg I4$,M6% 1 +pig-headed pIg-'hedId OA% 3 +pig-headedly pIg-'hedIdlI Pu% 4 +pig-headedness pIg-'hedIdn@s L@% 4 +pig-iron 'pIg-aI@n L@% 3 +pig-sticking 'pIg-stIkIN L@% 3 +pigboat 'pIgb@Ut K6$ 2 +pigboats 'pIgb@Uts Kj$ 2 +pigeon 'pIdZ@n K6% 2 +pigeon-breasted ,pIdZIn-'brestId OA% 4 +pigeon-toed 'pIdZIn-t@Ud OA% 3 +pigeonhole 'pIdZ@nh@Ul H2%,K6% 3 +pigeonholed 'pIdZ@nh@Uld Hc%,Hd% 3 +pigeonholes 'pIdZ@nh@Ulz Ha%,Kj% 3 +pigeonholing 'pIdZ@nh@UlIN Hb% 4 +pigeons 'pIdZ@nz Kj% 2 +pigged pIgd Ic$,Id$ 1 +piggeries 'pIg@rIz Kj% 3 +piggery 'pIg@rI K8% 3 +piggier 'pIgI@R Or$ 3 +piggies 'pIgIz Kj% 2 +piggiest 'pIgIIst Os$ 3 +pigging 'pIgIN Ib$ 2 +piggish 'pIgIS OA% 2 +piggishly 'pIgISlI Pu% 3 +piggishness 'pIgISn@s L@% 3 +piggy 'pIgI K8%,OD% 2 +piggyback 'pIgIb&k K6% 3 +piggybacks 'pIgIb&ks Kj% 3 +piglet 'pIglIt K6% 2 +piglets 'pIglIts Kj% 2 +pigment 'pIgm@nt M6% 2 +pigmentation ,pIgmen'teISn K6% 4 +pigmentations ,pIgmen'teISnz Kj% 4 +pigments 'pIgm@nts Mj% 2 +pigmies 'pIgmIz Kj% 2 +pigmy 'pIgmI K8% 2 +pigs pIgz Ia%,Mj% 1 +pigskin 'pIgskIn L@% 2 +pigsties 'pIgstaIz Kj% 2 +pigsty 'pIgstaI K8% 2 +pigswill 'pIgswIl L@% 2 +pigtail 'pIgteIl K6% 2 +pigtails 'pIgteIlz Kj% 2 +pigwash 'pIgw0S L@$ 2 +pike paIk K9% 1 +pikes paIks Kj% 1 +pikestaff 'paIkstAf K6% 2 +pikestaffs 'paIkstAfs Kj% 2 +pilaf pI'l&f L@% 2 +pilaff pI'l&f L@% 2 +pilaster pI'l&st@R K6$ 3 +pilasters pI'l&st@z Kj$ 3 +pilau pI'laU L@% 2 +pilchard 'pIltS@d M6% 2 +pilchards 'pIltS@dz Mj% 2 +pile paIl J2%,M6% 12C,6A,15A,15B +pile-driver 'paIl-draIv@R K6% 3 +pile-drivers 'paIl-draIv@z Kj% 3 +pile-dwelling 'paIl-dwelIN K6$ 3 +pile-dwellings 'paIl-dwelINz Kj$ 3 +pile-up 'paIl-Vp K6% 2 +pile-ups 'paIl-Vps Kj% 2 +piled paIld Jc%,Jd% 12C,6A,15A,15B +piles paIlz Ja%,Lk%,Mj% 12C,6A,15A,15B +pilfer 'pIlf@R J0% 22A,6A +pilferage 'pIlf@rIdZ L@$ 3 +pilfered 'pIlf@d Jc%,Jd% 22A,6A +pilferer 'pIlf@r@R K6% 3 +pilferers 'pIlf@r@z Kj% 3 +pilfering 'pIlf@rIN Jb% 32A,6A +pilfers 'pIlf@z Ja% 22A,6A +pilgrim 'pIlgrIm K6% 2 +pilgrimage 'pIlgrImIdZ K6% 3 +pilgrimages 'pIlgrImIdZIz Kj% 4 +pilgrims 'pIlgrImz Kj% 2 +piling 'paIlIN Jb% 22C,6A,15A,15B +pill pIl K6% 1 +pillage 'pIlIdZ H2%,K6% 2 +pillaged 'pIlIdZd Hc%,Hd% 2 +pillager 'pIlIdZ@R K6$ 3 +pillagers 'pIlIdZ@z Kj$ 3 +pillages 'pIlIdZIz Ha%,Kj% 3 +pillaging 'pIlIdZIN Hb% 3 +pillar 'pIl@R K6% 2 +pillar-box 'pIl@-b0ks K7% 3 +pillar-boxes 'pIl@-b0ksIz Kj% 4 +pillared 'pIl@d OA% 2 +pillars 'pIl@z Kj% 2 +pillbox 'pIlb0ks K7% 2 +pillboxes 'pIlb0ksIz Kj% 3 +pillion 'pIlI@n K6% 3 +pillions 'pIlI@nz Kj% 3 +pillories 'pIl@rIz Kj$ 3 +pillory 'pIl@rI K8$ 3 +pillow 'pIl@U H0%,K6% 26A +pillow-fight 'pIl@U-faIt K6% 3 +pillow-fights 'pIl@U-faIts Kj% 3 +pillowcase 'pIl@UkeIs K6% 3 +pillowcases 'pIl@UkeIsIz Kj% 4 +pillowed 'pIl@Ud Hc%,Hd% 26A +pillowing 'pIl@UIN Hb$ 36A +pillows 'pIl@Uz Ha$,Kj% 26A +pillowslip 'pIl@UslIp K6% 3 +pillowslips 'pIl@UslIps Kj% 3 +pills pIlz Kj% 1 +pilot 'paIl@t H0%,K6% 26A,15A +pilot-boat 'paIl@t-b@Ut K6% 3 +pilot-boats 'paIl@t-b@Uts Kj% 3 +pilot-burner 'paIl@t-b3n@R K6$ 4 +pilot-burners 'paIl@t-b3n@z Kj$ 4 +pilot-cloth 'paIl@t-kl0T L@$ 3 +pilot-engine 'paIl@t-endZIn K6$ 4 +pilot-engines 'paIl@t-endZInz Kj$ 4 +pilot-fish 'paIl@t-fIS K9% 3 +pilot-fishes 'paIl@t-fISIz Kj% 4 +pilot-light 'paIl@t-laIt K6% 3 +pilot-lights 'paIl@t-laIts Kj% 3 +piloted 'paIl@tId Hc%,Hd% 36A,15A +piloting 'paIl@tIN Hb% 36A,15A +pilots 'paIl@ts Ha%,Kj% 26A,15A +pimento pI'ment@U M6% 3 +pimentos pI'ment@Uz Mj% 3 +pimp pImp I0$,K6% 12A,3A +pimped pImpt Ic$,Id$ 12A,3A +pimpernel 'pImp@nel K6$ 3 +pimpernels 'pImp@nelz Kj$ 3 +pimping 'pImpIN Ib% 22A,3A +pimple 'pImpl K6% 2 +pimpled 'pImpld OA% 2 +pimples 'pImplz Kj% 2 +pimplier 'pImplI@R Or% 3 +pimpliest 'pImplIIst Os% 3 +pimply 'pImplI OD% 2 +pimps pImps Ia$,Kj% 12A,3A +pin pIn H4%,K6% 115A,15B +pin-money 'pIn-mVnI L@% 3 +pin-table 'pIn-teIbl K6% 3 +pin-tables 'pIn-teIblz Kj% 3 +pin-up 'pIn-Vp K6% 2 +pin-ups 'pIn-Vps Kj% 2 +pinafore 'pIn@fOR K6% 3 +pinafores 'pIn@fOz Kj% 3 +pinball 'pInbOl L@% 2 +pince-nez 'p&ns-neI K9$ 2 +pincer 'pIns@R K6% 2 +pincers 'pIns@z Kj% 2 +pinch pIntS J1%,K7% 12A,6A,15A,15B +pinchbeck 'pIntSbek K6$,OA$ 2 +pinchbecks 'pIntSbeks Kj$ 2 +pinched pIntSt Jc%,Jd% 12A,6A,15A,15B +pinches 'pIntSIz Ja%,Kj% 22A,6A,15A,15B +pinching 'pIntSIN Jb% 22A,6A,15A,15B +pincushion 'pInkUSn K6% 3 +pincushions 'pInkUSnz Kj% 3 +pine paIn I2%,M6% 12A,2C,3A,4C +pineal 'paInI@l OA$ 3 +pineapple 'paIn&pl M6% 3 +pineapples 'paIn&plz Mj% 3 +pined paInd Ic%,Id% 12A,2C,3A,4C +pines paInz Ia%,Mj% 12A,2C,3A,4C +ping pIN I0%,K6% 1 +pinged pINd Ic%,Id% 1 +pinging 'pININ Ib% 2 +pingpong 'pINp0N L@% 2 +pings pINz Ia%,Kj% 1 +pinhead 'pInhed K6% 2 +pinheads 'pInhedz Kj% 2 +pining 'paInIN Ib% 22A,2C,3A,4C +pinion 'pInI@n H0$,K6% 26A,15A,15B +pinioned 'pInI@nd Hc$,Hd% 36A,15A,15B +pinioning 'pInI@nIN Hb$ 46A,15A,15B +pinions 'pInI@nz Ha$,Kj$ 26A,15A,15B +pink pINk J0$,M6%,OC% 16A,15B +pinked pINkt Jc$,Jd$ 16A,15B +pinker 'pINk@R Or% 2 +pinkest 'pINkIst Os% 2 +pinking 'pINkIN Jb$ 26A,15B +pinkish 'pINkIS OA% 2 +pinks pINks Ja$,Mj% 16A,15B +pinnace 'pInIs K6$ 2 +pinnaces 'pInIsIz Kj$ 3 +pinnacle 'pIn@kl H2%,K6% 3 +pinnacled 'pIn@kld Hc%,Hd% 3 +pinnacles 'pIn@klz Ha%,Kj% 3 +pinnacling 'pIn@klIN Hb$ 3 +pinnate 'pIneIt OA$ 2 +pinned pInd Hc%,Hd% 115A,15B +pinnies 'pInIz Kj% 2 +pinning 'pInIN Hb% 215A,15B +pinny 'pInI K8% 2 +pinpoint 'pInpoInt H0%,K6% 2 +pinpointed 'pInpoIntId Hc%,Hd% 3 +pinpointing 'pInpoIntIN Hb% 3 +pinpoints 'pInpoInts Ha%,Kj% 2 +pinprick 'pInprIk K6% 2 +pinpricks 'pInprIks Kj% 2 +pins pInz Ha%,Kj% 115A,15B +pinstripe 'pInstraIp OA% 2 +pint paInt K6% 1 +pints paInts Kj% 1 +pioneer ,paI@'nI@R J0%,K6% 32A,6A +pioneered ,paI@'nI@d Jc%,Jd% 32A,6A +pioneering ,paI@'nI@rIN Jb% 42A,6A +pioneers ,paI@'nI@z Ja%,Kj% 32A,6A +pious 'paI@s OA% 2 +piously 'paI@slI Pu% 3 +pip pIp H4%,K6% 16A +pipal 'pip@l K6$ 2 +pipals 'pip@lz Kj$ 2 +pipe paIp J2%,K6% 12A,2C,6A,15A +pipe-organ 'paIp-Og@n K6% 3 +pipe-organs 'paIp-Og@nz Kj% 3 +pipe-rack 'paIp-r&k K6% 2 +pipe-racks 'paIp-r&ks Kj% 2 +pipeclay 'paIpkleI L@% 2 +piped paIpt Jc%,Jd% 12A,2C,6A,15A +pipedream 'paIpdrim K6% 2 +pipedreams 'paIpdrimz Kj% 2 +pipeful 'paIpfUl K6% 2 +pipefuls 'paIpfUlz Kj% 2 +pipeline 'paIplaIn K6% 2 +pipelines 'paIplaInz Kj% 2 +piper 'paIp@R K6% 2 +pipers 'paIp@z Kj% 2 +pipes paIps Ja%,Kj% 12A,2C,6A,15A +pipette pI'pet K6% 2 +pipettes pI'pets Kj% 2 +pipework 'paIpw3k L@% 2 +piping 'paIpIN Jb%,L@%,OA%,Pu% 22A,2C,6A,15A +pipped pIpt Hc%,Hd% 16A +pippin 'pIpIn K6% 2 +pipping 'pIpIN Hb% 26A +pippins 'pIpInz Kj% 2 +pips pIps Ha%,Kj% 16A +pipsqueak 'pIpskwik K6% 2 +pipsqueaks 'pIpskwiks Kj% 2 +piquancy 'pik@nsI L@% 3 +piquant 'pik@nt OA% 2 +piquantly 'pik@ntlI Pu% 3 +pique pik H2%,M6% 16A +piqued pikt Hc%,Hd% 16A +piques piks Ha%,Mj% 16A +piquet pI'ket L@$ 2 +piquing 'pikIN Hb$ 26A +piracies 'paI@r@sIz Mj$ 3 +piracy 'paI@r@sI M8% 3 +piranha pI'rAnj@ K6% 3 +piranhas pI'rAnj@z Kj% 3 +pirate 'paIr@t H2%,K6% 26A +pirated 'paIr@tId Hc%,Hd% 36A +pirates 'paIr@ts Ha%,Kj% 26A +piratical ,paI@'r&tIkl OA% 4 +piratically ,paI@'r&tIklI Pu% 4 +pirating 'paIr@tIN Hb% 36A +pirouette ,pIrU'et I2%,K6% 3 +pirouetted ,pIrU'etId Ic%,Id% 4 +pirouettes ,pIrU'ets Ia%,Kj% 3 +pirouetting ,pIrU'etIN Ib% 4 +pis paIz Kj$ 1 +pis aller ,piz '&leI Ki$ 3 +piscatorial ,pIsk@'tOrI@l OA$ 5 +piss pIs J1%,K7% 1 +pissed pIst Jc%,Jd%,OA% 1 +pisses 'pIsIz Ja%,Kj% 2 +pissing 'pIsIN Jb% 2 +pistachio pI'stAtSI@U K6% 4 +pistachios pI'stAtSI@Uz Kj% 4 +pistil 'pIstl K6$ 2 +pistils 'pIstlz Kj$ 2 +pistol 'pIstl K6% 2 +pistols 'pIstlz Kj% 2 +piston 'pIst@n K6% 2 +pistons 'pIst@nz Kj% 2 +pit pIt H4%,K6% 16A,14 +pit-a-pat ,pIt-@-'p&t Pu% 3 +pit-prop 'pIt-pr0p K6% 2 +pit-props 'pIt-pr0ps Kj% 2 +pitch pItS J1%,M7% 12A,2C,6A,15A,15B,22 +pitch-black 'pItS-bl&k OA% 2 +pitch-dark 'pItS-dAk OA% 2 +pitchblende 'pItSblend L@$ 2 +pitched pItSt Jc%,Jd% 12A,2C,6A,15A,15B,22 +pitcher 'pItS@R K6% 2 +pitchers 'pItS@z Kj% 2 +pitches 'pItSIz Ja%,Kj% 22A,2C,6A,15A,15B,22 +pitchfork 'pItSfOk H0%,K6% 2 +pitchforked 'pItSfOkt Hc%,Hd% 2 +pitchforking 'pItSfOkIN Hb% 3 +pitchforks 'pItSfOks Ha%,Kj% 2 +pitching 'pItSIN Jb% 22A,2C,6A,15A,15B,22 +piteous 'pItI@s OA% 3 +piteously 'pItI@slI Pu% 4 +pitfall 'pItfOl K6% 2 +pitfalls 'pItfOlz Kj% 2 +pith pIT L@% 1 +pithead 'pIthed K6% 2 +pitheads 'pIthedz Kj$ 2 +pithier 'pITI@R Or$ 3 +pithiest 'pITIIst Os$ 3 +pithily 'pITIlI Pu% 3 +pithy 'pITI OD% 2 +pitiable 'pItI@bl OA% 4 +pitiably 'pItI@blI Pu% 4 +pitied 'pItId Hc%,Hd% 26A +pities 'pItIz Ha%,Mj% 26A +pitiful 'pItIf@l OA% 3 +pitifully 'pItIf@lI Pu% 4 +pitiless 'pItIlIs OA% 3 +pitilessly 'pItIlIslI Pu% 4 +pitman 'pItm&n Ki% 2 +pitmen 'pItmen Kj% 2 +piton 'pit0n K6$ 2 +pitons 'pit0nz Kj$ 2 +pits pIts Ha%,Kj% 16A,14 +pitsaw 'pItsO K6$ 2 +pitsaws 'pItsOz Kj$ 2 +pittance 'pItns K6% 2 +pittances 'pItnsIz Kj$ 3 +pitted 'pItId Hc%,Hd% 26A,14 +pitter-patter 'pIt@-p&t@R L@% 4 +pitting 'pItIN Hb% 26A,14 +pituitaries pI'tjuIt@rIz Kj$ 5 +pituitary pI'tjuIt@rI K8%,OA% 5 +pity 'pItI H3%,M8% 26A +pitying 'pItIIN Hb%,OA% 36A +pityingly 'pItIINlI Pu% 4 +pivot 'pIv@t J0%,K6% 23A,6A +pivotal 'pIv@t@l OA% 3 +pivoted 'pIv@tId Jc%,Jd% 33A,6A +pivoting 'pIv@tIN Jb% 33A,6A +pivots 'pIv@ts Ja%,Kj% 23A,6A +pixie 'pIksI K6% 2 +pixies 'pIksIz Kj% 2 +pixilated 'pIksIleItId OA% 4 +pixy 'pIksI K8% 2 +pizza 'pits@ K6% 2 +pizzas 'pits@z Kj% 2 +pizzicato ,pItsI'kAt@U OA%,Pu% 4 +placard 'pl&kAd H0$,K6% 26A +placarded 'pl&kAdId Hc$,Hd$ 36A +placarding 'pl&kAdIN Hb$ 36A +placards 'pl&kAdz Ha$,Kj% 26A +placate pl@'keIt H2% 26A +placated pl@'keItId Hc%,Hd% 36A +placates pl@'keIts Ha% 26A +placating pl@'keItIN Hb% 36A +placatingly pl@'keItINlI Pu% 4 +place pleIs H2%,K6* 16A,15A,15B +place-bet 'pleIs-bet K6$ 2 +place-bets 'pleIs-bets Kj$ 2 +place-name 'pleIs-neIm K6% 2 +place-names 'pleIs-neImz Kj% 2 +placebo pl@'sib@U K6% 3 +placebos pl@'sib@Uz Kj% 3 +placed pleIst Hc%,Hd% 16A,15A,15B +placeman 'pleIsm@n Ki$ 2 +placemen 'pleIsm@n Kj$ 2 +placement 'pleIsm@nt K6% 2 +placements 'pleIsm@nts Kj% 2 +placenta pl@'sent@ K6% 3 +placentas pl@'sent@z Kj% 3 +places 'pleIsIz Ha%,Kj% 26A,15A,15B +placeseeker 'pleIs+sik@R K6$ 3 +placeseekers 'pleIs+sik@z Kj$ 3 +placid 'pl&sId OA% 2 +placidity pl@'sIdItI L@% 4 +placidly 'pl&sIdlI Pu% 3 +placing 'pleIsIN Hb%,K6$ 26A,15A,15B +placings 'pleIsINz Kj% 2 +placket 'pl&kIt K6$ 2 +plackets 'pl&kIts Kj$ 2 +plage plAZ Ki$ 1 +plagiarism 'pleIdZI@rIz@m M6% 5 +plagiarisms 'pleIdZI@rIz@mz Mj$ 5 +plagiarist 'pleIdZI@rIst K6% 4 +plagiarists 'pleIdZI@rIsts Kj% 4 +plagiarize 'pleIdZ@raIz H2% 36A +plagiarized 'pleIdZ@raIzd Hc%,Hd% 36A +plagiarizes 'pleIdZ@raIzIz Ha% 46A +plagiarizing 'pleIdZ@raIzIN Hb% 46A +plague pleIg H2%,K6% 16A,14 +plague-spot 'pleIg-sp0t K6% 2 +plague-spots 'pleIg-sp0ts Kj% 2 +plagued pleIgd Hc%,Hd% 16A,14 +plagues pleIgz Ha%,Kj% 16A,14 +plaguily 'pleIgIlI Pu$ 3 +plaguing 'pleIgIN Hb% 26A,14 +plaguy 'pleIgI OA$ 2 +plaice pleIs M9% 1 +plaid pl&d M6% 1 +plaids pl&dz Mj$ 1 +plain pleIn J0$,K6%,OC%,Pu% 1 +plain-spoken 'pleIn-sp@Uk@n OA% 3 +plained pleInd Jc$,Jd$ 1 +plainer 'pleIn@R Or% 2 +plainest 'pleInIst Os% 2 +plaining 'pleInIN Jb$ 2 +plainly 'pleInlI Pu% 2 +plainness 'pleIn+n@s L@% 2 +plains pleInz Ja$,Kj% 1 +plainsman 'pleInzm@n Ki% 2 +plainsmen 'pleInzm@n Kj% 2 +plaint pleInt K6% 1 +plaintiff 'pleIntIf K6% 2 +plaintiffs 'pleIntIfs Kj% 2 +plaintive 'pleIntIv OA% 2 +plaintively 'pleIntIvlI Pu% 3 +plaintiveness 'pleIntIvn@s L@% 3 +plaints pleInts Kj$ 1 +plait pl&t H0%,K6% 16A +plaited 'pl&tId Hc%,Hd% 26A +plaiting 'pl&tIN Hb% 26A +plaits pl&ts Ha%,Kj% 16A +plan pl&n H4%,K6% 16A,7A,15B +planchette plAn'Set K6$ 2 +planchettes plAn'Sets Kj$ 2 +plane pleIn J2%,K6% 12A,2D,15B,22 +plane-tree 'pleIn-tri K6% 2 +plane-trees 'pleIn-triz Kj% 2 +planed pleInd Jc%,Jd% 12A,2D,15B,22 +planes pleInz Ja%,Kj% 12A,2D,15B,22 +planet 'pl&nIt K6% 2 +planetarium ,pl&nI'te@rI@m K6% 5 +planetariums ,pl&nI'te@rI@mz Kj% 5 +planetary 'pl&nItrI OA% 3 +planets 'pl&nIts Kj% 2 +plangent 'pl&ndZ@nt OA$ 2 +planing 'pleInIN Jb% 22A,2D,15B,22 +plank pl&Nk H0%,K6% 16A,15B +plank-bed 'pl&Nk-bed K6$ 2 +plank-beds 'pl&Nk-bedz Kj$ 2 +planked pl&Nkt Hc$,Hd$ 16A,15B +planking 'pl&NkIN Hb$,L@% 26A,15B +planks pl&Nks Ha$,Kj% 16A,15B +plankton 'pl&Nkt@n L@% 2 +planless 'pl&nl@s OA$ 2 +planned pl&nd Hc%,Hd% 16A,7A,15B +planner 'pl&n@R K6% 2 +planners 'pl&n@z Kj% 2 +planning 'pl&nIN Hb% 26A,7A,15B +plans pl&nz Ha%,Kj% 16A,7A,15B +plant plAnt H0%,M6% 16A,15A,15B +plant-lice 'plAnt-laIs Kj$ 2 +plant-louse 'plAnt-laUs Ki$ 2 +plantain 'pl&ntIn K6% 2 +plantains 'pl&ntInz Kj% 2 +plantation pl&n'teISn K6% 3 +plantations pl&n'teISnz Kj$ 3 +planted 'plAntId Hc%,Hd% 26A,15A,15B +planter 'plAnt@R K6% 2 +planters 'plAnt@z Kj% 2 +planting 'plAntIN Hb% 26A,15A,15B +plants plAnts Ha%,Mj% 16A,15A,15B +plaque plAk M6% 1 +plaques plAks Mj% 1 +plash pl&S J1$,Ki$ 16A +plashed pl&St Jc$,Jd$ 16A +plashes 'pl&SIz Ja$ 26A +plashing 'pl&SIN Jb$ 26A +plasm 'pl&z@m L@$ 2 +plasma 'pl&zm@ L@% 2 +plaster 'plAst@R H0%,M6% 26A,14 +plasterboard 'plAst@bOd L@% 3 +plastered 'plAst@d Hc%,Hd%,OA% 26A,14 +plasterer 'plAst@r@R K6% 3 +plasterers 'plAst@r@z Kj% 3 +plastering 'plAst@rIN Hb% 36A,14 +plasters 'plAst@z Ha%,Mj% 26A,14 +plastic 'pl&stIk K6%,OA% 2 +plastic-bomb ,pl&stIk-'b0m K6% 3 +plastic-bombs ,pl&stIk-'b0mz Kj% 3 +plasticine 'pl&stIsin L@% 3 +plasticity pl&'stIsItI L@% 4 +plastics 'pl&stIks Kj%,Lk% 2 +plate pleIt H2%,M6% 16A,14 +plate-glass pleIt-'glAs L@% 2 +plate-powder 'pleIt-paUd@R L@$ 3 +plate-rack 'pleIt-r&k K6% 2 +plate-racks 'pleIt-r&ks Kj% 2 +plateau 'pl&t@U K6% 2 +plateaus 'pl&t@Uz Kj% 2 +plateaux 'pl&t@Uz Kj$ 2 +plated 'pleItId Hc%,Hd% 26A,14 +plateful 'pleItfUl K6% 2 +platefuls 'pleItfUlz Kj% 2 +platelayer 'pleItleI@R K6% 3 +platelayers 'pleItleI@z Kj% 3 +plates pleIts Ha%,Mj% 16A,14 +platform 'pl&tfOm K6% 2 +platforms 'pl&tfOmz Kj% 2 +plating 'pleItIN Hb%,L@% 26A,14 +platinum 'pl&tIn@m L@% 3 +platitude 'pl&tItjud M6% 3 +platitudes 'pl&tItjudz Mj% 3 +platitudinous ,pl&tI'tjudIn@s OA% 5 +platoon pl@'tun K6% 2 +platoons pl@'tunz Kj% 2 +platter 'pl&t@R K6% 2 +platters 'pl&t@z Kj% 2 +platypus 'pl&tIp@s K7% 3 +platypuses 'pl&tIp@sIz Kj% 4 +plaudit 'plOdIt K6% 2 +plaudits 'plOdIts Kj% 2 +plausibilities ,plOz@'bIlItIz Mj$ 5 +plausibility ,plOz@'bIlItI M8% 5 +plausible 'plOz@bl OA% 3 +plausibly 'plOz@blI Pu% 3 +play pleI J0*,M6% 12A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +play-acting 'pleI-&ktIN L@% 3 +play-actor 'pleI-&kt@R K6% 3 +play-actors 'pleI-&kt@z Kj% 3 +play-box 'pleI-b0ks K7$ 2 +play-boxes 'pleI-b0ksIz Kj$ 3 +play-off 'pleI-0f K6% 2 +play-offs 'pleI-0fs Kj% 2 +play-reading 'pleI-ridIN K6% 3 +play-readings 'pleI-ridINz Kj% 3 +playback 'pleIb&k K6% 2 +playbacks 'pleIb&ks Kj$ 2 +playbill 'pleIbIl K6% 2 +playbills 'pleIbIlz Kj% 2 +playboy 'pleIboI K6% 2 +playboys 'pleIboIz Kj% 2 +played pleId Jc%,Jd% 12A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +player 'pleI@R K6% 2 +player-piano ,pleI@-pI'&n@U K6$ 5 +player-pianos ,pleI@-pI'&n@Uz Kj$ 5 +players 'pleI@z Kj% 2 +playfellow 'pleIfel@U K6% 3 +playfellows 'pleIfel@Uz Kj% 3 +playful 'pleIf@l OA% 2 +playfully 'pleIf@lI Pu% 3 +playfulness 'pleIf@ln@s L@% 3 +playgoer 'pleIg@U@R K6% 3 +playgoers 'pleIg@U@z Kj% 3 +playground 'pleIgraUnd K6% 2 +playgrounds 'pleIgraUndz Kj% 2 +playgroup 'pleIgrup K6% 2 +playgroups 'pleIgrups Kj% 2 +playhouse 'pleIhaUs K6% 2 +playhouses 'pleIhaUzIz Kj% 3 +playing 'pleIIN Jb%,K6% 22A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +playing-card 'pleIIN-kAd K6% 3 +playing-cards 'pleIIN-kAdz Kj% 3 +playing-field 'pleIIN-fild K6% 3 +playing-fields 'pleIIN-fildz Kj% 3 +playings 'pleIINz Kj$ 2 +playlet 'pleIlIt K6% 2 +playlets 'pleIlIts Kj% 2 +playmate 'pleImeIt K6% 2 +playmates 'pleImeIts Kj% 2 +playpen 'pleIpen K6% 2 +playpens 'pleIpenz Kj% 2 +playroom 'pleIrum K6% 2 +playrooms 'pleIrumz Kj% 2 +plays pleIz Ja%,Mj% 12A,2B,2C,3A,6A,12B,12C,13B,14,15A,15B,16B +playschool 'pleIskul K6% 2 +playschools 'pleIskulz Kj% 2 +playsuit 'pleIsut K6% 2 +playsuits 'pleIsuts Kj% 2 +plaything 'pleITIN K6% 2 +playthings 'pleITINz Kj% 2 +playtime 'pleItaIm K6% 2 +playtimes 'pleItaImz Kj% 2 +playwright 'pleIraIt K6% 2 +playwrights 'pleIraIts Kj% 2 +plaza 'plAz@ K6% 2 +plazas 'plAz@z Kj% 2 +plea pli K6% 1 +pleach plitS H1$ 16A +pleached plitSt Hc$,Hd$ 16A +pleaches 'plitSIz Ha$ 26A +pleaching 'plitSIN Hb$ 26A +plead plid J0% 13A,6A +pleaded 'plidId Jc%,Jd% 23A,6A +pleading 'plidIN Jb% 23A,6A +pleadingly 'plidINlI Pu% 3 +pleadings 'plidINz Kj% 2 +pleads plidz Ja% 13A,6A +pleas pliz Kj% 1 +pleasance 'plezns K6$ 2 +pleasances 'pleznsIz Kj$ 3 +pleasant 'pleznt OC% 2 +pleasanter 'plez@nt@R Or% 3 +pleasantest 'plez@ntIst Os% 3 +pleasantly 'plezntlI Pu% 3 +pleasantness 'plezntn@s L@$ 3 +pleasantries 'plezntrIz Mj% 3 +pleasantry 'plezntrI M8% 3 +please pliz J2% 12A,6A +pleased plizd Jc%,Jd%,OA% 12A,6A +pleases 'plizIz Ja% 22A,6A +pleasing 'plizIN Jb%,OA% 22A,6A +pleasingly 'plizINlI Pu% 3 +pleasurable 'pleZ@r@bl OA% 4 +pleasurably 'pleZ@r@blI Pu% 4 +pleasure 'pleZ@R M6% 2 +pleasure-boat 'pleZ@-b@Ut K6% 3 +pleasure-boats 'pleZ@-b@Uts Kj% 3 +pleasure-craft 'pleZ@-krAft K6% 3 +pleasure-crafts 'pleZ@-krAfts Kj% 3 +pleasure-ground 'pleZ@-graUnd K6% 3 +pleasure-grounds 'pleZ@-graUndz Kj% 3 +pleasures 'pleZ@z Mj% 2 +pleat plit H0$,K6% 16A +pleated 'plitId Hc$,Hd% 26A +pleating 'plitIN Hb$ 26A +pleats plits Ha$,Kj% 16A +pleb pleb K6$ 1 +plebeian plI'bi@n K6%,OA% 3 +plebeians plI'bi@nz Kj% 3 +plebiscite 'plebIsIt K6% 3 +plebiscites 'plebIsIts Kj% 3 +plebs plebz Kj% 1 +plectrum 'plektr@m K6% 2 +plectrums 'plektr@mz Kj% 2 +pled pled Jc$,Jd$ 13A,6A +pledge pledZ H2%,M6% 16A +pledged pledZd Hc%,Hd% 16A +pledges 'pledZIz Ha%,Mj% 26A +pledging 'pledZIN Hb% 26A +plenarily 'plin@r@lI Pu$ 4 +plenary 'plin@rI OA% 3 +plenipotentiaries ,plenIp@'tenS@rIz Kj% 6 +plenipotentiary ,plenIp@'tenS@rI K8% 6 +plenitude 'plenItjud Ki% 3 +plenteous 'plentI@s OA% 3 +plenteously 'plentI@slI Pu% 4 +plentiful 'plentIf@l OA% 3 +plentifully 'plentIf@lI Pu% 4 +plenty 'plentI L@%,Pu% 2 +pleonasm 'plI@n&z@m M6$ 4 +pleonasms 'plI@n&z@mz Mj$ 4 +plethora 'pleT@r@ K6% 3 +plethoras 'pleT@r@z Kj$ 3 +pleurisy 'plU@r@sI L@% 3 +plexus 'pleks@s K9$ 2 +plexuses 'pleks@sIz Kj$ 3 +pliability ,plaI@'bIlItI L@% 5 +pliable 'plaI@bl OA% 3 +pliancy 'plaI@nsI L@% 3 +pliant 'plaI@nt OA% 2 +pliantly 'plaI@ntlI Pu% 3 +plied plaId Jc%,Jd% 12C,6A +pliers 'plaI@z Kj% 2 +plies plaIz Ja%,Kj% 12C,6A +plight plaIt H0%,K6% 16A +plighted 'plaItId Hc%,Hd% 26A +plighting 'plaItIN Hb% 26A +plights plaIts Ha%,Kj% 16A +plimsolls 'plIms@lz Kj% 2 +plinth plInT K6% 1 +plinths plInTs Kj% 1 +plod pl0d J4% 12C +plodded 'pl0dId Jc%,Jd% 22C +plodder 'pl0d@R K6% 2 +plodders 'pl0d@z Kj% 2 +plodding 'pl0dIN Jb%,OA% 22C +ploddingly 'pl0dINlI Pu% 3 +plods pl0dz Ja% 12C +plonk pl0Nk I0%,M6%,Pu% 1 +plonked pl0Nkt Ic%,Id% 1 +plonking 'pl0NkIN Ib% 2 +plonks pl0Nks Ia%,Mj% 1 +plop pl0p I4%,K6%,Pu% 1 +plopped pl0pt Ic%,Id% 1 +plopping 'pl0pIN Ib% 2 +plops pl0ps Ia%,Kj% 1 +plosive 'pl@UsIv K6$,OA$ 2 +plosives 'pl@UsIvz Kj$ 2 +plot pl0t J4%,K6% 12A,3A,4A,6A,8,10,15B +plots pl0ts Ja%,Kj% 12A,3A,4A,6A,8,10,15B +plotted 'pl0tId Jc%,Jd% 22A,3A,4A,6A,8,10,15B +plotter 'pl0t@R K6% 2 +plotters 'pl0t@z Kj% 2 +plotting 'pl0tIN Jb% 22A,3A,4A,6A,8,10,15B +plough plaU J0%,M6% 13A,6A,15B +ploughboy 'plaUboI K6% 2 +ploughboys 'plaUboIz Kj% 2 +ploughed plaUd Jc%,Jd% 13A,6A,15B +ploughing 'plaUIN Jb% 23A,6A,15B +ploughman 'plaUm@n Ki% 2 +ploughmen 'plaUm@n Kj% 2 +ploughs plaUz Ja%,Mj% 13A,6A,15B +ploughshare 'plaUSe@R K6% 2 +ploughshares 'plaUSe@z Kj% 2 +plover 'plVv@R K6% 2 +plovers 'plVv@z Kj% 2 +ploy ploI K6% 1 +ploys ploIz Kj% 1 +pluck plVk J0%,M6% 13A,6A,15B +plucked plVkt Jc%,Jd% 13A,6A,15B +pluckier 'plVkI@R Or% 3 +pluckiest 'plVkIIst Os% 3 +pluckily 'plVkIlI Pu% 3 +plucking 'plVkIN Jb% 23A,6A,15B +plucks plVks Ja%,Mj% 13A,6A,15B +plucky 'plVkI OD% 2 +plug plVg J4%,K6% 12C,6A,15B +plugged plVgd Jc%,Jd% 12C,6A,15B +plugging 'plVgIN Jb% 22C,6A,15B +plughole 'plVgh@Ul K6% 2 +plugholes 'plVgh@Ulz Kj% 2 +plugs plVgz Ja%,Kj% 12C,6A,15B +plum plVm K6% 1 +plum-pudding plVm-'pUdIN M6% 3 +plum-puddings plVm-'pUdINz Mj% 3 +plumage 'plumIdZ L@% 2 +plumb plVm H0$,K6%,Pu% 16A +plumbago plVm'beIg@U M6$ 3 +plumbagos plVm'beIg@Uz Mj$ 3 +plumbed plVmd Hc%,Hd% 16A +plumber 'plVm@R K6% 2 +plumbers 'plVm@z Kj% 2 +plumbing 'plVmIN Hb%,L@% 26A +plumbs plVmz Ha%,Kj$ 16A +plume plum H2$,K6% 16A +plumed plumd Hc$,Hd% 16A +plumes plumz Ha$,Kj% 16A +pluming 'plumIN Hb$ 26A +plummet 'plVmIt I4%,K6% 22A +plummets 'plVmIts Ia%,Kj% 22A +plummetted 'plVmItId Ic%,Id% 32A +plummetting 'plVmItIN Ib% 32A +plummier 'plVmI@R Or% 3 +plummiest 'plVmIIst Os% 3 +plummy 'plVmI OD% 2 +plump plVmp J0%,K6%,OC%,Pu% 12A,2C,3A,6A,15B +plumped plVmpt Jc%,Jd% 12A,2C,3A,6A,15B +plumper 'plVmp@R Or% 2 +plumpest 'plVmpIst Os% 2 +plumping 'plVmpIN Jb% 22A,2C,3A,6A,15B +plumps plVmps Ja%,Kj% 12A,2C,3A,6A,15B +plums plVmz Kj% 1 +plunder 'plVnd@R J0%,L@% 22A,6A,14 +plundered 'plVnd@d Jc%,Jd% 22A,6A,14 +plunderer 'plVnd@r@R K6% 3 +plunderers 'plVnd@r@z Kj% 3 +plundering 'plVnd@rIN Jb% 32A,6A,14 +plunders 'plVnd@z Ja% 22A,6A,14 +plunge plVndZ J2%,K6% 12A,2C,6A,14 +plunged plVndZd Jc%,Jd% 12A,2C,6A,14 +plunger 'plVndZ@R K6% 2 +plungers 'plVndZ@z Kj% 2 +plunges 'plVndZIz Ja%,Kj% 22A,2C,6A,14 +plunging 'plVndZIN Jb% 22A,2C,6A,14 +plunk plVNk K6$ 1 +plunks plVNks Kj$ 1 +pluperfect ,plu'p3fIkt K6%,OA% 3 +pluperfects ,plu'p3fIkts Kj$ 3 +plural 'plU@r@l K6%,OA% 2 +pluralism 'plU@r@lIz@m L@% 4 +pluralist 'plU@r@lIst K6% 3 +pluralists 'plU@r@lIsts Kj% 3 +pluralities plU@'r&lItIz Mj% 4 +plurality plU@'r&lItI M8% 4 +plurals 'plU@r@lz Kj% 2 +plus plVs K7%,OA%,T-% 1 +plus-fours plVs-'fOz Kj% 2 +pluses 'plVsIz Kj% 2 +plush plVS L@%,OC% 1 +plusher 'plVS@R Or% 2 +plushest 'plVSIst Os% 2 +plushier 'plVSI@R Or$ 3 +plushiest 'plVSIIst Os$ 3 +plushy 'plVSI OD$ 2 +plutocracies plu't0kr@sIz Mj% 4 +plutocracy plu't0kr@sI M8% 4 +plutocrat 'plut@kr&t K6% 3 +plutocratic ,plut@'kr&tIk OA% 4 +plutocrats 'plut@kr&ts Kj% 3 +plutonium plu't@UnI@m L@% 4 +ply plaI J3%,K9% 12C,6A +plying 'plaIIN Jb% 22C,6A +plywood 'plaIwUd L@% 2 +pm ,pi'em Y~% 2 +pneumatic nju'm&tIk OA% 3 +pneumatically nju'm&tIklI Pu% 4 +pneumonia nju'm@UnI@ L@% 4 +poach p@UtS J1% 12A,3A,6A +poached p@UtSt Jc%,Jd% 12A,3A,6A +poacher 'p@UtS@R K6% 2 +poachers 'p@UtS@z Kj% 2 +poaches 'p@UtSIz Ja% 22A,3A,6A +poaching 'p@UtSIN Jb% 22A,3A,6A +pock p0k K6$ 1 +pocked p0kt OA$ 1 +pocket 'p0kIt H0%,K6% 26A +pocket-book 'p0kIt-bUk K6% 3 +pocket-books 'p0kIt-bUks Kj% 3 +pocket-handkerchief ,p0kIt-'h&Nk@tSIf K6% 5 +pocket-handkerchiefs ,p0kIt-'h&Nk@tSIfs Kj% 5 +pocket-knife 'p0kIt-naIf Ki% 3 +pocket-knives 'p0kIt-naIvz Kj% 3 +pocket-money 'p0kIt-mVnI L@% 4 +pocketed 'p0kItId Hc%,Hd% 36A +pocketful 'p0kItfUl K6% 3 +pocketfuls 'p0kItfUlz Kj% 3 +pocketing 'p0kItIN Hb% 36A +pockets 'p0kIts Ha%,Kj% 26A +pockmarked 'p0kmAkt OA% 2 +pocks p0ks Kj$ 1 +pod p0d J4$,K6% 12A,2C,6A +podded 'p0dId Jc$,Jd$ 22A,2C,6A +podding 'p0dIN Jb$ 22A,2C,6A +podgier 'p0dZI@R Or% 3 +podgiest 'p0dZIIst Os% 3 +podgy 'p0dZI OD% 2 +podiatry p@'daI@trI L@$ 4 +podium 'p@UdI@m K6% 3 +podiums 'p@UdI@mz Kj% 3 +pods p0dz Ja$,Kj% 12A,2C,6A +poem 'p@UIm K6% 2 +poems 'p@UImz Kj% 2 +poesy 'p@UIzI L@$ 3 +poet 'p@UIt K6% 2 +poetess 'p@UItes K7% 3 +poetesses 'p@UItesIz Kj% 4 +poetic p@U'etIk OA% 3 +poetical p@U'etIkl OA% 4 +poetically p@U'etIklI Pu% 4 +poetry 'p@UItrI L@% 3 +poets 'p@UIts Kj% 2 +pogrom 'p0gr@m K6$ 2 +pogroms 'p0gr@mz Kj$ 2 +poignancy 'poInj@nsI L@% 3 +poignant 'poInj@nt OA% 2 +poignantly 'poInj@ntlI Pu% 3 +poinsettia poIn'setI@ K6% 4 +poinsettias poIn'setI@z Kj% 4 +point poInt J0*,M6* 12A,3A,6A,14,15B +point-blank ,poInt-'bl&Nk OA%,Pu% 2 +point-duty 'poInt-djutI L@% 3 +pointed 'poIntId Jc%,Jd%,OA% 22A,3A,6A,14,15B +pointedly 'poIntIdlI Pu% 3 +pointer 'poInt@R K6% 2 +pointers 'poInt@z Kj% 2 +pointing 'poIntIN Jb% 22A,3A,6A,14,15B +pointless 'poIntlIs OA% 2 +pointlessly 'poIntlIslI Pu% 3 +points poInts Ja%,Mj% 12A,3A,6A,14,15B +pointsman 'poIntsm@n Ki% 2 +pointsmen 'poIntsm@n Kj% 2 +poise poIz J2%,L@% 12C,6A,15A +poised poIzd Jc%,Jd% 12C,6A,15A +poises 'poIzIz Ja% 22C,6A,15A +poising 'poIzIN Jb% 22C,6A,15A +poison 'poIzn H0%,M6% 26A +poison-gas ,poIzn-'g&s M7% 3 +poison-gases ,poIzn-'g&sIz Mj$ 4 +poison-ivies ,poIzn-'aIvIz Mj$ 4 +poison-ivy ,poIzn-'aIvI M8% 4 +poisoned 'poIznd Hc%,Hd% 26A +poisoner 'poIzn@R K6% 3 +poisoners 'poIzn@z Kj% 3 +poisoning 'poIznIN Hb% 36A +poisonous 'poIz@n@s OA% 3 +poisonously 'poIz@n@slI Pu% 4 +poisons 'poIznz Ha%,Mj% 26A +poke p@Uk J2%,K6% 12C,6A,15A,15B +poke-bonnet ,p@Uk-'b0nIt K6$ 3 +poke-bonnets ,p@Uk-'b0nIts Kj$ 3 +poked p@Ukt Jc%,Jd% 12C,6A,15A,15B +poker 'p@Uk@R M6% 2 +poker-face 'p@Uk@-feIs K6% 3 +poker-faces 'p@Uk@-feIsIz Kj% 4 +pokers 'p@Uk@z Mj% 2 +pokes p@Uks Ja%,Kj% 12C,6A,15A,15B +pokier 'p@UkI@R Or% 3 +pokiest 'p@UkIIst Os% 3 +poking 'p@UkIN Jb% 22C,6A,15A,15B +poky 'p@UkI OD% 2 +polar 'p@Ul@R OA% 2 +polarities p@'l&rItIz Mj% 4 +polarity p@'l&rItI M8% 4 +polarization ,p@Ul@raI'zeISn K6% 5 +polarizations ,p@Ul@raI'zeISnz Kj% 5 +polarize 'p@Ul@raIz H2% 36A +polarized 'p@Ul@raIzd Hc%,Hd% 36A +polarizes 'p@Ul@raIzIz Ha% 46A +polarizing 'p@Ul@raIzIN Hb% 46A +pole p@Ul K6% 1 +pole-jumping 'p@Ul-dZVmpIN L@% 3 +pole-star 'p@Ul-stAR K6% 2 +pole-stars 'p@Ul-stAz Kj% 2 +pole-vault 'p@Ul-vOlt K6% 2 +pole-vaults 'p@Ul-vOlts Kj% 2 +poleax 'p@Ul&ks H1$,K7$ 26A +poleaxe 'p@Ul&ks H2%,K6% 26A +poleaxed 'p@Ul&kst Hc$,Hd% 26A +poleaxes 'p@Ul&ksIz Ha%,Kj% 36A +poleaxing 'p@Ul&ksIN Hb% 36A +polecat 'p@Ulk&t K6% 2 +polecats 'p@Ulk&ts Kj% 2 +polemic p@'lemIk K6%,OA% 3 +polemically p@'lemIklI Pu% 4 +polemics p@'lemIks Kj% 3 +poles p@Ulz Kj% 1 +police p@'lis H2%,Kj% 26A +police-office p@'lis-0fIs K6% 4 +police-officer p@'lis-0fIs@R K6% 5 +police-officers p@'lis-0fIs@z Kj% 5 +police-offices p@'lis-0fIsIz Kj% 5 +police-station p@'lis-steISn K6% 4 +police-stations p@'lis-steISnz Kj% 4 +policed p@'list Hc%,Hd% 26A +policeman p@'lism@n Ki% 3 +policemen p@'lism@n Kj% 3 +polices p@'lisIz Ha% 36A +policewoman p@'liswUm@n Ki% 4 +policewomen p@'liswImIn Kj% 4 +policies 'p0l@sIz Mj% 3 +policing p@'lisIN Hb% 36A +policy 'p0l@sI M8% 3 +polio 'p@UlI@U L@% 3 +poliomyelitis ,p@UlI@U,maI@'laItIs L@% 7 +polish 'p0lIS J1%,M7% 22A,6A,15B +polished 'p0lISt Jc%,Jd% 22A,6A,15B +polisher 'p0lIS@R K6% 3 +polishers 'p0lIS@z Kj% 3 +polishes 'p0lISIz Ja%,Mj% 32A,6A,15B +polishing 'p0lISIN Jb% 32A,6A,15B +politburo 'p0lItbjU@r@U K6% 4 +politburos 'p0lItbjU@r@Uz Kj$ 4 +polite p@'laIt OB% 2 +politely p@'laItlI Pu% 3 +politeness p@'laItn@s L@% 3 +politer p@'laIt@R Or% 3 +politest p@'laItIst Os% 3 +politic 'p0lItIk OA% 3 +political p@'lItIkl OA% 4 +politically p@'lItIklI Pu% 4 +politician ,p0lI'tISn K6% 4 +politicians ,p0lI'tISnz Kj% 4 +politicize p@'lItIsaIz J2% 42A,6A +politicized p@'lItIsaIzd Jc%,Jd% 42A,6A +politicizes p@'lItIsaIzIz Ja% 52A,6A +politicizing p@'lItIsaIzIN Jb% 52A,6A +politick 'p0lItIk I0$ 32A +politicked 'p0lItIkt Ic$,Id$ 32A +politicking 'p0lItIkIN Ib$ 42A +politicks 'p0lItIks Ia$ 32A +politics 'p0lItIks Lk$ 3 +polities 'p0lItIz Mj$ 3 +polity 'p0lItI M8$ 3 +polka 'p0lk@ K6% 2 +polkas 'p0lk@z Kj% 2 +poll p0l K6$ 1 +poll p@Ul J0%,K6% 12A,2C,6A +poll-tax 'p@Ul-t&ks K7% 2 +poll-taxes 'p@Ul-t&ksIz Kj% 3 +pollard 'p0l@d H0%,K6$ 26A +pollarded 'p0l@dId Hc%,Hd% 36A +pollarding 'p0l@dIN Hb% 36A +pollards 'p0l@dz Ha%,Kj$ 26A +polled p@Uld Jc%,Jd% 12A,2C,6A +pollen 'p0l@n L@% 2 +pollinate 'p0lIneIt H2% 36A +pollinated 'p0lIneItId Hc%,Hd% 46A +pollinates 'p0lIneIts Ha% 36A +pollinating 'p0lIneItIN Hb% 46A +pollination ,p0lI'neISn L@% 4 +polling 'p@UlIN Jb% 22A,2C,6A +polling-booth 'p@UlIN-buD K6% 3 +polling-booths 'p@UlIN-buDz Kj% 3 +polling-day 'p@UlIN-deI K6% 3 +polling-days 'p@UlIN-deIz Kj% 3 +polling-station 'p@UlIN-steISn K6% 4 +polling-stations 'p@UlIN-steISnz Kj% 4 +polls p0lz Kj$ 1 +polls p@Ulz Ja%,Kj% 12A,2C,6A +pollster 'p@Ulst@R K6% 2 +pollsters 'p@Ulst@z Kj% 2 +pollutant p@'lut@nt K6% 3 +pollutants p@'lut@nts Kj% 3 +pollute p@'lut H2% 26A +polluted p@'lutId Hc%,Hd% 36A +pollutes p@'luts Ha% 26A +polluting p@'lutIN Hb% 36A +pollution p@'luSn L@% 3 +polo 'p@Ul@U L@% 2 +polo-neck 'p@Ul@U-nek OA% 3 +polonaise ,p0l@'neIz K6$ 3 +polonaises ,p0l@'neIzIz Kj$ 4 +polony p@'l@UnI L@% 3 +poltergeist 'p0lt@gaIst K6% 3 +poltergeists 'p0lt@gaIsts Kj% 3 +poltroon p0l'trun K6$ 2 +poltroonery p0l'trun@rI L@$ 4 +poltroons p0l'trunz Kj$ 2 +poly 'p0lI K6$ 2 +polyandrous ,p0lI'&ndr@s OA$ 4 +polyandry 'p0lI&ndrI L@$ 4 +polyanthus ,p0lI'&nT@s K7% 4 +polyanthuses ,p0lI'&nT@sIz Kj$ 5 +polygamist p@'lIg@mIst K6% 4 +polygamists p@'lIg@mIsts Kj% 4 +polygamous p@'lIg@m@s OA% 4 +polygamy p@'lIg@mI L@% 4 +polyglot 'p0lIgl0t K6%,OA% 3 +polyglots 'p0lIgl0ts Kj% 3 +polygon 'p0lIg@n K6% 3 +polygonal p@'lIg@n@l OA% 4 +polygons 'p0lIg@nz Kj% 3 +polymorphic ,p0lI'mOfIk OA$ 4 +polymorphous ,p0lI'mOf@s OA$ 4 +polynomial ,p0lI'n@UmI@l K6$,OA$ 5 +polynomials ,p0lI'n@UmI@lz Kj$ 5 +polyp 'p0lIp K6$ 2 +polyphonic ,p0lI'f0nIk OA% 4 +polyphony p@'lIf@nI L@% 4 +polypi 'p0lIpaI Kj$ 3 +polyps 'p0lIps Kj$ 2 +polypus 'p0lIp@s K7$ 3 +polypuses 'p0lIp@sIz Kj$ 4 +polys 'p0lIz Kj$ 2 +polysyllabic ,p0lIsI'l&bIk OA% 5 +polysyllable 'p0lIsIl@bl K6% 5 +polysyllables 'p0lIsIl@blz Kj% 5 +polytechnic ,p0lI'teknIk K6% 4 +polytechnics ,p0lI'teknIks Kj% 4 +polytheism 'p0lITiIz@m L@% 5 +polytheistic ,p0lITi'IstIk OA% 5 +polythene 'p0lITin L@% 3 +pom p0m K6$ 1 +pomade p@'mAd H2$,L@$ 2 +pomaded p@'mAdId Hc$,Hd$ 3 +pomades p@'mAdz Ha$ 2 +pomading p@'mAdIN Hb$ 3 +pomegranate 'p0mIgr&nIt K6% 4 +pomegranates 'p0mIgr&nIts Kj% 4 +pomelo 'p0m@l@U K6$ 3 +pomelos 'p0m@l@Uz Kj$ 3 +pommel 'p0ml K6$ 2 +pommel 'pVml H4$ 2 +pommelled 'pVmld Hc$,Hd$ 2 +pommelling 'pVm@lIN Hb$ 3 +pommels 'p0mlz Kj$ 2 +pommels 'pVmlz Ha$ 2 +pommies 'p0mIz Kj$ 2 +pommy 'p0mI K8$ 2 +pomp p0mp L@% 1 +pompon 'p0mp0n K6% 2 +pompons 'p0mp0nz Kj% 2 +pomposities p0m'p0sItIz Mj$ 4 +pomposity p0m'p0sItI M8% 4 +pompous 'p0mp@s OA% 2 +pompously 'p0mp@slI Pu% 3 +poms p0mz Kj$ 1 +ponce p0ns K6% 1 +ponces 'p0nsIz Kj% 2 +poncho 'p0ntS@U K6% 2 +ponchos 'p0ntS@Uz Kj% 2 +pond p0nd K6% 1 +ponder 'p0nd@R J0% 22A,3A,6A,8,10 +ponderable 'p0nd@r@bl OA$ 4 +ponderables 'p0nd@r@blz Kj$ 4 +pondered 'p0nd@d Jc%,Jd% 22A,3A,6A,8,10 +pondering 'p0nd@rIN Jb% 32A,3A,6A,8,10 +ponderous 'p0nd@r@s OA% 3 +ponderously 'p0nd@r@slI Pu% 4 +ponders 'p0nd@z Ja% 22A,3A,6A,8,10 +ponds p0ndz Kj% 1 +pone p@Un K6$ 1 +pones p@Unz Kj$ 1 +pongee p0n'dZi L@$ 2 +poniard 'p0nj@d H0$,K6$ 26A +poniarded 'p0nj@dId Hc$,Hd$ 36A +poniarding 'p0nj@dIN Hb$ 36A +poniards 'p0nj@dz Ha$,Kj$ 26A +ponies 'p@UnIz Kj% 2 +pontiff 'p0ntIf K6% 2 +pontiffs 'p0ntIfs Kj% 2 +pontifical p0n'tIfIkl OA% 4 +pontificals p0n'tIfIklz Kj$ 4 +pontificate p0n'tIfIk@t K6$ 4 +pontificate p0n'tIfIkeIt I2% 42A +pontificated p0n'tIfIkeItId Ic%,Id% 52A +pontificates p0n'tIfIk@ts Kj$ 4 +pontificates p0n'tIfIkeIts Ia% 42A +pontificating p0n'tIfIkeItIN Ib% 52A +pontoon p0n'tun M6% 2 +pontoons p0n'tunz Mj$ 2 +pony 'p@UnI K8% 2 +pony-trekking 'p@UnI-trekIN L@% 4 +ponytail 'p@UnIteIl K6% 3 +ponytails 'p@UnIteIlz Kj% 3 +poodle 'pudl K6% 2 +poodles 'pudlz Kj% 2 +poof puf K6$ 1 +poofs pufs Kj$ 1 +pooh pu W-$ 1 +pooh-pooh ,pu-'pu H0$ 26A +pooh-poohed ,pu-'pud Hc$,Hd$ 26A +pooh-poohing ,pu-'puIN Hb$ 36A +pooh-poohs ,pu-'puz Ha$ 26A +pool pul H0%,M6% 16A +pooled puld Hc%,Hd% 16A +pooling 'pulIN Hb% 26A +poolroom 'pulrum K6% 2 +poolrooms 'pulrumz Kj% 2 +pools pulz Ha%,Mj% 16A +poop pup K6% 1 +poops pups Kj% 1 +poor pU@R OC% 1 +poor-box 'pU@-b0ks K7% 2 +poor-boxes 'pU@-b0ksIz Kj% 3 +poor-rate 'pU@-reIt K6$ 2 +poor-rates 'pU@-reIts Kj$ 2 +poor-spirited pU@-'spIrItId OA% 4 +poorer 'pU@r@R Or% 2 +poorest 'pU@rIst Os% 2 +poorhouse 'pU@haUs K6% 2 +poorhouses 'pU@haUzIz Kj% 3 +poorly 'pU@lI Op%,Pu% 2 +poorness 'pU@n@s L@% 2 +pop p0p J4%,M6%,OA%,Pu%,Y>$ 12A,2C,6A,15A,15B +popcorn 'p0pkOn K6% 2 +popcorns 'p0pkOnz Kj$ 2 +popery 'p@Up@rI L@% 3 +popeyed 'p0paId OA% 2 +popgun 'p0pgVn K6% 2 +popguns 'p0pgVnz Kj% 2 +popinjay 'p0pIndZeI K6$ 3 +popinjays 'p0pIndZeIz Kj$ 3 +popish 'p@UpIS OA% 2 +popishly 'p@UpISlI Pu% 3 +poplar 'p0pl@R M6% 2 +poplars 'p0pl@z Mj% 2 +poplin 'p0plIn L@% 2 +poppa 'p0p@ K6$ 2 +poppas 'p0p@z Kj$ 2 +popped p0pt Jc%,Jd% 12A,2C,6A,15A,15B +poppet 'p0pIt K6% 2 +poppets 'p0pIts Kj% 2 +poppies 'p0pIz Kj% 2 +popping 'p0pIN Jb% 22A,2C,6A,15A,15B +poppy 'p0pI K8% 2 +poppycock 'p0pIk0k L@% 3 +pops p0ps Ja%,Mj% 12A,2C,6A,15A,15B +populace 'p0pjUl@s K6% 3 +populaces 'p0pjUl@sIz Kj$ 4 +popular 'p0pjUl@R OA% 3 +popularity ,p0pjU'l&rItI L@% 5 +popularization ,p0pjUl@raI'zeISn M6% 6 +popularizations ,p0pjUl@raI'zeISnz Mj$ 6 +popularize 'p0pjUl@raIz H2% 46A +popularized 'p0pjUl@raIzd Hc%,Hd% 46A +popularizes 'p0pjUl@raIzIz Ha% 56A +popularizing 'p0pjUl@raIzIN Hb% 56A +popularly 'p0pjUl@lI Pu% 4 +populate 'p0pjUleIt H2% 36A +populated 'p0pjUleItId Hc%,Hd% 46A +populates 'p0pjUleIts Ha% 36A +populating 'p0pjUleItIN Hb% 46A +population ,p0pjU'leISn K6% 4 +populations ,p0pjU'leISnz Kj% 4 +populism 'p0pjUlIz@m L@$ 4 +populist 'p0pjUlIst K6$ 3 +populists 'p0pjUlIsts Kj$ 3 +populous 'p0pjUl@s OA% 3 +porcelain 'pOs@lIn L@% 3 +porch pOtS K7% 1 +porches 'pOtSIz Kj% 2 +porcine 'pOsaIn OA$ 2 +porcupine 'pOkjUpaIn K6% 3 +porcupines 'pOkjUpaInz Kj% 3 +pore pOR I2%,K6% 13A +pored pOd Ic%,Id% 13A +pores pOz Ia%,Kj% 13A +poring 'pOrIN Ib% 23A +pork pOk L@% 1 +pork-barrel 'pOk-b&r@l K6$ 3 +pork-barrels 'pOk-b&r@lz Kj$ 3 +pork-butcher 'pOk-bUtS@R K6% 3 +pork-butchers 'pOk-bUtS@z Kj% 3 +porker 'pOk@R K6% 2 +porkers 'pOk@z Kj% 2 +porn pOn L@% 1 +pornographer pO'n0gr@f@R K6% 4 +pornographers pO'n0gr@f@z Kj% 4 +pornographic ,pOn@'gr&fIk OA% 4 +pornography pO'n0gr@fI L@% 4 +porosities pO'r0sItIz Mj$ 4 +porosity pO'r0sItI M8% 4 +porous 'pOr@s OA% 2 +porousness 'pOr@sn@s L@% 3 +porphyry 'pOfIrI L@$ 3 +porpoise 'pOp@s K6% 2 +porpoises 'pOp@sIz Kj% 3 +porridge 'p0rIdZ L@% 2 +porringer 'p0rIndZ@R K6$ 3 +porringers 'p0rIndZ@z Kj$ 3 +port pOt H0%,M6% 16A +portability ,pOt@'bIlItI L@% 5 +portable 'pOt@bl OA% 3 +portage 'pOtIdZ M6$ 2 +portages 'pOtIdZIz Mj$ 3 +portal 'pOtl K6% 2 +portals 'pOtlz Kj% 2 +portcullis ,pOt'kVlIs K7% 3 +portcullises ,pOt'kVlIsIz Kj% 4 +porte-coch`ere ,pOt-k@'Se@R K6$ 3 +porte-coch`eres ,pOt-k@'Se@z Kj$ 3 +ported 'pOtId Hc$,Hd$ 26A +portend pO'tend H0$ 26A +portended pO'tendId Hc$,Hd$ 36A +portending pO'tendIN Hb$ 36A +portends pO'tendz Ha$ 26A +portent 'pOtent K6% 2 +portentous pO'tent@s OA% 3 +portentously pO'tent@slI Pu% 4 +portents 'pOtents Kj% 2 +porter 'pOt@R M6% 2 +porterage 'pOt@rIdZ L@$ 3 +porterhouse 'pOt@haUs K6$ 3 +porterhouses 'pOt@haUzIz Kj$ 4 +porters 'pOt@z Mj% 2 +portfolio pOt'f@UlI@U K6% 4 +portfolios pOt'f@UlI@Uz Kj% 4 +porthole 'pOth@Ul K6% 2 +portholes 'pOth@Ulz Kj% 2 +porti`ere ,pOtI'e@R K6$ 3 +porti`eres ,pOtI'e@z Kj$ 3 +portico 'pOtIk@U K6% 3 +porticoes 'pOtik@Uz Kj% 3 +porticos 'pOtIk@Uz Kj% 3 +porting 'pOtIN Hb$ 26A +portion 'pOSn H0%,K6% 214,15B +portioned 'pOSnd Hc%,Hd% 214,15B +portioning 'pOSnIN Hb% 314,15B +portions 'pOSnz Ha%,Kj% 214,15B +portly 'pOtlI OA% 2 +portmanteau pOt'm&nt@U K6% 3 +portmanteaus pOt'm&nt@Uz Kj% 3 +portmanteaux pOt'm&nt@Uz Kj$ 3 +portrait 'pOtrIt K6% 2 +portraitist 'pOtrItIst K6% 3 +portraitists 'pOtrItIsts Kj% 3 +portraits 'pOtrIts Kj% 2 +portraiture 'pOtreItS@R L@% 3 +portray pO'treI H0% 26A +portrayal pO'treI@l M6% 3 +portrayals pO'treI@lz Mj% 3 +portrayed pO'treId Hc%,Hd% 26A +portraying pO'treIIN Hb% 36A +portrays pO'treIz Ha% 26A +ports pOts Ha$,Mj% 16A +pose p@Uz J2%,K6% 12A,2C,3A,6A +posed p@Uzd Jc%,Jd% 12A,2C,3A,6A +poser 'p@Uz@R K6% 2 +posers 'p@Uz@z Kj% 2 +poses 'p@UzIz Ja%,Kj% 22A,2C,3A,6A +poseur p@U'z3R K6% 2 +poseurs p@U'z3z Kj% 2 +poseuse p@U'z3z Ki$ 2 +posh p0S H1$,OC% 115B +poshed p0St Hc$,Hd$ 115B +posher 'p0S@R Or% 2 +poshes 'p0SIz Ha$ 215B +poshest 'p0SIst Os% 2 +poshing 'p0SIN Hb$ 215B +posies 'p@UzIz Kj% 2 +posing 'p@UzIN Jb% 22A,2C,3A,6A +posit 'p0zIt H0$ 26A +posited 'p0zItId Hc$,Hd$ 36A +positing 'p0zItIN Hb$ 36A +position p@'zISn H0%,M6% 36A +positioned p@'zISnd Hc%,Hd% 36A +positioning p@'zISnIN Hb% 46A +positions p@'zISnz Ha%,Mj% 36A +positive 'p0z@tIv K6%,OA% 3 +positively 'p0z@tIvlI Pu% 4 +positiveness 'p0z@tIvn@s L@% 4 +positives 'p0z@tIvz Kj% 3 +positivism 'p0zItIvIz@m L@% 5 +positivist 'p0sItIvIst K6% 4 +positivists 'p0sItIvIsts Kj% 4 +posits 'p0zIts Ha$ 26A +posse 'p0sI K6$ 2 +posses 'p0sIz Kj$ 2 +possess p@'zes H1% 26A +possessed p@'zest Hc%,Hd% 26A +possesses p@'zesIz Ha% 36A +possessing p@'zesIN Hb% 36A +possession p@'zeSn M6% 3 +possessions p@'zeSnz Mj% 3 +possessive p@'zesIv OA% 3 +possessively p@'zesIvlI Pu% 4 +possessiveness p@'zesIvnIs L@% 4 +possessor p@'zes@R K6% 3 +possessors p@'zes@z Kj% 3 +posset 'p0sIt K6$ 2 +possets 'p0sIts Kj$ 2 +possibilities ,p0s@'bIlItIz Mj% 5 +possibility ,p0s@'bIlItI M8% 5 +possible 'p0s@bl K6%,OA* 3 +possibles 'p0s@blz Kj% 3 +possibly 'p0s@blI Pu% 3 +possum 'p0s@m K6$ 2 +possums 'p0s@mz Kj$ 2 +post p@Ust J0%,M6% 13A,6A,15A,15B +post meridiem ,p@Ust m@'rIdI@m Pu$ 5 +post- p@Ust- U-% 1 +post-chaise p@Ust-'SeIz K6$ 2 +post-chaises p@Ust-'SeIzIz Kj$ 3 +post-free p@Ust-'fri OA%,Pu% 2 +post-haste p@Ust-'heIst Pu% 2 +post-horse 'p@Ust-hOs K6$ 2 +post-horses 'p@Ust-hOsIz Kj$ 3 +post-mortem ,p@Ust-'mOt@m K6%,OA% 3 +post-mortems ,p@Ust-'mOt@mz Kj% 3 +post-paid p@Ust-'peId OA%,Pu% 2 +postage 'p@UstIdZ L@% 2 +postage-stamp 'p@UstIdZ-st&mp K6% 3 +postage-stamps 'p@UstIdZ-st&mps Kj% 3 +postal 'p@Ustl OA% 2 +postbag 'p@Ustb&g K6% 2 +postbags 'p@Ustb&gz Kj% 2 +postbox 'p@Ustb0ks K7% 2 +postboxes 'p@Ustb0ksIz Kj% 3 +postcard 'p@UstkAd K6% 2 +postcards 'p@UstkAdz Kj% 2 +postcode 'p@Ustk@Ud K6% 2 +postcodes 'p@Ustk@Udz Kj% 2 +postdate ,p@Ust'deIt H2% 26A +postdated ,p@Ust'deItId Hc%,Hd% 36A +postdates ,p@Ust'deIts Ha% 26A +postdating ,p@Ust'deItIN Hb% 36A +poste restante ,p@Ust 'restAnt L@% 3 +posted 'p@UstId Jc%,Jd% 23A,6A,15A,15B +poster 'p@Ust@R K6% 2 +posterior p0'stI@rI@R K6%,OA% 4 +posteriors p0'stI@rI@z Kj% 4 +posterity p0'sterItI L@% 4 +postern 'p0st@n K6$ 2 +posterns 'p0st@nz Kj$ 2 +posters 'p@Ust@z Kj% 2 +postgraduate ,p@Ust'gr&dZU@t K6%,OA% 4 +postgraduates ,p@Ust'gr&dZU@ts Kj% 4 +posthumous 'p0stjUm@s OA% 3 +posthumously 'p0stjUm@slI Pu% 4 +postilion p0'stIlI@n K6$ 4 +postilions p0'stIlI@nz Kj$ 4 +postillion p0'stIlI@n K6$ 4 +postillions p0'stIlI@nz Kj$ 4 +posting 'p@UstIN Jb% 23A,6A,15A,15B +postman 'p@Ustm@n Ki% 2 +postmark 'p@UstmAk H0%,K6% 2 +postmarked 'p@UstmAkt Hc%,Hd% 2 +postmarking 'p@UstmAkIN Hb% 3 +postmarks 'p@UstmAks Ha%,Kj% 2 +postmaster 'p@UstmAst@R K6% 3 +postmasters 'p@UstmAst@z Kj% 3 +postmen 'p@Ustm@n Kj% 2 +postmistress 'p@UstmIstrIs K7% 3 +postmistresses 'p@UstmIstrIsIz Kj% 4 +postpone p@'sp@Un H2% 26A,6C +postponed p@'sp@Und Hc%,Hd% 26A,6C +postponement p@'sp@Unm@nt M6% 3 +postponements p@'sp@Unm@nts Mj% 3 +postpones p@'sp@Unz Ha% 26A,6C +postponing p@'sp@UnIN Hb% 36A,6C +postprandial ,p@Ust'pr&ndI@l OA$ 4 +posts p@Usts Ja%,Mj% 13A,6A,15A,15B +postscript 'p@Us+skrIpt K6% 2 +postscripts 'p@Us+skrIpts Kj% 2 +postulant 'p0stjUl@nt K6$ 3 +postulants 'p0stjUl@nts Kj$ 3 +postulate 'p0stjUleIt H2%,K6% 36A +postulated 'p0stjUleItId Hc%,Hd% 46A +postulates 'p0stjUleIts Ha%,Kj% 36A +postulating 'p0stjUleItIN Hb% 46A +postural 'p0stS@r@l OA% 3 +posture 'p0stS@R J2%,M6% 22A,6A +postured 'p0stS@d Jc%,Jd% 22A,6A +postures 'p0stS@z Ja%,Mj% 22A,6A +posturing 'p0stS@rIN Jb%,M6% 32A,6A +posturings 'p0stS@rINz Mj% 3 +posy 'p@UzI K8% 2 +pot p0t J4%,K6% 13A,6A,15B +pot-shot 'p0t-S0t K6% 2 +pot-shots 'p0t-S0ts Kj% 2 +pot-trained 'p0t-treInd OA% 2 +potable 'p@Ut@bl OA$ 3 +potash 'p0t&S L@% 2 +potassium p@'t&sI@m L@% 4 +potation p@U'teISn K6$ 3 +potations p@U'teISnz Kj$ 3 +potato p@'teIt@U K7% 3 +potatoes p@'teIt@Uz Kj% 3 +potbellied p0t'belId OA% 3 +potbellies p0t'belIz Kj% 3 +potbelly p0t'belI K8% 3 +potboiler 'p0tboIl@R K6% 3 +potboilers 'p0tboIl@z Kj% 3 +potbound 'p0tbaUnd OA$ 2 +potboy 'p0tboI K6$ 2 +potboys 'p0tboIz Kj$ 2 +poteen p0'tin L@$ 2 +potencies 'p@UtnsIz Mj$ 3 +potency 'p@UtnsI M8% 3 +potent 'p@Utnt OA% 2 +potentate 'p@UtnteIt K6% 3 +potentates 'p@UtnteIts Kj% 3 +potential p@'tenSl M6%,OA% 3 +potentialities p@,tenSI'&lItIz Mj% 6 +potentiality p@,tenSI'&lItI M8% 6 +potentially p@'tenS@lI Pu% 4 +potentials p@'tenSlz Mj% 3 +potently 'p@UtntlI Pu% 3 +pothead 'p0thed K6$ 2 +potheads 'p0thedz Kj$ 2 +pother 'p0D@R K6$ 2 +potherb 'p0th3b K6$ 2 +potherbs 'p0th3bz Kj$ 2 +pothers 'p0D@z Kj$ 2 +pothole 'p0th@Ul K6% 2 +potholer 'p0th@Ul@R K6% 3 +potholers 'p0th@Ul@z Kj% 3 +potholes 'p0th@Ulz Kj% 2 +pothook 'p0thUk K6$ 2 +pothooks 'p0thUks Kj$ 2 +pothouse 'p0thaUs K6$ 2 +pothouses 'p0thaUzIz Kj$ 3 +pothunter 'p0thVnt@R K6$ 3 +pothunters 'p0thVnt@z Kj$ 3 +potion 'p@USn K6% 2 +potions 'p@USnz Kj% 2 +potman 'p0tm&n Ki$ 2 +potmen 'p0tmen Kj$ 2 +potpourri ,p@U'pU@ri K6% 3 +potpourris ,p@U'pU@riz Kj$ 3 +pots p0ts Ja%,Kj% 13A,6A,15B +potsherd 'p0t+S3d K6$ 2 +potsherds 'p0t+S3dz Kj$ 2 +pottage 'p0tIdZ M6$ 2 +pottages 'p0tIdZIz Mj$ 3 +potted 'p0tId Jc%,Jd%,OA% 23A,6A,15B +potter 'p0t@R I0%,K6% 22A,2C +pottered 'p0t@d Ic%,Id% 22A,2C +potterer 'p0t@r@R K6% 3 +potterers 'p0t@r@z Kj% 3 +potteries 'p0t@rIz Mj% 3 +pottering 'p0t@rIN Ib% 32A,2C +potters 'p0t@z Ia%,Kj% 22A,2C +pottery 'p0t@rI M8% 3 +pottier 'p0tI@R Or% 3 +potties 'p0tIz Kj% 2 +pottiest 'p0tIIst Os% 3 +potting 'p0tIN Jb% 23A,6A,15B +potty 'p0tI K8%,OD% 2 +pouch paUtS H1%,K7% 12A,6A +pouched paUtSt Hc%,Hd% 12A,6A +pouches 'paUtSIz Ha%,Kj% 22A,6A +pouching 'paUtSIN Hb% 22A,6A +pouf puf K6$ 1 +pouffe puf K6$ 1 +pouffes pufs Kj$ 1 +poufs pufs Kj$ 1 +poulterer 'p@Ult@r@R K6% 3 +poulterers 'p@Ult@r@z Kj% 3 +poultice 'p@UltIs H2$,K6% 26A +poulticed 'p@UltIst Hc$,Hd$ 26A +poultices 'p@UltIsIz Ha$,Kj% 36A +poulticing 'p@UltIsIN Hb$ 36A +poultry 'p@UltrI Kj% 2 +pounce paUns I2%,K6% 13A +pounced paUnst Ic%,Id% 13A +pounces 'paUnsIz Ia%,Kj% 23A +pouncing 'paUnsIN Ib% 23A +pound paUnd J0%,K6% 12C,3A,6A,15A +poundage 'paUndIdZ L@% 2 +pounded 'paUndId Jc%,Jd% 22C,3A,6A,15A +pounder 'paUnd@R K6$ 2 +pounders 'paUnd@z Kj$ 2 +pounding 'paUndIN Jb% 22C,3A,6A,15A +pounds paUndz Ja%,Kj% 12C,3A,6A,15A +pour pOR J0% 12C,6A,12B,13B,14,15A,15B +poured pOd Jc%,Jd% 12C,6A,12B,13B,14,15A,15B +pouring 'pOrIN Jb% 22C,6A,12B,13B,14,15A,15B +pours pOz Ja% 12C,6A,12B,13B,14,15A,15B +pout paUt J0%,K6% 12A,6A +pouted 'paUtId Jc%,Jd% 22A,6A +pouting 'paUtIN Jb% 22A,6A +poutingly 'paUtINlI Pu% 3 +pouts paUts Ja%,Kj% 12A,6A +poverty 'p0v@tI L@% 3 +poverty-stricken 'p0v@tI-strIk@n OA% 5 +powder 'paUd@R J0%,M6% 22A,6A +powder-flask 'paUd@-flAsk K6% 3 +powder-flasks 'paUd@-flAsks Kj% 3 +powder-horn 'paUd@-hOn K6% 3 +powder-horns 'paUd@-hOnz Kj% 3 +powder-magazine 'paUd@-m&g@zin K6% 5 +powder-magazines 'paUd@-m&g@zinz Kj% 5 +powder-puff 'paUd@-pVf K6% 3 +powder-puffs 'paUd@-pVfs Kj% 3 +powder-room 'paUd@-rum K6% 3 +powder-rooms 'paUd@-rumz Kj% 3 +powdered 'paUd@d Jc%,Jd%,OA% 22A,6A +powdering 'paUd@rIN Jb% 32A,6A +powders 'paUd@z Ja%,Mj% 22A,6A +powdery 'paUd@rI OA% 3 +power 'paU@R H0%,M6* 26A +power-dive 'paU@-daIv H2$,K6% 3 +power-dived 'paU@-daIvd Hc$,Hd$ 3 +power-dives 'paU@-daIvz Ha$,Kj$ 3 +power-diving 'paU@-daIvIN Hb$ 4 +power-point 'paU@-poInt K6% 3 +power-points 'paU@-poInts Kj% 3 +power-station 'paU@-steISn K6% 4 +power-stations 'paU@-steISnz Kj% 4 +powerboat 'paU@b@Ut K6% 3 +powerboats 'paU@b@Uts Kj% 3 +powered 'paU@d Hc%,Hd%,OA% 26A +powerful 'paU@f@l OA% 3 +powerfully 'paU@f@lI Pu% 4 +powerhouse 'paU@haUs K6% 3 +powerhouses 'paU@haUzIz Kj% 4 +powering 'paU@rIN Hb% 36A +powerless 'paU@lIs OA% 3 +powerlessly 'paU@lIslI Pu% 4 +powers 'paU@z Ha%,Mj% 26A +powwow 'paUwaU I0$,K6$ 2 +powwowed 'paUwaUd Ic$,Id$ 2 +powwowing 'paUwaUIN Ib$ 3 +powwows 'paUwaUz Ia$,Kj$ 2 +pox p0ks Ki% 1 +pp 'peIdZIz Y)% 2 +pr_ecis 'preIsi H5%,K9% 2 +practicability ,pr&ktIk@'bIlItI L@% 6 +practicable 'pr&ktIk@bl OA% 4 +practicably 'pr&ktIk@blI Pu% 4 +practical 'pr&ktIkl OA% 3 +practicalities ,pr&ktI'k&lItIz Mj% 5 +practicality ,pr&ktI'k&lItI M8% 5 +practically 'pr&ktIklI Pu% 3 +practice 'pr&ktIs M6% 2 +practices 'pr&ktIsIz Mj% 3 +practician pr&k'tISn K6$ 3 +practicians pr&k'tISnz Kj$ 3 +practise 'pr&ktIs J2% 22A,2B,3A,4A,6A,6C +practised 'pr&ktIst Jc%,Jd%,OA% 22A,2B,3A,4A,6A,6C +practises 'pr&ktIsIz Ja% 32A,2B,3A,4A,6A,6C +practising 'pr&ktIsIN Jb% 32A,2B,3A,4A,6A,6C +practitioner pr&k'tIS@n@R K6% 4 +practitioners pr&k'tIS@n@z Kj% 4 +praesidium prI'sIdI@m K6$ 4 +praesidiums prI'sIdI@mz Kj$ 4 +praetor 'prit@R K6$ 2 +praetorian prI'tOrI@n OA$ 4 +praetors 'prit@z Kj$ 2 +pragmatic pr&g'm&tIk OA% 3 +pragmatically pr&g'm&tIklI Pu% 4 +pragmatism 'pr&gm@tIz@m L@% 4 +pragmatist 'pr&gm@tIst K6% 3 +pragmatists 'pr&gm@tIsts Kj% 3 +prairie 'pre@rI K6% 2 +prairies 'pre@rIz Kj% 2 +praise preIz H2%,M6% 16A +praised preIzd Hc%,Hd% 16A +praises 'preIzIz Ha%,Mj% 26A +praiseworthily 'preIzw3DIlI Pu% 4 +praiseworthiness 'preIzw3DIn@s L@% 4 +praiseworthy 'preIzw3DI OA% 3 +praising 'preIzIN Hb% 26A +pram pr&m K6% 1 +prams pr&mz Kj% 1 +prance prAns I2%,K6% 12A,2C +pranced prAnst Ic%,Id% 12A,2C +prances 'prAnsIz Ia%,Kj% 22A,2C +prancing 'prAnsIN Ib% 22A,2C +prank pr&Nk K6% 1 +pranks pr&Nks Kj% 1 +prate preIt I2$ 12A,2C +prated 'preItId Ic$,Id$ 22A,2C +prates preIts Ia$ 12A,2C +prating 'preItIN Ib$ 22A,2C +prattle 'pr&tl I2%,L@% 22A,2C +prattled 'pr&tld Ic%,Id% 22A,2C +prattler 'pr&tl@R K6% 2 +prattlers 'pr&tl@z Kj% 2 +prattles 'pr&tlz Ia% 22A,2C +prattling 'pr&tlIN Ib% 22A,2C +prawn prOn I0$,K6% 1 +prawned prOnd Ic$,Id$ 1 +prawning 'prOnIN Ib$ 2 +prawns prOnz Ia$,Kj% 1 +pray preI J0% 12A,3A,11,14,17 +prayed preId Jc%,Jd% 12A,3A,11,14,17 +prayer pre@R M6% 1 +prayer-book 'pre@-bUk K6% 2 +prayer-books 'pre@-bUks Kj% 2 +prayer-mat 'pre@-m&t K6% 2 +prayer-mats 'pre@-m&ts Kj% 2 +prayer-meeting 'pre@-mitIN K6% 3 +prayer-meetings 'pre@-mitINz Kj% 3 +prayer-rug 'pre@-rVg K6% 2 +prayer-rugs 'pre@-rVgz Kj% 2 +prayer-wheel 'pre@-wil K6% 2 +prayer-wheels 'pre@-wilz Kj% 2 +prayers pre@z Mj% 1 +praying 'preIIN Jb% 22A,3A,11,14,17 +prays preIz Ja% 12A,3A,11,14,17 +pre- pri- U-% 1 +pre-eminence pri-'emIn@ns L@% 4 +pre-eminent ,pri-'emIn@nt OA% 4 +pre-eminently ,pri-'emIn@ntlI Pu% 5 +pre-empt ,pri-'empt H0% 26A +pre-empted ,pri-'emptId Hc%,Hd% 36A +pre-empting ,pri-'emptIN Hb% 36A +pre-emption ,pri-'empSn L@% 3 +pre-emptive pri-'emptIv OA% 3 +pre-empts ,pri-'empts Ha% 26A +pre-exist ,pri-Ig'zIst I0% 32A +pre-existed ,pri-Ig'zIstId Ic%,Id% 42A +pre-existence ,pri-Ig'zIst@ns K6% 4 +pre-existences ,pri-Ig'zIst@nsIz Kj$ 5 +pre-existent ,pri-Ig'zIst@nt OA% 4 +pre-existing ,pri-Ig'zIstIN Ib% 42A +pre-exists ,pri-Ig'zIsts Ia% 32A +pre-packaged ,pri-'p&kIdZd OA% 3 +preach pritS J1% 12A,2B,2C,3A,6A,12A,13A +preached pritSt Jc%,Jd% 12A,2B,2C,3A,6A,12A,13A +preacher 'pritS@R K6% 2 +preachers 'pritS@z Kj% 2 +preaches 'pritSIz Ja% 22A,2B,2C,3A,6A,12A,13A +preachified 'pritSIfaId Ic$,Id$ 3 +preachifies 'pritSIfaIz Ia$ 3 +preachify 'pritSIfaI I3$ 3 +preachifying 'pritSIfaIIN Ib$ 4 +preaching 'pritSIN Jb% 22A,2B,2C,3A,6A,12A,13A +preamble pri'&mbl K6% 3 +preambles pri'&mblz Kj% 3 +prearrange ,pri@'reIndZ H2% 3 +prearranged ,pri@'reIndZd Hc%,Hd% 3 +prearrangement ,pri@'reIndZm@nt K6% 4 +prearrangements ,pri@'reIndZm@nts Kj% 4 +prearranges ,pri@'reIndZIz Ha% 4 +prearranging ,pri@'reIndZIN Hb% 4 +prebend 'preb@nd K6$ 2 +prebendaries 'preb@ndrIz Kj$ 3 +prebendary 'preb@ndrI K8$ 3 +prebends 'preb@ndz Kj$ 2 +precarious prI'ke@rI@s OA% 4 +precariously prI'ke@rI@slI Pu% 5 +precariousness prI'ke@rI@snIs L@% 5 +precast ,pri'kAst OA% 2 +precaution prI'kOSn M6% 3 +precautionary ,prI'kOS@n@rI OA% 5 +precautions prI'kOSnz Mj% 3 +precede prI'sid J2% 22A,6A +preceded prI'sidId Jc%,Jd% 32A,6A +precedence 'presId@ns L@% 3 +precedent 'presId@nt K6% 3 +precedented 'presId@ntId OA% 4 +precedents 'presId@nts Kj% 3 +precedes prI'sidz Ja% 22A,6A +preceding prI'sidIN Jb%,OA% 32A,6A +precentor prI'sent@R K6$ 3 +precentors prI'sent@z Kj$ 3 +precept 'prisept M6% 2 +preceptor prI'sept@R K6$ 3 +preceptors prI'sept@z Kj$ 3 +precepts 'prisepts Mj% 2 +precession prI'seSn K6$ 3 +precessions prI'seSnz Kj$ 3 +precinct 'prisINkt K6% 2 +precincts 'prisINkts Kj% 2 +preciosities ,preSI'0sItIz Mj$ 5 +preciosity ,preSI'0sItI M8$ 5 +precious 'preS@s OA%,Pu% 2 +preciously 'preS@slI Pu% 3 +preciousness 'preS@sn@s L@% 3 +precipice 'presIpIs K6% 3 +precipices 'presIpIsIz Kj% 4 +precipitate prI'sIpIt@t OA% 4 +precipitate prI'sIpIteIt H2%,K6% 46A,14 +precipitated prI'sIpIteItId Hc%,Hd% 56A,14 +precipitately prI'sIpIt@tlI Pu% 5 +precipitates prI'sIpIteIts Ha%,Kj% 46A,14 +precipitating prI'sIpIteItIN Hb% 56A,14 +precipitation prI,sIpI'teISn L@% 5 +precipitous prI'sIpIt@s OA% 4 +precipitously prI'sIpIt@slI Pu% 5 +precise prI'saIs OA% 2 +precised 'preIsid Hc$,Hd$ 2 +precisely prI'saIslI Pu% 3 +preciseness prI'saIsn@s L@% 3 +precises 'preIsiz Ha$ 2 +precising 'preIsiIN Hb$ 3 +precision prI'sIZn L@% 3 +preclude prI'klud H2% 26A,6C,14 +precluded prI'kludId Hc%,Hd% 36A,6C,14 +precludes prI'kludz Ha% 26A,6C,14 +precluding prI'kludIN Hb% 36A,6C,14 +preclusion prI'kluZn K6$ 3 +preclusions prI'kluZnz Kj$ 3 +precocious prI'k@US@s OA% 3 +precociously prI'k@US@slI Pu% 4 +precociousness prI'k@US@sn@s L@% 4 +precocity prI'k0sItI L@% 4 +precognition ,prik0g'nISn L@% 4 +preconceive ,prik@n'siv H2% 36A +preconceived ,prik@n'sivd Hc%,Hd% 36A +preconceives ,prik@n'sivz Ha% 36A +preconceiving ,prik@n'sivIN Hb% 46A +preconception ,prik@n'sepSn M6% 4 +preconceptions ,prik@n'sepSnz Mj% 4 +preconcerted ,prik@n's3tId OA$ 4 +precondition ,prik@n'dISn K6% 4 +preconditioned ,prik@n'dISnd OA% 4 +preconditions ,prik@n'dISnz Kj% 4 +precursor ,pri'k3s@R K6% 3 +precursors ,pri'k3s@z Kj% 3 +precursory ,pri'k3s@rI OA$ 4 +predator 'pred@t@R K6% 3 +predators 'pred@t@z Kj% 3 +predatory 'pred@trI OA% 3 +predecease ,pridI'sis H2$ 3 +predeceased ,pridI'sist Hc$,Hd$ 3 +predeceases ,pridI'sisIz Ha$ 4 +predeceasing ,pridI'sisIN Hb$ 4 +predecessor 'pridIses@R K6% 4 +predecessors 'pridIses@z Kj% 4 +predestinate ,pri'destIneIt H2$,OA$ 4 +predestinated ,pri'destIneItId Hc$,Hd$ 5 +predestinates ,pri'destIneIts Ha$ 4 +predestinating ,pri'destIneItIN Hb$ 5 +predestination ,pridestI'neISn K6$ 5 +predestinations ,pridestI'neISnz Kj$ 5 +predestine ,pri'destIn H2% 314,17 +predestined ,pri'destInd Hc%,Hd% 314,17 +predestines ,pri'destInz Ha% 314,17 +predestining ,pri'destInIN Hb% 414,17 +predetermination ,pridI,t3mI'neISn K6$ 6 +predeterminations ,pridI,t3mI'neISnz Kj$ 6 +predetermine ,pridI't3mIn H2% 46A,17 +predetermined ,pridI't3mInd Hc%,Hd% 46A,17 +predetermines ,pridI't3mInz Ha% 46A,17 +predetermining ,pridI't3mInIN Hb% 56A,17 +predicament prI'dIk@m@nt K6% 4 +predicaments prI'dIk@m@nts Kj% 4 +predicate 'predIk@t K6% 3 +predicate 'predIkeIt H2$ 36A,9,17 +predicated 'predIkeItId Hc$,Hd% 46A,9,17 +predicates 'predIk@ts Kj% 3 +predicates 'predIkeIts Ha$ 36A,9,17 +predicating 'predIkeItIN Hb$ 46A,9,17 +predicative prI'dIk@tIv OA% 4 +predict prI'dIkt H0% 26A,9,10 +predictability prI,dIkt@'bIlItI L@% 6 +predictable prI'dIkt@bl OA% 4 +predictably prI'dIkt@blI Pu% 4 +predicted prI'dIktId Hc%,Hd% 36A,9,10 +predicting prI'dIktIN Hb% 36A,9,10 +prediction prI'dIkSn M6% 3 +predictions prI'dIkSnz Mj% 3 +predictor prI'dIkt@R K6% 3 +predictors prI'dIkt@z Kj% 3 +predicts prI'dIkts Ha% 26A,9,10 +predigest ,pridaI'dZest H0$ 3 +predigested ,pridaI'dZestId Hc$,Hd% 4 +predigesting ,pridaI'dZestIN Hb$ 4 +predigests ,pridaI'dZests Ha$ 3 +predilection ,pridI'lekSn K6% 4 +predilections ,pridI'lekSnz Kj% 4 +predispose ,pridI'sp@Uz H2% 314,17 +predisposed ,pridI'sp@Uzd Hc%,Hd% 314,17 +predisposes ,pridI'sp@UzIz Ha% 414,17 +predisposing ,pridI'sp@UzIN Hb% 414,17 +predisposition ,pridIsp@'zISn K6% 5 +predispositions ,pridIsp@'zISnz Kj% 5 +predominance prI'd0mIn@ns L@% 4 +predominant prI'd0mIn@nt OA% 4 +predominantly prI'd0mIn@ntlI Pu% 5 +predominate prI'd0mIneIt I2% 42A,3A +predominated prI'd0mIneItId Ic%,Id% 52A,3A +predominates prI'd0mIneIts Ia% 42A,3A +predominating prI'd0mIneItIN Ib% 52A,3A +preen prin H0% 16A,14 +preened prind Hc%,Hd% 16A,14 +preening 'prinIN Hb% 26A,14 +preens prinz Ha% 16A,14 +prefab 'prif&b K6% 2 +prefabricate ,pri'f&brIkeIt H2% 46A +prefabricated ,pri'f&brIkeItId Hc%,Hd% 56A +prefabricates ,pri'f&brIkeIts Ha% 46A +prefabricating ,pri'f&brIkeItIN Hb% 56A +prefabrication ,prif&brI'keISn K6% 5 +prefabrications ,prif&brI'keISnz Kj$ 5 +prefabs 'prif&bz Kj% 2 +preface 'prefIs H2%,K6% 214 +prefaced 'prefIst Hc%,Hd% 214 +prefaces 'prefIsIz Ha%,Kj% 314 +prefacing 'prefIsIN Hb% 314 +prefatory 'pref@trI OA% 3 +prefect 'prifekt K6% 2 +prefects 'prifekts Kj% 2 +prefectural pri'fektS@r@l OA$ 4 +prefecture 'prifektjU@R K6% 3 +prefectures 'prifektjU@z Kj% 3 +prefer prI'f3R H4% 26A,6D,7A,9,14,17 +preferable 'prefr@bl OA% 3 +preferably 'prefr@blI Pu% 3 +preference 'prefr@ns M6% 2 +preferences 'prefr@nsIz Mj% 3 +preferential ,pref@'renSl OA% 4 +preferment prI'f3m@nt L@% 3 +preferred prI'f3d Hc%,Hd% 26A,6D,7A,9,14,17 +preferring prI'f3rIN Hb% 36A,6D,7A,9,14,17 +prefers prI'f3z Ha% 26A,6D,7A,9,14,17 +prefigure ,pri'fIg@R H2$ 36A,9,10 +prefigured ,pri'fIg@d Hc$,Hd$ 36A,9,10 +prefigures ,pri'fIg@z Ha$ 36A,9,10 +prefiguring ,pri'fIg@rIN Hb$ 46A,9,10 +prefix 'prifIks K7% 2 +prefix ,pri'fIks H1% 26A,14 +prefixed ,pri'fIkst Hc%,Hd% 26A,14 +prefixes 'prifIksIz Kj% 3 +prefixes ,pri'fIksIz Ha$ 36A,14 +prefixing ,pri'fIksIN Hb$ 36A,14 +pregnancies 'pregn@nsIz Mj% 3 +pregnancy 'pregn@nsI M8% 3 +pregnant 'pregn@nt OA% 2 +preheat ,pri'hit H0% 26A +preheated ,pri'hitId Hc%,Hd% 36A +preheating ,pri'hitIN Hb% 36A +preheats ,pri'hits Ha% 26A +prehensile ,pri'hensaIl OA% 3 +prehistoric ,prihI'st0rIk OA% 4 +prehistorical ,prihI'st0rIkl OA$ 5 +prehistories ,pri'hIstrIz Mj$ 3 +prehistory ,pri'hIstrI M8% 3 +prejudge ,pri'dZVdZ H2% 26A +prejudged ,pri'dZVdZd Hc%,Hd% 26A +prejudgement ,pri'dZVdZm@nt K6% 3 +prejudgements ,pri'dZVdZm@nts Kj% 3 +prejudges ,pri'dZVdZIz Ha% 36A +prejudging ,pri'dZVdZIN Hb% 36A +prejudice 'predZUdIs H2%,M6% 36A,15A +prejudiced 'predZUdIst Hc%,Hd% 36A,15A +prejudices 'predZUdIsIz Ha%,Mj% 46A,15A +prejudicial ,predZU'dISl OA% 4 +prejudicing 'predZUdIsIN Hb% 46A,15A +prelacies 'prel@sIz Kj$ 3 +prelacy 'prel@sI K8$ 3 +prelate 'prel@t K6% 2 +prelates 'prel@ts Kj% 2 +prelim prI'lIm K6$ 2 +preliminaries prI'lImIn@rIz Kj% 5 +preliminary prI'lImIn@rI K8%,OA% 5 +prelims prI'lImz Kj$ 2 +prelude 'preljud H2$,K6% 26A +preluded 'preljudId Hc$,Hd$ 36A +preludes 'preljudz Ha$,Kj% 26A +preluding 'preljudIN Hb$ 36A +premarital ,pri'm&rItl OA% 4 +premature 'prem@tjU@R OA% 3 +prematurely ,prem@'tjU@lI Pu% 4 +premeditate ,pri'medIteIt H2% 46A +premeditated ,pri'medIteItId Hc%,Hd% 56A +premeditates ,pri'medIteIts Ha% 46A +premeditating ,pri'medIteItIN Hb% 56A +premeditation ,primedI'teISn L@% 5 +premi`ere 'premIe@R K6% 3 +premi`eres 'premIe@z Kj% 3 +premier 'premI@R K6%,OA% 3 +premiers 'premI@z Kj% 3 +premiership 'premI@SIp K6% 4 +premierships 'premI@SIps Kj% 4 +premise 'premIs H2$,K6% 26A,9 +premised 'premIst Hc$,Hd$ 26A,9 +premises 'premIsIz Ha$,Kj% 36A,9 +premising 'premIsIN Hb$ 36A,9 +premiss 'premIs H1$,K7$ 26A,9 +premissed 'premIst Hc$,Hd$ 26A,9 +premisses 'premIsIz Ha$,Kj$ 36A,9 +premissing 'premIsIN Hb$ 36A,9 +premium 'primI@m K6% 3 +premiums 'primI@mz Kj% 3 +premonition ,prim@'nISn K6% 4 +premonitions ,prim@'nISnz Kj% 4 +premonitory prI'm0nIt@rI OA$ 5 +prenatal ,pri'neItl OA% 3 +prentice 'prentIs K6$ 2 +prentices 'prentIsIz Kj$ 3 +preoccupation pri,0kjU'peISn M6% 5 +preoccupations pri,0kjU'peISnz Mj% 5 +preoccupied pri'0kjUpaId Hc%,Hd% 46A +preoccupies pri'0kjUpaIz Ha% 46A +preoccupy pri'0kjUpaI H3% 46A +preoccupying pri'0kjUpaIIN Hb% 56A +preordain ,priO'deIn H0% 36A,9 +preordained ,priO'deInd Hc%,Hd% 36A,9 +preordaining ,priO'deInIN Hb% 46A,9 +preordains ,priO'deInz Ha% 36A,9 +prep prep M6$ 1 +prepacked ,pri'p&kt OA% 2 +prepaid ,pri'peId Hc%,Hd% 26A +preparation ,prep@'reISn M6% 4 +preparations ,prep@'reISnz Mj% 4 +preparatory prI'p&r@trI OA% 4 +prepare prI'pe@R J2% 23A,6A,7A,14 +prepared prI'pe@d Jc%,Jd% 23A,6A,7A,14 +preparedness prI'pe@rIdn@s L@% 4 +prepares prI'pe@z Ja% 23A,6A,7A,14 +preparing prI'pe@rIN Jb% 33A,6A,7A,14 +prepay ,pri'peI H5% 26A +prepaying ,pri'peIIN Hb% 36A +prepays ,prI'peIz Ha% 26A +preponderance prI'p0nd@r@ns K6% 4 +preponderances prI'p0nd@r@nsIz Kj$ 5 +preponderant prI'p0nd@r@nt OA% 4 +preponderantly prI'p0nd@r@ntlI Pu% 5 +preponderate prI'p0nd@reIt I2$ 42A,2C +preponderated prI'p0nd@reItId Ic$,Id$ 52A,2C +preponderates prI'p0nd@reIts Ia$ 42A,2C +preponderating prI'p0nd@reItIN Ib$ 52A,2C +preposition ,prep@'zISn K6% 4 +prepositional ,prep@'zIS@nl OA% 5 +prepositions ,prep@'zISnz Kj% 4 +prepossess ,prip@'zes H1$ 36A,15A +prepossessed ,prip@'zest Hc$,Hd$ 36A,15A +prepossesses ,prip@'zesIz Ha$ 46A,15A +prepossessing ,prip@'zesIN Hb$,OA% 46A,15A +prepossession ,prip@'zeSn K6$ 4 +prepossessions ,prip@'zeSnz Kj$ 4 +preposterous prI'p0st@r@s OA% 4 +preposterously prI'p0st@r@slI Pu% 5 +preps preps Mj$ 1 +prepuce 'pripjus K6$ 2 +prepuces 'pripjusIz Kj$ 3 +prerecord ,prirI'kOd H0% 36A +prerecorded ,prirI'kOdId Hc%,Hd% 46A +prerecording ,prirI'kOdIN Hb% 46A +prerecords ,prirI'kOdz Ha% 36A +prerequisite ,pri'rekwIzIt K6%,OA% 4 +prerequisites ,pri'rekwIzIts Kj% 4 +prerogative prI'r0g@tIv K6% 4 +prerogatives prI'r0g@tIvz Kj% 4 +presage 'presIdZ K6$ 2 +presage prI'seIdZ H2$ 26A +presaged prI'seIdZd Hc$,Hd$ 26A +presages 'presIdZIz Kj$ 3 +presages prI'seIdZIz Ha$ 36A +presaging prI'seIdZIN Hb$ 36A +presbyter 'prezbIt@R K6$ 3 +presbyteries 'prezbItrIz Kj$ 3 +presbyters 'prezbIt@z Kj$ 3 +presbytery 'prezbItrI K8% 3 +prescience 'presI@ns L@$ 3 +prescient 'presI@nt OA$ 3 +presciently 'presI@ntlI Pu$ 4 +prescribe prI'skraIb J2% 22A,3A,6A,8,10,14,21 +prescribed prI'skraIbd Jc%,Jd% 22A,3A,6A,8,10,14,21 +prescribes prI'skraIbz Ja% 22A,3A,6A,8,10,14,21 +prescribing prI'skraIbIN Jb% 32A,3A,6A,8,10,14,21 +prescript 'priskrIpt K6$ 2 +prescription prI'skrIpSn M6% 3 +prescriptions prI'skrIpSnz Mj% 3 +prescriptive prI'skrIptIv OA% 3 +prescripts 'priskrIpts Kj$ 2 +presence 'prezns L@% 2 +present 'preznt K6*,OA* 2 +present prI'zent H0%,Ki% 26A,14,15A +present-day ,preznt-'deI Oq% 3 +presentable prI'zent@bl OA% 4 +presentably prI'zent@blI Pu% 4 +presentation ,prezn'teISn M6% 4 +presentations ,prezn'teISnz Mj% 4 +presented prI'zentId Hc%,Hd% 36A,14,15A +presentiment prI'zentIm@nt K6% 4 +presentiments prI'zentIm@nts Kj% 4 +presenting prI'zentIN Hb% 36A,14,15A +presently 'prezntlI Pu% 3 +presents 'preznts Kj% 2 +presents prI'zents Ha% 26A,14,15A +preservable prI'z3v@bl OA% 4 +preservation ,prez@'veISn L@% 4 +preservative prI'z3v@tIv K6%,OA% 4 +preservatives prI'z3v@tIvz Kj% 4 +preserve prI'z3v H2%,K6% 26A,14 +preserved prI'z3vd Hc%,Hd% 26A,14 +preserver prI'z3v@R K6% 3 +preservers prI'z3v@z Kj% 3 +preserves prI'z3vz Ha%,Kj% 26A,14 +preserving prI'z3vIN Hb% 36A,14 +preside prI'zaId I2% 22A,2C,3A +presided prI'zaIdId Ic%,Id% 32A,2C,3A +presidencies 'prezId@nsIz Kj% 4 +presidency 'prezId@nsI K8% 4 +president 'prezId@nt K6* 3 +presidential ,prezI'denSl OA% 4 +presidents 'prezId@nts Kj% 3 +presides prI'zaIdz Ia% 22A,2C,3A +presiding prI'zaIdIN Ib% 32A,2C,3A +presidium prI'sIdI@m K6$ 4 +presidiums prI'sIdI@mz Kj$ 4 +press pres J1%,K7% 12A,2C,3A,4A,6A,14,15A,15B,17,22 +press-agencies 'pres-eIdZ@nsIz Kj% 4 +press-agency 'pres-eIdZ@nsI K8% 4 +press-agent 'pres-eIdZ@nt K6% 3 +press-agents 'pres-eIdZ@nts Kj% 3 +press-box 'pres-b0ks K7% 2 +press-boxes 'pres-b0ksIz Kj% 3 +press-clipping 'pres-klIpIN K6% 3 +press-clippings 'pres-klIpINz Kj% 3 +press-cutting 'pres-kVtIN K6% 3 +press-cuttings 'pres-kVtINz Kj% 3 +press-galleries 'pres-g&l@rIz Kj% 4 +press-gallery 'pres-g&l@rI K8% 4 +press-gang 'pres-g&N K6% 2 +press-gangs 'pres-g&Nz Kj% 2 +press-lord 'pres-lOd K6$ 2 +press-lords 'pres-lOdz Kj$ 2 +press-photographer ,pres-f@'t0gr@f@R K6% 5 +press-photographers ,pres-f@'t0gr@f@z Kj% 5 +press-stud 'pres-stVd K6% 2 +press-studs 'pres-stVdz Kj% 2 +press-up 'pres-Vp K6% 2 +press-ups 'pres-Vps Kj% 2 +pressed prest Jc%,Jd% 12A,2C,3A,4A,6A,14,15A,15B,17,22 +presses 'presIz Ja%,Kj% 22A,2C,3A,4A,6A,14,15A,15B,17,22 +pressing 'presIN Jb%,K6%,OA% 22A,2C,3A,4A,6A,14,15A,15B,17,22 +pressingly 'presINlI Pu% 3 +pressings 'presINz Kj% 2 +pressman 'presm&n Ki% 2 +pressmark 'presmAk K6$ 2 +pressmarks 'presmAks Kj$ 2 +pressmen 'presmen Kj% 2 +pressure 'preS@R M6% 2 +pressure-cooker 'preS@-kUk@R K6% 4 +pressure-cookers 'preS@-kUk@z Kj% 4 +pressure-gauge 'preS@-geIdZ K6% 3 +pressure-gauges 'preS@-geIdZIz Kj% 4 +pressures 'preS@z Mj% 2 +pressurized 'preS@raIzd OA% 3 +prestidigitation ,prestI,dIdZI'teISn M6$ 6 +prestidigitations ,prestI,dIdZI'teISnz Mj$ 6 +prestidigitator ,prestI'dIdZIteIt@R K6$ 6 +prestidigitators ,prestI'dIdZIteIt@z Kj$ 6 +prestige pre'stiZ L@% 2 +prestigious pre'stIdZ@s OA% 3 +prestissimo pre'stIsIm@U OA$,Pu$ 4 +presto 'prest@U OA$,Pu$ 2 +prestressed ,pri'strest OA% 2 +presumable prI'zjum@bl OA$ 4 +presumably prI'zjum@blI Pu% 4 +presume prI'zjum J2% 23A,6A,7A,9,25 +presumed prI'zjumd Jc%,Jd% 23A,6A,7A,9,25 +presumes prI'zjumz Ja% 23A,6A,7A,9,25 +presuming prI'zjumIN Jb%,OA% 33A,6A,7A,9,25 +presumption prI'zVmpSn M6% 3 +presumptions prI'zVmpSnz Mj$ 3 +presumptive prI'zVmptIv OA$ 3 +presumptively prI'zVmptIvlI Pu$ 4 +presumptuous prI'zVmptSU@s OA% 4 +presumptuously prI'zVmptSU@slI Pu% 5 +presuppose ,pris@'p@Uz H2% 36A,9 +presupposed ,pris@'p@Uzd Hc%,Hd% 36A,9 +presupposes ,pris@'p@UzIz Ha% 46A,9 +presupposing ,pris@'p@UzIN Hb% 46A,9 +presupposition ,prisVp@'zISn M6% 5 +presuppositions ,prisVp@'zISnz Mj% 5 +pretence prI'tens M6% 2 +pretences prI'tensIz Mj% 3 +pretend prI'tend J0% 23A,6A,7A,9 +pretended prI'tendId Jc%,Jd% 33A,6A,7A,9 +pretendedly prI'tendIdlI Pu$ 4 +pretender prI'tend@R K6% 3 +pretenders prI'tend@z Kj% 3 +pretending prI'tendIN Jb% 33A,6A,7A,9 +pretends prI'tendz Ja% 23A,6A,7A,9 +pretension prI'tenSn M6% 3 +pretensions prI'tenSnz Mj% 3 +pretentious prI'tenS@s OA% 3 +pretentiously prI'tenS@slI Pu% 4 +pretentiousness prI'tenS@sn@s L@% 4 +preterit 'pret@rIt K6$,OA$ 3 +preterite 'pret@rIt K6$,OA$ 3 +preterites 'pret@rIts Kj$ 3 +preterits 'pret@rIts Kj$ 3 +preternatural ,prit@'n&tSr@l OA% 4 +preternaturally ,prit@'n&tSr@lI Pu% 5 +pretext 'pritekst K6% 2 +pretexts 'priteksts Kj% 2 +pretor 'prit@R K6$ 2 +pretors 'prit@z Kj$ 2 +prettier 'prItI@R Or% 3 +pretties 'prItIz Kj$ 2 +prettiest 'prItIIst Os% 3 +prettified 'prItIfaId Hc%,Hd% 36A +prettifies 'prItIfaIz Ha% 36A +prettify 'prItIfaI H3% 36A +prettifying 'prItIfaIIN Hb% 46A +prettily 'prItIlI Pu% 3 +prettiness 'prItIn@s L@% 3 +pretty 'prItI K8%,OD%,Pu% 2 +pretty-pretty 'prItI-prItI OA% 4 +pretzel 'pretsl K6% 2 +pretzels 'pretslz Kj% 2 +prevail prI'veIl I0% 22A,3A +prevailed prI'veIld Ic%,Id% 22A,3A +prevailing prI'veIlIN Ib%,OA% 32A,3A +prevails prI'veIlz Ia% 22A,3A +prevalence 'prev@l@ns L@% 3 +prevalent 'prev@l@nt OA% 3 +prevaricate prI'v&rIkeIt I2% 42A +prevaricated prI'v&rIkeItId Ic%,Id% 52A +prevaricates prI'v&rIkeIts Ia% 42A +prevaricating prI'v&rIkeItIN Ib% 52A +prevarication prI,v&rI'keISn M6% 5 +prevarications prI,v&rI'keISnz Mj$ 5 +prevent prI'vent H0% 26A,14,19C +preventable prI'vent@bl OA% 4 +preventative prI'vent@tIv K6% 4 +preventatives prI'vent@tIvz Kj% 4 +prevented prI'ventId Hc%,Hd% 36A,14,19C +preventing prI'ventIN Hb% 36A,14,19C +prevention prI'venSn L@% 3 +preventive prI'ventIv OA% 3 +prevents prI'vents Ha% 26A,14,19C +preview 'privju H0%,K6% 2 +previewed 'privjud Hc%,Hd% 2 +previewing 'privjuIN Hb% 3 +previews 'privjuz Ha%,Kj% 2 +previous 'privI@s OA% 3 +previously 'privI@slI Pu% 4 +prevision ,pri'vIZn M6$ 3 +previsions ,pri'vIZnz Mj$ 3 +prey preI I0%,Ki% 13A +preyed preId Ic%,Id% 13A +preying 'preIIN Ib% 23A +preys preIz Ia% 13A +price praIs H2%,M6% 16A +price-control 'praIs-k@ntr@Ul K6% 3 +price-controlled 'praIs-k@ntr@Uld OA% 3 +price-controls 'praIs-k@ntr@Ulz Kj% 3 +priced praIst Hc%,Hd% 16A +priceless 'praIsl@s OA% 2 +pricelist 'praIslIst K6% 2 +pricelists 'praIslIsts Kj% 2 +prices 'praIsIz Ha%,Mj% 26A +pricey 'praIsI OE% 2 +pricier 'praIsI@R Or% 3 +priciest 'praIsIIst Os% 3 +pricing 'praIsIN Hb% 26A +prick prIk J0%,K6% 12A,6A,15B +pricked prIkt Jc%,Jd% 12A,6A,15B +pricker 'prIk@R K6% 2 +prickers 'prIk@z Kj% 2 +pricking 'prIkIN Jb%,K6% 22A,6A,15B +prickings 'prIkINz Kj% 2 +prickle 'prIkl J2%,K6% 2 +prickled 'prIkld Jc%,Jd% 2 +prickles 'prIklz Ja%,Kj% 2 +pricklier 'prIklI@R Or% 3 +prickliest 'prIklIIst Os% 3 +prickling 'prIklIN Jb% 2 +prickly 'prIklI OD% 2 +pricks prIks Ja%,Kj% 12A,6A,15B +pride praId H2%,M6% 1 +prided 'praIdId Hc%,Hd% 2 +prides praIdz Ha%,Mj% 1 +priding 'praIdIN Hb% 2 +prie-dieu 'pri-dj3 K6$ 2 +prie-dieus 'pri-dj3z Kj$ 2 +pried praId Jc%,Jd% 12A,2C,3A,15A,15B,22 +pries praIz Ja% 12A,2C,3A,15A,15B,22 +priest prist K6% 1 +priest-ridden 'prist-rIdn OA$ 3 +priestcraft 'pristkrAft L@% 2 +priestess 'pristes K7% 2 +priestesses 'pristesIz Kj% 3 +priesthood 'pristhUd K6% 2 +priesthoods 'pristhUdz Kj% 2 +priestlier 'pristlI@R Or$ 3 +priestliest 'pristlIIst Os$ 3 +priestlike 'pristlaIk OA% 2 +priestly 'pristlI OD% 2 +priests prists Kj% 1 +prig prIg K6% 1 +priggish 'prIgIS OA% 2 +priggishly 'prIgISlI Pu% 3 +priggishness 'prIgISn@s L@% 3 +prigs prIgz Kj% 1 +prim prIm H4$,OE% 1 +prima 'prim@ OA% 2 +prima ballerina ,prim@ ,b&l@'rin@ K6% 6 +prima ballerinas ,prim@ ,b&l@'rin@z Kj% 6 +prima donna ,prim@ 'd0n@ K6% 4 +prima donnas ,prim@ 'd0n@z Kj% 4 +prima facie ,praIm@ 'feISi OA%,Pu% 4 +primacies 'praIm@sIz Kj$ 3 +primacy 'praIm@sI K8% 3 +primaeval praI'mivl OA% 3 +primal 'praIml OA% 2 +primaries 'praIm@rIz Kj% 3 +primarily 'praIm@r@lI Pu% 4 +primary 'praIm@rI K8%,OA% 3 +primate 'praImeIt K6% 2 +primates 'praImeIts Kj% 2 +prime praIm H2%,L@%,OA% 16A +primed praImd Hc%,Hd% 16A +primer 'praIm@R K6% 2 +primers 'praIm@z Kj% 2 +primes praImz Ha% 16A +primeval praI'mivl OA% 3 +priming 'praImIN Hb%,K6% 26A +primings 'praImINz Kj$ 2 +primitive 'prImItIv K6%,OA% 3 +primitively 'prImItIvlI Pu% 4 +primitiveness 'prImItIvn@s L@% 4 +primitives 'prImItIvz Kj% 3 +primly 'prImlI Pu% 2 +primmed prImd Hc$,Hd$ 1 +primmer 'prIm@R Or% 2 +primmest 'prImIst Os% 2 +primming 'prImIN Hb$ 2 +primness 'prImn@s L@% 2 +primogeniture ,praIm@U'dZenItS@R L@% 5 +primordial praI'mOdI@l OA% 4 +primp prImp H0$ 1 +primped prImpt Hc$,Hd$ 1 +primping 'prImpIN Hb$ 2 +primps prImps Ha$ 1 +primrose 'prImr@Uz K6% 2 +primroses 'prImr@UzIz Kj% 3 +prims prImz Ha$ 1 +primula 'prImjUl@ K6% 3 +primulas 'prImjUl@z Kj% 3 +primus 'praIm@s K7% 2 +primuses 'praIm@sIz Kj% 3 +prince prIns K6% 1 +princedom 'prInsd@m K6% 2 +princedoms 'prInsd@mz Kj% 2 +princelier 'prInslI@R Or% 3 +princeliest 'prInslIIst Os% 3 +princely 'prInslI OD% 2 +princes 'prInsIz Kj% 2 +princess prIn'ses K7% 2 +princesses prIn'sesIz Kj% 3 +principal 'prIns@pl K6%,OA% 3 +principalities ,prInsI'p&lItIz Kj% 5 +principality ,prInsI'p&lItI K8% 5 +principally 'prIns@plI Pu% 3 +principals 'prIns@plz Kj% 3 +principle 'prIns@pl K6% 3 +principled 'prIns@pld OA% 3 +principles 'prIns@plz Kj% 3 +prink prINk H0$ 1 +prinked prINkt Hc$,Hd$ 1 +prinking 'prINkIN Hb$ 2 +prinks prINks Ha$ 1 +print prInt J0%,M6% 12A,6A,15B +print-seller 'prInt-sel@R K6% 3 +print-sellers 'prInt-sel@z Kj% 3 +print-shop 'prInt-S0p K6% 2 +print-shops 'prInt-S0ps Kj% 2 +printable 'prInt@bl OA% 3 +printed 'prIntId Jc%,Jd% 22A,6A,15B +printer 'prInt@R K6% 2 +printers 'prInt@z Kj% 2 +printing 'prIntIN Jb%,M6% 22A,6A,15B +printing-ink 'prIntIN-INk K6% 3 +printing-inks 'prIntIN-INks Kj% 3 +printing-press 'prIntIN-pres K7% 3 +printing-presses 'prIntIN-presIz Kj% 4 +printings 'prIntINz Mj% 2 +printout 'prIntaUt K6% 2 +printouts 'prIntaUts Kj% 2 +prints prInts Ja%,Mj% 12A,6A,15B +prior 'praI@R K6%,OA% 2 +prioress 'praI@rIs K7% 3 +prioresses 'praI@rIsIz Kj% 4 +priories 'praI@rIz Kj% 3 +priorities praI'0rItIz Mj% 4 +priority praI'0rItI M8% 4 +priors 'praI@z Kj% 2 +priory 'praI@rI K8% 3 +prise praIz H2% 115A,15B +prised praIzd Hc%,Hd% 115A,15B +prises 'praIzIz Ha% 215A,15B +prising 'praIzIN Hb% 215A,15B +prism 'prIz@m K6% 2 +prismatic prIz'm&tIk OA% 3 +prisms 'prIz@mz Kj% 2 +prison 'prIzn M6% 2 +prison-breaking 'prIzn-breIkIN M6$ 4 +prison-breakings 'prIzn-breIkINz Mj$ 4 +prisoner 'prIzn@R K6% 3 +prisoners 'prIzn@z Kj% 3 +prisons 'prIznz Mj% 2 +pristine 'prIstin OA% 2 +prithee 'prIDI W-$ 2 +privacy 'prIv@sI L@% 3 +private 'praIvIt K6%,OA% 2 +privateer ,praIv@'tI@R K6% 3 +privateers ,praIv@'tI@z Kj% 3 +privately 'praIvItlI Pu% 3 +privates 'praIvIts Kj% 2 +privation praI'veISn M6% 3 +privations praI'veISnz Mj% 3 +privet 'prIvIt L@% 2 +privies 'prIvIz Kj% 2 +privilege 'prIv@lIdZ M6% 3 +privileged 'prIv@lIdZd OA% 3 +privileges 'prIv@lIdZIz Mj% 4 +privily 'prIvIlI Pu% 3 +privy 'prIvI K8%,OA% 2 +prize praIz H2%,K6% 115A,15B +prize-fight 'praIz-faIt K6% 2 +prize-fights 'praIz-faIts Kj% 2 +prize-money 'praIz-mVnI L@% 3 +prize-ring 'praIz-rIN K6$ 2 +prize-rings 'praIz-rINz Kj$ 2 +prized praIzd Hc%,Hd% 115A,15B +prizes 'praIzIz Ha%,Kj% 215A,15B +prizing 'praIzIN Hb$ 215A,15B +pro pr@U K6%,Pu% 1 +pro forma ,pr@U 'fOm@ OA%,Pu% 3 +pro rata ,pr@U 'rAt@ Pu% 3 +pro tem ,pr@U 'tem Pu% 2 +pro tempore ,pr@U 'temp@rI Pu$ 4 +pro- ,pr@U- U-% 1 +probabilistic ,pr0b@bI'lIstIk OA% 5 +probabilistically ,pr0b@bI'lIstIklI Pu% 6 +probabilities ,pr0b@'bIlItIz Mj% 5 +probability ,pr0b@'bIlItI M8% 5 +probable 'pr0b@bl K6%,OA% 3 +probables 'pr0b@blz Kj% 3 +probably 'pr0b@blI Pu* 3 +probate 'pr@UbeIt H2$,M6% 2 +probated 'pr@UbeItId Hc$,Hd$ 3 +probates 'pr@UbeIts Ha$,Mj$ 2 +probating 'pr@UbeItIN Hb$ 3 +probation pr@'beISn L@% 3 +probationary pr@'beISnrI OA% 4 +probationer pr@'beISn@R K6% 4 +probationers pr@'beISn@z Kj% 4 +probe pr@Ub H2%,K6% 16A +probed pr@Ubd Hc%,Hd% 16A +probes pr@Ubz Ha%,Kj% 16A +probing 'pr@UbIN Hb% 26A +probity 'pr@UbItI L@% 3 +problem 'pr0bl@m K6* 2 +problematic ,pr0bl@'m&tIk OA% 4 +problematically ,pr0bl@'m&tIklI Pu% 5 +problems 'pr0bl@mz Kj% 2 +proboscis pr@'b0sIs K7% 3 +proboscises pr@'b0sIsIz Kj$ 4 +procedural pr@'sidZ@r@l OA% 4 +procedure pr@'sidZ@R M6% 3 +procedures pr@'sidZ@z Mj% 3 +proceed pr@'sid I0% 22A,3A,4C +proceeded pr@'sidId Ic%,Id% 32A,3A,4C +proceeding pr@'sidIN Ib%,M6% 32A,3A,4C +proceedings pr@'sidINz Mj% 3 +proceeds 'pr@Usidz Kj% 2 +proceeds pr@'sidz Ia% 22A,3A,4C +process 'pr@Uses H1%,M7% 26A +process pr@'ses I1% 2 +process-server 'pr@UsIs-s3v@R K6$ 4 +process-servers 'pr@UsIs-s3v@z Kj$ 4 +processed 'pr@Usest Hc%,Hd% 26A +processed pr@'sest Ic%,Id% 2 +processes 'pr@UsesIz Ha%,Mj% 36A +processes pr@'sesIz Ia% 3 +processing 'pr@UsesIN Hb% 36A +processing pr@'sesIN Ib% 3 +procession pr@'seSn M6% 3 +processional pr@'seS@n@l OA% 4 +processions pr@'seSnz Mj% 3 +processor 'pr@Uses@R K6% 3 +processors 'pr@Uses@z Kj% 3 +proclaim pr@'kleIm H0% 26A,9,23,25 +proclaimed pr@'kleImd Hc%,Hd% 26A,9,23,25 +proclaiming pr@'kleImIN Hb% 36A,9,23,25 +proclaims pr@'kleImz Ha% 26A,9,23,25 +proclamation ,pr0kl@'meISn M6% 4 +proclamations ,pr0kl@'meISnz Mj% 4 +proclivities pr@'klIvItIz Kj% 4 +proclivity pr@'klIvItI K8% 4 +proconsul ,pr@U'k0nsl K6% 3 +proconsular ,pr@U'k0nsjUl@R OA% 4 +proconsulate pr@U'k0nsjUl@t K6% 4 +proconsulates pr@U'k0nsjUl@ts Kj% 4 +proconsuls ,pr@U'k0nslz Kj% 3 +procrastinate pr@U'kr&stIneIt I2% 42A +procrastinated pr@U'kr&stIneItId Ic%,Id% 52A +procrastinates pr@U'kr&stIneIts Ia% 42A +procrastinating pr@U'kr&stIneItIN Ib% 52A +procrastination pr@U,kr&stI'neISn L@% 5 +procreate 'pr@UkrIeIt H2% 36A +procreated 'pr@UkrIeItId Hc%,Hd% 46A +procreates 'pr@UkrIeIts Ha% 36A +procreating 'pr@UkrIeItIN Hb% 46A +procreation ,pr@UkrI'eISn K6% 4 +procreations ,pr@UkrI'eISnz Kj% 4 +proctor 'pr0kt@R K6% 2 +proctors 'pr0kt@z Kj% 2 +procurable pr@'kjU@r@bl OA% 4 +procurator 'pr0kjUreIt@R K6% 4 +procurators 'pr0kjUreIt@z Kj% 4 +procure pr@'kjU@R H2% 26A,12B,13B +procured pr@'kjU@d Hc%,Hd% 26A,12B,13B +procurement pr@'kjU@m@nt K6% 3 +procurements pr@'kjU@m@nts Kj$ 3 +procurer pr@'kjU@r@R K6% 3 +procurers pr@'kjU@r@z Kj% 3 +procures pr@'kjU@z Ha% 26A,12B,13B +procuress 'pr0kjUrIs K7% 3 +procuresses 'pr0kjUrIsIz Kj$ 4 +procuring pr@'kjU@rIN Hb% 36A,12B,13B +prod pr0d J4%,K6% 13A,6A +prodded 'pr0dId Jc%,Jd% 23A,6A +prodding 'pr0dIN Jb% 23A,6A +prodigal 'pr0dIgl K6$,OA% 3 +prodigality ,pr0dI'g&lItI L@% 5 +prodigally 'pr0dIg@lI Pu% 4 +prodigals 'pr0dIglz Kj$ 3 +prodigies 'pr0dIdZIz Kj% 3 +prodigious pr@'dIdZ@s OA% 3 +prodigiously pr@'dIdZ@slI Pu% 4 +prodigy 'pr0dIdZI K8% 3 +prods pr0dz Ja%,Kj% 13A,6A +produce 'pr0djus L@% 2 +produce pr@'djus J2% 22A,6A +produced pr@'djust Jc%,Jd% 22A,6A +producer pr@'djus@R K6% 3 +producers pr@'djus@z Kj% 3 +produces pr@'djusIz Ja% 32A,6A +producing pr@'djusIN Jb% 32A,6A +product 'pr0dVkt K6% 2 +production pr@'dVkSn M6% 3 +productions pr@'dVkSnz Mj% 3 +productive pr@'dVktIv OA% 3 +productively pr@'dVktIvlI Pu% 4 +productivity ,pr0dVk'tIvItI L@% 5 +products 'pr0dVkts Kj% 2 +profanation ,pr0f@'neISn M6$ 4 +profanations ,pr0f@'neISnz Mj$ 4 +profane pr@'feIn H2%,OA% 26A +profaned pr@'feInd Hc%,Hd% 26A +profanely pr@'feInlI Pu% 3 +profaneness pr@'feIn+n@s L@$ 3 +profanes pr@'feInz Ha% 26A +profaning pr@'feInIN Hb% 36A +profanities pr@'f&nItIz Mj% 4 +profanity pr@'f&nItI M8% 4 +profess pr@'fes J1% 26A,7A,9,25 +professed pr@'fest Jc%,Jd%,OA% 26A,7A,9,25 +professedly pr@'festlI Pu% 4 +professes pr@'fesIz Ja% 36A,7A,9,25 +professing pr@'fesIN Jb% 36A,7A,9,25 +profession pr@'feSn K6% 3 +professional pr@'feSn@l K6%,OA% 4 +professionalism pr@'feSn@lIz@m L@% 5 +professionally pr@'feSn@lI Pu% 4 +professionals pr@'feSn@lz Kj% 4 +professions pr@'feSnz Kj% 3 +professor pr@'fes@R K6% 3 +professorial ,pr0fI'sOrI@l OA% 5 +professors pr@'fes@z Kj% 3 +professorship pr@'fes@SIp K6% 4 +professorships pr@'fes@SIps Kj% 4 +proffer 'pr0f@R H0%,K6$ 26A,7A +proffered 'pr0f@d Hc%,Hd% 26A,7A +proffering 'pr0f@rIN Hb% 36A,7A +proffers 'pr0f@z Ha%,Kj$ 26A,7A +proficiency pr@'fISnsI L@% 4 +proficient pr@'fISnt OA% 3 +proficiently pr@'fISntlI Pu% 4 +profile 'pr@UfaIl H2%,M6% 2 +profiled 'pr@UfaIld Hc%,Hd% 2 +profiles 'pr@UfaIlz Ha%,Mj% 2 +profiling 'pr@UfaIlIN Hb% 3 +profit 'pr0fIt J0%,M6% 23A,6A,13A +profit-margin 'pr0fIt-mAdZIn K6% 4 +profit-margins 'pr0fIt-mAdZInz Kj% 4 +profit-sharing 'pr0fIt-Se@rIN L@% 4 +profitable 'pr0fIt@bl OA% 4 +profitably 'pr0fIt@blI Pu% 4 +profited 'pr0fItId Jc%,Jd% 33A,6A,13A +profiteer ,pr0fI'tI@R I0%,K6% 32A +profiteered ,pr0fI'tI@d Ic%,Id% 32A +profiteering ,pr0fI'tI@rIN Ib% 42A +profiteers ,pr0fI'tI@z Ia%,Kj% 32A +profiting 'pr0fItIN Jb% 33A,6A,13A +profitless 'pr0fItl@s OA% 3 +profitlessly 'pr0fItl@slI Pu% 4 +profits 'pr0fIts Ja%,Mj% 23A,6A,13A +profligacy 'pr0flIg@sI L@% 4 +profligate 'pr0flIg@t K6$,OA% 3 +profligates 'pr0flIg@ts Kj$ 3 +profound pr@'faUnd OA% 2 +profoundly pr@'faUndlI Pu% 3 +profundities pr@'fVndItIz Mj% 4 +profundity pr@'fVndItI M8% 4 +profuse pr@'fjus OA% 2 +profusely pr@'fjuslI Pu% 3 +profuseness pr@'fjusn@s L@% 3 +profusion pr@'fjuZn L@% 3 +progenitor pr@U'dZenIt@R K6% 4 +progenitors pr@U'dZenIt@z Kj% 4 +progeny 'pr0dZ@nI Kj% 3 +prognoses pr0g'n@Usiz Kj% 3 +prognosis pr0g'n@UsIs Ki% 3 +prognostic pr0g'n0stIk K6$,OA% 3 +prognosticate pr0g'n0stIkeIt H2% 46A,9 +prognosticated pr0g'n0stIkeItId Hc%,Hd% 56A,9 +prognosticates pr0g'n0stIkeIts Ha% 46A,9 +prognosticating pr0g'n0stIkeItIN Hb% 56A,9 +prognostication pr0g,n0stI'keISn M6% 5 +prognostications pr0g,n0stI'keISnz Mj% 5 +prognostics pr0g'n0stIks Kj$ 3 +program 'pr@Ugr&m H4%,K6% 26A +programme 'pr@Ugr&m H2%,K6% 26A +programmed 'pr@Ugr&md Hc%,Hd% 26A +programmer 'pr@Ugr&m@R K6% 3 +programmers 'pr@Ugr&m@z Kj% 3 +programmes 'pr@Ugr&mz Ha%,Kj% 26A +programming 'pr@Ugr&mIN Hb% 36A +programs 'pr@Ugr&mz Ha%,Kj% 26A +progress 'pr@Ugres M7% 2 +progress pr@'gres I1% 22A,2C +progressed pr@'grest Ic%,Id% 22A,2C +progresses 'pr@UgresIz Mj$ 3 +progresses pr@'gresIz Ia% 32A,2C +progressing pr@'gresIN Ib% 32A,2C +progression pr@'greSn L@% 3 +progressive pr@'gresIv K6$,OA% 3 +progressively pr@'gresIvlI Pu% 4 +progressiveness pr@'gresIvn@s L@% 4 +progressives pr@'gresIvz Kj$ 3 +prohibit pr@'hIbIt H0% 36A,14 +prohibited pr@'hIbItId Hc%,Hd% 46A,14 +prohibiting pr@'hIbItIN Hb% 46A,14 +prohibition ,pr@UI'bISn M6% 4 +prohibitionist ,pr@UI'bIS@nIst K6% 5 +prohibitionists ,pr@UI'bIS@nIsts Kj% 5 +prohibitions ,pr@UI'bISnz Mj% 4 +prohibitive pr@'hIb@tIv OA% 4 +prohibitively pr@'hIb@tIvlI Pu% 5 +prohibitory pr@'hIbIt@rI OA% 5 +prohibits pr@'hIbIts Ha% 36A,14 +project 'pr0dZekt K6% 2 +project pr@'dZekt J0% 22A,2C,6A,14,15A +projected pr@'dZektId Jc%,Jd% 32A,2C,6A,14,15A +projectile pr@'dZektaIl K6%,OA% 3 +projectiles pr@'dZektaIlz Kj% 3 +projecting pr@'dZektIN Jb% 32A,2C,6A,14,15A +projection pr@'dZekSn M6% 3 +projectionist pr@'dZekS@nIst K6% 4 +projectionists pr@'dZekS@nIsts Kj% 4 +projections pr@'dZekSnz Mj% 3 +projector pr@'dZekt@R K6% 3 +projectors pr@'dZekt@z Kj% 3 +projects 'pr0dZekts Kj% 2 +projects pr@'dZekts Ja% 22A,2C,6A,14,15A +prolapse 'pr@Ul&ps K6$ 2 +prolapse pr@U'l&ps I2$ 2 +prolapsed pr@U'l&pst Ic$,Id$ 2 +prolapses 'pr@Ul&psIz Kj$ 3 +prolapses pr@U'l&psIz Ia$ 3 +prolapsing pr@U'l&psIN Ib$ 3 +prole pr@Ul K6$ 1 +proles pr@Ulz Kj$ 1 +proletarian ,pr@UlI'te@rI@n K6%,OA% 5 +proletarians ,pr@UlI'te@rI@nz Kj% 5 +proletariat ,pr@UlI'te@rI@t K6% 5 +proletariats ,pr@UlI'te@rI@ts Kj% 5 +proliferate pr@'lIf@reIt J2% 42A,6A +proliferated pr@'lIf@reItId Jc%,Jd% 52A,6A +proliferates pr@'lIf@reIts Ja% 42A,6A +proliferating pr@'lIf@reItIN Jb% 52A,6A +proliferation pr@,lIf@'reISn K6% 5 +proliferations pr@,lIf@'reISnz Kj% 5 +prolific pr@'lIfIk OA% 3 +prolix 'pr@UlIks OA% 2 +prolixity pr@U'lIksItI L@% 4 +prologue 'pr@Ul0g K6% 2 +prologues 'pr@Ul0gz Kj% 2 +prolong pr@'l0N H0% 26A +prolongation ,pr@Ul0N'geISn M6% 4 +prolongations ,pr@Ul0N'geISnz Mj% 4 +prolonged pr@'l0Nd Hc%,Hd%,OA% 26A +prolonging pr@'l0NIN Hb% 36A +prolongs pr@'l0Nz Ha% 26A +prom pr0m K6% 1 +promenade ,pr0m@'nAd J2%,K6% 32A,2C,6A,15A +promenaded ,pr0m@'nAdId Jc%,Jd% 42A,2C,6A,15A +promenades ,pr0m@'nAdz Ja%,Kj% 32A,2C,6A,15A +promenading ,pr0m@'nAdIN Jb% 42A,2C,6A,15A +prominence 'pr0mIn@ns M6% 3 +prominences 'pr0mIn@nsIz Mj$ 4 +prominent 'pr0mIn@nt OA% 3 +prominently 'pr0mIn@ntlI Pu% 4 +promiscuity ,pr0mI'skjuItI L@% 5 +promiscuous pr@'mIskjU@s OA% 4 +promiscuously pr@'mIskjU@slI Pu% 5 +promise 'pr0mIs J2%,M6% 22A,6A,7A,9,11,12A,13A,17 +promised 'pr0mIst Jc%,Jd% 22A,6A,7A,9,11,12A,13A,17 +promises 'pr0mIsIz Ja%,Mj% 32A,6A,7A,9,11,12A,13A,17 +promising 'pr0mIsIN Jb%,OA% 32A,6A,7A,9,11,12A,13A,17 +promisingly 'pr0mIsINlI Pu% 4 +promissory 'pr0mIs@rI OA$ 4 +promontories 'pr0m@ntrIz Kj% 3 +promontory 'pr0m@ntrI K8% 3 +promote pr@'m@Ut H2% 26A,14 +promoted pr@'m@UtId Hc%,Hd% 36A,14 +promoter pr@'m@Ut@R K6% 3 +promoters pr@'m@Ut@z Kj% 3 +promotes pr@'m@Uts Ha% 26A,14 +promoting pr@'m@UtIN Hb% 36A,14 +promotion pr@'m@USn M6% 3 +promotional pr@'m@US@nl OA% 4 +promotions pr@'m@USnz Mj% 3 +prompt pr0mpt H0%,K6%,OA% 16A,17 +prompt-box 'pr0mpt-b0ks K7$ 2 +prompt-boxes 'pr0mpt-b0ksIz Kj$ 3 +prompt-copies 'pr0mpt-k0pIz Kj% 3 +prompt-copy 'pr0mpt-k0pI K8% 3 +prompted 'pr0mptId Hc%,Hd% 26A,17 +prompter 'pr0mpt@R K6% 2 +prompters 'pr0mpt@z Kj% 2 +prompting 'pr0mptIN Hb%,K6$ 26A,17 +promptings 'pr0mptINz Kj% 2 +promptitude 'pr0mptItjud L@$ 3 +promptly 'pr0mptlI Pu% 2 +promptness 'pr0mptn@s L@% 2 +prompts pr0mpts Ha%,Kj% 16A,17 +proms pr0mz Kj% 1 +promulgate 'pr0m@lgeIt H2% 36A +promulgated 'pr0m@lgeItId Hc%,Hd% 46A +promulgates 'pr0m@lgeIts Ha% 36A +promulgating 'pr0m@lgeItIN Hb% 46A +promulgation ,pr0m@l'geISn L@% 4 +prone pr@Un OA% 1 +proneness 'pr@Un+n@s L@% 2 +prong pr0N K6% 1 +pronged pr0Nd OA% 1 +prongs pr0Nz Kj% 1 +pronominal pr@U'n0mInl OA$ 4 +pronoun 'pr@UnaUn K6% 2 +pronounce pr@'naUns J2% 22A,3A,6A,9,22,25 +pronounceable pr@'naUns@bl OA% 4 +pronounced pr@'naUnst Jc%,Jd%,OA% 22A,3A,6A,9,22,25 +pronouncement pr@'naUnsm@nt K6% 3 +pronouncements pr@'naUnsm@nts Kj% 3 +pronounces pr@'naUnsIz Ja% 32A,3A,6A,9,22,25 +pronouncing pr@'naUnsIN Jb% 32A,3A,6A,9,22,25 +pronouns 'pr@UnaUnz Kj% 2 +pronto 'pr0nt@U Pu$ 2 +pronunciamento pr@,nVnsI@'ment@U K6$ 6 +pronunciamentos pr@,nVnsI@'ment@Uz Kj$ 6 +pronunciation pr@,nVnsI'eISn M6% 5 +pronunciations pr@,nVnsI'eISnz Mj% 5 +proof pruf H0%,M6%,OA% 16A +proofed pruft Hc%,Hd% 16A +proofing 'prufIN Hb% 26A +proofread 'prufred Jc%,Jd% 22A,6A +proofread 'prufrid J5% 22A,6A +proofreader 'prufrid@R K6% 3 +proofreaders 'prufrid@z Kj% 3 +proofreading 'prufridIN Jb% 32A,6A +proofreads 'prufridz Ja% 22A,6A +proofs prufs Ha%,Mj% 16A +prop pr0p H4%,K6% 16A,15A,15B,22 +propaganda ,pr0p@'g&nd@ L@% 4 +propagandist ,pr0p@'g&ndIst K6% 4 +propagandists ,pr0p@'g&ndIsts Kj% 4 +propagandize ,pr0p@'g&ndaIz I2$ 4 +propagandized ,pr0p@'g&ndaIzd Ic$,Id$ 4 +propagandizes ,pr0p@'g&ndaIzIz Ia$ 5 +propagandizing ,pr0p@'g&ndaIzIN Ib$ 5 +propagate 'pr0p@geIt J2% 32A,6A +propagated 'pr0p@geItId Jc%,Jd% 42A,6A +propagates 'pr0p@geIts Ja% 32A,6A +propagating 'pr0p@geItIN Jb% 42A,6A +propagation ,pr0p@'geISn L@% 4 +propagator 'pr0p@geIt@R K6% 4 +propagators 'pr0p@geIt@z Kj% 4 +propane 'pr@UpeIn L@$ 2 +propel pr@'pel H4% 26A,15A +propellant pr@'pel@nt M6%,OA% 3 +propellants pr@'pel@nts Mj% 3 +propelled pr@'peld Hc%,Hd% 26A,15A +propellent pr@'pel@nt M6%,OA% 3 +propellents pr@'pel@nts Mj% 3 +propeller pr@'pel@R K6% 3 +propellers pr@'pel@z Kj% 3 +propelling pr@'pelIN Hb% 36A,15A +propels pr@'pelz Ha% 26A,15A +propensities pr@'pensItIz Mj% 4 +propensity pr@'pensItI M8% 4 +proper 'pr0p@R OA% 2 +properly 'pr0p@lI Pu% 3 +propertied 'pr0p@tId OA% 3 +properties 'pr0p@tIz Mj% 3 +property 'pr0p@tI M8% 3 +property-man 'pr0p@tI-m&n Ki$ 4 +property-master 'pr0p@tI-mAst@R K6$ 5 +property-masters 'pr0p@tI-mAst@z Kj$ 5 +property-men 'pr0p@tI-men Kj$ 4 +prophecies 'pr0f@sIz Mj% 3 +prophecy 'pr0f@sI M8% 3 +prophesied 'pr0fIsaId Jc%,Jd% 32A,2C,6A,9,10 +prophesies 'pr0fIsaIz Ja% 32A,2C,6A,9,10 +prophesy 'pr0fIsaI J3% 32A,2C,6A,9,10 +prophesying 'pr0fIsaIIN Jb% 42A,2C,6A,9,10 +prophet 'pr0fIt K6% 2 +prophetess 'pr0fItes K7% 3 +prophetesses 'pr0fItesIz Kj% 4 +prophetic pr@'fetIk OA% 3 +prophetical pr@'fetIkl OA$ 4 +prophetically pr@'fetIklI Pu% 4 +prophets 'pr0fIts Kj% 2 +prophylactic ,pr0fI'l&ktIk K6%,OA% 4 +prophylactics ,pr0fI'l&ktIks Kj% 4 +prophylaxis ,pr0fI'l&ksIs L@% 4 +propinquity pr@'pINkwItI L@$ 4 +propitiate pr@'pISIeIt H2% 46A +propitiated pr@'pISIeItId Hc%,Hd% 56A +propitiates pr@'pISIeIts Ha% 46A +propitiating pr@'pISIeItIN Hb% 56A +propitiation pr@,pISI'eISn L@% 5 +propitiatory pr@'pISI@trI OA% 4 +propitious pr@'pIS@s OA% 3 +propitiously pr@'pIS@slI Pu% 4 +proponent pr@'p@Un@nt K6% 3 +proponents pr@'p@Un@nts Kj% 3 +proportion pr@'pOSn H0%,M6% 36A,14 +proportionable pr@'pOSn@bl OA$ 4 +proportional pr@'pOS@nl OA% 4 +proportionality pr@,pOS@'n&lItI L@% 6 +proportionally pr@'pOS@n@lI Pu% 5 +proportionate pr@'pOS@n@t OA% 4 +proportionately pr@'pOS@n@tlI Pu% 5 +proportioned pr@'pOSnd Hc%,Hd% 36A,14 +proportioning pr@'pOSnIN Hb% 46A,14 +proportions pr@'pOSnz Ha%,Mj% 36A,14 +proposal pr@'p@Uzl M6% 3 +proposals pr@'p@Uzlz Mj% 3 +propose pr@'p@Uz J2% 22A,6A,6D,7A,9,14 +proposed pr@'p@Uzd Jc%,Jd% 22A,6A,6D,7A,9,14 +proposer pr@'p@Uz@R K6% 3 +proposers pr@'p@Uz@z Kj% 3 +proposes pr@'p@UzIz Ja% 32A,6A,6D,7A,9,14 +proposing pr@'p@UzIN Jb% 32A,6A,6D,7A,9,14 +proposition ,pr0p@'zISn H0%,K6% 46A +propositioned ,pr0p@'zISnd Hc%,Hd% 46A +propositioning ,pr0p@'zISnIN Hb% 56A +propositions ,pr0p@'zISnz Ha%,Kj% 46A +propound pr@'paUnd H0% 26A +propounded pr@'paUndId Hc%,Hd% 36A +propounding pr@'paUndIN Hb% 36A +propounds pr@'paUndz Ha% 26A +propped pr0pt Hc%,Hd% 16A,15A,15B,22 +propping 'pr0pIN Hb% 26A,15A,15B,22 +proprietary pr@'praI@trI OA% 5 +proprieties pr@'praI@tIz Mj% 4 +proprietor pr@'praI@t@R K6% 4 +proprietors pr@'praI@t@z Kj% 4 +proprietress pr@'praI@trIs K7% 4 +proprietresses pr@'praI@trIsIz Kj% 5 +propriety pr@'praI@tI M8% 4 +props pr0ps Ha%,Kj% 16A,15A,15B,22 +propulsion pr@'pVlSn L@% 3 +propulsive pr@'pVlsIv OA% 3 +prorogation ,pr@Ur@'geISn K6$ 4 +prorogations ,pr@Ur@'geISnz Kj$ 4 +prorogue pr@U'r@Ug H2$ 26A +prorogued pr@U'r@Ugd Hc$,Hd$ 26A +prorogues pr@U'r@Ugz Ha$ 26A +proroguing pr@U'r@UgIN Hb$ 36A +pros pr@Uz Kj% 1 +prosaic pr@'zeIIk OA% 3 +prosaically pr@'zeIIklI Pu% 4 +proscenium pr@'sinI@m K6% 4 +prosceniums pr@'sinI@mz Kj$ 4 +proscribe pr@'skraIb H2% 26A +proscribed pr@'skraIbd Hc%,Hd% 26A +proscribes pr@'skraIbz Ha% 26A +proscribing pr@'skraIbIN Hb% 36A +proscription pr@'skrIpSn M6% 3 +proscriptions pr@'skrIpSnz Mj% 3 +prose pr@Uz L@% 1 +prosecute 'pr0sIkjut H2% 36A,14 +prosecuted 'pr0sIkjutId Hc%,Hd% 46A,14 +prosecutes 'pr0sIkjuts Ha% 36A,14 +prosecuting 'pr0sIkjutIN Hb% 46A,14 +prosecution ,pr0sI'kjuSn M6% 4 +prosecutions ,pr0sI'kjuSnz Mj% 4 +prosecutor 'pr0sIkjut@R K6% 4 +prosecutors 'pr0sIkjut@z Kj% 4 +proselyte 'pr0s@laIt K6$ 3 +proselytes 'pr0s@laIts Kj$ 3 +proselytize 'pr0s@lItaIz J2$ 42A,6A +proselytized 'pr0s@lItaIzd Jc$,Jd$ 42A,6A +proselytizes 'pr0s@lItaIzIz Ja$ 52A,6A +proselytizing 'pr0s@lItaIzIN Jb$ 52A,6A +prosier 'pr@UzI@R Or% 3 +prosiest 'pr@UzIIst Os% 3 +prosily 'pr@UzIlI Pu% 3 +prosiness 'pr@UzIn@s L@% 3 +prosody 'pr0s@dI L@% 3 +prospect 'pr0spekt M6% 2 +prospect pr@'spekt I0% 22A,3A +prospected pr@'spektId Ic%,Id% 32A,3A +prospecting pr@'spektIN Ib% 32A,3A +prospective pr@'spektIv OA% 3 +prospector pr@'spekt@R K6% 3 +prospectors pr@'spekt@z Kj% 3 +prospects 'pr0spekts Mj% 2 +prospects pr@'spekts Ia% 22A,3A +prospectus pr@'spekt@s K7% 3 +prospectuses pr@'spekt@sIz Kj% 4 +prosper 'pr0sp@R J0% 22A,6A +prospered 'pr0sp@d Jc%,Jd% 22A,6A +prospering 'pr0sp@rIN Jb% 32A,6A +prosperity pr0'sperItI L@% 4 +prosperous 'pr0sp@r@s OA% 3 +prosperously 'pr0sp@r@slI Pu% 4 +prospers 'pr0sp@z Ja% 22A,6A +prostate 'pr0steIt K6$ 2 +prostates 'pr0steIts Kj$ 2 +prostitute 'pr0stItjut H2%,K6% 36A +prostituted 'pr0stItjutId Hc%,Hd% 46A +prostitutes 'pr0stItjuts Ha%,Kj% 36A +prostituting 'pr0stItjutIN Hb% 46A +prostitution ,pr0stI'tjuSn L@% 4 +prostrate 'pr0streIt OA% 2 +prostrate pr0'streIt H2% 26A +prostrated pr0'streItId Hc%,Hd% 36A +prostrates pr0'streIts Ha% 26A +prostrating pr0'streItIN Hb% 36A +prostration pr0'streISn M6% 3 +prostrations pr0'streISnz Mj$ 3 +prosy 'pr@UzI OD% 2 +prot_eg_e 'pr0tIZeI K6% 3 +prot_eg_ee 'pr0tIZeI K6$ 3 +prot_eg_ees 'pr0tIZeIz Kj$ 3 +prot_eg_es 'pr0tIZeIz Kj% 3 +protagonist pr@'t&g@nIst K6% 4 +protagonists pr@'t&g@nIsts Kj% 4 +protean 'pr@UtI@n OA$ 3 +protect pr@'tekt H0% 26A,14 +protected pr@'tektId Hc%,Hd% 36A,14 +protecting pr@'tektIN Hb% 36A,14 +protection pr@'tekSn M6% 3 +protectionism pr@'tekS@nIz@m L@% 5 +protectionist pr@'tekS@nIst K6% 4 +protectionists pr@'tekS@nIsts Kj% 4 +protections pr@'tekSnz Mj% 3 +protective pr@'tektIv OA% 3 +protectively pr@'tektIvlI Pu% 4 +protector pr@'tekt@R K6% 3 +protectorate pr@'tekt@r@t K6% 4 +protectorates pr@'tekt@r@ts Kj% 4 +protectors pr@'tekt@z Kj% 3 +protects pr@'tekts Ha% 26A,14 +protein 'pr@Utin M6% 2 +proteins 'pr@Utinz Mj% 2 +protest 'pr@Utest M6% 2 +protest pr@'test J0% 22A,3A,6A,9 +protestation ,pr0te'steISn K6% 4 +protestations ,pr0te'steISnz Kj% 4 +protested pr@'testId Jc%,Jd% 32A,3A,6A,9 +protester pr@'test@R K6% 3 +protesters pr@'test@z Kj% 3 +protesting pr@'testIN Jb% 32A,3A,6A,9 +protestingly pr@'testINlI Pu% 4 +protests 'pr@Utests Mj% 2 +protests pr@'tests Ja% 22A,3A,6A,9 +protocol 'pr@Ut@k0l M6% 3 +protocols 'pr@Ut@k0lz Mj% 3 +proton 'pr@Ut0n K6% 2 +protons 'pr@Ut0nz Kj% 2 +protoplasm 'pr@Ut@pl&z@m L@% 4 +prototype 'pr@Ut@taIp K6% 3 +prototypes 'pr@Ut@taIps Kj% 3 +protozoa ,pr@Ut@'z@U@ Kj% 4 +protract pr@'tr&kt H0$ 26A +protracted pr@'tr&ktId Hc$,Hd% 36A +protracting pr@'tr&ktIN Hb$ 36A +protraction pr@'tr&kSn M6$ 3 +protractions pr@'tr&kSnz Mj$ 3 +protractor pr@'tr&kt@R K6% 3 +protractors pr@'tr&kt@z Kj% 3 +protracts pr@'tr&kts Ha$ 26A +protrude pr@'trud J2% 22A,6A +protruded pr@'trudId Jc%,Jd% 32A,6A +protrudes pr@'trudz Ja% 22A,6A +protruding pr@'trudIN Jb% 32A,6A +protrusion pr@'truZn M6% 3 +protrusions pr@'truZnz Mj% 3 +protrusive pr@'trusIv OA% 3 +protuberance pr@'tjub@r@ns M6% 4 +protuberances pr@'tjub@r@nsIz Mj% 5 +protuberant pr@'tjub@r@nt OA% 4 +proud praUd OC% 1 +prouder 'praUd@R Or% 2 +proudest 'praUdIst Os% 2 +proudly 'praUdlI Pu% 2 +provable 'pruv@bl OA% 3 +prove pruv J2% 14D,6A,9,14,25 +proved pruvd Jc%,Jd% 14D,6A,9,14,25 +proven 'pruvn Jd% 24D,6A,9,14,25 +provenance 'pr0v@n@ns L@% 3 +provender 'pr0vInd@R L@% 3 +proverb 'pr0v3b K6% 2 +proverbial pr@'v3bI@l OA% 4 +proverbially pr@'v3bI@lI Pu% 5 +proverbs 'pr0v3bz Kj% 2 +proves pruvz Ja% 14D,6A,9,14,25 +provide pr@'vaId J2% 23A,6A,9,14 +provided pr@'vaIdId Jc%,Jd%,V-% 33A,6A,9,14 +providence 'pr0vId@ns L@% 3 +provident 'pr0vId@nt OA% 3 +providential ,pr0vI'denSl OA% 4 +providentially ,pr0vI'denS@lI Pu% 5 +providently 'pr0vId@ntlI Pu% 4 +provider pr@'vaId@R K6% 3 +providers pr@'vaId@z Kj% 3 +provides pr@'vaIdz Ja% 23A,6A,9,14 +providing pr@'vaIdIN Jb%,V-% 33A,6A,9,14 +province 'pr0vIns K6% 2 +provinces 'pr0vInsIz Kj% 3 +provincial pr@'vInSl K6%,OA% 3 +provincialism pr@'vInS@lIz@m M6% 5 +provincialisms pr@'vInS@lIz@mz Mj$ 5 +provincially pr@'vInS@lI Pu% 4 +provincials pr@'vInSlz Kj% 3 +proving 'pruvIN Jb% 24D,6A,9,14,25 +provision pr@'vIZn H0%,M6% 36A +provisional pr@'vIZ@nl OA% 4 +provisionally pr@'vIZ@n@lI Pu% 5 +provisioned pr@'vIZnd Hc%,Hd% 36A +provisioning pr@'vIZnIN Hb$ 46A +provisions pr@'vIZnz Ha$,Mj% 36A +proviso pr@'vaIz@U K6% 3 +provisory pr@'vaIz@rI OA% 4 +provisos pr@'vaIz@Uz Kj% 3 +provocation ,pr0v@'keISn M6% 4 +provocations ,pr0v@'keISnz Mj% 4 +provocative pr@'v0k@tIv OA% 4 +provocatively pr@'v0k@tIvlI Pu% 5 +provoke pr@'v@Uk H2% 26A,14,17 +provoked pr@'v@Ukt Hc%,Hd% 26A,14,17 +provokes pr@'v@Uks Ha% 26A,14,17 +provoking pr@'v@UkIN Hb%,OA% 36A,14,17 +provokingly pr@'v@UkINlI Pu% 4 +provost 'pr0v@st K6% 2 +provosts 'pr0v@sts Kj% 2 +prow praU K6% 1 +prowess 'praUIs L@% 2 +prowl praUl J0%,K6% 12A,2C,6A +prowled praUld Jc%,Jd% 12A,2C,6A +prowler 'praUl@R K6% 2 +prowlers 'praUl@z Kj% 2 +prowling 'praUlIN Jb% 22A,2C,6A +prowls praUlz Ja%,Kj% 12A,2C,6A +prows praUz Kj% 1 +prox pr0ks Pu$ 1 +proxies 'pr0ksIz Mj% 2 +proximate 'pr0ksIm@t OA$ 3 +proximity pr0k'sImItI L@% 4 +proximo 'pr0ksIm@U OA$ 3 +proxy 'pr0ksI M8% 2 +prude prud K6% 1 +prudence 'prudns L@% 2 +prudent 'prudnt OA% 2 +prudential pru'denSl OA% 3 +prudently 'prudntlI Pu% 3 +pruderies 'prud@rIz Mj$ 3 +prudery 'prud@rI M8% 3 +prudes prudz Kj% 1 +prudish 'prudIS OA% 2 +prudishly 'prudISlI Pu% 3 +prune prun H2%,K6% 16A,14,15B +pruned prund Hc%,Hd% 16A,14,15B +pruners 'prun@z Kj$ 2 +prunes prunz Ha%,Kj% 16A,14,15B +pruning 'prunIN Hb%,L@% 26A,14,15B +pruning-hook 'pruniN-hUk K6% 3 +pruning-hooks 'pruniN-hUks Kj% 3 +pruning-knife 'pruniN-naIf Ki% 3 +pruning-knives 'pruniN-naIvz Kj% 3 +pruning-saw 'pruniN-sO K6% 3 +pruning-saws 'pruniN-sOz Kj% 3 +pruning-scissors 'pruniN-sIz@z Kj% 4 +pruning-shears 'pruniN-SI@z Kj% 3 +prurience 'prU@rI@ns L@% 3 +pruriency 'prU@rI@nsI L@$ 4 +prurient 'prU@rI@nt OA% 3 +pruriently 'prU@rI@ntlI Pu% 4 +prussic 'prVsIk OA% 2 +pry praI J3% 12A,2C,3A,15A,15B,22 +prying 'praIIN Jb% 22A,2C,3A,15A,15B,22 +pryingly 'praIINlI Pu% 3 +psalm sAm K6% 1 +psalmist 'sAmIst K6% 2 +psalmists 'sAmIsts Kj$ 2 +psalmodies 'sAm@dIz Mj$ 3 +psalmody 'sAm@dI M8$ 3 +psalms sAmz Kj% 1 +psalter 'sOlt@R K6$ 2 +psalteries 'sOlt@rIz Kj$ 3 +psalters 'sOlt@z Kj$ 2 +psaltery 'sOlt@rI K8$ 3 +psephologist se'f0l@dZIst K6$ 4 +psephologists se'f0l@dZIsts Kj$ 4 +psephology se'f0l@dZI L@$ 4 +pseud sjud K6% 1 +pseudo 'sjud@U K6$,OA% 2 +pseudo- ,sjud@U- U-% 2 +pseudonym 'sjud@nIm K6% 3 +pseudonymous sju'd0nIm@s OA% 4 +pseudonyms 'sjud@nImz Kj% 3 +pseudos 'sjud@Uz Kj$ 2 +pseuds sjudz Kj% 1 +pshaw pf@ W-$ 1 +psittacosis ,sIt@'k@UsIs L@$ 4 +psyche 'saIkI K6% 2 +psychedelic ,saIkI'delIk OA% 4 +psyches 'saIkIz Kj% 2 +psychiatric ,saIkI'&trIk OA% 4 +psychiatrist sI'kaI@trIst K6% 4 +psychiatrists sI'kaI@trIsts Kj% 4 +psychiatry saI'kaI@trI L@% 4 +psychic 'saIkIk K6%,OA% 2 +psychical 'saIkIkl OA% 3 +psychics 'saIkIks Kj% 2 +psychoanalyse ,saIk@U'&n@laIz H2% 5 +psychoanalysed ,saIk@U'&n@laIzd Hc%,Hd% 5 +psychoanalyses ,saIk@U'&n@laIzIz Ha% 6 +psychoanalysing ,saIk@U'&n@laIzIN Hb% 6 +psychoanalysis ,saIk@U@'n&l@sIs L@% 6 +psychoanalyst ,saIk@U'&n@lIst K6% 5 +psychoanalysts ,saIk@U'&n@lIsts Kj% 5 +psychoanalytic ,saIk@U,&n@'lItIk OA% 6 +psychoanalytical ,saIk@U,&n@'lItIkl OA% 7 +psychoanalyze ,saIk@U'&n@laIz H2% 5 +psychoanalyzed ,saIk@U'&n@laIzd Hc%,Hd% 5 +psychoanalyzes ,saIk@U'&n@laIzIz Ha% 6 +psychoanalyzing ,saIk@U'&n@laIzIN Hb% 6 +psychological ,saIk@'l0dZIkl OA% 5 +psychologically ,saIk@'l0dZIklI Pu% 5 +psychologies saI'k0l@dZIz Mj$ 4 +psychologist saI'k0l@dZIst K6% 4 +psychologists saI'k0l@dZIsts Kj% 4 +psychology saI'k0l@dZI M8% 4 +psychopath 'saIk@Up&T K6% 3 +psychopathic ,saIk@U'p&TIk OA% 4 +psychopaths 'saIk@Up&Ts Kj% 3 +psychoses saI'k@Usiz Kj% 3 +psychosis saI'k@UsIs Ki% 3 +psychosomatic ,saIk@Us@'m&tIk OA% 5 +psychotherapy ,saIk@U'Ter@pI L@% 5 +psychotic saI'k0tIk K6% 3 +psychotics saI'k0tIks Kj% 3 +pt paInt Y]% 1 +ptarmigan 'tAmIg@n K6$ 3 +ptarmigans 'tAmIg@nz Kj$ 3 +pterodactyl ,ter@'d&ktIl K6$ 4 +pterodactyls ,ter@'d&ktIlz Kj$ 4 +ptomaine 't@UmeIn K6$ 2 +ptomaines 't@UmeInz Kj$ 2 +pub pVb K6% 1 +pub-crawl 'pVb-krOl I0$,K6% 2 +pub-crawled 'pVb-krOld Ic$,Id$ 2 +pub-crawling 'pVb-krOlIN Ib$ 3 +pub-crawls 'pVb-krOlz Ia$,Kj$ 2 +puberty 'pjub@tI L@% 3 +pubic 'pjubIk OA% 2 +public 'pVblIk K6%,OA* 2 +public-spirited ,pVblIk-'spIrItId OA% 5 +publican 'pVblIk@n K6% 3 +publicans 'pVblIk@nz Kj% 3 +publication ,pVblI'keISn M6% 4 +publications ,pVblI'keISnz Mj% 4 +publicist 'pVblIsIst K6% 3 +publicists 'pVblIsIsts Kj% 3 +publicity pVb'lIsItI L@% 4 +publicize 'pVblIsaIz H2% 36A +publicized 'pVblIsaIzd Hc%,Hd% 36A +publicizes 'pVblIsaIzIz Ha% 46A +publicizing 'pVblIsaIzIN Hb% 46A +publicly 'pVblIklI Pu% 3 +publics 'pVblIks Kj$ 2 +publish 'pVblIS H1% 26A +published 'pVblISt Hc%,Hd% 26A +publisher 'pVblIS@R K6% 3 +publishers 'pVblIS@z Kj% 3 +publishes 'pVblISIz Ha% 36A +publishing 'pVblISIN Hb% 36A +pubs pVbz Kj% 1 +puce pjus L@$ 1 +puck pVk K6$ 1 +pucker 'pVk@R J0%,K6% 22A,2C,6A,15B +puckered 'pVk@d Jc%,Jd% 22A,2C,6A,15B +puckering 'pVk@rIN Jb% 32A,2C,6A,15B +puckers 'pVk@z Ja%,Kj% 22A,2C,6A,15B +puckish 'pVkIS OA% 2 +puckishly 'pVkISlI Pu% 3 +pucks pVks Kj$ 1 +pud pUd L@% 1 +pudden 'pUdn K6$ 2 +pudden-head 'pUdn-hed K6$ 3 +pudden-heads 'pUdn-hedz Kj$ 3 +puddens 'pUdnz Kj$ 2 +pudding 'pUdIN M6% 2 +pudding-face 'pUdIN-feIs K6$ 3 +pudding-faces 'pUdIN-feIsIz Kj$ 4 +puddings 'pUdINz Mj% 2 +puddle 'pVdl H2$,M6% 2 +puddled 'pVdld Hc$,Hd$ 2 +puddler 'pVdl@R K6$ 2 +puddlers 'pVdl@z Kj$ 2 +puddles 'pVdlz Ha$,Mj% 2 +puddling 'pVdlIN Hb$ 2 +pudenda pju'dend@ Kj$ 3 +pudgier 'pVdZI@R Or% 3 +pudgiest 'pVdZIIst Os% 3 +pudgy 'pVdZI OD% 2 +pueblo 'pwebl@U K6$ 2 +pueblos 'pwebl@Uz Kj$ 2 +puerile 'pjU@raIl OA% 3 +puerilities ,pjU@'rIlItIz Mj$ 5 +puerility ,pjU@'rIlItI M8$ 5 +puerperal pju'3p@r@l OA$ 4 +puff pVf J0%,K6% 12A,2C,6A,15A,15B +puffball 'pVfbOl K6$ 2 +puffballs 'pVfbOlz Kj$ 2 +puffed pVft Jc%,Jd% 12A,2C,6A,15A,15B +puffier 'pVfI@R Or% 3 +puffiest 'pVfIIst Os% 3 +puffin 'pVfIn K6% 2 +puffiness 'pVfIn@s L@% 3 +puffing 'pVfIN Jb% 22A,2C,6A,15A,15B +puffins 'pVfInz Kj% 2 +puffs pVfs Ja%,Kj% 12A,2C,6A,15A,15B +puffy 'pVfI OD% 2 +pug pVg K6% 1 +pug-dog 'pVg-d0g K6% 2 +pug-dogs 'pVg-d0gz Kj% 2 +pug-nose 'pVg-n@Uz K6%,OA% 2 +pug-nosed 'pVg-n@Uzd OA% 2 +pug-noses 'pVg-n@UzIz Kj% 3 +pugilism 'pjudZIlIz@m L@$ 4 +pugilist 'pjudZIlIst K6$ 3 +pugilistic ,pjudZI'lIstIk OA$ 4 +pugilists 'pjudZIlIsts Kj$ 3 +pugnacious pVg'neIS@s OA% 3 +pugnaciously pVg'neIS@slI Pu% 4 +pugnacity pVg'n&sItI L@% 4 +pugs pVgz Kj% 1 +puissance 'pwisAns L@$ 2 +puissant 'pwis@nt OA$ 2 +puke pjuk J2%,L@% 1 +puked pjukt Jc%,Jd% 1 +pukes pjuks Ja% 1 +puking 'pjukIN Jb% 2 +pukka 'pVk@ OA% 2 +pulchritude 'pVlkrItjud L@$ 3 +pulchritudinous ,pVlkrI'tjudIn@s OA$ 5 +pule pjul I2$ 12A +puled pjuld Ic$,Id$ 12A +pules pjulz Ia$ 12A +puling 'pjulIN Ib$ 22A +pull pUl J0%,M6% 12A,2C,3A,6A,15A,15B,22 +pull-in 'pUl-In K6% 2 +pull-ins 'pUl-Inz Kj$ 2 +pull-off 'pUl-0f K6$ 2 +pull-offs 'pUl-0fs Kj$ 2 +pull-out 'pUl-aUt K6% 2 +pull-outs 'pUl-aUts Kj$ 2 +pull-through 'pUl-Tru K6% 2 +pull-throughs 'pUl-Truz Kj$ 2 +pull-up 'pUl-Vp K6% 2 +pull-ups 'pUl-Vps Kj$ 2 +pulled pUld Jc%,Jd% 12A,2C,3A,6A,15A,15B,22 +pullet 'pUlIt K6% 2 +pullets 'pUlIts Kj% 2 +pulley 'pUlI K6% 2 +pulley-block 'pUlI-bl0k K6% 3 +pulley-blocks 'pUlI-bl0ks Kj% 3 +pulleys 'pUlIz Kj% 2 +pulling 'pUlIN Jb% 22A,2C,3A,6A,15A,15B,22 +pullover 'pUl@Uv@R K6% 3 +pullovers 'pUl@Uv@z Kj% 3 +pulls pUlz Ja%,Mj% 12A,2C,3A,6A,15A,15B,22 +pullulate 'pVljUleIt I2$ 3 +pullulated 'pVljUleItId Ic$,Id$ 4 +pullulates 'pVljUleIts Ia$ 3 +pullulating 'pVljUleItIN Ib$ 4 +pulmonary 'pVlm@n@rI OA% 4 +pulp pVlp J0%,M6% 12A,6A +pulped pVlpt Jc%,Jd% 12A,6A +pulpier 'pVlpI@R Or$ 3 +pulpiest 'pVlpIIst Os$ 3 +pulping 'pVlpIN Jb% 22A,6A +pulpit 'pUlpIt K6% 2 +pulpits 'pUlpIts Kj% 2 +pulps pVlps Ja%,Mj% 12A,6A +pulpy 'pVlpI OD% 2 +pulque 'pulkeI L@$ 2 +pulsar 'pVlsAR K6$ 2 +pulsars 'pVlsAz Kj$ 2 +pulsate pVl'seIt J2% 22A,6A +pulsated pVl'seItId Jc%,Jd% 32A,6A +pulsates pVl'seIts Ja% 22A,6A +pulsating pVl'seItIN Jb% 32A,6A +pulsation pVl'seISn M6% 3 +pulsations pVl'seISnz Mj% 3 +pulse pVls I2%,M6% 12C +pulsed pVlst Ic%,Id% 12C +pulses 'pVlsIz Ia%,Mj% 22C +pulsing 'pVlsIN Ib% 22C +pulverize 'pVlv@raIz J2% 32A,6A +pulverized 'pVlv@raIzd Jc%,Jd% 32A,6A +pulverizes 'pVlv@raIzIz Ja% 42A,6A +pulverizing 'pVlv@raIzIN Jb% 42A,6A +puma 'pjum@ K6$ 2 +pumas 'pjum@z Kj$ 2 +pumice 'pVmIs L@$ 2 +pumice-stone 'pVmIs-st@Un K6$ 3 +pumice-stones 'pVmIs-st@Unz Kj$ 3 +pummel 'pVm@l H4% 26A,15B +pummelled 'pVm@ld Hc%,Hd% 26A,15B +pummelling 'pVm@lIN Hb% 36A,15B +pummels 'pVm@lz Ha% 26A,15B +pump pVmp J0%,K6% 12A,2C,6A,15A,15B,22 +pump-room 'pVmp-rum K6% 2 +pump-rooms 'pVmp-rumz Kj% 2 +pumped pVmpt Jc%,Jd% 12A,2C,6A,15A,15B,22 +pumpernickel 'pVmp@nIkl L@$ 4 +pumping 'pVmpIN Jb% 22A,2C,6A,15A,15B,22 +pumpkin 'pVmpkIn K6% 2 +pumpkins 'pVmpkInz Kj% 2 +pumps pVmps Ja%,Kj% 12A,2C,6A,15A,15B,22 +pun pVn I4%,K6% 12A,3A +punch pVntS H1%,M7% 16A,15A,15B +punch-drunk 'pVntS-drVNk OA% 2 +punch-up 'pVntS-Vp K6% 2 +punch-ups 'pVntS-Vps Kj% 2 +punchball 'pVntSbOl K6% 2 +punchballs 'pVntSbOlz Kj% 2 +punchbowl 'pVntSb@Ul K6% 2 +punchbowls 'pVntSb@Ulz Kj% 2 +punched pVntSt Hc%,Hd% 16A,15A,15B +punches 'pVntSIz Ha%,Mj% 26A,15A,15B +punching 'pVntSIN Hb% 26A,15A,15B +punching-ball 'pVntSIN-bOl K6$ 3 +punching-balls 'pVntSIN-bOlz Kj$ 3 +punctilio pVNk'tIlI@U M6$ 4 +punctilios pVNk'tIlI@Uz Mj$ 4 +punctilious pVNk'tIlI@s OA% 4 +punctiliously pVNk'tIlI@slI Pu% 5 +punctiliousness pVNk'tIlI@sn@s L@% 5 +punctual 'pVNktSU@l OA% 3 +punctuality ,pVNktSU'&lItI L@% 5 +punctually 'pVNktSU@lI Pu% 4 +punctuate 'pVNktSUeIt H2% 36A,15A +punctuated 'pVNktSUeItId Hc%,Hd% 46A,15A +punctuates 'pVNktSUeIts Ha% 36A,15A +punctuating 'pVNktSUeItIN Hb% 46A,15A +punctuation ,pVNktSU'eISn L@% 4 +puncture 'pVNktS@R J2%,K6% 22A,6A +punctured 'pVNktS@d Jc%,Jd% 22A,6A +punctures 'pVNktS@z Ja%,Kj% 22A,6A +puncturing 'pVNktS@rIN Jb% 32A,6A +pundit 'pVndIt K6% 2 +pundits 'pVndIts Kj% 2 +pungency 'pVndZ@nsI L@% 3 +pungent 'pVndZ@nt OA% 2 +pungently 'pVndZ@ntlI Pu% 3 +punier 'pjunI@R Or% 3 +puniest 'pjunIIst Os% 3 +punily 'pjunIlI Pu% 3 +punish 'pVnIS H1% 26A,14 +punishable 'pVnIS@bl OA% 4 +punished 'pVnISt Hc%,Hd% 26A,14 +punishes 'pVnISIz Ha% 36A,14 +punishing 'pVnISIN Hb% 36A,14 +punishment 'pVnISm@nt M6% 3 +punishments 'pVnISm@nts Mj% 3 +punitive 'pjunItIv OA% 3 +punk pVNk M6% 1 +punkah 'pVNk@ K6$ 2 +punkahs 'pVNk@z Kj$ 2 +punks pVNks Mj% 1 +punned pVnd Ic%,Id% 12A,3A +punnet 'pVnIt K6% 2 +punnets 'pVnIts Kj% 2 +punning 'pVnIN Ib% 22A,3A +puns pVnz Ia%,Kj% 12A,3A +punster 'pVnst@R K6$ 2 +punsters 'pVnst@z Kj$ 2 +punt pVnt J0%,K6% 12A,6A +punted 'pVntId Jc%,Jd% 22A,6A +punter 'pVnt@R K6% 2 +punters 'pVnt@z Kj% 2 +punting 'pVntIN Jb% 22A,6A +punts pVnts Ja%,Kj% 12A,6A +puny 'pjunI OD% 2 +pup pVp K6% 1 +pupa 'pjup@ K6$ 2 +pupae 'pjupi Kj$ 2 +pupas 'pjup@z Kj$ 2 +pupil 'pjupl K6% 2 +pupils 'pjuplz Kj% 2 +puppet 'pVpIt K6% 2 +puppeteer ,pVpI'tI@R K6% 3 +puppeteers ,pVpI'tI@z Kj% 3 +puppets 'pVpIts Kj% 2 +puppies 'pVpIz Kj% 2 +puppy 'pVpI K8% 2 +pups pVps Kj% 1 +pur_ee 'pjU@reI K6% 2 +pur_ees 'pjU@reIz Kj$ 2 +purblind 'p3blaInd OA$ 2 +purchasable 'p3tS@s@bl OA% 4 +purchase 'p3tS@s H2%,M6% 26A +purchased 'p3tS@st Hc%,Hd% 26A +purchaser 'p3tS@s@R K6% 3 +purchasers 'p3tS@s@z Kj% 3 +purchases 'p3tS@sIz Ha%,Mj% 36A +purchasing 'p3tS@sIN Hb% 36A +purdah 'p3d@ L@$ 2 +pure pjU@R OB% 1 +purely 'pjU@lI Pu% 2 +pureness 'pjU@n@s L@% 2 +purer 'pjU@r@R Or% 2 +purest 'pjU@rIst Os% 2 +purgation p3'geISn L@$ 3 +purgative 'p3g@tIv K6%,OA% 3 +purgatives 'p3g@tIvz Kj% 3 +purgatorial ,p3g@'tOrI@l OA$ 5 +purgatories 'p3g@trIz Kj% 3 +purgatory 'p3g@trI K8% 3 +purge p3dZ H2%,K6% 16A,14,15A,15B +purged p3dZd Hc%,Hd% 16A,14,15A,15B +purges 'p3dZIz Ha%,Kj% 26A,14,15A,15B +purging 'p3dZIN Hb% 26A,14,15A,15B +purification ,pjU@rIfI'keISn M6% 5 +purifications ,pjU@rIfI'keISnz Mj% 5 +purified 'pjU@rIfaId Hc%,Hd% 36A,14 +purifier 'pjU@rIfaI@R K6% 4 +purifiers 'pjU@rIfaI@z Kj% 4 +purifies 'pjU@rIfaIz Ha% 36A,14 +purify 'pjU@rIfaI H3% 36A,14 +purifying 'pjU@rIfaIIN Hb% 46A,14 +purist 'pjU@rIst K6% 2 +purists 'pjU@rIsts Kj% 2 +puritan 'pjU@rIt@n K6%,OA% 3 +puritanical ,pjU@rI't&nIkl OA% 5 +puritanically ,pjU@rI't&nIklI Pu% 5 +puritanism 'pjU@rIt@nIz@m L@% 5 +puritans 'pjU@rIt@nz Kj% 3 +purity 'pjU@rItI L@% 3 +purl p3l J0$,K6$ 1 +purled p3ld Jc$,Jd$ 1 +purlieus 'p3ljuz Kj$ 2 +purling 'p3lIN Jb$ 2 +purloin p3'loIn H0% 26A +purloined p3'loInd Hc%,Hd% 26A +purloining p3'loInIN Hb% 36A +purloins p3'loInz Ha% 26A +purls p3lz Ja$,Kj$ 1 +purple 'p3pl M6%,OA% 2 +purples 'p3plz Mj% 2 +purplish 'p3plIS OA% 2 +purport 'p3p@t L@% 2 +purport p@'pOt H0% 26A,7A,9 +purported p@'pOtId Hc%,Hd% 36A,7A,9 +purporting p@'pOtIN Hb% 36A,7A,9 +purports p@'pOts Ha% 26A,7A,9 +purpose 'p3p@s H2$,M6% 26A,6D,7A,9 +purpose-built 'p3p@s-bIlt OA% 3 +purposed 'p3p@st Hc$,Hd$ 26A,6D,7A,9 +purposeful 'p3p@sf@l OA% 3 +purposefully 'p3p@sf@lI Pu% 4 +purposeless 'p3p@sl@s OA% 3 +purposelessly 'p3p@sl@slI Pu% 4 +purposely 'p3p@slI Pu% 3 +purposes 'p3p@sIz Ha$,Mj% 36A,6D,7A,9 +purposing 'p3p@sIN Hb$ 36A,6D,7A,9 +purposive 'p3p@sIv OA$ 3 +purr p3R J0%,K6% 12A,2C,6A +purred p3d Jc%,Jd% 12A,2C,6A +purring 'p3rIN Jb% 22A,2C,6A +purrs p3z Ja%,Kj% 12A,2C,6A +purse p3s H2%,K6% 16A,15B +purse-proud 'p3s-praUd OA$ 2 +pursed p3st Hc%,Hd% 16A,15B +purser 'p3s@R K6% 2 +pursers 'p3s@z Kj% 2 +purses 'p3sIz Ha%,Kj% 26A,15B +pursing 'p3sIN Hb% 26A,15B +pursuance p@'sju@ns K6% 3 +pursuances p@'sju@nsIz Kj$ 4 +pursuant p@'sju@nt OA% 3 +pursue p@'sju H2% 26A +pursued p@'sjud Hc%,Hd% 26A +pursuer p@'sju@R K6% 3 +pursuers p@'sju@z Kj% 3 +pursues p@'sjuz Ha% 26A +pursuing p@'sjuIN Hb% 36A +pursuit p@'sjut M6% 2 +pursuits p@'sjuts Mj% 2 +pursy 'p3sI OA$ 2 +purulence 'pjU@r@l@ns L@$ 3 +purulent 'pjU@r@l@nt OA$ 3 +purvey p@'veI J0% 23A,6A,14 +purveyance p@'veI@ns M6% 3 +purveyances p@'veI@nsIz Mj$ 4 +purveyed p@'veId Jc%,Jd% 23A,6A,14 +purveying p@'veIIN Jb% 33A,6A,14 +purveyor p@'veI@R K6% 3 +purveyors p@'veI@z Kj% 3 +purveys p@'veIz Ja% 23A,6A,14 +purview 'p3vju K6$ 2 +purviews 'p3vjuz Kj$ 2 +pus pVs L@% 1 +push pUS J1%,M7% 12A,2C,3A,6A,14,15A,15B,17,22 +push-bike 'pUS-baIk K6% 2 +push-bikes 'pUS-baIks Kj% 2 +pushcart 'pUSkAt K6% 2 +pushcarts 'pUSkAts Kj% 2 +pushchair 'pUStSe@R K6% 2 +pushchairs 'pUStSe@z Kj% 2 +pushed pUSt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B,17,22 +pusher 'pUS@R K6% 2 +pushers 'pUS@z Kj% 2 +pushes 'pUSIz Ja%,Mj% 22A,2C,3A,6A,14,15A,15B,17,22 +pushful 'pUSfUl OA$ 2 +pushing 'pUSIN Jb%,OA% 22A,2C,3A,6A,14,15A,15B,17,22 +pushover 'pUS@Uv@R K6% 3 +pushovers 'pUS@Uv@z Kj$ 3 +pusillanimity ,pjusIl@'nImItI L@$ 6 +pusillanimous ,pjusI'l&nIm@s OA% 5 +puss pUs Ki% 1 +pussies 'pUsIz Kj% 2 +pussy 'pUsI K8% 2 +pussycat 'pUsIk&t K6% 3 +pussycats 'pUsIk&ts Kj% 3 +pussyfoot 'pUsIfUt I0% 32A,2C +pussyfooted 'pUsIfUtId Ic%,Id% 42A,2C +pussyfooting 'pUsIfUtIN Ib% 42A,2C +pussyfoots 'pUsIfUts Ia% 32A,2C +pustule 'pVstjul K6$ 2 +pustules 'pVstjulz Kj$ 2 +put pUt J5*,Jc*,Jd* 12C,6A,14,15A,15B,22 +put pVt J4%,K6% 1 +put-down 'pUt-daUn K6% 2 +put-downs 'pUt-daUnz Kj$ 2 +put-on 'pUt-0n K6% 2 +put-ons 'pUt-0nz Kj$ 2 +putative 'pjut@tIv OA% 3 +putrefaction ,pjutrI'f&kSn K6% 4 +putrefactions ,pjutrI'f&kSnz Kj$ 4 +putrefied 'pjutrIfaId Jc%,Jd% 32A,6A +putrefies 'pjutrIfaIz Ja% 32A,6A +putrefy 'pjutrIfaI J3% 32A,6A +putrefying 'pjutrIfaIIN Jb% 42A,6A +putrescence pju'tresns K6$ 3 +putrescences pju'tresnsIz Kj$ 4 +putrescent pju'tresnt OA$ 3 +putrid 'pjutrId OA% 2 +putridity pju'trIdItI L@$ 4 +puts pUts Ja% 12C,6A,14,15A,15B,22 +puts pVts Ja$,Kj$ 1 +putsch pUtS K7$ 1 +putsches 'pUtSIz Kj$ 2 +putt pVt J0$,K6$ 12A,6A +putted 'pVtId Jc$,Jd$ 22A,6A +puttee 'pVtI K6$ 2 +puttees 'pVtIz Kj$ 2 +putter 'pVt@R J0$ 2 +puttered 'pVt@d Jc$,Jd$ 2 +puttering 'pVt@rIN Jb$ 3 +putters 'pVt@z Ja$ 2 +puttied 'pVtId Hc$,Hd$ 26A,15B +putties 'pVtIz Ha$ 26A,15B +putting 'pVtIN Jb% 22A,2C,6A,14,15A,15B,22 +putting-green 'pVtIN-grin K6% 3 +putting-greens 'pVtIN-grinz Kj% 3 +putting-iron 'pVtIN-aI@n K6% 4 +putting-irons 'pVtIN-aI@nz Kj% 4 +putts pVts Ja%,Kj% 12A,6A +putty 'pVtI H3$,L@% 26A,15B +puttying 'pVtIIN Hb$ 36A,15B +puzzle 'pVzl J2%,K6% 23A,6A,15B +puzzled 'pVzld Jc%,Jd% 23A,6A,15B +puzzlement 'pVzlm@nt K6% 3 +puzzlements 'pVzlm@nts Kj% 3 +puzzler 'pVzl@R K6% 2 +puzzlers 'pVzl@z Kj% 2 +puzzles 'pVzlz Ja%,Kj% 23A,6A,15B +puzzling 'pVzlIN Jb% 23A,6A,15B +pygmies 'pIgmIz Kj% 2 +pygmy 'pIgmI K8% 2 +pyjama p@'dZAm@ Oq% 3 +pyjamas p@'dZAm@z Kj% 3 +pylon 'paIl0n K6% 2 +pylons 'paIl0nz Kj% 2 +pyorrhoea ,paI@'rI@ L@$ 4 +pyramid 'pIr@mId K6% 3 +pyramids 'pIr@mIdz Kj% 3 +pyre 'paI@R K6$ 1 +pyres 'paI@z Kj$ 1 +pyrites ,paI@'raItiz L@$ 3 +pyrotechnic ,paIr@U'teknIk OA% 4 +pyrotechnics ,paIr@'teknIks Kj% 4 +python 'paITn K6% 2 +pythons 'paITnz Kj% 2 +pyx pIks K7$ 1 +pyxes 'pIksIz Kj$ 2 +q kju Ki$ 1 +q's kjuz Kj$ 1 +qt kwOt Y]$ 1 +qua kweI T-$,V-$ 1 +quack kw&k I0%,K6% 1 +quack-quack 'kw&k-kw&k K6% 2 +quack-quacks 'kw&k-kw&ks Kj% 2 +quacked kw&kt Ic%,Id% 1 +quackery 'kw&k@rI L@$ 3 +quacking 'kw&kIN Ib% 2 +quacks kw&ks Ia%,Kj% 1 +quad kw0d K6% 1 +quadrangle 'kw0dr&Ngl K6% 3 +quadrangles 'kw0dr&Nglz Kj% 3 +quadrangular kw0'dr&NgjUl@R OA% 4 +quadrant 'kw0dr@nt K6% 2 +quadrants 'kw0dr@nts Kj% 2 +quadratic kw0'dr&tIk OA% 3 +quadrilateral ,kw0drI'l&t@r@l K6%,OA% 5 +quadrilaterals ,kw0drI'l&t@r@lz Kj% 5 +quadrille kw@'drIl K6$ 2 +quadrilles kw@'drIlz Kj$ 2 +quadrillion kw0'drIlI@n K6$ 4 +quadrillions kw0'drIlI@nz Kj$ 4 +quadrophonic ,kw0dr@'f0nIk OA% 4 +quadrophony kw0'dr0f@nI L@$ 4 +quadruped 'kw0drUped K6% 3 +quadrupeds 'kw0drUpedz Kj% 3 +quadruple 'kw0drupl K6%,OA% 3 +quadruple kw0'drupl J2% 32A,6A +quadrupled kw0'drupld Jc%,Jd% 32A,6A +quadruples 'kw0druplz Kj% 3 +quadruples kw0'druplz Ja% 32A,6A +quadruplet 'kw0drupl@t K6$ 3 +quadruplets 'kw0drupl@ts Kj$ 3 +quadruplicate kw0'druplIk@t K6%,OA% 4 +quadruplicate kw0'druplIkeIt H2$ 46A +quadruplicated kw0'druplIkeItId Hc$,Hd$ 56A +quadruplicates kw0'druplIk@ts Kj$ 4 +quadruplicates kw0'druplIkeIts Ha$ 46A +quadruplicating kw0'druplIkeItIN Hb$ 56A +quadrupling kw0'druplIN Jb% 32A,6A +quads kw0dz Kj% 1 +quaff kw0f J0% 12A,6A,15B +quaffed kw0ft Jc%,Jd% 12A,6A,15B +quaffing 'kw0fIN Jb% 22A,6A,15B +quaffs kw0fs Ja% 12A,6A,15B +quagga 'kw&g@ K6$ 2 +quaggas 'kw&g@z Kj$ 2 +quagmire 'kw&gmaI@R K6% 2 +quagmires 'kw&gmaI@z Kj% 2 +quail kweIl I0%,K6% 12A,3A +quailed kweIld Ic%,Id% 12A,3A +quailing 'kweIlIN Ib% 22A,3A +quails kweIlz Ia%,Kj% 12A,3A +quaint kweInt OC% 1 +quainter 'kweInt@R Or% 2 +quaintest 'kweIntIst Os% 2 +quaintly 'kweIntlI Pu% 2 +quaintness 'kweIntn@s L@% 2 +quake kweIk I2%,K6% 12A,2C +quaked kweIkt Ic%,Id% 12A,2C +quakes kweIks Ia%,Kj% 12A,2C +quaking 'kweIkIN Ib% 22A,2C +qualification ,kw0lIfI'keISn M6% 5 +qualifications ,kw0lIfI'keISnz Mj% 5 +qualified 'kw0lIfaId Jc%,Jd%,OA% 32C,3A,4A,6A,14,16B,17 +qualifier 'kw0lIfaI@R K6% 4 +qualifiers 'kw0lIfaI@z Kj% 4 +qualifies 'kw0lIfaIz Ja% 32C,3A,4A,6A,14,16B,17 +qualify 'kw0lIfaI J3% 32C,3A,4A,6A,14,16B,17 +qualifying 'kw0lIfaIIN Jb% 42C,3A,4A,6A,14,16B,17 +qualitative 'kw0lIt@tIv OA% 4 +qualitatively 'kw0lIt@tIvlI Pu% 5 +qualities 'kw0lItIz Mj% 3 +quality 'kw0lItI M8% 3 +qualm kwAm K6% 1 +qualms kwAmz Kj% 1 +quandaries 'kw0nd@rIz Kj$ 3 +quandary 'kw0nd@rI K8% 3 +quango 'kw&Ng@U K6$ 2 +quangos 'kw&Ng@Uz Kj$ 2 +quanta 'kw0nt@ Kj$ 2 +quantified 'kw0ntIfaId Hc%,Hd% 36A +quantifies 'kw0ntIfaIz Ha% 36A +quantify 'kw0ntIfaI H3% 36A +quantifying 'kw0ntIfaIIN Hb% 46A +quantitative 'kw0ntIt@tIv OA% 4 +quantitatively 'kw0ntIt@tIvlI Pu% 5 +quantities 'kw0ntItIz Mj% 3 +quantity 'kw0ntItI M8% 3 +quantum 'kw0nt@m Ki% 2 +quarantine 'kw0r@ntin H2%,L@% 36A +quarantined 'kw0r@ntind Hc%,Hd% 36A +quarantines 'kw0r@ntinz Ha% 36A +quarantining 'kw0r@ntinIN Hb% 46A +quark kwAk K6$ 1 +quarks kwAks Kj$ 1 +quarrel 'kw0r@l I4%,K6% 22A,2C,3A +quarrelled 'kw0r@ld Ic%,Id% 22A,2C,3A +quarrelling 'kw0r@lIN Ib% 32A,2C,3A +quarrels 'kw0r@lz Ia%,Kj% 22A,2C,3A +quarrelsome 'kw0r@ls@m OA% 3 +quarried 'kw0rId Jc%,Jd% 22A,2C,6A,15A,15B +quarries 'kw0rIz Ja%,Kj% 22A,2C,6A,15A,15B +quarry 'kw0rI J3%,K8% 22A,2C,6A,15A,15B +quarrying 'kw0rIIN Jb% 32A,2C,6A,15A,15B +quarryman 'kw0rIm@n Ki% 3 +quarrymen 'kw0rIm@n Kj% 3 +quart kwOt K6% 1 +quarter 'kwOt@R H0%,M6% 26A,15A +quarter-day 'kwOt@-deI K6% 3 +quarter-days 'kwOt@-deIz Kj% 3 +quarter-deck 'kwOt@-dek K6% 3 +quarter-decks 'kwOt@-deks Kj% 3 +quarter-plate 'kwOt@-pleIt K6$ 3 +quarter-plates 'kwOt@-pleIts Kj$ 3 +quartered 'kwOt@d Hc%,Hd% 26A,15A +quarterfinal ,kwOt@'faInl K6% 4 +quarterfinals ,kwOt@'faInlz Kj% 4 +quartering 'kwOt@rIN Hb$,K6$ 36A,15A +quarterings 'kwOt@rINz Kj$ 3 +quarterlies 'kwOt@lIz Kj% 3 +quarterlight 'kwOt@laIt K6$ 3 +quarterlights 'kwOt@laIts Kj$ 3 +quarterly 'kwOt@lI K8%,OA%,Pu% 3 +quartermaster 'kwOt@mAst@R K6% 4 +quartermaster-general ,kwOt@mAst@-'dZenr@l K6% 6 +quartermaster-generals ,kwOt@mAst@-'dZenr@lz Kj% 6 +quartermasters 'kwOt@mAst@z Kj% 4 +quarters 'kwOt@z Ha%,Mj% 26A,15A +quarterstaff 'kwOt@stAf K6$ 3 +quarterstaffs 'kwOt@stAfs Kj$ 3 +quartet kwO'tet K6% 2 +quartets kwO'tets Kj% 2 +quarto 'kwOt@U K6$ 2 +quartos 'kwOt@Uz Kj$ 2 +quarts kwOts Kj% 1 +quartz kwOts L@% 1 +quasar 'kweIzAR K6$ 2 +quasars 'kweIzAz Kj$ 2 +quash kw0S H1% 16A +quashed kw0St Hc%,Hd% 16A +quashes 'kw0SIz Ha% 26A +quashing 'kw0SIN Hb% 26A +quasi- 'kweIsaI- U-% 2 +quassia 'kw0S@ L@$ 2 +quatercentenaries ,kw0t@sen'tin@rIz Kj% 6 +quatercentenary ,kw0t@sen'tin@rI K8% 6 +quatrain 'kw0treIn K6$ 2 +quatrains 'kw0treInz Kj$ 2 +quattrocento ,kw&tr@U'tSent@U K6$ 4 +quattrocentos ,kw&tr@U'tSent@Uz Kj$ 4 +quaver 'kweIv@R J0%,K6% 22A,6A,15B +quavered 'kweIv@d Jc%,Jd% 22A,6A,15B +quavering 'kweIv@rIN Jb% 32A,6A,15B +quavers 'kweIv@z Ja%,Kj% 22A,6A,15B +quay ki K6% 1 +quays kiz Kj% 1 +queasier 'kwizI@R Or% 3 +queasiest 'kwizIIst Os% 3 +queasily 'kwizIlI Pu% 3 +queasiness 'kwizIn@s L@% 3 +queasy 'kwizI OD% 2 +queen kwin H0$,K6% 1 +queened kwind Hc$,Hd$ 1 +queening 'kwinIN Hb$ 2 +queenlier 'kwinlI@R Or$ 3 +queenliest 'kwinlIIst Os$ 3 +queenly 'kwinlI OD% 2 +queens kwinz Ha$,Kj% 1 +queer kwI@R H0%,K6%,OC% 16A +queered kwI@d Hc%,Hd% 16A +queerer 'kwI@r@R Or% 2 +queerest 'kwI@rIst Os% 2 +queering 'kwI@rIN Hb% 26A +queerly 'kwI@lI Pu% 2 +queerness 'kwI@n@s L@% 2 +queers kwI@z Ha%,Kj% 16A +quell kwel H0% 16A +quelled kweld Hc%,Hd% 16A +quelling 'kwelIN Hb% 26A +quells kwelz Ha% 16A +quench kwentS H1% 16A +quenched kwentSt Hc%,Hd% 16A +quenches 'kwentSIz Ha% 26A +quenching 'kwentSIN Hb% 26A +quenchless 'kwentSl@s OA$ 2 +queried 'kwI@rId Hc%,Hd% 26A,10 +queries 'kwI@rIz Ha%,Kj% 26A,10 +quern kw3n K6$ 1 +querns kw3nz Kj$ 1 +querulous 'kwerUl@s OA% 3 +querulously 'kwerUl@slI Pu% 4 +querulousness 'kwerUl@sn@s L@% 4 +query 'kwI@rI H3%,K8% 26A,10 +querying 'kwI@rIIN Hb% 36A,10 +quest kwest I0$,K6% 13A +quested 'kwestId Ic$,Id$ 23A +questing 'kwestIN Ib$ 23A +question 'kwestS@n H0%,M6* 26A,10 +question-mark 'kwestS@n-mAk K6% 3 +question-marks 'kwestS@n-mAks Kj% 3 +question-master 'kwestS@n-mAst@R K6% 4 +question-masters 'kwestS@n-mAst@z Kj% 4 +questionable 'kwestS@n@bl OA% 4 +questionably 'kwestS@n@blI Pu% 4 +questioned 'kwestS@nd Hc%,Hd% 26A,10 +questioner 'kwestS@n@R K6% 3 +questioners 'kwestS@n@z Kj% 3 +questioning 'kwestS@nIN Hb% 36A,10 +questioningly 'kwestS@nINlI Pu% 4 +questionnaire ,kwestS@'ne@R K6% 3 +questionnaires ,kwestS@'ne@z Kj% 3 +questions 'kwestS@nz Ha%,Mj% 26A,10 +quests kwests Ia$,Kj% 13A +quetzal 'kwetsl K6$ 2 +quetzals 'kwetslz Kj$ 2 +queue kju I5%,K6% 12A,2C,3A +queued kjud Ic%,Id% 12A,2C,3A +queueing 'kjuIN Ib% 22A,2C,3A +queues kjuz Ia%,Kj% 12A,2C,3A +qui vive ,ki 'viv L@$ 2 +quibble 'kwIbl I2%,K6% 2 +quibbled 'kwIbld Ic%,Id% 2 +quibbler 'kwIbl@R K6% 2 +quibblers 'kwIbl@z Kj% 2 +quibbles 'kwIblz Ia%,Kj% 2 +quibbling 'kwIblIN Ib%,OA% 2 +quiche kiS K6% 1 +quiches 'kiSIz Kj% 2 +quick kwIk L@%,OC%,Pu% 1 +quick-change kwIk-'tSeIndZ Oq% 2 +quick-eared kwIk-'I@d OA$ 2 +quick-eyed 'kwIk-aId OA$ 2 +quick-freeze kwik-'friz H5$ 2 +quick-freezes kwik-'frizIz Ha$ 3 +quick-freezing kwik-'frizIN Hb$ 3 +quick-froze kwik-'fr@Uz Hc$ 2 +quick-frozen kwik-'fr@Uzn Hd% 3 +quick-sighted kwIk-'saItId OA% 3 +quick-tempered kwIk-'temp@d OA% 3 +quick-witted kwIk-'wItId OA% 3 +quicken 'kwIk@n J0% 22A,6A +quickened 'kwIk@nd Jc%,Jd% 22A,6A +quickening 'kwIk@nIN Jb% 32A,6A +quickens 'kwIk@nz Ja% 22A,6A +quicker 'kwIk@R Or%,Pu% 2 +quickest 'kwIkIst Os%,Pu% 2 +quickie 'kwIkI K6% 2 +quickies 'kwIkIz Kj% 2 +quicklime 'kwIklaIm L@% 2 +quickly 'kwIklI Pu% 2 +quickness 'kwIkn@s L@% 2 +quicksand 'kwIks&nd M6% 2 +quicksands 'kwIks&ndz Mj% 2 +quickset 'kwIkset OA% 2 +quicksilver 'kwIksIlv@R L@% 3 +quickstep 'kwIkstep K6% 2 +quicksteps 'kwIksteps Kj$ 2 +quid kwId K9% 1 +quid pro quo ,kwId pr@U 'kw@U Ki% 3 +quids kwIdz Kj$ 1 +quiescence kwaI'esns Ki% 3 +quiescent kwaI'esnt OA% 3 +quiescently kwaI'esntlI Pu% 4 +quiet 'kwaI@t J0%,L@%,OC% 2 +quieted 'kwaI@tId Jc%,Jd% 3 +quieten 'kwaI@tn J0% 32C,6A,15B +quietened 'kwaI@tnd Jc%,Jd% 32C,6A,15B +quietening 'kwaI@tnIN Jb% 32C,6A,15B +quietens 'kwaI@tnz Ja% 32C,6A,15B +quieter 'kwaI@t@R Or% 3 +quietest 'kwaI@tIst Os% 3 +quieting 'kwaI@tIN Jb% 3 +quietism 'kwaIItIz@m L@$ 4 +quietist 'kwaI@tIst K6$ 3 +quietists 'kwaI@tIsts Kj$ 3 +quietly 'kwaI@tlI Pu% 3 +quietness 'kwaI@tn@s L@% 3 +quiets 'kwaI@ts Ja% 2 +quietude 'kwaIItjud Ki$ 3 +quietus kwaI'it@s K7$ 3 +quietuses kwaI'it@sIz Kj$ 4 +quiff kwIf K6$ 1 +quiffs kwIfs Kj$ 1 +quill kwIl K6% 1 +quill-feather 'kwIl-feD@R K6% 3 +quill-feathers 'kwIl-feD@z Kj% 3 +quills kwIlz Kj% 1 +quilt kwIlt H0%,K6% 1 +quilted 'kwIltId Hc%,Hd% 2 +quilting 'kwIltIN Hb% 2 +quilts kwIlts Ha%,Kj% 1 +quin kwIn K6% 1 +quince kwIns K6% 1 +quincentenaries ,kwInsen'tin@rIz Kj% 5 +quincentenary ,kwInsen'tin@rI K8%,OA% 5 +quinces 'kwInsIz Kj% 2 +quinine kwI'nin L@% 2 +quins kwInz Kj% 1 +quinsy 'kwInzI L@$ 2 +quintal 'kwIntl K6$ 2 +quintals 'kwIntlz Kj$ 2 +quintessence kwIn'tesns K6% 3 +quintessences kwIn'tesnsIz Kj$ 4 +quintet kwIn'tet K6% 2 +quintets kwIn'tets Kj% 2 +quintuplet 'kwIntjuplet K6% 3 +quintuplets 'kwIntjuplets Kj% 3 +quip kwIp I4%,K6% 1 +quipped kwIpt Ic%,Id% 1 +quipping 'kwIpIN Ib% 2 +quips kwIps Ia%,Kj% 1 +quire 'kwaI@R K6$ 1 +quires 'kwaI@z Kj$ 1 +quirk kw3k K6% 1 +quirks kw3ks Kj% 1 +quisling 'kwIzlIN K6$ 2 +quislings 'kwIzlINz Kj$ 2 +quit kwIt H4%,Hc%,Hd%,Op% 12A,6A,6D +quite kwaIt Pu* 1 +quits kwIts Ha%,Op% 12A,6A,6D +quittance 'kwItns K6$ 2 +quittances 'kwItnsIz Kj$ 3 +quitted 'kwItId Hc%,Hd% 22A,6A,6D +quitter 'kwIt@R K6% 2 +quitters 'kwIt@z Kj% 2 +quitting 'kwItIN Hb% 22A,6A,6D +quiver 'kwIv@R J0%,K6% 22A,6A +quivered 'kwIv@d Jc%,Jd% 22A,6A +quivering 'kwIv@rIN Jb% 32A,6A +quivers 'kwIv@z Ja%,Kj% 22A,6A +quixotic kwIk's0tIk OA% 3 +quixotically kwIk's0tIklI Pu% 4 +quiz kwIz H5%,K7% 16A +quizes 'kwIzIz Kj% 2 +quizmaster 'kwIzmAst@R K6% 3 +quizmasters 'kwIzmAst@z Kj% 3 +quizzed kwIzd Hc%,Hd% 16A +quizzes 'kwIzIz Ha% 26A +quizzical 'kwIzIkl OA% 3 +quizzically 'kwIzIklI Pu% 3 +quizzing 'kwIzIN Hb% 26A +quoin koIn K6$ 1 +quoins koInz Kj$ 1 +quoit koIt K6% 1 +quoits koIts Kj% 1 +quorum 'kwOr@m K6% 2 +quorums 'kwOr@mz Kj$ 2 +quota 'kw@Ut@ K6% 2 +quotability ,kw@Ut@'bIlItI L@% 5 +quotable 'kw@Ut@bl OA% 3 +quotas 'kw@Ut@z Kj% 2 +quotation kw@U'teISn M6% 3 +quotations kw@U'teISnz Mj% 3 +quote kw@Ut H2%,K6% 16A,13A,14 +quoted 'kw@UtId Hc%,Hd% 26A,13A,14 +quotes kw@Uts Ha%,Kj% 16A,13A,14 +quoth kw@UT Hc$ 1 +quotidian kw@U'tIdI@n OA$ 4 +quotient 'kw@USnt K6% 2 +quotients 'kw@USnts Kj% 2 +quoting 'kw@UtIN Hb% 26A,13A,14 +qv ,kju'vi Y~$ 2 +r AR Ki$ 1 +r's Az Kj$ 1 +r^ole r@Ul K6% 1 +r^oles r@Ulz Kj% 1 +r_echauff_e reI'S@UfeI K6$ 3 +r_echauff_es reI'S@UfeIz Kj$ 3 +r_egime reI'Zim K6% 2 +r_egimes reI'Zimz Kj% 2 +r_esum_e 'rezjumeI K6% 3 +r_esum_es 'rezjumeIz Kj% 3 +rabbi 'r&baI K6% 2 +rabbinical r@'bInIkl OA$ 4 +rabbis 'r&baIz Kj% 2 +rabbit 'r&bIt I0%,K6% 2 +rabbit-burrow 'r&bIt-bVr@U K6% 4 +rabbit-burrows 'r&bIt-bVr@Uz Kj% 4 +rabbit-hole 'r&bIt-h@Ul K6% 3 +rabbit-holes 'r&bIt-h@Ulz Kj% 3 +rabbit-hutch 'r&bIt-hVtS K7% 3 +rabbit-hutches 'r&bIt-hVtSIz Kj% 4 +rabbit-punch 'r&bIt-pVntS K7% 3 +rabbit-punches 'r&bIt-pVntSIz Kj% 4 +rabbit-warren 'r&bIt-w0r@n K6% 4 +rabbit-warrens 'r&bIt-w0r@nz Kj% 4 +rabbited 'r&bItId Ic%,Id% 3 +rabbiting 'r&bItIN Ib% 3 +rabbits 'r&bIts Ia%,Kj% 2 +rabble 'r&bl K6% 2 +rabble-rousing 'r&bl-raUzIN OA% 4 +rabbles 'r&blz Kj% 2 +rabid 'r&bId OA% 2 +rabies 'reIbiz L@% 2 +raccoon r@'kun K6% 2 +raccoons r@'kunz Kj% 2 +race reIs J2%,M6% 12A,2C,3A,4A,6A,15A +race-meeting 'reIs-mitIN K6% 3 +race-meetings 'reIs-mitINz Kj% 3 +racecard 'reIskAd K6% 2 +racecards 'reIskAdz Kj% 2 +racecourse 'reIskOs K6% 2 +racecourses 'reIskOsIz Kj% 3 +raced reIst Jc%,Jd% 12A,2C,3A,4A,6A,15A +racehorse 'reIshOs K6% 2 +racehorses 'reIshOsIz Kj% 3 +raceme r&'sim K6$ 2 +racemes r&'simz Kj$ 2 +racer 'reIs@R K6% 2 +racers 'reIs@z Kj% 2 +races 'reIsIz Ja%,Mj% 22A,2C,3A,4A,6A,15A +racial 'reISl OA% 2 +racialism 'reIS@lIz@m L@% 4 +racialist 'reIS@lIst K6% 3 +racialists 'reIS@lIsts Kj% 3 +racially 'reIS@lI Pu% 3 +racier 'reIsI@R Or% 3 +raciest 'reIsIIst Os% 3 +racily 'reIsIlI Pu% 3 +raciness 'reIsIn@s L@% 3 +racing 'reIsIN Jb%,L@% 22A,2C,3A,4A,6A,15A +racism 'reIsIz@m L@% 3 +racist 'reIsIst K6% 2 +racists 'reIsIsts Kj% 2 +rack r&k H0%,M6% 16A,15A +rack-railway 'r&k-reIlweI K6$ 3 +rack-railways 'r&k-reIlweIz Kj$ 3 +rack-rent 'r&k-rent K6$ 2 +rack-rents 'r&k-rents Kj$ 2 +racked r&kt Hc%,Hd% 16A,15A +racket 'r&kIt I0$,M6% 22A,2C +racketed 'r&kItId Ic$,Id$ 32A,2C +racketeer ,r&k@'tI@R K6% 3 +racketeering ,r&k@'tI@rIN L@% 4 +racketeers ,r&k@'tI@z Kj% 3 +racketing 'r&kItIN Ib$ 32A,2C +rackets 'r&kIts Ia$,Mj% 22A,2C +racking 'r&kIN Hb% 26A,15A +racks r&ks Ha%,Mj% 16A,15A +raconteur ,r&k0n't3R K6% 3 +raconteurs ,r&k0n't3z Kj% 3 +racoon r@'kun K6% 2 +racoons r@'kunz Kj% 2 +racquet 'r&kIt K6% 2 +racquets 'r&kIts Kj% 2 +racy 'reIsI OD% 2 +radar 'reIdAR L@% 2 +raddled 'r&dld OA% 2 +radial 'reIdI@l K6%,OA% 3 +radially 'reIdI@lI Pu% 4 +radials 'reIdI@lz Kj% 3 +radiance 'reIdI@ns L@% 3 +radiant 'reIdI@nt OA% 3 +radiantly 'reIdI@ntlI Pu% 4 +radiate 'reIdIeIt J2% 32A,3A,6A +radiated 'reIdIeItId Jc%,Jd% 42A,3A,6A +radiates 'reIdIeIts Ja% 32A,3A,6A +radiating 'reIdIeItIN Jb% 42A,3A,6A +radiation ,reIdI'eISn M6% 4 +radiations ,reIdI'eISnz Mj% 4 +radiator 'reIdIeIt@R K6% 4 +radiators 'reIdIeIt@z Kj% 4 +radical 'r&dIkl K6%,OA% 3 +radicalism 'r&dIk@lIz@m L@% 5 +radically 'r&dIklI Pu% 3 +radicals 'r&dIklz Kj% 3 +radicle 'r&dIkl K6$ 3 +radicles 'r&dIklz Kj$ 3 +radii 'reIdIaI Kj% 3 +radio 'reIdI@U M6% 3 +radio- ,reIdI@U- U-% 3 +radio-gramophone ,reIdI@U-'gr&m@f@Un K6% 6 +radio-gramophones ,reIdI@U-'gr&m@f@Unz Kj% 6 +radio-location ,reIdI@U-l@'keISn K6$ 6 +radio-locations ,reIdI@U-l@'keISnz Kj$ 6 +radio-set 'reIdI@U-set K6% 4 +radio-sets 'reIdI@U-sets Kj% 4 +radio-telescope ,reIdI@U-'telIsk@Up K6% 6 +radio-telescopes ,reIdI@U-'telIsk@Ups Kj% 6 +radioactive ,reIdI@U'&ktIv OA% 5 +radioactivity ,reIdI@U&k'tIvItI L@% 7 +radiogram 'reIdI@Ugr&m K6% 4 +radiograms 'reIdI@Ugr&mz Kj% 4 +radiograph 'reIdI@Ugr&f K6% 4 +radiographer ,reIdI'0gr@f@R K6% 5 +radiographers ,reIdI'0gr@f@z Kj% 5 +radiographs 'reIdI@Ugr&fs Kj% 4 +radiography ,reIdI'0gr@fI L@% 5 +radioisotope ,reIdI@U'aIs@t@Up K6% 6 +radioisotopes ,reIdI@U'aIs@t@Ups Kj% 6 +radiologist ,reIdI'0l@dZIst K6% 5 +radiologists ,reIdI'0l@dZIsts Kj% 5 +radiology ,reIdI'0l@dZI L@% 5 +radios 'reIdI@Uz Mj% 3 +radiotherapist ,reIdI@U'Ter@pIst K6% 6 +radiotherapists ,reIdI@U'Ter@pIsts Kj% 6 +radiotherapy ,reIdI@U'Ter@pI L@% 6 +radish 'r&dIS K7% 2 +radishes 'r&dISIz Kj% 3 +radium 'reIdI@m L@% 3 +radius 'reIdI@s Ki% 3 +raffia 'r&fI@ L@% 3 +raffish 'r&fIS OA$ 2 +raffishly 'r&fISlI Pu$ 3 +raffle 'r&fl H2%,K6% 26A,15B +raffled 'r&fld Hc%,Hd% 26A,15B +raffles 'r&flz Ha%,Kj% 26A,15B +raffling 'r&flIN Hb% 26A,15B +raft rAft J0$,K6% 12C,6A,15A,15B +rafted 'rAftId Jc$,Jd$ 22C,6A,15A,15B +rafter 'rAft@R K6% 2 +raftered 'rAft@d OA% 2 +rafters 'rAft@z Kj% 2 +rafting 'rAftIN Jb$ 22C,6A,15A,15B +rafts rAfts Ja$,Kj% 12C,6A,15A,15B +raftsman 'rAftsm@n Ki% 2 +raftsmen 'rAftsm@n Kj% 2 +rag r&g H4%,K6% 16A +rag-day 'r&g-deI K6% 2 +rag-days 'r&g-deIz Kj% 2 +ragamuffin 'r&g@mVfIn K6% 4 +ragamuffins 'r&g@mVfInz Kj% 4 +ragbag 'r&gb&g K6% 2 +ragbags 'r&gb&gz Kj% 2 +rage reIdZ I2%,M6% 12A,2C +raged reIdZd Ic%,Id% 12A,2C +rages 'reIdZIz Ia%,Mj% 22A,2C +ragged 'r&gId OA% 2 +ragged r&gd Hc%,Hd% 16A +raggedly 'r&gIdlI Pu% 3 +raggedness 'r&gIdn@s L@% 3 +ragging 'r&gIN Hb% 26A +raging 'reIdZIN Ib% 22A,2C +raglan 'r&gl@n K6$ 2 +raglans 'r&gl@nz Kj$ 2 +ragout 'r&gu M6% 2 +ragouts 'r&guz Mj$ 2 +rags r&gz Ha%,Kj% 16A +ragtag 'r>&g K6% 2 +ragtags 'r>&gz Kj$ 2 +ragtime 'r>aIm L@% 2 +rah rA W-$ 1 +raid reId J0%,K6% 12A,6A +raided 'reIdId Jc%,Jd% 22A,6A +raider 'reId@R K6% 2 +raiders 'reId@z Kj% 2 +raiding 'reIdIN Jb% 22A,6A +raids reIdz Ja%,Kj% 12A,6A +rail reIl J0%,K6% 12A,3A,6A,15B +railcar 'reIlkAR K6% 2 +railcars 'reIlkAz Kj% 2 +railed reIld Jc%,Jd% 12A,3A,6A,15B +railhead 'reIlhed K6% 2 +railheads 'reIlhedz Kj% 2 +railing 'reIlIN Jb%,M6% 22A,3A,6A,15B +railings 'reIlINz Mj% 2 +railleries 'reIl@rIz Mj$ 3 +raillery 'reIl@rI M8% 3 +railroad 'reIlr@Ud H0%,K6% 215A,15B +railroaded 'reIlr@UdId Hc%,Hd% 315A,15B +railroading 'reIlr@UdIN Hb% 315A,15B +railroads 'reIlr@Udz Ha%,Kj% 215A,15B +rails reIlz Ja%,Kj% 12A,3A,6A,15B +railway 'reIlweI K6% 2 +railwayman 'reIlweIm@n Ki% 3 +railwaymen 'reIlweImen Kj% 3 +railways 'reIlweIz Kj% 2 +raiment 'reIm@nt L@$ 2 +rain reIn J0%,M6% 12C,14 +rain-gauge 'reIn-geIdZ K6% 2 +rain-gauges 'reIn-geIdZIz Kj% 3 +rainbow 'reInb@U K6% 2 +rainbows 'reInb@Uz Kj% 2 +raincoat 'reInk@Ut K6% 2 +raincoats 'reInk@Uts Kj% 2 +raindrop 'reIndr0p K6% 2 +raindrops 'reIndr0ps Kj% 2 +rained reInd Jc%,Jd% 12C,14 +rainfall 'reInfOl M6% 2 +rainfalls 'reInfOlz Mj% 2 +rainier 'reInI@R Or% 3 +rainiest 'reInIIst Os% 3 +raining 'reInIN Jb% 22C,14 +rainproof 'reInpruf OA% 2 +rains reInz Ja%,Mj% 12C,14 +rainwater 'reInwOt@R L@% 3 +rainy 'reInI OD% 2 +raise reIz H2%,K6% 16A,15A,15B +raised reIzd Hc%,Hd% 16A,15A,15B +raiser 'reIz@R K6$ 2 +raisers 'reIz@z Kj$ 2 +raises 'reIzIz Ha%,Kj% 26A,15A,15B +raisin 'reIzn K6% 2 +raising 'reIzIN Hb% 26A,15A,15B +raisins 'reIznz Kj% 2 +raison d'^etre ,reIz0n 'detr@ Ki% 4 +raj rAdZ Ki$ 1 +rajah 'rAdZ@ K6% 2 +rajahs 'rAdZ@z Kj% 2 +rake reIk J2%,K6% 12A,2C,3A,6A,14,15A,15B,22 +rake-off 'reIk-0f K6% 2 +rake-offs 'reIk-0fs Kj$ 2 +raked reIkt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B,22 +rakes reIks Ja%,Kj% 12A,2C,3A,6A,14,15A,15B,22 +raking 'reIkIN Jb% 22A,2C,3A,6A,14,15A,15B,22 +rakish 'reIkIS OA% 2 +rakishly 'reIkISlI Pu% 3 +rakishness 'reIkISn@s L@% 3 +rallentando ,r&l@n't&nd@U OA$,Pu$ 4 +rallied 'r&lId Jc%,Jd% 22A,2C,6A,15A +rallies 'r&lIz Ja%,Kj% 22A,2C,6A,15A +rally 'r&lI J3%,K8% 22A,2C,6A,15A +rallying 'r&lIIN Jb% 32A,2C,6A,15A +ram r&m H4%,K6% 16A,15A,15B +ramble 'r&mbl I2%,K6% 22A,2C +rambled 'r&mbld Ic%,Id% 22A,2C +rambler 'r&mbl@R K6% 2 +ramblers 'r&mbl@z Kj% 2 +rambles 'r&mblz Ia%,Kj% 22A,2C +rambling 'r&mblIN Ib%,OA% 22A,2C +rambunctious r&m'bVNkS@s OA$ 3 +ramification ,r&mIfI'keISn K6% 5 +ramifications ,r&mIfI'keISnz Kj% 5 +ramified 'r&mIfaId Jc%,Jd% 32A,6A +ramifies 'r&mIfaIz Ja% 32A,6A +ramify 'r&mIfaI J3% 32A,6A +ramifying 'r&mIfaIIN Jb% 42A,6A +ramjet 'r&mdZet K6$ 2 +ramjets 'r&mdZets Kj$ 2 +rammed r&md Hc%,Hd% 16A,15A,15B +ramming 'r&mIN Hb% 26A,15A,15B +ramp r&mp H0%,K6% 12C +rampage 'r&mpeIdZ K6% 2 +rampage r&m'peIdZ I2% 22A +rampaged r&m'peIdZd Ic%,Id% 22A +rampageous r&m'peIdZ@s OA$ 3 +rampages 'r&mpeIdZIz Kj$ 3 +rampages r&m'peIdZIz Ia% 32A +rampaging r&m'peIdZIN Ib% 32A +rampant 'r&mp@nt OA% 2 +rampantly 'r&mp@ntlI Pu% 3 +rampart 'r&mpAt K6% 2 +ramparts 'r&mpAts Kj% 2 +ramped r&mpt Hc%,Hd% 12C +ramping 'r&mpIN Hb% 22C +ramps r&mps Ha%,Kj% 12C +ramrod 'r&mr0d K6% 2 +ramrods 'r&mr0dz Kj% 2 +rams r&mz Ha%,Kj% 16A,15A,15B +ramshackle 'r&mS&kl OA% 3 +ran r&n Jc% 12A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +ranch rAntS K7% 1 +rancher 'rAntS@R K6% 2 +ranchers 'rAntS@z Kj% 2 +ranches 'rAntSIz Kj% 2 +rancid 'r&nsId OA% 2 +rancorous 'r&Nk@r@s OA% 3 +rancour 'r&Nk@R L@% 2 +rand r&nd K6$ 1 +randier 'r&ndI@R Or% 3 +randiest 'r&ndIIst Os% 3 +random 'r&nd@m Ki% 2 +randomly 'r&nd@mlI Pu% 3 +randomness 'r&nd@mnIs L@% 3 +rands r&ndz Kj$ 1 +randy 'r&ndI OD% 2 +ranee 'rAni K6$ 2 +ranees 'rAniz Kj$ 2 +rang r&N Jc% 12A,2B,2C,2D,3A,6A,15A,15B +range reIndZ J2%,K6% 12C,3A,6A,15A +ranged reIndZd Jc%,Jd% 12C,3A,6A,15A +rangefinder 'reIndZfaInd@R K6% 3 +rangefinders 'reIndZfaInd@z Kj% 3 +ranger 'reIndZ@R K6% 2 +rangers 'reIndZ@z Kj% 2 +ranges 'reIndZIz Ja%,Kj% 22C,3A,6A,15A +ranging 'reIndZIN Jb% 22C,3A,6A,15A +rani 'rAni K6$ 2 +ranis 'rAniz Kj$ 2 +rank r&Nk J0%,M6%,OA% 13A,6A,15A,16B +ranked r&Nkt Jc%,Jd% 13A,6A,15A,16B +ranker 'r&Nk@R K6$ 2 +rankers 'r&Nk@z Kj$ 2 +ranking 'r&NkIN Jb%,K6$ 23A,6A,15A,16B +rankings 'r&NkINz Kj% 2 +rankle 'r&Nkl I2% 22A +rankled 'r&Nkld Ic%,Id% 22A +rankles 'r&Nklz Ia% 22A +rankling 'r&NklIN Ib% 22A +rankly 'r&NklI Pu% 2 +rankness 'r&Nkn@s L@% 2 +ranks r&Nks Ja%,Mj% 13A,6A,15A,16B +ransack 'r&ns&k H0% 26A,14,16A +ransacked 'r&ns&kt Hc%,Hd% 26A,14,16A +ransacking 'r&ns&kIN Hb% 36A,14,16A +ransacks 'r&ns&ks Ha% 26A,14,16A +ransom 'r&ns@m H0%,M6% 26A +ransomed 'r&ns@md Hc%,Hd% 26A +ransoming 'r&ns@mIN Hb% 36A +ransoms 'r&ns@mz Ha%,Mj% 26A +rant r&nt J0%,K6% 12A,6A +ranted 'r&ntId Jc%,Jd% 22A,6A +ranter 'r&nt@R K6% 2 +ranters 'r&nt@z Kj% 2 +ranting 'r&ntIN Jb% 22A,6A +rants r&nts Ja%,Kj% 12A,6A +rap r&p J4%,K6% 12A,2C,6A,15B +rapacious r@'peIS@s OA% 3 +rapaciously r@'peIS@slI Pu% 4 +rapacity r@'p&sItI L@% 4 +rape reIp H2%,M6% 16A +raped reIpt Hc%,Hd% 16A +rapes reIps Ha%,Mj% 16A +rapid 'r&pId K6%,OA% 2 +rapidity r@'pIdItI L@% 4 +rapidly 'r&pIdlI Pu% 3 +rapids 'r&pIdz Kj% 2 +rapier 'reIpI@R K6% 3 +rapier-thrust 'reIpI@-TrVst K6% 4 +rapier-thrusts 'reIpI@-TrVsts Kj% 4 +rapiers 'reIpI@z Kj% 3 +rapine 'r&paIn L@$ 2 +raping 'reIpIN Hb% 26A +rapist 'reIpIst K6% 2 +rapists 'reIpIsts Kj% 2 +rapped r&pt Jc%,Jd% 12A,2C,6A,15B +rapping 'r&pIN Jb% 22A,2C,6A,15B +rapport r&'pOR M6% 2 +rapports r&'pOz Mj$ 2 +rapprochement r&'pr0Sm0N K6% 3 +rapprochements r&'pr0Sm0Nz Kj$ 3 +raps r&ps Ja%,Kj% 12A,2C,6A,15B +rapscallion r&p'sk&lI@n K6% 4 +rapscallions r&p'sk&lI@nz Kj% 4 +rapt r&pt OA% 1 +rapture 'r&ptS@R M6% 2 +raptures 'r&ptS@z Mj% 2 +rapturous 'r&ptS@r@s OA% 3 +rapturously 'r&ptS@r@slI Pu% 4 +rare re@R OB% 1 +rarebit 're@bIt M6% 2 +rarebits 're@bIts Mj$ 2 +rarefaction ,re@rI'f&kSn L@$ 4 +rarefied 're@rIfaId Jc%,Jd% 32A,6A +rarefies 're@rIfaIz Ja% 32A,6A +rarefy 're@rIfaI J3% 32A,6A +rarefying 're@rIfaIIN Jb% 42A,6A +rarely 're@lI Pu% 2 +rareness 're@n@s L@% 2 +rarer 're@r@R Or% 2 +rarest 're@rIst Os% 2 +raring 're@rIN OA% 2 +rarities 're@rItIz Mj% 3 +rarity 're@rItI M8% 3 +rascal 'rAskl K6% 2 +rascally 'rAsk@lI OA% 3 +rascals 'rAsklz Kj% 2 +rase reIz H2$ 16A +rased reIzd Hc%,Hd% 16A +rases 'reIzIz Ha$ 26A +rash r&S K7%,OC% 1 +rasher 'r&S@R K6%,Or% 2 +rashers 'r&S@z Kj% 2 +rashes 'r&SIz Kj% 2 +rashest 'r&SIst Os% 2 +rashly 'r&SlI Pu% 2 +rashness 'r&Sn@s L@% 2 +rasing 'reIzIN Hb$ 26A +rasp rAsp J0%,K6% 12A,2C,6A,15A,15B,22 +raspberries 'rAzb@rIz Kj% 3 +raspberry 'rAzb@rI K8% 3 +rasped rAspt Jc%,Jd% 12A,2C,6A,15A,15B,22 +rasping 'rAspIN Jb% 22A,2C,6A,15A,15B,22 +raspingly 'rAspINlI Pu% 3 +rasps rAsps Ja%,Kj% 12A,2C,6A,15A,15B,22 +rat r&t H4%,K6% 12A,3A +rat-a-tat-tat ,r&t-@-,t&t-'t&t K6% 4 +rat-a-tat-tats ,r&t-@-,t&t-'t&ts Kj% 4 +rat-tat r&t-'t&t K6$ 2 +rat-tats r&t-'t&ts Kj$ 2 +ratability ,reIt@'bIlItI L@% 5 +ratable 'reIt@bl OA% 3 +ratan r&'t&n M6$ 2 +ratans r&'t&nz Mj$ 2 +ratch r&tS K7$ 1 +ratches 'r&tSIz Kj$ 2 +ratchet 'r&tSIt K6% 2 +ratchets 'r&tSIts Kj% 2 +rate reIt J2%,K6% 12C,2D,6A,14,15A,16B +rateability ,reIt@'bIlItI L@% 5 +rateable 'reIt@bl OA% 3 +rated 'reItId Jc%,Jd% 22C,2D,6A,14,15A,16B +ratepayer 'reItpeI@R K6% 3 +ratepayers 'reItpeI@z Kj% 3 +rates reIts Ja%,Kj% 12C,2D,6A,14,15A,16B +rather 'rAD@R Pu* 2 +ratification ,r&tIfI'keISn K6% 5 +ratifications ,r&tIfI'keISnz Kj% 5 +ratified 'r&tIfaId Hc%,Hd% 36A +ratifies 'r&tIfaIz Ha% 36A +ratify 'r&tIfaI H3% 36A +ratifying 'r&tIfaIIN Hb% 46A +rating 'reItIN Jb%,K6% 22C,2D,6A,14,15A,16B +ratings 'reItINz Kj% 2 +ratio 'reISI@U K6% 3 +ratiocination ,r&tI,0sI'neISn L@$ 6 +ration 'r&Sn H0%,K6% 26A,15B +rational 'r&Sn@l OA% 2 +rationale ,r&S@'nAl K6% 3 +rationales ,r&S@'nAlz Kj$ 3 +rationalism 'r&Sn@lIz@m L@% 4 +rationalist 'r&Sn@lIst K6% 3 +rationalistic ,r&Sn@'lIstIk OA% 4 +rationalists 'r&Sn@lIsts Kj% 3 +rationalities ,r&S@'n&lItIz Mj% 5 +rationality ,r&S@'n&lItI M8% 5 +rationalization ,r&Sn@laI'zeISn M6% 5 +rationalizations ,r&Sn@laI'zeISnz Mj% 5 +rationalize 'r&Sn@laIz H2% 36A +rationalized 'r&Sn@laIzd Hc%,Hd% 36A +rationalizes 'r&Sn@laIzIz Ha% 46A +rationalizing 'r&Sn@laIzIN Hb% 46A +rationally 'r&Sn@lI Pu% 3 +rationed 'r&Snd Hc%,Hd% 26A,15B +rationing 'r&SnIN Hb% 36A,15B +rations 'r&Snz Ha%,Kj% 26A,15B +ratios 'reISI@Uz Kj% 3 +ratlin 'r&tlIn K6$ 2 +ratline 'r&tlIn K6$ 2 +ratlines 'r&tlInz Kj$ 2 +ratlins 'r&tlInz Kj$ 2 +rats r&ts Ha%,Kj% 12A,3A +rattan r&'t&n M6% 2 +rattans r&'t&nz Mj$ 2 +ratted 'r&tId Hc%,Hd% 22A,3A +ratter 'r&t@R K6% 2 +ratters 'r&t@z Kj% 2 +rattier 'r&tI@R Or% 3 +rattiest 'r&tIIst Os% 3 +ratting 'r&tIN Hb% 22A,3A +rattle 'r&tl J2%,M6% 22A,2C,6A,15A,15B +rattlebrained 'r&tlbreInd OA$ 3 +rattled 'r&tld Jc%,Jd% 22A,2C,6A,15A,15B +rattlepated 'r&tlpeItId OA$ 4 +rattler 'r&tl@R K6% 2 +rattlers 'r&tl@z Kj% 2 +rattles 'r&tlz Ja%,Mj% 22A,2C,6A,15A,15B +rattlesnake 'r&tlsneIk K6% 3 +rattlesnakes 'r&tlsneIks Kj% 3 +rattling 'r&tlIN Jb%,OA%,Pu% 22A,2C,6A,15A,15B +ratty 'r&tI OD% 2 +raucous 'rOk@s OA% 2 +raucously 'rOk@slI Pu% 3 +ravage 'r&vIdZ J2%,M6% 26A +ravaged 'r&vIdZd Jc%,Jd% 26A +ravages 'r&vIdZIz Ja%,Mj% 36A +ravaging 'r&vIdZIN Jb% 36A +rave reIv I2%,K6% 12A,2C,3A,15B +rave-up 'reIv-Vp K6% 2 +rave-ups 'reIv-Vps Kj$ 2 +raved reIvd Ic%,Id% 12A,2C,3A,15B +ravel 'r&v@l J4% 22A,2C,6A,15B +ravelled 'r&v@ld Jc%,Jd% 22A,2C,6A,15B +ravelling 'r&v@lIN Jb% 32A,2C,6A,15B +ravels 'r&v@lz Ja% 22A,2C,6A,15B +raven 'reIvn K6% 2 +ravening 'r&v@nIN OA% 3 +ravenous 'r&v@n@s OA% 3 +ravenously 'r&v@n@slI Pu% 4 +ravens 'reIvnz Kj% 2 +raver 'reIv@R K6% 2 +ravers 'reIv@z Kj% 2 +raves reIvz Ia%,Kj% 12A,2C,3A,15B +ravine r@'vin K6% 2 +ravines r@'vinz Kj% 2 +raving 'reIvIN Ib%,OA%,Pu% 22A,2C,3A,15B +ravings 'reIvINz Kj% 2 +ravioli ,r&vI'@UlI M6% 4 +raviolis ,r&vI'@UlIz Mj% 4 +ravish 'r&vIS H1% 26A +ravished 'r&vISt Hc%,Hd% 26A +ravishes 'r&vISIz Ha% 36A +ravishing 'r&vISIN Hb% 36A +ravishingly 'r&vISINlI Pu% 4 +ravishment 'r&vISm@nt M6$ 3 +ravishments 'r&vISm@nts Mj$ 3 +raw rO Ki%,OA% 1 +rawboned 'rOb@Und OA% 2 +rawhide 'rOhaId OA% 2 +ray reI J0$,K6% 1 +rayed reId Jc$,Jd$ 1 +raying 'reIIN Jb$ 2 +rayon 'reI0n L@% 2 +rays reIz Ja$,Kj% 1 +raze reIz H2% 16A +razed reIzd Hc%,Hd% 16A +razes 'reIzIz Ha% 26A +razing 'reIzIN Hb% 26A +razor 'reIz@R H0%,K6% 2 +razor-edge reIz@r-'edZ K6% 3 +razor-edges reIz@r-'edZIz Kj% 4 +razorback 'reIz@b&k K6$ 3 +razorbacked 'reIz@b&kt OA$ 3 +razorbacks 'reIz@b&ks Kj$ 3 +razorblade 'reIz@bleId K6% 3 +razorblades 'reIz@bleIdz Kj% 3 +razored 'reIz@d Hc%,Hd% 2 +razoring 'reIz@rIN Hb% 3 +razors 'reIz@z Ha%,Kj% 2 +razzle 'r&zl Ki% 2 +razzle-dazzle ,r&zl-'d&zl Ki% 4 +re reI Ki$ 1 +re ri T-$ 1 +re- ri- U-% 1 +re-address ,ri-@'dres H1% 36A +re-addressed ,ri-@'drest Hc%,Hd% 36A +re-addresses ,ri-@'dresIz Ha% 46A +re-addressing ,ri-@'dresIN Hb% 46A +re-afforest ,ri-@'f0rIst H0$ 4 +re-afforestation ,ri-@,f0rI'steISn M6$ 6 +re-afforestations ,ri-@,f0rI'steISnz Mj$ 6 +re-afforested ,ri-@'f0rIstId Hc$,Hd$ 5 +re-afforesting ,ri-@'f0rIstIN Hb$ 5 +re-afforests ,ri-@'f0rIsts Ha$ 4 +re-count 'ri-kaUnt K6% 2 +re-count ,ri-'kaUnt H0$ 26A +re-counted ,ri-'kaUntId Hc$,Hd$ 36A +re-counting ,ri-'kaUntIN Hb$ 36A +re-counts 'ri-kaUnts Kj% 2 +re-counts ,ri-'kaUnts Ha$ 26A +re-cover ,ri-'kVv@R H0$ 36A +re-covered ,ri-'kVv@d Hc$,Hd$ 36A +re-covering ,ri-'kVv@rIN Hb$ 46A +re-covers ,ri-'kVv@z Ha$ 36A +re-echo ri-'ek@U I0%,K7% 32A +re-echoed ri-'ek@Ud Ic%,Id% 32A +re-echoes ri-'ek@Uz Kj% 3 +re-echoing ri-'ek@UIN Ib% 42A +re-echos ri-'ek@Uz Ia% 32A +re-entries ,ri-'entrIz Kj% 3 +re-entry ,ri-'entrI K8% 3 +re-form ,ri-'fOm J0$ 2 +re-formation ,ri-fO'meISn M6$ 4 +re-formations ,ri-fO'meISnz Mj$ 4 +re-formed ,ri-'fOmd Jc$,Jd$ 2 +re-forming ,ri-'fOmIN Jb$ 3 +re-forms ,ri-'fOmz Ja$ 2 +re-join ,ri-'dZoIn H0$ 26A +re-joined ,ri-'dZoInd Hc$,Hd$ 26A +re-joining ,ri-'dZoInIN Hb$ 36A +re-joins ,ri-'dZoInz Ha$ 26A +reach ritS J1%,M7% 12C,3A,6A,12B,13B,15B +reach-me-downs 'ritS-mI-daUnz Kj% 3 +reached ritSt Jc%,Jd% 12C,3A,6A,12B,13B,15B +reaches 'ritSIz Ja%,Mj% 22C,3A,6A,12B,13B,15B +reaching 'ritSIN Jb% 22C,3A,6A,12B,13B,15B +react rI'&kt I0% 22A,3A +reacted rI'&ktId Ic%,Id% 32A,3A +reacting rI'&ktIN Ib% 32A,3A +reaction rI'&kSn M6% 3 +reactionaries rI'&kS@nrIz Kj% 4 +reactionary rI'&kS@nrI K8% 4 +reactions rI'&kSnz Mj% 3 +reactor rI'&kt@R K6% 3 +reactors rI'&kt@z Kj% 3 +reacts rI'&kts Ia% 22A,3A +read red Jc*,Jd* 12A,2B,2C,6A,12A,13A,15A,15B,16B +read rid J5*,Ki% 12A,2B,2C,6A,12A,13A,15A,15B,16B +readability ,rid@'bIlItI L@% 5 +readable 'rid@bl OA% 3 +reader 'rid@R K6% 2 +readers 'rid@z Kj% 2 +readership 'rid@SIp K6% 3 +readerships 'rid@SIps Kj% 3 +readier 'redI@R Or% 3 +readies 'redIz Kj% 2 +readiest 'redIIst Os% 3 +readily 'redIlI Pu% 3 +readiness 'redIn@s L@% 3 +reading 'ridIN Jb%,M6% 22A,2B,2C,6A,12A,13A,15A,15B,16B +reading-glasses 'ridIN-gl&sIz Kj% 4 +reading-lamp 'ridIN-l&mp K6% 3 +reading-lamps 'ridIN-l&mps Kj% 3 +reading-room 'ridIN-rum K6% 3 +reading-rooms 'ridIN-rumz Kj% 3 +readings 'ridINz Mj% 2 +readjust ,ri@'dZVst H0% 33A,6A,15A +readjusted ,ri@'dZVstId Hc%,Hd% 43A,6A,15A +readjusting ,ri@'dZVstIN Hb% 43A,6A,15A +readjustment ,ri@'dZVstm@nt K6% 4 +readjustments ,ri@'dZVstm@nts Kj% 4 +readjusts ,ri@'dZVsts Ha% 33A,6A,15A +readmission ,ri@d'mISn M6% 4 +readmissions ,ri@d'mISnz Mj% 4 +readmit ,ri@d'mIt H4% 33A,6A,6C,9,14,25 +readmits ,ri@d'mIts Ha% 33A,6A,6C,9,14,25 +readmitted ,ri@d'mItId Hc%,Hd% 43A,6A,6C,9,14,25 +readmitting ,ri@d'mItIN Hb% 43A,6A,6C,9,14,25 +reads ridz Ja% 12A,2B,2C,6A,12A,13A,15A,15B,16B +ready 'redI K8%,OD% 2 +ready-made 'redI-meId OA% 3 +reaffiliation ,ri@,fIlI'eISn M6% 6 +reaffiliations ,ri@,fIlI'eISnz Mj% 6 +reaffirm ,ri@'f3m H0% 36A,9 +reaffirmed ,ri@'f3md Hc%,Hd% 36A,9 +reaffirming ,ri@'f3mIN Hb% 46A,9 +reaffirms ,ri@'f3mz Ha% 36A,9 +reagent ri'eIdZ@nt K6$ 3 +reagents ri'eIdZ@nts Kj$ 3 +real rI@l OA* 2 +real reI'Al K6$ 2 +realism 'rI@lIz@m L@% 4 +realist 'rI@lIst K6% 3 +realistic ,rI@'lIstIk OA% 4 +realistically ,rI@'lIstIklI Pu% 5 +realists 'rI@lIsts Kj% 3 +realities rI'&lItIz Mj% 3 +reality rI'&lItI M8% 3 +realizable ,rI@'laIz@bl OA% 5 +realization ,rI@laI'zeISn L@% 5 +realize 'rI@laIz H2% 36A,9,10,14 +realized 'rI@laIzd Hc%,Hd% 36A,9,10,14 +realizes 'rI@laIzIz Ha% 46A,9,10,14 +realizing 'rI@laIzIN Hb% 46A,9,10,14 +reallocation ri,&l@'keISn M6% 5 +reallocations ri,&l@'keISnz Mj% 5 +really 'rI@lI Pu* 3 +realm relm K6% 1 +realms relmz Kj% 1 +reals reI'Alz Kj$ 2 +realties 'rI@ltIz Kj$ 3 +realty 'rI@ltI K8$ 3 +ream rim K6% 1 +reams rimz Kj% 1 +reanimate ri'&nImeIt H2% 46A +reanimated ri'&nImeItId Hc%,Hd% 56A +reanimates ri'&nImeIts Ha% 46A +reanimating ri'&nImeItIN Hb% 56A +reap rip J0% 12A,6A +reaped ript Jc%,Jd% 12A,6A +reaper 'rip@R K6% 2 +reapers 'rip@z Kj% 2 +reaping 'ripIN Jb% 22A,6A +reaping-hook 'ripIN-hUk K6% 3 +reaping-hooks 'ripIN-hUks Kj% 3 +reappear ,ri@'pI@R I0% 32A +reappearance ,rI@'pI@r@ns K6% 4 +reappearances ,rI@'pI@r@nsIz Kj% 5 +reappeared ,ri@'pI@d Ic%,Id% 32A +reappearing ,ri@'pI@rIN Ib% 42A +reappears ,ri@'pI@z Ia% 32A +reappraisal ,ri@'preIzl K6% 4 +reappraisals ,ri@'preIzlz Kj% 4 +reaps rips Ja% 12A,6A +rear rI@R J0%,K6% 12A,2C,6A,15B +rear-admiral ,rI@r-'&dm@r@l K6% 4 +rear-admirals ,rI@r-'&dm@r@lz Kj% 4 +reared rI@d Jc%,Jd% 12A,2C,6A,15B +rearguard 'rI@gAd K6% 2 +rearguards 'rI@gAdz Kj% 2 +rearing 'rI@rIN Jb% 22A,2C,6A,15B +rearm ,ri'Am J0% 22A,6A +rearmament ri'Am@m@nt M6% 4 +rearmaments ri'Am@m@nts Mj% 4 +rearmed ,ri'Amd Jc%,Jd% 22A,6A +rearming ,ri'AmIN Jb% 32A,6A +rearmost 'rI@m@Ust OA% 2 +rearms ,ri'Amz Ja% 22A,6A +rearrange ,ri@'reIndZ H2% 33A,4C,6A,14,15A +rearranged ,ri@'reIndZ Hc%,Hd% 33A,4C,6A,14,15A +rearrangement ,ri@'reIndZm@nt M6% 4 +rearrangements ,ri@'reIndZm@nts Mj% 4 +rearranges ,ri@'reIndZIz Ha% 43A,4C,6A,14,15A +rearranging ,ri@'reIndZIN Hb% 43A,4C,6A,14,15A +rears rI@z Ja%,Kj% 12A,2C,6A,15B +rearward 'rI@w@d K6% 2 +rearwards 'rI@w@dz Kj%,Pu% 2 +reason 'riz@n J0%,M6* 22A,3A,6A,9,14 +reasonable 'rizn@bl OA% 3 +reasonableness 'rizn@bln@s L@% 4 +reasonably 'rizn@blI Pu% 3 +reasoned 'riz@nd Jc%,Jd% 22A,3A,6A,9,14 +reasoning 'riz@nIN Jb%,L@% 32A,3A,6A,9,14 +reasonless 'riz@nl@s OA$ 3 +reasons 'riz@nz Ja%,Mj% 22A,3A,6A,9,14 +reassemble ,ri@'sembl J2% 42A,6A +reassembled ,ri@'sembld Jc%,Jd% 42A,6A +reassembles ,ri@'semblz Ja% 42A,6A +reassembling ,ri@'semblIN Jb% 42A,6A +reassess ,ri@'ses H1% 36A,14 +reassessed ,ri@'sest Hc%,Hd% 36A,14 +reassesses ,ri@'sesIz Ha% 46A,14 +reassessing ,ri@'sesIN Hb% 46A,14 +reassessment ,ri@'sesm@nt M6% 4 +reassessments ,ri@'sesm@nts Mj% 4 +reassurance ,rI@'Sur@ns M6% 4 +reassurances ,rI@'Sur@nsIz Mj% 5 +reassure ,ri@'SU@R H2% 36A +reassured ,ri@'SU@d Hc%,Hd% 36A +reassures ,ri@'SU@z Ha% 36A +reassuring ,ri@'SU@rIN Hb%,OA% 46A +reassuringly ,ri@'SU@rINlI Pu% 5 +reattribute rI'&trIbjut H2% 414 +reattributed ,ri@'trIbjutId Hc%,Hd% 514 +reattributes rI'&trIbjuts Ha% 414 +reattributing ,ri@'trIbjutIN Hb% 514 +rebarbative rI'bAb@tIv OA$ 4 +rebate 'ribeIt M6% 2 +rebates 'ribeIts Mj% 2 +rebel 'reb@l K6% 2 +rebel rI'bel I4% 22A,3A +rebelled rI'beld Ic%,Id% 22A,3A +rebelling rI'belIN Ib% 32A,3A +rebellion rI'belI@n M6% 4 +rebellions rI'belI@nz Mj% 4 +rebellious rI'belI@s OA% 4 +rebelliously rI'belI@slI Pu% 5 +rebelliousness rI'belI@sn@s L@% 5 +rebels 'reb@lz Kj% 2 +rebels rI'belz Ia% 22A,3A +rebind ,ri'baInd H5$ 26A +rebinding ,ri'baIndIN Hb$ 36A +rebinds ,ri'baIndz Ha$ 26A +rebirth ,ri'b3T K6$ 2 +rebirths ,ri'b3Ts Kj$ 2 +reborn ,ri'bOn OA% 2 +rebound 'ribaUnd K6% 2 +rebound ,ri'baUnd Hc$,Hd$ 26A +rebound rI'baUnd I0% 22A,3A +rebounded rI'baUndId Ic%,Id% 32A,3A +rebounding rI'baUndIN Ib% 32A,3A +rebounds 'ribaUndz Kj% 2 +rebounds rI'baUndz Ia% 22A,3A +rebuff rI'bVf H0%,K6% 26A +rebuffed rI'bVft Hc%,Hd% 26A +rebuffing rI'bVfIN Hb% 36A +rebuffs rI'bVfs Ha%,Kj% 26A +rebuild ,ri'bIld H5% 26A +rebuilding ,ri'bIldIN Hb% 36A +rebuilds ,ri'bIldz Ha% 26A +rebuilt ,ri'bIlt Hc%,Hd% 26A +rebuke rI'bjuk H2%,K6% 26A,14 +rebuked rI'bjukt Hc%,Hd% 26A,14 +rebukes rI'bjuks Ha%,Kj% 26A,14 +rebuking rI'bjukIN Hb% 36A,14 +rebukingly rI'bjukINlI Pu$ 4 +rebus 'rib@s K7$ 2 +rebuses 'rib@sIz Kj$ 3 +rebut rI'bVt H4% 26A +rebuts rI'bVts Ha% 26A +rebuttal rI'bVt@l K6% 3 +rebuttals rI'bVt@lz Kj% 3 +rebutted rI'bVtId Hc%,Hd% 36A +rebutting rI'bVtIN Hb% 36A +rec rI'sivd Y~% 2 +recalcitrance rI'k&lsItr@ns L@% 4 +recalcitrancy rI'k&lsItr@nsI L@$ 5 +recalcitrant rI'k&lsItr@nt OA% 4 +recall rI'kOl H0%,M6% 26A,6C,8,9,10,14,19C +recalled rI'kOld Hc%,Hd% 26A,6C,8,9,10,14,19C +recalling rI'kOlIN Hb% 36A,6C,8,9,10,14,19C +recalls rI'kOlz Ha%,Mj% 26A,6C,8,9,10,14,19C +recant rI'k&nt J0% 22A,6A +recantation ,rik&n'teISn M6% 4 +recantations ,rik&n'teISnz Mj% 4 +recanted rI'k&ntId Jc%,Jd% 32A,6A +recanting rI'k&ntIN Jb% 32A,6A +recants rI'k&nts Ja% 22A,6A +recap 'rik&p J4%,K6% 2 +recap ,ri'k&p H4$ 2 +recapitulate ,rik@'pItSUleIt J2% 52A,6A +recapitulated ,rik@'pItSUleItId Jc%,Jd% 62A,6A +recapitulates ,rik@'pItSUleIts Ja% 52A,6A +recapitulating ,rik@'pItSUleItIN Jb% 62A,6A +recapitulation ,rik@,pItSU'leISn M6% 6 +recapitulations ,rik@,pItSU'leISnz Mj% 6 +recapped 'rik&pt Jc%,Jd% 2 +recapped ,ri'k&pt Hc$,Hd$ 2 +recapping 'rik&pIN Jb% 3 +recapping ,ri'k&pIN Hb$ 3 +recaps 'rik&ps Ja%,Kj% 2 +recaps ,ri'k&ps Ha$ 2 +recapture ,ri'k&ptS@R H2% 36A +recaptured ,ri'k&ptS@d Hc%,Hd% 36A +recaptures ,ri'k&ptS@z Ha% 36A +recapturing ,ri'k&ptS@rIN Hb% 46A +recast ,ri'kAst H5%,Hc%,Hd% 26A +recasting ,ri'kAstIN Hb% 36A +recasts ,ri'kAsts Ha% 26A +recce 'rekI K6$ 2 +recces 'rekIz Kj$ 2 +recd rI'sivd Y~% 2 +recede rI'sid I2% 22A,3A +receded rI'sidId Ic%,Id% 32A,3A +recedes rI'sidz Ia% 22A,3A +receding rI'sidIN Ib% 32A,3A +receipt rI'sit H0$,M6% 26A +receipted rI'sitId Hc$,Hd$ 36A +receipting rI'sitIN Hb$ 36A +receipts rI'sits Ha$,Mj% 26A +receivable rI'siv@bl OA$ 4 +receive rI'siv J2% 22A,6A +received rI'sivd Jc%,Jd%,OA% 22A,6A +receiver rI'siv@R K6% 3 +receivers rI'siv@z Kj% 3 +receivership rI'siv@SIp K6% 4 +receiverships rI'siv@SIps Kj$ 4 +receives rI'sivz Ja% 22A,6A +receiving rI'sivIN Jb% 32A,6A +receiving-set rI'sivIN-set K6% 4 +receiving-sets rI'sivIN-sets Kj% 4 +recent 'risnt OA% 2 +recently 'risntlI Pu% 3 +receptacle rI'sept@kl K6% 4 +receptacles rI'sept@klz Kj% 4 +reception rI'sepSn M6% 3 +reception-desk rI'sepSn-desk K6% 4 +reception-desks rI'sepSn-desks Kj% 4 +receptionist rI'sepS@nIst K6% 4 +receptionists rI'sepS@nIsts Kj% 4 +receptions rI'sepSnz Mj% 3 +receptive rI'septIv OA% 3 +receptively rI'septIvlI Pu% 4 +receptiveness rI'septIvnIs L@% 4 +receptivity ,risep'tIvItI L@% 5 +recess rI'ses H1$,K7% 26A +recessed rI'sest Hc$,Hd% 26A +recesses rI'sesIz Ha$,Kj% 36A +recessing rI'sesIN Hb$ 36A +recession rI'seSn M6% 3 +recessional rI'seS@nl K6$,OA$ 4 +recessionals rI'seS@nlz Kj$ 4 +recessions rI'seSnz Mj% 3 +recessive rI'sesIv OA% 3 +recherch_e r@'Se@SeI OA% 3 +recidivism rI'sIdIvIz@m L@$ 5 +recidivist rI'sIdIvIst K6$ 4 +recidivists rI'sIdIvIsts Kj$ 4 +recipe 'res@pI K6% 3 +recipes 'res@pIz Kj% 3 +recipient rI'sIpI@nt K6% 4 +recipients rI'sIpI@nts Kj% 4 +reciprocal rI'sIpr@kl K6$,OA% 4 +reciprocally rI'sIpr@klI Pu% 4 +reciprocals rI'sIpr@klz Kj$ 4 +reciprocate rI'sIpr@keIt J2% 42A,6A +reciprocated rI'sIpr@keItId Jc%,Jd% 52A,6A +reciprocates rI'sIpr@keIts Ja% 42A,6A +reciprocating rI'sIpr@keItIN Jb% 52A,6A +reciprocation rI,sIpr@'keISn L@% 5 +reciprocity ,resI'pr0sItI L@% 5 +recital rI'saItl K6% 3 +recitalist rI'saIt@lIst K6% 4 +recitalists rI'saIt@lIsts Kj% 4 +recitals rI'saItlz Kj% 3 +recitation ,resI'teISn M6% 4 +recitations ,resI'teISnz Mj% 4 +recitative ,resIt@'tiv M6$ 4 +recitatives ,resIt@'tivz Mj$ 4 +recite rI'saIt J2% 22A,6A,15A +recited rI'saItId Jc%,Jd% 32A,6A,15A +recites rI'saIts Ja% 22A,6A,15A +reciting rI'saItIN Jb% 32A,6A,15A +reckless 'rekl@s OA% 2 +recklessly 'rekl@slI Pu% 3 +recklessness 'rekl@sn@s L@% 3 +reckon 'rek@n J0% 22A,6A,7A,9,15B,16B,25 +reckoned 'rek@nd Jc%,Jd% 22A,6A,7A,9,15B,16B,25 +reckoner 'rek@n@R K6% 3 +reckoners 'rek@n@z Kj% 3 +reckoning 'rek@nIN Jb%,M6% 32A,6A,7A,9,15B,16B,25 +reckonings 'rek@nINz Mj% 3 +reckons 'rek@nz Ja% 22A,6A,7A,9,15B,16B,25 +reclaim rI'kleIm H0% 26A +reclaimed rI'kleImd Hc%,Hd% 26A +reclaiming rI'kleImIN Hb% 36A +reclaims rI'kleImz Ha% 26A +reclamation ,rekl@'meISn L@% 4 +recline rI'klaIn J2% 22A,2C,15A +reclined rI'klaInd Jc%,Jd% 22A,2C,15A +reclines rI'klaInz Ja% 22A,2C,15A +reclining rI'klaInIN Jb% 32A,2C,15A +recluse rI'klus K6% 2 +recluses rI'klusIz Kj$ 3 +recognition ,rek@g'nISn L@% 4 +recognizable 'rek@gnaIz@bl OA% 5 +recognizably ,rek@g'naIz@blI Pu% 5 +recognizance rI'k0gnIz@ns K6$ 4 +recognizances rI'k0gnIz@nsIz Kj$ 5 +recognize 'rek@gnaIz H2% 36A,9,16A,25 +recognized 'rek@gnaIzd Hc%,Hd% 36A,9,16A,25 +recognizes 'rek@gnaIzIz Ha% 46A,9,16A,25 +recognizing 'rek@gnaIzIN Hb% 46A,9,16A,25 +recoil rI'koIl I0%,K6% 22A,3A +recoiled rI'koIld Ic%,Id% 22A,3A +recoiling rI'koIlIN Ib% 32A,3A +recoils rI'koIlz Ia%,Kj% 22A,3A +recollect ,rek@'lekt J0% 32A,6A,6C,8,9,10 +recollected ,rek@'lektId Jc%,Jd% 42A,6A,6C,8,9,10 +recollecting ,rek@'lektIN Jb% 42A,6A,6C,8,9,10 +recollection ,rek@'lekSn M6% 4 +recollections ,rek@'lekSnz Mj% 4 +recollects ,rek@'lekts Ja% 32A,6A,6C,8,9,10 +recommend ,rek@'mend H0% 36A,6C,9,12A,13A,14,16A,17 +recommendation ,rek@men'deISn M6% 5 +recommendations ,rek@men'deISnz Mj% 5 +recommended ,rek@'mendId Hc%,Hd% 46A,6C,9,12A,13A,14,16A,17 +recommending ,rek@'mendIN Hb% 46A,6C,9,12A,13A,14,16A,17 +recommends ,rek@'mendz Ha% 36A,6C,9,12A,13A,14,16A,17 +recommit ,rik@'mIt H4% 36A,14,16A +recommits ,rik@'mIts Ha% 36A,14,16A +recommitted ,rik@'mItId Hc%,Hd% 46A,14,16A +recommitting ,rik@'mItIN Hb% 46A,14,16A +recompense 'rek@mpens H2%,M6% 36A,14 +recompensed 'rek@mpenst Hc%,Hd% 36A,14 +recompenses 'rek@mpensIz Ha%,Mj% 46A,14 +recompensing 'rek@mpensIN Hb% 46A,14 +reconcilable ,rek@n'saIl@bl OA% 5 +reconcile 'rek@nsaIl H2% 36A,14 +reconciled 'rek@nsaIld Hc%,Hd% 36A,14 +reconciles 'rek@nsaIlz Ha% 36A,14 +reconciliation ,rek@n,sIlI'eISn M6% 6 +reconciliations ,rek@n,sIlI'eISnz Mj% 6 +reconciling 'rek@nsaIlIN Hb% 46A,14 +recondite 'rek@ndaIt OA$ 3 +recondition ,rik@n'dISn H0% 46A +reconditioned ,rik@n'dISnd Hc%,Hd% 46A +reconditioning ,rik@n'dISnIN Hb% 56A +reconditions ,rik@n'dISnz Ha% 46A +reconnaissance rI'k0nIs@ns M6% 4 +reconnaissances rI'k0nIs@nsIz Mj% 5 +reconnoitre ,rek@'noIt@R J2% 42A,6A +reconnoitred ,rek@'noIt@d Jc%,Jd% 42A,6A +reconnoitres ,rek@'noIt@z Ja% 42A,6A +reconnoitring ,rek@'noIt@rIN Jb% 42A,6A +reconsecrate ri'k0nsIkreIt H2% 46A,14,23 +reconsecrated ri'k0nsIkreItId Hc%,Hd% 56A,14,23 +reconsecrates ri'k0nsIkreIts Ha% 46A,14,23 +reconsecrating ri'k0nsIkreItIN Hb% 56A,14,23 +reconsider ,rik@n'sId@R H0% 46A,6C,8,9,10,25 +reconsidered ,rik@n'sId@d Hc%,Hd% 46A,6C,8,9,10,25 +reconsidering ,rik@n'sId@rIN Hb% 56A,6C,8,9,10,25 +reconsiders ,rik@n'sId@z Ha% 46A,6C,8,9,10,25 +reconstruct ,rik@n'strVkt H0% 36A +reconstructed ,rik@n'strVktId Hc%,Hd% 46A +reconstructing ,rik@n'strVktIN Hb% 46A +reconstruction ,rik@n'strVkSn M6% 4 +reconstructions ,rik@n'strVkSnz Mj% 4 +reconstructs ,rik@n'strVkts Ha% 36A +reconvict ,rik@n'vIkt H0% 36A,14 +reconvicted ,rik@n'vIktId Hc%,Hd% 46A,14 +reconvicting ,rik@n'vIktIN Hb% 46A,14 +reconvicts ,rik@n'vIkts Ha% 36A,14 +record 'rekOd M6% 2 +record rI'kOd H0% 26A +record-breaking 'rekOd-breIkIN OA% 4 +record-player 'rekOd-pleI@R K6% 4 +record-players 'rekOd-pleI@z Kj% 4 +recorded rI'kOdId Hc%,Hd% 36A +recorder rI'kOd@R K6% 3 +recorders rI'kOd@z Kj% 3 +recording rI'kOdIN Hb%,K6% 36A +recordings rI'kOdINz Kj% 3 +records 'rekOdz Mj% 2 +records rI'kOdz Ha% 26A +recount rI'kaUnt H0% 26A +recounted rI'kaUntId Hc%,Hd% 36A +recounting rI'kaUntIN Hb% 36A +recounts rI'kaUnts Ha% 26A +recoup rI'kup H0% 26A,14 +recouped rI'kupt Hc%,Hd% 26A,14 +recouping rI'kupIN Hb% 36A,14 +recoups rI'kups Ha% 26A,14 +recourse rI'kOs L@% 2 +recover rI'kVv@R J0% 32A,3A,6A +recoverable rI'kVv@r@bl OA% 5 +recovered rI'kVv@d Jc%,Jd% 32A,3A,6A +recoveries rI'kVv@rIz Mj% 4 +recovering rI'kVv@rIN Jb% 42A,3A,6A +recovers rI'kVv@z Ja% 32A,3A,6A +recovery rI'kVv@rI M8% 4 +recreant 'rekrI@nt K6$,OA$ 3 +recreants 'rekrI@nts Kj$ 3 +recreate ,rikri'eIt H2% 36A,23 +recreated ,rikri'eItId Hc%,Hd% 46A,23 +recreates ,rikri'eIts Ha% 36A,23 +recreating ,rikri'eItIN Hb% 46A,23 +recreation ,rekrI'eISn M6% 4 +recreational ,rekrI'eISn@l OA% 4 +recreations ,rekrI'eISnz Mj% 4 +recriminate rI'krImIneIt I2$ 42A,3A +recriminated rI'krImIneItId Ic$,Id$ 52A,3A +recriminates rI'krImIneIts Ia$ 42A,3A +recriminating rI'krImIneItIN Ib$ 52A,3A +recrimination rI,krImI'neISn M6% 5 +recriminations rI,krImI'neISnz Mj% 5 +recriminatory rI'krImIn@trI OA$ 5 +recrudescence ,rikru'des@ns M6$ 4 +recrudescences ,rikru'des@nsIz Mj$ 5 +recruit rI'krut J0%,K6% 26A +recruited rI'krutId Jc%,Jd% 36A +recruiting rI'krutIN Jb% 36A +recruitment rI'krutm@nt K6% 3 +recruitments rI'krutm@nts Kj% 3 +recruits rI'kruts Ja%,Kj% 26A +rectal 'rekt@l OA% 2 +rectangle 'rekt&Ngl K6% 3 +rectangles 'rekt&Nglz Kj% 3 +rectangular rek't&NgjUl@R OA% 4 +rectification ,rektIfI'keISn M6% 5 +rectifications ,rektIfI'keISnz Mj% 5 +rectified 'rektIfaId Hc%,Hd% 36A +rectifier 'rektIfaI@R K6% 4 +rectifiers 'rektIfaI@z Kj% 4 +rectifies 'rektIfaIz Ha% 36A +rectify 'rektIfaI H3% 36A +rectifying 'rektIfaIIN Hb% 46A +rectilinear ,rektI'lInI@R OA% 5 +rectitude 'rektItjud L@% 3 +recto 'rekt@U K6$ 2 +rector 'rekt@R K6% 2 +rectories 'rekt@rIz Kj% 3 +rectors 'rekt@z Kj% 2 +rectory 'rekt@rI K8% 3 +rectos 'rekt@Uz Kj$ 2 +rectum 'rekt@m K6% 2 +rectums 'rekt@mz Kj$ 2 +recumbent rI'kVmb@nt OA% 3 +recuperate rI'kup@reIt J2% 42A,6A +recuperated rI'kup@reItId Jc%,Jd% 52A,6A +recuperates rI'kup@reIts Ja% 42A,6A +recuperating rI'kup@reItIN Jb% 52A,6A +recuperation rI,kup@'reISn M6% 5 +recuperations rI,kup@'reISnz Mj% 5 +recuperative rI'kup@r@tIv OA% 5 +recur rI'k3R I4% 22A,3A +recurred rI'k3d Ic%,Id% 22A,3A +recurrence rI'kVr@ns M6% 3 +recurrences rI'kVr@nsIz Mj% 4 +recurrent rI'kVr@nt OA% 3 +recurring rI'k3rIN Ib% 32A,3A +recurs rI'k3z Ia% 22A,3A +recurve ,ri'k3v J2$ 2 +recurved ,ri'k3vd Jc$,Jd$ 2 +recurves ,ri'k3vz Ja$ 2 +recurving ,ri'k3vIN Jb$ 3 +recusancy 'rekjUz@nsI L@$ 4 +recusant 'rekjUz@nt K6$,OA$ 3 +recusants 'rekjUz@nts Kj$ 3 +recycle ,ri'saIkl H2% 36A +recycled ,ri'saIkld Hc%,Hd% 36A +recycles ,ri'saIklz Ha% 36A +recycling ,ri'saIklIN Hb% 36A +red red M6%,OE% 1 +red-hot 'red-h0t OA% 2 +red-rimmed 'red-rImd OA% 2 +redact rI'd&kt H0$ 26A +redacted rI'd&ktId Hc$,Hd$ 36A +redacting rI'd&ktIN Hb$ 36A +redaction rI'd&kSn M6$ 3 +redactions rI'd&kSnz Mj$ 3 +redacts rI'd&kts Ha$ 26A +redbreast 'redbrest K6% 2 +redbreasts 'redbrests Kj% 2 +redcap 'redk&p K6% 2 +redcaps 'redk&ps Kj% 2 +redcoat 'redk@Ut K6% 2 +redcoats 'redk@Uts Kj% 2 +redden 'redn J0% 22A,6A +reddened 'rednd Jc%,Jd% 22A,6A +reddening 'rednIN Jb% 32A,6A +reddens 'rednz Ja% 22A,6A +redder 'red@R Or% 2 +reddest 'redIst Os% 2 +reddish 'redIS OA% 2 +redecorate ri'dek@reIt H2% 46A,14 +redecorated ri'dek@reItId Hc%,Hd% 56A,14 +redecorates ri'dek@reIts Ha% 46A,14 +redecorating ri'dek@reItIN Hb% 56A,14 +redeem rI'dim H0% 26A,14 +redeemable rI'dim@bl OA% 4 +redeemed rI'dimd Hc%,Hd% 26A,14 +redeemer rI'dim@R K6% 3 +redeemers rI'dim@z Kj% 3 +redeeming rI'dimIN Hb% 36A,14 +redeems rI'dimz Ha% 26A,14 +redefine ,ridI'faIn H2% 36A +redefined ,ridI'faInd Hc%,Hd% 36A +redefines ,ridI'faInz Ha% 36A +redefining ,ridI'faInIN Hb% 46A +redemption rI'dempSn L@% 3 +redemptive rI'demptIv OA% 3 +redeploy ,ridI'ploI H0% 36A +redeployed ,ridI'ploId Hc%,Hd% 36A +redeploying ,ridI'ploIIN Hb% 46A +redeployment ,ridI'ploIm@nt M6% 4 +redeployments ,ridI'ploIm@nts Mj% 4 +redeploys ,ridI'ploIz Ha% 36A +redesign ,ridI'zaIn H0% 32A,2C,6A,14,16A,16B +redesigned ,ridI'zaInd Hc%,Hd% 32A,2C,6A,14,16A,16B +redesigning ,ridI'zaInIN Hb% 42A,2C,6A,14,16A,16B +redesigns ,ridI'zaInz Ha% 32A,2C,6A,14,16A,16B +redevelop ,ridI'vel@p H0% 42A,2C,3A,6A +redeveloped ,ridI'vel@pt Hc%,Hd% 42A,2C,3A,6A +redeveloping ,ridI'vel@pIN Hb% 52A,2C,3A,6A +redevelopment ,ridI'vel@pm@nt M6% 5 +redevelopments ,ridI'vel@pm@nts Mj% 5 +redevelops ,ridI'vel@ps Ha% 42A,2C,3A,6A +redhead 'redhed K6% 2 +redheads 'redhedz Kj% 2 +redid ,ri'dId Hc% 26A +rediffusion ,ridI'fjuZn L@% 4 +rediscover ,ridI'skVv@R H0% 46A,8,9,10,25 +rediscovered ,ridI'skVv@d Hc%,Hd% 46A,8,9,10,25 +rediscoveries ,ridI'skVv@rIz Mj% 5 +rediscovering ,ridI'skVv@rIN Hb% 56A,8,9,10,25 +rediscovers ,ridI'skVv@z Ha% 46A,8,9,10,25 +rediscovery ,ridI'skVv@rI M8% 5 +redisposition ,ridIsp@'zISn K6% 5 +redispositions ,ridIsp@'zISnz Kj% 5 +redistribute ,ridI'strIbjut H2% 46A,14 +redistributed ,ridI'strIbjutId Hc%,Hd% 56A,14 +redistributes ,ridI'strIbjuts Ha% 46A,14 +redistributing ,ridI'strIbjutIN Hb% 56A,14 +redistribution ,ridIstrI'bjuSn M6% 5 +redistributions ,ridIstrI'bjuSnz Mj% 5 +redness 'rednIs L@% 2 +redo ,ri'du H5% 26A +redoes ,ri'dVz Ha% 26A +redoing ,ri'duIN Hb% 36A +redolence 'red@l@ns L@% 3 +redolent 'red@l@nt OA% 3 +redone ,ri'dVn Hd% 26A +redouble rI'dVbl J2% 32A,6A +redoubled rI'dVbld Jc%,Jd% 32A,6A +redoubles rI'dVblz Ja% 32A,6A +redoubling rI'dVblIN Jb% 32A,6A +redoubt rI'daUt K6$ 2 +redoubtable rI'daUt@bl OA% 4 +redoubts rI'daUts Kj$ 2 +redound rI'daUnd I0$ 23A +redounded rI'daUndId Ic$,Id$ 33A +redounding rI'daUndIN Ib$ 33A +redounds rI'daUndz Ia$ 23A +redress rI'dres H1%,L@% 26A +redressed rI'drest Hc%,Hd% 26A +redresses rI'dresIz Ha% 36A +redressing rI'dresIN Hb% 36A +reds redz Mj% 1 +redskin 'redskIn K6% 2 +redskins 'redskInz Kj% 2 +reduce rI'djus J2% 22A,2B,6A,14 +reduced rI'djust Jc%,Jd% 22A,2B,6A,14 +reduces rI'djusIz Ja% 32A,2B,6A,14 +reducible rI'djus@bl OA% 4 +reducing rI'djusIN Jb% 32A,2B,6A,14 +reductio ad absurdum rI,dVktI@U ,&d @b's3d@mMi% 8 +reduction rI'dVkSn M6% 3 +reductions rI'dVkSnz Mj% 3 +redundance rI'dVnd@ns K6$ 3 +redundances rI'dVnd@nsIz Kj$ 4 +redundancies rI'dVnd@nsIz Mj% 4 +redundancy rI'dVnd@nsI M8% 4 +redundant rI'dVnd@nt OA% 3 +reduplicate rI'djuplIkeIt H2% 46A +reduplicated rI'djuplIkeItId Hc%,Hd% 56A +reduplicates rI'djuplIkeIts Ha% 46A +reduplicating rI'djuplIkeItIN Hb% 56A +reduplication rI,djuplI'keISn M6% 5 +reduplications rI,djuplI'keISnz Mj% 5 +redwing 'redwIN K6% 2 +redwings 'redwINz Kj% 2 +redwood 'redwUd K6% 2 +redwoods 'redwUdz Kj% 2 +reed rid M6% 1 +reedier 'ridI@R Or% 3 +reediest 'ridIIst Os% 3 +reeds ridz Mj% 1 +reedy 'ridI OD% 2 +reef rif H0$,K6% 16A +reef-knot 'rif-n0t K6% 2 +reef-knots 'rif-n0ts Kj% 2 +reefed rift Hc$,Hd$ 16A +reefer 'rif@R K6% 2 +reefers 'rif@z Kj% 2 +reefing 'rifIN Hb$ 26A +reefs rifs Ha$,Kj% 16A +reek rik I0%,L@% 13A +reeked rikt Ic%,Id% 13A +reeking 'rikIN Ib% 23A +reeks riks Ia% 13A +reel ril J0%,K6% 12A,2C,6A,15A,15B +reeled rild Jc%,Jd% 12A,2C,6A,15A,15B +reeling 'rilIN Jb% 22A,2C,6A,15A,15B +reels rilz Ja%,Kj% 12A,2C,6A,15A,15B +reeve riv K6$ 1 +reeves rivz Kj$ 1 +ref ref Y>% 1 +reface ,ri'feIs H2$ 2 +refaced ,ri'feIst Hc$,Hd% 2 +refaces ,ri'feIsIz Ha$ 3 +refacing ,ri'feIsIN Hb$ 3 +refashion ri'f&Sn H0%,M6% 36A,15A +refashioned ri'f&Snd Hc%,Hd% 36A,15A +refashioning ri'f&S@nIN Hb% 46A,15A +refashions ri'f&Snz Ha% 36A,15A +refection rI'fekSn M6$ 3 +refections rI'fekSnz Mj$ 3 +refectories rI'fekt@rIz Kj% 4 +refectory rI'fekt@rI K8% 4 +refer rI'f3R J4% 23A,14,15B +referable rI'f3r@bl OA% 4 +referee ,ref@'ri J5%,K6% 32A,6A +refereed ,ref@'rid Jc%,Jd% 32A,6A +refereeing ,ref@'riIN Jb% 42A,6A +referees ,ref@'riz Ja%,Kj% 32A,6A +reference 'refr@ns M6% 2 +references 'refr@nsIz Mj% 3 +referenda ,ref@'rend@ Kj% 4 +referendum ,ref@'rend@m K6% 4 +referendums ,ref@'rend@mz Kj% 4 +referential ,ref@'renSl OA% 4 +referred rI'f3d Jc%,Jd% 23A,14,15B +referring rI'f3rIN Jb% 33A,14,15B +refers rI'f3z Ja% 23A,14,15B +refill 'rifIl K6% 2 +refill ,ri'fIl H0% 2 +refilled ,ri'fIld Hc%,Hd% 2 +refilling ,ri'fIlIN Hb% 3 +refills 'rifIlz Kj% 2 +refills ,ri'fIlz Ha% 2 +refine rI'faIn J2% 22A,6A +refined rI'faInd Jc%,Jd% 22A,6A +refinement rI'faInm@nt M6% 3 +refinements rI'faInm@nts Mj% 3 +refiner rI'faIn@R K6% 3 +refineries rI'faIn@rIz Kj% 4 +refiners rI'faIn@z Kj% 3 +refinery rI'faIn@rI K8% 4 +refines rI'faInz Ja% 22A,6A +refining rI'faInIN Jb% 32A,6A +refit 'rifIt K6% 2 +refit ,ri'fIt J4% 22A,6A +refits 'rifIts Kj% 2 +refits ,ri'fIts Ja% 22A,6A +refitted ,ri'fItId Jc%,Jd% 32A,6A +refitting ,ri'fItIN Jb% 32A,6A +reflate ,ri'fleIt H2$ 26A +reflated ,ri'fleItId Hc$,Hd$ 36A +reflates ,ri'fleIts Ha$ 26A +reflating ,ri'fleItIN Hb$ 36A +reflation ri'fleISn L@% 3 +reflect rI'flekt J0% 22A,3A,6A,8,9,10,14 +reflected rI'flektId Jc%,Jd% 32A,3A,6A,8,9,10,14 +reflecting rI'flektIN Jb% 32A,3A,6A,8,9,10,14 +reflection rI'flekSn M6% 3 +reflections rI'flekSnz Mj% 3 +reflective rI'flektIv OA% 3 +reflectively rI'flektIvlI Pu% 4 +reflector rI'flekt@R K6% 3 +reflectors rI'flekt@z Kj% 3 +reflects rI'flekts Ja% 22A,3A,6A,8,9,10,14 +reflex 'rifleks K7%,OA% 2 +reflexes 'rifleksIz Kj% 3 +reflexion rI'flekSn M6% 3 +reflexions rI'flekSnz Mj% 3 +reflexive rI'fleksIv K6%,OA% 3 +reflexives rI'fleksIvz Kj% 3 +refloat ,ri'fl@Ut J0% 22A,6A +refloated ,ri'fl@UtId Jc%,Jd% 32A,6A +refloating ,ri'fl@UtIN Jb% 32A,6A +refloats ,ri'fl@Uts Ja% 22A,6A +reflux ,ri'flVks K7$ 2 +refluxes ,ri'flVksIz Kj$ 3 +reforest ,ri'f0rIst H0$ 3 +reforestation ri,f0rI'steISn M6% 5 +reforestations ri,f0rI'steISnz Mj% 5 +reforested ,ri'f0rIstId Hc$,Hd$ 4 +reforesting ,ri'f0rIstIN Hb$ 4 +reforests ,ri'f0rIsts Ha$ 3 +reform rI'fOm J0%,M6% 22A,6A +reformation ,ref@'meISn M6% 4 +reformations ,ref@'meISnz Mj% 4 +reformatories rI'fOm@trIz Kj% 4 +reformatory rI'fOm@trI K8%,OA% 4 +reformed rI'fOmd Jc%,Jd% 22A,6A +reformer rI'fOm@R K6% 3 +reformers rI'fOm@z Kj% 3 +reforming rI'fOmIN Jb% 32A,6A +reforms rI'fOmz Ja%,Mj% 22A,6A +refract rI'fr&kt H0% 26A +refracted rI'fr&ktId Hc%,Hd% 36A +refracting rI'fr&ktIN Hb% 36A +refraction rI'fr&kSn M6% 3 +refractions rI'fr&kSnz Mj% 3 +refractory rI'fr&kt@rI OA% 4 +refracts rI'fr&kts Ha% 26A +refrain rI'freIn I0%,K6% 22A,3A +refrained rI'freInd Ic%,Id% 22A,3A +refraining rI'freInIN Ib% 32A,3A +refrains rI'freInz Ia%,Kj% 22A,3A +refresh rI'freS H1% 26A +refreshed rI'freSt Hc%,Hd% 26A +refresher rI'freS@R K6% 3 +refreshers rI'freS@z Kj% 3 +refreshes rI'freSIz Ha% 36A +refreshing rI'freSIN Hb%,OA% 36A +refreshingly rI'freSINlI Pu% 4 +refreshment rI'freSm@nt M6% 3 +refreshments rI'freSm@nts Mj% 3 +refrigerant rI'frIdZ@r@nt K6$,OA$ 4 +refrigerants rI'frIdZ@r@nts Kj$ 4 +refrigerate rI'frIdZ@reIt H2% 46A +refrigerated rI'frIdZ@reItId Hc%,Hd% 56A +refrigerates rI'frIdZ@reIts Ha% 46A +refrigerating rI'frIdZ@reItIN Hb% 56A +refrigeration rI,frIdZ@'reISn M6% 5 +refrigerations rI,frIdZ@'reISnz Mj% 5 +refrigerator rI'frIdZ@reIt@R K6% 5 +refrigerators rI'frIdZ@reIt@z Kj% 5 +reft reft Hd$ 114 +refuel ,ri'fju@l J4% 32A,6A +refuelled ,ri'fju@ld Jc%,Jd% 32A,6A +refuelling ,ri'fju@lIN Jb% 42A,6A +refuels ,ri'fju@lz Ja% 32A,6A +refuge 'refjudZ M6% 2 +refugee ,refjU'dZi K6% 3 +refugees ,refjU'dZiz Kj% 3 +refuges 'refjudZIz Mj% 3 +refulgence rI'fVldZens L@$ 3 +refulgent rI'fVldZent OA$ 3 +refund 'rifVnd M6% 2 +refund rI'fVnd H0% 26A +refunded rI'fVndId Hc%,Hd% 36A +refunding rI'fVndIN Hb% 36A +refunds 'rifVndz Mj% 2 +refunds rI'fVndz Ha% 26A +refurbish ,ri'f3bIS H1% 36A +refurbished ,ri'f3bISt Hc%,Hd% 36A +refurbishes ,ri'f3bISIz Ha% 46A +refurbishing ,ri'f3bISIN Hb% 46A +refurnish ri'f3nIS H1% 36A,14 +refurnished ri'f3nISt Hc%,Hd% 36A,14 +refurnishes ri'f3nISIz Ha% 46A,14 +refurnishing ri'f3nISIN Hb% 46A,14 +refusal rI'fjuzl M6% 3 +refusals rI'fjuzlz Mj% 3 +refuse 'refjus L@% 2 +refuse rI'fjuz J2% 22A,6A,7A,12C +refuse-collector 'refjus-k@,lekt@R K6% 5 +refuse-collectors 'refjus-k@,lekt@z Kj% 5 +refused rI'fjuzd Jc%,Jd% 22A,6A,7A,12C +refuses rI'fjuzIz Ja% 32A,6A,7A,12C +refusing rI'fjuzIN Jb% 32A,6A,7A,12C +refutable rI'fjut@bl OA% 4 +refutation ,refjU'teISn M6% 4 +refutations ,refjU'teISnz Mj% 4 +refute rI'fjut H2% 26A +refuted rI'fjutId Hc%,Hd% 36A +refutes rI'fjuts Ha% 26A +refuting rI'fjutIN Hb% 36A +regain rI'geIn H0% 26A +regained rI'geInd Hc%,Hd% 26A +regaining rI'geInIN Hb% 36A +regains rI'geInz Ha% 26A +regal 'rig@l OA% 2 +regale rI'geIl H2% 26A,14 +regaled rI'geIld Hc%,Hd% 26A,14 +regales rI'geIlz Ha% 26A,14 +regalia rI'geIlI@ Kj% 4 +regaling rI'geIlIN Hb% 36A,14 +regally 'rig@lI Pu% 3 +regard rI'gAd H0%,M6% 26A,14,16B +regarded rI'gAdId Hc%,Hd% 36A,14,16B +regardful rI'gAdf@l OA% 3 +regarding rI'gAdIN Hb% 36A,14,16B +regardless rI'gAdl@s OA% 3 +regards rI'gAdz Ha%,Mj% 26A,14,16B +regatta rI'g&t@ K6% 3 +regattas rI'g&t@z Kj% 3 +regencies 'ridZ@nsIz Kj$ 3 +regency 'ridZ@nsI K8$ 3 +regenerate rI'dZen@r@t OA% 4 +regenerate rI'dZen@reIt J2% 42A,6A +regenerated rI'dZen@reItId Jc%,Jd% 52A,6A +regenerates rI'dZen@reIts Ja% 42A,6A +regenerating rI'dZen@reItIN Jb% 52A,6A +regeneration rI,dZen@'reISn L@% 5 +regent 'ridZ@nt K6$,OA$ 2 +regents 'ridZ@nts Kj$ 2 +reggae 'regeI L@% 2 +regicide 'redZIsaId M6% 3 +regicides 'redZIsaIdz Mj% 3 +regime reI'Zim K6% 2 +regimen 'redZIm@n K6% 3 +regimens 'redZIm@nz Kj$ 3 +regiment 'redZIm@nt H0%,K6% 36A +regimental ,redZI'mentl OA% 4 +regimentals ,redZI'mentlz Kj$ 4 +regimentation ,redZImen'teISn L@% 5 +regimented 'redZIm@ntId Hc%,Hd% 46A +regimenting 'redZIm@ntIN Hb% 46A +regiments 'redZIm@nts Ha%,Kj% 36A +regimes reI'Zimz Kj% 2 +region 'ridZ@n K6% 2 +regional 'ridZ@nl OA% 3 +regionally 'ridZ@n@lI Pu% 4 +regions 'ridZ@nz Kj% 2 +register 'redZIst@R J0%,K6% 32A,3A,6A,14 +registered 'redZIst@d Jc%,Jd% 32A,3A,6A,14 +registering 'redZIst@rIN Jb% 42A,3A,6A,14 +registers 'redZIst@z Ja%,Kj% 32A,3A,6A,14 +registrar ,redZI'strAR K6% 3 +registrars ,redZI'strAz Kj% 3 +registration ,redZI'streISn M6% 4 +registrations ,redZI'streISnz Mj% 4 +registries 'redZIstrIz Mj% 3 +registry 'redZIstrI M8% 3 +regnant 'regn@nt OA$ 2 +regress rI'gres I1% 22A +regressed rI'grest Ic%,Id% 22A +regresses rI'gresIz Ia% 32A +regressing rI'gresIN Ib% 32A +regression rI'greSn M6% 3 +regressions rI'greSnz Mj% 3 +regressive rI'gresIv OA% 3 +regret rI'gret H4%,M6% 26A,6D,7A,9 +regretful rI'gretf@l OA% 3 +regretfully rI'gretf@lI Pu% 4 +regrets rI'grets Ha%,Mj% 26A,6D,7A,9 +regrettable rI'gret@bl OA% 4 +regrettably rI'gret@blI Pu% 4 +regretted rI'gretId Hc%,Hd% 36A,6D,7A,9 +regretting rI'gretIN Hb% 36A,6D,7A,9 +regroup ,ri'grup J0% 22A,6A +regrouped ,ri'grupt Jc%,Jd% 22A,6A +regrouping ,ri'grupIN Jb% 32A,6A +regroups ,ri'grups Ja% 22A,6A +regular 'regjUl@R K6%,OA% 3 +regularities ,regjU'l&rItIz Mj% 5 +regularity ,regjU'l&rItI M8% 5 +regularization ,regjUl@raI'zeISn M6% 6 +regularizations ,regjUl@raI'zeISnz Mj% 6 +regularize 'regjUl@raIz H2% 46A +regularized 'regjUl@raIzd Hc%,Hd% 46A +regularizes 'regjUl@raIzIz Ha% 56A +regularizing 'regjUl@raIzIN Hb% 56A +regularly 'regjUl@lI Pu% 4 +regulars 'regjUl@z Kj% 3 +regulate 'regjUleIt H2% 36A +regulated 'regjUleItId Hc%,Hd% 46A +regulates 'regjUleIts Ha% 36A +regulating 'regjUleItIN Hb% 46A +regulation ,regjU'leISn M6% 4 +regulations ,regjU'leISnz Mj% 4 +regulator 'regjUleIt@R K6% 4 +regulators 'regjUleIt@z Kj% 4 +regurgitate ri'g3dZIteIt J2% 42A,6A +regurgitated ri'g3dZIteItId Jc%,Jd% 52A,6A +regurgitates ri'g3dZIteIts Ja% 42A,6A +regurgitating ri'g3dZIteItIN Jb% 52A,6A +rehabilitate ,ri@'bIlIteIt H2% 56A +rehabilitated ,ri@'bIlIteItId Hc%,Hd% 66A +rehabilitates ,ri@'bIlIteIts Ha% 56A +rehabilitating ,ri@'bIlIteItIN Hb% 66A +rehabilitation ,ri@,bIlI'teISn M6% 6 +rehabilitations ,ri@,bIlI'teISnz Mj% 6 +rehash 'rih&S K7% 2 +rehash ,ri'h&S H1% 2 +rehashed ,ri'h&St Hc%,Hd% 2 +rehashes 'rih&SIz Kj$ 3 +rehashes ,ri'h&SIz Ha$ 3 +rehashing ,ri'h&SIN Hb% 3 +rehear ,ri'hI@R H5$ 26A +reheard ,ri'h3d Hc$,Hd$ 26A +rehearing ,ri'hI@rIN Hb$,K6$ 36A +rehearings ,ri'hI@rINz Kj$ 3 +rehears ,ri'hI@z Ha$ 26A +rehearsal rI'h3sl M6% 3 +rehearsals rI'h3slz Mj% 3 +rehearse rI'h3s J2% 22A,6A +rehearsed rI'h3st Jc%,Jd% 22A,6A +rehearses rI'h3sIz Ja% 32A,6A +rehearsing rI'h3sIN Jb% 32A,6A +rehouse ,ri'haUz H2% 26A +rehoused ,ri'haUzd Hc%,Hd% 26A +rehouses ,ri'haUzIz Ha% 36A +rehousing ,ri'haUzIN Hb% 36A +reign reIn I0%,K6% 12A,3A +reigned reInd Ic%,Id% 12A,3A +reigning 'reInIN Ib% 22A,3A +reigns reInz Ia%,Kj% 12A,3A +reimburse ,riIm'b3s H2% 36A,12A,13A,14 +reimbursed ,riIm'b3st Hc%,Hd% 36A,12A,13A,14 +reimbursement ,riIm'b3sm@nt M6% 4 +reimbursements ,riIm'b3sm@nts Mj% 4 +reimburses ,riIm'b3sIz Ha% 46A,12A,13A,14 +reimbursing ,riIm'b3sIN Hb% 46A,12A,13A,14 +reimposition ,riImp@'zISn M6% 5 +reimpositions ,riImp@'zISnz Mj% 5 +rein reIn H0%,K6% 16A,15B +reincarnate ,riIn'kAn@t OA% 4 +reincarnate ,riIn'kAneIt H2$ 4 +reincarnated ,riIn'kAneItId Hc$,Hd% 5 +reincarnates ,riIn'kAneIts Ha$ 4 +reincarnating ,riInkA'neItIN Hb$ 5 +reincarnation ,riInkA'neISn M6% 5 +reincarnations ,riInkA'neISnz Mj$ 5 +reindeer 'reIndI@R K9% 2 +reined reInd Hc%,Hd% 16A,15B +reinforce ,riIn'fOs H2% 36A +reinforced ,riIn'fOst Hc%,Hd% 36A +reinforcement ,riIn'fOsm@nt M6% 4 +reinforcements ,riIn'fOsm@nts Mj% 4 +reinforces ,riIn'fOsIz Ha% 46A +reinforcing ,riIn'fOsIN Hb% 46A +reining 'reInIN Hb% 26A,15B +reins reInz Ha%,Kj% 16A,15B +reinstate ,riIn'steIt H2% 36A,14 +reinstated ,riIn'steItId Hc%,Hd% 46A,14 +reinstatement ,riIn'steItm@nt K6% 4 +reinstatements ,riIn'steItm@nts Kj% 4 +reinstates ,riIn'steIts Ha% 36A,14 +reinstating ,riIn'steItIN Hb% 46A,14 +reinsurance ,riIn'Sur@ns M6% 4 +reinsurances ,riIn'Sur@nsIz Mj$ 5 +reinsure ,riIn'SU@R H2% 36A +reinsured ,riIn'SU@d Hc%,Hd% 36A +reinsures ,riIn'SU@z Ha% 36A +reinsuring ,riIn'SU@rIN Hb% 46A +reintegrate ri'IntIgreIt H2% 42A,6A +reintegrated ri'IntIgreItId Hc%,Hd% 52A,6A +reintegrates ri'IntIgreIts Ha% 42A,6A +reintegrating ri'IntIgreItIN Hb% 52A,6A +reinterpret ,riIn't3prIt H0% 42A,6A,16B +reinterpretation ,riIn,t3prI'teISn M6% 6 +reinterpretations ,riIn,t3prI'teISnz Mj% 6 +reinterpreted ,riIn't3prItId Hc%,Hd% 52A,6A,16B +reinterpreting ,riIn't3prItIN Hb% 52A,6A,16B +reinterprets ,riIn't3prIts Ha% 42A,6A,16B +reissue ,ri'ISu H2%,K6% 36A +reissued ,ri'ISud Hc%,Hd% 36A +reissues ,ri'ISuz Ha%,Kj% 36A +reissuing ,ri'ISuIN Hb% 46A +reiterate ri'It@reIt H2% 46A +reiterated ri'It@reItId Hc%,Hd% 56A +reiterates ri'It@reIts Ha% 46A +reiterating ri'It@reItIN Hb% 56A +reiteration ri,It@'reISn M6% 5 +reiterations ri,It@'reISnz Mj% 5 +reject 'ridZekt K6% 2 +reject rI'dZekt H0% 26A +rejected rI'dZektId Hc%,Hd% 36A +rejecting rI'dZektIN Hb% 36A +rejection rI'dZekSn M6% 3 +rejections rI'dZekSnz Mj% 3 +rejects 'ridZekts Kj% 2 +rejects rI'dZekts Ha% 26A +rejig ,ri'dZIg H4$ 26A +rejigged ,ri'dZIgd Hc$,Hd$ 26A +rejigging ,ri'dZIgIN Hb$ 36A +rejigs ,ri'dZIgz Ha$ 26A +rejoice rI'dZoIs J2% 22A,2C,3B,4C,6A +rejoiced rI'dZoIst Jc%,Jd% 22A,2C,3B,4C,6A +rejoices rI'dZoIsIz Ja% 32A,2C,3B,4C,6A +rejoicing rI'dZoIsIN Jb%,L@% 32A,2C,3B,4C,6A +rejoin ,ri'dZoIn H0% 26A +rejoin rI'dZoIn J0% 22A,6A +rejoinder rI'dZoInd@R K6% 3 +rejoinders rI'dZoInd@z Kj% 3 +rejoined ,ri'dZoInd Hc%,Hd% 26A +rejoined rI'dZoInd Jc%,Jd% 22A,6A +rejoining ,ri'dZoInIN Hb% 36A +rejoining rI'dZoInIN Jb% 32A,6A +rejoins ,ri'dZoInz Ha% 26A +rejoins rI'dZoInz Ja% 22A,6A +rejuvenate ri'dZuv@neIt J2% 42A,6A +rejuvenated ri'dZuv@neItId Jc%,Jd% 52A,6A +rejuvenates ri'dZuv@neIts Ja% 42A,6A +rejuvenating ri'dZuv@neItIN Jb% 52A,6A +rejuvenation rI,dZuv@'neISn K6% 5 +rejuvenations rI,dZuv@'neISnz Kj$ 5 +rekindle ,ri'kIndl J2% 32A,6A +rekindled ,ri'kIndld Jc%,Jd% 32A,6A +rekindles ,ri'kIndlz Ja% 32A,6A +rekindling ,ri'kIndlIN Jb% 32A,6A +relaid ,ri'leId Hc%,Hd% 2 +relapse rI'l&ps I2%,K6% 22A,3A +relapsed rI'l&pst Ic%,Id% 22A,3A +relapses rI'l&psIz Ia%,Kj% 32A,3A +relapsing rI'l&psIN Ib% 32A,3A +relate rI'leIt J2% 23A,6A,14 +related rI'leItId Jc%,Jd% 33A,6A,14 +relates rI'leIts Ja% 23A,6A,14 +relating rI'leItIN Jb% 33A,6A,14 +relation rI'leISn M6% 3 +relations rI'leISnz Mj% 3 +relationship rI'leISnSIp M6% 4 +relationships rI'leISnSIps Mj% 4 +relative 'rel@tIv K6%,OA% 3 +relatively 'rel@tIvlI Pu% 4 +relatives 'rel@tIvz Kj% 3 +relativity ,rel@'tIvItI L@% 5 +relax rI'l&ks J1% 22A,2C,6A +relaxation ,ril&k'seISn M6% 4 +relaxations ,ril&k'seISnz Mj% 4 +relaxed rI'l&kst Jc%,Jd% 22A,2C,6A +relaxes rI'l&ksIz Ja% 32A,2C,6A +relaxing rI'l&ksIN Jb% 32A,2C,6A +relay 'rileI K6% 2 +relay ,ri'leI H5$ 2 +relay rI'leI H0% 2 +relayed rI'leId Hc%,Hd% 2 +relaying ,ri'leIIN Hb$ 3 +relaying rI'leIIN Hb% 3 +relays 'rileIz Kj% 2 +relays ,ri'leIz Ha$ 2 +relays rI'leIz Ha% 2 +release rI'lis H2%,M6% 26A,14 +released rI'list Hc%,Hd% 26A,14 +releases rI'lisIz Ha%,Mj% 36A,14 +releasing rI'lisIN Hb% 36A,14 +relegate 'relIgeIt H2% 314 +relegated 'relIgeItId Hc%,Hd% 414 +relegates 'relIgeIts Ha% 314 +relegating 'relIgeItIN Hb% 414 +relegation ,relI'geISn L@% 4 +relent rI'lent I0% 22A +relented rI'lentId Ic%,Id% 32A +relenting rI'lentIN Ib% 32A +relentless rI'lentl@s OA% 3 +relentlessly rI'lentl@slI Pu% 4 +relents rI'lents Ia% 22A +relevance 'rel@v@ns K6% 3 +relevancy 'rel@v@nsI L@$ 4 +relevant 'rel@v@nt OA% 3 +relevantly 'rel@v@ntlI Pu% 4 +reliability rI,laI@'bIlItI L@% 6 +reliable rI'laI@bl OA% 4 +reliably rI'laI@blI Pu% 4 +reliance rI'laI@ns L@% 3 +reliant rI'laI@nt OA% 3 +relic 'relIk K6% 2 +relics 'relIks Kj% 2 +relict 'relIkt K6$ 2 +relicts 'relIkts Kj$ 2 +relied rI'laId Ic%,Id% 23A +relief rI'lif M6% 2 +reliefs rI'lifs Mj% 2 +relies rI'laIz Ia% 23A +relieve rI'liv H2% 26A +relieved rI'livd Hc%,Hd% 26A +relieves rI'livz Ha% 26A +relieving rI'livIN Hb% 36A +religion rI'lIdZ@n M6% 3 +religions rI'lIdZ@nz Mj% 3 +religious rI'lIdZ@s K9%,OA% 3 +religiously rI'lIdZ@slI Pu% 4 +reline ,ri'laIn H2% 2 +relined ,ri'laInd Hc%,Hd% 2 +relines ,ri'laInz Ha% 2 +relining ,ri'laInIN Hb% 3 +relinquish rI'lINkwIS H1% 36A,14 +relinquished rI'lINkwISt Hc%,Hd% 36A,14 +relinquishes rI'lINkwISIz Ha% 46A,14 +relinquishing rI'lINkwISIN Hb% 46A,14 +reliquaries 'relIkw@rIz Kj$ 4 +reliquary 'relIkw@rI K8$ 4 +relish 'relIS H1%,M7% 26A,6D +relished 'relISt Hc%,Hd% 26A,6D +relishes 'relISIz Ha%,Mj% 36A,6D +relishing 'relISIN Hb% 36A,6D +relive ,ri'lIv H2% 2 +relived ,ri'lIvd Hc%,Hd% 2 +relives ,ri'lIvz Ha% 2 +reliving ,ri'lIvIN Hb% 3 +relocate ,ril@U'keIt J2% 3 +relocated ,ril@U'keItId Jc%,Jd% 4 +relocates ,ril@U'keIts Ja% 3 +relocating ,ril@U'keItIN Jb% 4 +relocation ,ril@U'keISn L@% 4 +reluctance rI'lVkt@ns L@% 3 +reluctant rI'lVkt@nt OA% 3 +reluctantly rI'lVkt@ntlI Pu% 4 +rely rI'laI I3% 23A +relying rI'laIIN Ib% 33A +remade ,ri'meId Hc%,Hd% 2 +remain rI'meIn I0% 22A,2B,2C,4A +remainder rI'meInd@R K6% 3 +remainders rI'meInd@z Kj% 3 +remained rI'meInd Ic%,Id% 22A,2B,2C,4A +remaining rI'meInIN Ib% 32A,2B,2C,4A +remains rI'meInz Ia%,Kj% 22A,2B,2C,4A +remake 'rimeIk K6% 2 +remake ,ri'meIk H5% 2 +remakes 'rimeIks Kj% 2 +remakes ,ri'meIks Ha% 2 +remaking ,ri'meIkIN Hb% 3 +remand rI'mAnd H0%,L@% 26A +remanded rI'mAndId Hc%,Hd% 36A +remanding rI'mAndIN Hb% 36A +remands rI'mAndz Ha% 26A +remark rI'mAk J0%,M6% 23A,6A,9,10 +remarkable rI'mAk@bl OA% 4 +remarkably rI'mAk@blI Pu% 4 +remarked rI'mAkt Jc%,Jd% 23A,6A,9,10 +remarking rI'mAkIN Jb% 33A,6A,9,10 +remarks rI'mAks Ja%,Mj% 23A,6A,9,10 +remarriage ,ri'm&rIdZ K6% 3 +remarriages ,ri'm&rIdZIz Kj% 4 +remarried ,ri'm&rId Jc%,Jd% 3 +remarries ,ri'm&rIz Ja% 3 +remarry ,ri'm&rI J3% 3 +remarrying ,ri'm&rIIN Jb% 4 +remediable rI'midI@bl OA% 5 +remedial rI'midI@l OA% 4 +remedied 'rem@dId Hc%,Hd% 36A +remedies 'rem@dIz Ha%,Mj% 36A +remedy 'rem@dI H3%,M8% 36A +remedying 'rem@dIIN Hb% 46A +remember rI'memb@R J0% 36A,6C,7A,8,9,10,14,16B,19C +remembered rI'memb@d Jc%,Jd% 36A,6C,7A,8,9,10,14,16B,19C +remembering rI'memb@rIN Jb% 46A,6C,7A,8,9,10,14,16B,19C +remembers rI'memb@z Ja% 36A,6C,7A,8,9,10,14,16B,19C +remembrance rI'membr@ns M6% 3 +remembrances rI'membr@nsIz Mj% 4 +remilitarization ,ri,mIlIt@raI'zeISn M6% 7 +remilitarizations ,ri,mIlIt@raI'zeISnz Mj$ 7 +remilitarize ,ri'mIlIt@raIz H2% 56A +remilitarized ,ri'mIlIt@raIzd Hc%,Hd% 56A +remilitarizes ,ri'mIlIt@raIzIz Ha% 66A +remilitarizing ,ri'mIlIt@raIzIN Hb% 66A +remind rI'maInd H0% 26A,11,14,17,20,21 +reminded rI'maIndId Hc%,Hd% 36A,11,14,17,20,21 +reminder rI'maInd@R K6% 3 +reminders rI'maInd@z Kj% 3 +reminding rI'maIndIN Hb% 36A,11,14,17,20,21 +reminds rI'maIndz Ha% 26A,11,14,17,20,21 +reminisce ,remI'nIs I2% 32A,3A +reminisced ,remI'nIst Ic%,Id% 32A,3A +reminiscence ,remI'nIsns M6% 4 +reminiscences ,remI'nIsnsIz Mj% 5 +reminiscent ,remI'nIsnt OA% 4 +reminiscently ,remI'nIsntlI Pu% 5 +reminisces ,remI'nIsIz Ia% 42A,3A +reminiscing ,remI'nIsIN Ib% 42A,3A +remiss rI'mIs OA% 2 +remission rI'mISn M6% 3 +remissions rI'mISnz Mj% 3 +remissness rI'mIsn@s L@% 3 +remit rI'mIt J4% 22C,6A,12A,13A,14 +remits rI'mIts Ja% 22C,6A,12A,13A,14 +remittance rI'mItns M6% 3 +remittances rI'mItnsIz Mj% 4 +remitted rI'mItId Jc%,Jd% 32C,6A,12A,13A,14 +remittent rI'mItnt OA$ 3 +remitting rI'mItIN Jb% 32C,6A,12A,13A,14 +remnant 'remn@nt K6% 2 +remnants 'remn@nts Kj% 2 +remodel ri'm0dl H4% 32A,6A,14,15A +remodelled ri'm0dld Hc%,Hd% 32A,6A,14,15A +remodelling ri'm0d@lIN Hb% 42A,6A,14,15A +remodels ri'm0dlz Ha% 32A,6A,14,15A +remonstrance rI'm0nstr@ns M6$ 3 +remonstrances rI'm0nstr@nsIz Mj$ 4 +remonstrate 'rem@nstreIt I2% 32A,3A +remonstrated 'rem@nstreItId Ic%,Id% 42A,3A +remonstrates 'rem@nstreIts Ia% 32A,3A +remonstrating 'rem@nstreItIN Ib% 42A,3A +remorse rI'mOs L@% 2 +remorseful rI'mOsf@l OA% 3 +remorsefully rI'mOsf@lI Pu% 4 +remorseless rI'mOsl@s OA% 3 +remorselessly rI'mOsl@slI Pu% 4 +remote rI'm@Ut OB% 2 +remotely rI'm@UtlI Pu% 3 +remoteness rI'm@Utn@s L@% 3 +remoter rI'm@Ut@R Or% 3 +remotest rI'm@UtIst Os% 3 +remould ri'm@Uld H0% 22A,6A,14 +remoulded ri'm@UldId Hc%,Hd% 32A,6A,14 +remoulding ri'm@UldIN Hb% 32A,6A,14 +remoulds ri'm@Uldz Ha% 22A,6A,14 +remount 'rimaUnt K6% 2 +remount ,ri'maUnt J0% 22A,6A +remounted ,ri'maUntId Jc%,Jd% 32A,6A +remounting ,ri'maUntIN Jb% 32A,6A +remounts 'rimaUnts Kj$ 2 +remounts ,ri'maUnts Ja% 22A,6A +removable rI'muv@bl OA% 4 +removal rI'muv@l M6% 3 +removals rI'muv@lz Mj% 3 +remove rI'muv J2%,K6% 22A,2C,6A,14 +removed rI'muvd Jc%,Jd%,OA% 22A,2C,6A,14 +remover rI'muv@R K6% 3 +removers rI'muv@z Kj% 3 +removes rI'muvz Ja%,Kj% 22A,2C,6A,14 +removing rI'muvIN Jb% 32A,2C,6A,14 +remunerate rI'mjun@reIt H2% 46A,14 +remunerated rI'mjun@reItId Hc%,Hd% 56A,14 +remunerates rI'mjun@reIts Ha% 46A,14 +remunerating rI'mjun@reItIN Hb% 56A,14 +remuneration rI,mjun@'reISn L@% 5 +remunerative rI'mjun@r@tIv OA% 5 +renaissance rI'neIsns K6% 3 +renaissances rI'neIsnsIz Kj$ 4 +renal 'rinl OA% 2 +rename ,ri'neIm H2% 26A +renamed ,ri'neImd Hc%,Hd% 26A +renames ,ri'neImz Ha% 26A +renaming ,ri'neImIN Hb% 36A +renascence rI'n&sns K6$ 3 +renascences rI'n&snsIz Kj$ 4 +renascent rI'n&snt OA$ 3 +rend rend H5% 16A,14,15A +render 'rend@R H0% 26A,12A,13A,14,15A,15B,22 +rendered 'rend@d Hc%,Hd% 26A,12A,13A,14,15A,15B,22 +rendering 'rend@rIN Hb%,M6% 36A,12A,13A,14,15A,15B,22 +renderings 'rend@rINz Mj% 3 +renders 'rend@z Ha% 26A,12A,13A,14,15A,15B,22 +rendezvoued 'r0ndIvud Ic$,Id$ 32A,2C +rendezvouing 'r0ndIvuIN Ib$ 42A,2C +rendezvous 'r0ndIvu I5%,K9% 32A,2C +rendezvous 'r0ndIvuz Ia$ 32A,2C +rending 'rendIN Hb% 26A,14,15A +rendition ren'dISn K6% 3 +renditions ren'dISnz Kj% 3 +rends rendz Ha% 16A,14,15A +renegade 'renIgeId I2$,K6% 3 +renegaded 'renIgeIdId Ic$,Id$ 4 +renegades 'renIgeIdz Ia$,Kj% 3 +renegading 'renIgeIdIN Ib$ 4 +renege rI'neIg I2% 23A +reneged rI'neIgd Ic%,Id% 23A +reneges rI'neIgz Ia% 23A +reneging rI'neIgIN Ib% 33A +renegue rI'neIg I2$ 23A +renegued rI'neIgd Ic$,Id$ 23A +renegues rI'neIgz Ia$ 23A +reneguing rI'neIgIN Ib$ 33A +renew rI'nju H0% 26A +renewable rI'nju@bl OA% 4 +renewal rI'nju@l M6% 3 +renewals rI'nju@lz Mj% 3 +renewed rI'njud Hc%,Hd% 26A +renewing rI'njuIN Hb% 36A +renews rI'njuz Ha% 26A +rennet 'renIt L@% 2 +renounce rI'naUns H2% 26A +renounced rI'naUnst Hc%,Hd% 26A +renounces rI'naUnsIz Ha% 36A +renouncing rI'naUnsIN Hb% 36A +renovate 'ren@veIt H2% 36A +renovated 'ren@veItId Hc%,Hd% 46A +renovates 'ren@veIts Ha% 36A +renovating 'ren@veItIN Hb% 46A +renovation ,ren@'veISn M6% 4 +renovations ,ren@'veISnz Mj% 4 +renovator 'ren@veIt@R K6% 4 +renovators 'ren@veIt@z Kj% 4 +renown rI'naUn L@% 2 +renowned rI'naUnd OA% 2 +rent rent Hc%,Hd%,J0%,M6% 12A,2C,6A,14,15A +rent-collector 'rent-k@,lekt@R K6% 4 +rent-collectors 'rent-k@,lekt@z Kj% 4 +rent-free rent-'fri OA%,Pu% 2 +rent-rebate 'rent-ribeIt M6% 3 +rent-rebates 'rent-ribeIts Mj% 3 +rent-roll 'rent-r@Ul K6$ 2 +rent-rolls 'rent-r@Ulz Kj$ 2 +rentable 'rent@bl OA% 3 +rental 'rentl K6% 2 +rentals 'rentlz Kj% 2 +rented 'rentId Jc%,Jd% 22A,2C,6A,14,15A +rentier 'rAntIeI K6$ 3 +rentiers 'rAntIeIz Kj$ 3 +renting 'rentIN Jb% 22A,2C,6A,14,15A +rents rents Ja%,Mj% 12A,2C,6A,14,15A +renunciation rI,nVnsI'eISn L@% 5 +reopen ri'@Up@n J0% 32A,6A +reopened ri'@Up@nd Jc%,Jd% 32A,6A +reopening ri'@Up@nIN Jb% 42A,6A +reopens ri'@Up@nz Ja% 32A,6A +reorganization ri,Og@naI'zeISn M6% 6 +reorganizations ri,Og@naI'zeISnz Mj% 6 +reorganize ri'Og@naIz J2% 4 +reorganized ri'Og@naIzd Jc%,Jd% 4 +reorganizes ri'Og@naIzIz Ja% 5 +reorganizing ri'Og@naIzIN Jb% 5 +reorient ri'OrI@nt J0% 4 +reorientate ri'OrI@nteIt J2% 5 +reorientated ri'OrI@nteItId Jc%,Jd% 6 +reorientates ri'OrI@nteIts Ja% 5 +reorientating ri'OrI@nteItIN Jb% 6 +reorientation ri,OrIen'teISn L@% 6 +reoriented ri'OrI@ntId Jc%,Jd% 5 +reorienting ri'OrI@ntIN Jb% 5 +reorients ri'OrI@nts Ja% 4 +rep rep M6% 1 +repaid rI'peId Jc%,Jd% 22A,6A,14 +repaint ri'peInt H0% 22A,2C,6A,15A,15B,22 +repainted ri'peIntId Hc%,Hd% 32A,2C,6A,15A,15B,22 +repainting ri'peIntIN Hb% 32A,2C,6A,15A,15B,22 +repaints ri'peInts Ha% 22A,2C,6A,15A,15B,22 +repair rI'pe@R J0%,M6% 23A,6A +repairable rI'pe@r@bl OA% 4 +repaired rI'pe@d Jc%,Jd% 23A,6A +repairer rI'pe@r@R K6% 3 +repairers rI'pe@r@z Kj% 3 +repairing rI'pe@rIN Jb% 33A,6A +repairs rI'pe@z Ja%,Mj% 23A,6A +reparable 'rep@r@bl OA$ 4 +reparation ,rep@'reISn M6% 4 +reparations ,rep@'reISnz Mj% 4 +repartee ,repA'ti M6% 3 +repartees ,repA'tiz Mj$ 3 +repast rI'pAst K6% 2 +repasts rI'pAsts Kj% 2 +repatriate ri'p&trIeIt H2%,K6% 46A +repatriated ri'p&trIeItId Hc%,Hd% 56A +repatriates ri'p&trIeIts Ha%,Kj% 46A +repatriating ri'p&trIeItIN Hb% 56A +repatriation ,rip&trI'eISn M6% 5 +repatriations ,rip&trI'eISnz Mj% 5 +repay rI'peI J5% 22A,6A,14 +repayable rI'peI@bl OA% 4 +repaying rI'peIIN Jb% 32A,6A,14 +repayment rI'peIm@nt M6% 3 +repayments rI'peIm@nts Mj% 3 +repays rI'peIz Ja% 22A,6A,14 +repeal rI'pil H0%,K6% 26A +repealed rI'pild Hc%,Hd% 26A +repealing rI'pilIN Hb% 36A +repeals rI'pilz Ha%,Kj% 26A +repeat rI'pit J0%,K6% 22A,6A,9 +repeatable rI'pit@bl OA% 4 +repeated rI'pitId Jc%,Jd%,OA% 32A,6A,9 +repeatedly rI'pitIdlI Pu% 4 +repeater rI'pit@R K6% 3 +repeaters rI'pit@z Kj% 3 +repeating rI'pitIN Jb% 32A,6A,9 +repeats rI'pits Ja%,Kj% 22A,6A,9 +repel rI'pel H4% 26A +repelled rI'peld Hc%,Hd% 26A +repellent rI'pel@nt L@%,OA% 3 +repelling rI'pelIN Hb% 36A +repels rI'pelz Ha% 26A +repent rI'pent J0% 22A,3A,6A,6D +repentance rI'pent@ns L@% 3 +repentant rI'pent@nt OA% 3 +repentantly rI'pent@ntlI Pu% 4 +repented rI'pentId Jc%,Jd% 32A,3A,6A,6D +repenting rI'pentIN Jb% 32A,3A,6A,6D +repents rI'pents Ja% 22A,3A,6A,6D +repercussion ,rip@'kVSn M6% 4 +repercussions ,rip@'kVSnz Mj% 4 +repertoire 'rep@twAR K6% 3 +repertoires 'rep@twAz Kj% 3 +repertories 'rep@trIz Kj$ 3 +repertory 'rep@trI K8% 3 +repetition ,repI'tISn M6% 4 +repetitions ,repI'tISnz Mj% 4 +repetitious ,repI'tIS@s OA% 4 +repetitive rI'pet@tIv OA% 4 +repetitively rI'pet@tIvlI Pu% 5 +repine rI'paIn I2$ 22A,3A +repined rI'paInd Ic$,Id$ 22A,3A +repines rI'paInz Ia$ 22A,3A +repining rI'paInIN Ib$ 32A,3A +replace rI'pleIs H2% 26A,14,15A +replaceable rI'pleIs@bl OA% 4 +replaced rI'pleIst Hc%,Hd% 26A,14,15A +replacement rI'pleIsm@nt M6% 3 +replacements rI'pleIsm@nts Mj% 3 +replaces rI'pleIsIz Ha% 36A,14,15A +replacing rI'pleIsIN Hb% 36A,14,15A +replant ri'plAnt H0% 26A,15A,15B +replanted ri'plAntId Hc%,Hd% 36A,15A,15B +replanting ri'plAntIN Hb% 36A,15A,15B +replants ri'plAnts Ha% 26A,15A,15B +replay 'ripleI K6% 2 +replay ,ri'pleI H0% 26A +replayed ,ri'pleId Hc%,Hd% 26A +replaying ,ri'pleIIN Hb% 36A +replays 'ripleIz Kj% 2 +replays ,ri'pleIz Ha% 26A +replenish rI'plenIS H1% 36A,14 +replenished rI'plenISt Hc%,Hd% 36A,14 +replenishes rI'plenISIz Ha% 46A,14 +replenishing rI'plenISIN Hb% 46A,14 +replenishment rI'plenISm@nt M6% 4 +replenishments rI'plenISm@nts Mj% 4 +replete rI'plit OA% 2 +repletion rI'pliSn L@$ 3 +replica 'replIk@ K6% 3 +replicas 'replIk@z Kj% 3 +replied rI'plaId Jc%,Jd% 22A,3A,3B +replies rI'plaIz Ja%,Kj% 22A,3A,3B +reply rI'plaI J3%,K8% 22A,3A,3B +reply-paid rI'plaI-peId OA% 3 +replying rI'plaIIN Jb% 32A,3A,3B +repoint ri'poInt H0$ 26A +repointed ri'poIntId Hc$,Hd% 36A +repointing ri'poIntIN Hb$ 36A +repoints ri'poInts Ha$ 26A +report rI'pOt J0%,M6% 22A,3A,6A,6D,9,14,15A,15B,25 +reportable rI'pOt@bl OA% 4 +reportage ,repO'tAZ L@$ 3 +reported rI'pOtId Jc%,Jd% 32A,3A,6A,6D,9,14,15A,15B,25 +reportedly rI'pOtIdlI Pu% 4 +reporter rI'pOt@R K6% 3 +reporters rI'pOt@z Kj% 3 +reporting rI'pOtIN Jb% 32A,3A,6A,6D,9,14,15A,15B,25 +reports rI'pOts Ja%,Mj% 22A,3A,6A,6D,9,14,15A,15B,25 +repose rI'p@Uz J2%,L@% 22A,2C,3A,6A,14,15A +reposed rI'p@Uzd Jc%,Jd% 22A,2C,3A,6A,14,15A +reposeful rI'p@Uzf@l OA$ 3 +reposes rI'p@UzIz Ja% 32A,2C,3A,6A,14,15A +reposing rI'p@UzIN Jb% 32A,2C,3A,6A,14,15A +repositories rI'p0zItrIz Kj% 4 +repository rI'p0zItrI K8% 4 +repot ,ri'p0t H4% 2 +repots ,ri'p0ts Ha% 2 +repotted ,ri'p0tId Hc%,Hd% 3 +repotting ,ri'p0tIN Hb% 3 +repp rep L@$ 1 +reprehend ,reprI'hend H0% 36A +reprehended ,reprI'hendId Hc%,Hd% 46A +reprehending ,reprI'hendIN Hb% 46A +reprehends ,reprI'hendz Ha% 36A +reprehensible ,reprI'hens@bl OA% 5 +reprehensibly ,reprI'hens@blI Pu% 5 +represent ,reprI'zent H0% 36A,9,14,16A,25 +represent ,riprI'zent H0% 3 +representation ,reprIzen'teISn M6% 5 +representations ,reprIzen'teISnz Mj% 5 +representative ,reprI'zent@tIv K6%,OA% 5 +representatives ,reprI'zent@tIvz Kj% 5 +represented ,reprI'zentId Hc%,Hd% 46A,9,14,16A,25 +represented ,riprI'zentId Hc%,Hd% 4 +representing ,reprI'zentIN Hb% 46A,9,14,16A,25 +representing ,riprI'zentIN Hb$ 4 +represents ,reprI'zents Ha% 36A,9,14,16A,25 +represents ,riprI'zents Ha$ 3 +repress rI'pres H1% 26A +repressed rI'prest Hc%,Hd%,OA% 26A +represses rI'presIz Ha% 36A +repressing rI'presIN Hb% 36A +repression rI'preSn M6% 3 +repressions rI'preSnz Mj$ 3 +repressive rI'presIv OA% 3 +reprieve rI'priv H2%,K6% 26A +reprieved rI'privd Hc%,Hd% 26A +reprieves rI'privz Ha%,Kj% 26A +reprieving rI'privIN Hb% 36A +reprimand 'reprImAnd H0%,K6% 36A +reprimanded 'reprImAndId Hc%,Hd% 46A +reprimanding 'reprImAndIN Hb% 46A +reprimands 'reprImAndz Ha%,Kj% 36A +reprint 'riprInt K6% 2 +reprint ,ri'prInt H0% 26A +reprinted ,ri'prIntId Hc%,Hd% 36A +reprinting ,ri'prIntIN Hb% 36A +reprints 'riprInts Kj% 2 +reprints ,ri'prInts Ha% 26A +reprisal rI'praIzl M6% 3 +reprisals rI'praIzlz Mj% 3 +reproach rI'pr@UtS H1%,M7% 26A,14 +reproached rI'pr@UtSt Hc%,Hd% 26A,14 +reproaches rI'pr@UtSIz Ha%,Mj% 36A,14 +reproachful rI'pr@UtSf@l OA% 3 +reproachfully rI'pr@UtSf@lI Pu% 4 +reproaching rI'pr@UtSIN Hb% 36A,14 +reprobate 'repr@beIt H2$,K6% 36A +reprobated 'repr@beItId Hc$,Hd$ 46A +reprobates 'repr@beIts Ha$,Kj% 36A +reprobating 'repr@beItIN Hb$ 46A +reprobation ,repr@'beISn L@$ 4 +reproduce ,ripr@'djus J2% 32A,6A +reproduced ,ripr@'djust Jc%,Jd% 32A,6A +reproducer ,ripr@'djus@R K6% 4 +reproducers ,ripr@'djus@z Kj% 4 +reproduces ,ripr@'djusIz Ja% 42A,6A +reproducible ,ripr@'djus@bl OA% 5 +reproducing ,ripr@'djusIN Jb% 42A,6A +reproduction ,ripr@'dVkSn M6% 4 +reproductions ,ripr@'dVkSnz Mj% 4 +reproductive ,ripr@'dVktIv OA% 4 +reproof ,ri'pruf H0% 26A +reproof rI'pruf M6% 2 +reproofed ,ri'pruft Hc%,Hd% 26A +reproofing ,ri'prufIN Hb% 36A +reproofs ,ri'prufs Ha% 26A +reproofs rI'prufs Mj% 2 +reprove rI'pruv H2% 26A,14 +reproved rI'pruvd Hc%,Hd% 26A,14 +reproves rI'pruvz Ha% 26A,14 +reproving rI'pruvIN Hb% 36A,14 +reprovingly rI'pruvINlI Pu% 4 +reps reps L@$,Mj% 1 +reptile 'reptaIl K6% 2 +reptiles 'reptaIlz Kj% 2 +reptilian rep'tIlI@n K6$,OA% 4 +reptilians rep'tIlI@nz Kj$ 4 +republic rI'pVblIk K6% 3 +republican rI'pVblIk@n K6%,OA% 4 +republicanism rI'pVblIk@nIz@m L@% 6 +republicans rI'pVblIk@nz Kj% 4 +republics rI'pVblIks Kj% 3 +repudiate rI'pjudIeIt H2% 46A +repudiated rI'pjudIeItId Hc%,Hd% 56A +repudiates rI'pjudIeIts Ha% 46A +repudiating rI'pjudIeItIN Hb% 56A +repudiation rI,pjudI'eISn K6% 5 +repudiations rI,pjudI'eISnz Kj% 5 +repugnance rI'pVgn@ns L@% 3 +repugnant rI'pVgn@nt OA% 3 +repulse rI'pVls H2%,K6% 26A +repulsed rI'pVlst Hc%,Hd% 26A +repulses rI'pVlsIz Ha%,Kj% 36A +repulsing rI'pVlsIN Hb% 36A +repulsion rI'pVlSn L@% 3 +repulsive rI'pVlsIv OA% 3 +repulsively rI'pVlsIvlI Pu% 4 +reputable 'repjUt@bl OA% 4 +reputably 'repjUt@blI Pu% 4 +reputation ,repjU'teISn M6% 4 +reputations ,repjU'teISnz Mj% 4 +repute rI'pjut H2$,L@% 225 +reputed rI'pjutId Hc$,Hd%,Oq% 325 +reputedly rI'pjutIdlI Pu% 4 +reputes rI'pjuts Ha$ 225 +reputing rI'pjutIN Hb$ 325 +request rI'kwest H0%,M6% 26A,9,17 +requested rI'kwestId Hc%,Hd% 36A,9,17 +requesting rI'kwestIN Hb% 36A,9,17 +requests rI'kwests Ha%,Mj% 26A,9,17 +requiem 'rekwI@m K6% 3 +requiems 'rekwI@mz Kj% 3 +require rI'kwaI@R H2% 26A,6D,9,14,17 +required rI'kwaI@d Hc%,Hd% 26A,6D,9,14,17 +requirement rI'kwaI@m@nt K6% 3 +requirements rI'kwaI@m@nts Kj% 3 +requires rI'kwaI@z Ha% 26A,6D,9,14,17 +requiring rI'kwaI@rIN Hb% 36A,6D,9,14,17 +requisite 'rekwIzIt K6%,OA% 3 +requisites 'rekwIzIts Kj% 3 +requisition ,rekwI'zISn H0%,M6% 46A,14 +requisitioned ,rekwI'zISnd Hc%,Hd% 46A,14 +requisitioning ,rekwI'zISnIN Hb% 56A,14 +requisitions ,rekwI'zISnz Ha%,Mj% 46A,14 +requital rI'kwaItl L@% 3 +requite rI'kwaIt H2$ 26A,14 +requited rI'kwaItId Hc$,Hd% 36A,14 +requites rI'kwaIts Ha$ 26A,14 +requiting rI'kwaItIN Hb$ 36A,14 +reran 'rir&n Hc% 2 +reread ri'red Hc%,Hd% 22A,2B,2C,6A,12A,13A,15A,15B,16B +reread ri'rid H5% 22A,2B,2C,6A,12A,13A,15A,15B,16B +rereading ri'ridIN Hb% 32A,2B,2C,6A,12A,13A,15A,15B,16B +rereads ri'ridz Ha% 22A,2B,2C,6A,12A,13A,15A,15B,16B +reredos 'rI@d0s K7$ 3 +reredoses 'rI@d0sIz Kj$ 4 +rerun 'rirVn H5%,Hd%,K6% 2 +rerunning 'rirVnIN Hb% 3 +reruns 'rirVnz Ha%,Kj% 2 +res rez Y>$ 1 +rescind rI'sInd H0% 26A +rescinded rI'sIndId Hc%,Hd% 36A +rescinding rI'sIndIN Hb% 36A +rescinds rI'sIndz Ha% 26A +rescript 'riskrIpt K6$ 2 +rescripts 'riskrIpts Kj$ 2 +rescue 'reskju H2%,M6% 26A,14 +rescued 'reskjud Hc%,Hd% 26A,14 +rescuer 'reskju@R K6% 3 +rescuers 'reskju@z Kj% 3 +rescues 'reskjuz Ha%,Mj% 26A,14 +rescuing 'reskjuIN Hb% 36A,14 +research rI's3tS I1%,M7% 22A,3A +researched rI's3tSt Ic%,Id% 22A,3A +researcher rI's3tS@R K6% 3 +researchers rI's3tS@z Kj% 3 +researches rI's3tSIz Ia%,Mj% 32A,3A +researching rI's3tSIN Ib% 32A,3A +reseat ,ri'sit H0% 26A +reseated ,ri'sitId Hc%,Hd% 36A +reseating ,ri'sitIN Hb% 36A +reseats ,ri'sits Ha% 26A +reseed ri'sid H0$ 22A,6A +reseeded ri'sidId Hc%,Hd% 32A,6A +reseeding ri'sidIN Hb$ 32A,6A +reseeds ri'sidz Ha$ 22A,6A +resell ri'sel H5% 22A,2C,6A,12A,13A,15B +reselling ri'selIN Hb% 32A,2C,6A,12A,13A,15B +resells ri'selz Ha% 22A,2C,6A,12A,13A,15B +resemblance rI'zembl@ns M6% 3 +resemblances rI'zembl@nsIz Mj% 4 +resemble rI'zembl H2% 36B +resembled rI'zembld Hc%,Hd% 36B +resembles rI'zemblz Ha% 36B +resembling rI'zemblIN Hb% 36B +resent rI'zent H0% 26A,6C,19C +resented rI'zentId Hc%,Hd% 36A,6C,19C +resentful rI'zentf@l OA% 3 +resentfully rI'zentf@lI Pu% 4 +resenting rI'zentIN Hb% 36A,6C,19C +resentment rI'zentm@nt L@% 3 +resents rI'zents Ha% 26A,6C,19C +reservation ,rez@'veISn M6% 4 +reservations ,rez@'veISnz Mj% 4 +reserve rI'z3v H2%,M6% 26A,14 +reserved rI'z3vd Hc%,Hd%,OA% 26A,14 +reservedly rI'z3vIdlI Pu% 4 +reserves rI'z3vz Ha%,Mj% 26A,14 +reserving rI'z3vIN Hb% 36A,14 +reservist rI'z3vIst K6% 3 +reservists rI'z3vIsts Kj% 3 +reservoir 'rez@vwAR K6% 3 +reservoirs 'rez@vwAz Kj% 3 +reset ,ri'set H5%,Hc%,Hd% 26A +resets ,ri'sets Ha% 26A +resetting ,ri'setIN Hb% 36A +resettle ,ri'setl J2% 32A,6A +resettled ,ri'setld Jc%,Jd% 32A,6A +resettlement ,ri'setlm@nt K6% 4 +resettlements ,ri'setlm@nts Kj% 4 +resettles ,ri'setlz Ja% 32A,6A +resettling ,ri'setlIN Jb% 32A,6A +reshape ri'SeIp H2% 22A,2C,6A,15A +reshaped ri'SeIpt Hb% 22A,2C,6A,15A +reshapes ri'SeIps Ha% 22A,2C,6A,15A +reshaping ri'SeIpIN Hb% 32A,2C,6A,15A +reshuffle ,ri'SVfl H2%,K6% 36A +reshuffled ,ri'SVfld Hc%,Hd% 36A +reshuffles ,ri'SVflz Ha%,Kj% 36A +reshuffling ,ri'SVflIN Hb% 36A +reside rI'zaId I2% 22C,3A +resided rI'zaIdId Ic%,Id% 32C,3A +residence 'rezId@ns M6% 3 +residences 'rezId@nsIz Mj% 4 +residencies 'rezId@nsIz Kj$ 4 +residency 'rezId@nsI K8$ 4 +resident 'rezId@nt K6%,OA% 3 +residential ,rezI'denSl OA% 4 +residents 'rezId@nts Kj% 3 +resides rI'zaIdz Ia% 22C,3A +residing rI'zaIdIN Ib% 32C,3A +residual rI'zIdjU@l OA% 4 +residuary rI'zIdjU@rI OA% 5 +residue 'rezIdju K6% 3 +residues 'rezIdjuz Kj% 3 +resign rI'zaIn J0% 22A,3A,6A,14 +resignation ,rezIg'neISn M6% 4 +resignations ,rezIg'neISnz Mj% 4 +resigned rI'zaInd Jc%,Jd%,OA% 22A,3A,6A,14 +resignedly rI'zaIn@dlI Pu% 4 +resigning rI'zaInIN Jb% 32A,3A,6A,14 +resigns rI'zaInz Ja% 22A,3A,6A,14 +resilience rI'zIlI@ns L@% 4 +resiliency rI'zIlI@nsI L@$ 5 +resilient rI'zIlI@nt OA% 4 +resin 'rezIn M6% 2 +resinated 'rezIneItId OA$ 4 +resinous 'rezIn@s OA% 3 +resins 'rezInz Mj% 2 +resist rI'zIst J0% 22A,6A,6C +resistance rI'zIst@ns M6% 3 +resistances rI'zIst@nsIz Mj% 4 +resistant rI'zIst@nt OA% 3 +resisted rI'zIstId Jc%,Jd% 32A,6A,6C +resister rI'zIst@R K6$ 3 +resisters rI'zIst@z Kj$ 3 +resisting rI'zIstIN Jb% 32A,6A,6C +resistive rI'zIstIv OA$ 3 +resistivity ,rezIs'tIvItI L@$ 5 +resistless rI'zIstl@s OA$ 3 +resistor rI'zIst@R K6$ 3 +resistors rI'zIst@z Kj$ 3 +resists rI'zIsts Ja% 22A,6A,6C +resold ri's@Uld Hc%,Hd% 22A,2C,6A,12A,13A,15B +resole ,ri's@Ul H2% 26A +resoled ,ri's@Uld Hc%,Hd% 26A +resoles ,ri's@Ulz Ha% 26A +resoling ,ri's@UlIN Hb% 36A +resolute 'rez@lut OA% 3 +resolutely 'rez@lutlI Pu% 4 +resoluteness 'rez@lutn@s L@% 4 +resolution ,rez@'luSn M6% 4 +resolutions ,rez@'luSnz Mj% 4 +resolvable rI'z0lv@bl OA% 4 +resolve rI'z0lv J2%,K6% 23A,6A,7A,9,14 +resolved rI'z0lvd Jc%,Jd% 23A,6A,7A,9,14 +resolves rI'z0lvz Ja%,Kj% 23A,6A,7A,9,14 +resolving rI'z0lvIN Jb% 33A,6A,7A,9,14 +resonance 'rez@n@ns L@% 3 +resonant 'rez@n@nt OA% 3 +resonate 'rez@neIt J2% 3 +resonated 'rez@neItId Jc%,Jd% 4 +resonates 'rez@neIts Ja% 3 +resonating 'rez@neItIN Jb% 4 +resonator 'rez@neIt@R K6% 4 +resonators 'rez@neIt@z Kj% 4 +resort rI'zOt I0%,M6% 23A +resorted rI'zOtId Ic%,Id% 33A +resorting rI'zOtIN Ib% 33A +resorts rI'zOts Ia%,Mj% 23A +resound rI'zaUnd J0% 22A,2C,3A +resounded rI'zaUndId Jc%,Jd% 32A,2C,3A +resounding rI'zaUndIN Jb% 32A,2C,3A +resoundingly rI'zaUndINlI Pu% 4 +resounds rI'zaUndz Ja% 22A,2C,3A +resource rI'zOs M6% 2 +resourceful rI'zOsf@l OA% 3 +resourcefully rI'zOsf@lI Pu% 4 +resourceless rI'zOslIs OA% 3 +resources rI'zOsIz Mj% 3 +respect rI'spekt H0%,M6% 26A +respectabilities rI,spekt@'bIlItIz Mj% 6 +respectability rI,spekt@'bIlItI M8% 6 +respectable rI'spekt@bl OA% 4 +respectably rI'spekt@blI Pu% 4 +respected rI'spektId Hc%,Hd% 36A +respecter rI'spekt@R K6% 3 +respecters rI'spekt@z Kj% 3 +respectful rI'spektf@l OA% 3 +respectfully rI'spektf@lI Pu% 4 +respecting rI'spektIN Hb%,T-% 36A +respective rI'spektIv OA% 3 +respectively rI'spektIvlI Pu% 4 +respects rI'spekts Ha%,Mj% 26A +respiration ,resp@'reISn M6% 4 +respirations ,resp@'reISnz Mj$ 4 +respirator 'resp@reIt@R K6% 4 +respirators 'resp@reIt@z Kj% 4 +respiratory rI'spIr@trI OA% 4 +respire rI'spaI@R I2$ 22A +respired rI'spaI@d Ic$,Id$ 22A +respires rI'spaI@z Ia$ 22A +respiring rI'spaI@rIN Ib$ 32A +respite 'respaIt H2$,M6% 26A +respited 'respaItId Hc$,Hd$ 36A +respites 'respaIts Ha$,Mj$ 26A +respiting 'respaItIN Hb$ 36A +resplendence rI'splend@ns L@% 3 +resplendency rI'splend@nsI L@$ 4 +resplendent rI'splend@nt OA% 3 +resplendently rI'splend@ntlI Pu% 4 +respond rI'sp0nd I0% 22A,2C,3A,3B +responded rI'sp0ndId Ic%,Id% 32A,2C,3A,3B +respondent rI'sp0nd@nt K6% 3 +respondents rI'sp0nd@nts Kj% 3 +responding rI'sp0ndIN Ib% 32A,2C,3A,3B +responds rI'sp0ndz Ia% 22A,2C,3A,3B +response rI'sp0ns M6% 2 +responses rI'sp0nsIz Mj% 3 +responsibilities rI,sp0ns@'bIlItIz Mj% 6 +responsibility rI,sp0ns@'bIlItI M8% 6 +responsible rI'sp0ns@bl OA% 4 +responsibly rI'sp0ns@blI Pu% 4 +responsive rI'sp0nsIv OA% 3 +responsiveness rI'sp0nsIvnIs L@% 4 +rest rest J0%,M6% 12A,2B,2C,2D,3A,6A,14 +rest-cure 'rest-kjU@R K6% 2 +rest-cures 'rest-kjU@z Kj% 2 +rest-day 'rest-deI K6% 2 +rest-days 'rest-deIz Kj% 2 +rest-home 'rest-h@Um K6% 2 +rest-homes 'rest-h@Umz Kj% 2 +rest-house 'rest-haUs K6% 2 +rest-houses 'rest-haUzIz Kj% 3 +restart ri'stAt J0% 22A,2C,3A,6A,6D,7A,15A,19B +restarted ri'stAtId Jc%,Jd% 32A,2C,3A,6A,6D,7A,15A,19B +restarting ri'stAtIN Jb% 32A,2C,3A,6A,6D,7A,15A,19B +restarts ri'stAts Ja% 22A,2C,3A,6A,6D,7A,15A,19B +restate ,ri'steIt H2% 26A +restated ,ri'steItId Hc%,Hd% 36A +restatement ,ri'steItm@nt K6% 3 +restatements ,ri'steItm@nts Kj% 3 +restates ,ri'steIts Ha% 26A +restating ,ri'steItIN Hb% 36A +restaurant 'restr0nt K6% 2 +restauranteur ,restr0n't3R K6$ 3 +restauranteurs ,restr0n't3z Kj$ 3 +restaurants 'restr0nts Kj% 2 +restaurateur ,rest@r@'t3R K6% 4 +restaurateurs ,rest@r@'t3z Kj% 4 +rested 'restId Jc%,Jd% 22A,2B,2C,2D,3A,6A,14 +restful 'restf@l OA% 2 +restfully 'restf@lI Pu% 3 +restfulness 'restf@ln@s L@% 3 +resting 'restIN Jb% 22A,2B,2C,2D,3A,6A,14 +restitution ,restI'tjuSn L@% 4 +restive 'restIv OA% 2 +restively 'restIvlI Pu% 3 +restiveness 'restIvn@s L@% 3 +restless 'restl@s OA% 2 +restlessly 'restl@slI Pu% 3 +restlessness 'restl@sn@s L@% 3 +restock ,ri'st0k H0% 26A +restocked ,ri'st0kt Hc%,Hd% 26A +restocking ,ri'st0kIN Hb% 36A +restocks ,ri'st0ks Ha% 26A +restoration ,rest@'reISn M6% 4 +restorations ,rest@'reISnz Mj% 4 +restorative rI'stOr@tIv M6%,OA% 4 +restoratives rI'stOr@tIvz Mj% 4 +restore rI'stOR H2% 26A,14 +restored rI'stOd Hc%,Hd% 26A,14 +restorer rI'stOr@R K6% 3 +restorers rI'stOr@z Kj% 3 +restores rI'stOz Ha% 26A,14 +restoring rI'stOrIN Hb% 36A,14 +restrain rI'streIn H0% 26A,14 +restrained rI'streInd Hc%,Hd%,OA% 26A,14 +restraining rI'streInIN Hb% 36A,14 +restrains rI'streInz Ha% 26A,14 +restraint rI'streInt M6% 2 +restraints rI'streInts Mj% 2 +restrict rI'strIkt H0% 26A,14 +restricted rI'strIktId Hc%,Hd% 36A,14 +restricting rI'strIktIN Hb% 36A,14 +restriction rI'strIkSn M6% 3 +restrictions rI'strIkSnz Mj% 3 +restrictive rI'strIktIv OA% 3 +restrictively rI'strIktIvlI Pu% 4 +restrictiveness rI'strIktIvnIs L@% 4 +restricts rI'strIkts Ha% 26A,14 +restructure ,ri'strVktS@R H2% 36A +restructured ,ri'strVktS@d Hc%,Hd% 36A +restructures ,ri'strVktS@z Ha% 36A +restructuring ,ri'strVktS@rIN Hb% 46A +rests rests Ja%,Mj% 12A,2B,2C,2D,3A,6A,14 +result rI'zVlt I0%,M6% 22A,3A +resultant rI'sVlt@nt OA% 3 +resulted rI'zVltId Ic%,Id% 32A,3A +resulting rI'zVltIN Ib% 32A,3A +results rI'zVlts Ia%,Mj% 22A,3A +resume rI'zjum H2% 26A,6D +resumed rI'zjumd Hc%,Hd% 26A,6D +resumes rI'zjumz Ha% 26A,6D +resuming rI'zjumIN Hb% 36A,6D +resumption rI'zVmpSn M6% 3 +resumptions rI'zVmpSnz Mj$ 3 +resurface ,ri's3fIs J2% 32A,6A +resurfaced ,ri's3fIst Jc%,Jd% 32A,6A +resurfaces ,ri's3fIsIz Ja% 42A,6A +resurfacing ,ri's3fIsIN Jb% 42A,6A +resurgence rI's3dZ@ns K6% 3 +resurgences rI's3dZ@nsIz Kj$ 4 +resurgent rI's3dZ@nt OA% 3 +resurrect ,rez@'rekt J0% 32A,6A +resurrected ,rez@'rektId Jc%,Jd% 42A,6A +resurrecting ,rez@'rektIN Jb% 42A,6A +resurrection ,rez@'rekSn L@% 4 +resurrects ,rez@'rekts Ja% 32A,6A +resuscitate rI'sVsIteIt J2% 42A,6A +resuscitated rI'sVsIteItId Jc%,Jd% 52A,6A +resuscitates rI'sVsIteIts Ja% 42A,6A +resuscitating rI'sVsIteItIN Jb% 52A,6A +resuscitation rI,sVsI'teISn M6% 5 +resuscitations rI,sVsI'teISnz Mj$ 5 +ret rI'taI@d Y~% 3 +ret ret H4$ 16A +retail 'riteIl J0%,K6%,Pu% 23A,6A +retailed 'riteIld Jc%,Jd% 23A,6A +retailer 'riteIl@R K6% 3 +retailers 'riteIl@z Kj% 3 +retailing 'riteIlIN Jb% 33A,6A +retails 'riteIlz Ja%,Kj% 23A,6A +retain rI'teIn H0% 26A +retained rI'teInd Hc%,Hd% 26A +retainer rI'teIn@R K6% 3 +retainers rI'teIn@z Kj% 3 +retaining rI'teInIN Hb% 36A +retains rI'teInz Ha% 26A +retake 'riteIk K6% 2 +retake ,ri'teIk H5% 26A +retaken ,ri'teIk@n Hd% 36A +retakes 'riteIks Kj% 2 +retakes ,ri'teIks Ha% 26A +retaking ,ri'teIkIN Hb% 36A +retaliate rI't&lIeIt I2% 42A,3A +retaliated rI't&lIeItId Ic%,Id% 52A,3A +retaliates rI't&lIeIts Ia% 42A,3A +retaliating rI't&lIeItIN Ib% 52A,3A +retaliation rI,t&lI'eISn L@% 5 +retaliative rI't&lI@tIv OA$ 5 +retaliatory rI't&lI@trI OA% 5 +retard rI'tAd H0% 26A +retardation ,ritA'deISn M6% 4 +retardations ,ritA'deISnz Mj$ 4 +retarded rI'tAdId Hc%,Hd% 36A +retarding rI'tAdIN Hb% 36A +retards rI'tAdz Ha% 26A +retch retS I1% 12A +retched retSt Ic%,Id% 12A +retches 'retSIz Ia% 22A +retching 'retSIN Ib% 22A +retd rI'taI@d Y~% 3 +retell ,ri'tel H5% 26A +retelling ,ri'telIN Hb% 36A +retells ,ri'telz Ha% 26A +retention rI'tenSn L@% 3 +retentive rI'tentIv OA% 3 +retentively rI'tentIvlI Pu% 4 +retentiveness rI'tentIvn@s L@% 4 +rethink 'riTINk K6% 2 +rethink ,ri'TINk J5% 22A,6A +rethinking ,ri'TINkIN Jb% 32A,6A +rethinks 'riTINks Kj% 2 +rethinks ,ri'TINks Ja% 22A,6A +rethought ,ri'TOt Jc%,Jd% 22A,6A +reticence 'retIsns M6% 3 +reticences 'retIsnsIz Mj$ 4 +reticent 'retIsnt OA% 3 +reticently 'retIsntlI Pu% 4 +reticulate rI'tIkjUl@t OA$ 4 +reticulate rI'tIkjUleIt J2$ 42A,6A +reticulated rI'tIkjUleItId Jc$,Jd$ 52A,6A +reticulates rI'tIkjUleIts Ja$ 42A,6A +reticulating rI'tIkjUleItIN Jb$ 52A,6A +reticulation rI,tIkjU'leISn K6$ 5 +reticulations rI,tIkjU'leISnz Kj$ 5 +reticule 'retIkjul K6$ 3 +reticules 'retIkjulz Kj$ 3 +retina 'retIn@ K6% 3 +retinae 'retIni Kj$ 3 +retinal 'retIn@l OA$ 3 +retinas 'retIn@z Kj% 3 +retinue 'retInju K6% 3 +retinues 'retInjuz Kj% 3 +retire rI'taI@R J2%,Ki% 22A,2C,3A,6A +retired rI'taI@d Jc%,Jd%,OA% 22A,2C,3A,6A +retirement rI'taI@m@nt M6% 3 +retirements rI'taI@m@nts Mj% 3 +retires rI'taI@z Ja% 22A,2C,3A,6A +retiring rI'taI@rIN Jb%,OA% 32A,2C,3A,6A +retold ,ri't@Uld Hc%,Hd% 26A +retook ,ri'tUk Hc% 26A +retool ,ri'tul H0$ 26A +retooled ,ri'tuld Hc$,Hd$ 26A +retooling ,ri'tulIN Hb$ 36A +retools ,ri'tulz Ha$ 26A +retort rI'tOt J0%,M6% 22A,6A,9,14 +retorted rI'tOtId Jc%,Jd% 32A,6A,9,14 +retorting rI'tOtIN Jb% 32A,6A,9,14 +retorts rI'tOts Ja%,Mj% 22A,6A,9,14 +retouch ,ri'tVtS H1% 26A +retouched ,ri'tVtSt Hc%,Hd% 26A +retouches ,ri'tVtSIz Ha% 36A +retouching ,ri'tVtSIN Hb% 36A +retrace ri'treIs H2% 26A +retraced ri'treIst Hc%,Hd% 26A +retraces ri'treIsIz Ha% 36A +retracing ri'treIsIN Hb% 36A +retract rI'tr&kt J0% 22A,6A +retractable rI'tr&kt@bl OA% 4 +retracted rI'tr&ktId Jc%,Jd% 32A,6A +retractile rI'tr&ktaIl OA$ 3 +retracting rI'tr&ktIN Jb% 32A,6A +retraction rI'tr&kSn M6% 3 +retractions rI'tr&kSnz Mj% 3 +retracts rI'tr&kts Ja% 22A,6A +retransmit ,ritr&nz'mIt H4% 36A,14 +retransmits ,ritr&nz'mIts Ha% 36A,14 +retransmitted ,ritr&nz'mItId Hc%,Hd% 46A,14 +retransmitting ,ritr&nz'mItIN Hb% 46A,14 +retread 'ritred K6% 2 +retread ,ri'tred H0$ 2 +retreaded ,ri'tredId Hc$,Hd$ 3 +retreading ,ri'tredIN Hb$ 3 +retreads 'ritredz Kj% 2 +retreads ,ri'tredz Ha$ 2 +retreat rI'trit I0%,M6% 22A,2C,3A +retreated rI'tritId Ic%,Id% 32A,2C,3A +retreating rI'tritIN Ib% 32A,2C,3A +retreats rI'trits Ia%,Mj% 22A,2C,3A +retrench rI'trentS J1% 22A,6A +retrenched rI'trentSt Jc%,Jd% 22A,6A +retrenches rI'trentSIz Ja% 32A,6A +retrenching rI'trentSIN Jb% 32A,6A +retrenchment rI'trentSm@nt M6% 3 +retrenchments rI'trentSm@nts Mj$ 3 +retrial ,ri'traI@l K6% 3 +retrials ,ri'traI@lz Kj% 3 +retribution ,retrI'bjuSn L@% 4 +retributive rI'trIbjUtIv OA% 4 +retrievable rI'triv@bl OA% 4 +retrieval rI'triv@l L@% 3 +retrieve rI'triv J2% 22A,6A,14 +retrieved rI'trivd Jc%,Jd% 22A,6A,14 +retriever rI'triv@R K6% 3 +retrievers rI'triv@z Kj% 3 +retrieves rI'trivz Ja% 22A,6A,14 +retrieving rI'trivIN Jb% 32A,6A,14 +retroactive ,retr@U'&ktIv OA% 4 +retroactively ,retr@U'&ktIvlI Pu% 5 +retrograde 'retr@greId I2$,OA% 32A +retrograded 'retr@greIdId Ic$,Id$ 42A +retrogrades 'retr@greIdz Ia$ 32A +retrograding 'retr@greIdIN Ib$ 42A +retrogress ,retr@'gres I1$ 32A +retrogressed ,retr@'grest Ic$,Id$ 32A +retrogresses ,retr@'gresIz Ia$ 42A +retrogressing ,retr@'gresIN Ib$ 42A +retrogression ,retr@'greSn M6$ 4 +retrogressions ,retr@'greSnz Mj$ 4 +retrogressive ,retr@'gresIv OA% 4 +retrorocket 'retr@Ur0kIt K6% 4 +retrorockets 'retr@Ur0kIts Kj% 4 +retrospect 'retr@spekt L@% 3 +retrospection ,retr@'spekSn M6% 4 +retrospections ,retr@'spekSnz Mj$ 4 +retrospective ,retr@'spektIv OA% 4 +retrospectively ,retr@'spektIvlI Pu% 5 +retrouss_e r@'truseI OA% 3 +retroversion ,retr@U'v3Sn M6$ 4 +retroversions ,retr@U'v3Snz Mj$ 4 +rets rets Ha$ 16A +retsina ret'sin@ L@% 3 +retted 'retId Hc$,Hd$ 26A +retting 'retIN Hb$ 26A +return rI't3n J0%,M6% 22A,2C,3A,4A,6A,12A,13A,15A,16A +returnable rI't3n@bl OA% 4 +returned rI't3nd Jc%,Jd% 22A,2C,3A,4A,6A,12A,13A,15A,16A +returning rI't3nIN Jb% 32A,2C,3A,4A,6A,12A,13A,15A,16A +returns rI't3nz Ja%,Mj% 22A,2C,3A,4A,6A,12A,13A,15A,16A +reunification ri,junIfI'keISn L@% 6 +reunion ,ri'junI@n M6% 3 +reunions ,ri'junI@nz Mj% 3 +reunite ,riju'naIt J2% 32A,6A +reunited ,riju'naItId Jc%,Jd% 42A,6A +reunites ,riju'naIts Ja% 32A,6A +reuniting ,riju'naItIN Jb% 42A,6A +rev rev J4%,K6% 12A,2C,6A,15B +revaluation ,riv&lju'eISn M6% 5 +revaluations ,riv&lju'eISnz Mj% 5 +revalue ri'v&lju H2% 36A +revalued ri'v&ljud Hc%,Hd% 36A +revalues ri'v&ljuz Ha% 36A +revaluing ri'v&ljuIN Hb% 46A +revamp ,ri'v&mp H0% 26A +revamped ,ri'v&mpt Hc%,Hd% 26A +revamping ,ri'v&mpIN Hb% 36A +revamps ,ri'v&mps Ha% 26A +reveal rI'vil H0% 26A,9,14,25 +revealed rI'vild Hc%,Hd% 26A,9,14,25 +revealing rI'vilIN Hb% 36A,9,14,25 +reveals rI'vilz Ha% 26A,9,14,25 +reveille rI'v&lI K6% 3 +reveilles rI'v&lIz Kj% 3 +revel 'rev@l I4%,M6% 22A,2B,2C,3A,15B +revelation ,rev@'leISn M6% 4 +revelations ,rev@'leISnz Mj% 4 +revelled 'rev@ld Ic%,Id% 22A,2B,2C,3A,15B +reveller 'rev@l@R K6% 3 +revellers 'rev@l@z Kj% 3 +revelling 'rev@lIN Ib% 32A,2B,2C,3A,15B +revelries 'rev@lrIz Mj% 3 +revelry 'rev@lrI M8% 3 +revels 'rev@lz Ia%,Mj% 22A,2B,2C,3A,15B +revenge rI'vendZ H2%,L@% 26A +revenged rI'vendZd Hc%,Hd% 26A +revengeful rI'vendZf@l OA% 3 +revengefully rI'vendZf@lI Pu% 4 +revenges rI'vendZIz Ha% 36A +revenging rI'vendZIN Hb% 36A +revenue 'rev@nju M6% 3 +revenues 'rev@njuz Mj% 3 +reverberant rI'v3b@r@nt OA$ 4 +reverberate rI'v3b@reIt J2% 42A,6A +reverberated rI'v3b@reItId Jc%,Jd% 52A,6A +reverberates rI'v3b@reIts Ja% 42A,6A +reverberating rI'v3b@reItIN Jb% 52A,6A +reverberation rI,v3b@'reISn M6% 5 +reverberations rI,v3b@'reISnz Mj% 5 +revere rI'vI@R H2% 26A +revered rI'vI@d Hc%,Hd% 26A +reverence 'rev@r@ns H2%,L@% 36A +reverenced 'rev@r@nst Hc%,Hd% 36A +reverences 'rev@r@nsIz Ha% 46A +reverencing 'rev@r@nsIN Hb% 46A +reverend 'rev@r@nd K6%,OA% 3 +reverends 'rev@r@ndz Kj% 3 +reverent 'rev@r@nt OA% 3 +reverential ,rev@'renSl OA% 4 +reverentially ,rev@'renS@lI Pu% 5 +reverently 'rev@r@ntlI Pu% 4 +reveres rI'vI@z Ha% 26A +reverie 'rev@rI M6% 3 +reveries 'rev@rIz Mj% 3 +revering rI'vI@rIN Hb% 36A +revers rI'vI@R Ki$ 2 +revers rI'vI@z Kj$ 2 +reversal rI'v3sl M6% 3 +reversals rI'v3slz Mj% 3 +reverse rI'v3s J2%,M6%,OA% 22A,6A +reversed rI'v3st Jc%,Jd% 22A,6A +reversely rI'v3slI Pu$ 3 +reverses rI'v3sIz Ja%,Mj% 32A,6A +reversibility rI,v3s@'bIlItI L@% 6 +reversible rI'v3s@bl OA% 4 +reversing rI'v3sIN Jb% 32A,6A +reversion rI'v3Sn M6% 3 +reversionary rI'v3Sn@rI OA$ 4 +reversions rI'v3Snz Mj$ 3 +revert rI'v3t I0% 22A,3A +reverted rI'v3tId Ic%,Id% 32A,3A +revertible rI'v3t@bl OA$ 4 +reverting rI'v3tIN Ib% 32A,3A +reverts rI'v3ts Ia% 22A,3A +revetment rI'vetm@nt K6$ 3 +revetments rI'vetm@nts Kj$ 3 +review rI'vju J0%,M6% 22A,2C,6A +reviewed rI'vjud Jc%,Jd% 22A,2C,6A +reviewer rI'vju@R K6% 3 +reviewers rI'vju@z Kj% 3 +reviewing rI'vjuIN Jb% 32A,2C,6A +reviews rI'vjuz Ja%,Mj% 22A,2C,6A +revile rI'vaIl J2% 23A,6A +reviled rI'vaIld Jc%,Jd% 23A,6A +reviles rI'vaIlz Ja% 23A,6A +reviling rI'vaIlIN Jb% 33A,6A +revise rI'vaIz H2%,K6% 26A +revised rI'vaIzd Hc%,Hd% 26A +reviser rI'vaIz@R K6% 3 +revisers rI'vaIz@z Kj% 3 +revises rI'vaIzIz Ha%,Kj% 36A +revising rI'vaIzIN Hb% 36A +revision rI'vIZn M6% 3 +revisionism rI'vIZ@nIz@m L@% 5 +revisionist rI'vIZ@nIst K6% 4 +revisionists rI'vIZ@nIsts Kj% 4 +revisions rI'vIZnz Mj% 3 +revisit ri'vIzIt H0% 32C,3A,6A,14 +revisited ri'vIzItId Hc%,Hd% 42C,3A,6A,14 +revisiting ri'vIzItIN Hb% 42C,3A,6A,14 +revisits ri'vIzIts Ha% 32C,3A,6A,14 +revitalization ,ri,vaIt@laI'zeISn M6% 6 +revitalizations ,ri,vaIt@laI'zeISnz Mj$ 6 +revitalize ri'vaIt@laIz H2% 4 +revitalized ri'vaIt@laIzd Hc%,Hd% 4 +revitalizes ri'vaIt@laIzIz Ha% 5 +revitalizing ri'vaIt@laIzIN Hb% 5 +revival rI'vaIvl M6% 3 +revivalist rI'vaIv@lIst K6% 4 +revivalists rI'vaIv@lIsts Kj% 4 +revivals rI'vaIvlz Mj% 3 +revive rI'vaIv J2% 22A,6A +revived rI'vaIvd Jc%,Jd% 22A,6A +revives rI'vaIvz Ja% 22A,6A +revivified ri'vIvIfaId Hc%,Hd% 4 +revivifies ri'vIvIfaIz Ha% 4 +revivify ri'vIvIfaI H3% 4 +revivifying ri'vIvIfaIIN Hb% 5 +reviving rI'vaIvIN Jb% 32A,6A +revocable 'rev@k@bl OA$ 4 +revocation ,rev@'keISn M6% 4 +revocations ,rev@'keISnz Mj% 4 +revoke rI'v@Uk J2%,K6% 22A,6A +revoked rI'v@Ukt Jc%,Jd% 22A,6A +revokes rI'v@Uks Ja%,Kj% 22A,6A +revoking rI'v@UkIN Jb% 32A,6A +revolt rI'v@Ult J0%,M6% 22A,3A,6A +revolted rI'v@UltId Jc%,Jd% 32A,3A,6A +revolting rI'v@UltIN Jb%,OA% 32A,3A,6A +revoltingly rI'v@UltINlI Pu% 4 +revolts rI'v@Ults Ja%,Mj% 22A,3A,6A +revolution ,rev@'luSn M6% 4 +revolutionaries ,rev@'luS@n@rIz Kj% 6 +revolutionary ,rev@'luS@nrI K6%,OA% 5 +revolutionize ,rev@'luS@naIz H2% 56A +revolutionized ,rev@'luS@naIzd Hc%,Hd% 56A +revolutionizes ,rev@'luS@naIzIz Ha% 66A +revolutionizing ,rev@'luS@naIzIN Hb% 66A +revolutions ,rev@'luSnz Mj% 4 +revolve rI'v0lv J2% 22A,3A,6A +revolved rI'v0lvd Jc%,Jd% 22A,3A,6A +revolver rI'v0lv@R K6% 3 +revolvers rI'v0lv@z Kj% 3 +revolves rI'v0lvz Ja% 22A,3A,6A +revolving rI'v0lvIN Jb% 32A,3A,6A +revs revz Ja%,Kj% 12A,2C,6A,15B +revue rI'vju M6% 2 +revues rI'vjuz Mj% 2 +revulsion rI'vVlSn L@% 3 +revved revd Jc%,Jd% 12A,2C,6A,15B +revving 'revIN Jb% 22A,2C,6A,15B +reward rI'wOd H0%,M6% 26A,14 +rewarded rI'wOdId Hc%,Hd% 36A,14 +rewarding rI'wOdIN Hb% 36A,14 +rewards rI'wOdz Ha%,Mj% 26A,14 +rewire ,ri'waI@R H2% 2 +rewired ,ri'waI@d Hc%,Hd% 2 +rewires ,ri'waI@z Ha% 2 +rewiring ,ri'waI@rIN Hb% 3 +reword ,ri'w3d H0% 26A +reworded ,ri'w3dId Hc%,Hd% 36A +rewording ,ri'w3dIN Hb% 36A +rewords ,ri'w3dz Ha% 26A +rewrite 'riraIt K6% 2 +rewrite ,ri'raIt H5% 26A +rewrites 'riraIts Kj% 2 +rewrites ,ri'raIts Ha% 26A +rewriting ,ri'raItIN Hb% 36A +rewritten ,ri'rIt@n Hd% 36A +rewrote ,ri'r@Ut Hc% 26A +rhapsodies 'r&ps@dIz Kj% 3 +rhapsodize 'r&ps@daIz I2% 32A,3A +rhapsodized 'r&ps@daIzd Ic%,Id% 32A,3A +rhapsodizes 'r&ps@daIzIz Ia% 42A,3A +rhapsodizing 'r&ps@daIzIN Ib% 42A,3A +rhapsody 'r&ps@dI K8% 3 +rhea rI@ K6$ 2 +rheas rI@z Kj$ 2 +rheostat 'ri@st&t K6% 3 +rheostats 'ri@st&ts Kj% 3 +rhesus 'ris@s K7% 2 +rhesuses 'ris@sIz Kj$ 3 +rhetoric 'ret@rIk L@% 3 +rhetorical rI't0rIkl OA% 4 +rhetorically rI't0rIklI Pu% 4 +rhetorician ,ret@'rISn K6% 4 +rhetoricians ,ret@'rISnz Kj% 4 +rheum rum L@$ 1 +rheumatic ru'm&tIk K6%,OA% 3 +rheumatics ru'm&tIks Kj% 3 +rheumatism 'rum@tIz@m L@% 4 +rheumatoid 'rum@toId OA% 3 +rhinal 'raInl OA$ 2 +rhino 'raIn@U K6% 2 +rhinoceros raI'n0s@r@s K9% 4 +rhinoceroses raI'n0s@r@sIz Kj% 5 +rhinos 'raIn@Uz Kj% 2 +rhizome 'raIz@Um K6$ 2 +rhizomes 'raIz@Umz Kj$ 2 +rhododendron ,r@Ud@'dendr@n K6% 4 +rhododendrons ,r@Ud@'dendr@nz Kj% 4 +rhomb r0m K6$ 1 +rhomboid 'r0mboId K6$,OA$ 2 +rhomboids 'r0mboIdz Kj$ 2 +rhombs r0mz Kj$ 1 +rhombus 'r0mb@s K7% 2 +rhombuses 'r0mb@sIz Kj% 3 +rhubarb 'rubAb L@% 2 +rhyme raIm J2%,M6% 12A,3A,6A +rhymed raImd Jc%,Jd%,OA% 12A,3A,6A +rhymes raImz Ja%,Mj% 12A,3A,6A +rhymester 'raImst@R K6$ 2 +rhymesters 'raImst@z Kj$ 2 +rhyming 'raImIN Jb% 22A,3A,6A +rhythm 'rID@m M6% 2 +rhythmic 'rIDmIk OA% 2 +rhythmical 'rIDmIkl OA% 3 +rhythmically 'rIDmIklI Pu% 3 +rhythms 'rID@mz Mj% 2 +rib rIb H4%,K6% 16A +ribald 'rIb@ld K6$,OA% 2 +ribaldry 'rIb@ldrI L@% 3 +ribalds 'rIb@ldz Kj$ 2 +riband 'rIb@nd K6% 2 +ribands 'rIb@ndz Kj$ 2 +ribbed rIbd Hc%,Hd% 16A +ribbing 'rIbIN Hb% 26A +ribbon 'rIb@n M6% 2 +ribbons 'rIb@nz Mj% 2 +riboflavin ,raIb@U'fleIvIn L@% 4 +ribs rIbz Ha%,Kj% 16A +rice raIs L@% 1 +rice-paper 'raIs-peIp@R L@% 3 +rich rItS OC% 1 +richer 'rItS@R Or% 2 +riches 'rItSIz Kj% 2 +richest 'rItSIst Os% 2 +richly 'rItSlI Pu% 2 +richness 'rItSn@s L@% 2 +rick rIk H0%,K6% 16A +ricked rIkt Hc%,Hd% 16A +rickets 'rIkIts Lk% 2 +rickety 'rIk@tI OA% 3 +ricking 'rIkIN Hb% 26A +ricks rIks Ha%,Kj% 16A +rickshaw 'rIkSO K6% 2 +rickshaws 'rIkSOz Kj% 2 +ricochet 'rIk@SeI J0%,M6% 32A,6A +ricocheted 'rIk@SeId Jc%,Jd% 32A,6A +ricocheting 'rIk@SeIIN Jb$ 42A,6A +ricochets 'rIk@SeIz Ja%,Mj% 32A,6A +ricochetted 'rIk@SeId Jc$,Jd$ 32A,6A +ricochetting 'rIk@SeIIN Jb$ 42A,6A +rid rId H5%,Hc%,Hd% 114 +riddance 'rIdns L@% 2 +ridden 'rIdn Jd% 22A,2B,2C,2D,3A,4A,6A,15A +ridding 'rIdIN Hb% 214 +riddle 'rIdl H2%,K6% 26A,14 +riddled 'rIdld Hc%,Hd% 26A,14 +riddles 'rIdlz Ha%,Kj% 26A,14 +riddling 'rIdlIN Hb% 26A,14 +ride raId J5%,K6% 12A,2B,2C,2D,3A,4A,6A,15A +rider 'raId@R K6% 2 +riderless 'raId@l@s OA% 3 +riders 'raId@z Kj% 2 +rides raIdz Ja%,Kj% 12A,2B,2C,2D,3A,4A,6A,15A +ridge rIdZ H2%,K6% 16A +ridge-tile 'rIdZ-taIl K6% 2 +ridge-tiles 'rIdZ-taIlz Kj% 2 +ridged rIdZd Hc%,Hd% 16A +ridgepole 'rIdZp@Ul K6% 2 +ridgepoles 'rIdZp@Ulz Kj% 2 +ridges 'rIdZIz Ha%,Kj% 26A +ridging 'rIdZIN Hb% 26A +ridicule 'rIdIkjul H2%,K6% 3 +ridiculed 'rIdIkjuld Hc%,Hd% 3 +ridicules 'rIdIkjulz Ha%,Kj% 3 +ridiculing 'rIdIkjulIN Hb% 4 +ridiculous rI'dIkjUl@s OA% 4 +ridiculously rI'dIkjUl@slI Pu% 5 +riding 'raIdIN Jb%,M6% 22A,2B,2C,2D,3A,4A,6A,15A +riding-breeches 'raIdIN-brItSIz Kj% 4 +riding-habit 'raIdIN-h&bIt K6% 4 +riding-habits 'raIdIN-h&bIts Kj$ 4 +riding-lamp 'raIdIN-l&mp K6% 3 +riding-lamps 'raIdIN-l&mps Kj% 3 +riding-light 'raIdIN-laIt K6% 3 +riding-lights 'raIdIN-laIts Kj% 3 +riding-master 'raIdIN-mAst@R K6% 4 +riding-masters 'raIdIN-mAst@z Kj% 4 +riding-school 'raIdIN-skul K6% 3 +riding-schools 'raIdIN-skulz Kj% 3 +ridings 'raIdINz Mj% 2 +rids rIdz Ha% 114 +rife raIf Op% 1 +riff rIf K6$ 1 +riff-raff 'rIf-r&f Mi% 2 +riffle 'rIfl J2$ 23A,6A +riffled 'rIfld Jc$,Jd$ 23A,6A +riffles 'rIflz Ja$ 23A,6A +riffling 'rIflIN Jb$ 23A,6A +riffs rIfs Kj$ 1 +rifle 'raIf@l H2%,K6% 26A +rifle-range 'raIfl-reIndZ K6% 3 +rifle-ranges 'raIfl-reIndZIz Kj% 4 +rifle-shot 'raIfl-S0t K6% 3 +rifle-shots 'raIfl-S0ts Kj% 3 +rifled 'raIf@ld Hc%,Hd% 26A +rifleman 'raIflm@n Ki% 3 +riflemen 'raIflm@n Kj% 3 +rifles 'raIf@lz Ha%,Kj% 26A +rifling 'raIflIN Hb% 26A +rift rIft K6% 1 +rift-valley rIft-'v&lI K6% 3 +rift-valleys rIft-'v&lIz Kj% 3 +rifts rIfts Kj% 1 +rig rIg J4%,K6% 12A,2C,6A,14,15B +rigged rIgd Jc%,Jd% 12A,2C,6A,14,15B +rigger 'rIg@R K6$ 2 +riggers 'rIg@z Kj$ 2 +rigging 'rIgIN Jb%,L@% 22A,2C,6A,14,15B +right raIt H0%,M6%,OA*,Pu* 16A +right-angled 'raIt-&Ngld OA% 3 +right-down 'raIt-daUn OA$,Pu$ 2 +right-hand 'raIt-h&nd OA% 2 +right-handed raIt-'h&ndId OA% 3 +right-hander raIt-'h&nd@R K6% 3 +right-handers raIt-'h&nd@z Kj% 3 +right-minded 'raIt-maIndId OA% 3 +right-turn raIt-'t3n K6% 2 +right-turns raIt-'t3nz Kj% 2 +right-wing raIt-'wIN K6% 2 +right-winger raIt-'wIN@R K6% 3 +right-wingers raIt-'wIN@z Kj% 3 +right-wings raIt-'wINz Kj% 2 +righted 'raItId Hc%,Hd% 26A +righteous 'raItS@s OA% 2 +righteously 'raItS@slI Pu% 3 +righteousness 'raItS@sn@s L@% 3 +rightful 'raItf@l OA% 2 +rightfully 'raItf@lI Pu% 3 +rightfulness 'raItfln@s L@$ 3 +righting 'raItIN Hb% 26A +rightist 'raItIst K6$,OA$ 2 +rightists 'raItIsts Kj$ 2 +rightly 'raItlI Pu% 2 +rightness 'raItn@s L@% 2 +rights raIts Ha%,Mj% 16A +rigid 'rIdZId OA% 2 +rigidities rI'dZIdItIz Mj% 4 +rigidity rI'dZIdItI M8% 4 +rigidly 'rIdZIdlI Pu% 3 +rigmarole 'rIgm@r@Ul M6% 3 +rigmaroles 'rIgm@r@Ulz Mj% 3 +rigor mortis ,rIg@ 'mOtIs L@% 4 +rigorous 'rIg@r@s OA% 3 +rigorously 'rIg@r@slI Pu% 4 +rigour 'rIg@R M6% 2 +rigours 'rIg@z Mj% 2 +rigout 'rIgaUt K6% 2 +rigouts 'rIgaUts Kj% 2 +rigs rIgz Ja%,Kj% 12A,2C,6A,14,15B +rile raIl H2% 16A +riled raIld Hc%,Hd% 16A +riles raIlz Ha% 16A +riling 'raIlIN Hb% 26A +rill rIl K6$ 1 +rills rIlz Kj$ 1 +rim rIm H4%,K6% 16A +rime raIm H2$,L@$ 16A +rimed raImd Hc$,Hd$ 16A +rimes raImz Ha$ 16A +riming 'raImIN Hb$ 26A +rimmed rImd Hc%,Hd% 16A +rimming 'rImIN Hb% 26A +rims rImz Ha%,Kj% 16A +rind raInd M6% 1 +rinderpest 'rInd@pest L@$ 3 +rinds raIndz Mj% 1 +ring rIN J0%,J5%,K6% 12A,2B,2C,2D,3A,6A,15A,15B +ring-armour 'rIN-Am@R L@$ 3 +ring-finger 'rIN-fINg@R K6% 3 +ring-fingers 'rIN-fINg@z Kj% 3 +ring-mail 'rIN-meIl L@$ 2 +ring-road 'rIN-r@Ud K6% 2 +ring-roads 'rIN-r@Udz Kj% 2 +ringed rINd Jc%,Jd% 12A,2B,2C,2D,3A,6A,15A,15B +ringer 'rIN@R K6% 2 +ringers 'rIN@z Kj% 2 +ringing 'rININ Jb% 22A,2B,2C,2D,3A,6A,15A,15B +ringleader 'rINlid@R K6% 3 +ringleaders 'rINlid@z Kj% 3 +ringlet 'rINlIt K6% 2 +ringlets 'rINlIts Kj% 2 +ringmaster 'rINmAst@R K6% 3 +ringmasters 'rINmAst@z Kj% 3 +rings rINz Ja%,Kj% 12A,2B,2C,2D,3A,6A,15A,15B +ringside 'rINsaId K6% 2 +ringsides 'rINsaIdz Kj$ 2 +ringworm 'rINw3m L@% 2 +rink rINk K6% 1 +rinks rINks Kj% 1 +rinse rIns H2%,K6% 16A,15A,15B +rinsed rInst Hc%,Hd% 16A,15A,15B +rinses 'rInsIz Ha%,Kj% 26A,15A,15B +rinsing 'rInsIN Hb% 26A,15A,15B +riot 'raI@t I0%,M6% 22A,2B,2C,3A +rioted 'raI@tId Ic%,Id% 32A,2B,2C,3A +rioter 'raI@t@R K6% 3 +rioters 'raI@t@z Kj% 3 +rioting 'raI@tIN Ib% 32A,2B,2C,3A +riotous 'raI@t@s OA% 3 +riotously 'raI@t@slI Pu% 4 +riots 'raI@ts Ia%,Mj% 22A,2B,2C,3A +rip rIp J4%,K6% 12A,2C,6A,15A,15B,22 +rip-off 'rIp-0f K6% 2 +rip-offs 'rIp-0fs Kj% 2 +rip-roaring 'rIp-rOrIN OA% 3 +riparian raI'pe@rI@n OA$ 4 +ripcord 'rIpkOd K6% 2 +ripcords 'rIpkOdz Kj% 2 +ripe raIp OB% 1 +ripely 'raIplI Pu% 2 +ripen 'raIp@n J0% 22A,6A +ripened 'raIp@nd Jc%,Jd% 22A,6A +ripeness 'raIpn@s L@% 2 +ripening 'raIp@nIN Jb% 32A,6A +ripens 'raIp@nz Ja% 22A,6A +riper 'raIp@R Or% 2 +ripest 'raIpIst Os% 2 +riposte rI'p0st I2$,K6% 2 +riposted rI'p0stId Ic$,Id$ 3 +ripostes rI'p0sts Ia$,Kj$ 2 +riposting rI'p0stIN Ib$ 3 +ripped rIpt Jc%,Jd% 12A,2C,6A,15A,15B,22 +ripping 'rIpIN Jb% 22A,2C,6A,15A,15B,22 +ripple 'rIpl J2%,K6% 22A,6A +rippled 'rIpld Jc%,Jd% 22A,6A +ripples 'rIplz Ja%,Kj% 22A,6A +rippling 'rIplIN Jb% 22A,6A +rips rIps Ja%,Kj% 12A,2C,6A,15A,15B,22 +ripsaw 'rIpsO K6% 2 +ripsaws 'rIpsOz Kj% 2 +riptide 'rIptaId K6$ 2 +riptides 'rIptaIdz Kj$ 2 +rise raIz I5%,K6% 12A,2B,2C,3A,4A +risen 'rIzn Id% 22A,2B,2C,3A,4A +riser 'raIz@R K6% 2 +risers 'raIz@z Kj% 2 +rises 'raIzIz Ia%,Kj% 22A,2B,2C,3A,4A +risibility ,rIz@'bIlItI L@% 5 +risible 'rIz@bl OA% 3 +rising 'raIzIN Ib%,K6% 22A,2B,2C,3A,4A +risings 'raIzINz Kj% 2 +risk rIsk H0%,M6% 16A,6D +risked rIskt Hc%,Hd% 16A,6D +riskier 'rIskI@R Or% 3 +riskiest 'rIskIIst Os% 3 +riskily 'rIskIlI Pu% 3 +riskiness 'rIskIn@s L@% 3 +risking 'rIskIN Hb% 26A,6D +risks rIsks Ha%,Mj% 16A,6D +risky 'rIskI OD% 2 +risotto rI'z0t@U M6% 3 +risottos rI'z0t@Uz Mj% 3 +risqu_e 'riskeI OA% 2 +rissole 'rIs@Ul K6% 2 +rissoles 'rIs@Ulz Kj% 2 +rite raIt K6% 1 +rites raIts Kj% 1 +ritual 'rItSU@l M6%,OA% 3 +ritualism 'rItSU@lIz@m L@$ 5 +ritualist 'rItSU@lIst K6% 4 +ritualistic ,rItSU@'lIstIk OA% 5 +ritualists 'rItSU@lIsts Kj$ 4 +rituals 'rItSU@lz Mj% 3 +ritzy 'rItsI OA% 2 +rival 'raIv@l H4%,K6% 26A,14 +rivalled 'raIv@ld Hc%,Hd% 26A,14 +rivalling 'raIv@lIN Hb% 36A,14 +rivalries 'raIv@lrIz Mj% 3 +rivalry 'raIv@lrI M8% 3 +rivals 'raIv@lz Ha%,Kj% 26A,14 +rive raIv J2$ 16A,15A,15B +rived raIvd Jc$,Jd$ 16A,15A,15B +riven 'rIvn Jd$ 26A,15A,15B +river 'rIv@R K6% 2 +river-basin ,rIv@-'beIsn K6% 4 +river-basins ,rIv@-'beIsnz Kj% 4 +river-bed 'rIv@-bed K6% 3 +river-beds 'rIv@-bedz Kj% 3 +rivers 'rIv@z Kj% 2 +riverside 'rIv@saId K6% 3 +riversides 'rIv@saIdz Kj% 3 +rives raIvz Ja$ 16A,15A,15B +rivet 'rIvIt H0%,K6% 26A,15A,15B +riveted 'rIvItId Hc%,Hd% 36A,15A,15B +riveter 'rIvIt@R K6% 3 +riveters 'rIvIt@z Kj% 3 +riveting 'rIvItIN Hb% 36A,15A,15B +rivets 'rIvIts Ha%,Kj% 26A,15A,15B +riving 'raIvIN Jb$ 26A,15A,15B +rivulet 'rIvjUlIt K6% 3 +rivulets 'rIvjUlIts Kj% 3 +rly 'reIlweI Y>$ 2 +roach r@UtS K9% 1 +roaches 'r@UtSIz Kj% 2 +road r@Ud K6* 1 +road-book 'r@Ud-bUk K6% 2 +road-books 'r@Ud-bUks Kj% 2 +road-hog 'r@Ud-h0g K6% 2 +road-hogs 'r@Ud-h0gz Kj% 2 +road-metal 'r@Ud-metl L@$ 3 +road-sense 'r@Ud-sens L@% 2 +roadbed 'r@Udbed K6% 2 +roadbeds 'r@Udbedz Kj% 2 +roadblock 'r@Udbl0k K6% 2 +roadblocks 'r@Udbl0ks Kj% 2 +roadhouse 'r@UdhaUs K6% 2 +roadhouses 'r@UdhaUzIz Kj% 3 +roadless 'r@Udl@s OA$ 2 +roadman 'r@Udm&n Ki% 2 +roadmen 'r@Udmen Kj% 2 +roadmender 'r@Udmend@R K6% 3 +roadmenders 'r@Udmend@z Kj% 3 +roads r@Udz Kj% 1 +roadside 'r@UdsaId K6% 2 +roadsides 'r@UdsaIdz Kj% 2 +roadstead 'r@Udsted K6$ 2 +roadsteads 'r@Udstedz Kj$ 2 +roadster 'r@Udst@R K6$ 2 +roadsters 'r@Udst@z Kj$ 2 +roadway 'r@UdweI K6% 2 +roadways 'r@UdweIz Kj% 2 +roadworthy 'r@Udw3DI OA% 3 +roam r@Um J0% 12A,2C,6A +roamed r@Umd Jc%,Jd% 12A,2C,6A +roaming 'r@UmIN Jb% 22A,2C,6A +roams r@Umz Ja% 12A,2C,6A +roan r@Un M6$,OA$ 1 +roans r@Unz Mj$ 1 +roar rOR J0%,K6% 12A,2C,3A,6A,15B,22 +roared rOd Jc%,Jd% 12A,2C,3A,6A,15B,22 +roaring 'rOrIN Jb%,OA%,Pu% 22A,2C,3A,6A,15B,22 +roars rOz Ja%,Kj% 12A,2C,3A,6A,15B,22 +roast r@Ust J0%,M6%,Oq% 12A,6A +roasted 'r@UstId Jc%,Jd% 22A,6A +roaster 'r@Ust@R K6% 2 +roasters 'r@Ust@z Kj% 2 +roasting 'r@UstIN Jb%,M6% 22A,6A +roastings 'r@UstINz Mj$ 2 +roasts r@Usts Ja%,Mj% 12A,6A +rob r0b H4% 16A,14 +robbed r0bd Hc%,Hd% 16A,14 +robber 'r0b@R K6% 2 +robberies 'r0b@rIz Mj% 3 +robbers 'r0b@z Kj% 2 +robbery 'r0b@rI M8% 3 +robbing 'r0bIN Hb% 26A,14 +robe r@Ub J2%,K6% 12A,6A,14 +robed r@Ubd Jc%,Jd% 12A,6A,14 +robes r@Ubz Ja%,Kj% 12A,6A,14 +robin 'r0bIn K6% 2 +robing 'r@UbIN Jb% 22A,6A,14 +robins 'r0bInz Kj% 2 +robot 'r@Ub0t K6% 2 +robots 'r@Ub0ts Kj% 2 +robs r0bz Ha% 16A,14 +robust r@U'bVst OA% 2 +robustly r@U'bVstlI Pu% 3 +robustness r@U'bVstn@s L@% 3 +roc r0k K6$ 1 +rock r0k J0%,M6% 12A,6A,15A +rock-'n-roll ,r0k-@n-'r@Ul L@% 3 +rock-bottom r0k-'b0t@m L@% 3 +rock-cake 'r0k-keIk K6% 2 +rock-cakes 'r0k-keIks Kj% 2 +rock-climbing 'r0k-klaImIN L@% 3 +rock-crystal 'r0k-krIstl K6% 3 +rock-crystals 'r0k-krIstlz Kj% 3 +rock-garden 'r0k-gAdn K6% 3 +rock-gardens 'r0k-gAdnz Kj% 3 +rock-plant 'r0k-plAnt K6% 2 +rock-plants 'r0k-plAnts Kj% 2 +rock-salmon r0k-'s&m@n K9% 3 +rock-salt 'r0k-sOlt L@% 2 +rocked r0kt Jc%,Jd% 12A,6A,15A +rocker 'r0k@R K6% 2 +rockeries 'r0k@rIz Kj% 3 +rockers 'r0k@z Kj% 2 +rockery 'r0k@rI K8% 3 +rocket 'r0kIt I0%,K6% 22A +rocket-base 'r0kIt-beIs K6% 3 +rocket-bases 'r0kIt-beIsIz Kj% 4 +rocket-range 'r0kIt-reIndZ K6% 3 +rocket-ranges 'r0kIt-reIndZIz Kj% 4 +rocketed 'r0kItId Ic%,Id% 32A +rocketing 'r0kItIN Ib% 32A +rocketry 'r0kItrI L@% 3 +rockets 'r0kIts Ia%,Kj% 22A +rockier 'r0kI@R Or% 3 +rockiest 'r0kIIst Os% 3 +rocking 'r0kIN Jb% 22A,6A,15A +rocking-chair 'r0kIN-tSe@R K6% 3 +rocking-chairs 'r0kIN-tSe@z Kj% 3 +rocking-horse 'r0kIN-hOs K6% 3 +rocking-horses 'r0kIN-hOsIz Kj% 4 +rocks r0ks Ja%,Mj% 12A,6A,15A +rocky 'r0kI OD% 2 +rococo r@'k@Uk@U OA% 3 +rocs r0ks Kj$ 1 +rod r0d K6% 1 +rode r@Ud Jc% 12A,2B,2C,2D,3A,4A,6A,15A +rodent 'r@Udnt K6% 2 +rodents 'r@Udnts Kj% 2 +rodeo r@U'deI@U K6% 3 +rodeos r@U'deI@Uz Kj% 3 +rodomontade ,r0d@m0n'teId L@$ 4 +rods r0dz Kj% 1 +roe r@U M9% 1 +roebuck 'r@UbVk K6% 2 +roebucks 'r@UbVks Kj% 2 +roes r@Uz Kj% 1 +rogation r@U'geISn K6$ 3 +rogations r@U'geISnz Kj$ 3 +roger 'r0dZ@R W-$ 2 +rogue r@Ug K6% 1 +rogue-elephant r@Ug-'elIf@nt K6% 4 +rogue-elephants r@Ug-'elIf@nts Kj% 4 +rogueries 'r@Ug@rIz Mj% 3 +roguery 'r@Ug@rI M8% 3 +rogues r@Ugz Kj% 1 +roguish 'r@UgIS OA% 2 +roguishly 'r@UgISlI Pu% 3 +roguishness 'r@UgISn@s L@% 3 +roisterer 'roIst@r@R K6% 3 +roisterers 'roIst@r@z Kj% 3 +role r@Ul K6% 1 +roles r@Ulz Kj% 1 +roll r@Ul J0%,K6% 12A,2B,2C,6A,12B,13B,14,15A,15B,22 +roll-call 'r@Ul-kOl K6% 2 +roll-calls 'r@Ul-kOlz Kj% 2 +roll-on 'r@Ul-0n K6% 2 +roll-ons 'r@Ul-0nz Kj% 2 +rolled r@Uld Jc%,Jd% 12A,2B,2C,6A,12B,13B,14,15A,15B,22 +roller 'r@Ul@R K6% 2 +roller-skate 'r@Ul@-skeIt K6% 3 +roller-skates 'r@Ul@-skeIts Kj% 3 +rollers 'r@Ul@z Kj% 2 +rollicking 'r0lIkIN OA% 3 +rolling 'r@UlIN Jb%,L@% 22A,2B,2C,6A,12B,13B,14,15A,15B,22 +rolling-mill 'r@UlIN-mIl K6% 3 +rolling-mills 'r@UlIN-mIlz Kj% 3 +rolling-pin 'r@UlIN-pIn K6% 3 +rolling-pins 'r@UlIN-pInz Kj% 3 +rolling-stock 'r@UlIN-st0k L@% 3 +rolls r@Ulz Ja%,Kj% 12A,2B,2C,6A,12B,13B,14,15A,15B,22 +roly-polies ,r@UlI-'p@UlIz Kj$ 4 +roly-poly ,r@UlI-'p@UlI K8% 4 +romance r@U'm&ns I2%,M6% 22A +romanced r@U'm&nst Ic%,Id% 22A +romances r@U'm&nsIz Ia%,Mj% 32A +romancing r@U'm&nsIN Ib% 32A +romantic r@'m&ntIk K6%,OA% 3 +romantically r@'m&ntIklI Pu% 4 +romanticism r@'m&ntIsIz@m L@% 5 +romanticist r@'m&ntIsIst K6% 4 +romanticists r@'m&ntIsIsts Kj% 4 +romanticize r@U'm&ntIsaIz J2% 42A,6A +romanticized r@U'm&ntIsaIzd Jc%,Jd% 42A,6A +romanticizes r@U'm&ntIsaIzIz Ja% 52A,6A +romanticizing r@U'm&ntIsaIzIN Jb% 52A,6A +romantics r@'m&ntIks Kj% 3 +romp r0mp I0%,K6% 12A,2C +romped r0mpt Ic%,Id% 12A,2C +romper 'r0mp@R K6% 2 +rompers 'r0mp@z Kj% 2 +romping 'r0mpIN Ib% 22A,2C +romps r0mps Ia%,Kj% 12A,2C +rondeau 'r0nd@U K6$ 2 +rondeaus 'r0nd@Uz Kj$ 2 +rondel 'r0ndl K6$ 2 +rondels 'r0ndlz Kj$ 2 +rondo 'r0nd@U K6$ 2 +rondos 'r0nd@Uz Kj$ 2 +rood rud K6$ 1 +rood-tree 'rud-tri K6$ 2 +rood-trees 'rud-triz Kj$ 2 +roods rudz Kj$ 1 +roof ruf H0%,K6% 16A,15A,15B +roof-garden 'ruf-gAdn K6% 3 +roof-gardens 'ruf-gAdnz Kj% 3 +roof-tree 'ruf-tri K6% 2 +roof-trees 'ruf-triz Kj% 2 +roofed ruft Hc%,Hd% 16A,15A,15B +roofing 'rufIN Hb%,L@% 26A,15A,15B +roofless 'rufl@s OA% 2 +roofs rufs Ha%,Kj% 16A,15A,15B +rook rUk H0$,K6% 16A +rooked rUkt Hc$,Hd$ 16A +rookeries 'rUk@rIz Kj% 3 +rookery 'rUk@rI K8% 3 +rookie 'rUkI K6% 2 +rookies 'rUkIz Kj% 2 +rooking 'rUkIN Hb$ 26A +rooks rUks Ha$,Kj% 16A +room rum I0%,M6* 12C +room-mate 'rum-meIt K6% 2 +room-mates 'rum-meIts Kj% 2 +roomed rumd Ic%,Id%,Ot% 12C +roomer 'rum@R K6$ 2 +roomers 'rum@z Kj$ 2 +roomful 'rumfUl K6% 2 +roomfuls 'rumfUlz Kj% 2 +roomier 'rumI@R Or% 3 +roomiest 'rumIIst Os% 3 +roomily 'rumIlI Pu% 3 +rooming 'rumIN Ib% 22C +rooms rumz Ia%,Mj% 12C +roomy 'rumI OD% 2 +roost rust I0%,K6% 12A +roosted 'rustId Ic%,Id% 22A +rooster 'rust@R K6% 2 +roosters 'rust@z Kj% 2 +roosting 'rustIN Ib% 22A +roosts rusts Ia%,Kj% 12A +root rut J0%,K6% 12A,2C,3A,6A,15A,15B +rooted 'rutId Jc%,Jd% 22A,2C,3A,6A,15A,15B +rooting 'rutIN Jb% 22A,2C,3A,6A,15A,15B +rootle 'rutl I2$ 22C +rootled 'rutld Ic$,Id$ 22C +rootles 'rutlz Ia$ 22C +rootless 'rutl@s OA% 2 +rootling 'rutlIN Ib$ 22C +roots ruts Ja%,Kj% 12A,2C,3A,6A,15A,15B +rope r@Up H2%,M6% 115A,15B +rope-dancer 'r@Up-dAns@R K6$ 3 +rope-dancers 'r@Up-dAns@z Kj$ 3 +rope-ladder 'r@Up-l&d@R K6% 3 +rope-ladders 'r@Up-l&d@z Kj% 3 +rope-yard 'r@Up-jAd K6$ 2 +rope-yards 'r@Up-jAdz Kj$ 2 +rope-yarn 'r@Up-jAn L@$ 2 +roped r@Upt Hc%,Hd% 115A,15B +ropes r@Ups Ha%,Mj% 115A,15B +ropewalk 'r@UpwOk K6$ 2 +ropewalker 'r@UpwOk@R K6$ 3 +ropewalkers 'r@UpwOk@z Kj$ 3 +ropewalks 'r@UpwOks Kj$ 2 +ropeway 'r@UpweI K6$ 2 +ropeways 'r@UpweIz Kj$ 2 +ropey 'r@UpI OE% 2 +ropier 'r@UpI@R Or% 3 +ropiest 'r@UpI@st Os% 3 +roping 'r@UpIN Hb% 215A,15B +rosaries 'r@Uz@rIz Kj% 3 +rosary 'r@Uz@rI K8% 3 +rose r@Uz Ic%,M6% 12A,2B,2C,3A,4A +rose-bed 'r@Uz-bed K6% 2 +rose-beds 'r@Uz-bedz Kj% 2 +rose-leaf 'r@Uz-lif Ki% 2 +rose-leaves 'r@Uz-livz Kj% 2 +rose-red 'r@Uz-red OA% 2 +rose-water 'r@Uz-wOt@R L@% 3 +roseate 'r@UzI@t OA% 3 +rosebud 'r@UzbVd K6% 2 +rosebuds 'r@UzbVdz Kj% 2 +rosemary 'r@Uzm@rI L@% 3 +roses 'r@UzIz Mj% 2 +rosette r@U'zet K6% 2 +rosettes r@U'zets Kj% 2 +rosewood 'r@UzwUd L@% 2 +rosier 'r@UzI@R Or% 3 +rosiest 'r@UzIIst Os% 3 +rosin 'r0zIn H4$,L@$ 26A +rosinned 'r0zInd Hc$,Hd$ 26A +rosinning 'r0zInIN Hb$ 36A +rosins 'r0zInz Ha$ 26A +roster 'r0st@R K6% 2 +rosters 'r0st@z Kj% 2 +rostra 'r0str@ Kj$ 2 +rostrum 'r0str@m K6% 2 +rostrums 'r0str@mz Kj$ 2 +rosy 'r@UzI OD% 2 +rot r0t J4%,L@% 12A,2C,6A +rota 'r@Ut@ K6% 2 +rotaries 'r@Ut@rIz Kj% 3 +rotary 'r@Ut@rI K8%,OA% 3 +rotas 'r@Ut@z Kj% 2 +rotate r@U'teIt J2% 22A,6A +rotated r@U'teItId Jc%,Jd% 32A,6A +rotates r@U'teIts Ja% 22A,6A +rotating r@U'teItIN Jb% 32A,6A +rotation r@U'teISn M6% 3 +rotational r@U'teIS@nl OA% 4 +rotationally r@U'teISn@I Pu% 4 +rotations r@U'teISnz Mj% 3 +rotatory 'r@Ut@t@rI OA$ 4 +rote r@Ut Ki% 1 +rotgut 'r0tgVt L@% 2 +rotisserie r@U'tis@rI K6% 4 +rotisseries r@U'tis@rIz Kj% 4 +rotogravure ,r@Ut@Ugr@'vjU@R M6$ 4 +rotogravures ,r@Ut@Ugr@'vjU@z Mj$ 4 +rotor 'r@Ut@R K6% 2 +rotors 'r@Ut@z Kj% 2 +rots r0ts Ja% 12A,2C,6A +rotted 'r0tId Jc%,Jd% 22A,2C,6A +rotten 'r0tn OA% 2 +rottenly 'r0tnlI Pu% 3 +rottenness 'r0tn+n@s L@% 3 +rotter 'r0t@R K6% 2 +rotters 'r0t@z Kj% 2 +rotting 'r0tIN Jb% 22A,2C,6A +rotund r@U'tVnd OA% 2 +rotunda r@U'tVnd@ K6$ 3 +rotundas r@U'tVnd@z Kj$ 3 +rotundity r@U'tVndItI L@$ 4 +rotundly r@U'tVndlI Pu$ 3 +rou_e 'rueI K6$ 2 +rou_es 'rueIz Kj$ 2 +rouble 'rubl K6$ 2 +roubles 'rublz Kj$ 2 +rouge ruZ J2%,L@% 12A,6A +rouged ruZd Jc%,Jd% 12A,6A +rouges 'ruZIz Ja$ 22A,6A +rough rVf H0%,M6%,OC%,Pu% 16A,15B +rough-and-tumble ,rVf-@n-'tVmbl K6%,OA% 4 +rough-and-tumbles ,rVf-@n-'tVmblz Kj$ 4 +rough-dried 'rVf-draId Hc$,Hd% 2 +rough-dries 'rVf-draIz Ha$ 2 +rough-dry 'rVf-draI H3$ 2 +rough-drying 'rVf-draIIN Hb$ 3 +rough-hewn 'rVf-hjun OA% 2 +rough-house 'rVf-haUs J2$ 22A,6A +rough-housed 'rVf-haUst Jc$,Jd$ 22A,6A +rough-houses 'rVf-haUzIz Ja$ 32A,6A +rough-housing 'rVf-haUsIN Jb$ 32A,6A +rough-spoken rVf-'sp@Uk@n OA% 3 +roughage 'rVfIdZ L@% 2 +roughcast 'rVfk&st H5$,Hc%,Hd%,L@% 2 +roughcasting 'rVfk&stIN Hb$ 3 +roughcasts 'rVfk&sts Ha$ 2 +roughed rVft Hc%,Hd% 16A,15B +roughen 'rVfn J0% 2 +roughened 'rVfnd Jc%,Jd% 2 +roughening 'rVfnIN Jb% 3 +roughens 'rVfnz Ja% 2 +rougher 'rVf@R Or% 2 +roughest 'rVfIst Os% 2 +roughing 'rVfIN Hb% 26A,15B +roughish 'rVfIS OA% 2 +roughly 'rVflI Pu% 2 +roughneck 'rVfnek K6% 2 +roughnecks 'rVfneks Kj% 2 +roughness 'rVfn@s L@% 2 +roughrider 'rVfraId@R K6$ 3 +roughriders 'rVfraId@z Kj$ 3 +roughs rVfs Ha%,Mj% 16A,15B +roughshod 'rVfS0d OA% 2 +rouging 'ruZIN Jb$ 22A,6A +roulette ru'let L@% 2 +round raUnd J0%,M6%,OC%,P+%,T-% 12C,3A,6A,15B +round-arm 'raUnd-Am OA$,Pu$ 2 +round-backed raUnd-'b&kt OA% 2 +round-eyed 'raUnd-aId OA% 2 +round-hand 'raUnd-h&nd L@$ 2 +round-shot 'raUnd-S0t K6$ 2 +round-shots 'raUnd-S0ts Kj$ 2 +round-shouldered raUnd-'S@Uld@d OA% 3 +round-the-clock ,raUnd-D@-'kl0k Oq%,Pu% 3 +roundabout 'raUnd@baUt K6%,Oq% 3 +roundabouts 'raUnd@baUts Kj% 3 +rounded 'raUndId Jc%,Jd% 22C,3A,6A,15B +roundel 'raUndl K6$ 2 +roundelay 'raUndIleI K6$ 3 +roundelays 'raUndIleIz Kj$ 3 +roundels 'raUndlz Kj$ 2 +rounder 'raUnd@R Or$ 2 +rounders 'raUnd@z Kj% 2 +roundest 'raUndIst Os% 2 +roundhouse 'raUndhaUs K6% 2 +roundhouses 'raUndhaUzIz Kj% 3 +rounding 'raUndIN Jb% 22C,3A,6A,15B +roundish 'raUndIS OA% 2 +roundly 'raUndlI Pu% 2 +roundness 'raUndn@s L@% 2 +rounds raUndz Ja%,Mj% 12C,3A,6A,15B +roundsman 'raUndzm@n Ki% 2 +roundsmen 'raUndzm@n Kj% 2 +roundup 'raUndVp K6% 2 +roundups 'raUndVps Kj% 2 +rouse raUz J2% 12A,6A,15A +roused raUzd Jc%,Jd% 12A,6A,15A +rouses 'raUzIz Ja% 22A,6A,15A +rousing 'raUzIN Jb% 22A,6A,15A +rout raUt H0%,K6% 16A,15B +route rut H2%,M6% 1 +routed 'raUtId Hc%,Hd% 26A,15B +routed 'rutId Hc%,Hd% 2 +routemarch 'rutmAtS K7% 2 +routemarches 'rutmAtSIz Kj% 3 +routes ruts Ha%,Mj% 1 +routine ru'tin M6%,OA% 2 +routines ru'tinz Mj% 2 +routing 'raUtIN Hb% 26A,15B +routing 'rutIN Hb% 2 +routs raUts Ha%,Kj% 16A,15B +rove r@Uv J2% 12A,2C,6A +roved r@Uvd Jc%,Jd% 12A,2C,6A +rover 'r@Uv@R K6% 2 +rovers 'r@Uv@z Kj% 2 +roves r@Uvz Ja% 12A,2C,6A +roving 'r@UvIN Jb% 22A,2C,6A +row r@U J0%,K6% 12A,2B,2C,6A,15A,15B +row raU J0%,M6% 12A,3A,6A +rowan 'r@U@n K6% 2 +rowan-berries 'r@U@n-berIz Kj% 4 +rowan-berry 'r@U@n-berI K8% 4 +rowan-tree 'r@U@n-tri K6% 3 +rowan-trees 'r@U@n-triz Kj% 3 +rowans 'r@U@nz Kj% 2 +rowboat 'r@Ub@Ut K6% 2 +rowboats 'r@Ub@Uts Kj% 2 +rowdier 'raUdI@R Or% 3 +rowdies 'raUdIz Kj% 2 +rowdiest 'raUdIIst Os% 3 +rowdily 'raUdIlI Pu% 3 +rowdiness 'raUdIn@s L@% 3 +rowdy 'raUdI K8%,OD% 2 +rowdyism 'raUdIIz@m L@$ 4 +rowed r@Ud Jc%,Jd% 12A,2B,2C,6A,15A,15B +rowed raUd Jc%,Jd% 12A,3A,6A +rowel 'raU@l K6$ 2 +rowels 'raU@lz Kj$ 2 +rower 'r@U@R K6% 2 +rowers 'r@U@z Kj% 2 +rowing 'r@UIN Jb%,L@% 22A,2B,2C,6A,15A,15B +rowing 'raUIN Jb% 22A,3A,6A +rowing-boat 'r@UIN-b@Ut K6% 3 +rowing-boats 'r@UIN-b@Uts Kj% 3 +rowing-club 'r@UIN-klVb K6% 3 +rowing-clubs 'r@UIN-klVbz Kj% 3 +rowlock 'r0l@k K6% 2 +rowlocks 'r0l@ks Kj% 2 +rows r@Uz Ja%,Kj% 12A,2B,2C,6A,15A,15B +rows raUz Ja%,Mj% 12A,3A,6A +royal 'roI@l OA% 2 +royalist 'roI@lIst K6% 3 +royalists 'roI@lIsts Kj% 3 +royally 'roI@lI Pu% 3 +royals 'roI@lz Kj% 2 +royalties 'roI@ltIz Mj% 3 +royalty 'roI@ltI M8% 3 +rpm ,ApI'em Y]% 3 +rub rVb J4%,K6% 12A,2C,6A,15A,15B,22 +rub-a-dub ,rVb-@-'dVb L@$ 3 +rub-down 'rVb-daUn K6% 2 +rub-downs 'rVb-daUnz Kj$ 2 +rub-up 'rVb-Vp K6$ 2 +rub-ups 'rVb-Vps Kj$ 2 +rubbed rVbd Jc%,Jd% 12A,2C,6A,15A,15B,22 +rubber 'rVb@R H0%,M6% 26A +rubber-stamp ,rVb@-'st&mp H0% 3 +rubber-stamped ,rVb@-'st&mpt Hc%,Hd% 3 +rubber-stamping ,rVb@-'st&mpIN Hb% 4 +rubber-stamps ,rVb@-'st&mps Ha% 3 +rubbered 'rVb@d Hc$,Hd$ 26A +rubbering 'rVb@rIN Hb$ 36A +rubberize 'rVb@raIz H2% 36A +rubberized 'rVb@raIzd Hc%,Hd% 36A +rubberizes 'rVb@raIzIz Ha% 46A +rubberizing 'rVb@raIzIN Hb% 46A +rubberneck 'rVb@nek I0$,K6% 3 +rubbernecked 'rVb@nekt Ic$,Id$ 3 +rubbernecking 'rVb@nekIN Ib$ 4 +rubbernecks 'rVb@neks Ia$,Kj$ 3 +rubbers 'rVb@z Ha$,Mj% 26A +rubbery 'rVb@rI OA% 3 +rubbing 'rVbIN Jb%,M6% 22A,2C,6A,15A,15B,22 +rubbings 'rVbINz Mj% 2 +rubbish 'rVbIS H1$,L@% 26A +rubbished 'rVbISt Hc%,Hd% 26A +rubbishes 'rVbISIz Ha% 36A +rubbishing 'rVbISIN Hb%,K6% 36A +rubbishy 'rVbISI OA% 3 +rubble 'rVbl L@% 2 +rubicund 'rubIk@nd OA$ 3 +rubies 'rubIz Kj% 2 +rubric 'rubrIk K6$ 2 +rubrics 'rubrIks Kj$ 2 +rubs rVbz Ja%,Kj% 12A,2C,6A,15A,15B,22 +ruby 'rubI K8%,OA% 2 +ruck rVk J0$,K6$ 12A,2C,6A,15B +rucked rVkt Jc$,Jd$ 12A,2C,6A,15B +rucking 'rVkIN Jb$ 22A,2C,6A,15B +rucks rVks Ja$,Kj$ 12A,2C,6A,15B +rucksack 'rVks&k K6% 2 +rucksacks 'rVks&ks Kj% 2 +ruckus 'rVk@s K6% 2 +ruckuses 'rVk@sIz Kj$ 3 +ructions 'rVkSnz Kj% 2 +rudder 'rVd@R K6% 2 +rudderless 'rVd@lIs OA% 3 +rudders 'rVd@z Kj% 2 +ruddier 'rVdI@R Or% 3 +ruddiest 'rVdIIst Os% 3 +ruddiness 'rVdInIs L@% 3 +ruddle 'rVdl H2$,L@$ 2 +ruddled 'rVdld Hc$,Hd$ 2 +ruddles 'rVdlz Ha$ 2 +ruddling 'rVdlIN Hb$ 2 +ruddy 'rVdI OD% 2 +rude rud OB% 1 +rudely 'rudlI Pu% 2 +rudeness 'rudn@s M7% 2 +rudenesses 'rudn@sIz Mj% 3 +ruder 'rud@R Or% 2 +rudest 'rudIst Os% 2 +rudiment 'rudIm@nt K6$ 3 +rudimentary ,rudI'mentrI OA% 4 +rudiments 'rudIm@nts Kj% 3 +rue ru H2%,L@% 16A +rued rud Hc%,Hd% 16A +rueful 'ruf@l OA% 2 +ruefully 'ruf@lI Pu% 3 +rues ruz Ha% 16A +ruff rVf J0$,K6% 1 +ruffed rVft Jc$,Jd$ 1 +ruffian 'rVfI@n K6% 3 +ruffianism 'rVfI@nIz@m L@$ 5 +ruffianly 'rVfI@nlI OA% 4 +ruffians 'rVfI@nz Kj% 3 +ruffing 'rVfIN Jb$ 2 +ruffle 'rVfl J2%,K6% 22A,6A,15B +ruffled 'rVfld Jc%,Jd% 22A,6A,15B +ruffles 'rVflz Ja%,Kj% 22A,6A,15B +ruffling 'rVflIN Jb% 22A,6A,15B +ruffs rVfs Ja$,Kj$ 1 +rug rVg K6% 1 +rugby 'rVgbI L@% 2 +rugged 'rVgId OA% 2 +ruggedly 'rVgIdlI Pu% 3 +ruggedness 'rVgIdn@s L@% 3 +rugger 'rVg@R L@% 2 +rugs rVgz Kj% 1 +ruin 'ruIn H0%,M6% 26A +ruination ,ruI'neISn L@% 4 +ruined 'ruInd Hc%,Hd% 26A +ruing 'ruIN Hb% 26A +ruining 'ruInIN Hb% 36A +ruinous 'ruIn@s OA% 3 +ruinously 'ruIn@slI Pu% 4 +ruins 'ruInz Ha%,Mj% 26A +rule rul J2%,M6% 12A,2B,2C,3A,6A,9,15A,15B,25 +ruled ruld Jc%,Jd% 12A,2B,2C,3A,6A,9,15A,15B,25 +ruler 'rul@R K6% 2 +rulers 'rul@z Kj% 2 +rules rulz Ja%,Mj% 12A,2B,2C,3A,6A,9,15A,15B,25 +ruling 'rulIN Jb%,K6%,OA% 22A,2B,2C,3A,6A,9,15A,15B,25 +rulings 'rulINz Kj% 2 +rum rVm L@% 1 +rum-runner 'rVm-rVn@R K6% 3 +rum-runners 'rVm-rVn@z Kj% 3 +rumba 'rVmb@ K6% 2 +rumbas 'rVmb@z Kj% 2 +rumble 'rVmbl J2%,M6% 22A,2C,15B +rumbled 'rVmbld Jc%,Jd% 22A,2C,15B +rumbles 'rVmblz Ja%,Mj% 22A,2C,15B +rumbling 'rVmblIN Jb%,K6% 22A,2C,15B +rumblings 'rVmblINz Kj% 2 +rumbustious rVm'bVstI@s OA% 4 +ruminant 'rumIn@nt K6%,OA% 3 +ruminants 'rumIn@nts Kj% 3 +ruminate 'rumIneIt I2% 32A,2B,2C +ruminated 'rumIneItId Ic%,Id% 42A,2B,2C +ruminates 'rumIneIts Ia% 32A,2B,2C +ruminating 'rumIneItIN Ib% 42A,2B,2C +rumination ,rumI'neISn L@% 4 +ruminative 'rumIn@tIv OA% 4 +rummage 'rVmIdZ J2%,L@% 22A,2B,2C,3A,6A,15B +rummaged 'rVmIdZd Jc%,Jd% 22A,2B,2C,3A,6A,15B +rummages 'rVmIdZIz Ja% 32A,2B,2C,3A,6A,15B +rummaging 'rVmIdZIN Jb% 32A,2B,2C,3A,6A,15B +rummer 'rVm@R Or$ 2 +rummest 'rVmIst Os$ 2 +rummy 'rVmI L@%,OE% 2 +rumour 'rum@R H0%,M6% 2 +rumour-monger 'rum@-mVNg@R K6% 4 +rumour-mongers 'rum@-mVNg@z Kj% 4 +rumoured 'rum@d Hc%,Hd% 2 +rumouring 'rum@rIN Hb% 3 +rumours 'rum@z Ha%,Mj% 2 +rump rVmp K6% 1 +rump-steak rVmp-'steIk M6% 2 +rump-steaks rVmp-'steIks Mj% 2 +rumple 'rVmpl H2% 26A +rumpled 'rVmpld Hc%,Hd% 26A +rumples 'rVmplz Ha% 26A +rumpling 'rVmplIN Hb% 26A +rumps rVmps Kj% 1 +rumpus 'rVmp@s Ki% 2 +run rVn J5%,Jd%,K6% 12A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +run-of-the-mill 'rVn-@v-D@-mIl OA% 4 +run-off 'rVn-0f K6$ 2 +run-offs 'rVn-0fs Kj$ 2 +run-through 'rVn-Tru K6% 2 +run-throughs 'rVn-Truz Kj$ 2 +run-up 'rVn-Vp K6% 2 +run-ups 'rVn-Vps Kj$ 2 +runaway 'rVn@weI K6%,OA% 3 +runaways 'rVn@weIz Kj% 3 +rundown 'rVndaUn K6%,OA% 2 +rundowns 'rVndaUnz Kj$ 2 +rune run K6$ 1 +runes runz Kj$ 1 +rung rVN Jd%,K6% 12A,2B,2C,2D,3A,6A,15A,15B +rungs rVNz Kj% 1 +runic 'runIk OA$ 2 +runnel 'rVnl K6$ 2 +runnels 'rVnlz Kj$ 2 +runner 'rVn@R K6% 2 +runner-up ,rVn@r-'Vp Ki% 3 +runners 'rVn@z Kj% 2 +runners-up ,rVn@z-'Vp Kj% 3 +runnier 'rVnI@R Or% 3 +runniest 'rVnIIst Os% 3 +running 'rVnIN Jb%,L@%,OA% 22A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +running-board 'rVnIN-bOd K6% 3 +running-boards 'rVnIN-bOdz Kj% 3 +runny 'rVnI OD% 2 +runs rVnz Ja%,Kj% 12A,2B,2C,2D,2E,3A,4A,6A,14,15A,15B +runt rVnt K6% 1 +runts rVnts Kj% 1 +runway 'rVnweI K6% 2 +runways 'rVnweIz Kj% 2 +rupee ru'pi K6% 2 +rupees ru'piz Kj% 2 +rupiah ru'pi@ K6$ 3 +rupiahs ru'pi@z Kj$ 3 +rupture 'rVptS@R J2%,M6% 22A,6A +ruptured 'rVptS@d Jc%,Jd% 22A,6A +ruptures 'rVptS@z Ja%,Mj% 22A,6A +rupturing 'rVptS@rIN Jb% 32A,6A +rural 'rU@r@l OA% 2 +ruse ruz K6% 1 +ruses 'ruzIz Kj% 2 +rush rVS J1%,M7% 12A,2C,4A,6A,15A,15B +rushed rVSt Jc%,Jd% 12A,2C,4A,6A,15A,15B +rushes 'rVSIz Ja%,Mj% 22A,2C,4A,6A,15A,15B +rushier 'rVSI@R Or$ 3 +rushiest 'rVSIIst Os$ 3 +rushing 'rVSIN Jb% 22A,2C,4A,6A,15A,15B +rushlight 'rVSlaIt K6$ 2 +rushlights 'rVSlaIts Kj$ 2 +rushy 'rVSI OD% 2 +rusk rVsk K6% 1 +rusks rVsks Kj% 1 +russet 'rVsIt M6%,OA% 2 +russets 'rVsIts Mj$ 2 +rust rVst J0%,L@% 12A,2C,6A +rusted 'rVstId Jc%,Jd% 22A,2C,6A +rustic 'rVstIk K6%,OA% 2 +rusticate 'rVstIkeIt J2$ 32A,6A +rusticated 'rVstIkeItId Jc$,Jd$ 42A,6A +rusticates 'rVstIkeIts Ja$ 32A,6A +rusticating 'rVstIkeItIN Jb$ 42A,6A +rusticity rV'stIsItI L@$ 4 +rustics 'rVstIks Kj% 2 +rustier 'rVstI@R Or% 3 +rustiest 'rVstIIst Os% 3 +rustiness 'rVstIn@s L@% 3 +rusting 'rVstIN Jb% 22A,2C,6A +rustle 'rVsl J2%,L@% 22A,2C,6A,15B +rustled 'rVsld Jc%,Jd% 22A,2C,6A,15B +rustler 'rVsl@R K6% 2 +rustlers 'rVsl@z Kj% 2 +rustles 'rVslz Ja% 22A,2C,6A,15B +rustless 'rVstl@s OA% 2 +rustling 'rVslIN Jb%,M6% 22A,2C,6A,15B +rustlings 'rVslINz Mj$ 2 +rusts rVsts Ja% 12A,2C,6A +rusty 'rVstI OD% 2 +rut rVt H4%,M6% 12A +ruthless 'ruTlIs OA% 2 +ruthlessly 'ruTlIslI Pu% 3 +ruthlessness 'ruTlIsn@s L@% 3 +ruts rVts Ha$,Mj% 12A +rutted 'rVtId Hc%,Hd% 22A +rutting 'rVtIN Hb$ 22A +rye raI L@% 1 +rye-bread 'raI-bred L@% 2 +s es Ki$ 1 +s's 'esIz Kj$ 2 +s_eance 'seIAns K6% 2 +s_eances 'seIAnsIz Kj% 3 +sabbatarian ,s&b@'te@rI@n K6$,OA$ 5 +sabbatarians ,s&b@'te@rI@nz Kj$ 5 +sabbatical s@'b&tIkl K6%,OA% 4 +sabbaticals s@'b&tIklz Kj% 4 +sable 'seIbl M6%,OA% 2 +sables 'seIblz Mj% 2 +sabot 's&b@U K6$ 2 +sabotage 's&b@tAZ H2%,L@% 36A +sabotaged 's&b@tAZd Hc%,Hd% 36A +sabotages 's&b@tAZIz Ha% 46A +sabotaging 's&b@tAZIN Hb% 46A +saboteur ,s&b@'t3R K6% 3 +saboteurs ,s&b@'t3z Kj% 3 +sabots 's&b@Uz Kj$ 2 +sabre 'seIb@R H2$,K6% 2 +sabre-rattling 'seIb@-r&tlIN L@% 4 +sabre-toothed 'seIb@-tuTt OA% 3 +sabred 'seIb@d Hc$,Hd$ 2 +sabres 'seIb@z Ha$,Kj% 2 +sabring 'seIb@rIN Hb$ 3 +sac s&k K6$ 1 +saccharin 's&k@rIn L@% 3 +saccharine 's&k@rin OA% 3 +sacerdotal ,s&s@'d@Utl OA$ 4 +sacerdotalism ,s&s@'d@Ut@lIz@m L@$ 6 +sachet 's&SeI K6% 2 +sachets 's&SeIz Kj% 2 +sack s&k H0%,M6% 16A +sack-race 's&k-reIs K6% 2 +sack-races 's&k-reIsIz Kj% 3 +sackbut 's&kbVt K6$ 2 +sackbuts 's&kbVts Kj$ 2 +sackcloth 's&k+kl0T L@% 2 +sacked s&kt Hc%,Hd% 16A +sacking 's&kIN Hb%,L@% 26A +sacks s&ks Ha%,Mj% 16A +sacrament 's&kr@m@nt K6% 3 +sacramental ,s&kr@'mentl OA% 4 +sacraments 's&kr@m@nts Kj% 3 +sacred 'seIkrId OA% 2 +sacredly 'seIkrIdlI Pu% 3 +sacredness 'seIkrIdn@s L@% 3 +sacrifice 's&krIfaIs J2%,M6% 33A,6A,14,16A +sacrificed 's&krIfaIst Jc%,Jd% 33A,6A,14,16A +sacrifices 's&krIfaIsIz Ja%,Mj% 43A,6A,14,16A +sacrificial ,s&krI'fISl OA% 4 +sacrificing 's&krIfaIsIN Jb% 43A,6A,14,16A +sacrilege 's&krIlIdZ L@% 3 +sacrilegious ,s&krI'lIdZ@s OA% 4 +sacristan 's&krIst@n K6$ 3 +sacristans 's&krIst@nz Kj$ 3 +sacristies 's&krIstIz Kj% 3 +sacristy 's&krIstI K8% 3 +sacrosanct 's&kr@Us&Nkt OA% 3 +sacs s&ks Kj$ 1 +sad s&d OE% 1 +sadden 's&dn J0% 22A,6A +saddened 's&dnd Jc%,Jd% 22A,6A +saddening 's&dnIN Jb% 32A,6A +saddens 's&dnz Ja% 22A,6A +sadder 's&d@R Or% 2 +saddest 's&dIst Os% 2 +saddle 's&dl H2%,K6% 26A,14 +saddle-sore 's&dl-sOR OA% 3 +saddlebag 's&dlb&g K6% 3 +saddlebags 's&dlb&gz Kj% 3 +saddled 's&dld Hc%,Hd% 26A,14 +saddler 's&dl@R K6% 2 +saddleries 's&dl@rIz Mj% 3 +saddlers 's&dl@z Kj% 2 +saddlery 's&dl@rI M8% 3 +saddles 's&dlz Ha%,Kj% 26A,14 +saddling 's&dlIN Hb% 26A,14 +sadhu 'sAdu K6$ 2 +sadhus 'sAduz Kj$ 2 +sadism 'seIdIz@m L@% 3 +sadist 'seIdIst K6% 2 +sadistic s@'dIstIk OA% 3 +sadists 'seIdIsts Kj% 2 +sadly 's&dlI Pu% 2 +sadness 's&dn@s L@% 2 +sado-masochist ,seId@U-'m&s@kIst K6% 5 +sado-masochists ,seId@U-'m&s@kIsts Kj% 5 +sadomasochism ,seId@U'm&s@kIz@m L@% 6 +sae ,es,eI'i Y>% 3 +safari s@'fArI M6% 3 +safaris s@'fArIz Mj% 3 +safe seIf K6%,OB% 1 +safe-conduct seIf-'k0ndVkt L@% 3 +safe-deposit 'seIf-dIp0zIt K6%,OA% 4 +safe-deposits 'seIf-dIp0zIts Kj% 4 +safecracker 'seIfkr&k@R K6% 3 +safecrackers 'seIfkr&k@z Kj% 3 +safeguard 'seIfgAd H0%,K6% 26A,14 +safeguarded 'seIfgAdId Hc%,Hd% 36A,14 +safeguarding 'seIfgAdIN Hb% 36A,14 +safeguards 'seIfgAdz Ha%,Kj% 26A,14 +safekeeping seIf'kipIN L@% 3 +safely 'seIflI Pu% 2 +safeness 'seIfn@s L@% 2 +safer 'seIf@R Or% 2 +safes seIfs Kj% 1 +safest 'seIfIst Os% 2 +safety 'seIftI L@% 2 +safety-belt 'seIftI-belt K6% 3 +safety-belts 'seIftI-belts Kj% 3 +safety-bolt 'seIftI-b@Ult K6% 3 +safety-bolts 'seIftI-b@Ults Kj% 3 +safety-catch 'seIftI-k&tS K7% 3 +safety-catches 'seIftI-k&tSIz Kj% 4 +safety-curtain 'seIftI-k3tn K6% 4 +safety-curtains 'seIftI-k3tnz Kj% 4 +safety-factor 'seIftI-f&kt@R K6% 4 +safety-factors 'seIftI-f&kt@z Kj% 4 +safety-lamp 'seIftI-l&mp K6% 3 +safety-lamps 'seIftI-l&mps Kj% 3 +safety-lock 'seIftI-l0k K6% 3 +safety-locks 'seIftI-l0ks Kj% 3 +safety-match 'seIftI-m&tS K7% 3 +safety-matches 'seIftI-m&tSIz Kj% 4 +safety-pin 'seIftI-pIn K6% 3 +safety-pins 'seIftI-pInz Kj% 3 +safety-razor 'seIftI-reIz@R K6% 4 +safety-razors 'seIftI-reIz@z Kj% 4 +safety-valve 'seIftI-v&lv K6% 3 +safety-valves 'seIftI-v&lvz Kj% 3 +saffron 's&fr@n M6% 2 +saffrons 's&fr@nz Mj$ 2 +sag s&g I4%,K6$ 12A +saga 'sAg@ K6% 2 +sagacious s@'geIS@s OA% 3 +sagaciously s@'geIS@slI Pu% 4 +sagacity s@'g&sItI L@% 4 +sagas 'sAg@z Kj% 2 +sage seIdZ M6%,OA% 1 +sage-green seIdZ-'grin L@%,OA% 2 +sagely 'seIdZlI Pu% 2 +sages 'seIdZIz Mj% 2 +sagged s&gd Ic%,Id% 12A +sagging 's&gIN Ib% 22A +sago 'seIg@U L@% 2 +sags s&gz Ia%,Kj$ 12A +sahib sAb K6$ 1 +sahibs sAbz Kj$ 1 +said sed Jc*,Jd*,Oq% 16A,9,10,14 +sail seIl J0%,M6% 12A,2B,2C,3A,6A +sailcloth 'seIlkl0T L@% 2 +sailed seIld Jc%,Jd% 12A,2B,2C,3A,6A +sailing 'seIlIN Jb%,K6% 22A,2B,2C,3A,6A +sailing-boat 'seIlIN-b@Ut K6% 3 +sailing-boats 'seIlIN-b@Uts Kj% 3 +sailing-master 'seIlIN-mAst@R K6% 4 +sailing-masters 'seIlIN-mAst@z Kj% 4 +sailing-ship 'seIlIN-SIp K6% 3 +sailing-ships 'seIlIN-SIps Kj% 3 +sailing-vessel 'seIlIN-vesl K6% 4 +sailing-vessels 'seIlIN-veslz Kj% 4 +sailings 'seIlINz Kj$ 2 +sailor 'seIl@R K6% 2 +sailors 'seIl@z Kj% 2 +sails seIlz Ja%,Mj% 12A,2B,2C,3A,6A +saint seInt K6% 1 +saint's-day 'seInts-deI K6% 2 +saint's-days 'seInts-deIz Kj% 2 +sainted 'seIntId OA% 2 +sainthood 'seInthUd L@% 2 +saintlier 'seIntlI@R Or% 3 +saintliest 'seIntlIIst Os% 3 +saintlike 'seIntlaIk OA% 2 +saintliness 'seIntlIn@s L@% 3 +saintly 'seIntlI OD% 2 +saints seInts Kj% 1 +saith seT Je$ 16A,9,10,14 +sak_e 'sAkI L@$ 2 +sake seIk K6% 1 +sakes seIks Kj% 1 +sal volatile ,s&l v@'l&t@lI L@% 5 +salaam s@'lAm I0$,K6$ 2 +salaamed s@'lAmd Ic$,Id$ 2 +salaaming s@'lAmIN Ib$ 3 +salaams s@'lAmz Ia$,Kj$ 2 +salable 'seIl@bl OA$ 3 +salacious s@'leIS@s OA% 3 +salaciously s@'leIS@slI Pu% 4 +salaciousness s@'leIS@sn@s L@% 4 +salacity s@'l&sItI L@$ 4 +salad 's&l@d M6% 2 +salad-days 's&l@d-deIz Kj% 3 +salad-dressing 's&l@d-dresIN M6% 4 +salad-dressings 's&l@d-dresINz Mj% 4 +salad-oil 's&l@d-oIl M6% 3 +salad-oils 's&l@d-oIlz Mj% 3 +salads 's&l@dz Mj% 2 +salamander 's&l@m&nd@R K6$ 4 +salamanders 's&l@m&nd@z Kj$ 4 +salami s@'lAmI L@% 3 +salaried 's&l@rId OA% 3 +salaries 's&l@rIz Kj% 3 +salary 's&l@rI K8% 3 +sale seIl M6% 1 +saleable 'seIl@bl OA% 3 +saleroom 'seIlrum K6% 2 +salerooms 'seIlrumz Kj% 2 +sales seIlz Mj% 1 +salesman 'seIlzm@n Ki% 2 +salesmanship 'seIlzm@nSIp L@% 3 +salesmen 'seIlzm@n Kj% 2 +saleswoman 'seIlzwUm@n Ki% 3 +saleswomen 'seIlzwImIn Kj% 3 +salience 'seIlI@ns L@% 3 +salient 'seIlI@nt K6$,OA% 3 +salients 'seIlI@nts Kj$ 3 +saline 'seIlaIn M6$,OA% 2 +salines 'seIlaInz Mj$ 2 +salinity s@'lInItI L@% 4 +saliva s@'laIv@ L@% 3 +salivary 's&lIv@rI OA% 4 +salivate 's&lIveIt I2% 3 +salivated 's&lIveItId Ic%,Id% 4 +salivates 's&lIveIts Ia% 3 +salivating 's&lIveItIN Ib% 4 +sallied 's&lId Ic%,Id% 22A,2C +sallies 's&lIz Ia%,Kj% 22A,2C +sallow 's&l@U J0$,OC% 2 +sallowed 's&l@Ud Jc$,Jd$ 2 +sallower 's&l@U@R Or$ 3 +sallowest 's&l@UIst Os$ 3 +sallowing 's&l@UIN Jb$ 3 +sallows 's&l@Uz Ja$ 2 +sally 's&lI I3%,K8% 22A,2C +sallying 's&lIIN Ib% 32A,2C +salmon 's&m@n M9% 2 +salon 's&l0n K6% 2 +salons 's&l0nz Kj% 2 +saloon s@'lun K6% 2 +saloons s@'lunz Kj% 2 +salsify 's&lsIfI L@$ 3 +salt sOlt H0%,M6%,OA% 16A,15B +salt-cellar 'sOlt-sel@R K6% 3 +salt-cellars 'sOlt-sel@z Kj% 3 +salt-lick 'sOlt-lIk K6% 2 +salt-licks 'sOlt-lIks Kj% 2 +salted 'sOltId Hc%,Hd% 26A,15B +saltier 'sOltI@R Or% 3 +saltiest 'sOltIIst Os% 3 +saltiness 'sOltIn@s L@% 3 +salting 'sOltIN Hb% 26A,15B +saltpan 'sOltp&n K6% 2 +saltpans 'sOltp&nz Kj% 2 +saltpetre sOlt'pit@R L@% 3 +salts sOlts Ha%,Mj% 16A,15B +saltwater 'sOltwOt@R L@% 3 +saltworks 'sOltw3ks K9% 2 +salty 'sOltI OD% 2 +salubrious s@'lubrI@s OA% 4 +salubrity s@'lubrItI L@$ 4 +salutary 's&ljUtrI OA% 3 +salutation ,s&lju'teISn M6% 4 +salutations ,s&lju'teISnz Mj% 4 +salute s@'lut J2%,K6% 22A,6A +saluted s@'lutId Jc%,Jd% 32A,6A +salutes s@'luts Ja%,Kj% 22A,6A +saluting s@'lutIN Jb% 32A,6A +salvage 's&lvIdZ H2%,L@% 26A +salvaged 's&lvIdZd Hc%,Hd% 26A +salvages 's&lvIdZIz Ha% 36A +salvaging 's&lvIdZIN Hb% 36A +salvation s&l'veISn L@% 3 +salve s&lv H2%,M6% 16A +salved s&lvd Hc%,Hd% 16A +salver 's&lv@R K6% 2 +salvers 's&lv@z Kj% 2 +salves s&lvz Ha%,Mj% 16A +salvia 's&lvI@ K6$ 3 +salvias 's&lvI@z Kj$ 3 +salving 's&lvIN Hb% 26A +salvo 's&lv@U K6% 2 +salvoes 's&lv@Uz Kj% 2 +salvos 's&lv@Uz Kj% 2 +samba 's&mb@ K6% 2 +sambas 's&mb@z Kj% 2 +same seIm OA*,Pu*,Qx* 1 +sameness 'seImn@s L@% 2 +samovar 's&m@vAR K6$ 3 +samovars 's&m@vAz Kj$ 3 +sampan 's&mp&n K6$ 2 +sampans 's&mp&nz Kj$ 2 +sample 'sAmpl H2%,K6% 26A +sampled 'sAmpld Hc%,Hd% 26A +sampler 'sAmpl@R K6% 2 +samplers 'sAmpl@z Kj% 2 +samples 'sAmplz Ha%,Kj% 26A +sampling 'sAmplIN Hb% 26A +samurai 's&mUraI K9$ 3 +sanatoria ,s&n@'tOrI@ Kj% 5 +sanatorium ,s&n@'tOrI@m K6% 5 +sanatoriums ,s&n@'tOrI@mz Kj$ 5 +sanctification ,s&NktIfI'keISn M6% 5 +sanctifications ,s&NktIfI'keISnz Mj$ 5 +sanctified 's&NktIfaId Hc%,Hd% 36A +sanctifies 's&NktIfaIz Ha% 36A +sanctify 's&NktIfaI H3% 36A +sanctifying 's&NktIfaIIN Hb% 46A +sanctimonious ,s&NktI'm@UnI@s OA% 5 +sanctimoniously ,s&NktI'm@UnI@slI Pu% 6 +sanction 's&NkSn H0%,M6% 26A +sanctioned 's&NkSnd Hc%,Hd% 26A +sanctioning 's&NkSnIN Hb% 36A +sanctions 's&NkSnz Ha%,Mj% 26A +sanctities 's&NktItIz Mj$ 3 +sanctity 's&NktItI M8% 3 +sanctuaries 's&NktSU@rIz Mj% 4 +sanctuary 's&NktSU@rI M8% 4 +sanctum 's&Nkt@m K6% 2 +sanctums 's&Nkt@mz Kj% 2 +sand s&nd H0%,M6% 16A +sand-bar 's&nd-bAR K6% 2 +sand-bars 's&nd-bAz Kj% 2 +sandal 's&ndl K6% 2 +sandalled 's&ndld OA$ 2 +sandals 's&ndlz Kj% 2 +sandalwood 's&ndlwUd L@% 3 +sandbag 's&ndb&g K6% 2 +sandbags 's&ndb&gz Kj% 2 +sandbank 's&ndb&Nk K6% 2 +sandbanks 's&ndb&Nks Kj% 2 +sandblast 's&ndbl&st H0% 26A +sandblasted 's&ndbl&stId Hc%,Hd% 36A +sandblasting 's&ndbl&stIN Hb% 36A +sandblasts 's&ndbl&sts Ha% 26A +sandboy 's&ndboI K6% 2 +sandboys 's&ndboIz Kj% 2 +sanded 's&ndId Hc%,Hd% 26A +sandflies 's&ndflaIz Kj% 2 +sandfly 's&ndflaI K8% 2 +sandglass 's&ndglAs K7$ 2 +sandglasses 's&ndglAsIz Kj$ 3 +sandier 's&ndI@R Or% 3 +sandiest 's&ndIIst Os% 3 +sandiness 's&ndIn@s L@% 3 +sanding 's&ndIN Hb% 26A +sandpaper 's&ndpeIp@R H0%,M6% 36A +sandpapered 's&ndpeIp@d Hc%,Hd% 36A +sandpapering 's&ndpeIp@rIN Hb% 46A +sandpapers 's&ndpeIp@z Ha%,Mj% 36A +sandpiper 's&ndpaIp@R K6% 3 +sandpipers 's&ndpaIp@z Kj% 3 +sandpit 's&ndpIt K6% 2 +sandpits 's&ndpIts Kj% 2 +sands s&ndz Ha%,Mj% 16A +sandshoes 's&ndSuz Kj% 2 +sandstone 's&ndst@Un L@% 2 +sandstorm 's&ndstOm K6% 2 +sandstorms 's&ndstOmz Kj% 2 +sandwich 's&nwIdZ H1%,K7% 26A,14 +sandwich-board 's&nwIdZ-bOd K6% 3 +sandwich-boards 's&nwIdZ-bOdz Kj% 3 +sandwiched 's&nwIdZd Hc%,Hd% 26A,14 +sandwiches 's&nwIdZIz Ha%,Kj% 36A,14 +sandwiching 's&nwIdZIN Hb% 36A,14 +sandwichman 's&nwIdZm&n Ki% 3 +sandwichmen 's&nwIdZmen Kj% 3 +sandy 's&ndI OD% 2 +sane seIn OB% 1 +sanely 'seInlI Pu% 2 +saner 'seIn@R Or% 2 +sanest 'seInIst Os% 2 +sang s&N Jc% 12A,2C,3A,6A,12B,13B,15A +sang froid ,s0N 'frwA L@% 2 +sanguinary 's&NgwIn@rI OA$ 4 +sanguine 's&NgwIn OA% 2 +sanitary 's&nItrI OA% 3 +sanitation ,s&nI'teISn L@% 4 +sanity 's&nItI L@% 3 +sank s&Nk Jc% 12A,2C,3A,6A,14,15A +sans s&nz T-$ 1 +sap s&p J4%,M6% 12A,6A +saphead 's&phed K6$ 2 +sapheads 's&phedz Kj$ 2 +sapience 'seIpI@ns L@$ 3 +sapient 'seIpI@nt OA$ 3 +sapiently 'seIpI@ntlI Pu$ 4 +sapless 's&pl@s OA$ 2 +sapling 's&plIN K6% 2 +saplings 's&plINz Kj% 2 +sapped s&pt Jc%,Jd% 12A,6A +sapper 's&p@R K6% 2 +sappers 's&p@z Kj% 2 +sapphire 's&faI@R M6% 2 +sapphires 's&faI@z Mj% 2 +sappier 's&pI@R Or$ 3 +sappiest 's&pIIst Os$ 3 +sapping 's&pIN Jb% 22A,6A +sappy 's&pI OD% 2 +saps s&ps Ja%,Mj% 12A,6A +sapwood 's&pwUd L@$ 2 +saraband 's&r@b&nd K6$ 3 +sarabands 's&r@b&ndz Kj$ 3 +sarcasm 'sAk&z@m M6% 3 +sarcasms 'sAk&z@mz Mj$ 3 +sarcastic sA'k&stIk OA% 3 +sarcastically sA'k&stIklI Pu% 4 +sarcophagi sA'k0f@gaI Kj$ 4 +sarcophagus sA'k0f@g@s Ki$ 4 +sardine sA'din M6% 2 +sardines sA'dinz Mj% 2 +sardonic sA'd0nIk OA% 3 +sardonically sA'd0nIklI Pu% 4 +sari 'sArI K6% 2 +saris 'sArIz Kj% 2 +sarong s@'r0N K6$ 2 +sarongs s@'r0Nz Kj$ 2 +sarsaparilla ,sAsp@'rIl@ L@$ 4 +sartorial sA'tOrI@l OA$ 4 +sash s&S K7% 1 +sash-cord 's&S-kOd K6% 2 +sash-cords 's&S-kOdz Kj% 2 +sash-line 's&S-laIn K6$ 2 +sash-lines 's&S-laInz Kj$ 2 +sashes 's&SIz Kj% 2 +sat s&t Jc%,Jd% 12A,2C,3A,6A,15B +satchel 's&tSl K6% 2 +satchels 's&tSlz Kj% 2 +sate seIt H2$ 16A +sated 'seItId Hc$,Hd% 26A +sateen s@'tin L@$ 2 +satellite 's&t@laIt K6% 3 +satellites 's&t@laIts Kj% 3 +sates seIts Ha$ 16A +satiable 'seIS@bl OA% 3 +satiate 'seISIeIt H2% 36A +satiated 'seISIeItId Hc%,Hd% 46A +satiates 'seISIeIts Ha% 36A +satiating 'seISIeItIN Hb% 46A +satiety s@'taI@tI L@% 4 +satin 's&tIn L@%,OA% 2 +sating 'seItIN Hb$ 26A +satinwood 's&tInwUd L@% 3 +satire 's&taI@R M6% 2 +satires 's&taI@z Mj% 2 +satirical s@'tIrIkl OA% 4 +satirically s@'tIrIklI Pu% 4 +satirist 's&t@rIst K6% 3 +satirists 's&t@rIsts Kj% 3 +satirize 's&t@raIz H2% 36A +satirized 's&t@raIzd Hc%,Hd% 36A +satirizes 's&t@raIzIz Ha% 46A +satirizing 's&t@raIzIN Hb% 46A +satisfaction ,s&tIs'f&kSn M6% 4 +satisfactions ,s&tIs'f&kSnz Mj% 4 +satisfactorily ,s&tIs'f&kt@rIlI Pu% 6 +satisfactory ,s&tIs'f&kt@rI OA% 5 +satisfied 's&tIsfaId Jc%,Jd% 32A,6A,11,14 +satisfies 's&tIsfaIz Ja% 32A,6A,11,14 +satisfy 's&tIsfaI J3% 32A,6A,11,14 +satisfying 's&tIsfaIIN Jb%,OA% 42A,6A,11,14 +satisfyingly 's&tIsfaIINlI Pu% 5 +satrap 's&tr&p K6$ 2 +satraps 's&tr&ps Kj$ 2 +satsuma ,s&t'sum@ K6% 3 +satsumas ,s&t'sum@z Kj% 3 +saturate 's&tS@reIt H2% 36A,14 +saturated 's&tS@reItId Hc%,Hd% 46A,14 +saturates 's&tS@reIts Ha% 36A,14 +saturating 's&tS@reItIN Hb% 46A,14 +saturation ,s&tS@'reISn L@% 4 +saturnalia ,s&t@'neIlI@ K6$ 5 +saturnalias ,s&t@'neIlI@z Kj$ 5 +saturnine 's&t@naIn OA% 3 +satyr 's&t@R K6$ 2 +satyric s@'tIrIk OA$ 3 +satyrs 's&t@z Kj$ 2 +sauce sOs H2$,M6% 16A +sauce-boat 'sOs-b@Ut K6% 2 +sauce-boats 'sOs-b@Uts Kj% 2 +sauced sOst Hc$,Hd$ 16A +saucepan 'sOsp@n K6% 2 +saucepans 'sOsp@nz Kj% 2 +saucer 'sOs@R K6% 2 +saucer-eyed 'sOs@r-aId OA% 3 +saucers 'sOs@z Kj% 2 +sauces 'sOsIz Ha$,Mj% 26A +saucier 'sOsI@R Or% 3 +sauciest 'sOsIIst Os% 3 +saucily 'sOsIlI Pu% 3 +sauciness 'sOsIn@s L@% 3 +saucing 'sOsIN Hb$ 26A +saucy 'sOsI OD% 2 +sauerkraut 'saU@kraUt L@% 3 +sauna 'saUn@ K6% 2 +saunas 'saUn@z Kj% 2 +saunter 'sOnt@R I0%,K6% 22A,2C +sauntered 'sOnt@d Ic%,Id% 22A,2C +saunterer 'sOnt@r@R K6$ 3 +saunterers 'sOnt@r@z Kj$ 3 +sauntering 'sOnt@rIN Ib% 32A,2C +saunters 'sOnt@z Ia%,Kj% 22A,2C +saurian 'sOrI@n K6$,OA$ 3 +saurians 'sOrI@nz Kj$ 3 +sausage 's0sIdZ M6% 2 +sausage-dog 's0sIdZ-d0g K6% 3 +sausage-dogs 's0sIdZ-d0gz Kj% 3 +sausage-meat 's0sIdZ-mit L@% 3 +sausage-roll ,s0sIdZ-'r@Ul K6% 3 +sausage-rolls ,s0sIdZ-'r@Ulz Kj% 3 +sausages 's0sIdZIz Mj% 3 +saut_e 's@UteI H0%,OA% 2 +saut_eed 's@UteId Hc%,Hd% 2 +saut_eing 's@UteIIN Hb% 3 +saut_es 's@UteIz Ha% 2 +savage 's&vIdZ H2%,K6%,OA% 26A +savaged 's&vIdZd Hc%,Hd% 26A +savagely 's&vIdZlI Pu% 3 +savageness 's&vIdZn@s L@% 3 +savagery 's&vIdZrI L@% 3 +savages 's&vIdZIz Ha%,Kj% 36A +savaging 's&vIdZIN Hb% 36A +savanna s@'v&n@ K6% 3 +savannah s@'v&n@ K6% 3 +savannahs s@'v&n@z Kj$ 3 +savannas s@'v&n@z Kj$ 3 +savant 's&v@nt K6$ 2 +savants 's&v@nts Kj$ 2 +save seIv J2%,K6%,T-% 12A,2C,3A,6A,6D,12B,12C,13B,14,15B +saved seIvd Jc%,Jd% 12A,2C,3A,6A,6D,12B,12C,13B,14,15B +saveloy 's&v@loI M6% 3 +saveloys 's&v@loIz Mj% 3 +saver 'seIv@R K6% 2 +savers 'seIv@z Kj% 2 +saves seIvz Ja%,Kj% 12A,2C,3A,6A,6D,12B,12C,13B,14,15B +saving 'seIvIN Jb%,K6%,OA%,T-% 22A,2C,3A,6A,6D,12B,12C,13B,14,15B +savings 'seIvINz Kj% 2 +savings-bank 'seIvINz-b&Nk K6% 3 +savings-banks 'seIvINz-b&Nks Kj% 3 +saviour 'seIvI@R K6% 2 +saviours 'seIvI@z Kj% 2 +savoir-faire ,s&vwA-'fe@R L@% 3 +savory 'seIv@rI L@$ 3 +savour 'seIv@R J0%,M6% 23A,6A +savoured 'seIv@d Jc%,Jd% 23A,6A +savouries 'seIv@rIz Kj% 3 +savouring 'seIv@rIN Jb% 33A,6A +savours 'seIv@z Ja%,Mj% 23A,6A +savoury 'seIv@rI K8%,OA% 3 +savoy s@'voI M6$ 2 +savoys s@'voIz Mj$ 2 +savvy 's&vI I5%,L@% 2 +saw sO J0%,Jc*,K6% 12A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +saw-pit 'sO-pIt K6$ 2 +saw-pits 'sO-pIts Kj$ 2 +sawdust 'sOdVst L@% 2 +sawed sOd Jc%,Jd% 12A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +sawhorse 'sOhOs K6$ 2 +sawhorses 'sOhOsIz Kj$ 3 +sawing 'sOIN Jb% 22A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +sawmill 'sOmIl K6% 2 +sawmills 'sOmIlz Kj% 2 +sawn sOn Jd% 12A,2C,6A,15A,15B +saws sOz Ja%,Kj% 12A,2B,2C,4A,6A,8,9,10,15A,15B,16B,18A,19A,22,24A +sawyer 'sOj@R K6% 2 +sawyers 'sOj@z Kj% 2 +sax s&ks K7% 1 +saxes 's&ksIz Kj% 2 +saxhorn 's&kshOn K6$ 2 +saxhorns 's&kshOnz Kj$ 2 +saxifrage 's&ksIfrIdZ L@% 3 +saxophone 's&ks@f@Un K6% 3 +saxophones 's&ks@f@Unz Kj% 3 +saxophonist s&k's0f@nIst K6% 4 +saxophonists s&k's0f@nIsts Kj% 4 +say seI J5*,Ki% 16A,9,10,14 +saying 'seIIN Jb%,K6% 26A,9,10,14 +sayings 'seIINz Kj% 2 +says sez Ja* 16A,9,10,14 +scab sk&b M6% 1 +scabbard 'sk&b@d K6$ 2 +scabbards 'sk&b@dz Kj$ 2 +scabbier 'sk&bI@R Or$ 3 +scabbiest 'sk&bIIst Os$ 3 +scabby 'sk&bI OD% 2 +scabies 'skeIbiz L@% 2 +scabious 'skeIbI@s L@$ 3 +scabrous 'skeIbr@s OA$ 2 +scabs sk&bz Mj% 1 +scaffold 'sk&f@Uld K6% 2 +scaffolding 'sk&f@ldIN L@% 3 +scaffolds 'sk&f@Uldz Kj% 2 +scalawag 'sk&l@w&g K6$ 3 +scalawags 'sk&l@w&gz Kj$ 3 +scald skOld H0%,K6% 16A +scalded 'skOldId Hc%,Hd% 26A +scalding 'skOldIN Hb% 26A +scalds skOldz Ha%,Kj% 16A +scale skeIl J2%,M6% 12B,2C,6A,15A,15B +scaled skeIld Jc%,Jd% 12B,2C,6A,15A,15B +scales skeIlz Ja%,Mj% 12B,2C,6A,15A,15B +scalier 'skeIlI@R Or% 3 +scaliest 'skeIlIIst Os% 3 +scaling 'skeIlIN Jb% 22B,2C,6A,15A,15B +scaling-ladder 'skeIlIN-l&d@R K6% 4 +scaling-ladders 'skeIlIN-l&d@z Kj% 4 +scallop 'sk0l@p H0$,K6% 26A +scallop-shell 'sk0l@p-Sel K6% 3 +scallop-shells 'sk0l@p-Selz Kj% 3 +scalloped 'sk0l@pt Hc$,Hd% 26A +scalloping 'sk0l@pIN Hb$ 36A +scallops 'sk0l@ps Ha$,Kj% 26A +scallywag 'sk&lIw&g K6% 3 +scallywags 'sk&lIw&gz Kj% 3 +scalp sk&lp H0%,K6% 16A +scalped sk&lpt Hc%,Hd% 16A +scalpel 'sk&lp@l K6% 2 +scalpels 'sk&lp@lz Kj% 2 +scalping 'sk&lpIN Hb% 26A +scalps sk&lps Ha%,Kj% 16A +scaly 'skeIlI OD% 2 +scamp sk&mp H0$,K6% 16A +scamped sk&mpt Hc$,Hd$ 16A +scamper 'sk&mp@R I0%,K6% 22A,2C +scampered 'sk&mp@d Ic%,Id% 22A,2C +scampering 'sk&mp@rIN Ib% 32A,2C +scampers 'sk&mp@z Ia%,Kj% 22A,2C +scampi 'sk&mpI Kj% 2 +scamping 'sk&mpIN Hb$ 26A +scamps sk&mps Ha$,Kj% 16A +scan sk&n J4% 12A,6A +scandal 'sk&ndl M6% 2 +scandalize 'sk&nd@laIz H2% 36A +scandalized 'sk&nd@laIzd Hc%,Hd% 36A +scandalizes 'sk&nd@laIzIz Ha% 46A +scandalizing 'sk&nd@laIzIN Hb% 46A +scandalmonger 'sk&ndl,mVNg@R K6% 4 +scandalmongering 'sk&ndl,mVNg@rIN L@% 5 +scandalmongers 'sk&ndl,mVNg@z Kj% 4 +scandalous 'sk&nd@l@s OA% 3 +scandalously 'sk&nd@l@slI Pu% 4 +scandals 'sk&ndlz Mj% 2 +scanned sk&nd Jc%,Jd% 12A,6A +scanner 'sk&n@R K6% 2 +scanners 'sk&n@z Kj% 2 +scanning 'sk&nIN Jb% 22A,6A +scans sk&nz Ja% 12A,6A +scansion 'sk&nSn L@% 2 +scant sk&nt H0$,OA% 16A +scanted 'sk&ntId Hc$,Hd$ 26A +scantier 'sk&ntI@R Or% 3 +scantiest 'sk&ntIIst Os% 3 +scantily 'sk&ntIlI Pu% 3 +scantiness 'sk&ntIn@s L@% 3 +scanting 'sk&ntIN Hb$ 26A +scantling 'sk&ntlIN K6$ 2 +scantlings 'sk&ntlINz Kj$ 2 +scants sk&nts Ha$ 16A +scanty 'sk&ntI OD% 2 +scapegoat 'skeIpg@Ut K6% 2 +scapegoats 'skeIpg@Uts Kj% 2 +scapegrace 'skeIpgreIs K6% 2 +scapegraces 'skeIpgreIsIz Kj$ 3 +scapula 'sk&pjUl@ K6% 3 +scapulas 'sk&pjUl@z Kj% 3 +scar skAR J4%,K6% 12C,6A +scarab 'sk&r@b K6$ 2 +scarabs 'sk&r@bz Kj$ 2 +scarce ske@s OB% 1 +scarcely 'ske@slI Pu% 2 +scarcer 'ske@s@R Or% 2 +scarcest 'ske@sIst Os% 2 +scarcities 'ske@sItIz Mj% 3 +scarcity 'ske@sItI M8% 3 +scare ske@R J2%,K6% 12A,6A,15A,15B +scarecrow 'ske@kr@U K6% 2 +scarecrows 'ske@kr@Uz Kj% 2 +scared ske@d Jc%,Jd% 12A,6A,15A,15B +scaremonger 'ske@mVNg@R K6% 3 +scaremongers 'ske@mVNg@z Kj% 3 +scares ske@z Ja%,Kj% 12A,6A,15A,15B +scarf skAf K6% 1 +scarf-pin 'skAf-pIn K6% 2 +scarf-pins 'skAf-pInz Kj% 2 +scarfs skAfs Kj$ 1 +scarier 'ske@rI@R Or% 3 +scariest 'ske@rIIst Os% 3 +scarified 'sk&rIfaId Hc$,Hd$ 36A +scarifies 'sk&rIfaIz Ha$ 36A +scarify 'sk&rIfaI H3$ 36A +scarifying 'sk&rIfaIIN Hb$ 46A +scaring 'ske@rIN Jb% 22A,6A,15A,15B +scarlet 'skAl@t M6%,OA% 2 +scarlets 'skAl@ts Mj$ 2 +scarp skAp K6$ 1 +scarper 'skAp@R I0% 22A +scarpered 'skAp@d Ic% 22A +scarpering 'skAp@rIN Ib% 32A +scarpers 'skAp@z Ia% 22A +scarps skAps Kj$ 1 +scarred skAd Jc%,Jd% 12C,6A +scarring 'skArIN Jb% 22C,6A +scars skAz Ja%,Kj% 12C,6A +scarves skAvz Kj% 1 +scary 'ske@rI OD% 2 +scat sk&t W-$ 1 +scathing 'skeIDIN OA% 2 +scathingly 'skeIDINlI Pu% 3 +scatter 'sk&t@R J0%,K6% 22A,2C,6A,15A,15B +scatterbrain 'sk&t@breIn K6% 3 +scatterbrained 'sk&t@breInd OA% 3 +scatterbrains 'sk&t@breInz Kj% 3 +scattered 'sk&t@d Jc%,Jd%,OA% 22A,2C,6A,15A,15B +scattering 'sk&t@rIN Jb% 32A,2C,6A,15A,15B +scatters 'sk&t@z Ja%,Kj% 22A,2C,6A,15A,15B +scattier 'sk&tI@R Or% 3 +scattiest 'sk&tIIst Os% 3 +scatty 'sk&tI OD% 2 +scavenge 'sk&vIndZ I2% 22A,3A +scavenged 'sk&vIndZd Ic%,Id% 22A,3A +scavenger 'sk&vIndZ@R K6% 3 +scavengers 'sk&vIndZ@z Kj% 3 +scavenges 'sk&vIndZIz Ia% 32A,3A +scavenging 'sk&vIndZIN Ib% 32A,3A +scenario sI'nArI@U K6% 4 +scenarios sI'nArI@Uz Kj% 4 +scenarist sI'nArIst K6$ 3 +scenarists sI'nArIsts Kj$ 3 +scene sin K6% 1 +scene-painter 'sin-peInt@R K6% 3 +scene-painters 'sin-peInt@z Kj% 3 +scene-shifter 'sin-SIft@R K6% 3 +scene-shifters 'sin-SIft@z Kj% 3 +scenery 'sin@rI L@% 3 +scenes sinz Kj% 1 +scenic 'sinIk OA% 2 +scenically 'sinIklI Pu% 3 +scent sent H0%,M6% 16A +scented 'sentId Hc%,Hd% 26A +scenting 'sentIN Hb% 26A +scentless 'sentl@s OA$ 2 +scents sents Ha%,Mj% 16A +sceptered 'sept@d OA$ 2 +sceptic 'skeptIk K6% 2 +sceptical 'skeptIkl OA% 3 +sceptically 'skeptIklI Pu% 3 +scepticism 'skeptIsIz@m L@% 4 +sceptics 'skeptIks Kj% 2 +sceptre 'sept@R K6% 2 +sceptred 'sept@d OA% 2 +sceptres 'sept@z Kj% 2 +schedule 'Sedjul H2%,K6% 26A,7A,14 +scheduled 'Sedjuld Hc%,Hd% 26A,7A,14 +schedules 'Sedjulz Ha%,Kj% 26A,7A,14 +scheduling 'SedjulIN Hb% 36A,7A,14 +schema 'skim@ K6$ 2 +schemas 'skim@z Kj$ 2 +schemata 'skim@t@ Kj$ 3 +schematic skI'm&tIk OA% 3 +schematically skI'm&tIklI Pu% 4 +scheme skim J2%,K6% 12A,3A,4A,6A +schemed skimd Jc%,Jd% 12A,3A,4A,6A +schemer 'skim@R K6% 2 +schemers 'skim@z Kj% 2 +schemes skimz Ja%,Kj% 12A,3A,4A,6A +scheming 'skimIN Jb% 22A,3A,4A,6A +scherzo 'ske@ts@U K6$ 2 +scherzos 'ske@ts@Uz Kj$ 2 +schism 'skIz@m M6% 2 +schismatic skIz'm&tIk OA$ 3 +schisms 'skIz@mz Mj$ 2 +schist SIst K6$ 1 +schists SIsts Kj$ 1 +schizoid 'skItsoId OA% 2 +schizophrenia ,skIts@U'frinI@ L@% 5 +schizophrenic ,skIts@U'frenIk K6%,OA% 4 +schizophrenics ,skIts@U'frenIks Kj% 4 +schmaltz SmOlts L@% 1 +schmaltzier 'SmOltsI@R Or% 3 +schmaltziest 'SmOltsIIst Os% 3 +schmaltzy 'SmOltsI OD% 2 +schmalz SmOlts L@$ 1 +schmalzier 'smOltsI@R Or$ 3 +schmalziest 'smOltsIIst Os$ 3 +schmalzy 'smOltsI OD$ 2 +schnapps Sn&ps L@% 1 +schnitzel 'SnItsl M6% 2 +schnitzels 'SnItslz Mj$ 2 +schnorkel 'SnOkl K6$ 2 +schnorkels 'SnOklz Kj$ 2 +scholar 'sk0l@R K6% 2 +scholarly 'sk0l@lI OA% 3 +scholars 'sk0l@z Kj% 2 +scholarship 'sk0l@SIp M6% 3 +scholarships 'sk0l@SIps Mj% 3 +scholastic sk@'l&stIk OA% 3 +scholasticism sk@'l&stIsIz@m L@% 5 +school skul H0%,M6* 16A,15A +school-board 'skul-bOd K6% 2 +school-boards 'skul-bOdz Kj% 2 +schoolbook 'skulbUk K6% 2 +schoolbooks 'skulbUks Kj% 2 +schoolboy 'skulboI K6% 2 +schoolboys 'skulboIz Kj% 2 +schoolchild 'skultSaIld Ki% 2 +schoolchildren 'skultSIldr@n Kj% 3 +schooldays 'skuldeIz Kj% 2 +schooled skuld Hc%,Hd% 16A,15A +schoolfellow 'skulfel@U K6% 3 +schoolfellows 'skulfel@Uz Kj% 3 +schoolfriend 'skulfrend K6% 2 +schoolfriends 'skulfrendz Kj% 2 +schoolgirl 'skulg3l K6% 2 +schoolgirls 'skulg3lz Kj% 2 +schoolhouse 'skulhaUs K6% 2 +schoolhouses 'skulhaUzIz Kj% 3 +schooling 'skulIN Hb%,L@% 26A,15A +schoolman 'skulm&n Ki$ 2 +schoolmaster 'skulmAst@R K6% 3 +schoolmasters 'skulmAst@z Kj% 3 +schoolmate 'skulmeIt K6% 2 +schoolmates 'skulmeIts Kj% 2 +schoolmen 'skulmen Kj$ 2 +schoolmistress 'skulmIstrIs K7% 3 +schoolmistresses 'skulmIstrIsIz Kj% 4 +schoolroom 'skulrum K6% 2 +schoolrooms 'skulrumz Kj% 2 +schools skulz Ha%,Mj% 16A,15A +schoolteacher 'skultitS@R K6% 3 +schoolteachers 'skultitS@z Kj% 3 +schooltime 'skultaIm M6% 2 +schooltimes 'skultaImz Mj% 2 +schooner 'skun@R K6% 2 +schooners 'skun@z Kj% 2 +schottische S0'tiS K6$ 2 +schottisches S0'tiSIz Kj$ 3 +schwa SwA K6$ 1 +schwas SwAz Kj$ 1 +sciatic saI'&tIk OA$ 3 +sciatica saI'&tIk@ L@% 4 +science 'saI@ns M6% 2 +sciences 'saI@nsIz Mj% 3 +scientific ,saI@n'tIfIk OA% 4 +scientifically ,saI@n'tIfIklI Pu% 5 +scientist 'saI@ntIst K6% 3 +scientists 'saI@ntIsts Kj% 3 +scimitar 'sImIt@R K6$ 3 +scimitars 'sImIt@z Kj$ 3 +scintilla sIn'tIl@ K6$ 3 +scintillas sIn'tIl@z Kj$ 3 +scintillate 'sIntIleIt I2% 32A +scintillated 'sIntIleItId Ic%,Id% 42A +scintillates 'sIntIleIts Ia% 32A +scintillating 'sIntIleItIN Ib% 42A +scintillation ,sIntI'leISn K6% 4 +scintillations ,sIntI'leISnz Kj$ 4 +scion 'saI@n K6$ 2 +scions 'saI@nz Kj$ 2 +scissors 'sIz@z Kj% 2 +sclerosis skl@'r@UsIs L@% 3 +scoff sk0f J0%,K6% 12A,3A +scoffed sk0ft Jc%,Jd% 12A,3A +scoffer 'sk0f@R K6% 2 +scoffers 'sk0f@z Kj% 2 +scoffing 'sk0fIN Jb% 22A,3A +scoffingly 'sk0fINlI Pu% 3 +scoffs sk0fs Ja%,Kj% 12A,3A +scold sk@Uld J0%,K6% 12A,6A,14 +scolded 'sk@UldId Jc%,Jd% 22A,6A,14 +scolding 'sk@UldIN Jb%,K6% 22A,6A,14 +scoldings 'sk@UldINz Kj% 2 +scolds sk@Uldz Ja%,Kj% 12A,6A,14 +scollop 'sk0l@p H0$,K6$ 2 +scolloped 'sk0l@pt Hc$,Hd$ 2 +scolloping 'sk0l@pIN Hb$ 3 +scollops 'sk0l@ps Ha$,Kj$ 2 +sconce sk0ns K6$ 1 +sconces 'sk0nsIz Kj$ 2 +scone sk0n K6% 1 +scones sk0nz Kj% 1 +scoop skup H0%,K6% 16A,15B +scooped skupt Hc%,Hd% 16A,15B +scoopful 'skupfUl K6% 2 +scoopfuls 'skupfUlz Kj% 2 +scooping 'skupIN Hb% 26A,15B +scoops skups Ha%,Kj% 16A,15B +scoot skut I0% 1 +scooted 'skutId Ic%,Id% 2 +scooter 'skut@R K6% 2 +scooters 'skut@z Kj% 2 +scooting 'skutIN Ib% 2 +scoots skuts Ia% 1 +scope sk@Up L@% 1 +scorbutic skO'bjutIk OA$ 3 +scorch skOtS J1%,K7% 12A,2C,6A +scorched skOtSt Jc%,Jd% 12A,2C,6A +scorcher 'skOtS@R K6% 2 +scorchers 'skOtS@z Kj% 2 +scorches 'skOtSIz Ja%,Kj% 22A,2C,6A +scorching 'skOtSIN Jb%,OA%,Pu% 22A,2C,6A +score skOR J2%,K6% 12A,3A,6A,15A,15B +scoreboard 'skObOd K6% 2 +scoreboards 'skObOdz Kj% 2 +scorebook 'skObUk K6% 2 +scorebooks 'skObUks Kj% 2 +scorecard 'skOkAd K6% 2 +scorecards 'skOkAdz Kj% 2 +scored skOd Jc%,Jd% 12A,3A,6A,15A,15B +scorer 'skOr@R K6% 2 +scorers 'skOr@z Kj% 2 +scores skOz Ja%,Kj% 12A,3A,6A,15A,15B +scoring 'skOrIN Jb% 22A,3A,6A,15A,15B +scorn skOn H0%,L@% 16A,6D,7A +scorned skOnd Hc%,Hd% 16A,6D,7A +scornful 'skOnf@l OA% 2 +scornfully 'skOnf@lI Pu% 3 +scorning 'skOnIN Hb% 26A,6D,7A +scorns skOnz Ha% 16A,6D,7A +scorpion 'skOpI@n K6% 3 +scorpions 'skOpI@nz Kj% 3 +scot sk0t K6$ 1 +scot-free ,sk0t-'fri Pu% 2 +scotch sk0tS H1%,M7% 16A +scotched sk0tSt Hc%,Hd% 16A +scotches 'sk0tSIz Ha$,Mj$ 26A +scotching 'sk0tSIN Hb$ 26A +scots sk0ts Kj$ 1 +scoundrel 'skaUndr@l K6% 2 +scoundrelly 'skaUndr@lI OA$ 3 +scoundrels 'skaUndr@lz Kj% 2 +scour 'skaU@R J0%,K6% 22C,6A,15A,15B +scoured 'skaU@d Jc%,Jd% 22C,6A,15A,15B +scourer 'skaU@r@R K6% 3 +scourers 'skaU@r@z Kj% 3 +scourge sk3dZ H2%,K6% 16A +scourged sk3dZd Hc%,Hd% 16A +scourges 'sk3dZIz Ha%,Kj% 26A +scourging 'sk3dZIN Hb% 26A +scouring 'skaU@rIN Jb% 32C,6A,15A,15B +scours 'skaU@z Ja%,Kj% 22C,6A,15A,15B +scout skaUt J0%,K6% 12C,6A +scouted 'skaUtId Jc%,Jd% 22C,6A +scouting 'skaUtIN Jb% 22C,6A +scoutmaster 'skaUtmAst@R K6% 3 +scoutmasters 'skaUtmAst@z Kj% 3 +scouts skaUts Ja%,Kj% 12C,6A +scow skaU K6$ 1 +scowl skaUl I0%,K6% 12A,3A +scowled skaUld Ic%,Id% 12A,3A +scowling 'skaUlIN Ib% 22A,3A +scowls skaUlz Ia%,Kj% 12A,3A +scows skaUz Kj$ 1 +scrabble 'skr&bl I2%,M6% 22A,2C +scrabbled 'skr&bld Ic%,Id% 22A,2C +scrabbles 'skr&blz Ia%,Mj% 22A,2C +scrabbling 'skr&blIN Ib% 22A,2C +scrag skr&g H4$,K6$ 1 +scrag-end skr&g-'end K6% 2 +scrag-ends skr&g-'endz Kj% 2 +scragged skr&gd Hc$,Hd$ 1 +scraggier 'skr&gI@R Or$ 3 +scraggiest 'skr&gIIst Os$ 3 +scragging 'skr&gIN Hb$ 2 +scraggy 'skr&gI OD$ 2 +scrags skr&gz Ha$,Kj$ 1 +scram skr&m I4% 1 +scramble 'skr&mbl J2%,K6% 22A,2C,3A,4A,6A +scrambled 'skr&mbld Jc%,Jd% 22A,2C,3A,4A,6A +scrambler 'skr&mbl@R K6% 2 +scramblers 'skr&mbl@z Kj% 2 +scrambles 'skr&mblz Ja%,Kj% 22A,2C,3A,4A,6A +scrambling 'skr&mblIN Jb% 22A,2C,3A,4A,6A +scrammed skr&md Ic$,Id$ 1 +scramming 'skr&mIN Ib$ 2 +scrams skr&mz Ia$ 1 +scrap skr&p H4%,M6% 16A +scrap-iron skr&p-'aI@n L@% 3 +scrapbook 'skr&pbUk K6% 2 +scrapbooks 'skr&pbUks Kj% 2 +scrape skreIp J2%,K6% 12C,3A,6A,14,15A,15B,22 +scraped skreIpt Jc%,Jd% 12C,3A,6A,14,15A,15B,22 +scraper 'skreIp@R K6% 2 +scrapers 'skreIp@z Kj% 2 +scrapes skreIps Ja%,Kj% 12C,3A,6A,14,15A,15B,22 +scrapheap 'skr&phip K6% 2 +scrapheaps 'skr&phips Kj% 2 +scraping 'skreIpIN Jb%,K6% 22C,3A,6A,14,15A,15B,22 +scrapings 'skreIpINz Kj% 2 +scrapped skr&pt Hc%,Hd% 16A +scrappier 'skr&pI@R Or% 3 +scrappiest 'skr&pIIst Os% 3 +scrappily 'skr&pIlI Pu% 3 +scrappiness 'skr&pIn@s L@$ 3 +scrapping 'skr&pIN Hb% 26A +scrappy 'skr&pI OD% 2 +scraps skr&ps Ha%,Mj% 16A +scratch skr&tS J1%,K7% 12A,2C,6A,15B +scratch-pad 'skr&tS-p&d K6% 2 +scratch-pads 'skr&tS-p&dz Kj% 2 +scratch-race 'skr&tS-reIs K6% 2 +scratch-races 'skr&tS-reIsIz Kj% 3 +scratched skr&tSt Jc%,Jd% 12A,2C,6A,15B +scratches 'skr&tSIz Ja%,Kj% 22A,2C,6A,15B +scratchier 'skr&tSI@R Or% 3 +scratchiest 'skr&tSIIst Os% 3 +scratching 'skr&tSIN Jb% 22A,2C,6A,15B +scratchy 'skr&tSI OD% 2 +scrawl skrOl J0%,K6% 12A,2C,6A +scrawled skrOld Jc%,Jd% 12A,2C,6A +scrawling 'skrOlIN Jb% 22A,2C,6A +scrawls skrOlz Ja%,Kj% 12A,2C,6A +scrawnier 'skrOnI@R Or% 3 +scrawniest 'skrOnIIst Os% 3 +scrawny 'skrOnI OD% 2 +scream skrim J0%,K6% 12A,2C,6A,15A,15B,22 +screamed skrimd Jc%,Jd% 12A,2C,6A,15A,15B,22 +screaming 'skrimIN Jb% 22A,2C,6A,15A,15B,22 +screamingly 'skrimINlI Pu% 3 +screams skrimz Ja%,Kj% 12A,2C,6A,15A,15B,22 +scree skri M6$ 1 +screech skritS J1%,K7% 12A,2C,6A,15A,15B +screech-owl 'skritS-aUl K6% 2 +screech-owls 'skritS-aUlz Kj% 2 +screeched skritSt Jc%,Jd% 12A,2C,6A,15A,15B +screeches 'skritSIz Ja%,Kj% 22A,2C,6A,15A,15B +screeching 'skritSIN Jb% 22A,2C,6A,15A,15B +screed skrid K6$ 1 +screeds skridz Kj$ 1 +screen skrin J0%,K6% 12C,6A,14,15A,15B +screened skrind Jc%,Jd% 12C,6A,14,15A,15B +screening 'skrinIN Jb% 22C,6A,14,15A,15B +screens skrinz Ja%,Kj% 12C,6A,14,15A,15B +screes skriz Mj$ 1 +screw skru J0%,M6% 12A,6A,15A,15B +screw-topped 'skru-t0pt OA% 2 +screwball 'skrubOl K6%,OA% 2 +screwballs 'skrubOlz Kj% 2 +screwdriver 'skrudraIv@R K6% 3 +screwdrivers 'skrudraIv@z Kj% 3 +screwed skrud Jc%,Jd% 12A,6A,15A,15B +screwier 'skruI@R Or% 3 +screwiest 'skruIIst Os% 3 +screwing 'skruIN Jb% 22A,6A,15A,15B +screws skruz Ja%,Mj% 12A,6A,15A,15B +screwy 'skruI OD% 2 +scribble 'skrIbl J2%,M6% 22A,6A +scribbled 'skrIbld Jc%,Jd% 22A,6A +scribbler 'skrIbl@R K6% 2 +scribblers 'skrIbl@z Kj% 2 +scribbles 'skrIblz Ja%,Mj% 22A,6A +scribbling 'skrIblIN Jb% 22A,6A +scribbling-block 'skrIblIN-bl0k K6% 3 +scribbling-blocks 'skrIblIN-bl0ks Kj% 3 +scribe skraIb K6% 1 +scribes skraIbz Kj% 1 +scrimmage 'skrImIdZ J2$,K6% 2 +scrimmaged 'skrImIdZd Jc$,Jd$ 2 +scrimmages 'skrImIdZIz Ja$,Kj$ 3 +scrimmaging 'skrImIdZIN Jb$ 3 +scrimp skrImp J0% 1 +scrimped skrImpt Jc%,Jd% 1 +scrimping 'skrImpIN Jb% 2 +scrimps skrImps Ja% 1 +scrimshank 'skrImS&Nk I0$ 2 +scrimshanked 'skrImS&Nkt Ic$,Id$ 2 +scrimshanker 'skrImS&Nk@R K6$ 3 +scrimshankers 'skrImS&Nk@z Kj$ 3 +scrimshanking 'skrImS&NkIN Ib$ 3 +scrimshanks 'skrImS&Nks Ia$ 2 +scrip skrIp M6$ 1 +scrips skrIps Mj$ 1 +script skrIpt M6% 1 +scripted 'skrIptId OA% 2 +scripts skrIpts Mj% 1 +scriptural 'skrIptS@r@l OA% 3 +scripture 'skrIptS@R K6% 2 +scriptures 'skrIptS@z Kj% 2 +scriptwriter 'skrIptraIt@R K6% 3 +scriptwriters 'skrIptraIt@z Kj% 3 +scrivener 'skrIv@n@R K6$ 3 +scriveners 'skrIv@n@z Kj$ 3 +scrofula 'skr0fjUl@ L@$ 3 +scrofulous 'skr0fjUl@s OA$ 3 +scroll skr@Ul K6% 1 +scrolls skr@Ulz Kj% 1 +scrotum 'skr@Ut@m K6% 2 +scrotums 'skr@Ut@mz Kj$ 2 +scrounge skraUndZ J2% 12A,6A +scrounged skraUndZd Jc%,Jd% 12A,6A +scrounger 'skraUndZ@R K6% 2 +scroungers 'skraUndZ@z Kj% 2 +scrounges 'skraUndZIz Ja% 22A,6A +scrounging 'skraUndZIN Jb% 22A,6A +scrub skrVb J4%,M6% 12A,2C,6A,15B,22 +scrubbed skrVbd Jc%,Jd% 12A,2C,6A,15B,22 +scrubbier 'skrVbI@R Or$ 3 +scrubbiest 'skrVbIIst Os$ 3 +scrubbing 'skrVbIN Jb% 22A,2C,6A,15B,22 +scrubbing-brush 'skrVbIN-brVS K7% 3 +scrubbing-brushes 'skrVbIN-brVSIz Kj% 4 +scrubby 'skrVbI OD% 2 +scrubs skrVbz Ja%,Mj% 12A,2C,6A,15B,22 +scruff skrVf K6% 1 +scruffier 'skrVfI@R Or% 3 +scruffiest 'skrVfIIst Os% 3 +scruffs skrVfs Kj% 1 +scruffy 'skrVfI OD% 2 +scrum skrVm K6% 1 +scrummage 'skrVmIdZ K6% 2 +scrummages 'skrVmIdZIz Kj% 3 +scrumptious 'skrVmpS@s OA% 2 +scrums skrVmz Kj% 1 +scrunch skrVntS H1$,K7$ 1 +scrunched skrVntSt Hc$,Hd$ 1 +scrunches 'skrVntSIz Ha$,Kj$ 2 +scrunching 'skrVntSIN Hb$ 2 +scruple 'skrupl I2%,M6% 24C +scrupled 'skrupld Ic%,Id% 24C +scruples 'skruplz Ia%,Mj% 24C +scrupling 'skruplIN Ib% 24C +scrupulous 'skrupjUl@s OA% 3 +scrupulously 'skrupjUl@slI Pu% 4 +scrutineer ,skrutI'nI@R K6% 3 +scrutineers ,skrutI'nI@z Kj% 3 +scrutinies 'skrutInIz Mj% 3 +scrutinize 'skrutInaIz H2% 36A +scrutinized 'skrutInaIzd Hc%,Hd% 36A +scrutinizes 'skrutInaIzIz Ha% 46A +scrutinizing 'skrutInaIzIN Hb% 46A +scrutiny 'skrutInI M8% 3 +scud skVd I4$,M6$ 12A,2C +scudded 'skVdId Ic$,Id$ 22A,2C +scudding 'skVdIN Ib$ 22A,2C +scuds skVdz Ia$,Mj$ 12A,2C +scuff skVf J0% 12A,2C,6A,15A,15B +scuffed skVft Jc%,Jd% 12A,2C,6A,15A,15B +scuffing 'skVfIN Jb% 22A,2C,6A,15A,15B +scuffle 'skVfl I2% 22A,2C +scuffled 'skVfld Ic%,Id% 22A,2C +scuffles 'skVflz Ia% 22A,2C +scuffling 'skVflIN Ib% 22A,2C +scuffs skVfs Ja% 12A,2C,6A,15A,15B +scull skVl J0%,K6% 12A,6A +sculled skVld Jc%,Jd% 12A,6A +sculler 'skVl@R K6% 2 +sculleries 'skVl@rIz Kj% 3 +scullers 'skVl@z Kj% 2 +scullery 'skVl@rI K8% 3 +sculling 'skVlIN Jb% 22A,6A +scullion 'skVlI@n K6$ 3 +scullions 'skVlI@nz Kj$ 3 +sculls skVlz Ja%,Kj% 12A,6A +sculpt skVlpt J0% 1 +sculpted 'skVlptId Jc%,Jd% 2 +sculpting 'skVlptIN Jb% 2 +sculptor 'skVlpt@R K6% 2 +sculptors 'skVlpt@z Kj% 2 +sculptress 'skVlptrIs K7% 2 +sculptresses 'skVlptrIsIz Kj% 3 +sculpts skVlpts Ja% 1 +sculptural 'skVlptS@r@l OA% 3 +sculpture 'skVlptS@R J2%,M6% 22A,6A +sculptured 'skVlptS@d Jc%,Jd% 22A,6A +sculptures 'skVlptS@z Ja%,Mj% 22A,6A +sculpturing 'skVlptS@rIN Jb% 32A,6A +scum skVm L@% 1 +scummier 'skVmI@R Or$ 3 +scummiest 'skVmIIst Os$ 3 +scummy 'skVmI OD% 2 +scupper 'skVp@R H0$,K6$ 2 +scuppered 'skVp@d Hc$,Hd% 2 +scuppering 'skVp@rIN Hb$ 3 +scuppers 'skVp@z Ha$,Kj$ 2 +scurf sk3f L@% 1 +scurfier 'sk3fI@R Or$ 3 +scurfiest 'sk3fIIst Os$ 3 +scurfy 'sk3fI OD% 2 +scurried 'skVrId Ic%,Id% 22A,2C,3A +scurries 'skVrIz Ia%,Mj% 22A,2C,3A +scurrility sk@'rIlItI L@$ 4 +scurrilous 'skVrIl@s OA% 3 +scurrilously 'skVrIl@slI Pu% 4 +scurry 'skVrI I3%,M8% 22A,2C,3A +scurrying 'skVrIIN Ib% 32A,2C,3A +scurvily 'sk3vIlI Pu% 3 +scurvy 'sk3vI L@%,OA% 2 +scut skVt K6$ 1 +scutcheon 'skVtS@n K6$ 2 +scutcheons 'skVtS@nz Kj$ 2 +scuts skVts Kj$ 1 +scuttle 'skVtl J2%,K6% 22A,2C,6A +scuttled 'skVtld Jc%,Jd% 22A,2C,6A +scuttles 'skVtlz Ja%,Kj% 22A,2C,6A +scuttling 'skVtlIN Jb% 22A,2C,6A +scythe saID H2%,K6% 16A,15A +scythed saIDd Hc%,Hd% 16A,15A +scythes saIDz Ha%,Kj% 16A,15A +scything 'saIDIN Hb% 26A,15A +sea si M6% 1 +sea-anemone ,si-@'nem@nI K6% 5 +sea-anemones ,si-@'nem@nIz Kj% 5 +sea-animal 'si-&nIml K6% 4 +sea-animals 'si-&nImlz Kj% 4 +sea-bathing 'si-beIDIN L@% 3 +sea-boat 'si-b@Ut K6% 2 +sea-boats 'si-b@Uts Kj% 2 +sea-bream 'si-brim K9% 2 +sea-breeze si-'briz K6% 2 +sea-breezes si-'brizIz Kj% 3 +sea-coal 'si-k@Ul L@$ 2 +sea-cow 'si-kaU K6$ 2 +sea-cows 'si-kaUz Kj$ 2 +sea-dog 'si-d0g K6% 2 +sea-dogs 'si-d0gz Kj% 2 +sea-fish 'si-fIS K9% 2 +sea-fishes 'si-fISIz Kj% 3 +sea-girt 'si-g3t OA$ 2 +sea-god 'si-g0d K6% 2 +sea-gods 'si-g0dz Kj% 2 +sea-green si-'grin L@%,OA% 2 +sea-horse 'si-hOs K6% 2 +sea-horses 'si-hOsIz Kj% 3 +sea-legs 'si-legz Kj% 2 +sea-level 'si-levl Ki% 3 +sea-lion 'si-laI@n K6% 3 +sea-lions 'si-laI@nz Kj% 3 +sea-power 'si-paU@R L@% 3 +sea-rover 'si-r@Uv@R K6$ 3 +sea-rovers 'si-r@Uv@z Kj$ 3 +sea-snake 'si-sneIk K6% 2 +sea-snakes 'si-sneIks Kj% 2 +sea-urchin 'si-3tSIn K6% 3 +sea-urchins 'si-3tSInz Kj% 3 +sea-wall si-'wOl K6% 2 +sea-walls si-'wOlz Kj% 2 +sea-water 'si-wOt@R L@% 3 +seabed 'sibed K6% 2 +seabeds 'sibedz Kj$ 2 +seabird 'sib3d K6% 2 +seabirds 'sib3dz Kj% 2 +seaboard 'sibOd K6% 2 +seaboards 'sibOdz Kj$ 2 +seaborne 'sibOn OA% 2 +seafarer 'sife@r@R K6% 3 +seafarers 'sife@r@z Kj% 3 +seafaring 'sife@rIN OA% 3 +seafood 'sifud M6% 2 +seafoods 'sifudz Mj% 2 +seafront 'sifrVnt K6% 2 +seafronts 'sifrVnts Kj$ 2 +seagoing 'sig@UIN OA% 3 +seagull 'sigVl K6% 2 +seagulls 'sigVlz Kj% 2 +seakale 'sikeIl L@$ 2 +seal sil J0%,K6% 12A,6A,15A,15B +seal-ring 'sil-rIN K6$ 2 +seal-rings 'sil-rINz Kj$ 2 +sealed sild Jc%,Jd% 12A,6A,15A,15B +sealer 'sil@R K6$ 2 +sealers 'sil@z Kj$ 2 +sealing 'silIN Jb% 22A,6A,15A,15B +sealing-wax 'silIN-w&ks L@% 3 +seals silz Ja%,Kj% 12A,6A,15A,15B +sealskin 'silskIn M6% 2 +sealskins 'silskInz Mj% 2 +seam sim H0%,K6% 1 +seaman 'sim@n Ki% 2 +seamanlike 'sim@nlaIk OA% 3 +seamanship 'sim@nSIp L@% 3 +seamed simd Hc%,Hd% 1 +seamen 'sim@n Kj% 2 +seamier 'simI@R Or% 3 +seamiest 'simIIst Os% 3 +seaming 'simIN Hb$ 2 +seamless 'siml@s OA% 2 +seams simz Ha$,Kj% 1 +seamstress 'simstrIs K7% 2 +seamstresses 'simstrIsIz Kj% 3 +seamy 'simI OD% 2 +seaplane 'sipleIn K6% 2 +seaplanes 'sipleInz Kj% 2 +seaport 'sipOt K6% 2 +seaports 'sipOts Kj% 2 +sear sI@R H0$,OA$ 16A +search s3tS J1%,M7% 12A,3A,6A,14,15A,15B +search-parties 's3tS-pAtIz Kj% 3 +search-party 's3tS-pAtI K8% 3 +search-warrant 's3tS-w0r@nt K6% 3 +search-warrants 's3tS-w0r@nts Kj% 3 +searched s3tSt Jc%,Jd% 12A,3A,6A,14,15A,15B +searcher 's3tS@R K6% 2 +searchers 's3tS@z Kj% 2 +searches 's3tSIz Ja%,Mj% 22A,3A,6A,14,15A,15B +searching 's3tSIN Jb%,OA% 22A,3A,6A,14,15A,15B +searchingly 's3tSINlI Pu% 3 +searchlight 's3tSlaIt K6% 2 +searchlights 's3tSlaIts Kj% 2 +seared sI@d Hc$,Hd$ 16A +searing 'sI@rIN Hb% 26A +searing-iron 'se@rIN-aI@n K6$ 4 +searing-irons 'se@rIN-aI@nz Kj$ 4 +sears sI@z Ha$ 16A +seas siz Mj% 1 +seascape 'siskeIp K6% 2 +seascapes 'siskeIps Kj% 2 +seashell 'siSel K6% 2 +seashells 'siSelz Kj% 2 +seashore 'siSOR K6% 2 +seashores 'siSOz Kj% 2 +seasick 'sisIk OA% 2 +seasickness 'sisIkn@s L@% 3 +seaside 'sisaId K6% 2 +seasides 'sisaIdz Kj$ 2 +season 'sizn J0%,K6% 22A,6A,14 +season-ticket 'sizn-tIkIt K6% 4 +season-tickets 'sizn-tIkIts Kj% 4 +seasonable 'sizn@bl OA% 3 +seasonal 'siz@nl OA% 3 +seasonally 'siz@n@lI Pu% 4 +seasoned 'siznd Jc%,Jd% 22A,6A,14 +seasoning 'siznIN Jb%,M6% 32A,6A,14 +seasonings 'siznINz Mj% 3 +seasons 'siznz Ja%,Kj% 22A,6A,14 +seat sit H0%,K6% 16A +seat-belt 'sit-belt K6% 2 +seat-belts 'sit-belts Kj% 2 +seated 'sitId Hc%,Hd% 26A +seating 'sitIN Hb% 26A +seating-room 'sitIN-rum L@$ 3 +seats sits Ha%,Kj% 16A +seaward 'siw@d OA% 2 +seawards 'siw@dz Pu% 2 +seaway 'siweI K6% 2 +seaways 'siweIz Kj% 2 +seaweed 'siwid M6% 2 +seaweeds 'siwidz Mj$ 2 +seaworthiness 'siw3DInIs L@% 4 +seaworthy 'siw3DI OA% 3 +sec sek K6$ 1 +secateurs 'sek@t3z Kj% 3 +secede sI'sid I2% 22A,3A +seceded sI'sidId Ic%,Id% 32A,3A +secedes sI'sidz Ia% 22A,3A +seceding sI'sidIN Ib% 32A,3A +secession sI'seSn M6% 3 +secessionist sI'seS@nIst K6% 4 +secessionists sI'seS@nIsts Kj% 4 +secessions sI'seSnz Mj$ 3 +seclude sI'klud H2$ 26A,14,15A +secluded sI'kludId Hc$,Hd%,OA% 36A,14,15A +secludes sI'kludz Ha$ 26A,14,15A +secluding sI'kludIN Hb$ 36A,14,15A +seclusion sI'kluZn L@% 3 +second 'sek@nd H0%,K6*,OA*,Pu* 26A +second sI'k0nd H0% 26A,15A +second-best 'sek@nd-best Ki%,OA%,Pu% 3 +second-class 'sek@nd-klAs L@%,OA%,Pu% 3 +second-hand 'sek@nd-h&nd K6$,OA% 3 +second-hands 'sek@nd-h&ndz Kj$ 3 +second-rate 'sek@nd-reIt OA% 3 +second-rater ,sek@nd-'reIt@R K6% 4 +second-raters ,sek@nd-'reIt@z Kj% 4 +second-sighted ,sek@nd-'saItId OA% 4 +secondarily 'sek@ndrIlI Pu% 4 +secondary 'sek@ndrI OA% 3 +seconded 'sek@ndId Hc%,Hd% 36A +seconded sI'k0ndId Hc%,Hd% 36A,15A +seconder 'sek@nd@R K6% 3 +seconders 'sek@nd@z Kj% 3 +seconding 'sek@ndIN Hb% 36A +seconding sI'k0ndIN Hb% 36A,15A +secondly 'sek@ndlI Pu% 3 +secondment sI'k0ndm@nt K6% 3 +secondments sI'k0ndm@nts Kj% 3 +seconds 'sek@ndz Ha%,Kj% 26A +seconds sI'k0ndz Ha% 26A,15A +secrecy 'sikr@sI L@% 3 +secret 'sikrIt M6%,OA% 2 +secretarial ,sekr@'te@rI@l OA% 5 +secretariat ,sekr@'te@rI@t K6% 5 +secretariats ,sekr@'te@rI@ts Kj% 5 +secretaries 'sekr@trIz Kj% 3 +secretary 'sekr@trI K8% 3 +secrete sI'krit H2% 26A +secreted sI'kritId Hc%,Hd% 36A +secretes sI'krits Ha% 26A +secreting sI'kritIN Hb% 36A +secretion sI'kriSn M6% 3 +secretions sI'kriSnz Mj% 3 +secretive 'sikr@tIv OA% 3 +secretively 'sikr@tIvlI Pu% 4 +secretiveness 'sikr@tIvn@s L@% 4 +secretly 'sikrItlI Pu% 3 +secrets 'sikrIts Mj% 2 +secs seks Kj$ 1 +sect sekt K6% 1 +sectarian sek'te@rI@n K6$,OA% 4 +sectarianism sek'te@rI@nIz@m L@% 6 +sectarians sek'te@rI@nz Kj$ 4 +section 'sekSn K6% 2 +sectional 'sekS@nl OA$ 3 +sectionalism 'sekS@n@lIz@m L@$ 5 +sections 'sekSnz Kj% 2 +sector 'sekt@R K6% 2 +sectors 'sekt@z Kj% 2 +sects sekts Kj% 1 +secular 'sekjUl@R OA% 3 +secularism 'sekjUl@rIz@m L@$ 5 +secularist 'sekjUl@rIst K6$ 4 +secularists 'sekjUl@rIsts Kj$ 4 +secularize 'sekj@l@raIz H2$ 46A +secularized 'sekj@l@raIzd Hc$,Hd$ 46A +secularizes 'sekj@l@raIzIz Ha$ 56A +secularizing 'sekj@l@raIzIN Hb$ 56A +secure sI'kjU@R H2%,OA% 26A,12B,13B,14 +secured sI'kjU@d Hc%,Hd% 26A,12B,13B,14 +securely sI'kjU@lI Pu% 3 +secures sI'kjU@z Ha% 26A,12B,13B,14 +securing sI'kjU@rIN Hb% 36A,12B,13B,14 +securities sI'kjU@rItIz Mj% 4 +security sI'kjU@rItI M8% 4 +sedan sI'd&n K6$ 2 +sedan-chair sI'd&n-tSe@R K6$ 3 +sedan-chairs sI'd&n-tSe@z Kj$ 3 +sedans sI'd&nz Kj$ 2 +sedate sI'deIt H2%,OA% 26A +sedated sI'deItId Hc%,Hd% 36A +sedately sI'deItlI Pu% 3 +sedateness sI'deItn@s L@% 3 +sedates sI'deIts Ha% 26A +sedating sI'deItIN Hb% 36A +sedation sI'deISn L@% 3 +sedative 'sed@tIv M6%,OA% 3 +sedatives 'sed@tIvz Mj% 3 +sedentary 'sedntrI OA% 3 +sedge sedZ M6% 1 +sedges 'sedZIz Mj% 2 +sedgier 'sedZI@R Or$ 3 +sedgiest 'sedZIIst Os$ 3 +sedgy 'sedZI OD$ 2 +sediment 'sedIm@nt L@% 3 +sedimentary ,sedI'mentrI OA% 4 +sedition sI'dISn L@% 3 +seditious sI'dIS@s OA% 3 +seduce sI'djus H2% 26A,14 +seduced sI'djust Hc%,Hd% 26A,14 +seducer sI'djus@R K6% 3 +seducers sI'djus@z Kj% 3 +seduces sI'djusIz Ha% 36A,14 +seducing sI'djusIN Hb% 36A,14 +seduction sI'dVkSn M6% 3 +seductions sI'dVkSnz Mj% 3 +seductive sI'dVktIv OA% 3 +seductively sI'dVktIvlI Pu% 4 +sedulous 'sedjUl@s OA$ 3 +sedulously 'sedjUl@slI Pu$ 4 +see si J5*,K6% 12A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +see-through 'si-Tru OA% 2 +seed sid J0$,M9% 12A,6A +seed-corn 'sid-kOn L@% 2 +seed-pearls 'sid-p3lz Kj% 2 +seedbed 'sidbed K6% 2 +seedbeds 'sidbedz Kj% 2 +seedcake 'sidkeIk K6% 2 +seedcakes 'sidkeIks Kj% 2 +seeded 'sidId Jc%,Jd% 22A,6A +seedier 'sidI@R Or% 3 +seediest 'sidIIst Os% 3 +seedily 'sidIlI Pu% 3 +seediness 'sidIn@s L@% 3 +seeding 'sidIN Jb$ 22A,6A +seedless 'sidl@s OA% 2 +seedling 'sidlIN K6% 2 +seedlings 'sidlINz Kj% 2 +seeds sidz Ja$,Kj% 12A,6A +seedsman 'sidzm@n Ki% 2 +seedsmen 'sidzm@n Kj% 2 +seedtime 'sidtaIm K6% 2 +seedtimes 'sidtaImz Kj$ 2 +seedy 'sidI OD% 2 +seeing 'siIN Jb% 22A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +seek sik H5% 12A,3A,6A,7A,15A +seeker 'sik@R K6% 2 +seekers 'sik@z Kj% 2 +seeking 'sikIN Hb% 22A,3A,6A,7A,15A +seeks siks Ha% 12A,3A,6A,7A,15A +seem sim I0* 12A,4D,4E +seemed simd Ic*,Id* 12A,4D,4E +seeming 'simIN Ib%,OA% 22A,4D,4E +seemingly 'simINlI Pu% 3 +seemlier 'simlI@R Or$ 3 +seemliest 'simlIIst Os$ 3 +seemliness 'simlIn@s L@% 3 +seemly 'simlI OD% 2 +seems simz Ia% 12A,4D,4E +seen sin Jd* 12A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +seep sip I0% 12C +seepage 'sipIdZ L@% 2 +seeped sipt Ic%,Id% 12C +seeping 'sipIN Ib% 22C +seeps sips Ia% 12C +seer sI@R K6% 2 +seers sI@z Kj% 2 +seersucker 'sI@sVk@R L@$ 3 +sees siz Ja%,Kj$ 12A,2B,2C,4A,6A,8,9,10,15A,16B,18A,19A,22,24A +seesaw 'sisO I0%,M6% 2 +seesawed 'sisOd Ic%,Id% 2 +seesawing 'sisOIN Ib% 3 +seesaws 'sisOz Ia%,Mj% 2 +seethe siD J2% 12A,3A,6A +seethed siDd Jc%,Jd% 12A,3A,6A +seethes siDz Ja% 12A,3A,6A +seething 'siDIN Jb% 22A,3A,6A +segment 'segm@nt K6% 2 +segment seg'ment J0% 2 +segmentation ,segm@n'teISn M6$ 4 +segmentations ,segm@n'teISnz Mj$ 4 +segmented seg'mentId Jc%,Jd% 3 +segmenting seg'mentIN Jb% 3 +segments 'segm@nts Kj% 2 +segments seg'ments Ja% 2 +segregate 'segrIgeIt H2% 36A +segregated 'segrIgeItId Hc%,Hd% 46A +segregates 'segrIgeIts Ha% 36A +segregating 'segrIgeItIN Hb% 46A +segregation ,segrI'geISn K6% 4 +segregations ,segrI'geISnz Kj% 4 +seignior 'seInj@R K6$ 2 +seigniors 'seInj@z Kj$ 2 +seine seIn J2$,K6$ 1 +seined seInd Jc$,Jd$ 1 +seines seInz Ja$,Kj$ 1 +seining 'seInIN Jb$ 2 +seismic 'saIzmIk OA% 2 +seismograph 'saIzm@grAf K6% 3 +seismographs 'saIzm@grAfs Kj% 3 +seismologist saIz'm0l@dZIst K6% 4 +seismologists saIz'm0l@dZIsts Kj% 4 +seismology saIz'm0l@dZI L@% 4 +seize siz J2% 12A,2C,3A,6A,15A +seized sizd Jc%,Jd% 12A,2C,3A,6A,15A +seizes 'sizIz Ja% 22A,2C,3A,6A,15A +seizing 'sizIN Jb% 22A,2C,3A,6A,15A +seizure 'siZ@R M6% 2 +seizures 'siZ@z Mj% 2 +seldom 'seld@m Pu% 2 +select sI'lekt H0%,OA% 26A,15A,16A +selected sI'lektId Hc%,Hd% 36A,15A,16A +selecting sI'lektIN Hb% 36A,15A,16A +selection sI'lekSn M6% 3 +selections sI'lekSnz Mj% 3 +selective sI'lektIv OA% 3 +selectively sI'lektIvlI Pu% 4 +selectivity ,sIlek'tIvItI L@% 5 +selector sI'lekt@R K6% 3 +selectors sI'lekt@z Kj% 3 +selects sI'lekts Ha% 26A,15A,16A +selenium sI'linI@m L@$ 4 +self self Mi% 1 +self- self- U-% 1 +self-abasement self-@'beIsm@nt L@% 4 +self-abnegation self-,&bnI'geISn L@$ 5 +self-absorbed ,self-@b'zObd OA% 3 +self-acting self-'&ktIN OA$ 3 +self-activating self-'&ktIveItIN OA% 5 +self-addressed ,self-@'drest OA% 3 +self-appointed ,self-@'poIntID OA% 4 +self-assertion self-@'s3Sn L@% 4 +self-assertive self-@'s3tIv OA% 4 +self-assurance self-@'SU@r@ns L@% 4 +self-assured ,self-@'SU@d OA% 3 +self-centred self-'sent@d OA% 3 +self-collected ,self-k@'lektId OA$ 4 +self-coloured self-'kVl@d OA$ 3 +self-command self-k@'mAnd L@% 3 +self-communion self-k@'mjunI@n L@$ 4 +self-complacency ,self-k@m'pleIsnsI L@$ 5 +self-confessed ,self-k@n'fest OA% 3 +self-confidence self-'k0nfId@ns L@% 4 +self-confident self-'k0nfId@nt OA% 4 +self-conscious self-'k0nS@s OA% 3 +self-consciousness self-'k0nS@sn@s L@% 4 +self-contained ,self-k@n'teInd OA% 3 +self-control self-k@n'tr@Ul L@% 3 +self-defence self-dI'fens L@% 3 +self-denial self-dI'naI@l L@% 4 +self-denying ,self-dI'naIIN OA% 4 +self-determination self-dI,t3mI'neISn L@% 6 +self-educated self-'edj@keItId OA% 5 +self-effacing ,self-I'feIsIN OA% 4 +self-employed ,self-Im'ploId OA% 3 +self-esteem self-I'stim L@% 3 +self-evident self-'evId@nt OA% 4 +self-examination ,self-Ig,z&mI'neISn M6% 6 +self-examinations ,self-Ig,z&mI'neISnz Mj% 6 +self-explanatory self-Ik'spl&n@trI OA% 5 +self-help self-'help L@% 2 +self-importance self-Im'pOtns L@% 4 +self-important self-Im'pOtnt OA% 4 +self-imposed ,self-Im'p@Uzd OA% 3 +self-indulgence self-In'dVldZ@ns L@% 4 +self-indulgent ,self-In'dVldZ@nt OA% 4 +self-interest self-'Intr@st L@% 3 +self-locking self-'l0kIN OA% 3 +self-made 'self-meId OA% 2 +self-opinionated ,self-@'pInI@neItId OA% 6 +self-pity self-'pItI L@% 3 +self-possessed ,self-p@'zest OA% 3 +self-possession self-p@'zeSn L@% 4 +self-preservation ,self-,prez@'veISn L@% 5 +self-raising self-'reIzIN OA% 3 +self-reliance self-rI'laI@ns L@% 4 +self-reliant ,self-rI'laI@nt OA% 4 +self-respect self-rI'spekt L@% 3 +self-respecting ,self-rI'spektIN OA% 4 +self-righteous self-'raItS@s OA% 3 +self-rule self-'rul L@% 2 +self-sacrifice self-'s&krIfaIs M6% 4 +self-sacrifices self-'s&krIfaIsIz Mj$ 5 +self-sacrificing self-'s&krIfaIsIN OA% 5 +self-same 'self-seIm OA% 2 +self-sealing self-'silIN OA% 3 +self-seeker self-'sik@R K6$ 3 +self-seekers self-'sik@z Kj$ 3 +self-seeking self-'sikIN L@%,OA% 3 +self-service self-'s3vIs L@% 3 +self-sown self-'s@Un OA$ 2 +self-starter self-'stAt@R K6% 3 +self-starters self-'stAt@z Kj% 3 +self-styled 'self-staIld OA% 2 +self-sufficiency self-s@'fIS@nsI L@% 5 +self-sufficient self-s@'fISnt OA% 4 +self-sufficing ,self-s@'faIsIN OA$ 4 +self-supporting ,self-s@'pOtIN OA% 4 +self-will self-'wIl L@% 2 +self-willed self-'wIld OA% 2 +self-winding self-'waIndIN OA% 3 +selfconsciously self'k0nS@slI Pu% 4 +selfish 'selfIS OA% 2 +selfishly 'selfISlI Pu% 3 +selfishness 'selfISn@s L@% 3 +sell sel J5%,Ki% 12A,2C,6A,12A,13A,15B +seller 'sel@R K6% 2 +sellers 'sel@z Kj% 2 +selling 'selIN Jb%,L@% 22A,2C,6A,12A,13A,15B +sellout 'selaUt K6% 2 +sellouts 'selaUts Kj$ 2 +sells selz Ja% 12A,2C,6A,12A,13A,15B +selvage 'selvIdZ K6$ 2 +selvages 'selvIdZIz Kj$ 3 +selvedge 'selvIdZ K6$ 2 +selvedges 'selvIdZIz Kj$ 3 +selves selvz Kj% 1 +semantic sI'm&ntIk OA% 3 +semantics sI'm&ntIks Lk% 3 +semaphore 'sem@fOR J2$,L@% 32A,6A +semaphored 'sem@fOd Jc$,Jd$ 32A,6A +semaphores 'sem@fOz Ja$ 32A,6A +semaphoring 'sem@fOrIN Jb$ 42A,6A +semblance 'sembl@ns M6% 2 +semblances 'sembl@nsIz Mj$ 3 +semen 'sim@n L@% 2 +semester sI'mest@R K6% 3 +semesters sI'mest@z Kj% 3 +semi- 'semI- U-% 2 +semibreve 'semIbriv K6$ 3 +semibreves 'semIbrivz Kj$ 3 +semicircle 'semIs3kl K6% 4 +semicircles 'semIs3klz Kj% 4 +semicircular ,semI's3kjUl@R OA% 5 +semicolon ,semI'k@Ul@n K6% 4 +semicolons ,semI'k@Ul@nz Kj% 4 +semiconducting ,semIk@n'dVktIN OA% 5 +semiconductor ,semIk@n'dVkt@R K6% 5 +semiconductors ,semIk@n'dVkt@z Kj% 5 +semiconscious ,semI'k0nS@s OA% 4 +semidetached ,semIdI't&tSt OA% 4 +semifinal ,semI'faInl K6% 4 +semifinalist ,semI'faIn@lIst K6% 5 +semifinalists ,semI'faIn@lIsts Kj% 5 +semifinals ,semI'faInlz Kj% 4 +seminal 'semInl OA% 3 +seminar 'semInAR K6% 3 +seminaries 'semIn@rIz Kj$ 4 +seminarist 'semIn@rIst K6$ 4 +seminarists 'semIn@rIsts Kj$ 4 +seminars 'semInAz Kj% 3 +seminary 'semIn@rI K8% 4 +semiofficial ,semI@'fISl OA% 5 +semiquaver 'semIkweIv@R K6% 4 +semiquavers 'semIkweIv@z Kj% 4 +semirigid ,semI'rIdZId OA$ 4 +semitone 'semIt@Un K6% 3 +semitones 'semIt@Unz Kj% 3 +semitropical ,semI'tr0pIkl OA$ 5 +semivowel 'semIvaU@l K6$ 4 +semivowels 'semIvaU@lz Kj$ 4 +semolina ,sem@'lin@ L@% 4 +sempstress 'sempstrIs K7$ 2 +sempstresses 'sempstrIsIz Kj$ 3 +senate 'senIt K6% 2 +senates 'senIts Kj% 2 +senator 'sen@t@R K6% 3 +senatorial ,sen@'tOrI@l OA% 5 +senators 'sen@t@z Kj% 3 +send send J5% 12C,3A,6A,12A,13A,15A,15B,19B,22 +send-up 'send-Vp K6% 2 +send-ups 'send-Vps Kj$ 2 +sender 'send@R K6% 2 +senders 'send@z Kj% 2 +sending 'sendIN Jb% 22C,3A,6A,12A,13A,15A,15B,19B,22 +sendoff 'send0f K6% 2 +sendoffs 'send0fs Kj$ 2 +sends senz Ja% 12C,3A,6A,12A,13A,15A,15B,19B,22 +senescence sI'nesns L@$ 3 +senescent sI'nesnt OA$ 3 +seneschal 'senISl K6$ 3 +seneschals 'senISlz Kj$ 3 +senile 'sinaIl OA% 2 +senility sI'nIlItI L@% 4 +senior 'sinI@R K6%,OA% 3 +seniority ,sinI'0rItI L@% 5 +seniors 'sinI@z Kj% 3 +senna 'sen@ L@$ 2 +senora se'njOr@ K6$ 3 +senoras se'njOr@z Kj$ 3 +senores se'njOreIz Kj$ 3 +senorita ,senjO'rit@ K6$ 4 +senoritas ,senjO'rit@z Kj$ 4 +sensation sen'seISn M6% 3 +sensational sIn'seIS@nl OA% 4 +sensationalism sIn'seIS@n@lIz@m L@% 6 +sensationalist sIn'seISn@lIst K6% 4 +sensationalists sIn'seISn@lIsts Kj% 4 +sensationally sIn'seIS@n@lI Pu% 5 +sensations sen'seISnz Mj% 3 +sense sens H2%,M6* 16A,9 +sense-organ 'sens-Og@n K6% 3 +sense-organs 'sens-Og@nz Kj% 3 +sensed senst Hc%,Hd% 16A,9 +senseless 'senslIs OA% 2 +senselessly 'senslIslI Pu% 3 +senselessness 'senslIsn@s L@% 3 +senses 'sensIz Ha%,Mj% 26A,9 +sensibilities ,sens@'bIlItIz Mj% 5 +sensibility ,sens@'bIlItI M8% 5 +sensible 'sens@bl OA% 3 +sensibly 'sens@blI Pu% 3 +sensing 'sensIN Hb% 26A,9 +sensitive 'sens@tIv OA% 3 +sensitively 'sens@tIvlI Pu% 4 +sensitivities ,sens@'tIvItIz Mj% 5 +sensitivity ,sens@'tIvItI M8% 5 +sensitization ,sensItaI'zeISn L@% 5 +sensitize 'sensItaIz H2% 36A +sensitized 'sensItaIzd Hc%,Hd% 36A +sensitizes 'sensItaIzIz Ha% 46A +sensitizing 'sensItaIzIN Hb% 46A +sensory 'sens@rI OA% 3 +sensual 'senSU@l OA% 3 +sensualism 'senSU@lIz@m L@$ 5 +sensualist 'senSU@lIst K6% 4 +sensualists 'senSU@lIsts Kj$ 4 +sensuality ,senSU'&lItI L@% 5 +sensuous 'senSU@s OA% 3 +sensuously 'senSU@slI Pu% 4 +sensuousness 'senSU@sn@s L@% 4 +sent sent Jc%,Jd% 12C,3A,6A,12A,13A,15A,15B,19B,22 +sentence 'sent@ns H2%,K6% 26A,14,17 +sentenced 'sent@nst Hc%,Hd% 26A,14,17 +sentences 'sent@nsIz Ha%,Kj% 36A,14,17 +sentencing 'sent@nsIN Hb% 36A,14,17 +sententious sen'tenS@s OA% 3 +sententiously sen'tenS@slI Pu% 4 +sentient 'senSnt OA% 2 +sentiment 'sentIm@nt M6% 3 +sentimental ,sentI'mentl OA% 4 +sentimentalist ,sentI'ment@lIst K6% 5 +sentimentalists ,sentI'ment@lIsts Kj$ 5 +sentimentality ,sentImen't&lItI L@% 6 +sentimentalize ,sentI'ment@laIz J2% 52A,6A +sentimentalized ,sentI'ment@laIzd Jc%,Jd% 52A,6A +sentimentalizes ,sentI'ment@laIzIz Ja% 62A,6A +sentimentalizing ,sentI'ment@laIzIN Jb% 62A,6A +sentimentally ,sentI'ment@lI Pu% 5 +sentiments 'sentIm@nts Mj% 3 +sentinel 'sentInl K6% 3 +sentinels 'sentInlz Kj% 3 +sentries 'sentrIz Kj% 2 +sentry 'sentrI K8% 2 +sentry-box 'sentrI-b0ks K7% 3 +sentry-boxes 'sentrI-b0ksIz Kj% 4 +sentry-go 'sentrI-g@U Ki$ 3 +sepal 'sepl K6$ 2 +sepals 'seplz Kj$ 2 +separability ,sepr@'bIlItI L@% 5 +separable 'sep@r@bl OA% 4 +separably 'sep@r@blI Pu% 4 +separate 'sep@reIt J2% 32A,6A,14,15B +separate 'sepr@t K6%,OA% 2 +separated 'sep@reItId Jc%,Jd% 42A,6A,14,15B +separately 'sepr@tlI Pu% 3 +separates 'sep@reIts Ja% 32A,6A,14,15B +separates 'sepr@ts Kj% 2 +separating 'sep@reItIN Jb% 42A,6A,14,15B +separation ,sep@'reISn M6% 4 +separations ,sep@'reISnz Mj% 4 +separatist 'sep@r@tIst K6% 4 +separatists 'sep@r@tIsts Kj% 4 +separator 'sep@reIt@R K6% 4 +separators 'sep@reIt@z Kj% 4 +sepia 'sipI@ L@% 3 +sepsis 'sepsIs L@$ 2 +septet sep'tet K6% 2 +septets sep'tets Kj% 2 +septic 'septIk OA% 2 +septicaemia ,septI'simI@ L@% 5 +septicemia ,septI'simI@ L@% 5 +septuagenarian ,septjU@dZI'ne@rI@n K6% 7 +septuagenarians ,septjU@dZI'ne@rI@nz Kj% 7 +sepulchral sI'pVlkr@l OA% 3 +sepulchre 'seplk@R K6% 3 +sepulchres 'seplk@z Kj% 3 +sepulture 'sepltSU@R L@$ 3 +sequel 'sikw@l K6% 2 +sequels 'sikw@lz Kj% 2 +sequence 'sikw@ns M6% 2 +sequences 'sikw@nsIz Mj% 3 +sequent 'sikw@nt OA$ 2 +sequential sI'kwenSl OA% 3 +sequentially sI'kwenS@lI Pu% 4 +sequester sI'kwest@R H0$ 36A +sequestered sI'kwest@d Hc$,Hd$,OA$ 36A +sequestering sI'kwest@rIN Hb$ 46A +sequesters sI'kwest@z Ha$ 36A +sequestrate sI'kwestreIt H2$ 36A +sequestrated sI'kwestreItId Hc$,Hd$ 46A +sequestrates sI'kwestreIts Ha$ 36A +sequestrating sI'kwestreItIN Hb$ 46A +sequestration ,sikwe'streISn M6$ 4 +sequestrations ,sikwe'streISnz Mj$ 4 +sequin 'sikwIn K6% 2 +sequins 'sikwInz Kj% 2 +sequoia sI'kwoI@ K6$ 3 +sequoias sI'kwoI@z Kj$ 3 +seraglio se'rAlI@U K6$ 4 +seraglios se'rAlI@Uz Kj$ 4 +seraph 'ser@f K6$ 2 +seraphic se'r&fIk OA$ 3 +seraphim 'ser@fIm Kj$ 3 +seraphs 'ser@fs Kj$ 2 +sere sI@R OA$ 1 +serenade ,ser@'neId H2%,K6% 36A +serenaded ,ser@'neIdId Hc%,Hd% 46A +serenades ,ser@'neIdz Ha%,Kj% 36A +serenading ,ser@'neIdIN Hb% 46A +serendipity ,ser@n'dIpItI L@% 5 +serene sI'rin OA% 2 +serenely sI'rinlI Pu% 3 +serenity sI'renItI L@% 4 +serf s3f K6$ 1 +serfdom 's3fd@m L@$ 2 +serfs s3fs Kj$ 1 +serge s3dZ L@$ 1 +sergeant 'sAdZ@nt K6% 2 +sergeant-major ,sAdZ@nt-'meIdZ@R K6% 4 +sergeant-majors ,sAdZ@nt-'meIdZ@z Kj% 4 +sergeants 'sAdZ@nts Kj% 2 +serial 'sI@rI@l K6%,OA% 3 +serialize 'sI@rI@laIz H2% 46A +serialized 'sI@rI@laIzd Hc%,Hd% 46A +serializes 'sI@rI@laIzIz Ha% 56A +serializing 'sI@rI@laIzIN Hb% 56A +serially 'sI@rI@lI Pu% 4 +serials 'sI@rI@lz Kj% 3 +seriatim ,sI@rI'eItIm Pu$ 4 +sericultural ,serI'kVltS@r@l OA$ 5 +sericulture 'serIkVltS@R K6$ 4 +sericultures 'serIkVltS@z Kj$ 4 +sericulturist ,serI'kVltS@rIst K6$ 5 +sericulturists ,serI'kVltS@rIsts Kj$ 5 +series 'sI@riz K9% 2 +seriocomic ,sI@rI@U'k0mIk OA$ 5 +serious 'sI@rI@s OA% 3 +seriously 'sI@rI@slI Pu% 4 +seriousness 'sI@rI@sn@s L@% 4 +serjeant 'sAdZ@nt K6$ 2 +serjeants 'sAdZ@nts Kj$ 2 +sermon 's3m@n K6% 2 +sermonize 's3m@naIz J2% 32A,6A +sermonized 's3m@naIzd Jc%,Jd% 32A,6A +sermonizes 's3m@naIzIz Ja% 42A,6A +sermonizing 's3m@naIzIN Jb% 42A,6A +sermons 's3m@nz Kj% 2 +serous 'sI@r@s OA$ 2 +serpent 's3p@nt K6% 2 +serpentine 's3p@ntaIn OA% 3 +serpents 's3p@nts Kj% 2 +serrated sI'reItId OA% 3 +serried 'serId OA% 2 +serum 'sI@r@m L@% 2 +servant 's3v@nt K6% 2 +servants 's3v@nts Kj% 2 +serve s3v J2%,K6% 12A,2B,2C,3A,4A,6A,14,15A,15B +served s3vd Jc%,Jd% 12A,2B,2C,3A,4A,6A,14,15A,15B +server 's3v@R K6% 2 +servers 's3v@z Kj% 2 +serves s3vz Ja%,Kj% 12A,2B,2C,3A,4A,6A,14,15A,15B +service 's3vIs H2%,M6% 26A +serviceable 's3vIs@bl OA% 4 +serviced 's3vIst Hc%,Hd% 26A +serviceman 's3vIsm@n Ki% 3 +servicemen 's3vIsmen Kj% 3 +services 's3vIsIz Ha%,Mj% 36A +servicing 's3vIsIN Hb% 36A +serviette ,s3vI'et K6% 3 +serviettes ,s3vI'ets Kj% 3 +servile 's3vaIl OA% 2 +servilely 's3vaIlI Pu$ 3 +servility s3'vIlItI L@% 4 +serving 's3vIN Jb%,K6% 22A,2B,2C,3A,4A,6A,14,15A,15B +servings 's3vINz Kj% 2 +servitor 's3vIt@R K6$ 3 +servitors 's3vIt@z Kj$ 3 +servitude 's3vItjud L@% 3 +servo- 's3v@U- U-% 2 +sesame 'ses@mI L@% 3 +sesquipedalian ,seskwIpI'deIlI@n OA$ 6 +session 'seSn K6% 2 +sessions 'seSnz Kj% 2 +set set J5*,Jc*,Jd*,M6* 12A,2C,3A,6A,12C,14,15A,16A,17,19B,22 +set-square 'set-skwe@R K6% 2 +set-squares 'set-skwe@z Kj% 2 +set-to set-'tu K6% 2 +set-tos set-'tuz Kj% 2 +set-up 'set-Vp K6% 2 +set-ups 'set-Vps Kj$ 2 +setback 'setb&k K6% 2 +setbacks 'setb&ks Kj% 2 +sets sets Ja%,Mj% 12A,2C,3A,6A,12C,14,15A,16A,17,19B,22 +sett set K6$ 1 +settee se'ti K6% 2 +settees se'tiz Kj% 2 +setter 'set@R K6% 2 +setters 'set@z Kj% 2 +setting 'setIN Jb%,K6% 22A,2C,3A,6A,12C,14,15A,16A,17,19B,22 +settings 'setINz Kj% 2 +settle 'setl J2%,K6$ 22A,2C,3A,6A,7A,8,10,14,15A,15B +settled 'setld Jc%,Jd%,OA% 22A,2C,3A,6A,7A,8,10,14,15A,15B +settlement 'setlm@nt M6% 3 +settlements 'setlm@nts Mj% 3 +settler 'setl@R K6% 2 +settlers 'setl@z Kj% 2 +settles 'setlz Ja%,Kj$ 22A,2C,3A,6A,7A,8,10,14,15A,15B +settling 'setlIN Jb% 22A,2C,3A,6A,7A,8,10,14,15A,15B +setts sets Kj$ 1 +seven 'sevn K6%,OA% 2 +sevenfold 'sev@nf@Uld OA%,Pu% 3 +sevens 'sevnz Kj% 2 +seventeen ,sevn'tin K6%,OA% 3 +seventeens ,sevn'tinz Kj% 3 +seventeenth ,sevn'tinT K6%,OA% 3 +seventeenths ,sevn'tinTs Kj% 3 +seventh 'sevnT K6%,OA% 2 +seventhly 'sevnTlI Pu$ 3 +sevenths 'sevnTs Kj% 2 +seventies 'sevntIz Kj% 3 +seventieth 'sevntI@T K6%,OA% 4 +seventieths 'sevntI@Ts Kj% 4 +seventy 'sevntI K8%,OA% 3 +sever 'sev@R J0% 22A,6A,15A +several 'sevr@l OA*,Qx* 2 +severally 'sevr@lI Pu% 3 +severance 'sev@r@ns L@% 3 +severe sI'vI@R OB% 2 +severed 'sev@d Jc%,Jd% 22A,6A,15A +severely sI'vI@lI Pu% 3 +severer sI'vI@r@R Or% 3 +severest sI'vI@rIst Os% 3 +severing 'sev@rIN Jb% 32A,6A,15A +severities sI'verItIz Mj% 4 +severity sI'verItI M8% 4 +severs 'sev@z Ja% 22A,6A,15A +sew s@U J5% 12A,2B,2C,6A,15B +sewage 'sjuIdZ L@% 2 +sewage-farm 'sjuIdZ-fAm K6% 3 +sewage-farms 'sjuIdZ-fAmz Kj% 3 +sewage-works 'sjuIdZ-w3ks K9% 3 +sewed s@Ud Jc%,Jd% 12A,2B,2C,6A,15B +sewer 's@U@R K6$ 2 +sewer 'sju@R K6% 2 +sewer-gas 'sju@-g&s L@% 3 +sewer-rat 'sju@-r&t K6% 3 +sewer-rats 'sju@-r&ts Kj% 3 +sewerage 'sju@rIdZ M6% 3 +sewerages 'sju@rIdZIz Mj$ 4 +sewers 's@U@z Kj$ 2 +sewers 'sju@z Kj% 2 +sewing 's@UIN Jb%,L@% 22A,2B,2C,6A,15B +sewing-machine 's@UIN-m@Sin K6% 4 +sewing-machines 's@UIN-m@Sinz Kj% 4 +sewn s@Un Jc%,Jd% 12A,2B,2C,6A,15B +sews s@Uz Ja% 12A,2B,2C,6A,15B +sex seks H1%,M7% 16A +sex-starved 'seks-stAvd OA% 2 +sexagenarian ,seks@dZI'ne@rI@n K6%,OA% 6 +sexagenarians ,seks@dZI'ne@rI@nz Kj% 6 +sexed sekst Hc$,Hd%,OA% 16A +sexes 'seksIz Ha$,Mj% 26A +sexier 'seksI@R Or% 3 +sexiest 'seksIIst Os% 3 +sexing 'seksIN Hb$ 26A +sexism 'seksIz@m L@% 3 +sexist 'seksIst K6%,OA% 2 +sexists 'seksIsts Kj% 2 +sexless 'seksl@s OA% 2 +sextant 'sekst@nt K6$ 2 +sextants 'sekst@nts Kj$ 2 +sextet seks'tet K6% 2 +sextets seks'tets Kj% 2 +sextette seks'tet K6$ 2 +sextettes seks'tets Kj$ 2 +sexton 'sekst@n K6% 2 +sextons 'sekst@nz Kj% 2 +sexual 'sekSU@l OA% 3 +sexuality ,sekSU'&lItI L@% 5 +sexually 'sekSU@lI Pu% 4 +sexy 'seksI OD% 2 +se~nor se'njOR Ki% 2 +sgd saInd Y~% 1 +shabbier 'S&bI@R Or% 3 +shabbiest 'S&bIIst Os% 3 +shabbily 'S&bIlI Pu% 3 +shabbiness 'S&bIn@s L@% 3 +shabby 'S&bI OD% 2 +shabby-genteel ,S&bI-dZen'til OA$ 4 +shack S&k I0%,K6% 12C +shacked S&kt Ic%,Id% 12C +shacking 'S&kIN Ib% 22C +shackle 'S&kl H2%,K6% 26A +shackled 'S&kld Hc%,Hd% 26A +shackles 'S&klz Ha%,Kj% 26A +shackling 'S&klIN Hb% 26A +shacks S&ks Ia%,Kj% 12C +shad S&d K9$ 1 +shaddock 'S&d@k K6$ 2 +shaddocks 'S&d@ks Kj$ 2 +shade SeId J2%,M6% 12C,6A,15A +shade-tree 'SeId-tri K6$ 2 +shade-trees 'SeId-triz Kj$ 2 +shaded 'SeIdId Jc%,Jd% 22C,6A,15A +shades SeIdz Ja%,Mj% 12C,6A,15A +shadier 'SeIdI@R Or% 3 +shadiest 'SeIdIIst Os% 3 +shading 'SeIdIN Jb%,M6% 22C,6A,15A +shadings 'SeIdINz Mj% 2 +shadow 'S&d@U H0%,M6% 26A +shadow-boxing 'S&d@U-b0ksIN L@% 4 +shadowed 'S&d@Ud Hc%,Hd% 26A +shadowier 'S&d@UI@R Or$ 4 +shadowiest 'S&d@UIIst Os$ 4 +shadowing 'S&d@UIN Hb% 36A +shadows 'S&d@Uz Ha%,Mj% 26A +shadowy 'S&d@UI OD% 3 +shady 'SeIdI OD% 2 +shaft SAft K6% 1 +shafts SAfts Kj% 1 +shag S&g J4$,L@$ 16A +shagged S&gd Jc%,Jd% 16A +shaggier 'S&gI@R Or% 3 +shaggiest 'S&gIIst Os% 3 +shaggily 'S&gIlI Pu% 3 +shagginess 'S&gIn@s L@% 3 +shagging 'S&gIN Jb%,L@% 26A +shaggy 'S&gI OD% 2 +shags S&gz Ja% 16A +shah SA K6$ 1 +shahs SAz Kj$ 1 +shake SeIk J5%,K6% 12A,2C,6A,14,15A,15B +shake-up 'SeIk-Vp K6% 2 +shake-ups 'SeIk-Vps Kj$ 2 +shakedown 'SeIkdaUn K6% 2 +shakedowns 'SeIkdaUnz Kj$ 2 +shaken 'SeIk@n Jd% 22A,2C,6A,14,15A,15B +shakeout 'SeIkaUt K6% 2 +shakeouts 'SeIkaUts Kj$ 2 +shaker 'SeIk@R K6% 2 +shakers 'SeIk@z Kj% 2 +shakes SeIks Ja%,Kj% 12A,2C,6A,14,15A,15B +shakier 'SeIkI@R Or% 3 +shakiest 'SeIkIIst Os% 3 +shakily 'SeIkIlI Pu% 3 +shakiness 'SeIkIn@s L@% 3 +shaking 'SeIkIN Jb%,K6% 22A,2C,6A,14,15A,15B +shakings 'SeIkINz Kj% 2 +shaky 'SeIkI OD% 2 +shale SeIl L@% 1 +shale-oil 'SeIl-oIl L@$ 2 +shall S&l G5* 1 +shallot S@'l0t K6$ 2 +shallots S@'l0ts Kj$ 2 +shallow 'S&l@U I0$,K6%,OC% 2 +shallowed 'S&l@Ud Ic$,Id$ 2 +shallower 'S&l@U@R Or% 3 +shallowest 'S&l@UIst Os% 3 +shallowing 'S&l@UIN Ib$ 3 +shallows 'S&l@Uz Ia$,Kj% 2 +shalom S&'l0m W-$ 2 +shalt S< Ge$ 1 +sham S&m J4%,Mi%,OA% 12A,2D,6A +shamble 'S&mbl I2%,K6% 22A,2C +shambled 'S&mbld Ic%,Id% 22A,2C +shambles 'S&mblz Ia%,Ki% 22A,2C +shambling 'S&mblIN Ib% 22A,2C +shame SeIm H2%,L@% 16A,14 +shame-making 'SeIm-meIkIN OA$ 3 +shamed SeImd Hc%,Hd% 16A,14 +shamefaced 'SeImfeIst OA% 2 +shamefacedly 'SeImfeIstlI Pu% 4 +shameful 'SeImf@l OA% 2 +shamefully 'SeImf@lI Pu% 3 +shameless 'SeIml@s OA% 2 +shamelessly 'SeIml@slI Pu% 3 +shamelessness 'SeIml@sn@s L@% 3 +shames SeImz Ha% 16A,14 +shaming 'SeImIN Hb% 26A,14 +shammed S&md Jc%,Jd% 12A,2D,6A +shammies 'S&mIz Kj$ 2 +shamming 'S&mIN Jb% 22A,2D,6A +shammy 'S&mI K8$ 2 +shampoo S&m'pu H0%,M6% 26A +shampooed S&m'pud Hc%,Hd% 26A +shampooing S&m'puIN Hb% 36A +shampoos S&m'puz Ha%,Mj% 26A +shamrock 'S&mr0k K6% 2 +shamrocks 'S&mr0ks Kj% 2 +shams S&mz Ja$ 12A,2D,6A +shan't SAnt Gg% 1 +shandies 'S&ndIz Mj% 2 +shandy 'S&ndI M8% 2 +shanghai S&N'haI H0$ 2 +shanghaied S&N'haId Hc$,Hd$ 2 +shanghaiing S&N'haIIN Hb$ 3 +shanghais S&N'haIz Ha$ 2 +shank S&Nk K6% 1 +shanks S&Nks Kj% 1 +shanties 'S&ntIz Kj$ 2 +shantung S&n'tVN L@% 2 +shanty 'S&ntI K8% 2 +shantytown 'S&ntItaUn K6% 3 +shantytowns 'S&ntItaUnz Kj% 3 +shape SeIp J2%,M6% 12A,2C,6A,15A +shaped SeIpt Jc%,Jd% 12A,2C,6A,15A +shapeless 'SeIpl@s OA% 2 +shapelessly 'SeIpl@slI Pu% 3 +shapelessness 'SeIpl@sn@s L@% 3 +shapelier 'SeIplI@R Or% 3 +shapeliest 'SeIplIIst Os% 3 +shapely 'SeIplI OD% 2 +shapes SeIps Ja%,Mj% 12A,2C,6A,15A +shaping 'SeIpIN Jb% 22A,2C,6A,15A +shard SAd K6$ 1 +shards SAdz Kj$ 1 +share Se@R J2%,M6% 13A,6A,14,15B +share-out 'Se@r-aUt K6% 2 +share-outs 'Se@r-aUts Kj% 2 +sharecropper 'Se@kr0p@R K6$ 3 +sharecroppers 'Se@kr0p@z Kj$ 3 +shared Se@d Jc%,Jd% 13A,6A,14,15B +shareholder 'Se@h@Uld@R K6% 3 +shareholders 'Se@h@Uld@z Kj% 3 +shareholding 'Se@h@UldIN K6% 3 +shareholdings 'Se@h@UldINz Kj$ 3 +shares Se@z Ja%,Mj% 13A,6A,14,15B +sharing 'Se@rIN Jb% 23A,6A,14,15B +shark SAk K6% 1 +sharks SAks Kj% 1 +sharkskin 'SAkskIn M6% 2 +sharkskins 'SAkskInz Mj$ 2 +sharp SAp K6%,OC%,Pu% 1 +sharp-eyed 'SAp-aId OA% 2 +sharp-set 'SAp-set OA$ 2 +sharp-sighted SAp-'saItId OA% 3 +sharp-witted SAp-'wItId OA% 3 +sharpen 'SAp@n J0% 22A,6A +sharpened 'SAp@nd Jc%,Jd% 22A,6A +sharpener 'SApn@R K6% 2 +sharpeners 'SApn@z Kj% 2 +sharpening 'SAp@nIN Jb% 32A,6A +sharpens 'SAp@nz Ja% 22A,6A +sharper 'SAp@R K6$,Or% 2 +sharpers 'SAp@z Kj$ 2 +sharpest 'SApIst Os% 2 +sharply 'SAplI Pu% 2 +sharpness 'SApn@s L@% 2 +sharps SAps Kj$ 1 +sharpshooter 'SApSut@R K6% 3 +sharpshooters 'SApSut@z Kj% 3 +shat S&t Ic% 12A,3A +shatter 'S&t@R J0% 22A,6A +shattered 'S&t@d Jc%,Jd% 22A,6A +shattering 'S&t@rIN Jb% 32A,6A +shatterproof 'S&t@pruf OA% 3 +shatters 'S&t@z Ja% 22A,6A +shave SeIv J2%,K6% 12A,6A,15A,15B +shaved SeIvd Jc%,Jd% 12A,6A,15A,15B +shaven 'SeIvn Jd% 22A,6A,15A,15B +shaver 'SeIv@R K6% 2 +shavers 'SeIv@z Kj% 2 +shaves SeIvz Ja%,Kj% 12A,6A,15A,15B +shaving 'SeIvIN Jb% 22A,6A,15A,15B +shaving-brush 'SeIvIN-brVS K7% 3 +shaving-brushes 'SeIvIN-brVSIz Kj% 4 +shavings 'SeIvINz Kj% 2 +shawl SOl K6% 1 +shawls SOlz Kj% 1 +she Si Qx* 1 +she'd Sid Gf% 1 +she'll Sil Gf% 1 +she's Siz Gf% 1 +she-goat 'Si-g@Ut K6% 2 +she-goats 'Si-g@Uts Kj% 2 +sheaf Sif Ki% 1 +shear SI@R H0% 16A +sheared SI@d Hc%,Hd% 16A +shearing 'SI@rIN Hb% 26A +shears SI@z Ha%,Kj% 16A +sheath SiT K6% 1 +sheath-knife 'SiT-naIf Ki% 2 +sheath-knives 'SiT-naIvz Kj% 2 +sheathe SiD H2% 16A +sheathed SiDd Hc%,Hd% 16A +sheathes SiDz Ha% 16A +sheathing 'SiDIN Hb%,K6$ 26A +sheathings 'SiDINz Kj$ 2 +sheaths SiDz Kj% 1 +sheaves Sivz Kj% 1 +shebang SI'b&N Ki$ 2 +shebeen SI'bin K6$ 2 +shebeens SI'binz Kj$ 2 +shed Sed H5%,Hc%,Hd%,K6% 16A +shedding 'SedIN Hb% 26A +sheds Sedz Ha%,Kj% 16A +sheen Sin L@% 1 +sheep Sip K9% 1 +sheepdog 'Sipd0g K6% 2 +sheepdogs 'Sipd0gz Kj% 2 +sheepfold 'Sipf@Uld K6% 2 +sheepfolds 'Sipf@Uldz Kj% 2 +sheepish 'SipIS OA% 2 +sheepishly 'SipISlI Pu% 3 +sheepishness 'SipISn@s L@% 3 +sheeprun 'SiprVn K6% 2 +sheepruns 'SiprVnz Kj% 2 +sheepskin 'SipskIn K6% 2 +sheepskins 'SipskInz Kj% 2 +sheer SI@R I0%,OC%,Pu% 12C +sheered SI@d Ic%,Id% 12C +sheerer 'SI@r@R Or$ 2 +sheerest 'SI@rIst Os$ 2 +sheering 'SI@rIN Ib% 22C +sheers SI@z Ia% 12C +sheet Sit K6% 1 +sheet-anchor Sit-'&Nk@R K6% 3 +sheet-anchors Sit-'&Nk@z Kj% 3 +sheet-lightning Sit-'laItnIN L@% 3 +sheeting 'SitIN L@% 2 +sheets Sits Kj% 1 +sheik SeIk K6% 1 +sheikdom 'SeIkd@m K6% 2 +sheikdoms 'SeIkd@mz Kj% 2 +sheikh SeIk K6% 1 +sheikhdom 'SeIkd@m K6$ 2 +sheikhdoms 'SeIkd@mz Kj$ 2 +sheikhs SeIks Kj% 1 +sheiks SeIks Kj% 1 +shekel 'Sekl K6$ 2 +shekels 'Seklz Kj$ 2 +sheldrake 'SeldreIk K6$ 2 +sheldrakes 'SeldreIks Kj$ 2 +shelf Self Ki% 1 +shell Sel J0%,K6% 12C,6A,15B +shell-shock 'Sel-S0k L@% 2 +shellac S@'l&k H5$,L@% 2 +shellacked S@'l&kt Hc$,Hd$ 2 +shellacking S@'l&kIN Hb$ 3 +shellacs S@'l&ks Ha$ 2 +shelled Seld Jc%,Jd% 12C,6A,15B +shellfire 'SelfaI@R L@% 2 +shellfish 'SelfIS K9% 2 +shelling 'SelIN Jb% 22C,6A,15B +shellproof 'Selpruf OA% 2 +shells Selz Ja%,Kj% 12C,6A,15B +shelter 'Selt@R J0%,M6% 22A,2C,6A,14 +sheltered 'Selt@d Jc%,Jd% 22A,2C,6A,14 +sheltering 'Selt@rIN Jb% 32A,2C,6A,14 +shelters 'Selt@z Ja%,Mj% 22A,2C,6A,14 +shelve Selv J2% 12A,2C,6A +shelved Selvd Jc%,Jd% 12A,2C,6A +shelves Selvz Ja%,Kj% 12A,2C,6A +shelving 'SelvIN Jb% 22A,2C,6A +shepherd 'Sep@d H0%,K6% 26A,15A +shepherded 'Sep@dId Hc%,Hd% 36A,15A +shepherdess ,Sep@'des K7% 3 +shepherdesses ,Sep@'desIz Kj% 4 +shepherding 'Sep@dIN Hb% 36A,15A +shepherds 'Sep@dz Ha%,Kj% 26A,15A +sherbet 'S3b@t M6% 2 +sherbets 'S3b@ts Mj$ 2 +sheriff 'SerIf K6% 2 +sheriffs 'SerIfs Kj% 2 +sherries 'SerIz Mj% 2 +sherry 'SerI M8% 2 +shew S@U J0$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shewed S@Ud Jc$,Jd$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shewing 'S@UIN Jb$ 22A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shewn S@Un Jc$,Jd$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shews S@Uz Ja$ 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shibboleth 'SIb@leT K6$ 3 +shibboleths 'SIb@leTs Kj$ 3 +shied SaId Jc%,Jd% 12A,3A,6A,15A +shield Sild H0%,K6% 16A,15A +shielded 'SildId Hc%,Hd% 26A,15A +shielding 'SildIN Hb% 26A,15A +shields Sildz Ha%,Kj% 16A,15A +shies SaIz Ja%,Kj% 12A,3A,6A,15A +shift SIft J0%,K6% 12A,2C,6A,14,15A +shifted 'SIftId Jc%,Jd% 22A,2C,6A,14,15A +shiftier 'SIftI@R Or% 3 +shiftiest 'SIftIIst Os% 3 +shiftily 'SIftIlI Pu% 3 +shiftiness 'SIftIn@s L@% 3 +shifting 'SIftIN Jb% 22A,2C,6A,14,15A +shiftless 'SIftl@s OA% 2 +shifts SIfts Ja%,Kj% 12A,2C,6A,14,15A +shifty 'SIftI OD% 2 +shillelagh SI'leIl@ K6$ 3 +shillelaghs SI'leIl@z Kj$ 3 +shilling 'SIlIN K6% 2 +shillings 'SIlINz Kj% 2 +shillyshallied 'SIlIS&lId Ic%,Id% 42A +shillyshallies 'SIlIS&lIz Ia% 42A +shillyshally 'SIlIS&lI I3%,L@% 42A +shillyshallying 'SIlIS&lIIN Ib% 52A +shimmer 'SIm@R I0%,L@% 22A,2C +shimmered 'SIm@d Ic%,Id% 22A,2C +shimmering 'SIm@rIN Ib% 32A,2C +shimmers 'SIm@z Ia% 22A,2C +shin SIn I4%,K6% 13A +shinbone 'SInb@Un K6% 2 +shinbones 'SInb@Unz Kj% 2 +shindies 'SIndIz Kj% 2 +shindig 'SIndIg K6% 2 +shindigs 'SIndIgz Kj% 2 +shindy 'SIndI K8% 2 +shine SaIn J5%,L@% 12A,2C,6A +shines SaInz Ja% 12A,2C,6A +shingle 'SINgl H2$,M6% 26A +shingled 'SINgld Hc$,Hd$ 26A +shingles 'SINglz Ha$,Lk%,Mj% 26A +shinglier 'SINglI@R Or$ 3 +shingliest 'SINglIIst Os$ 3 +shingling 'SINglIN Hb$ 26A +shingly 'SINglI OD% 2 +shinguard 'SIngAd K6% 2 +shinguards 'SIngAdz Kj% 2 +shinier 'SaInI@R Or% 3 +shiniest 'SaInIIst Os% 3 +shining 'SaInIN Jb% 22A,2C,6A +shinned SInd Ic%,Id% 13A +shinning 'SInIN Ib% 23A +shins SInz Ia%,Kj% 13A +shiny 'SaInI OD% 2 +ship SIp J4%,K6% 12C,6A,15A,15B +ship's-chandler Sips-'tSAndl@R K6% 3 +ship's-chandlers Sips-'tSAndl@z Kj% 3 +ship-breaker 'SIp-breIk@R K6% 3 +ship-breakers 'SIp-breIk@z Kj% 3 +ship-canal 'SIp-k@n&l K6% 3 +ship-canals 'SIp-k@n&lz Kj% 3 +shipboard 'SIpbOd Oq% 2 +shipbroker 'SIpbr@Uk@R K6$ 3 +shipbrokers 'SIpbr@Uk@z Kj$ 3 +shipbuilder 'SIpbIld@R K6% 3 +shipbuilders 'SIpbIld@z Kj% 3 +shipbuilding 'SIpbIldIN L@% 3 +shipload 'SIpl@Ud K6% 2 +shiploads 'SIpl@Udz Kj% 2 +shipmate 'SIpmeIt K6% 2 +shipmates 'SIpmeIts Kj% 2 +shipment 'SIpm@nt M6% 2 +shipments 'SIpm@nts Mj% 2 +shipowner 'SIp@Un@R K6% 3 +shipowners 'SIp@Un@z Kj% 3 +shipped SIpt Jc%,Jd% 12C,6A,15A,15B +shipper 'SIp@R K6% 2 +shippers 'SIp@z Kj% 2 +shipping 'SIpIN Jb%,L@% 22C,6A,15A,15B +shipping-agent 'SIpIN-eIdZ@nt K6% 4 +shipping-agents 'SIpIN-eIdZ@nts Kj% 4 +shipping-office 'SIpIN-0fIs K6% 4 +shipping-offices 'SIpIN-0fIsIz Kj% 5 +ships SIps Ja%,Kj% 12C,6A,15A,15B +shipshape 'SIpSeIp OA%,Pu% 2 +shipway 'SIpweI K6% 2 +shipways 'SIpweIz Kj% 2 +shipwreck 'SIprek I0$,M6% 2 +shipwrecked 'SIprekt Ic$,Id% 2 +shipwrecking 'SIprekIN Ib$ 3 +shipwrecks 'SIpreks Ia$,Mj% 2 +shipwright 'SIpraIt K6% 2 +shipwrights 'SIpraIts Kj% 2 +shipyard 'SIpjAd K6% 2 +shipyards 'SIpjAdz Kj% 2 +shire 'SaI@R K6% 1 +shires 'SaI@z Kj% 1 +shirk S3k J0% 12A,6A,6D +shirked S3kt Jc%,Jd% 12A,6A,6D +shirker 'S3k@R K6% 2 +shirkers 'S3k@z Kj% 2 +shirking 'S3kIN Jb% 22A,6A,6D +shirks S3ks Ja% 12A,6A,6D +shirt S3t K6% 1 +shirt-front S3t-'frVnt K6% 2 +shirt-fronts S3t-'frVnts Kj% 2 +shirtier 'S3tI@R Or$ 3 +shirtiest 'S3tIIst Os$ 3 +shirting 'S3tIN L@$ 2 +shirts S3ts Kj% 1 +shirtsleeves 'S3tslivz Kj% 2 +shirtwaist S3t'weIst K6% 2 +shirtwaister S3t'weIst@R K6% 3 +shirtwaisters S3t'weIst@z Kj% 3 +shirtwaists S3t'weIsts Kj% 2 +shirty 'S3tI OD% 2 +shish kebab ,SIS k@'b&b K6% 3 +shish kebabs ,SIS k@'b&bz Kj% 3 +shit SIt I4%,L@%,W-% 12A,3A +shits SIts Ia% 12A,3A +shitted 'SItId Ic$,Id$ 22A,3A +shitting 'SItIN Ib% 22A,3A +shiver 'SIv@R J0%,K6% 22A,2C,15A +shivered 'SIv@d Jc%,Jd% 22A,2C,15A +shivering 'SIv@rIN Jb% 32A,2C,15A +shivers 'SIv@z Ja%,Kj% 22A,2C,15A +shivery 'SIv@rI OA% 3 +shoal S@Ul I0$,K6% 12A +shoaled S@Uld Ic$,Id$ 12A +shoaling 'S@UlIN Ib$ 22A +shoals S@Ulz Ia$,Kj% 12A +shock S0k H0%,M6%,Pu% 16A +shock-brigade 'S0k-brIgeId K6$ 3 +shock-brigades 'S0k-brIgeIdz Kj$ 3 +shock-headed S0k-'hedId OA$ 3 +shock-worker 'S0k-w3k@R K6$ 3 +shock-workers 'S0k-w3k@z Kj$ 3 +shockable 'S0k@bl OA% 3 +shocked S0kt Hc%,Hd% 16A +shocker 'S0k@R K6% 2 +shockers 'S0k@z Kj% 2 +shocking 'S0kIN Hb%,OA% 26A +shockingly 'S0kINlI Pu% 3 +shocks S0ks Ha%,Mj% 16A +shod S0d Hc%,Hd% 16A +shoddier 'S0dI@R Or% 3 +shoddiest 'S0dIIst Os% 3 +shoddiness 'S0dInIs L@% 3 +shoddy 'S0dI L@%,OD% 2 +shoe Su H5%,K6% 16A +shoe-leather 'Su-leD@R M6% 3 +shoe-leathers 'Su-leD@z Mj$ 3 +shoeblack 'Subl&k L@$ 2 +shoehorn 'SuhOn K6% 2 +shoehorns 'SuhOnz Kj% 2 +shoeing 'SuIN Hb% 26A +shoelace 'SuleIs K6% 2 +shoelaces 'SuleIsIz Kj% 3 +shoemaker 'SumeIk@R K6% 3 +shoemakers 'SumeIk@z Kj% 3 +shoemaking 'SumeIkIN L@% 3 +shoes Suz Ha%,Kj% 16A +shoestring 'SustrIN K6% 2 +shoestrings 'SustrINz Kj% 2 +shoetree 'Sutri K6$ 2 +shoetrees 'Sutriz Kj$ 2 +shogun 'S@Ugun K6$ 2 +shoguns 'S@Ugunz Kj$ 2 +shone S0n Jc%,Jd% 12A,2C,6A +shoo Su J0% 115B +shooed Sud Jc%,Jd% 115B +shooing 'SuIN Jb% 215B +shook SUk Jc% 12A,2C,6A,14,15A,15B +shoos Suz Ja% 115B +shoot Sut J5%,K6% 12A,2C,4A,6A,15A,15B +shooter 'Sut@R K6% 2 +shooters 'Sut@z Kj% 2 +shooting 'SutIN Jb%,L@% 22A,2C,4A,6A,15A,15B +shooting-box 'SutIN-b0ks K7$ 3 +shooting-boxes 'SutIN-b0ksIz Kj$ 4 +shooting-brake 'SutIN-breIk K6% 3 +shooting-brakes 'SutIN-breIks Kj% 3 +shooting-galleries 'SutIN-g&l@rIz Kj% 5 +shooting-gallery 'SutIN-g&l@rI K8% 5 +shooting-range 'SutIN-reIndZ K6% 3 +shooting-ranges 'SutIN-reIndZIz Kj% 4 +shooting-stick 'SutIN-stIk K6% 3 +shooting-sticks 'SutIN-stIks Kj% 3 +shoots Suts Ja%,Kj% 12A,2C,4A,6A,15A,15B +shop S0p I4%,M6% 12A,2C +shop-assistant 'S0p-@sIst@nt K6% 4 +shop-assistants 'S0p-@sIst@nts Kj% 4 +shop-bell 'S0p-bel K6% 2 +shop-bells 'S0p-belz Kj% 2 +shop-boy 'S0p-boI K6$ 2 +shop-boys 'S0p-boIz Kj$ 2 +shop-front S0p-'frVnt K6% 2 +shop-fronts S0p-'frVnts Kj% 2 +shop-girl 'S0p-g3l K6$ 2 +shop-girls 'S0p-g3lz Kj$ 2 +shop-steward S0p-'stjU@d K6% 3 +shop-stewards S0p-'stjU@dz Kj% 3 +shopkeeper 'S0pkip@R K6% 3 +shopkeepers 'S0pkip@z Kj% 3 +shoplift 'S0plIft J0$ 22A,6A +shoplifted 'S0plIftId Jc$,Jd$ 32A,6A +shoplifter 'S0plIft@R K6% 3 +shoplifters 'S0plIft@z Kj% 3 +shoplifting 'S0plIftIN Jb%,L@% 32A,6A +shoplifts 'S0plIfts Ja$ 22A,6A +shopped S0pt Ic%,Id% 12A,2C +shopper 'S0p@R K6% 2 +shoppers 'S0p@z Kj% 2 +shopping 'S0pIN Ib%,L@% 22A,2C +shops S0ps Ia%,Mj% 12A,2C +shopsoiled 'S0psoIld OA% 2 +shopwalker 'S0pwOk@R K6$ 3 +shopwalkers 'S0pwOk@z Kj$ 3 +shopwindow S0p'wInd@U K6% 3 +shopwindows S0p'wInd@Uz Kj% 3 +shopworn 'S0pwOn OA% 2 +shore SOR H2%,M6% 115B +shored SOd Hc%,Hd% 115B +shores SOz Ha%,Mj% 115B +shoring 'SOrIN Hb% 215B +shorn SOn Hd% 16A +short SOt J0%,K6%,OC*,Pu* 1 +short-change SOt-'tSeIndZ H2$ 2 +short-changed SOt-'tSeIndZd Hc%,Hd% 2 +short-changes SOt-'tSeIndZIz Ha$ 3 +short-changing SOt-'tSeIndZIN Hb$ 3 +short-circuit SOt-'s3kIt J0%,K6% 3 +short-circuited SOt-'s3kItId Jc%,Jd% 4 +short-circuiting SOt-'s3kItIN Jb% 4 +short-circuits SOt-'s3kIts Ja%,Kj% 3 +short-dated SOt-'deItId OA$ 3 +short-handed SOt-'h&ndId OA% 3 +short-lived SOt-'lIvd OA% 2 +short-range 'SOt-reIndZ OA% 2 +short-sighted SOt-'saItId OA% 3 +short-tempered SOt-'temp@d OA% 3 +short-term 'SOt-t3m Oq% 2 +short-winded SOt-'wIndId OA% 3 +shortage 'SOtIdZ M6% 2 +shortages 'SOtIdZIz Mj% 3 +shortbread 'SOtbred L@% 2 +shortcake 'SOtkeIk L@% 2 +shortcoming 'SOtkVmIN K6% 3 +shortcomings 'SOtkVmINz Kj% 3 +shorted 'SOtId Jc%,Jd% 2 +shorten 'SOtn J0% 22A,6A +shortened 'SOtnd Jc%,Jd% 22A,6A +shortening 'SOtnIN Jb%,L@% 22A,6A +shortens 'SOtnz Ja% 22A,6A +shorter 'SOt@R Or% 2 +shortest 'SOtIst Os% 2 +shortfall 'SOtfOl K6% 2 +shortfalls 'SOtfOlz Kj% 2 +shorthand 'SOth&nd L@% 2 +shorthorn 'SOthOn K6$ 2 +shorthorns 'SOthOnz Kj$ 2 +shorting 'SOtIN Jb% 2 +shortish 'SOtIS OA% 2 +shortlist 'SOtlIst H0%,K6% 2 +shortlisted 'SOtlIstId Hc%,Hd% 3 +shortlisting 'SOtlIstIN Hb% 3 +shortlists 'SOtlIsts Ha%,Kj% 2 +shortly 'SOtlI Pu% 2 +shortness 'SOtn@s L@% 2 +shorts SOts Ja%,Kj% 1 +shot S0t Jc%,Jd%,M6% 12A,2C,4A,6A,15A,15B +shot-put 'S0t-pUt M6% 2 +shot-puts 'S0t-pUts Mj$ 2 +shot-tower 'S0t-taU@R K6$ 3 +shot-towers 'S0t-taU@z Kj$ 3 +shotgun 'S0tgVn K6% 2 +shotguns 'S0tgVnz Kj% 2 +shots S0ts Mj% 1 +should SUd G5* 1 +shoulder 'S@Uld@R H0%,K6% 26A,15A +shoulder-blade 'S@Uld@-bleId K6% 3 +shoulder-blades 'S@Uld@-bleIdz Kj% 3 +shoulder-flash 'S@Uld@-fl&S K7$ 3 +shoulder-flashes 'S@Uld@-fl&SIz Kj$ 4 +shoulder-strap 'S@Uld@-str&p K6% 3 +shoulder-straps 'S@Uld@-str&ps Kj% 3 +shouldered 'S@Uld@d Hc%,Hd% 26A,15A +shouldering 'S@Uld@rIN Hb% 36A,15A +shoulders 'S@Uld@z Ha%,Kj% 26A,15A +shouldn't 'SUdnt Gg% 2 +shout SaUt J0%,K6% 12A,2B,2C,3A,4B,6A,15A,15B,22 +shouted 'SaUtId Jc%,Jd% 22A,2B,2C,3A,4B,6A,15A,15B,22 +shouting 'SaUtIN Jb%,L@% 22A,2B,2C,3A,4B,6A,15A,15B,22 +shouts SaUts Ja%,Kj% 12A,2B,2C,3A,4B,6A,15A,15B,22 +shove SVv J2%,K6% 12A,2C,6A,15A,15B +shove-ha'penny ,SVv-'heIpnI L@% 3 +shoved SVvd Jc%,Jd% 12A,2C,6A,15A,15B +shovel 'SVvl H4%,K6% 26A,15A,15B +shovel-board 'SVvl-bOd L@$ 3 +shovelful 'SVvlfUl K6% 3 +shovelfuls 'SVvlfUlz Kj% 3 +shovelled 'SVvld Hc%,Hd% 26A,15A,15B +shovelling 'SVv@lIN Hb% 36A,15A,15B +shovels 'SVvlz Ha%,Kj% 26A,15A,15B +shoves SVvz Ja%,Kj% 12A,2C,6A,15A,15B +shoving 'SVvIN Jb% 22A,2C,6A,15A,15B +show S@U J0*,M6% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +show-business 'S@U-bIzn@s L@% 3 +show-off 'S@U-0f K6% 2 +show-offs 'S@U-0fs Kj% 2 +show-window 'S@U-wInd@U K6$ 3 +show-windows 'S@U-wInd@Uz Kj$ 3 +showbiz 'S@UbIz L@% 2 +showboat 'S@Ub@Ut K6% 2 +showboats 'S@Ub@Uts Kj% 2 +showcase 'S@UkeIs K6% 2 +showcases 'S@UkeIsIz Kj% 3 +showdown 'S@UdaUn K6% 2 +showdowns 'S@UdaUnz Kj$ 2 +showed S@Ud Jc%,Jd% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +shower 'SaU@R J0%,K6% 22C,14 +shower-bath 'SaU@-bAT K6% 3 +shower-baths 'SaU@-bADz Kj% 3 +showered 'SaU@d Jc%,Jd% 22C,14 +showerier 'SaU@rI@R Or$ 4 +showeriest 'SaU@rIIst Os$ 4 +showering 'SaU@rIN Jb% 32C,14 +showers 'SaU@z Ja%,Kj% 22C,14 +showery 'SaU@rI OD% 3 +showgirl 'S@Ug3l K6% 2 +showgirls 'S@Ug3lz Kj% 2 +showier 'S@UI@R Or$ 3 +showiest 'S@UIIst Os$ 3 +showily 'S@UIlI Pu% 3 +showiness 'S@UIn@s L@% 3 +showing 'S@UIN Jb%,K6% 22A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +showings 'S@UINz Kj% 2 +showjumping 'S@UdZVmpIN L@% 3 +showman 'S@Um@n Ki% 2 +showmanship 'S@Um@nSIp L@% 3 +showmen 'S@Um@n Kj% 2 +shown S@Un Jc%,Jd% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +showplace 'S@UpleIs K6% 2 +showplaces 'S@UpleIsIz Kj% 3 +showroom 'S@Urum K6% 2 +showrooms 'S@Urumz Kj% 2 +shows S@Uz Ja%,Mj% 12A,2C,6A,9,10,12A,13A,14,15A,15B,19B,20,21,24A,25 +showy 'S@UI OD% 2 +shrank Sr&Nk Jc% 12A,2C,3A,6A +shrapnel 'Sr&pn@l L@% 2 +shred Sred H4%,K6% 16A +shredded 'SredId Hc%,Hd% 26A +shredding 'SredIN Hb% 26A +shreds Sredz Ha%,Kj% 16A +shrew Sru K6% 1 +shrew-mice 'Sru-maIs Kj$ 2 +shrew-mouse 'Sru-maUs Ki$ 2 +shrewd Srud OC% 1 +shrewder 'Srud@R Or% 2 +shrewdest 'SrudIst Os% 2 +shrewdly 'SrudlI Pu% 2 +shrewdness 'Srudn@s L@% 2 +shrewish 'SruIS OA% 2 +shrewishly 'SruISlI Pu% 3 +shrewishness 'SruISn@s L@% 3 +shrews Sruz Kj% 1 +shriek Srik J0%,K6% 12A,2C,6A,15B +shrieked Srikt Jc%,Jd% 12A,2C,6A,15B +shrieking 'SrikIN Jb% 22A,2C,6A,15B +shrieks Sriks Ja%,Kj% 12A,2C,6A,15B +shrift SrIft L@% 1 +shrike SraIk K6$ 1 +shrikes SraIks Kj$ 1 +shrill SrIl J0%,OC% 1 +shrilled SrIld Jc%,Jd% 1 +shriller 'SrIl@R Or% 2 +shrillest 'SrIlIst Os% 2 +shrilling 'SrIlIN Jb% 2 +shrillness 'SrIln@s L@% 2 +shrills SrIlz Ja% 1 +shrilly 'SrIlI Pu% 2 +shrimp SrImp I0$,K6% 1 +shrimped SrImpt Ic$,Id$ 1 +shrimping 'SrImpIN Ib% 2 +shrimps SrImps Ia$,Kj% 1 +shrine SraIn H2$,K6% 1 +shrined SraInd Hc$,Hd$ 1 +shrines SraInz Ha$,Kj% 1 +shrining 'SraInIN Hb$ 2 +shrink SrINk J5%,K6% 12A,2C,3A,6A +shrinkable 'SrInk@bl OA$ 3 +shrinkage 'SrInkIdZ L@% 2 +shrinking 'SrINkIN Jb% 22A,2C,3A,6A +shrinks SrINks Ja%,Kj% 12A,2C,3A,6A +shrive SraIv H2$ 16A +shrived SraIvd Hc$,Hd$ 16A +shrivel 'SrIvl J4% 22A,2C,6A,15B +shrivelled 'SrIvld Jc%,Jd% 22A,2C,6A,15B +shrivelling 'SrIv@lIN Jb% 32A,2C,6A,15B +shrivels 'SrIvlz Ja% 22A,2C,6A,15B +shriven 'SrIvn Hd$ 26A +shrives SraIvz Ha$ 16A +shriving 'SraIvIN Hb$ 26A +shroud SraUd H0%,K6% 16A,15A +shrouded 'SraUdId Hc%,Hd% 26A,15A +shrouding 'SraUdIN Hb% 26A,15A +shrouds SraUdz Ha%,Kj% 16A,15A +shrove Sr@Uv Hc$ 16A +shrub SrVb K6% 1 +shrubberies 'SrVb@rIz Kj% 3 +shrubbery 'SrVb@rI K8% 3 +shrubs SrVbz Kj% 1 +shrug SrVg H4%,K6% 16A,15B +shrugged SrVgd Hc%,Hd% 16A,15B +shrugging 'SrVgIN Hb% 26A,15B +shrugs SrVgz Ha%,Kj% 16A,15B +shrunk SrVNk Jd% 12A,2C,3A,6A +shrunken 'SrVnk@n Jd% 22A,2C,3A,6A +shuck SVk H0$,K6$ 16A +shucked SVkt Hc$,Hd$ 16A +shucking 'SVkIN Hb$ 26A +shucks SVks Ha$,Kj$ 16A +shudder 'SVd@R I0%,K6% 22A,2C,4C +shuddered 'SVd@d Ic%,Id% 22A,2C,4C +shuddering 'SVd@rIN Ib% 32A,2C,4C +shudderingly 'SVd@rINlI Pu% 4 +shudders 'SVd@z Ia%,Kj% 22A,2C,4C +shuffle 'SVfl J2%,K6% 22A,2C,6A,15A,15B +shuffled 'SVfld Jc%,Jd% 22A,2C,6A,15A,15B +shuffler 'SVfl@R K6% 2 +shufflers 'SVfl@z Kj% 2 +shuffles 'SVflz Ja%,Kj% 22A,2C,6A,15A,15B +shuffling 'SVflIN Jb% 22A,2C,6A,15A,15B +shun SVn H4% 16A,6D +shunned SVnd Hc%,Hd% 16A,6D +shunning 'SVnIN Hb% 26A,6D +shuns SVnz Ha% 16A,6D +shunt SVnt J0% 12A,6A,15A,15B +shunted 'SVntId Jc%,Jd% 22A,6A,15A,15B +shunter 'SVnt@R K6$ 2 +shunters 'SVnt@z Kj$ 2 +shunting 'SVntIN Jb% 22A,6A,15A,15B +shunts SVnts Ja% 12A,6A,15A,15B +shush SUS J1$ 1 +shushed SUSt Jc$,Jd$ 1 +shushes 'SUSIz Ja$ 2 +shushing 'SUSIN Jb$ 2 +shut SVt J5%,Jc%,Jd% 12A,2C,6A,15A,15B +shutdown 'SVtdaUn K6% 2 +shutdowns 'SVtdaUnz Kj$ 2 +shuteye 'SVtaI L@% 2 +shuts SVts Ja% 12A,2C,6A,15A,15B +shutter 'SVt@R H0$,K6% 26A +shuttered 'SVt@d Hc$,Hd% 26A +shuttering 'SVt@rIN Hb$ 36A +shutters 'SVt@z Ha$,Kj% 26A +shutting 'SVtIN Jb% 22A,2C,6A,15A,15B +shuttle 'SVtl J2%,K6% 22C,6A,15A +shuttlecock 'SVtlk0k K6% 3 +shuttlecocks 'SVtlk0ks Kj% 3 +shuttled 'SVtld Jc%,Jd% 22C,6A,15A +shuttles 'SVtlz Ja%,Kj% 22C,6A,15A +shuttling 'SVtlIN Jb% 22C,6A,15A +shy SaI J3%,K8%,OC% 12A,3A,6A,15A +shyer 'SaI@R Or% 2 +shyest 'SaIIst Os% 2 +shying 'SaIIN Jb% 22A,3A,6A,15A +shyly 'SaIlI Pu% 2 +shyness 'SaIn@s L@% 2 +shyster 'SaIst@R K6$ 2 +shysters 'SaIst@z Kj$ 2 +sibilant 'sIbIl@nt K6$,OA% 3 +sibilants 'sIbIl@nts Kj$ 3 +sibling 'sIblIN K6% 2 +siblings 'sIblINz Kj% 2 +sibyl 'sIbl K6$ 2 +sibylline 'sIb@laIn OA$ 3 +sibyls 'sIblz Kj$ 2 +sic sIk Pu$ 1 +sick sIk H0%,OA% 1 +sick-benefit 'sIk-benIfIt M6% 4 +sick-benefits 'sIk-benIfIts Mj% 4 +sick-berth 'sIk-b3T K6% 2 +sick-berths 'sIk-b3Ts Kj% 2 +sick-headache sIk-'hedeIk K6% 3 +sick-headaches sIk-'hedeIks Kj% 3 +sick-leave 'sIk-liv L@% 2 +sick-list 'sIk-lIst K6% 2 +sick-lists 'sIk-lIsts Kj% 2 +sick-parade 'sIk-p@reId K6% 3 +sick-parades 'sIk-p@reIdz Kj% 3 +sick-pay 'sIk-peI L@% 2 +sick-room 'sIk-rum K6% 2 +sick-rooms 'sIk-rumz Kj% 2 +sickbay 'sIkbeI K6% 2 +sickbays 'sIkbeIz Kj% 2 +sickbed 'sIkbed K6% 2 +sickbeds 'sIkbedz Kj% 2 +sicked sIkt Hc%,Hd% 1 +sicken 'sIk@n J0% 22A,3A,4C,6A +sickened 'sIk@nd Jc%,Jd% 22A,3A,4C,6A +sickening 'sIk@nIN Jb%,OA% 32A,3A,4C,6A +sickeningly 'sIk@nINlI Pu% 4 +sickens 'sIk@nz Ja% 22A,3A,4C,6A +sicking 'sIkIN Hb$ 2 +sickish 'sIkIS OA$ 2 +sickle 'sIkl K6% 2 +sickles 'sIklz Kj% 2 +sicklier 'sIklI@R Or% 3 +sickliest 'sIklIIst Os% 3 +sickly 'sIklI OD% 2 +sickness 'sIkn@s M7% 2 +sicknesses 'sIkn@sIz Mj% 3 +sicks sIks Ha$ 1 +side saId I2%,M6* 13A +side-arms 'saId-Amz Kj$ 2 +side-chapel 'saId-tS&pl K6% 3 +side-chapels 'saId-tS&plz Kj% 3 +side-dish 'saId-dIS K7% 2 +side-dishes 'saId-dISIz Kj% 3 +side-drum 'saId-drVm K6% 2 +side-drums 'saId-drVmz Kj% 2 +side-face 'saId-feIs Pu% 2 +side-glance saId-'glAns K6% 2 +side-glances saId-'glAnsIz Kj% 3 +side-road 'saId-r@Ud K6% 2 +side-roads 'saId-r@Udz Kj% 2 +side-saddle 'saId-s&dl K6%,Pu% 3 +side-saddles 'saId-s&dlz Kj% 3 +side-slip 'saId-slip I4$,K6$ 2 +side-slipped 'saId-slipt Ic$,Id$ 2 +side-slipping 'saId-slipIN Ib$ 3 +side-slips 'saId-slips Ia$,Kj$ 2 +side-splitting 'saId-splItIN OA% 3 +side-stroke 'saId-str@Uk L@% 2 +side-view saId-'vju K6% 2 +side-views saId-'vjuz Kj% 2 +side-whiskers 'saId-wIsk@z Kj% 3 +sideboard 'saIdbOd K6% 2 +sideboards 'saIdbOdz Kj% 2 +sideburns 'saIdb3nz Kj% 2 +sidecar 'saIdkAR K6% 2 +sidecars 'saIdkAz Kj% 2 +sided 'saIdId Ic%,Id%,Ot% 23A +sidelight 'saIdlaIt K6% 2 +sidelights 'saIdlaIts Kj% 2 +sideline 'saIdlaIn K6% 2 +sidelines 'saIdlaInz Kj% 2 +sidelong 'saIdl0N OA%,Pu% 2 +sidereal saI'dI@rI@l OA$ 4 +sides saIdz Ia%,Mj% 13A +sideshow 'saIdS@U K6% 2 +sideshows 'saIdS@Uz Kj% 2 +sidesman 'saIdzm@n Ki% 2 +sidesmen 'saIdzm@n Kj% 2 +sidestep 'saIdstep J4%,K6% 22A,6A +sidestepped 'saIdstept Jc%,Jd% 22A,6A +sidestepping 'saIdstepIN Jb% 32A,6A +sidesteps 'saIdsteps Ja%,Kj% 22A,6A +sidetrack 'saIdtr&k H0$,K6$ 26A +sidetracked 'saIdtr&kt Hc$,Hd% 26A +sidetracking 'saIdtr&kIN Hb$ 36A +sidetracks 'saIdtr&ks Ha$,Kj$ 26A +sidewalk 'saIdwOk K6% 2 +sidewalks 'saIdwOks Kj% 2 +sidewards 'saIdw@dz Pu% 2 +sideways 'saIdweIz Pu% 2 +siding 'saIdIN Ib%,K6% 23A +sidings 'saIdINz Kj% 2 +sidle 'saIdl I2% 22C +sidled 'saIdld Ic%,Id% 22C +sidles 'saIdlz Ia% 22C +sidling 'saIdlIN Ib% 22C +siege sidZ M6% 1 +sieges 'sidZIz Mj% 2 +sienna sI'en@ L@$ 3 +sierra sI'e@r@ K6$ 3 +sierras sI'e@r@z Kj$ 3 +siesta sI'est@ K6% 3 +siestas sI'est@z Kj% 3 +sieve sIv H2%,K6% 16A +sieved sIvd Hc%,Hd% 16A +sieves sIvz Ha%,Kj% 16A +sieving 'sIvIN Hb% 26A +sift sIft J0% 12C,6A,14,15A,15B +sifted 'sIftId Jc%,Jd% 22C,6A,14,15A,15B +sifter 'sIft@R K6$ 2 +sifters 'sIft@z Kj$ 2 +sifting 'sIftIN Jb% 22C,6A,14,15A,15B +sifts sIfts Ja% 12C,6A,14,15A,15B +sigh saI J0%,K6% 12A,3A,6A,15B +sighed saId Jc%,Jd% 12A,3A,6A,15B +sighing 'saIIN Jb% 22A,3A,6A,15B +sighs saIz Ja%,Kj% 12A,3A,6A,15B +sight saIt H0%,M6% 16A +sighted 'saItId Hc%,Hd%,Ot% 26A +sighting 'saItIN Hb%,K6% 26A +sightings 'saItINz Kj% 2 +sightless 'saItlIs OA% 2 +sights saIts Ha%,Mj% 16A +sightseeing 'saItsiIN L@% 3 +sightseer 'saItsi@R K6% 3 +sightseers 'saItsi@z Kj% 3 +sign saIn J0%,K6% 12A,2C,3A,6A,15B +sign-painter 'saIn-peInt@R K6% 3 +sign-painters 'saIn-peInt@z Kj% 3 +signal 'sIgn@l J4%,K6%,Oq% 22A,2C,6A,9,17 +signal-box 'sIgn@l-b0ks K7% 3 +signal-boxes 'sIgn@l-b0ksIz Kj% 4 +signalize 'sIgn@laIz H2$ 36A +signalized 'sIgn@laIzd Hc$,Hd$ 36A +signalizes 'sIgn@laIzIz Ha$ 46A +signalizing 'sIgn@laIzIN Hb$ 46A +signalled 'sIgn@ld Jc%,Jd% 22A,2C,6A,9,17 +signaller 'sIgn@l@R K6% 3 +signallers 'sIgn@l@z Kj% 3 +signalling 'sIgn@lIN Jb% 32A,2C,6A,9,17 +signally 'sIgn@lI Pu% 3 +signalman 'sIgn@lm@n Ki% 3 +signalmen 'sIgn@lm@n Kj% 3 +signals 'sIgn@lz Ja%,Kj% 22A,2C,6A,9,17 +signatories 'sIgn@trIz Kj% 3 +signatory 'sIgn@trI K8% 3 +signature 'sIgn@tS@R K6% 3 +signatures 'sIgn@tS@z Kj% 3 +signed saInd Jc%,Jd% 12A,2C,3A,6A,15B +signet 'sIgnIt K6% 2 +signet-ring 'sIgnIt-rIN K6% 3 +signet-rings 'sIgnIt-rINz Kj% 3 +signets 'sIgnIts Kj$ 2 +significance sIg'nIfIk@ns L@% 4 +significant sIg'nIfIk@nt OA% 4 +significantly sIg'nIfIk@ntlI Pu% 5 +signification ,sIgnIfI'keISn K6% 5 +significations ,sIgnIfI'keISnz Kj$ 5 +significative sIg'nIfIk@tIv OA$ 5 +signified 'sIgnIfaId Jc%,Jd% 32A,2C,6A,9,15A +signifies 'sIgnIfaIz Ja% 32A,2C,6A,9,15A +signify 'sIgnIfaI J3% 32A,2C,6A,9,15A +signifying 'sIgnIfaIIN Jb% 42A,2C,6A,9,15A +signing 'saInIN Jb% 22A,2C,3A,6A,15B +signor 'sinjOR K6$ 2 +signora sI'njOr@ K6$ 3 +signoras sI'njOr@z Kj$ 3 +signorina ,sInjO'rin@ K6$ 4 +signorinas ,sInjO'rin@z Kj$ 4 +signors 'sinjOz Kj$ 2 +signpost 'saInp@Ust H0%,K6% 2 +signposted 'saInp@UstId Hc%,Hd% 3 +signposting 'saInp@UstIN Hb% 3 +signposts 'saInp@Usts Ha%,Kj% 2 +signs saInz Ja%,Kj% 12A,2C,3A,6A,15B +silage 'saIlIdZ L@$ 2 +silence 'saIl@ns H2%,M6% 26A +silenced 'saIl@nst Hc%,Hd% 26A +silencer 'saIl@ns@R K6% 3 +silencers 'saIl@ns@z Kj% 3 +silences 'saIl@nsIz Ha%,Mj% 36A +silencing 'saIl@nsIN Hb% 36A +silent 'saIl@nt OA% 2 +silently 'saIl@ntlI Pu% 3 +silhouette ,sIlu'et H2%,K6% 3 +silhouetted ,sIlu'etId Hc%,Hd% 4 +silhouettes ,sIlu'ets Ha%,Kj% 3 +silhouetting ,sIlu'etIN Hb% 4 +silica 'sIlIk@ L@$ 3 +silicate 'sIlIkeIt L@$ 3 +silicon 'sIlIk@n L@% 3 +silicone 'sIlIk@Un L@$ 3 +silicosis ,sIlI'k@UsIs L@$ 4 +silk sIlk M6% 1 +silken 'sIlk@n OA% 2 +silkier 'sIlkI@R Or% 3 +silkiest 'sIlkIIst Os% 3 +silkily 'sIlkIlI Pu% 3 +silkiness 'sIlkIn@s L@% 3 +silks sIlks Mj% 1 +silkworm 'sIlkw3m K6% 2 +silkworms 'sIlkw3mz Kj% 2 +silky 'sIlkI OD% 2 +sill sIl K6% 1 +sillabub 'sIl@bVb M6$ 3 +sillabubs 'sIl@bVbz Mj$ 3 +sillier 'sIlI@R Or% 3 +sillies 'sIlIz Kj$ 2 +silliest 'sIlIIst Os% 3 +silliness 'sIlIn@s L@% 3 +sills sIlz Kj% 1 +silly 'sIlI K8$,OD% 2 +silo 'saIl@U K6% 2 +silos 'saIl@Uz Kj% 2 +silt sIlt J0%,L@% 12C,15B +silted 'sIltId Jc%,Jd% 22C,15B +silting 'sIltIN Jb% 22C,15B +silts sIlts Ja% 12C,15B +silvan 'sIlv@n OA$ 2 +silver 'sIlv@R J0%,L@% 22A,6A +silver-fish 'sIlv@-fIS K9% 3 +silver-fishes 'sIlv@-fISIz Kj% 4 +silvered 'sIlv@d Jc%,Jd% 22A,6A +silverier 'sIlv@rI@R Or$ 4 +silveriest 'sIlv@rIIst Os$ 4 +silvering 'sIlv@rIN Jb$ 32A,6A +silvern 'sIlv@n OA$ 2 +silvers 'sIlv@z Ja$ 22A,6A +silverside 'sIlv@saId L@% 3 +silversmith 'sIlv@smIT K6% 3 +silversmiths 'sIlv@smITs Kj% 3 +silvery 'sIlv@rI OD% 3 +simian 'sImI@n K6$,OA% 3 +simians 'sImI@nz Kj$ 3 +similar 'sIm@l@R OA% 3 +similarities ,sIm@'l&rItIz Mj% 5 +similarity ,sIm@'l&rItI M8% 5 +similarly 'sIm@l@lI Pu% 4 +simile 'sImIlI M6% 3 +similes 'sImIlIz Mj% 3 +similitude sI'mIlItjud M6% 4 +similitudes sI'mIlItjudz Mj$ 4 +simmer 'sIm@R J0%,Ki% 22A,2B,2C,6A,15A +simmered 'sIm@d Jc%,Jd% 22A,2B,2C,6A,15A +simmering 'sIm@rIN Jb% 32A,2B,2C,6A,15A +simmers 'sIm@z Ja% 22A,2B,2C,6A,15A +simony 'sIm@nI L@$ 3 +simoom sI'mum K6$ 2 +simooms sI'mumz Kj$ 2 +simoon sI'mun K6$ 2 +simoons sI'munz Kj$ 2 +simper 'sImp@R I0% 22A +simpered 'sImp@d Ic%,Id% 22A +simpering 'sImp@rIN Ib% 32A +simperingly 'sImprINlI Pu% 3 +simpers 'sImp@z Ia% 22A +simple 'sImpl K6%,OB% 2 +simple-hearted ,sImpl-'hAtId OA% 4 +simple-minded ,sImpl-'maIndId OA% 4 +simpler 'sImpl@R Or% 2 +simples 'sImplz Kj$ 2 +simplest 'sImplIst Os% 2 +simpleton 'sImplt@n K6% 3 +simpletons 'sImplt@nz Kj% 3 +simplicity sIm'plIsItI L@% 4 +simplification ,sImplIfI'keISn M6% 5 +simplifications ,sImplIfI'keISnz Mj% 5 +simplified 'sImplIfaId Hc%,Hd% 36A +simplifies 'sImplIfaIz Ha% 36A +simplify 'sImplIfaI H3% 36A +simplifying 'sImplIfaIIN Hb% 46A +simply 'sImplI Pu% 2 +simulacra ,sImjU'leIkr@ Kj$ 4 +simulacrum ,sImjU'leIkr@m Ki$ 4 +simulate 'sImjUleIt H2% 36A +simulated 'sImjUleItId Hc%,Hd% 46A +simulates 'sImjUleIts Ha% 36A +simulating 'sImjUleItIN Hb% 46A +simulation ,sImjU'leISn L@% 4 +simulator 'sImjUleIt@R K6% 4 +simulators 'sImjUleIt@z Kj% 4 +simultaneity ,sImlt@'nI@tI L@% 6 +simultaneous ,sIml'teInI@s OA% 5 +simultaneously ,sIml'teInI@slI Pu% 6 +simultaneousness ,sIml'teInI@sn@s L@$ 6 +sin sIn I4%,M6% 12A,3A +since sIns Pu*,T-*,V-* 1 +sincere sIn'sI@R OA% 2 +sincerely sIn'sI@lI Pu% 3 +sincerity sIn'serItI L@% 4 +sine saIn K6$ 1 +sine die ,saInI 'daIi Pu$ 4 +sine qua non ,sIneI kwA 'n@Un Ki% 4 +sinecure 'saInIkjU@R K6% 3 +sinecures 'saInIkjU@z Kj% 3 +sines saInz Kj$ 1 +sinew 'sInju K6% 2 +sinews 'sInjuz Kj% 2 +sinewy 'sInjuI OA% 3 +sinful 'sInf@l OA% 2 +sinfulness 'sInf@ln@s L@% 3 +sing sIN J5% 12A,2C,3A,6A,12B,13B,15A +singable 'sIN@bl OA% 3 +singe sIndZ J5%,K6% 12A,6A +singed sIndZd Jc%,Jd% 12A,6A +singeing 'sIndZIN Jb% 22A,6A +singer 'sIN@R K6% 2 +singers 'sIN@z Kj% 2 +singes 'sIndZIz Ja%,Kj% 22A,6A +singing 'sININ Jb%,L@% 22A,2C,3A,6A,12B,13B,15A +single 'sINgl H2%,K6%,OA% 215B +single-breasted ,sINgl-'brestId OA% 4 +single-handed ,sINgl-'h&ndId OA%,Pu% 4 +single-minded ,sINgl-'maIndId OA% 4 +single-spacing ,sINgl-'speIsIN L@% 4 +singled 'sINgld Hc%,Hd% 215B +singleness 'sINgln@s L@% 3 +singles 'sINglz Ha%,Kj% 215B +singlestick 'sINglstIk M6$ 3 +singlesticks 'sINglstIks Mj$ 3 +singlet 'sINglIt K6% 2 +singleton 'sINglt@n K6% 3 +singletons 'sINglt@nz Kj% 3 +singlets 'sINglIts Kj% 2 +singling 'sINglIN Hb% 215B +singly 'sINglI Pu% 2 +sings sINz Ja% 12A,2C,3A,6A,12B,13B,15A +singsong 'sINs0N K6% 2 +singsongs 'sINs0Nz Kj% 2 +singular 'sINgjUl@R K6%,OA% 3 +singularities ,sINgjU'l&rItIz Mj% 5 +singularity ,sINgjU'l&rItI M8% 5 +singularize 'sINgjUl@raIz H2$ 4 +singularized 'sINgjUl@raIzd Hc$,Hd$ 4 +singularizes 'sINgjUl@raIzIz Ha$ 5 +singularizing 'sINgjUl@raIzIN Hb$ 5 +singularly 'sINgjUl@lI Pu% 4 +singulars 'sINgjUl@z Kj% 3 +sinister 'sInIst@R OA% 3 +sink sINk J5%,K6% 12A,2C,3A,6A,14,15A +sinkable 'sINk@bl OA% 3 +sinker 'sINk@R K6$ 2 +sinkers 'sINk@z Kj$ 2 +sinking 'sINkIN Jb%,K6% 22A,2C,3A,6A,14,15A +sinking-fund 'sINkIN-fVnd K6% 3 +sinking-funds 'sINkIN-fVndz Kj% 3 +sinkings 'sINkINz Kj% 2 +sinks sINks Ja%,Kj% 12A,2C,3A,6A,14,15A +sinless 'sInl@s OA% 2 +sinlessness 'sInl@sn@s L@$ 3 +sinned sInd Ic%,Id% 12A,3A +sinner 'sIn@R K6% 2 +sinners 'sIn@z Kj% 2 +sinning 'sInIN Ib% 22A,3A +sins sInz Ia%,Mj% 12A,3A +sinuosities ,sInjU'0sItIz Mj$ 5 +sinuosity ,sInjU'0sItI M8$ 5 +sinuous 'sInjU@s OA% 3 +sinus 'saIn@s K7% 2 +sinuses 'saIn@sIz Kj% 3 +sinusitis ,saIn@'saItIs L@% 4 +sip sIp J4%,K6% 12A,6A,15B +siphon 'saIf@n J0%,K6% 215B +siphoned 'saIf@nd Jc%,Jd% 215B +siphoning 'saIf@nIN Jb% 315B +siphons 'saIf@nz Ja%,Kj% 215B +sipped sIpt Jc%,Jd% 12A,6A,15B +sipping 'sIpIN Jb% 22A,6A,15B +sips sIps Ja%,Kj% 12A,6A,15B +sir s3R K6% 1 +sirdar 's3dAR K6$ 2 +sirdars 's3dAz Kj$ 2 +sire 'saI@R H2%,K6% 16A +sired 'saI@d Hc%,Hd% 16A +siren 'saI@r@n K6% 2 +sirens 'saI@r@nz Kj% 2 +sires 'saI@z Ha$,Kj$ 16A +siring 'saI@rIN Hb$ 26A +sirloin 's3loIn M6% 2 +sirloins 's3loInz Mj$ 2 +sirocco sI'r0k@U K6$ 3 +siroccos sI'r0k@Uz Kj$ 3 +sirrah 'sIr@ K6$ 2 +sirrahs 'sIr@z Kj$ 2 +sirs s3z Kj% 1 +sirup 'sIr@p M6$ 2 +sirups 'sIr@ps Mj$ 2 +sisal 'saIsl L@$ 2 +sissies 'sIsIz Kj% 2 +sissified 'sIsIfaId OA$ 3 +sissy 'sIsI K8% 2 +sister 'sIst@R K6% 2 +sister-in-law 'sIst@r-In-lO Ki% 4 +sisterhood 'sIst@hUd L@% 3 +sisterly 'sIst@lI OA% 3 +sisters 'sIst@z Kj% 2 +sisters-in-law 'sIst@z-In-lO Kj% 4 +sit sIt J5% 12A,2C,3A,6A,15B +sit-in 'sIt-In K6% 2 +sit-ins 'sIt-Inz Kj% 2 +sitar sI'tAR K6$ 2 +sitars sI'tAz Kj$ 2 +site saIt I2%,K6% 16A +sited 'saItId Ic%,Id% 26A +sites saIts Ia%,Kj% 16A +siting 'saItIN Ib% 26A +sits sIts Ja% 12A,2C,3A,6A,15B +sitter 'sIt@R K6% 2 +sitters 'sIt@z Kj% 2 +sitting 'sItIN Jb%,K6% 22A,2C,3A,6A,15B +sitting-room 'sItIN-rum K6% 3 +sitting-rooms 'sItIN-rumz Kj% 3 +sittings 'sItINz Kj% 2 +situated 'sItSUeItId Op% 4 +situation ,sItSU'eISn K6% 4 +situations ,sItSU'eISnz Kj% 4 +six sIks K7%,OA* 1 +six-footer sIks-'fUt@R K6% 3 +six-footers sIks-'fUt@z Kj% 3 +six-shooter 'sIks-Sut@R K6% 3 +six-shooters 'sIks-Sut@z Kj% 3 +sixes 'sIksIz Kj% 2 +sixfold 'sIksf@Uld OA%,Pu% 2 +sixpence 'sIksp@ns K6% 2 +sixpences 'sIksp@nsIz Kj% 3 +sixpenny 'sIksp@nI OA% 3 +sixteen sIk'stin K6%,OA% 2 +sixteens sIk'stinz Kj% 2 +sixteenth sik'stinT K6%,OA% 2 +sixteenths sik'stinTs Kj% 2 +sixth sIksT K6%,OA% 1 +sixth-former 'sIksT-fOm@R K6% 3 +sixth-formers 'sIksT-fOm@z Kj% 3 +sixthly 'sIksTlI Pu% 2 +sixths sIksTs Kj% 1 +sixties 'sIkstIz Kj% 2 +sixtieth 'sIkstI@T K6%,OA% 3 +sixtieths 'sIkstI@Ts Kj% 3 +sixty 'sIkstI K8%,OA% 2 +sizable 'saIz@bl OA$ 3 +size saIz H2%,M6% 16A,15B +sizeable 'saIz@bl OA% 3 +sized saIzd Hc%,Hd%,Ot% 16A,15B +sizes 'saIzIz Ha%,Mj% 26A,15B +sizing 'saIzIN Hb% 26A,15B +sizzle 'sIzl I2% 26A +sizzled 'sIzld Ic%,Id% 26A +sizzles 'sIzlz Ia% 26A +sizzling 'sIzlIN Ib% 26A +skate skeIt I2%,K6% 12A,2C +skateboard 'skeItbOd K6% 2 +skateboarder 'skeItbOd@R K6% 3 +skateboarders 'skeItbOd@z Kj% 3 +skateboarding 'skeItbOdIN L@% 3 +skateboards 'skeItbOdz Kj% 2 +skated 'skeItId Ic%,Id% 22A,2C +skater 'skeIt@R K6% 2 +skaters 'skeIt@z Kj% 2 +skates skeIts Ia%,Kj% 12A,2C +skating 'skeItIN Ib%,L@% 22A,2C +skating-rink 'skeItIN-rINk K6% 3 +skating-rinks 'skeItIN-rINks Kj% 3 +skedaddle skI'd&dl I2$ 32A +skedaddled skI'd&dld Ic$,Id$ 32A +skedaddles skI'd&dlz Ia$ 32A +skedaddling skI'd&dlIN Ib$ 32A +skeet skit K6$ 1 +skeets skits Kj$ 1 +skein skeIn K6$ 1 +skeins skeInz Kj$ 1 +skeleton 'skelItn K6% 3 +skeletons 'skelItnz Kj% 3 +skep skep K6$ 1 +skeps skeps Kj$ 1 +skeptical 'skeptIkl OA$ 3 +skeptically 'skeptIklI Pu$ 3 +skepticism 'skeptIsIz@m L@$ 4 +sketch sketS J1%,K7% 12A,6A,15B +sketch-block 'sketS-bl0k K6% 2 +sketch-blocks 'sketS-bl0ks Kj% 2 +sketch-book 'sketS-bUk K6% 2 +sketch-books 'sketS-bUks Kj% 2 +sketch-map 'sketS-m&p K6% 2 +sketch-maps 'sketS-m&ps Kj% 2 +sketched sketSt Jc%,Jd% 12A,6A,15B +sketcher 'sketS@R K6% 2 +sketchers 'sketS@z Kj% 2 +sketches 'sketSIz Ja%,Kj% 22A,6A,15B +sketchier 'sketSI@R Or% 3 +sketchiest 'sketSIIst Os% 3 +sketchily 'sketSIlI Pu% 3 +sketchiness 'sketSIn@s L@% 3 +sketching 'sketSIN Jb% 22A,6A,15B +sketchy 'sketSI OD% 2 +skew skju OA% 1 +skew-eyed 'skju-aId OA$ 2 +skewer 'skjU@R H0%,K6% 26A +skewered 'skjU@d Hc%,Hd% 26A +skewering 'skjU@rIN Hb% 36A +skewers 'skjU@z Ha%,Kj% 26A +ski ski I5%,K6% 1 +ski'd skid Ic%,Id% 1 +ski-bob 'ski-b0b K6$ 2 +ski-bobs 'ski-b0bz Kj$ 2 +ski-jump 'ski-dZVmp K6% 2 +ski-jumps 'ski-dZVmps Kj% 2 +ski-lift 'ski-lIft K6% 2 +ski-lifts 'ski-lIfts Kj% 2 +ski-plane 'ski-pleIn K6% 2 +ski-planes 'ski-pleInz Kj% 2 +skid skId I4%,K6% 12A +skidded 'skIdId Ic%,Id% 22A +skidding 'skIdIN Ib% 22A +skidpan 'skIdp&n K6% 2 +skidpans 'skIdp&nz Kj% 2 +skids skIdz Ia%,Kj% 12A +skied skaId Hc%,Hd% 1 +skier 'ski@R K6% 2 +skiers 'ski@z Kj% 2 +skies skaIz Ha%,Kj% 1 +skiff skIf K6$ 1 +skiffle 'skIfl L@% 2 +skiffle-group 'skIfl-grup K6% 3 +skiffle-groups 'skIfl-grups Kj% 3 +skiffs skIfs Kj$ 1 +skiing 'skiIN Ib% 2 +skilful 'skIlf@l OA% 2 +skilfully 'skIlf@lI Pu% 3 +skill skIl M6% 1 +skilled skIld OA% 1 +skillet 'skIlIt K6$ 2 +skillets 'skIlIts Kj$ 2 +skills skIlz Mj% 1 +skilly 'skIlI L@$ 2 +skim skIm J4% 12C,3A,6A,14,15A,15B +skimmed skImd Jc%,Jd% 12C,3A,6A,14,15A,15B +skimmed-milk skImd-'mIlk L@% 2 +skimmer 'skIm@R K6$ 2 +skimmers 'skIm@z Kj$ 2 +skimming 'skImIN Jb% 22C,3A,6A,14,15A,15B +skimp skImp J0% 12A,6A +skimped skImpt Jc%,Jd% 12A,6A +skimpier 'skImpI@R Or% 3 +skimpiest 'skImpIIst Os% 3 +skimpily 'skImpIlI Pu% 3 +skimping 'skImpIN Jb% 22A,6A +skimps skImps Ja% 12A,6A +skimpy 'skImpI OD% 2 +skims skImz Ja% 12C,3A,6A,14,15A,15B +skin skIn J4%,M6% 12C,6A,14 +skin-deep skIn-'dip OA% 2 +skin-diving 'skIn-daIvIN L@% 3 +skin-graft 'skIn-grAft K6% 2 +skin-grafts 'skIn-grAfts Kj% 2 +skin-tight 'skIn-taIt OA% 2 +skinflint 'skInflInt K6% 2 +skinflints 'skInflInts Kj% 2 +skinhead 'skInhed K6% 2 +skinheads 'skInhedz Kj% 2 +skinned skInd Jc%,Jd% 12C,6A,14 +skinnier 'skInI@R Or% 3 +skinniest 'skInIIst Os% 3 +skinning 'skInIN Jb% 22C,6A,14 +skinny 'skInI OD% 2 +skins skInz Ja%,Mj% 12C,6A,14 +skint skInt OA% 1 +skip skIp J4%,K6% 12A,2C,6A +skipped skIpt Jc%,Jd% 12A,2C,6A +skipper 'skIp@R H0%,K6% 2 +skippered 'skIp@d Hc%,Hd% 2 +skippering 'skIp@rIN Hb% 3 +skippers 'skIp@z Ha%,Kj% 2 +skipping 'skIpIN Jb% 22A,2C,6A +skipping-rope 'skIpIN-r@Up K6% 3 +skipping-ropes 'skIpIN-r@Ups Kj% 3 +skips skIps Ja%,Kj% 12A,2C,6A +skirl sk3l K6$ 1 +skirls sk3lz Kj$ 1 +skirmish 'sk3mIS I1$,K7% 22A,2C +skirmished 'sk3mISt Ic$,Id$ 22A,2C +skirmisher 'sk3mIS@R K6$ 3 +skirmishers 'sk3mIS@z Kj$ 3 +skirmishes 'sk3mISIz Ia$,Kj% 32A,2C +skirmishing 'sk3mISIN Ib$ 32A,2C +skirt sk3t J0%,K6% 12C,6A +skirted 'sk3tId Jc%,Jd% 22C,6A +skirting 'sk3tIN Jb% 22C,6A +skirting-board 'sk3tIN-bOd K6% 3 +skirting-boards 'sk3tIN-bOdz Kj% 3 +skirts sk3ts Ja%,Kj% 12C,6A +skis skiz Ia%,Kj% 1 +skit skIt K6% 1 +skits skIts Kj% 1 +skitter 'skIt@R I0% 22A +skittered 'skIt@d Ic% 22A +skittering 'skIt@rIN Ib% 32A +skitters 'skIt@z Ia% 22A +skittish 'skItIS OA% 2 +skittishly 'skItISlI Pu% 3 +skittishness 'skItISn@s L@% 3 +skittle 'skItl H2%,K6% 215B +skittle-pin 'skItl-pIn K6$ 3 +skittle-pins 'skItl-pInz Kj$ 3 +skittled 'skItld Hc%,Hd% 215B +skittles 'skItlz Ha%,Kj%,Lk% 215B +skittling 'skItlIN Hb% 215B +skivvies 'skIvIz Kj$ 2 +skivvy 'skIvI K8$ 2 +skua 'skju@ K6$ 2 +skuas 'skju@z Kj$ 2 +skulk skVlk I0% 12A,2C +skulked skVlkt Ic%,Id% 12A,2C +skulker 'skVlk@R K6$ 2 +skulkers 'skVlk@z Kj$ 2 +skulking 'skVlkIN Ib% 22A,2C +skulks skVlks Ia% 12A,2C +skull skVl K6% 1 +skullcap 'skVlk&p K6% 2 +skullcaps 'skVlk&ps Kj% 2 +skullduggery skVl'dVg@rI Ki% 4 +skulled skVld Ot% 1 +skulls skVlz Kj% 1 +skunk skVNk M6% 1 +skunks skVNks Mj% 1 +sky skaI H3%,K8% 1 +sky-blue skaI-'blu L@%,OA% 2 +sky-high skaI-'haI Pu% 2 +skying 'skaIIN Hb$ 2 +skylark 'skaIlAk I0%,K6% 2 +skylarked 'skaIlAkt Ic%,Id% 2 +skylarking 'skaIlAkIN Ib% 3 +skylarks 'skaIlAks Ia%,Kj% 2 +skylight 'skaIlaIt K6% 2 +skylights 'skaIlaIts Kj% 2 +skyline 'skaIlaIn K6% 2 +skylines 'skaIlaInz Kj$ 2 +skyrocket 'skaIr0kIt I0$ 3 +skyrocketed 'skaIr0kItId Ic$,Id$ 4 +skyrocketing 'skaIr0kItIN Ib$ 4 +skyrockets 'skaIr0kIts Ia$ 3 +skyscraper 'skaIskreIp@R K6% 3 +skyscrapers 'skaIskreIp@z Kj% 3 +skyward 'skaIw@d OA%,Pu% 2 +skywards 'skaIw@dz OA%,Pu% 2 +skywriting 'skaIraItIN L@% 3 +slab sl&b K6% 1 +slabs sl&bz Kj% 1 +slack sl&k I0%,M6%,OC% 12A,2C +slacked sl&kt Ic%,Id% 12A,2C +slacken 'sl&k@n J0% 22A,6A +slackened 'sl&k@nd Jc%,Jd% 22A,6A +slackening 'sl&k@nIN Jb% 32A,6A +slackens 'sl&k@nz Ja% 22A,6A +slacker 'sl&k@R K6%,Or% 2 +slackers 'sl&k@z Kj% 2 +slackest 'sl&kIst Os% 2 +slacking 'sl&kIN Ib% 22A,2C +slackly 'sl&klI Pu% 2 +slackness 'sl&kn@s L@% 2 +slacks sl&ks Ia%,Mj% 12A,2C +slag sl&g L@% 1 +slag-heap 'sl&g-hip K6% 2 +slag-heaps 'sl&g-hips Kj% 2 +slain sleIn Hd$ 16A +slake sleIk H2% 16A +slaked sleIkt Hc%,Hd% 16A +slakes sleIks Ha% 16A +slaking 'sleIkIN Hb% 26A +slalom 'slAl@m K6% 2 +slaloms 'slAl@mz Kj$ 2 +slam sl&m J4%,K6% 12A,2C,6A,15A,15B,22 +slammed sl&md Jc%,Jd% 12A,2C,6A,15A,15B,22 +slamming 'sl&mIN Jb% 22A,2C,6A,15A,15B,22 +slams sl&mz Ja%,Kj% 12A,2C,6A,15A,15B,22 +slander 'slAnd@R H0%,M6% 26A +slandered 'slAnd@d Hc%,Hd% 26A +slanderer 'slAnd@r@R K6% 3 +slanderers 'slAnd@r@z Kj% 3 +slandering 'slAnd@rIN Hb% 36A +slanderous 'slAnd@r@s OA% 3 +slanders 'slAnd@z Ha%,Mj% 26A +slang sl&N H0%,L@% 16A +slanged sl&Nd Hc%,Hd% 16A +slangier 'sl&NI@R Or$ 3 +slangiest 'sl&NIIst Os$ 3 +slangily 'sl&NIlI Pu$ 3 +slanginess 'sl&NIn@s L@% 3 +slanging 'sl&NIN Hb% 26A +slangs sl&Nz Ha% 16A +slangy 'sl&NI OD% 2 +slant slAnt J0%,K6% 12A,2C,6A +slanted 'slAntId Jc%,Jd% 22A,2C,6A +slanting 'slAntIN Jb% 22A,2C,6A +slantingly 'slAntINlI Pu% 3 +slants slAnts Ja%,Kj% 12A,2C,6A +slantwise 'slAntwaIz Pu% 2 +slap sl&p H4%,K6%,Pu% 16A,15A,15B +slap-bang sl&p-'b&N Pu% 2 +slap-happy sl&p-'h&pI OA% 3 +slap-up 'sl&p-Vp OA% 2 +slapdash 'sl&pd&S OA%,Pu% 2 +slapped sl&pt Hc%,Hd% 16A,15A,15B +slapping 'sl&pIN Hb% 26A,15A,15B +slaps sl&ps Ha%,Kj% 16A,15A,15B +slapstick 'sl&pstIk L@% 2 +slash sl&S J1%,K7% 12C,6A +slashed sl&St Jc%,Jd% 12C,6A +slashes 'sl&SIz Ja%,Kj% 22C,6A +slashing 'sl&SIN Jb% 22C,6A +slat sl&t K6% 1 +slate sleIt H2%,M6% 16A +slate-club 'sleIt-klVb K6$ 2 +slate-clubs 'sleIt-klVbz Kj$ 2 +slate-pencil 'sleIt-pensl K6$ 3 +slate-pencils 'sleIt-penslz Kj$ 3 +slated 'sleItId Hc%,Hd% 26A +slates sleIts Ha%,Mj% 16A +slatier 'sleItI@R Or$ 3 +slatiest 'sleItIIst Os$ 3 +slating 'sleItIN Hb%,K6% 26A +slatings 'sleItINz Kj$ 2 +slats sl&ts Kj% 1 +slatted 'sl&tId OA% 2 +slattern 'sl&t@n K6% 2 +slatternliness 'sl&t@nlIn@s L@% 4 +slatternly 'sl&t@nlI OA% 3 +slatterns 'sl&t@nz Kj% 2 +slaty 'sleItI OD$ 2 +slaughter 'slOt@R H0%,L@% 26A +slaughtered 'slOt@d Hc%,Hd% 26A +slaughterer 'slOt@r@R K6% 3 +slaughterers 'slOt@r@z Kj% 3 +slaughterhouse 'slOt@haUs K6% 3 +slaughterhouses 'slOt@haUzIz Kj% 4 +slaughtering 'slOt@rIN Hb% 36A +slaughters 'slOt@z Ha% 26A +slave sleIv I2%,K6% 12A,2B,2C,3A +slave-driver 'sleIv-draIv@R K6% 3 +slave-drivers 'sleIv-draIv@z Kj% 3 +slave-trade 'sleIv-treId L@% 2 +slave-traffic 'sleIv-tr&fIk L@% 3 +slaved sleIvd Ic%,Id% 12A,2B,2C,3A +slaver 'sl&v@R I0%,L@% 22A,2C +slavered 'sl&v@d Ic%,Id% 22A,2C +slavering 'sl&v@rIN Ib% 32A,2C +slavers 'sl&v@z Ia% 22A,2C +slavery 'sleIv@rI L@% 3 +slaves sleIvz Ia%,Kj% 12A,2B,2C,3A +slavey 'sleIvI K6$ 2 +slaveys 'sleIvIz Kj$ 2 +slaving 'sleIvIN Ib% 22A,2B,2C,3A +slavish 'sleIvIS OA% 2 +slavishly 'sleIvISlI Pu% 3 +slaw slO L@$ 1 +slay sleI H5% 16A +slayer 'sleI@R K6% 2 +slayers 'sleI@z Kj% 2 +slaying 'sleIIN Hb% 26A +slays sleIz Ha% 16A +sleazier 'slizI@R Or% 3 +sleaziest 'slizIIst Os% 3 +sleazy 'slizI OD% 2 +sled sled K6$ 1 +sledge sledZ J2%,K6% 1 +sledged sledZd Jc%,Jd% 1 +sledgehammer 'sledZh&m@R K6% 3 +sledgehammers 'sledZh&m@z Kj% 3 +sledges 'sledZIz Ja%,Kj% 2 +sledging 'sledZIN Jb% 2 +sleds sledz Kj$ 1 +sleek slik H0%,OC% 16A +sleeked slikt Hc%,Hd% 16A +sleeker 'slik@R Or% 2 +sleekest 'slikIst Os% 2 +sleeking 'slikIN Hb% 26A +sleekly 'sliklI Pu% 2 +sleekness 'slikn@s L@% 2 +sleeks sliks Ha% 16A +sleep slip J5%,L@% 12A,2B,2C,6A +sleeper 'slip@R K6% 2 +sleepers 'slip@z Kj% 2 +sleepier 'slipI@R Or% 3 +sleepiest 'slipIIst Os% 3 +sleepily 'slipIlI Pu% 3 +sleepiness 'slipIn@s L@% 3 +sleeping 'slipIN Jb%,L@% 22A,2B,2C,6A +sleeping-bag 'slipIN-b&g K6% 3 +sleeping-bags 'slipIN-b&gz Kj% 3 +sleeping-car 'slipIN-kAR K6% 3 +sleeping-cars 'slipIN-kAz Kj% 3 +sleeping-draught 'slipIN-drAft K6% 3 +sleeping-draughts 'slipIN-drAfts Kj% 3 +sleeping-pill 'slipIN-pIl K6% 3 +sleeping-pills 'slipIN-pIlz Kj% 3 +sleeping-sickness 'slipIN-sIkn@s L@% 4 +sleepless 'slipl@s OA% 2 +sleeplessly 'slipl@slI Pu% 3 +sleeplessness 'slipl@sn@s L@% 3 +sleeps slips Ja% 12A,2B,2C,6A +sleepwalker 'slipwOk@R K6% 3 +sleepwalkers 'slipwOk@z Kj% 3 +sleepy 'slipI OD% 2 +sleepy-head 'slipI-hed K6% 3 +sleepy-heads 'slipI-hedz Kj% 3 +sleet slit I0%,L@% 12A +sleeted 'slitId Ic%,Id% 22A +sleetier 'slitI@R Or$ 3 +sleetiest 'slitIIst Os$ 3 +sleeting 'slitIN Ib% 22A +sleets slits Ia$ 12A +sleety 'slitI OD$ 2 +sleeve sliv K6% 1 +sleeved slivd Ot% 1 +sleeveless 'slivl@s OA% 2 +sleeves slivz Kj% 1 +sleigh sleI J0$,K6% 12A,6A +sleigh-bell 'sleI-bel K6% 2 +sleigh-bells 'sleI-belz Kj% 2 +sleighed sleId Jc$,Jd$ 12A,6A +sleighing 'sleIIN Jb$ 22A,6A +sleighs sleIz Ja$,Kj% 12A,6A +sleight slaIt K6% 1 +sleights slaIts Kj$ 1 +slender 'slend@R OA% 2 +slenderize 'slend@raIz J2$ 36A +slenderized 'slend@raIzd Jc$,Jd$ 36A +slenderizes 'slend@raIzIz Ja$ 46A +slenderizing 'slend@raIzIN Jb$ 46A +slenderly 'slend@lI Pu$ 3 +slenderness 'slend@n@s L@% 3 +slept slept Jc%,Jd% 12A,2B,2C,6A +sleuth sluT K6% 1 +sleuth-hound 'sluT-haUnd K6% 2 +sleuth-hounds 'sluT-haUndz Kj% 2 +sleuths sluTs Kj% 1 +slew slu Hc%,J0$ 12C,6A,15B +slewed slud Jc$,Jd$ 12C,6A,15B +slewing 'sluIN Jb$ 22C,6A,15B +slews sluz Ja$ 12C,6A,15B +slice slaIs J2%,K6% 13A,6A,15A,15B,22 +sliced slaIst Jc%,Jd% 13A,6A,15A,15B,22 +slices 'slaIsIz Ja%,Kj% 23A,6A,15A,15B,22 +slicing 'slaIsIN Jb% 23A,6A,15A,15B,22 +slick slIk K6%,OC%,Pu% 1 +slicker 'slIk@R K6%,Or% 2 +slickers 'slIk@z Kj% 2 +slickest 'slIkIst Os% 2 +slicks slIks Kj% 1 +slid slId Jc%,Jd% 12A,2C,3A,6A,15A +slide slaId J5%,K6% 12A,2C,3A,6A,15A +slide-rule 'slaId-rul K6% 2 +slide-rules 'slaId-rulz Kj% 2 +slides slaIdz Ja%,Kj% 12A,2C,3A,6A,15A +sliding 'slaIdIN Jb% 22A,2C,3A,6A,15A +slight slaIt H0%,K6%,OC% 16A +slighted 'slaItId Hc%,Hd% 26A +slighter 'slaIt@R Or% 2 +slightest 'slaItIst Os% 2 +slighting 'slaItIN Hb% 26A +slightingly 'slaItINlI Pu% 3 +slightly 'slaItlI Pu% 2 +slightness 'slaItn@s L@% 2 +slights slaIts Ha%,Kj% 16A +slim slIm I4%,OE% 1 +slime slaIm L@% 1 +slimier 'slaImI@R Or% 3 +slimiest 'slaImIIst Os% 3 +sliminess 'slaImInIs L@% 3 +slimly 'slImlI Pu$ 2 +slimmed slImd Ic%,Id% 1 +slimmer 'slIm@R Or% 2 +slimmest 'slImIst Os% 2 +slimming 'slImIN Ib% 2 +slimness 'slImn@s L@% 2 +slims slImz Ia% 1 +slimy 'slaImI OD% 2 +sling slIN J5%,K6% 16A,15A,15B +slinger 'slIN@R K6$ 2 +slingers 'slIN@z Kj$ 2 +slinging 'slININ Jb% 26A,15A,15B +slings slINz Ja%,Kj% 16A,15A,15B +slink slINk I5% 12C +slinking 'slINkIN Ib% 22C +slinks slINks Ia% 12C +slip slIp J4%,M6% 12A,2C,6A,15A,15B +slip-carriage 'slIp-k&rIdZ K6$ 3 +slip-carriages 'slIp-k&rIdZIz Kj$ 4 +slip-coach 'slIp-k@UtS K7$ 2 +slip-coaches 'slIp-k@UtSIz Kj$ 3 +slip-road 'slIp-r@Ud K6% 2 +slip-roads 'slIp-r@Udz Kj% 2 +slip-up 'slIp-Vp K6% 2 +slip-ups 'slIp-Vps Kj% 2 +slipcover 'slIpkVv@R K6% 3 +slipcovers 'slIpkVv@z Kj% 3 +slipknot 'slIpn0t K6% 2 +slipknots 'slIpn0ts Kj% 2 +slipon 'slIp0n K6% 2 +slipons 'slIp0nz Kj$ 2 +slipover 'slIp@Uv@R K6% 3 +slipovers 'slIp@Uv@z Kj% 3 +slipped slIpt Jc%,Jd% 12A,2C,6A,15A,15B +slipper 'slIp@R K6% 2 +slippered 'slIp@d OA% 2 +slipperier 'slIp@rI@R Or% 4 +slipperiest 'slIp@rIIst Os% 4 +slipperiness 'slIp@rIn@s L@% 4 +slippers 'slIp@z Kj% 2 +slippery 'slIp@rI OD% 3 +slipping 'slIpIN Jb% 22A,2C,6A,15A,15B +slippy 'slIpI OA% 2 +slips slIps Ja%,Mj% 12A,2C,6A,15A,15B +slipshod 'slIpS0d OA% 2 +slipstream 'slIpstrim K6% 2 +slipstreams 'slIpstrimz Kj$ 2 +slipway 'slIpweI K6% 2 +slipways 'slIpweIz Kj% 2 +slit slIt H5%,Hc%,Hd%,K6% 12A,2C,6A,15A,22 +slither 'slID@R I0% 22A,2C +slithered 'slID@d Ic%,Id% 22A,2C +slithering 'slID@rIN Ib% 32A,2C +slithers 'slID@z Ia% 22A,2C +slithery 'slID@rI OA% 3 +slits slIts Ha%,Kj% 12A,2C,6A,15A,22 +slitting 'slItIN Hb% 22A,2C,6A,15A,22 +sliver 'slIv@R J0$,K6% 22A,6A +slivered 'slIv@d Jc$,Jd$ 22A,6A +slivering 'slIv@rIN Jb$ 32A,6A +slivers 'slIv@z Ja$,Kj% 22A,6A +slob sl0b K6% 1 +slobber 'sl0b@R J0%,L@$ 22A,3A,6A +slobbered 'sl0b@d Jc%,Jd% 22A,3A,6A +slobbering 'sl0b@rIN Jb% 32A,3A,6A +slobbers 'sl0b@z Ja% 22A,3A,6A +slobs sl0bz Kj% 1 +sloe sl@U K6$ 1 +sloe-gin 'sl@U-dZIn L@$ 2 +sloes sl@Uz Kj$ 1 +slog sl0g J4% 12C,3A,6A +slogan 'sl@Ug@n K6% 2 +slogans 'sl@Ug@nz Kj% 2 +slogged sl0gd Jc%,Jd% 12C,3A,6A +slogger 'sl0g@R K6% 2 +sloggers 'sl0g@z Kj% 2 +slogging 'sl0gIN Jb% 22C,3A,6A +slogs sl0gz Ja% 12C,3A,6A +sloop slup K6% 1 +sloops slups Kj% 1 +slop sl0p J4%,K6% 12A,2C,6A,15A +slop-basin 'sl0p-beIsn K6% 3 +slop-basins 'sl0p-beIsnz Kj% 3 +slop-pail 'sl0p-peIl K6% 2 +slop-pails 'sl0p-peIlz Kj% 2 +slop-shop 'sl0p-S0p K6$ 2 +slop-shops 'sl0p-S0ps Kj$ 2 +slope sl@Up J2%,M6% 12A,2C,6A +sloped sl@Upt Jc%,Jd% 12A,2C,6A +slopes sl@Ups Ja%,Mj% 12A,2C,6A +sloping 'sl@UpIN Jb% 22A,2C,6A +slopingly 'sl@UpINlI Pu$ 3 +slopped sl0pt Jc%,Jd% 12A,2C,6A,15A +sloppier 'sl0pI@R Or% 3 +sloppiest 'sl0pIIst Os% 3 +sloppily 'sl0pIlI Pu% 3 +sloppiness 'sl0pIn@s L@% 3 +slopping 'sl0pIN Jb% 22A,2C,6A,15A +sloppy 'sl0pI OD% 2 +slops sl0ps Ja%,Kj% 12A,2C,6A,15A +slosh sl0S J1% 13A,6A,15A,15B +sloshed sl0St Jc%,Jd%,OA% 13A,6A,15A,15B +sloshes 'sl0SIz Ja% 23A,6A,15A,15B +sloshing 'sl0SIN Jb% 23A,6A,15A,15B +slot sl0t H4%,K6% 16A,15A +slot-machine 'sl0t-m@Sin K6% 3 +slot-machines 'sl0t-m@Sinz Kj% 3 +sloth sl@UT M6% 1 +slothful 'sl@UTf@l OA% 2 +sloths sl@UTs Mj$ 1 +slots sl0ts Ha%,Kj% 16A,15A +slotted 'sl0tId Hc%,Hd% 26A,15A +slotting 'sl0tIN Hb% 26A,15A +slouch slaUtS I1%,K7% 12A,2C +slouch-hat slaUtS-'h&t K6$ 2 +slouch-hats slaUtS-'h&ts Kj$ 2 +slouched slaUtSt Ic%,Id% 12A,2C +slouches 'slaUtSIz Ia%,Kj% 22A,2C +slouching 'slaUtSIN Ib% 22A,2C +slouchingly 'slaUtSINlI Pu$ 3 +slough slVf J0$,K6$ 12A,6A,15B +slough slaU K6$ 1 +sloughed slVft Jc$,Jd$ 12A,6A,15B +sloughing 'slVfIN Jb$ 22A,6A,15B +sloughs slVfs Ja$,Kj$ 12A,6A,15B +sloughs slaUz Kj$ 1 +sloven 'slVvn K6$ 2 +slovenlier 'slVv@nlI@R Or% 4 +slovenliest 'slVv@nlIIst Os% 4 +slovenliness 'slVvnlIn@s L@% 4 +slovenly 'slVv@nlI OD% 3 +slovens 'slVvnz Kj$ 2 +slow sl@U J0%,OC%,Pu% 12C,15B +slow-worm 'sl@U-w3m K6% 2 +slow-worms 'sl@U-w3mz Kj% 2 +slowcoach 'sl@Uk@UtS K7% 2 +slowcoaches 'sl@Uk@UtSIz Kj% 3 +slowdown 'sl@UdaUn K6% 2 +slowdowns 'sl@UdaUnz Kj$ 2 +slowed sl@Ud Jc%,Jd% 12C,15B +slower 'sl@U@R Or%,Pu% 2 +slowest 'sl@UIst Os%,Pu% 2 +slowing 'sl@UIN Jb% 22C,15B +slowly 'sl@UlI Pu% 2 +slowness 'sl@Un@s L@% 2 +slows sl@Uz Ja% 12C,15B +sludge slVdZ L@% 1 +slug slVg J4%,K6% 1 +sluggard 'slVg@d K6% 2 +sluggards 'slVg@dz Kj% 2 +slugged slVgd Jc%,Jd% 1 +slugging 'slVgIN Jb% 2 +sluggish 'slVgIS OA% 2 +sluggishly 'slVgISlI Pu% 3 +sluggishness 'slVgISn@s L@% 3 +slugs slVgz Ja%,Kj% 1 +sluice slus J2%,K6% 13A,6A,15B +sluice-valve 'slus-v&lv K6% 2 +sluice-valves 'slus-v&lvz Kj% 2 +sluiced slust Jc%,Jd% 13A,6A,15B +sluicegate 'slusgeIt K6% 2 +sluicegates 'slusgeIts Kj% 2 +sluices 'slusIz Ja%,Kj% 23A,6A,15B +sluicing 'slusIN Jb% 23A,6A,15B +slum slVm I4%,K6% 1 +slumber 'slVmb@R J0%,K6% 22A,15B +slumbered 'slVmb@d Jc%,Jd% 22A,15B +slumberer 'slVmb@r@R K6% 3 +slumberers 'slVmb@r@z Kj% 3 +slumbering 'slVmb@rIN Jb% 32A,15B +slumberous 'slVmb@r@s OA$ 3 +slumbers 'slVmb@z Ja%,Kj% 22A,15B +slummed slVmd Ic%,Id% 1 +slummier 'slVmI@R Or% 3 +slummiest 'slVmIIst Os% 3 +slumming 'slVmIN Ib% 2 +slummy 'slVmI OD% 2 +slump slVmp I0%,K6% 12A,2C +slumped slVmpt Ic%,Id% 12A,2C +slumping 'slVmpIN Ib% 22A,2C +slumps slVmps Ia%,Kj% 12A,2C +slums slVmz Ia%,Kj% 1 +slung slVN Jc%,Jd% 16A,15A,15B +slunk slVNk Ic%,Id% 12C +slur sl3R J4%,M6% 13A,6A +slurred sl3d Jc%,Jd% 13A,6A +slurring 'sl3rIN Jb% 23A,6A +slurry 'slVrI L@$ 2 +slurs sl3z Ja%,Mj% 13A,6A +slush slVS L@% 1 +slushier 'slVSI@R Or% 3 +slushiest 'slVSIIst Os% 3 +slushy 'slVSI OD% 2 +slut slVt K6% 1 +sluts slVts Kj% 1 +sluttish 'slVtIS OA% 2 +sly slaI OC% 1 +slyer 'slaI@R Or% 2 +slyest 'slaIIst Os% 2 +slyly 'slaIlI Pu% 2 +slyness 'slaIn@s L@% 2 +smack sm&k J0%,K6%,Pu% 13A,6A +smacked sm&kt Jc%,Jd% 13A,6A +smacker 'sm&k@R K6% 2 +smackers 'sm&k@z Kj% 2 +smacking 'sm&kIN Jb%,M6% 23A,6A +smackings 'sm&kINz Mj% 2 +smacks sm&ks Ja%,Kj% 13A,6A +small smOl K6%,OC*,Pu* 1 +small-arms 'smOl-Amz Kj% 2 +small-minded smOl-'maIndId OA% 3 +smaller 'smOl@R Or% 2 +smallest 'smOlIst Os% 2 +smallholder 'smOlh@Uld@R K6% 3 +smallholders 'smOlh@Uld@z Kj% 3 +smallholding 'smOlh@UldIN K6% 3 +smallholdings 'smOlh@UldINz Kj% 3 +smallness 'smOln@s L@% 2 +smallpox 'smOlp0ks L@% 2 +smalls smOlz Kj% 1 +smalltime 'smOltaIm OA% 2 +smarmy 'smAmI OA% 2 +smart smAt I0%,L@%,OC% 12A,2C,3A +smarted 'smAtId Hd%,Ic% 22A,2C,3A +smarten 'smAtn J0% 22C,6A,15B +smartened 'smAtnd Jc%,Jd% 22C,6A,15B +smartening 'smAtnIN Jb% 22C,6A,15B +smartens 'smAtnz Ja% 22C,6A,15B +smarter 'smAt@R Or% 2 +smartest 'smAtIst Os% 2 +smarting 'smAtIN Ib% 22A,2C,3A +smartly 'smAtlI Pu% 2 +smartness 'smAtn@s L@% 2 +smarts smAts Ia% 12A,2C,3A +smash sm&S J1%,K7%,Pu% 12A,2C,6A,15A,15B,22 +smash-up 'sm&S-Vp K6% 2 +smash-ups 'sm&S-Vps Kj$ 2 +smashed sm&St Jc%,Jd% 12A,2C,6A,15A,15B,22 +smasher 'sm&S@R K6% 2 +smashers 'sm&S@z Kj% 2 +smashes 'sm&SIz Ja%,Kj% 22A,2C,6A,15A,15B,22 +smashing 'sm&SIN Jb%,OA% 22A,2C,6A,15A,15B,22 +smattering 'sm&t@rIN K6% 3 +smatterings 'sm&t@rINz Kj$ 3 +smear smI@R J0%,K6% 12A,6A,14 +smear-word 'smI@-w3d K6$ 2 +smear-words 'smI@-w3dz Kj$ 2 +smeared smI@d Jc%,Jd% 12A,6A,14 +smearing 'smI@rIN Jb% 22A,6A,14 +smears smI@z Ja%,Kj% 12A,6A,14 +smell smel J0%,M6% 12A,2C,2D,3A,6A,15B,19A +smelled smeld Jc%,Jd% 12A,2C,2D,3A,6A,15B,19A +smellier 'smelI@R Or% 3 +smelliest 'smelIIst Os% 3 +smelling 'smelIN Jb% 22A,2C,2D,3A,6A,15B,19A +smelling-bottle 'smelIN-b0tl K6$ 4 +smelling-bottles 'smelIN-b0tlz Kj$ 4 +smelling-salts 'smelIN-s0lts Kj% 3 +smells smelz Ja%,Mj% 12A,2C,2D,3A,6A,15B,19A +smelly 'smelI OD% 2 +smelt smelt H0$,Jc$,Jd$,K6$ 12A,2C,2D,3A,6A,15B,19A +smelted 'smeltId Hc$,Hd$ 22A,2C,2D,3A,6A,15B,19A +smelting 'smeltIN Hb$ 22A,2C,2D,3A,6A,15B,19A +smelts smelts Ha$,Kj$ 12A,2C,2D,3A,6A,15B,19A +smilax 'smaIl&ks L@$ 2 +smile smaIl J2%,K6% 12A,2B,3A,4B,6B +smiled smaIld Jc%,Jd% 12A,2B,3A,4B,6B +smiles smaIlz Ja%,Kj% 12A,2B,3A,4B,6B +smiling 'smaIlIN Jb% 22A,2B,3A,4B,6B +smilingly 'smaIlINlI Pu% 3 +smirch sm3tS H1$,K7$ 16A +smirched sm3tSt Hc$,Hd$ 16A +smirches 'sm3tSIz Ha$,Kj$ 26A +smirching 'sm3tSIN Hb$ 26A +smirk sm3k I0%,K6% 12A +smirked sm3kt Ic%,Id% 12A +smirking 'sm3kIN Ib% 22A +smirks sm3ks Ia%,Kj% 12A +smite smaIt J5$ 12A,2C,6A +smites smaIts Ja$ 12A,2C,6A +smith smIT K6% 1 +smithereens ,smID@'rinz Kj% 3 +smithies 'smIDIz Kj% 2 +smiths smITs Kj% 1 +smithy 'smIDI K8% 2 +smiting 'smaItIN Jb$ 22A,2C,6A +smitten smItn Jd% 22A,2C,6A +smock sm0k K6% 1 +smocking 'sm0kIN L@% 2 +smocks sm0ks Kj% 1 +smog sm0g M6% 1 +smogs sm0gz Mj$ 1 +smoke sm@Uk J2%,M6% 12A,2C,6A,15B,22 +smoke-bomb 'sm@Uk-b0m K6% 2 +smoke-bombs 'sm@Uk-b0mz Kj% 2 +smoke-cured 'sm@Uk-kju@d OA% 2 +smoke-dried 'sm@Uk-draId OA% 2 +smoke-screen 'sm@Uk-skrin K6% 2 +smoke-screens 'sm@Uk-skrinz Kj% 2 +smoked sm@Ukt Jc%,Jd% 12A,2C,6A,15B,22 +smokeless 'sm@Ukl@s OA% 2 +smoker 'sm@Uk@R K6% 2 +smokers 'sm@Uk@z Kj% 2 +smokes sm@Uks Ja%,Mj% 12A,2C,6A,15B,22 +smokestack 'sm@Ukst&k K6% 2 +smokestacks 'sm@Ukst&ks Kj% 2 +smokier 'sm@UkI@R Or% 3 +smokiest 'sm@UkIIst Os% 3 +smoking 'sm@UkIN Jb%,L@% 22A,2C,6A,15B,22 +smoking-car 'sm@UkIN-kAR K6% 3 +smoking-carriage 'sm@UkIN-k&rIdZ K6% 4 +smoking-carriages 'sm@UkIN-k&rIdZIz Kj% 5 +smoking-cars 'sm@UkIN-kAz Kj% 3 +smoking-compartment 'sm@UkIN-k@m,pAtm@nt K6% 5 +smoking-compartments 'sm@UkIN-k@m,pAtm@nts Kj% 5 +smoking-mixture 'sm@UkIN-mIkstS@R L@% 4 +smoking-room 'sm@UkIN-rum K6% 3 +smoking-rooms 'sm@UkIN-rumz Kj% 3 +smoky 'sm@UkI OD% 2 +smooth smuD J0%,Ki%,OC% 12C,6A,15B +smooth-bore 'smuD-bOR OA% 2 +smooth-faced 'smuD-feIst OA% 2 +smooth-spoken smuD-'sp@Uk@n OA% 3 +smooth-tongued 'smuD-tVNd OA% 2 +smoothed smuDd Jc%,Jd% 12C,6A,15B +smoother 'smuD@R Or% 2 +smoothest 'smuDIst Os% 2 +smoothing 'smuDIN Jb% 22C,6A,15B +smoothing-iron 'smuDIN-aI@n K6% 4 +smoothing-irons 'smuDIN-aI@nz Kj% 4 +smoothing-plane 'smuDIN-pleIn K6$ 3 +smoothing-planes 'smuDIN-pleInz Kj$ 3 +smoothly 'smuDlI Pu% 2 +smoothness 'smuDn@s L@% 2 +smooths smuDz Ja% 12C,6A,15B +smorgasbord 'smOg@sbOd L@$ 3 +smote sm@Ut Jc$ 12A,2C,6A +smother 'smVD@R H0%,Ki% 26A,14,15B +smothered 'smVD@d Hc%,Hd% 26A,14,15B +smothering 'smVD@rIN Hb% 36A,14,15B +smothers 'smVD@z Ha% 26A,14,15B +smoulder 'sm@Uld@R I0%,L@% 22A,2C +smouldered 'sm@Uld@d Ic%,Id% 22A,2C +smouldering 'sm@Uld@rIN Ib% 32A,2C +smoulders 'sm@Uld@z Ia% 22A,2C +smudge smVdZ J2%,K6% 12A,6A +smudged smVdZd Jc%,Jd% 12A,6A +smudges 'smVdZIz Ja%,Kj% 22A,6A +smudging 'smVdZIN Jb% 22A,6A +smudgy 'smVdZI OA% 2 +smug smVg OE% 1 +smugger 'smVg@R Or% 2 +smuggest 'smVgIst Os% 2 +smuggle 'smVgl H2% 26A,14,15A,15B +smuggled 'smVgld Hc%,Hd% 26A,14,15A,15B +smuggler 'smVgl@R K6% 2 +smugglers 'smVgl@z Kj% 2 +smuggles 'smVglz Ha% 26A,14,15A,15B +smuggling 'smVglIN Hb% 26A,14,15A,15B +smugly 'smVglI Pu% 2 +smugness 'smVgn@s L@% 2 +smut smVt H4$,M6% 16A +smuts smVts Ha$,Mj$ 16A +smutted 'smVtId Hc$,Hd$ 26A +smuttier 'smVtI@R Or% 3 +smuttiest 'smVtIIst Os% 3 +smuttily 'smVtIlI Pu% 3 +smuttiness 'smVtIn@s L@% 3 +smutting 'smVtIN Hb$ 26A +smutty 'smVtI OD% 2 +snack sn&k K6% 1 +snack-bar 'sn&k-bAR K6% 2 +snack-bars 'sn&k-bAz Kj% 2 +snack-counter 'sn&k-kaUnt@R K6% 3 +snack-counters 'sn&k-kaUnt@z Kj% 3 +snacks sn&ks Kj% 1 +snaffle 'sn&fl H2%,K6$ 26A +snaffle-bit 'sn&fl-bIt K6$ 3 +snaffle-bits 'sn&fl-bIts Kj$ 3 +snaffled 'sn&fld Hc%,Hd% 26A +snaffles 'sn&flz Ha%,Kj$ 26A +snaffling 'sn&flIN Hb% 26A +snag sn&g H4$,K6% 1 +snagged sn&gd Hc$,Hd$ 1 +snagging 'sn&gIN Hb$ 2 +snags sn&gz Ha$,Kj% 1 +snail sneIl K6% 1 +snails sneIlz Kj% 1 +snake sneIk I2%,K6% 12C +snake-charmer 'sneIk-tSAm@R K6% 3 +snake-charmers 'sneIk-tSAm@z Kj% 3 +snaked sneIkt Ic%,Id% 12C +snakes sneIks Ia%,Kj% 12C +snakier 'sneIkI@R Or$ 3 +snakiest 'sneIkIIst Os$ 3 +snaking 'sneIkIN Ib% 22C +snaky 'sneIkI OD% 2 +snap sn&p J4%,M6% 12A,2C,3A,6A,14,15A,15B,22 +snap-fastener 'sn&p-fAsn@R K6% 3 +snap-fasteners 'sn&p-fAsn@z Kj% 3 +snapdragon 'sn&pdr&g@n K6% 3 +snapdragons 'sn&pdr&g@nz Kj% 3 +snapped sn&pt Jc%,Jd% 12A,2C,3A,6A,14,15A,15B,22 +snappier 'sn&pI@R Or% 3 +snappiest 'sn&pIIst Os% 3 +snapping 'sn&pIN Jb% 22A,2C,3A,6A,14,15A,15B,22 +snappish 'sn&pIS OA$ 2 +snappishly 'sn&pISlI Pu$ 3 +snappishness 'sn&pISn@s L@% 3 +snappy 'sn&pI OD% 2 +snaps sn&ps Ja%,Mj% 12A,2C,3A,6A,14,15A,15B,22 +snapshot 'sn&pS0t K6% 2 +snapshots 'sn&pS0ts Kj% 2 +snare sne@R H2%,K6% 16A +snare-drum 'sne@-drVm K6% 2 +snare-drums 'sne@-drVmz Kj% 2 +snared sne@d Hc%,Hd% 16A +snares sne@z Ha%,Kj% 16A +snaring 'sne@rIN Hb% 26A +snarl snAl J0%,K6% 12A,2C,3A,6A,15B +snarl-up 'snAl-Vp K6% 2 +snarl-ups 'snAl-Vps Kj% 2 +snarled snAld Jc%,Jd% 12A,2C,3A,6A,15B +snarling 'snAlIN Jb% 22A,2C,3A,6A,15B +snarls snAlz Ja%,Kj% 12A,2C,3A,6A,15B +snatch sn&tS J1%,K7% 12A,6A,15A,15B +snatched sn&tSt Jc%,Jd% 12A,6A,15A,15B +snatcher 'sn&tS@R K6% 2 +snatchers 'sn&tS@z Kj% 2 +snatches 'sn&tSIz Ja%,Kj% 22A,6A,15A,15B +snatching 'sn&tSIN Jb% 22A,6A,15A,15B +snazzy 'sn&zI OA% 2 +sneak snik J0%,K6% 12A,3A,6A +sneak-thief 'snik-Tif Ki% 2 +sneak-thieves 'snik-Tivz Kj% 2 +sneaked snikt Jc%,Jd% 12A,3A,6A +sneakers 'snik@z Kj% 2 +sneakier 'snikI@R Or% 3 +sneakiest 'snikIIst Os% 3 +sneaking 'snikIN Jb%,OA% 22A,3A,6A +sneakingly 'snikINlI Pu$ 3 +sneaks sniks Ja%,Kj% 12A,3A,6A +sneaky 'snikI OD% 2 +sneer snI@R I0%,K6% 12A,3A +sneered snI@d Ic%,Id% 12A,3A +sneering 'snI@rIN Ib% 22A,3A +sneeringly 'snI@rINlI Pu% 3 +sneers snI@z Ia%,Kj% 12A,3A +sneeze sniz I2%,K6% 12A +sneezed snizd Ic%,Id% 12A +sneezes 'snizIz Ia%,Kj% 22A +sneezing 'snizIN Ib% 22A +snick snIk J0$,K6$ 1 +snicked snIkt Jc$,Jd$ 1 +snicker 'snIk@R I0$,K6$ 2 +snickered 'snIk@d Ic$,Id$ 2 +snickering 'snIk@rIN Ib$ 3 +snickers 'snIk@z Ia$,Kj$ 2 +snicking 'snIkIN Jb$ 2 +snicks snIks Ja$,Kj$ 1 +snide snaId OA% 1 +sniff snIf J0%,K6% 12A,3A,6A,15B +sniffed snIft Jc%,Jd% 12A,3A,6A,15B +sniffier 'snIfI@R Or$ 3 +sniffiest 'snIfIIst Os$ 3 +sniffing 'snIfIN Jb% 22A,3A,6A,15B +sniffle 'snIfl I2% 2 +sniffled 'snIfld Ic%,Id% 2 +sniffles 'snIflz Ia% 2 +sniffling 'snIflIN Ib% 2 +sniffs snIfs Ja%,Kj% 12A,3A,6A,15B +sniffy 'snIfI OD% 2 +snifter 'snIft@R K6% 2 +snifters 'snIft@z Kj% 2 +snigger 'snIg@R I0%,K6% 22A,2C +sniggered 'snIg@d Ic%,Id% 22A,2C +sniggering 'snIg@rIN Ib% 32A,2C +sniggers 'snIg@z Ia%,Kj% 22A,2C +snip snIp J4%,K6% 13A,6A,15B +snipe snaIp J2%,K9% 12A,3A,6A +sniped snaIpt Jc%,Jd% 12A,3A,6A +sniper 'snaIp@R K6% 2 +snipers 'snaIp@z Kj% 2 +snipes snaIps Ja% 12A,3A,6A +sniping 'snaIpIN Jb% 22A,3A,6A +snipped snIpt Jc%,Jd% 13A,6A,15B +snippet 'snIpIt K6% 2 +snippets 'snIpIts Kj% 2 +snipping 'snIpIN Jb%,K6% 23A,6A,15B +snippings 'snIpINz Kj% 2 +snips snIps Ja%,Kj% 13A,6A,15B +snitch snItS J1$ 12A,3A,6A +snitched snItSt Jc$,Jd$ 12A,3A,6A +snitches 'snItSIz Ja$ 22A,3A,6A +snitching 'snItSIN Jb$ 22A,3A,6A +snivel 'snIvl I4% 22A +snivelled 'snIvld Ic%,Id% 22A +sniveller 'snIvl@R K6% 3 +snivellers 'snIvl@z Kj% 3 +snivelling 'snIv@lIN Ib% 32A +snivels 'snIvlz Ia% 22A +snob sn0b K6% 1 +snobbery 'sn0b@rI L@% 3 +snobbish 'sn0bIS OA% 2 +snobbishly 'sn0bISlI Pu% 3 +snobbishness 'sn0bISn@s L@% 3 +snobs sn0bz Kj% 1 +snog sn0g I4% 12A +snogged sn0gd Ic% 12A +snogging 'sn0gIN Ib%,L@% 22A +snogs sn0gz Ia$ 12A +snood snud K6$ 1 +snoods snudz Kj$ 1 +snook snuk K6% 1 +snooker 'snuk@R M6% 2 +snookers 'snuk@z Mj% 2 +snooks snuks Kj$ 1 +snoop snup I0% 12A,2C,3A +snooped snupt Ic%,Id% 12A,2C,3A +snooper 'snup@R K6% 2 +snoopers 'snup@z Kj% 2 +snooping 'snupIN Ib% 22A,2C,3A +snoops snups Ia% 12A,2C,3A +snootier 'snutI@R Or% 3 +snootiest 'snutIIst Os% 3 +snootily 'snutIlI Pu% 3 +snooty 'snutI OD% 2 +snooze snuz I2%,K6% 12A +snoozed snuzd Ic%,Id% 12A +snoozes 'snuzIz Ia%,Kj% 22A +snoozing 'snuzIN Ib% 22A +snore snOR I2%,K6% 12A,2C +snored snOd Ic%,Id% 12A,2C +snorer 'snOr@R K6% 2 +snorers 'snOr@z Kj% 2 +snores snOz Ia%,Kj% 12A,2C +snoring 'snOrIN Ib% 22A,2C +snorkel 'snOkl K6% 2 +snorkels 'snOklz Kj% 2 +snort snOt J0%,K6% 12A,2C,6A,15B +snorted 'snOtId Jc%,Jd% 22A,2C,6A,15B +snorter 'snOt@R K6$ 2 +snorters 'snOt@z Kj$ 2 +snortier 'snOtI@R Or$ 3 +snortiest 'snOtIIst Os$ 3 +snorting 'snOtIN Jb% 22A,2C,6A,15B +snorts snOts Ja%,Kj% 12A,2C,6A,15B +snorty 'snOtI OD$ 2 +snot sn0t L@% 1 +snot-nosed 'sn0t-n@Uzd OA% 2 +snottier 'sn0tI@R Or$ 3 +snottiest 'sn0tIIst Os$ 3 +snotty 'sn0tI OD% 2 +snout snaUt K6% 1 +snouts snaUts Kj% 1 +snow sn@U J0%,M6% 12A,2B,2C +snow-clad 'sn@U-kl&d OA% 2 +snow-covered 'sn@U-kVv@d OA% 3 +snow-line 'sn@U-laIn K6% 2 +snow-lines 'sn@U-laInz Kj% 2 +snow-white 'sn@U-waIt OA% 2 +snowball 'sn@UbAl J0%,K6% 2 +snowballed 'sn@UbAld Jc%,Jd% 2 +snowballing 'sn@UbAlIN Jb% 3 +snowballs 'sn@UbAlz Ja%,Kj% 2 +snowberries 'sn@UberIz Kj$ 3 +snowberry 'sn@UberI K8$ 3 +snowblind 'sn@UblaInd OA% 2 +snowblindness 'sn@UblaIn+n@s L@% 3 +snowbound 'sn@UbaUnd OA% 2 +snowcapped 'sn@Uk&pt OA% 2 +snowdrift 'sn@UdrIft K6% 2 +snowdrifts 'sn@UdrIfts Kj% 2 +snowdrop 'sn@Udr0p K6% 2 +snowdrops 'sn@Udr0ps Kj% 2 +snowed sn@Ud Jc%,Jd% 12A,2B,2C +snowfall 'sn@UfOl K6% 2 +snowfalls 'sn@UfOlz Kj% 2 +snowfield 'sn@Ufild K6% 2 +snowfields 'sn@Ufildz Kj% 2 +snowflake 'sn@UfleIk K6% 2 +snowflakes 'sn@UfleIks Kj% 2 +snowier 'sn@UI@R Or$ 3 +snowiest 'sn@UIIst Os$ 3 +snowing 'sn@UIN Jb% 22A,2B,2C +snowman 'sn@Um&n Ki% 2 +snowmen 'sn@Umen Kj% 2 +snowplough 'sn@UplaU K6% 2 +snowploughs 'sn@UplaUz Kj% 2 +snows sn@Uz Ja%,Mj% 12A,2B,2C +snowshoes 'sn@USuz Kj% 2 +snowstorm 'sn@UstOm K6% 2 +snowstorms 'sn@UstOmz Kj% 2 +snowy 'sn@UI OD% 2 +snub snVb H4%,K6%,OA% 16A +snub-nosed snVb-'n@Uzd OA% 2 +snubbed snVbd Hc%,Hd% 16A +snubbing 'snVbIN Hb% 26A +snubs snVbz Ha%,Kj% 16A +snuff snVf J0%,M6% 12C,6A,15B +snuff-colour 'snVf-kVl@R L@$,OA$ 3 +snuff-coloured 'snVf-kVl@d OA$ 3 +snuffbox 'snVfb0ks K7% 2 +snuffboxes 'snVfb0ksIz Kj% 3 +snuffed snVft Jc%,Jd% 12C,6A,15B +snuffers 'snVf@z Kj$ 2 +snuffing 'snVfIN Jb% 22C,6A,15B +snuffle 'snVfl I2%,K6% 22A +snuffled 'snVfld Ic%,Id% 22A +snuffles 'snVflz Ia%,Kj% 22A +snuffling 'snVflIN Ib% 22A +snuffs snVfs Ja%,Mj$ 12C,6A,15B +snug snVg K6%,OE% 1 +snugger 'snVg@R Or% 2 +snuggeries 'snVg@rIz Kj$ 3 +snuggery 'snVg@rI K8$ 3 +snuggest 'snVgIst Os% 2 +snuggle 'snVgl J2% 22C,14 +snuggled 'snVgld Jc%,Jd% 22C,14 +snuggles 'snVglz Ja% 22C,14 +snuggling 'snVglIN Jb% 22C,14 +snugly 'snVglI Pu% 2 +snugness 'snVgn@s L@$ 2 +snugs snVgz Kj$ 1 +so s@U Ki%,Pu*,V-* 1 +so-and-so 's@U-@n-s@U K6% 3 +so-and-sos 's@U-@n-s@Uz Kj% 3 +so-called s@U-'kOld OA% 2 +so-so ,s@U-'s@U Op%,Pu% 2 +soak s@Uk J0%,K6% 12A,3A,6A,14,15A,15B +soaked s@Ukt Jc%,Jd% 12A,3A,6A,14,15A,15B +soaker 's@Uk@R K6$ 2 +soakers 's@Uk@z Kj$ 2 +soaking 's@UkIN Jb% 22A,3A,6A,14,15A,15B +soaks s@Uks Ja%,Kj% 12A,3A,6A,14,15A,15B +soap s@Up H0%,M6% 16A,15B +soap-bubble 's@Up-bVbl K6% 3 +soap-bubbles 's@Up-bVblz Kj% 3 +soap-opera 's@Up-0pr@ M6% 3 +soap-operas 's@Up-0pr@z Mj% 3 +soapbox 's@Upb0ks K7% 2 +soapboxes 's@Upb0ksIz Kj% 3 +soaped s@Upt Hc%,Hd% 16A,15B +soapier 's@UpI@R Or$ 3 +soapiest 's@UpIIst Os$ 3 +soaping 's@UpIN Hb% 26A,15B +soaps s@Ups Ha%,Mj% 16A,15B +soapsuds 's@UpsVdz Kj% 2 +soapy 's@UpI OD% 2 +soar sOR I0% 12A,2C +soared sOd Ic%,Id% 12A,2C +soaring 'sOrIN Ib% 22A,2C +soars sOz Ia% 12A,2C +sob s0b J4%,K6% 12A,2C,15A,15B +sob-stuff 's0b-stVf L@% 2 +sobbed s0bd Jc%,Jd% 12A,2C,15A,15B +sobbing 's0bIN Jb% 22A,2C,15A,15B +sobbingly 's0bINlI Pu% 3 +sober 's@Ub@R J0%,OA% 22C,6A,15B +sober-sides 's@Ub@-saIdz Ki% 3 +sobered 's@Ub@d Jc%,Jd% 22C,6A,15B +sobering 's@Ub@rIN Jb% 32C,6A,15B +soberly 's@Ub@lI Pu% 3 +sobers 's@Ub@z Ja% 22C,6A,15B +sobriety s@'braI@tI L@% 4 +sobriquet 's@UbrIkeI K6$ 3 +sobriquets 's@UbrIkeIz Kj$ 3 +sobs s0bz Ja%,Kj% 12A,2C,15A,15B +soccer 's0k@R L@% 2 +sociability ,s@US@'bIlItI L@% 5 +sociable 's@US@bl OA% 3 +sociably 's@US@blI Pu% 3 +social 's@USl K6%,OA% 2 +social-work 's@USl-w3k L@% 3 +socialism 's@US@lIz@m L@% 4 +socialist 's@US@lIst K6%,OA% 3 +socialists 's@US@lIsts Kj% 3 +socialite 's@US@laIt K6% 3 +socialites 's@US@laIts Kj% 3 +socialization ,s@US@laI'zeISn M6% 5 +socializations ,s@US@laI'zeISnz Mj$ 5 +socialize 's@US@laIz H2% 36A +socialized 's@US@laIzd Hc%,Hd% 36A +socializes 's@US@laIzIz Ha% 46A +socializing 's@US@laIzIN Hb% 46A +socially 's@US@lI Pu% 3 +socials 's@USlz Kj% 2 +societies s@'saI@tIz Mj% 4 +society s@'saI@tI M8% 4 +socio- ,s@UsI@U- U-% 3 +sociological ,s@UsI@'l0dZIkl OA% 6 +sociologically ,s@UsI@'l0dZIklI Pu% 6 +sociologist ,s@USI'0l@dZIst K6% 5 +sociologists ,s@USI'0l@dZIsts Kj% 5 +sociology ,s@UsI'0l@dZI L@% 5 +sock s0k H0%,K6%,Pu% 16A,15A +socked s0kt Hc%,Hd% 16A,15A +socket 's0kIt K6% 2 +sockets 's0kIts Kj% 2 +socking 's0kIN Hb% 26A,15A +socks s0ks Ha%,Kj% 16A,15A +sod s0d I4$,M6% 1 +soda 's@Ud@ L@% 2 +soda-biscuit 's@Ud@-bIskIt K6$ 4 +soda-biscuits 's@Ud@-bIskIts Kj$ 4 +soda-cracker 's@Ud@-kr&k@R K6$ 4 +soda-crackers 's@Ud@-kr&k@z Kj$ 4 +soda-fountain 's@Ud@-faUntIn K6% 4 +soda-fountains 's@Ud@-faUntInz Kj% 4 +soda-water 's@Ud@-wOt@R M6% 4 +soda-waters 's@Ud@-wOt@z Mj$ 4 +sodded 's0dId Ic$,Id$ 2 +sodden 's0dn OA% 2 +sodding 's0dIN Ib$,Oq% 2 +sodium 's@UdI@m L@% 3 +sodomite 's0d@maIt K6$ 3 +sodomites 's0d@maIts Kj$ 3 +sodomy 's0d@mI L@% 3 +sods s0dz Ia$,Mj% 1 +sofa 's@Uf@ K6% 2 +sofas 's@Uf@z Kj% 2 +soft s0ft OC% 1 +soft-boiled 's0ft-boIld OA% 2 +soft-footed s0ft-'fUtId OA% 3 +soft-headed s0ft-'hedId OA% 3 +soft-hearted s0ft-'hAtId OA% 3 +soft-pedal s0ft-'ped@l J4% 3 +soft-pedalled s0ft-'ped@ld Jc%,Jd% 3 +soft-pedalling s0ft-'ped@lIN Jb% 4 +soft-pedals s0ft-'ped@lz Ja% 3 +soft-soap s0ft-'s@Up H0% 2 +soft-soaped s0ft-'s@Upt Hc%,Hd% 2 +soft-soaping s0ft-'s@UpIN Hb% 3 +soft-soaps s0ft-'s@Ups Ha% 2 +soft-solder s0ft-'s@Uld@R H0$,L@$ 3 +soft-soldered s0ft-'s@Uld@d Hc$,Hd$ 3 +soft-soldering s0ft-'s@Uld@rIN Hb$ 4 +soft-solders s0ft-'s@Uld@z Ha$ 3 +soft-spoken s0ft-'sp@Uk@n OA% 3 +soft-witted s0ft-'wItId OA$ 3 +soften 's0fn J0% 22A,6A +softened 's0fnd Jc%,Jd% 22A,6A +softener 's0fn@R K6% 2 +softeners 's0fn@z Kj% 2 +softening 's0fnIN Jb% 22A,6A +softens 's0fnz Ja% 22A,6A +softer 's0ft@R Or% 2 +softest 's0ftIst Os% 2 +softie 's0ftI K6% 2 +softies 's0ftIz Kj% 2 +softish 's0ftIS OA% 2 +softland s0ft'l&nd I0$ 2 +softlanded s0ft'l&ndId Ic$,Id$ 3 +softlanding s0ft'l&ndIN Ib$ 3 +softlands s0ft'l&ndz Ia$ 2 +softly 's0ftlI Pu% 2 +softness 's0ftn@s L@% 2 +software 's0ftwe@R L@% 2 +softwood 's0ftwUd M6% 2 +softwoods 's0ftwUdz Mj% 2 +softy 's0ftI K8% 2 +soggier 's0gI@R Or% 3 +soggiest 's0gIIst Os% 3 +sogginess 's0gIn@s L@% 3 +soggy 's0gI OD% 2 +soh s@U Ki$ 1 +soign_e 'swAnjeI OA$ 2 +soignee 'swAnjeI OA$ 2 +soil soIl J0%,M6% 12A,2C,6A +soil-pipe 'soIl-paIp K6% 2 +soil-pipes 'soIl-paIps Kj% 2 +soiled soIld Jc%,Jd% 12A,2C,6A +soiling 'soIlIN Jb% 22A,2C,6A +soils soIlz Ja%,Mj% 12A,2C,6A +soir_ee 'swAreI K6% 2 +soir_ees 'swAreIz Kj% 2 +sojourn 's0dZ@n I0$,K6% 22C +sojourned 's0dZ@nd Ic$,Id$ 22C +sojourner 's0dZ@n@R K6$ 3 +sojourners 's0dZ@n@z Kj$ 3 +sojourning 's0dZ@nIN Ib$ 32C +sojourns 's0dZ@nz Ia$,Kj$ 22C +sol-fa ,s0l-'fA Ki$ 2 +solace 's0lIs H2$,M6% 26A,15A +solaced 's0lIst Hc$,Hd$ 26A,15A +solaces 's0lIsIz Ha$,Mj$ 36A,15A +solacing 's0lIsIN Hb$ 36A,15A +solar 's@Ul@R OA% 2 +solar plexus ,s@Ul@ 'pleks@s Ki% 4 +solaria s@U'le@rI@ Kj$ 4 +solarium s@U'le@rI@m Ki$ 4 +sold s@Uld Jc%,Jd% 12A,2C,6A,12A,13A,15B +solder 's0ld@R H0%,L@% 26A,15A,15B +soldered 's0ld@d Hc%,Hd% 26A,15A,15B +soldering 's0ld@rIN Hb% 36A,15A,15B +soldering-iron 's0ld@rIN-aI@n K6% 5 +soldering-irons 's0ld@rIN-aI@nz Kj% 5 +solders 's0ld@z Ha% 26A,15A,15B +soldier 's@UldZ@R I0%,K6% 22A +soldiered 's@UldZ@d Ic%,Id% 22A +soldiering 's@UldZ@rIN Ib% 32A +soldiers 's@UldZ@z Ia%,Kj% 22A +soldiery 's@UldZ@rI Ki% 3 +sole s@Ul H2%,K6%,OA% 16A +solecism 's0lIsIz@m K6$ 4 +solecisms 's0lIsIz@mz Kj$ 4 +soled s@Uld Hc%,Hd%,Ot% 16A +solely 's@UlI Pu% 2 +solemn 's0l@m OA% 2 +solemnities s@'lemnItIz Mj% 4 +solemnity s@'lemnItI M8% 4 +solemnization ,s0l@mnaI'zeISn L@$ 5 +solemnize 's0l@mnaIz H2$ 36A +solemnized 's0l@mnaIzd Hc$,Hd% 36A +solemnizes 's0l@mnaIzIz Ha$ 46A +solemnizing 's0l@mnaIzIN Hb$ 46A +solemnly 's0l@mlI Pu% 3 +solemnness 's0l@mn@s L@% 3 +soles s@Ulz Ha%,Kj% 16A +solicit s@'lIsIt J0% 32A,6A,14 +solicitation s@,lIsI'teISn M6% 5 +solicitations s@,lIsI'teISnz Mj% 5 +solicited s@'lIsItId Jc%,Jd% 42A,6A,14 +soliciting s@'lIsItIN Jb% 42A,6A,14 +solicitor s@'lIsIt@R K6% 4 +solicitors s@'lIsIt@z Kj% 4 +solicitous s@'lIsIt@s OA% 4 +solicitously s@'lIsIt@slI Pu% 5 +solicits s@'lIsIts Ja% 32A,6A,14 +solicitude s@'lIsItjud L@% 4 +solid 's0lId K6%,OA% 2 +solid-state ,s0lId-'steIt OA% 3 +solidarity ,s0lI'd&rItI L@% 5 +solidification s@,lIdIfI'keISn M6% 6 +solidifications s@,lIdIfI'keISnz Mj$ 6 +solidified s@'lIdIfaId Jc%,Jd% 42A,6A +solidifies s@'lIdIfaIz Ja% 42A,6A +solidify s@'lIdIfaI J3% 42A,6A +solidifying s@'lIdIfaIIN Jb% 52A,6A +solidity s@'lIdItI L@% 4 +solidly 's0lIdlI Pu% 3 +solidness 's0lIdn@s L@% 3 +solids 's0lIdz Kj% 2 +soliloquies s@'lIl@kwIz Mj% 4 +soliloquize s@'lIl@kwaIz I2$ 42A +soliloquized s@'lIl@kwaIzd Ic$,Id$ 42A +soliloquizes s@'lIl@kwaIzIz Ia$ 52A +soliloquizing s@'lIl@kwaIzIN Ib$ 52A +soliloquy s@'lIl@kwI M8% 4 +soling 's@UlIN Hb% 26A +solipsism 's0lIpsIz@m L@$ 4 +solitaire ,s0lI'te@R M6% 3 +solitaires ,s0lI'te@z Mj$ 3 +solitarily 's0lItr@lI Pu% 4 +solitary 's0lItrI OA% 3 +solitude 's0lItjud M6% 3 +solitudes 's0lItjudz Mj$ 3 +solo 's@Ul@U M6% 2 +soloist 's@Ul@UIst K6% 3 +soloists 's@Ul@UIsts Kj% 3 +solos 's@Ul@Uz Mj% 2 +solstice 's0lstIs K6% 2 +solstices 's0lstIsIz Kj$ 3 +solubility ,s0ljU'bIlItI L@% 5 +soluble 's0ljUbl OA% 3 +solution s@'luSn M6% 3 +solutions s@'luSnz Mj% 3 +solvable 's0lv@bl OA% 3 +solve s0lv H2% 16A +solved s0lvd Hc%,Hd% 16A +solvency 's0lv@nsI L@% 3 +solvent 's0lv@nt K6%,OA% 2 +solvents 's0lv@nts Kj% 2 +solves s0lvz Ha% 16A +solving 's0lvIN Hb% 26A +somatic s@U'm&tIk OA$ 3 +sombre 's0mb@R OA% 2 +sombrely 's0mb@lI Pu% 3 +sombreness 's0mb@n@s L@% 3 +sombrero s0m'bre@r@U K6% 3 +sombreros s0m'bre@r@Uz Kj% 3 +some sVm OA*,Pu*,Qx* 1 +somebody 'sVmb@dI Qx% 3 +someday 'sVmdeI Pu% 2 +somehow 'sVmhaU Pu% 2 +someone 'sVmwVn Ki%,Qx% 2 +someplace 'sVmpleIs Pu$ 2 +somersault 'sVm@sOlt I0%,K6% 32A +somersaulted 'sVm@sOltId Ic%,Id% 42A +somersaulting 'sVm@sOltIN Ib% 42A +somersaults 'sVm@sOlts Ia%,Kj% 32A +something 'sVmTIN Pu*,Qx* 2 +sometime 'sVmtaIm Pu% 2 +sometimes 'sVmtaImz Pu* 2 +someway 'sVmweI Pu$ 2 +somewhat 'sVmw0t Pu% 2 +somewhere 'sVmwe@R Pu% 2 +somnambulism s0m'n&mbjUlIz@m L@% 5 +somnambulist s0m'n&mbjUlIst K6% 4 +somnambulists s0m'n&mbjUlIsts Kj% 4 +somnolence 's0mn@l@ns L@% 3 +somnolent 's0mn@l@nt OA% 3 +somnolently 's0mn@l@ntlI Pu% 4 +son sVn K6% 1 +son-in-law 'sVn-In-lO Ki% 3 +sonar 's@UnAR K6$ 2 +sonars 's@UnAz Kj$ 2 +sonata s@'nAt@ K6% 3 +sonatas s@'nAt@z Kj% 3 +song s0N M6% 1 +songbird 's0Nb3d K6% 2 +songbirds 's0Nb3dz Kj% 2 +songbook 's0NbUk K6% 2 +songbooks 's0NbUks Kj% 2 +songs s0Nz Mj% 1 +songster 's0Nst@R K6% 2 +songsters 's0Nst@z Kj% 2 +songstress 's0NstrIs K7$ 2 +songstresses 's0NstrIsIz Kj$ 3 +sonic 's0nIk OA% 2 +sonnet 's0nIt K6% 2 +sonneteer ,s0nI'tI@R K6$ 3 +sonneteers ,s0nI'tI@z Kj$ 3 +sonnets 's0nIts Kj% 2 +sonnies 'sVnIz Kj$ 2 +sonny 'sVnI K8% 2 +sonorities s@'n0rItIz Mj$ 4 +sonority s@'n0rItI M8$ 4 +sonorous s@'nOr@s OA% 3 +sonorously s@'nOr@slI Pu% 4 +sons sVnz Kj% 1 +sons-in-law 'sVnz-In-lO Kj% 3 +sonsy 's0nsI OA$ 2 +soon sun Pu* 1 +sooner 'sun@R Pu% 2 +soonest 'sunIst Pu% 2 +soot sUt H0$,L@% 1 +sooted 'sUtId Hc$,Hd$ 2 +sooth suT K6$ 1 +soothe suD H2% 16A +soothed suDd Hc%,Hd% 16A +soothes suDz Ha% 16A +soothing 'suDIN Hb% 26A +soothingly 'suDINlI Pu% 3 +sooths suTs Kj$ 1 +soothsayer 'suTseI@R K6% 3 +soothsayers 'suTseI@z Kj% 3 +sootier 'sUtI@R Or% 3 +sootiest 'sUtIIst Os% 3 +sooting 'sUtIN Hb$ 2 +soots sUts Ha$ 1 +sooty 'sUtI OD% 2 +sop s0p H4$,K6% 16A,15B +sophism 's0fIz@m M6$ 3 +sophisms 's0fIz@mz Mj$ 3 +sophist 's0fIst K6$ 2 +sophisticated s@'fIstIkeItId OA% 5 +sophistication s@,fIstI'keISn L@% 5 +sophistries 's0fIstrIz Mj$ 3 +sophistry 's0fIstrI M8% 3 +sophists 's0fIsts Kj$ 2 +sophomore 's0f@mOR K6$ 3 +sophomores 's0f@mOz Kj$ 3 +soporific ,s0p@'rIfIk K6$,OA% 4 +soporifics ,s0p@'rIfIks Kj$ 4 +sopped s0pt Hc$,Hd$ 16A,15B +soppier 's0pI@R Or% 3 +soppiest 's0pIIst Os% 3 +sopping 's0pIN Hb$,OA%,Pu% 26A,15B +soppy 's0pI OD% 2 +soprano s@'prAn@U K6% 3 +sopranos s@'prAn@Uz Kj% 3 +sops s0ps Ha$,Kj% 16A,15B +sorbet 'sOb@t K6% 2 +sorbets 'sOb@ts Kj% 2 +sorcerer 'sOs@r@R K6% 3 +sorcerers 'sOs@r@z Kj% 3 +sorceress 'sOs@rIs K7% 3 +sorceresses 'sOs@rIsIz Kj$ 4 +sorceries 'sOs@rIz Mj$ 3 +sorcery 'sOs@rI M8% 3 +sordid 'sOdid OA% 2 +sordidly 'sOdidlI Pu% 3 +sordidness 'sOdidn@s L@% 3 +sore sOR K6%,OA% 1 +sorely 'sOlI Pu% 2 +soreness 'sOn@s L@% 2 +sores sOz Kj% 1 +sorghum 'sOg@m L@$ 2 +sororities s@'r0rItIz Kj$ 4 +sorority s@'r0rItI K8$ 4 +sorrel 's0r@l M6$,OA$ 2 +sorrels 's0r@lz Mj$ 2 +sorrier 's0rI@R Or% 3 +sorriest 's0rIIst Os% 3 +sorrow 's0r@U I0%,M6% 22A,2C +sorrowed 's0r@Ud Ic%,Id% 22A,2C +sorrowful 's0r@Uf@l OA% 3 +sorrowfully 's0r@Uf@lI Pu% 4 +sorrowing 's0r@UIN Ib% 32A,2C +sorrows 's0r@Uz Ia%,Mj% 22A,2C +sorry 's0rI OD% 2 +sort sOt J0%,K6% 16A,15B +sorted 'sOtId Jc%,Jd% 26A,15B +sorter 'sOt@R K6% 2 +sorters 'sOt@z Kj% 2 +sortie 'sOti K6% 2 +sorties 'sOtiz Kj% 2 +sorting 'sOtIN Jb% 26A,15B +sorts sOts Ja%,Kj% 16A,15B +sot s0t K6% 1 +sots s0ts Kj% 1 +sottish 's0tIS OA$ 2 +sottishly 's0tISlI Pu$ 3 +sottishness 's0tISn@s L@$ 3 +sotto voce ,s0t@U 'v@UtSI Pu$ 4 +sou su K6$ 1 +sou'-east ,saU-'ist L@$,Pu$ 2 +sou'-sou'-east ,saU-saU-'ist L@$,Pu$ 3 +sou'-sou'-west ,saU-saU-'west L@$,Pu$ 3 +sou'-west ,saU-'west L@$,Pu$ 2 +sou'-wester ,saU-'west@R K6% 3 +sou'-westers ,saU-'west@z Kj% 3 +soubrette su'bret K6$ 2 +soubrettes su'brets Kj$ 2 +soubriquet 'subrIkeI K6$ 3 +soubriquets 'subrIkeIz Kj$ 3 +souffl_e 'sufleI K6% 2 +souffl_es 'sufleIz Kj% 2 +sough sVf I0$ 12A +soughed sVft Ic$,Id$ 12A +soughing 'sVfIN Ib$ 22A +soughs sVfs Ia$ 12A +sought sOt Hc%,Hd% 12A,3A,6A,7A,15A +soul s@Ul K6% 1 +soul-destroying 's@Ul-dIstroIIN OA% 4 +soul-stirring 's@Ul-st3rIN OA% 3 +soulful 's@Ulf@l OA% 2 +soulfully 's@Ulf@lI Pu% 3 +soulless 's@Ul+l@s OA% 2 +soullessly 's@Ul+l@slI Pu% 3 +souls s@Ulz Kj% 1 +sound saUnd J0%,M6%,OA%,Pu% 12A,2C,2D,6A,15A,15B +sound-film 'saUnd-fIlm K6$ 2 +sound-films 'saUnd-fIlmz Kj$ 2 +sound-recording 'saUnd-rI,kOdIN M6% 4 +sound-recordings 'saUnd-rI,kOdINz Mj% 4 +sound-wave 'saUnd-weIv K6% 2 +sound-waves 'saUnd-weIvz Kj% 2 +soundbox 'saUndb0ks K7$ 2 +soundboxes 'saUndb0ksIz Kj$ 3 +sounded 'saUndId Jc%,Jd% 22A,2C,2D,6A,15A,15B +sounding 'saUndIN Jb% 22A,2C,2D,6A,15A,15B +sounding-board 'saUndIN-bOd K6% 3 +sounding-boards 'saUndIN-bOdz Kj% 3 +soundings 'saUndINz Kj% 2 +soundless 'saUndl@s OA% 2 +soundlessly 'saUndl@slI Pu% 3 +soundly 'saUndlI Pu% 2 +soundness 'saUndn@s L@% 2 +soundproof 'saUndpruf H0%,OA% 26A +soundproofed 'saUndpruft Hc%,Hd% 26A +soundproofing 'saUndprufIN Hb% 36A +soundproofs 'saUndprufs Ha% 26A +sounds saUndz Ja%,Mj% 12A,2C,2D,6A,15A,15B +soundtrack 'saUndtr&k K6% 2 +soundtracks 'saUndtr&ks Kj% 2 +soup sup H0%,M6% 115B +soup-kitchen 'sup-kItSIn K6% 3 +soup-kitchens 'sup-kItSInz Kj% 3 +soup<con 'sups0n K6% 2 +soup<cons 'sups0nz Kj$ 2 +souped supt Hc%,Hd% 115B +souping 'supIN Hb$ 215B +soups sups Ha$,Mj$ 115B +sour 'saU@R J0%,OA% 22A,6A +source sOs K6% 1 +sources 'sOsIz Kj% 2 +soured 'saU@d Jc%,Jd% 22A,6A +souring 'saU@rIN Jb$ 32A,6A +sourly 'saU@lI Pu% 3 +sourness 'saU@n@s L@% 3 +sours 'saU@z Ja% 22A,6A +sous suz Kj$ 1 +souse saUs H2$ 16A +soused saUst Hc$,Hd$,OA$ 16A +souses 'saUsIz Ha$ 26A +sousing 'saUsIN Hb$ 26A +soutane su'tAn K6$ 2 +soutanes su'tAnz Kj$ 2 +south saUT L@%,Pu% 1 +south-southeast ,saUT-saUT'ist L@%,Pu% 3 +south-southwest ,saUT-saUT'west L@%,Pu% 3 +southeast saUT'ist L@%,Pu% 2 +southeaster saUT'ist@R K6% 3 +southeasterly saUT'ist@lI OA% 4 +southeastern saUT'ist@n OA% 3 +southeasters saUT'ist@z Kj% 3 +southerly 'sVD@lI OA%,Pu% 3 +southern 'sVD@n OA% 2 +southerner 'sVD@n@R K6% 3 +southerners 'sVD@n@z Kj% 3 +southernmost 'sVD@nm@Ust OA% 3 +southpaw 'saUTpO K6% 2 +southpaws 'saUTpOz Kj% 2 +southward 'saUTw@d Pu% 2 +southwards 'saUTw@dz Pu% 2 +southwest saUT'west L@%,Pu% 2 +southwester saUT'west@R K6% 3 +southwesterly saUT'west@lI OA% 4 +southwestern saUT'west@n OA% 3 +southwesters saUT'west@z Kj% 3 +souvenir ,suv@'nI@R K6% 3 +souvenirs ,suv@'nI@z Kj% 3 +sovereign 's0vrIn K6%,OA% 2 +sovereigns 's0vrInz Kj% 2 +sovereignty 's0vr@ntI L@% 3 +soviet 's@UvI@t K6% 3 +sovietize 's0vI@taIz H2$ 4 +sovietized 's0vI@taIzd Hc$,Hd$ 4 +sovietizes 's0vI@taIzIz Ha$ 5 +sovietizing 's0vI@taIzIN Hb$ 5 +soviets 's@UvI@ts Kj% 3 +sow s@U J0% 12A,6A,15A +sow saU K6% 1 +sowed s@Ud Jc%,Jd% 12A,6A,15A +sower 's@U@R K6% 2 +sowers 's@U@z Kj% 2 +sowing 's@UIN Jb% 22A,6A,15A +sown s@Un Jd% 12A,6A,15A +sows s@Uz Ja% 12A,6A,15A +sows saUz Kj% 1 +sox s0ks Kj$ 1 +soy soI L@% 1 +soya 'soI@ L@% 2 +sozzled 's0zld OA% 2 +spa spA K6% 1 +space speIs H2%,M6% 16A,15B +space-bar 'speIs-bAR K6% 2 +space-bars 'speIs-bAz Kj% 2 +space-capsule 'speIs-k&psjul K6% 3 +space-capsules 'speIs-k&psjulz Kj% 3 +space-heater 'speIs-hit@R K6% 3 +space-heaters 'speIs-hit@z Kj% 3 +space-helmet 'speIs-helmIt K6% 3 +space-helmets 'speIs-helmIts Kj% 3 +space-rocket 'speIs-r0kIt K6% 3 +space-rockets 'speIs-r0kIts Kj% 3 +space-time 'speIs-taIm L@% 2 +space-vehicle 'speIs-viIkl K6% 4 +space-vehicles 'speIs-viIklz Kj% 4 +spacecraft 'speIskrAft K9% 2 +spaced speIst Hc%,Hd% 16A,15B +spaces 'speIsIz Ha%,Mj% 26A,15B +spaceship 'speIs+SIp K6% 2 +spaceships 'speIs+SIps Kj% 2 +spacesuit 'speIs+sut K6% 2 +spacesuits 'speIs+suts Kj% 2 +spacing 'speIsIN Hb%,M6% 26A,15B +spacings 'speIsIN Mj% 2 +spacious 'speIS@s OA% 2 +spaciously 'speIS@slI Pu% 3 +spaciousness 'speIS@sn@s L@% 3 +spade speId H2$,K6% 16A,15B +spaded 'speIdId Hc$,Hd$ 26A,15B +spadeful 'speIdfUl K6% 2 +spadefuls 'speIdfUlz Kj% 2 +spades speIdz Ha$,Kj% 16A,15B +spadework 'speIdw3k L@% 2 +spading 'speIdIN Hb$ 26A,15B +spaghetti sp@'getI L@% 3 +spake speIk Jc$ 12A,2B,2C,3A,6A,15A +spam sp&m L@% 1 +span sp&n H4%,Jc%,K6% 12A,2C,6A,14,15B +spangle 'sp&Ngl H2%,K6% 2 +spangled 'sp&Ngld Hc%,Hd% 2 +spangles 'sp&Nglz Ha%,Kj% 2 +spangling 'sp&NglIN Hb% 2 +spaniel 'sp&nI@l K6% 3 +spaniels 'sp&nI@lz Kj% 3 +spank sp&Nk J0% 12C,6A +spanked sp&Nkt Jc%,Jd% 12C,6A +spanking 'sp&NkIN Jb%,K6%,OA% 22C,6A +spankings 'sp&NkINz Kj% 2 +spanks sp&Nks Ja% 12C,6A +spanned sp&nd Hc%,Hd% 12A,2C,6A,14,15B +spanner 'sp&n@R K6% 2 +spanners 'sp&n@z Kj% 2 +spanning 'sp&nIN Hb% 22A,2C,6A,14,15B +spans sp&nz Ha%,Kj% 12A,2C,6A,14,15B +spar spAR I4%,K6% 12A,2C +spare spe@R J2%,K6%,OA% 16A,12A,12B,13A,13B +spare-rib 'spe@-rIb K6% 2 +spare-ribs 'spe@-rIbz Kj% 2 +spared spe@d Jc%,Jd% 16A,12A,12B,13A,13B +sparely 'spe@lI Pu% 2 +spareness 'spe@n@s L@$ 2 +spares spe@z Ja%,Kj% 16A,12A,12B,13A,13B +sparing 'spe@rIN Jb%,OA% 26A,12A,12B,13A,13B +sparingly 'spe@rINlI Pu% 3 +spark spAk J0%,K6% 12A,15B +spark-plug 'spAk-plVg K6% 2 +spark-plugs 'spAk-plVgz Kj% 2 +sparked spAkt Jc%,Jd% 12A,15B +sparking 'spAkIN Jb% 22A,15B +sparking-plug 'spAkIN-plVg K6% 3 +sparking-plugs 'spAkIN-plVgz Kj% 3 +sparkle 'spAkl I2%,K6% 22A,2C +sparkled 'spAkld Ic%,Id% 22A,2C +sparkler 'spAkl@R K6% 2 +sparklers 'spAkl@z Kj% 2 +sparkles 'spAklz Ia%,Kj% 22A,2C +sparkling 'spAklIN Ib%,OA% 22A,2C +sparks spAks Ja%,Kj% 12A,15B +sparred spAd Ic%,Id% 12A,2C +sparring 'spArIN Ib% 22A,2C +sparring-match 'spArIN-m&tS K7% 3 +sparring-matches 'spArIN-m&tSIz Kj% 4 +sparring-partner 'spArIN-pAtn@R K6% 4 +sparring-partners 'spArIN-pAtn@z Kj% 4 +sparrow 'sp&r@U K6% 2 +sparrows 'sp&r@Uz Kj% 2 +spars spAz Ia$,Kj$ 12A,2C +sparse spAs OB% 1 +sparsely 'spAslI Pu% 2 +sparseness 'spAsn@s L@% 2 +sparser 'spAs@R Or% 2 +sparsest 'spAsIst Os% 2 +sparsity 'spAsItI L@% 3 +spas spAz Kj% 1 +spasm 'sp&z@m K6% 2 +spasmodic sp&z'm0dIk OA% 3 +spasmodically sp&z'm0dIklI Pu% 4 +spasms 'sp&z@mz Kj% 2 +spastic 'sp&stIk K6%,OA% 2 +spastics 'sp&stIks Kj% 2 +spat sp&t J4$,Jc%,Jd%,K6$ 12A,2C,3A,6A,15B +spatchcock 'sp&tSk0k H0$,K6$ 26A,14 +spatchcocked 'sp&tSk0kt Hc$,Hd$ 26A,14 +spatchcocking 'sp&tSk0kIN Hb$ 36A,14 +spatchcocks 'sp&tSk0ks Ha$,Kj$ 26A,14 +spate speIt K6% 1 +spates speIts Kj% 1 +spatial 'speISl OA% 2 +spatially 'speIS@lI Pu% 3 +spats sp&ts Ja$,Kj$ 12A,2C,3A,6A,15B +spatted 'sp&tId Jc$,Jd$ 22A,2C,3A,6A,15B +spatter 'sp&t@R J0%,K6% 22C,6A,14 +spattered 'sp&t@d Jc%,Jd% 22C,6A,14 +spattering 'sp&t@rIN Jb% 32C,6A,14 +spatters 'sp&t@z Ja%,Kj% 22C,6A,14 +spatting 'sp&tIN Jb$ 22A,2C,3A,6A,15B +spatula 'sp&tjUl@ K6% 3 +spatulas 'sp&tjUl@z Kj% 3 +spavin 'sp&vIn L@$ 2 +spavined 'sp&vInd OA$ 2 +spawn spOn J0%,L@% 12A,6A +spawned spOnd Jc%,Jd% 12A,6A +spawning 'spOnIN Jb% 22A,6A +spawns spOnz Ja% 12A,6A +spay speI H0$ 16A +spayed speId Hc$,Hd$ 16A +spaying 'speIIN Hb$ 26A +spays speIz Ha$ 16A +speak spik J5% 12A,2B,2C,3A,6A,15A +speaker 'spik@R K6% 2 +speakers 'spik@z Kj% 2 +speakership 'spik@SIp K6$ 3 +speakerships 'spik@SIps Kj$ 3 +speaking 'spikIN Jb% 22A,2B,2C,3A,6A,15A +speaking-trumpet 'spikIN-trVmpIt K6$ 4 +speaking-trumpets 'spikIN-trVmpIts Kj$ 4 +speaking-tube 'spikIN-tjub K6% 3 +speaking-tubes 'spikIN-tjubz Kj% 3 +speaks spiks Ja% 12A,2B,2C,3A,6A,15A +spear spI@R H0%,K6% 16A +speared spI@d Hc%,Hd% 16A +spearhead 'spI@hed K6% 2 +spearheads 'spI@hedz Kj% 2 +spearing 'spI@rIN Hb% 26A +spearmint 'spI@mInt L@% 2 +spears spI@z Ha%,Kj% 16A +spec spek K6$ 1 +special 'speSl K6%,OA* 2 +specialism 'speS@lIzm K6% 4 +specialisms 'speS@lIz@mz Kj% 4 +specialist 'speS@lIst K6% 3 +specialists 'speS@lIsts Kj% 3 +specialities ,speSI'&lItIz Kj% 5 +speciality ,speSI'&lItI K8% 5 +specialization ,speS@laI'zeISn M6% 5 +specializations ,speS@laI'zeISnz Mj% 5 +specialize 'speS@laIz J2% 32A,3A +specialized 'speS@laIzd Jc%,Jd% 32A,3A +specializes 'speS@laIzIz Ja% 42A,3A +specializing 'speS@laIzIN Jb% 42A,3A +specially 'speS@lI Pu% 3 +specials 'speSlz Kj% 2 +specialties 'speS@ltIz Kj% 3 +specialty 'speS@ltI K8% 3 +specie 'spiSi L@$ 2 +species 'spiSiz K9% 2 +specifiable ,spesI'faI@bl OA% 5 +specific sp@'sIfIk K6%,OA% 3 +specifically sp@'sIfIklI Pu% 4 +specification ,spesIfI'keISn M6% 5 +specifications ,spesIfI'keISnz Mj% 5 +specificity ,spesI'fIsItI L@% 5 +specifics sp@'sIfIks Kj% 3 +specified 'spesIfaId Hc%,Hd% 36A,9 +specifies 'spesIfaIz Ha% 36A,9 +specify 'spesIfaI H3% 36A,9 +specifying 'spesIfaIIN Hb% 46A,9 +specimen 'spesImIn K6% 3 +specimens 'spesImInz Kj% 3 +specious 'spiS@s OA$ 2 +speciously 'spiS@slI Pu$ 3 +speciousness 'spiS@sn@s L@$ 3 +speck spek K6% 1 +specked spekt OA% 1 +speckle 'spekl K6% 2 +speckled 'spekld OA% 2 +speckles 'speklz Kj% 2 +speckless 'spekl@s OA$ 2 +specks speks Kj% 1 +specs speks Kj% 1 +spectacle 'spekt@kl K6% 3 +spectacled 'spekt@kld OA% 3 +spectacles 'spekt@klz Kj% 3 +spectacular spek't&kjUl@R K6%,OA% 4 +spectacularly spek't&kjUl@lI Pu% 5 +spectaculars spek't&kjUl@z Kj% 4 +spectator spek'teIt@R K6% 3 +spectators spek'teIt@z Kj% 3 +spectra 'spektr@ Kj$ 2 +spectral 'spektr@l OA% 2 +spectre 'spekt@R K6% 2 +spectres 'spekt@z Kj% 2 +spectroscope 'spektr@sk@Up K6$ 3 +spectroscopes 'spektr@sk@Ups Kj$ 3 +spectroscopic ,spektr@'sk0pIk OA$ 4 +spectrum 'spektr@m Ki% 2 +speculate 'spekjUleIt I2% 32A,2C +speculated 'spekjUleItId Ic%,Id% 42A,2C +speculates 'spekjUleIts Ia% 32A,2C +speculating 'spekjUleItIN Ib% 42A,2C +speculation ,spekjU'leISn M6% 4 +speculations ,spekjU'leISnz Mj% 4 +speculative 'spekjUl@tIv OA% 4 +speculatively 'spekjUl@tIvlI Pu% 5 +speculator 'spekjUleIt@R K6% 4 +speculators 'spekjUleIt@z Kj% 4 +sped sped Jc%,Jd% 12A,2C,6A,14,15B +speech spitS M7% 1 +speech-day 'spitS-deI K6% 2 +speech-days 'spitS-deIz Kj% 2 +speeches 'spitSIz Mj% 2 +speechified 'spitSIfaId Ic$,Id$ 3 +speechifies 'spitSIfaIz Ia$ 3 +speechify 'spitSIfaI I3$ 3 +speechifying 'spitSIfaIIN Ib$ 4 +speechless 'spitSl@s OA% 2 +speechlessly 'spitSl@slI Pu% 3 +speed spid J0%,M6% 12A,2C,6A,14,15B +speed-cop 'spid-k0p K6% 2 +speed-cops 'spid-k0ps Kj% 2 +speed-indicator 'spid-IndIkeIt@R K6% 5 +speed-indicators 'spid-IndIkeIt@z Kj% 5 +speed-limit 'spid-lImIt K6% 3 +speed-limits 'spid-lImIts Kj% 3 +speed-up 'spid-Vp K6% 2 +speed-ups 'spid-Vps Kj$ 2 +speedboat 'spidb@Ut K6% 2 +speedboats 'spidb@Uts Kj% 2 +speeded 'spidId Jc%,Jd% 22A,2C,6A,14,15B +speedier 'spidI@R Or% 3 +speediest 'spidIIst Os% 3 +speedily 'spidIlI Pu% 3 +speeding 'spidIN Jb%,L@% 22A,2C,6A,14,15B +speedometer spi'd0mIt@R K6% 4 +speedometers spi'd0mIt@z Kj% 4 +speeds spidz Ja%,Mj% 12A,2C,6A,14,15B +speedway 'spidweI M6% 2 +speedways 'spidweIz Mj% 2 +speedwell 'spidwel M6$ 2 +speedwells 'spidwelz Mj$ 2 +speedy 'spidI OD% 2 +spelaeologist ,spilI'0l@dZIst K6$ 5 +spelaeologists ,spilI'0l@dZIsts Kj$ 5 +spelaeology ,spilI'0l@dZI L@$ 5 +speleologist ,spilI'0l@dZIst K6$ 5 +speleologists ,spilI'0l@dZIsts Kj$ 5 +speleology ,spilI'0l@dZI L@$ 5 +spell spel J0%,K6% 12A,6A,15B +spellbinder 'spelbaInd@R K6% 3 +spellbinders 'spelbaInd@z Kj% 3 +spellbound 'spelbaUnd OA% 2 +spelled speld Jc%,Jd% 12A,6A,15B +speller 'spel@R K6% 2 +spellers 'spel@z Kj% 2 +spelling 'spelIN Jb%,M6% 22A,6A,15B +spellings 'spelINz Mj% 2 +spells spelz Ja%,Kj% 12A,6A,15B +spelt spelt Jc%,Jd%,L@$ 12A,6A,15B +spend spend J5% 12A,6A,14,19B +spender 'spend@R K6% 2 +spenders 'spend@z Kj% 2 +spending 'spendIN Jb% 22A,6A,14,19B +spends spendz Ja% 12A,6A,14,19B +spendthrift 'spendTrIft K6% 2 +spendthrifts 'spendTrIfts Kj% 2 +spent spent Jc%,Jd%,OA% 12A,6A,14,19B +sperm sp3m M6% 1 +sperm-whale 'sp3m-weIl K6% 2 +sperm-whales 'sp3m-weIlz Kj% 2 +spermaceti ,sp3m@'setI L@$ 4 +spermatozoa ,sp3m@t@'z@U@ Kj$ 5 +spermatozoon ,sp3m@t@'z@U@n Ki$ 5 +spermicide 'sp3mIsaId M6% 3 +spermicides 'sp3mIsaIdz Mj% 3 +sperms sp3mz Mj% 1 +spew spju J0% 12A,6A,15B +spewed spjud Jc%,Jd% 12A,6A,15B +spewing 'spjuIN Jb% 22A,6A,15B +spews spjuz Ja% 12A,6A,15B +sphagnum 'sf&gn@m M6$ 2 +sphagnums 'sf&gn@mz Mj$ 2 +sphere sfI@R K6% 1 +spheres sfI@z Kj% 1 +spherical 'sferIkl OA% 3 +spheroid 'sfI@roId K6$ 2 +spheroids 'sfI@roIdz Kj$ 2 +sphinx sfINks K7% 1 +sphinxes 'sfINksIz Kj% 2 +spice spaIs H2%,M6% 16A +spiced spaIst Hc%,Hd% 16A +spices 'spaIsIz Ha%,Mj% 26A +spicier 'spaIsI@R Or% 3 +spiciest 'spaIsIIst Os% 3 +spicily 'spaIsIlI Pu% 3 +spiciness 'spaIsIn@s L@% 3 +spicing 'spaIsIN Hb% 26A +spick spIk OA% 1 +spicy 'spaIsI OD% 2 +spider 'spaId@R K6% 2 +spiders 'spaId@z Kj% 2 +spidery 'spaId@rI OA% 3 +spied spaId Jc%,Jd% 12A,3A,6A,15B,19A +spiel Spil J0$,K6% 1 +spieled Spild Jc$,Jd$ 1 +spieling 'SpilIN Jb$ 2 +spiels Spilz Ja$,Kj$ 1 +spies spaIz Ja%,Kj% 12A,3A,6A,15B,19A +spigot 'spIg@t K6$ 2 +spigots 'spIg@ts Kj$ 2 +spike spaIk H2%,K6% 16A +spiked spaIkt Hc%,Hd% 16A +spikenard 'spaIknAd L@$ 2 +spikes spaIks Ha%,Kj% 16A +spikier 'spaIkI@R Or% 3 +spikiest 'spaIkIIst Os% 3 +spiking 'spaIkIN Hb% 26A +spiky 'spaIkI OD% 2 +spill spIl J0%,K6% 12A,2C,6A +spillage 'spIlIdZ K6% 2 +spillages 'spIlIdZIz Kj% 3 +spilled spIld Jc%,Jd% 12A,2C,6A +spilling 'spIlIN Jb% 22A,2C,6A +spillover 'spIl@Uv@R K6% 3 +spillovers 'spIl@Uv@z Kj$ 3 +spills spIlz Ja%,Kj% 12A,2C,6A +spillway 'spIlweI K6$ 2 +spillways 'spIlweIz Kj$ 2 +spilt spIlt Jc%,Jd% 12A,2C,6A +spin spIn J5%,M6% 12A,2C,6A,14,15B +spin-dried 'spIn-draId Hc%,Hd% 2 +spin-drier ,spIn-'draI@R K6% 3 +spin-driers ,spIn-'draI@z Kj% 3 +spin-dries 'spIn-draIz Ha% 2 +spin-dry 'spIn-draI H3% 2 +spin-drying 'spIn-draIIN Hb% 3 +spin-off 'spIn-0f K6% 2 +spin-offs 'spIn-0fs Kj% 2 +spinach 'spInIdZ L@% 2 +spinal 'spaInl OA% 2 +spindle 'spIndl K6% 2 +spindle-berries 'spIndl-berIz Kj$ 4 +spindle-berry 'spIndl-berI K8$ 4 +spindle-legged 'spIndl-legd OA$ 3 +spindle-shanked 'spIndl-S&nkt OA$ 3 +spindle-shanks 'spIndl-S&nks Ki$ 3 +spindle-tree 'spIndl-tri K6$ 3 +spindle-trees 'spIndl-triz Kj$ 3 +spindles 'spIndlz Kj% 2 +spindlier 'spIndlI@R Or% 3 +spindliest 'spIndlIIst Os% 3 +spindly 'spIndlI OD% 2 +spindrift 'spIndrIft L@$ 2 +spine spaIn K6% 1 +spineless 'spaInl@s OA% 2 +spines spaInz Kj% 1 +spinet spI'net K6$ 2 +spinets spI'nets Kj$ 2 +spinier 'spaInI@R Or$ 3 +spiniest 'spaInIIst Os$ 3 +spinnaker 'spIn@k@R K6$ 3 +spinnakers 'spIn@k@z Kj$ 3 +spinney 'spInI K6$ 2 +spinneys 'spInIz Kj$ 2 +spinning 'spInIN Jb% 22A,2C,6A,14,15B +spinning-wheel 'spInIN-wil K6% 3 +spinning-wheels 'spInIN-wilz Kj% 3 +spins spInz Ja%,Mj% 12A,2C,6A,14,15B +spinster 'spInst@R K6% 2 +spinsterhood 'spInst@hUd L@% 3 +spinsters 'spInst@z Kj% 2 +spiny 'spaInI OD% 2 +spiral 'spaI@r@l I4%,K6%,OA% 22A,2C +spiralled 'spaI@r@ld Ic%,Id% 22A,2C +spiralling 'spaI@r@lIN Ib% 32A,2C +spirally 'spaI@r@lI Pu% 3 +spirals 'spaI@r@lz Ia%,Kj% 22A,2C +spire 'spaI@R K6% 1 +spires 'spaI@z Kj% 1 +spirit 'spIrIt H0%,M6% 215B +spirit-lamp 'spIrIt-l&mp K6% 3 +spirit-lamps 'spIrIt-l&mps Kj% 3 +spirit-level 'spIrIt-levl K6% 4 +spirit-levels 'spIrIt-levlz Kj% 4 +spirit-rapper 'spIrIt-r&p@R K6$ 4 +spirit-rappers 'spIrIt-r&p@z Kj$ 4 +spirit-stove 'spIrIt-st@Uv K6% 3 +spirit-stoves 'spIrIt-st@Uvz Kj% 3 +spirited 'spIrItId Hc%,Hd%,OA% 315B +spiriting 'spIrItIN Hb% 315B +spiritless 'spIrItl@s OA% 3 +spirits 'spIrIts Ha%,Mj% 215B +spiritual 'spIrItSU@l K6%,OA% 4 +spiritualism 'spIrItSU@lIz@m L@% 6 +spiritualist 'spIrItSU@lIst K6% 5 +spiritualistic ,spIrItSU@'lIstIk OA$ 6 +spiritualists 'spIrItSU@lIsts Kj% 5 +spirituality ,spIrItSU'&lItI L@% 6 +spiritualization ,spIrItSU@laI'zeISn L@$ 7 +spiritualize 'spIrItSU@laIz H2$ 56A +spiritualized 'spIrItSU@laIzd Hc$,Hd$ 56A +spiritualizes 'spIrItSU@laIzIz Ha$ 66A +spiritualizing 'spIrItSU@laIzIN Hb$ 66A +spiritually 'spIrItSU@lI Pu% 5 +spirituals 'spIrItSU@lz Kj% 4 +spirituous 'spIrItjU@s OA$ 4 +spirt sp3t I0%,K6% 12A,2C +spirted 'sp3tId Ic%,Id% 22A,2C +spirting 'sp3tIN Ib% 22A,2C +spirts sp3ts Ia%,Kj% 12A,2C +spit spIt J5%,M6% 12A,2C,3A,6A,15B +spite spaIt H2%,L@% 16A +spited 'spaItId Hc%,Hd% 26A +spiteful 'spaItf@l OA% 2 +spitefully 'spaItf@lI Pu% 3 +spitefulness 'spaItf@ln@s L@% 3 +spites spaIts Ha% 16A +spitfire 'spItfaI@R K6% 2 +spitfires 'spItfaI@z Kj% 2 +spiting 'spaItIN Hb$ 26A +spits spIts Ja%,Mj% 12A,2C,3A,6A,15B +spitting 'spItIN Jb%,L@% 22A,2C,3A,6A,15B +spittle 'spItl L@% 2 +spittoon spI'tun K6% 2 +spittoons spI'tunz Kj% 2 +spiv spIv K6% 1 +spivs spIvz Kj% 1 +splash spl&S J1%,K7% 12A,2C,6A,14,15B +splashdown 'spl&SdaUn K6% 2 +splashdowns 'spl&SdaUnz Kj$ 2 +splashed spl&St Jc%,Jd% 12A,2C,6A,14,15B +splashes 'spl&SIz Ja%,Kj% 22A,2C,6A,14,15B +splashing 'spl&SIN Jb% 22A,2C,6A,14,15B +splay spleI J0%,K6$,OA% 1 +splayed spleId Jc%,Jd% 1 +splayfeet 'spleIfit Kj% 2 +splayfoot 'spleIfUt Ki% 2 +splayfooted 'spleIfUtId OA% 3 +splaying 'spleIIN Jb% 2 +splays spleIz Ja%,Kj$ 1 +spleen splin M6% 1 +spleens splinz Mj% 1 +splendid 'splendId OA% 2 +splendidly 'splendIdlI Pu% 3 +splendiferous splen'dIf@r@s OA$ 4 +splendour 'splend@R M6% 2 +splendours 'splend@z Mj% 2 +splenetic splI'netIk OA$ 3 +splice splaIs H2%,K6% 16A +spliced splaIst Hc%,Hd% 16A +splicer 'splaIs@R K6$ 2 +splicers 'splaIs@z Kj$ 2 +splices 'splaIsIz Ha%,Kj% 26A +splicing 'splaIsIN Hb% 26A +splint splInt K6% 1 +splinter 'splInt@R J0%,K6% 22C,15B +splinter-proof 'splInt@-pruf OA$ 3 +splintered 'splInt@d Jc%,Jd% 22C,15B +splintering 'splInt@rIN Jb% 32C,15B +splinters 'splInt@z Ja%,Kj% 22C,15B +splintery 'splInt@rI OA% 3 +splints splInts Kj% 1 +split splIt J5%,Jc%,Jd%,K6% 12A,2C,2D,3A,6A,14,15A,15B,22 +splits splIts Ja%,Kj% 12A,2C,2D,3A,6A,14,15A,15B,22 +splitting 'splItIN Jb% 22A,2C,2D,3A,6A,14,15A,15B,22 +splodge spl0dZ K6% 1 +splodges 'spl0dZIz Kj% 2 +splosh spl0S H1% 1 +sploshed spl0St Hc%,Hd% 1 +sploshes 'spl0SIz Ha% 2 +sploshing 'spl0SIN Hb% 2 +splotch spl0tS K7% 1 +splotches 'spl0tSIz Kj% 2 +splurge spl3dZ I2%,K6% 1 +splurged spl3dZd Ic%,Id% 1 +splurges 'spl3dZIz Ia%,Kj% 2 +splurging 'spl3dZIN Ib% 2 +splutter 'splVt@R J0%,L@% 22A,2C,6A,15B +spluttered 'splVt@d Jc%,Jd% 22A,2C,6A,15B +spluttering 'splVt@rIN Jb% 32A,2C,6A,15B +splutters 'splVt@z Ja% 22A,2C,6A,15B +spoil spoIl J0%,M6% 12A,6A,14 +spoiled spoIld Jc%,Jd% 12A,6A,14 +spoiling 'spoIlIN Jb% 22A,6A,14 +spoils spoIlz Ja%,Mj% 12A,6A,14 +spoilsport 'spoIlspOt K6% 2 +spoilsports 'spoIlspOts Kj% 2 +spoilt spoIlt Jc%,Jd% 12A,6A,14 +spoke sp@Uk Jc%,K6% 12A,2B,2C,3A,6A,15A +spoken 'sp@Uk@n Jd% 22A,2B,2C,3A,6A,15A +spokes sp@Uks Kj% 1 +spokesman 'sp@Uksm@n Ki% 2 +spokesmen 'sp@Uksm@n Kj% 2 +spoliation ,sp@UlI'eISn L@$ 4 +spondaic sp0n'deIIk OA$ 3 +spondee 'sp0ndi K6$ 2 +spondees 'sp0ndiz Kj$ 2 +sponge spVndZ J2%,K6% 13A,6A,14,15B +sponge-cake 'spVndZ-keIk M6% 2 +sponge-cakes 'spVndZ-keIks Mj% 2 +sponged spVndZd Jc%,Jd% 13A,6A,14,15B +sponger 'spVndZ@R K6% 2 +spongers 'spVndZ@z Kj% 2 +sponges 'spVndZIz Ja%,Kj% 23A,6A,14,15B +spongier 'spVndZI@R Or% 3 +spongiest 'spVndZIIst Os% 3 +sponginess 'spVndZIn@s L@% 3 +sponging 'spVndZIN Jb% 23A,6A,14,15B +spongy 'spVndZI OD% 2 +sponsor 'sp0ns@R H0%,K6% 26A +sponsored 'sp0ns@d Hc%,Hd% 26A +sponsoring 'sp0ns@rIN Hb% 36A +sponsors 'sp0ns@z Ha%,Kj% 26A +sponsorship 'sp0ns@SIp M6% 3 +sponsorships 'sp0ns@SIps Mj% 3 +spontaneity ,sp0nt@'nI@tI L@% 5 +spontaneous sp0n'teInI@s OA% 4 +spontaneously sp0n'teInI@slI Pu% 5 +spontaneousness sp0n'teInI@sn@s L@$ 5 +spoof spuf H0$,K6% 1 +spoofed spuft Hc$,Hd$ 1 +spoofing 'spufIN Hb$ 2 +spoofs spufs Ha$,Kj% 1 +spook spuk K6% 1 +spookier 'spukI@R Or% 3 +spookiest 'spukIIst Os% 3 +spooks spuks Kj% 1 +spooky 'spukI OD% 2 +spool spul K6% 1 +spools spulz Kj% 1 +spoon spun J0%,K6% 12A,15B +spooned spund Jc%,Jd% 12A,15B +spoonerism 'spun@rIz@m K6% 4 +spoonerisms 'spun@rIz@mz Kj% 4 +spoonfed 'spunfed Hc%,Hd% 2 +spoonfeed 'spunfid H5% 2 +spoonfeeding 'spunfidIN Hb%,L@% 3 +spoonfeeds 'spunfidz Ha% 2 +spoonful 'spunfUl K6% 2 +spoonfuls 'spunfUlz Kj% 2 +spooning 'spunIN Jb% 22A,15B +spoons spunz Ja%,Kj% 12A,15B +spoor spU@R K6% 1 +spoors spU@z Kj% 1 +sporadic sp@'r&dIk OA% 3 +sporadically sp@'r&dIklI Pu% 4 +spore spOR K6% 1 +spores spOz Kj% 1 +sporran 'sp0r@n K6% 2 +sporrans 'sp0r@nz Kj% 2 +sport spOt J0%,M6% 12C,6A +sported 'spOtId Jc%,Jd% 22C,6A +sporting 'spOtIN Jb%,OA% 22C,6A +sportingly 'spOtINlI Pu% 3 +sportive 'spOtIv OA% 2 +sportively 'spOtIvlI Pu% 3 +sportiveness 'spOtIvn@s L@% 3 +sports spOts Ja%,Mj% 12C,6A +sports-car 'spOts-kAR K6% 2 +sports-cars 'spOts-kAz Kj% 2 +sports-coat 'spOts-k@Ut K6% 2 +sports-coats 'spOts-k@Uts Kj% 2 +sports-editor 'spOts-edIt@R K6% 4 +sports-editors 'spOts-edIt@z Kj% 4 +sports-jacket 'spOts-dZ&kIt K6% 3 +sports-jackets 'spOts-dZ&kIts Kj% 3 +sportsman 'spOtsm@n Ki% 2 +sportsmanlike 'spOtsm@nlaIk OA% 3 +sportsmanship 'spOtsm@nSIp L@% 3 +sportsmen 'spOtsm@n Kj% 2 +spot sp0t J4%,K6% 12A,6A +spotless 'sp0tl@s OA% 2 +spotlessly 'sp0tl@slI Pu% 3 +spotlight 'sp0tlaIt H0%,K6% 26A +spotlighted 'sp0tlaItId Hc%,Hd% 36A +spotlighting 'sp0tlaItIN Hb% 36A +spotlights 'sp0tlaIts Ha%,Kj% 26A +spots sp0ts Ja%,Kj% 12A,6A +spotted 'sp0tId Jc%,Jd%,OA% 22A,6A +spotter 'sp0t@R K6% 2 +spotters 'sp0t@z Kj% 2 +spottier 'sp0tI@R Or% 3 +spottiest 'sp0tIIst Os% 3 +spotting 'sp0tIN Jb% 22A,6A +spotty 'sp0tI OD% 2 +spouse spaUz K6% 1 +spouses 'spaUzIz Kj% 2 +spout spaUt J0%,K6% 12A,2C,6A +spouted 'spaUtId Jc%,Jd% 22A,2C,6A +spouting 'spaUtIN Jb% 22A,2C,6A +spouts spaUts Ja%,Kj% 12A,2C,6A +sprain spreIn H0%,K6% 16A +sprained spreInd Hc%,Hd% 16A +spraining 'spreInIN Hb% 26A +sprains spreInz Ha%,Kj% 16A +sprang spr&N Jc% 12A,2C,3A,6A,14 +sprat spr&t K6% 1 +sprats spr&ts Kj% 1 +sprawl sprOl I0%,M6% 12A,2C +sprawled sprOld Ic%,Id% 12A,2C +sprawling 'sprOlIN Ib% 22A,2C +sprawls sprOlz Ia%,Mj% 12A,2C +spray spreI H0%,M6% 16A,14 +spray-gun 'spreI-gVn K6% 2 +spray-guns 'spreI-gVnz Kj% 2 +sprayed spreId Hc%,Hd% 16A,14 +sprayer 'spreI@R K6% 2 +sprayers 'spreI@z Kj% 2 +spraying 'spreIIN Hb% 26A,14 +sprays spreIz Ha%,Mj% 16A,14 +spread spred J5%,Jc%,Jd%,K6% 12A,2B,2C,6A,14,15A,15B +spread-over 'spred-@Uv@R L@$ 3 +spreadeagle spred'igl H2%,K6$ 3 +spreadeagled spred'igld Hc%,Hd% 3 +spreadeagles spred'iglz Ha$,Kj$ 3 +spreadeagling spred'iglIN Hb$ 3 +spreader 'spred@R K6% 2 +spreaders 'spred@z Kj% 2 +spreading 'spredIN Jb% 22A,2B,2C,6A,14,15A,15B +spreads spredz Ja%,Kj% 12A,2B,2C,6A,14,15A,15B +spree spri K6% 1 +sprees spriz Kj$ 1 +sprig sprIg K6% 1 +sprigged sprIgd OA% 1 +sprightlier 'spraItlI@R Or% 3 +sprightliest 'spraItlIIst Os% 3 +sprightliness 'spraItlIn@s L@% 3 +sprightly 'spraItlI OD% 2 +sprigs sprIgz Kj% 1 +spring sprIN J5%,M6% 12A,2C,3A,6A,14 +spring-balance sprIN-'b&l@ns K6% 3 +spring-balances sprIN-'b&l@nsIz Kj% 4 +spring-clean sprIN-'klin H0%,K6% 2 +spring-cleaned sprIN-'klind Hc%,Hd% 2 +spring-cleaning sprIN-'klinIN Hb%,L@% 3 +spring-cleans sprIN-'klinz Ha%,Kj% 2 +spring-gun 'sprIN-gVn K6$ 2 +spring-guns 'sprIN-gVnz Kj$ 2 +spring-mattress sprIN-'m&trIs K7% 3 +spring-mattresses sprIN-'m&trIsIz Kj% 4 +springboard 'sprINbOd K6% 2 +springboards 'sprINbOdz Kj% 2 +springbok 'sprINb0k K6% 2 +springboks 'sprINb0ks Kj% 2 +springier 'sprINI@R Or% 3 +springiest 'sprINIIst Os% 3 +springing 'sprININ Jb% 22A,2C,3A,6A,14 +springless 'sprINl@s OA$ 2 +springlike 'sprINlaIk OA% 2 +springs sprINz Ja%,Mj% 12A,2C,3A,6A,14 +springtide 'sprINtaId K6% 2 +springtides 'sprINtaIdz Kj% 2 +springtime 'sprINtaIm M6% 2 +springtimes 'sprINtaImz Mj% 2 +springy 'sprINI OD% 2 +sprinkle 'sprINkl H2% 26A,14 +sprinkled 'sprINkld Hc%,Hd% 26A,14 +sprinkler 'sprINkl@R K6% 2 +sprinklers 'sprINkl@z Kj% 2 +sprinkles 'sprINklz Ha% 26A,14 +sprinkling 'sprINklIN Hb%,K6% 26A,14 +sprinklings 'sprINklINz Kj% 2 +sprint sprInt I0%,K6% 12A,2C +sprinted 'sprIntId Ic%,Id% 22A,2C +sprinter 'sprInt@R K6% 2 +sprinters 'sprInt@z Kj% 2 +sprinting 'sprIntIN Ib% 22A,2C +sprints sprInts Ia%,Kj% 12A,2C +sprit sprIt K6$ 1 +sprite spraIt K6% 1 +sprites spraIts Kj% 1 +sprits sprIts Kj$ 1 +spritsail 'sprItseIl K6$ 2 +spritsails 'sprItseIlz Kj$ 2 +sprocket 'spr0kIt K6% 2 +sprocket-wheel 'spr0kIt-wil K6% 3 +sprocket-wheels 'spr0kIt-wilz Kj% 3 +sprockets 'spr0kIts Kj% 2 +sprout spraUt J0%,K6% 12A,2C,6A +sprouted 'spraUtId Jc%,Jd% 22A,2C,6A +sprouting 'spraUtIN Jb% 22A,2C,6A +sprouts spraUts Ja%,Kj% 12A,2C,6A +spruce sprus J2%,M6%,OA% 12C,6A,15B +spruced sprust Jc%,Jd% 12C,6A,15B +sprucely 'spruslI Pu% 2 +spruceness 'sprusn@s L@% 2 +spruces 'sprusIz Ja%,Mj% 22C,6A,15B +sprucing 'sprusIN Jb% 22C,6A,15B +sprung sprVN Jd% 12A,2C,3A,6A,14 +spry spraI OC% 1 +spryer 'spraI@R Or$ 2 +spryest 'spraIIst Os$ 2 +spud spVd K6% 1 +spuds spVdz Kj% 1 +spue spju J2$ 1 +spued spjud Jc$,Jd$ 1 +spues spjuz Ja$ 1 +spuing 'spjuIN Jb$ 2 +spume spjum L@$ 1 +spun spVn Jd% 12A,2C,6A,14,15B +spunk spVNk L@% 1 +spunkier 'spVNkI@R Or$ 3 +spunkiest 'spVNkIIst Os$ 3 +spunky 'spVNkI OD% 2 +spur sp3R J4%,K6% 12C,6A,15B +spurious 'spjU@rI@s OA% 3 +spuriously 'spjU@rI@slI Pu% 4 +spuriousness 'spjU@rI@sn@s L@% 4 +spurn sp3n H0% 16A +spurned sp3nd Hc%,Hd% 16A +spurning 'sp3nIN Hb% 26A +spurns sp3nz Ha% 16A +spurred sp3d Jc%,Jd% 12C,6A,15B +spurring 'sp3rIN Jb% 22C,6A,15B +spurs sp3z Ja%,Kj% 12C,6A,15B +spurt sp3t I0%,K6% 12A,2C,3A +spurted 'sp3tId Ic%,Id% 22A,2C,3A +spurting 'sp3tIN Ib% 22A,2C,3A +spurts sp3ts Ia%,Kj% 12A,2C,3A +sputnik 'spUtnIk K6% 2 +sputniks 'spUtnIks Kj$ 2 +sputter 'spVt@R J0% 22A,2C +sputtered 'spVt@d Jc%,Jd% 22A,2C +sputtering 'spVt@rIN Jb% 32A,2C +sputters 'spVt@z Ja% 22A,2C +sputum 'spjut@m L@$ 2 +spy spaI J3%,K8% 12A,3A,6A,15B,19A +spy-hole 'spaI-h@Ul K6% 2 +spy-holes 'spaI-h@Ulz Kj% 2 +spyglass 'spaIglAs K7% 2 +spyglasses 'spaIglAsIz Kj% 3 +spying 'spaIIN Jb% 22A,3A,6A,15B,19A +squab skw0b K6$ 1 +squabble 'skw0bl I2%,K6% 22C +squabbled 'skw0bld Ic%,Id% 22C +squabbles 'skw0blz Ia%,Kj% 22C +squabbling 'skw0blIN Ib% 22C +squabs skw0bz Kj$ 1 +squad skw0d K6% 1 +squadron 'skw0dr@n K6% 2 +squadrons 'skw0dr@nz Kj% 2 +squads skw0dz Kj% 1 +squalid 'skw0lId OA% 2 +squalidly 'skw0lIdlI Pu% 3 +squall skwOl I0$,K6% 12A +squalled skwOld Ic$,Id$ 12A +squalling 'skwOlIN Ib$ 22A +squalls skwOlz Ia$,Kj% 12A +squally 'skwOlI OA% 2 +squalor 'skw0l@R L@% 2 +squander 'skw0nd@R H0% 26A +squandered 'skw0nd@d Hc%,Hd% 26A +squandering 'skw0nd@rIN Hb% 36A +squandermania ,skw0nd@'meInI@ L@$ 5 +squanders 'skw0nd@z Ha% 26A +square skwe@R J2%,K6%,OA%,Pu% 12C,3A,6A,14,15B +square-bashing 'skwe@-b&SIN L@% 3 +square-built 'skwe@-bIlt OA% 2 +square-rigged skwe@-'rIgd OA% 2 +square-shouldered skwe@-'S@Uld@d OA% 3 +square-toed 'skwe@-t@Ud OA% 2 +square-toes 'skwe@-t@Uz Ki% 2 +squared skwe@d Jc%,Jd% 12C,3A,6A,14,15B +squarely 'skwe@lI Pu% 2 +squareness 'skwe@n@s L@% 2 +squares skwe@z Ja%,Kj% 12C,3A,6A,14,15B +squaring 'skwe@rIN Jb% 22C,3A,6A,14,15B +squash skw0S J1%,M9% 12A,2C,6A,15A,15B,22 +squash-rackets 'skw0S-r&kIts Kj% 3 +squashed skw0St Jc%,Jd% 12A,2C,6A,15A,15B,22 +squashes 'skw0SIz Ja%,Mj% 22A,2C,6A,15A,15B,22 +squashier 'skw0SI@R Or$ 3 +squashiest 'skw0SIIst Os$ 3 +squashing 'skw0SIN Jb% 22A,2C,6A,15A,15B,22 +squashy 'skw0SI OD% 2 +squat skw0t I4%,OA% 12A,2C,6A,15B +squats skw0ts Ia% 12A,2C,6A,15B +squatted 'skw0tId Ic%,Id% 22A,2C,6A,15B +squatter 'skw0t@R K6% 2 +squatters 'skw0t@z Kj% 2 +squatting 'skw0tIN Ib% 22A,2C,6A,15B +squaw skwO K6% 1 +squawk skwOk I0%,K6% 12A,2C +squawked skwOkt Ic%,Id% 12A,2C +squawker 'skwOk@R K6$ 2 +squawkers 'skwOk@z Kj$ 2 +squawking 'skwOkIN Ib% 22A,2C +squawks skwOks Ia%,Kj% 12A,2C +squaws skwOz Kj% 1 +squeak skwik J0%,K6% 12A,2C,6A,15B +squeaked skwikt Jc%,Jd% 12A,2C,6A,15B +squeaker 'skwik@R K6% 2 +squeakers 'skwik@z Kj% 2 +squeakier 'skwikI@R Or$ 3 +squeakiest 'skwikIIst Os$ 3 +squeaking 'skwikIN Jb% 22A,2C,6A,15B +squeaks skwiks Ja%,Kj% 12A,2C,6A,15B +squeaky 'skwikI OD% 2 +squeal skwil J0%,K6% 12A,2C,6A,15B +squealed skwild Jc%,Jd% 12A,2C,6A,15B +squealer 'skwil@R K6% 2 +squealers 'skwil@z Kj% 2 +squealing 'skwilIN Jb% 22A,2C,6A,15B +squeals skwilz Ja%,Kj% 12A,2C,6A,15B +squeamish 'skwimIS OA% 2 +squeamishly 'skwimISlI Pu% 3 +squeamishness 'skwimISn@s L@% 3 +squeegee ,skwi'dZi H5$,K6% 26A +squeegeed ,skwi'dZid Hc$,Hd$ 26A +squeegeeing ,skwi'dZiIN Hb$ 36A +squeegees ,skwi'dZiz Ha$,Kj$ 26A +squeeze skwiz J2%,M6% 12A,2C,6A,14,15A,15B,22 +squeezed skwizd Jc%,Jd% 12A,2C,6A,14,15A,15B,22 +squeezer 'skwiz@R K6% 2 +squeezers 'skwiz@z Kj% 2 +squeezes 'skwizIz Ja%,Mj% 22A,2C,6A,14,15A,15B,22 +squeezing 'skwizIN Jb% 22A,2C,6A,14,15A,15B,22 +squelch skweltS J1%,K7% 12A,2C +squelched skweltSt Jc%,Jd% 12A,2C +squelches 'skweltSIz Ja%,Kj% 22A,2C +squelching 'skweltSIN Jb% 22A,2C +squib skwIb K6% 1 +squibs skwIbz Kj% 1 +squid skwId K6% 1 +squids skwIdz Kj% 1 +squiffy 'skwIfI OA$ 2 +squiggle 'skwIgl K6% 2 +squiggles 'skwIglz Kj% 2 +squigglier 'skwIglI@R Or$ 3 +squiggliest 'skwIglIIst Os$ 3 +squiggly 'skwIglI OD% 2 +squint skwInt I0%,K6% 12A,3A +squint-eyed 'skwInt-aId OA% 2 +squinted 'skwIntId Ic%,Id% 22A,3A +squinting 'skwIntIN Ib% 22A,3A +squints skwInts Ia%,Kj% 12A,3A +squire 'skwaI@R H2$,K6% 16A,15A +squirearchies 'skwaIrAkIz Kj$ 3 +squirearchy 'skwaIrAkI K8% 3 +squired 'skwaI@d Hc$,Hd$ 16A,15A +squires 'skwaI@z Ha$,Kj% 16A,15A +squiring 'skwaI@rIN Hb$ 26A,15A +squirm skw3m I0%,K6% 12A,2C +squirmed skw3md Ic%,Id% 12A,2C +squirming 'skw3mIN Ib% 22A,2C +squirms skw3mz Ia%,Kj% 12A,2C +squirrel 'skwIr@l K6% 2 +squirrels 'skwIr@lz Kj% 2 +squirt skw3t J0%,K6% 12A,2C,6A,15A,15B +squirted 'skw3tId Jc%,Jd% 22A,2C,6A,15A,15B +squirting 'skw3tIN Jb% 22A,2C,6A,15A,15B +squirts skw3ts Ja%,Kj% 12A,2C,6A,15A,15B +stab st&b J4%,K6% 12A,3A,6A,15A +stabbed st&bd Jc%,Jd% 12A,3A,6A,15A +stabber 'st&b@R K6$ 2 +stabbers 'st&b@z Kj$ 2 +stabbing 'st&bIN Jb% 22A,3A,6A,15A +stability st@'bIlItI L@% 4 +stabilization ,steIb@laI'zeISn M6% 5 +stabilizations ,steIb@laI'zeISnz Mj$ 5 +stabilize 'steIb@laIz H2% 36A +stabilized 'steIb@laIzd Hc%,Hd% 36A +stabilizer 'steIb@laIz@R K6% 4 +stabilizers 'steIb@laIz@z Kj% 4 +stabilizes 'steIb@laIzIz Ha% 46A +stabilizing 'steIb@laIzIN Hb% 46A +stable 'steIbl H2%,K6%,OA% 2 +stable-companion 'steIbl-k@m,p&nI@n K6% 5 +stable-companions 'steIbl-k@m,p&nI@nz Kj% 5 +stableboy 'steIblboI K6% 3 +stableboys 'steIblboIz Kj% 3 +stabled 'steIbld Hc%,Hd% 2 +stableman 'steIblm&n Ki% 3 +stablemate 'steIblmeIt K6% 3 +stablemates 'steIblmeIts Kj% 3 +stablemen 'steIblmen Kj% 3 +stables 'steIblz Ha%,Kj% 2 +stabling 'steIblIN Hb%,L@% 2 +stabs st&bz Ja%,Kj% 12A,3A,6A,15A +staccato st@'kAt@U OA%,Pu% 3 +stack st&k H0%,K6% 16A,15B +stacked st&kt Hc%,Hd% 16A,15B +stacking 'st&kIN Hb% 26A,15B +stacks st&ks Ha%,Kj% 16A,15B +stadium 'steIdI@m K6% 3 +stadiums 'steIdI@mz Kj% 3 +staff stAf H0%,K6% 16A +staff-office 'stAf-0fIs K6$ 3 +staff-offices 'stAf-0fIsIz Kj$ 4 +staffed stAft Hc%,Hd% 16A +staffing 'stAfIN Hb% 26A +staffs stAfs Ha%,Kj% 16A +stag st&g K6% 1 +stag-parties 'st&g-pAtIz Kj% 3 +stag-party 'st&g-pAtI K8% 3 +stage steIdZ J2%,K6% 12C,6A +stage-struck 'steIdZ-strVk OA% 2 +stage-whisper 'steIdZ-wIsp@R K6% 3 +stage-whispers 'steIdZ-wIsp@z Kj% 3 +stagecoach 'steIdZk@UtS K7% 2 +stagecoaches 'steIdZk@UtSIz Kj% 3 +stagecraft 'steIdZkrAft M6% 2 +stagecrafts 'steIdZkrAfts Mj$ 2 +staged steIdZd Jc%,Jd% 12C,6A +stager 'steIdZ@R K6% 2 +stagers 'steIdZ@z Kj% 2 +stages 'steIdZIz Ja%,Kj% 22C,6A +stagflation ,st&g'fleISn L@$ 3 +stagger 'st&g@R J0%,K6% 22A,2C,6A +staggered 'st&g@d Jc%,Jd% 22A,2C,6A +staggerer 'st&g@r@R K6$ 3 +staggerers 'st&g@r@z Kj$ 3 +staggering 'st&g@rIN Jb% 32A,2C,6A +staggeringly 'st&g@rINlI Pu% 4 +staggers 'st&g@z Ja%,Kj% 22A,2C,6A +stagily 'steIdZIlI Pu% 3 +staginess 'steIdZIn@s L@% 3 +staging 'steIdZIN Jb%,M6% 22C,6A +stagings 'steIdZINz Mj% 2 +stagnancy 'st&gn@nsI L@$ 3 +stagnant 'st&gn@nt OA% 2 +stagnate st&g'neIt I2% 22A +stagnated st&g'neItId Ic%,Id% 32A +stagnates st&g'neIts Ia% 22A +stagnating st&g'neItIN Ib% 32A +stagnation st&g'neISn L@% 3 +stags st&gz Kj% 1 +stagy 'steIdZI OA% 2 +staid steId OA% 1 +staidly 'steIdlI Pu% 2 +staidness 'steIdn@s L@% 2 +stain steIn J0%,M6% 12A,6A,22 +stained steInd Jc%,Jd% 12A,6A,22 +staining 'steInIN Jb% 22A,6A,22 +stainless 'steInl@s OA% 2 +stains steInz Ja%,Mj% 12A,6A,22 +stair ste@R K6% 1 +stair-carpet 'ste@-kApIt K6% 3 +stair-carpets 'ste@-kApIts Kj% 3 +stair-rod 'ste@-r0d K6% 2 +stair-rods 'ste@-r0dz Kj% 2 +staircase 'ste@keIs K6% 2 +staircases 'ste@keIsIz Kj% 3 +stairs ste@z Kj% 1 +stairway 'ste@weI K6% 2 +stairways 'ste@weIz Kj% 2 +stake steIk H2%,K6% 16A,14,15B +stake-holder 'steIk-h@Uld@R K6% 3 +stake-holders 'steIk-h@Uld@z Kj% 3 +staked steIkt Hc%,Hd% 16A,14,15B +stakes steIks Ha%,Kj% 16A,14,15B +staking 'steIkIN Hb% 26A,14,15B +stalactite 'st&l@ktaIt K6% 3 +stalactites 'st&l@ktaIts Kj% 3 +stalagmite 'st&l@gmaIt K6% 3 +stalagmites 'st&l@gmaIts Kj% 3 +stale steIl I2$,OB% 12A +staled steIld Ic$,Id$ 12A +stalemate 'steIlmeIt H2$,M6% 26A +stalemated 'steIlmeItId Hc$,Hd$ 36A +stalemates 'steIlmeIts Ha$,Mj$ 26A +stalemating 'steIlmeItIN Hb$ 36A +staleness 'steIln@s L@% 2 +staler 'steIl@R Or% 2 +stales steIlz Ia$ 12A +stalest 'steIlIst Os% 2 +staling 'steIlIN Ib$ 22A +stalk stOk J0%,K6% 12C,6A +stalked stOkt Jc%,Jd% 12C,6A +stalker 'stOk@R K6% 2 +stalkers 'stOk@z Kj% 2 +stalking 'stOkIN Jb% 22C,6A +stalking-horse 'stOkIN-hOs K6% 3 +stalking-horses 'stOkIN-hOsIz Kj% 4 +stalks stOks Ja%,Kj% 12C,6A +stall stOl J0%,K6% 12A,6A +stall-fed 'stOl-fed OA% 2 +stalled stOld Jc%,Jd% 12A,6A +stalling 'stOlIN Jb% 22A,6A +stallion 'st&lI@n K6% 3 +stallions 'st&lI@nz Kj% 3 +stalls stOlz Ja%,Kj% 12A,6A +stalwart 'stOlw@t K6%,OA% 2 +stalwarts 'stOlw@ts Kj% 2 +stamen 'steIm@n K6$ 2 +stamens 'steIm@nz Kj$ 2 +stamina 'st&mIn@ L@% 3 +stammer 'st&m@R J0%,K6% 22A,6A,15B +stammered 'st&m@d Jc%,Jd% 22A,6A,15B +stammerer 'st&m@r@R K6% 3 +stammerers 'st&m@r@z Kj% 3 +stammering 'st&m@rIN Jb% 32A,6A,15B +stammeringly 'st&m@rINlI Pu% 4 +stammers 'st&m@z Ja%,Kj% 22A,6A,15B +stamp st&mp J0%,K6% 12C,3A,6A,14,15A,15B,16B,22 +stamp-album 'st&mp-&lb@m K6% 3 +stamp-albums 'st&mp-&lb@mz Kj% 3 +stamp-collector 'st&mp-k@,lekt@R K6% 4 +stamp-collectors 'st&mp-k@,lekt@z Kj% 4 +stamp-dealer 'st&mp-dil@R K6% 3 +stamp-dealers 'st&mp-dil@z Kj% 3 +stamp-duties 'st&mp-djutIz Mj$ 3 +stamp-duty 'st&mp-djutI M8% 3 +stamped st&mpt Jc%,Jd% 12C,3A,6A,14,15A,15B,16B,22 +stampede st&m'pid J2%,K6% 22A,6A,14 +stampeded st&m'pidId Jc%,Jd% 32A,6A,14 +stampedes st&m'pidz Ja%,Kj% 22A,6A,14 +stampeding st&m'pidIN Jb% 32A,6A,14 +stamping 'st&mpIN Jb% 22C,3A,6A,14,15A,15B,16B,22 +stamping-ground 'st&mpIN-graUnd K6% 3 +stamping-grounds 'st&mpIN-graUndz Kj% 3 +stamps st&mps Ja%,Kj% 12C,3A,6A,14,15A,15B,16B,22 +stance st&ns K6% 1 +stances 'st&nsIz Kj$ 2 +stanchion 'st&ntS@n K6$ 2 +stanchions 'st&ntS@nz Kj$ 2 +stand st&nd J5%,K6% 12A,2B,2C,3A,4A,6A,6C,12A,15A,15B +stand-in 'st&nd-In K6% 2 +stand-ins 'st&nd-Inz Kj% 2 +stand-to st&nd-'tu Ki$ 2 +stand-up 'st&nd-Vp OA% 2 +standard 'st&nd@d K6%,OA% 2 +standard-bearer 'st&nd@d-be@r@R K6% 4 +standard-bearers 'st&nd@d-be@r@z Kj% 4 +standardization ,st&nd@daI'zeISn M6% 5 +standardizations ,st&nd@daI'zeISnz Mj% 5 +standardize 'st&nd@daIz H2% 36A +standardized 'st&nd@daIzd Hc%,Hd% 36A +standardizes 'st&nd@daIzIz Ha% 46A +standardizing 'st&nd@daIzIN Hb% 46A +standards 'st&nd@dz Kj% 2 +standby 'st&nbaI M6% 2 +standbys 'st&nbaIz Mj% 2 +standing 'st&ndIN Jb%,L@%,OA% 22A,2B,2C,3A,4A,6A,6C,12A,15A,15B +standoffish st&nd'0fIS OA% 3 +standoffishly st&nd'0fISlI Pu% 4 +standoffishness st&nd'0fISn@s L@% 4 +standpipe 'st&ndpaIp K6% 2 +standpipes 'st&ndpaIps Kj% 2 +standpoint 'st&ndpoInt K6% 2 +standpoints 'st&ndpoInts Kj% 2 +stands st&ndz Ja%,Kj% 12A,2B,2C,3A,4A,6A,6C,12A,15A,15B +standstill 'st&nstIl Ki% 2 +stank st&Nk Jc% 12A,3A,15B +stanza 'st&nz@ K6% 2 +stanzas 'st&nz@z Kj% 2 +staple 'steIpl H2%,M6% 26A +stapled 'steIpld Hc%,Hd% 26A +stapler 'steIpl@R K6% 2 +staplers 'steIpl@z Kj% 2 +staples 'steIplz Ha%,Mj% 26A +stapling 'steIplIN Hb% 26A +stapling-machine 'steIplIN-m@Sin K6% 4 +stapling-machines 'steIplIN-m@Sinz Kj% 4 +star stAR J4%,K6% 13A,6A,14 +starboard 'stAb@d H0$,K6% 2 +starboarded 'stAb@dId Hc$,Hd$ 3 +starboarding 'stAb@dIN Hb$ 3 +starboards 'stAb@dz Ha$,Kj$ 2 +starch stAtS H1$,L@% 16A +starched stAtSt Hc$,Hd% 16A +starches 'stAtSIz Ha$ 26A +starchier 'stAtSI@R Or$ 3 +starchiest 'stAtSIIst Os$ 3 +starching 'stAtSIN Hb$ 26A +starchy 'stAtSI OD% 2 +stardom 'stAd@m L@% 2 +stardust 'stAdVst L@% 2 +stare ste@R J2%,K6% 12A,2B,2C,3A,15B +stared ste@d Jc%,Jd% 12A,2B,2C,3A,15B +stares ste@z Ja%,Kj% 12A,2B,2C,3A,15B +starfish 'stAfIS K9% 2 +starfishes 'stAfISIz Kj% 3 +stargazer 'stAgeIz@R K6% 3 +stargazers 'stAgeIz@z Kj% 3 +staring 'ste@rIN Jb%,OA%,Pu% 22A,2B,2C,3A,15B +stark stAk OA%,Pu% 1 +starkers 'stAk@z Op% 2 +starkly 'stAklI Pu% 2 +starless 'stAl@s OA% 2 +starlet 'stAl@t K6% 2 +starlets 'stAl@ts Kj% 2 +starlight 'stAlaIt L@% 2 +starling 'stAlIN K6% 2 +starlings 'stAlINz Kj% 2 +starlit 'stAlIt OA% 2 +starred stAd Jc%,Jd% 13A,6A,14 +starrier 'stArI@R Or% 3 +starriest 'stArIIst Os% 3 +starring 'stArIN Jb% 23A,6A,14 +starry 'stArI OD% 2 +starry-eyed ,stArI-'aId OA% 3 +stars stAz Ja%,Kj% 13A,6A,14 +start stAt J0%,M6% 12A,2C,3A,6A,6D,7A,15A,19B +started 'stAtId Jc%,Jd% 22A,2C,3A,6A,6D,7A,15A,19B +starter 'stAt@R K6% 2 +starters 'stAt@z Kj% 2 +starting 'stAtIN Jb% 22A,2C,3A,6A,6D,7A,15A,19B +starting-gate 'stAtIN-geIt K6% 3 +starting-gates 'stAtIN-geIts Kj% 3 +starting-point 'stAtIN-poInt K6% 3 +starting-points 'stAtIN-poInts Kj% 3 +starting-post 'stAtIN-p@Ust K6% 3 +starting-posts 'stAtIN-p@Usts Kj% 3 +starting-prices 'stAtIN-praIsIz Kj% 4 +startle 'stAtl H2% 26A,15A +startled 'stAtld Hc%,Hd% 26A,15A +startles 'stAtlz Ha% 26A,15A +startling 'stAtlIN Hb% 26A,15A +startlingly 'stAtlINlI Pu% 3 +starts stAts Ja%,Mj% 12A,2C,3A,6A,6D,7A,15A,19B +starvation stA'veISn L@% 3 +starve stAv J2% 12A,2C,6A,15A +starved stAvd Jc%,Jd% 12A,2C,6A,15A +starveling 'stAvlIN K6$ 2 +starvelings 'stAvlINz Kj$ 2 +starves stAvz Ja% 12A,2C,6A,15A +starving 'stAvIN Jb% 22A,2C,6A,15A +stash st&S H1% 115B +stashed st&St Hc%,Hd% 115B +stashes 'st&SIz Ha% 215B +stashing 'st&SIN Hb% 215B +state steIt H2%,M6* 16A,9 +statecraft 'steItkrAft L@% 2 +stated 'steItId Hc%,Hd%,OA% 26A,9 +stateless 'steItl@s OA% 2 +statelier 'steItlI@R Or% 3 +stateliest 'steItlIIst Os% 3 +stateliness 'steItlIn@s L@% 3 +stately 'steItlI OD% 2 +statement 'steItm@nt M6% 2 +statements 'steItm@nts Mj% 2 +states steIts Ha%,Mj% 16A,9 +statesman 'steItsm@n Ki% 2 +statesmanlike 'steItsm@nlaIk OA% 3 +statesmanship 'steItsm@nSIp L@% 3 +statesmen 'steItsm@n Kj% 2 +static 'st&tIk OA% 2 +statically 'st&tIklI Pu% 3 +statics 'st&tIks Lk$ 2 +stating 'steItIN Hb% 26A,9 +station 'steISn H0%,M6% 26A,15A +station-waggon 'steISn-w&g@n K6% 4 +station-waggons 'steISn-w&g@nz Kj% 4 +stationary 'steIS@nrI OA% 3 +stationed 'steISnd Hc%,Hd% 26A,15A +stationer 'steISn@R K6% 3 +stationers 'steISn@z Kj% 3 +stationery 'steIS@nrI L@% 3 +stationing 'steISnIN Hb% 36A,15A +stationmaster 'steISnmAst@R K6% 4 +stationmasters 'steISnmAst@z Kj% 4 +stations 'steISnz Ha%,Mj% 26A,15A +statistic st@'tIstIk K6% 3 +statistical st@'tIstIkl OA% 4 +statistically st@'tIstIklI Pu% 4 +statistician ,st&tI'stISn K6% 4 +statisticians ,st&tI'stISnz Kj% 4 +statistics st@'tIstIks Kj%,Lk% 3 +statuary 'st&tSU@rI L@%,OA$ 4 +statue 'st&tSu K6% 2 +statues 'st&tSuz Kj% 2 +statuesque ,st&tSU'esk OA% 3 +statuette ,st&tSU'et K6% 3 +statuettes ,st&tSU'ets Kj% 3 +stature 'st&tS@R L@% 2 +status 'steIt@s L@% 2 +status quo ,steIt@s 'kw@U Ki% 3 +statute 'st&tSut K6% 2 +statute-book 'st&tSut-bUk K6% 3 +statute-books 'st&tSut-bUks Kj$ 3 +statutes 'st&tSuts Kj% 2 +statutorily 'st&tSUtrIlI Pu% 4 +statutory 'st&tSUtrI OA% 3 +staunch stOntS H1%,OA% 16A +staunched stOntSt Hc%,Hd% 16A +staunches 'stOntSIz Ha% 26A +staunching 'stOntSIN Hb% 26A +staunchly 'stOntSlI Pu% 2 +staunchness 'stOntSn@s L@% 2 +stave steIv J2%,K6$ 13A,15B +staved steIvd Jc%,Jd% 13A,15B +staves steIvz Ja%,Kj$ 13A,15B +staving 'steIvIN Jb% 23A,15B +stay steI J0%,K6% 12A,2B,2C,4A,6A,15B +stay-at-home 'steI-@t-h@Um K6$ 3 +stay-at-homes 'steI-@t-h@Umz Kj$ 3 +stayed steId Jc%,Jd% 12A,2B,2C,4A,6A,15B +stayer 'steI@R K6% 2 +stayers 'steI@z Kj% 2 +staying 'steIIN Jb% 22A,2B,2C,4A,6A,15B +stays steIz Ja%,Kj% 12A,2B,2C,4A,6A,15B +stead sted L@% 1 +steadfast 'stedfAst OA% 2 +steadfastly 'stedfAstlI Pu% 3 +steadfastness 'stedfAstn@s L@% 3 +steadied 'stedId Jc%,Jd% 22A,6A +steadier 'stedI@R Or% 3 +steadies 'stedIz Ja%,Kj% 22A,6A +steadiest 'stedIIst Os% 3 +steadily 'stedIlI Pu% 3 +steadiness 'stedIn@s L@% 3 +steady 'stedI J3%,K8%,OD%,Pu% 22A,6A +steadying 'stedIIN Jb% 32A,6A +steak steIk M6% 1 +steaks steIks Mj% 1 +steal stil J5% 12A,2C,6A,14,15A +stealing 'stilIN Jb% 22A,2C,6A,14,15A +steals stilz Ja% 12A,2C,6A,14,15A +stealth stelT L@% 1 +stealthier 'stelTI@R Or% 3 +stealthiest 'stelTIIst Os% 3 +stealthily 'stelTIlI Pu% 3 +stealthy 'stelTI OD% 2 +steam stim J0%,L@% 12A,2C,6A,22 +steam-boiler 'stim-boIl@R K6% 3 +steam-boilers 'stim-boIl@z Kj% 3 +steam-coal 'stim-k@Ul L@% 2 +steam-engine 'stim-endZIn K6% 3 +steam-engines 'stim-endZInz Kj% 3 +steam-heat stim-'hit H0$,L@$ 2 +steam-heated stim-'hitId Hc$,Hd$ 3 +steam-heating stim-'hitIN Hb$ 3 +steam-heats stim-'hits Ha$ 2 +steamboat 'stimb@Ut K6% 2 +steamboats 'stimb@Uts Kj% 2 +steamed stimd Jc%,Jd% 12A,2C,6A,22 +steamer 'stim@R K6% 2 +steamers 'stim@z Kj% 2 +steamier 'stimI@R Or% 3 +steamiest 'stimIIst Os% 3 +steaming 'stimIN Jb% 22A,2C,6A,22 +steamroller 'stimr@Ul@R H0%,K6% 36A +steamrollered 'stimr@Ul@d Hc%,Hd% 36A +steamrollering 'stimr@Ul@rIN Hb$ 46A +steamrollers 'stimr@Ul@z Ha%,Kj% 36A +steams stimz Ja% 12A,2C,6A,22 +steamship 'stimSIp K6% 2 +steamships 'stimSIps Kj% 2 +steamy 'stimI OD% 2 +steed stid K6$ 1 +steeds stidz Kj$ 1 +steel stil H0%,L@% 16A,15A,16A +steel-clad 'stil-kl&d OA% 2 +steel-plated stil-'pleItId OA% 3 +steeled stild Hc%,Hd% 16A,15A,16A +steelier 'stilI@R Or% 3 +steeliest 'stilIIst Os% 3 +steeling 'stilIN Hb% 26A,15A,16A +steels stilz Ha% 16A,15A,16A +steelworks 'stilw3ks K9% 2 +steely 'stilI OD% 2 +steelyard 'stiljAd K6% 2 +steelyards 'stiljAdz Kj% 2 +steenbok 'stinb0k K6$ 2 +steenboks 'stinb0ks Kj$ 2 +steep stip J0%,OC% 12A,6A,14 +steeped stipt Jc%,Jd% 12A,6A,14 +steepen 'stip@n J0% 22A,6A +steepened 'stip@nd Jc%,Jd% 22A,6A +steepening 'stip@nIN Jb% 32A,6A +steepens 'stip@nz Ja% 22A,6A +steeper 'stip@R Or% 2 +steepest 'stipIst Os% 2 +steeping 'stipIN Jb% 22A,6A,14 +steepish 'stipIS OA% 2 +steeple 'stipl K6% 2 +steeplechase 'stipltSeIs K6% 3 +steeplechaser 'stipltSeIs@R K6% 4 +steeplechasers 'stipltSeIs@z Kj% 4 +steeplechases 'stipltSeIsIz Kj% 4 +steeplejack 'stipldZ&k K6% 3 +steeplejacks 'stipldZ&ks Kj% 3 +steeples 'stiplz Kj% 2 +steeply 'stiplI Pu% 2 +steepness 'stipn@s L@% 2 +steeps stips Ja% 12A,6A,14 +steer stI@R J0%,K6% 12A,2C,6A +steerage 'stI@rIdZ M6% 2 +steerages 'stI@rIdZIz Mj$ 3 +steerageway 'stI@rIdZweI L@$ 3 +steered stI@d Jc%,Jd% 12A,2C,6A +steering 'stI@rIN Jb% 22A,2C,6A +steering-gear 'stI@rIN-gI@R L@% 3 +steering-wheel 'stI@rIN-wil K6% 3 +steering-wheels 'stI@rIN-wilz Kj% 3 +steers stI@z Ja%,Kj% 12A,2C,6A +steersman 'stI@zm@n Ki% 2 +steersmen 'stI@zm@n Kj% 2 +stelae 'stili Kj$ 2 +stele 'stilI Ki$ 2 +stellar 'stel@R OA% 2 +stem stem J4%,K6% 13A,6A +stemmed stemd Jc%,Jd%,Ot% 13A,6A +stemming 'stemIN Jb% 23A,6A +stems stemz Ja%,Kj% 13A,6A +stench stentS K7% 1 +stenches 'stentSIz Kj$ 2 +stencil 'stensl H4%,K6% 26A +stencilled 'stensld Hc%,Hd% 26A +stencilling 'stens@lIN Hb% 36A +stencils 'stenslz Ha%,Kj% 26A +stenographer st@'n0gr@f@R K6% 4 +stenographers st@'n0gr@f@z Kj% 4 +stenography st@'n0gr@fI L@% 4 +stentorian sten'tOrI@n OA% 4 +step step J4%,K6% 12C,15B +step- step- U-% 1 +step-ins 'step-Inz Kj$ 2 +stepbrother 'stepbrVD@R K6% 3 +stepbrothers 'stepbrVD@z Kj% 3 +stepchild 'steptSaIld Ki% 2 +stepchildren 'steptSIldr@n Kj% 3 +stepdaughter 'stepdOt@R K6% 3 +stepdaughters 'stepdOt@z Kj% 3 +stepfather 'stepfAD@R K6% 3 +stepfathers 'stepfAD@z Kj% 3 +stepladder 'stepl&d@R K6% 3 +stepladders 'stepl&d@z Kj% 3 +stepmother 'stepmVD@R K6% 3 +stepmothers 'stepmVD@z Kj% 3 +stepparent 'step+pe@r@nt K6$ 3 +stepparents 'step+pe@r@nts Kj$ 3 +steppe step K6$ 1 +stepped stept Jc$,Jd% 12C,15B +steppes steps Kj$ 1 +stepping 'stepIN Jb% 22C,15B +stepping-stone 'stepIN-st@Un K6% 3 +stepping-stones 'stepIN-st@Unz Kj% 3 +steps steps Ja%,Kj% 12C,15B +stepsister 'stepsIst@R K6% 3 +stepsisters 'stepsIst@z Kj% 3 +stepson 'stepsVn K6% 2 +stepsons 'stepsVnz Kj% 2 +stereo 'sterI@U K6% 3 +stereophonic ,sterI@'f0nIk OA% 5 +stereos 'sterI@Uz Kj% 3 +stereoscope 'sterI@sk@Up K6$ 4 +stereoscopes 'sterI@sk@Ups Kj$ 4 +stereoscopic ,sterI@'sk0pIk OA% 5 +stereotype 'sterI@taIp H2$,M6% 46A +stereotyped 'sterI@taIpt Hc$,Hd% 46A +stereotypes 'sterI@taIps Ha$,Mj% 46A +stereotyping 'sterI@taIpIN Hb$ 56A +sterile 'steraIl OA% 2 +sterility st@'rIlItI L@% 4 +sterilization ,ster@laI'zeISn L@% 5 +sterilize 'ster@laIz H2% 36A +sterilized 'ster@laIzd Hc%,Hd% 36A +sterilizes 'ster@laIzIz Ha% 46A +sterilizing 'ster@laIzIN Hb% 46A +sterling 'st3lIN L@%,OA% 2 +stern st3n K6%,OC% 1 +sterner 'st3n@R Or% 2 +sternest 'st3nIst Os% 2 +sternly 'st3nlI Pu% 2 +sternness 'st3n+n@s L@% 2 +sterns st3nz Kj$ 1 +sternum 'st3n@m K6% 2 +sternums 'st3n@mz Kj$ 2 +sternwheeler st3n'wil@R K6$ 3 +sternwheelers st3n'wil@z Kj$ 3 +stertorous 'st3t@r@s OA$ 3 +stertorously 'st3t@r@slI Pu$ 4 +stet stet Z-$ 1 +stethoscope 'steT@sk@Up K6% 3 +stethoscopes 'steT@sk@Ups Kj% 3 +stetson 'stetsn K6% 2 +stetsons 'stetsnz Kj% 2 +stevedore 'stiv@dOR K6% 3 +stevedores 'stiv@dOz Kj% 3 +stew stju J0%,M6% 12A,2C,6A,15A +steward 'stjU@d K6% 2 +stewardess ,stjU@'des K7% 3 +stewardesses ,stjU@'desIz Kj% 4 +stewards 'stjU@dz Kj% 2 +stewardship 'stju@dSIp L@% 3 +stewed stjud Jc%,Jd%,OA% 12A,2C,6A,15A +stewing 'stjuIN Jb% 22A,2C,6A,15A +stews stjuz Ja%,Mj% 12A,2C,6A,15A +stick stIk H0%,J5%,K6% 12A,2C,3A,6A,15A,15B +stick-in-the-mud 'stIk-In-D@-mVd Ki%,Oq% 4 +stick-on 'stIk-0n Oq% 2 +stick-up 'stIk-Vp K6% 2 +stick-ups 'stIk-Vps Kj$ 2 +sticked stIkt Hc$,Hd$ 12A,2C,3A,6A,15A,15B +sticker 'stIk@R K6% 2 +stickers 'stIk@z Kj% 2 +stickier 'stIkI@R Or% 3 +stickiest 'stIkIIst Os% 3 +stickily 'stIkIlI Pu% 3 +stickiness 'stIkIn@s L@% 3 +sticking 'stIkIN Jb% 22A,2C,3A,6A,15A,15B +sticking-plaster 'stIkIN-plAst@R M6% 4 +sticking-plasters 'stIkIN-plAst@z Mj% 4 +stickler 'stIkl@R K6% 2 +sticklers 'stIkl@z Kj% 2 +sticks stIks Ja%,Kj% 12A,2C,3A,6A,15A,15B +sticky 'stIkI OD% 2 +sties staIz Kj% 1 +stiff stIf K6%,OC%,Pu% 1 +stiff-necked stIf-'nekt OA% 2 +stiffen 'stIfn J0% 22A,6A +stiffened 'stIfnd Jc%,Jd% 22A,6A +stiffener 'stIfn@R K6% 2 +stiffeners 'stIfn@z Kj% 2 +stiffening 'stIfnIN Jb%,M6% 22A,6A +stiffenings 'stIfnINz Mj% 2 +stiffens 'stIfnz Ja% 22A,6A +stiffer 'stIf@R Or% 2 +stiffest 'stIfIst Os% 2 +stiffly 'stIflI Pu% 2 +stiffness 'stIfn@s L@% 2 +stiffs stIfs Kj$ 1 +stifle 'staIf@l J2% 22A,6A +stifled 'staIf@ld Jc%,Jd% 22A,6A +stifles 'staIf@lz Ja% 22A,6A +stifling 'staIflIN Jb% 22A,6A +stigma 'stIgm@ K6% 2 +stigmas 'stIgm@z Kj$ 2 +stigmatize 'stIgm@taIz H2% 316B +stigmatized 'stIgm@taIzd Hc%,Hd% 316B +stigmatizes 'stIgm@taIzIz Ha% 416B +stigmatizing 'stIgm@taIzIN Hb% 416B +stile staIl K6% 1 +stiles staIlz Kj% 1 +stiletto stI'let@U K6% 3 +stilettoes stI'let@Uz Kj% 3 +stilettos stI'let@Uz Kj% 3 +still stIl H0%,K6%,OC*,Pu* 16A +still-life stIl-'laIf M6% 2 +still-lifes stIl-'laIfs Mj% 2 +still-room 'stIl-rum K6$ 2 +still-rooms 'stIl-rumz Kj$ 2 +stillbirth 'stIlb3T K6% 2 +stillbirths 'stIlb3Ts Kj% 2 +stillborn 'stIlbOn OA% 2 +stilled stIld Hc%,Hd% 16A +stiller 'stIl@R Or$ 2 +stillest 'stIlIst Os$ 2 +stilling 'stIlIN Hb% 26A +stillness 'stIln@s L@% 2 +stills stIlz Ha%,Kj% 16A +stilly 'stIlI OA$ 2 +stilt stIlt K6% 1 +stilted 'stIltId OA% 2 +stiltedly 'stIltIdlI Pu% 3 +stilts stIlts Kj% 1 +stimulant 'stImjUl@nt K6% 3 +stimulants 'stImjUl@nts Kj% 3 +stimulate 'stImjUleIt H2% 36A,14,17 +stimulated 'stImjUleItId Hc%,Hd% 46A,14,17 +stimulates 'stImjUleIts Ha% 36A,14,17 +stimulating 'stImjUleItIN Hb%,OA% 46A,14,17 +stimulation ,stImjU'leISn M6% 4 +stimulations ,stImjU'leISnz Mj% 4 +stimuli 'stImjUlaI Kj% 3 +stimulus 'stImjUl@s Ki% 3 +sting stIN J5%,M6% 12A,6A,14,15A +stinger 'stIN@R K6% 2 +stingers 'stIN@z Kj% 2 +stingier 'stIndZI@R Or% 3 +stingiest 'stIndZIIst Os% 3 +stingily 'stIndZIlI Pu% 3 +stinginess 'stINdZIn@s L@% 3 +stinging 'stININ Jb% 22A,6A,14,15A +stingless 'stINl@s OA$ 2 +stingray 'stINreI K6% 2 +stingrays 'stINreIz Kj% 2 +stings stINz Ja%,Mj% 12A,6A,14,15A +stingy 'stIndZI OD% 2 +stink stINk J5%,K6% 12A,3A,15B +stinker 'stINk@R K6% 2 +stinkers 'stINk@z Kj% 2 +stinking 'stINkIN Jb% 22A,3A,15B +stinks stINks Ja%,Kj% 12A,3A,15B +stint stInt J0$,K6% 16A,14 +stinted 'stIntId Jc$,Jd$ 26A,14 +stinting 'stIntIN Jb$ 26A,14 +stints stInts Ja$,Kj% 16A,14 +stipend 'staIpend K6% 2 +stipendiaries staI'pendI@rIz Kj$ 5 +stipendiary staI'pendI@rI K8$,OA$ 5 +stipends 'staIpendz Kj$ 2 +stipple 'stIpl H2$ 26A +stippled 'stIpld Hc$,Hd$ 26A +stipples 'stIplz Ha$ 26A +stippling 'stIplIN Hb$ 26A +stipulate 'stIpjUleIt J2% 33A,6A,9 +stipulated 'stIpjUleItId Jc%,Jd% 43A,6A,9 +stipulates 'stIpjUleIts Ja% 33A,6A,9 +stipulating 'stIpjUleItIN Jb% 43A,6A,9 +stipulation ,stIpjU'leISn K6% 4 +stipulations ,stIpjU'leISnz Kj% 4 +stir st3R J4%,K6% 12A,2C,6A,14,15B +stirred st3d Jc%,Jd% 12A,2C,6A,14,15B +stirring 'st3rIN Jb%,OA% 22A,2C,6A,14,15B +stirringly 'st3rINlI Pu% 3 +stirrup 'stIr@p K6% 2 +stirrup-cup 'stIr@p-kVp K6% 3 +stirrup-cups 'stIr@p-kVps Kj$ 3 +stirrups 'stIr@ps Kj% 2 +stirs st3z Ja%,Kj% 12A,2C,6A,14,15B +stitch stItS J1%,K7% 12A,2C,6A,15A,15B +stitched stItSt Jc%,Jd% 12A,2C,6A,15A,15B +stitches 'stItSIz Ja%,Kj% 22A,2C,6A,15A,15B +stitching 'stItSIN Jb% 22A,2C,6A,15A,15B +stoat st@Ut K6% 1 +stoats st@Uts Kj% 1 +stochastic st@'k&stIk OA$ 3 +stochastically st@'k&stIklI Pu$ 4 +stock st0k H0%,M6% 16A,14 +stock-cube 'st0k-kjub K6% 2 +stock-cubes 'st0k-kjubz Kj% 2 +stock-farmer 'st0k-fAm@R K6% 3 +stock-farmers 'st0k-fAm@z Kj% 3 +stock-in-trade ,st0k-In-'treId M6% 3 +stock-in-trades ,st0k-In-'treIdz Mj$ 3 +stock-list 'st0k-lIst K6% 2 +stock-lists 'st0k-lIsts Kj% 2 +stock-still ,st0k-'stIl Pu% 2 +stockade st0'keId H2$,K6% 2 +stockaded st0'keIdId Hc$,Hd$ 3 +stockades st0'keIdz Ha$,Kj% 2 +stockading st0'keIdIN Hb$ 3 +stockbreeder 'st0kbrid@R K6% 3 +stockbreeders 'st0kbrid@z Kj% 3 +stockbroker 'st0kbr@Uk@R K6% 3 +stockbrokers 'st0kbr@Uk@z Kj% 3 +stockcar 'st0k+kAR K6% 2 +stockcars 'st0k+kAz Kj% 2 +stocked st0kt Hc%,Hd% 16A,14 +stockfish 'st0kfIS K9% 2 +stockholder 'st0kh@Uld@R K6% 3 +stockholders 'st0kh@Uld@z Kj% 3 +stockholding 'st0kh@UldIN K6% 3 +stockholdings 'st0kh@UldINz Kj$ 3 +stockier 'st0kI@R Or% 3 +stockiest 'st0kIIst Os% 3 +stockily 'st0kIlI Pu% 3 +stockinette ,st0kI'net L@% 3 +stocking 'st0kIN Hb%,K6% 26A,14 +stockinged 'st0kINd OA% 2 +stockings 'st0kINz Kj% 2 +stockist 'st0kIst K6% 2 +stockists 'st0kIsts Kj% 2 +stockjobber 'st0kdZ0b@R K6$ 3 +stockjobbers 'st0kdZ0b@z Kj$ 3 +stockpile 'st0kpaIl K6% 2 +stockpiles 'st0kpaIlz Kj% 2 +stockpiling 'st0kpaIlIN L@% 3 +stockpot 'st0kp0t K6% 2 +stockpots 'st0kp0ts Kj% 2 +stockroom 'st0krum K6% 2 +stockrooms 'st0krumz Kj% 2 +stocks st0ks Ha%,Mj% 16A,14 +stocktaking 'st0kteIkIN M6% 3 +stocktakings 'st0kteIkINz Mj$ 3 +stocky 'st0kI OD% 2 +stockyard 'st0kjAd K6% 2 +stockyards 'st0kjAdz Kj% 2 +stodge st0dZ L@% 1 +stodgier 'st0dZI@R Or% 3 +stodgiest 'st0dZIIst Os% 3 +stodginess 'st0dZInIs L@% 3 +stodgy 'st0dZI OD% 2 +stoep stUp K6$ 1 +stoeps stUps Kj$ 1 +stoic 'st@UIk K6% 2 +stoical 'st@UIkl OA% 3 +stoically 'st@UIklI Pu% 3 +stoicism 'st@UIsIz@m L@% 4 +stoics 'st@UIks Kj% 2 +stoke st@Uk J2% 12A,2C,6A,15B +stoked st@Ukt Jc%,Jd% 12A,2C,6A,15B +stokehold 'st@Ukh@Uld K6$ 2 +stokeholds 'st@Ukh@Uldz Kj$ 2 +stokehole 'st@Ukh@Ul K6$ 2 +stokeholes 'st@Ukh@Ulz Kj$ 2 +stoker 'st@Uk@R K6% 2 +stokers 'st@Uk@z Kj% 2 +stokes st@Uks Ja% 12A,2C,6A,15B +stoking 'st@UkIN Jb% 22A,2C,6A,15B +stole st@Ul Jc%,K6$ 12A,2C,6A,14,15A +stolen 'st@Ul@n Jd%,OA% 22A,2C,6A,14,15A +stoles st@Ulz Kj$ 1 +stolid 'st0lId OA% 2 +stolidity st@'lIdItI L@% 4 +stolidly 'st0lIdlI Pu% 3 +stolidness 'st0lIdn@s L@% 3 +stomach 'stVm@k H0%,M6% 26A +stomach-ache 'stVm@k-eIk K6% 3 +stomach-aches 'stVm@k-eIks Kj% 3 +stomach-pump 'stVm@k-pVmp K6% 3 +stomach-pumps 'stVm@k-pVmps Kj% 3 +stomached 'stVm@kt Hc%,Hd% 26A +stomaching 'stVm@kIN Hb$ 36A +stomachs 'stVm@ks Ha$,Mj% 26A +stomp st0mp I0%,K6% 12C +stomped st0mpt Ic%,Id% 12C +stomping 'st0mpIN Ib% 22C +stomps st0mps Ia%,Kj% 12C +stone st@Un H2%,M6% 16A,15A +stone-blind st@Un-'blaInd OA% 2 +stone-cold st@Un-'k@Uld OA% 2 +stone-dead st@Un-'ded OA% 2 +stone-deaf st@Un-'def OA% 2 +stone-fruit 'st@Un-frut M6$ 2 +stone-fruits 'st@Un-fruts Mj$ 2 +stone-pit 'st@Un-pIt K6$ 2 +stone-pits 'st@Un-pIts Kj$ 2 +stone-sober 'st@Un-s@Ub@R OA% 3 +stonebreaker 'st@UnbreIk@R K6$ 3 +stonebreakers 'st@UnbreIk@z Kj$ 3 +stoned st@Und Hc%,Hd%,OA% 16A,15A +stoneless 'st@Unl@s OA% 2 +stonemason 'st@UnmeIsn K6% 3 +stonemasons 'st@UnmeIsnz Kj% 3 +stones st@Unz Ha%,Mj% 16A,15A +stonewall st@Un'wAl H0% 2 +stonewalled st@Un'wAld Hc%,Hd% 2 +stonewaller st@Un'wAl@R K6% 3 +stonewallers st@Un'wAl@z Kj% 3 +stonewalling st@Un'wAlIN Hb%,L@% 3 +stonewalls st@Un'wAlz Ha% 2 +stoneware 'st@Unwe@R L@% 2 +stonework 'st@Unw3k L@% 2 +stonier 'st@UnI@R Or$ 3 +stoniest 'st@UnIIst Os% 3 +stonily 'st@UnIlI Pu% 3 +stoning 'st@UnIN Hb% 26A,15A +stony 'st@UnI OD% 2 +stony-broke ,st@UnI-'br@Uk OA% 3 +stood stUd Jc*,Jd* 12A,2B,2C,3A,4A,6A,6C,12A,15A,15B +stooge studZ I2$,K6% 1 +stooged studZd Ic$,Id$ 1 +stooges 'studZIz Ia$,Kj% 2 +stooging 'studZIN Ib$ 2 +stool stul K6% 1 +stools stulz Kj% 1 +stoop stup J0%,K6% 12A,2C,3A,4A,6A +stooped stupt Jc%,Jd% 12A,2C,3A,4A,6A +stooping 'stupIN Jb% 22A,2C,3A,4A,6A +stoops stups Ja%,Kj% 12A,2C,3A,4A,6A +stop st0p J4%,K6% 12A,2B,2C,3A,4A,6A,6B,6C,14,15A,15B +stopcock 'st0pk0k K6% 2 +stopcocks 'st0pk0ks Kj% 2 +stopgap 'st0pg&p K6% 2 +stopgaps 'st0pg&ps Kj% 2 +stopover 'st0p@Uv@R K6% 3 +stopovers 'st0p@Uv@z Kj% 3 +stoppage 'st0pIdZ K6% 2 +stoppages 'st0pIdZIz Kj% 3 +stopped st0pt Jc%,Jd% 12A,2B,2C,3A,4A,6A,6B,6C,14,15A,15B +stopper 'st0p@R K6% 2 +stoppers 'st0p@z Kj% 2 +stopping 'st0pIN Jb%,M6% 22A,2B,2C,3A,4A,6A,6B,6C,14,15A,15B +stoppings 'st0pINz Mj% 2 +stops st0ps Ja%,Kj% 12A,2B,2C,3A,4A,6A,6B,6C,14,15A,15B +stopwatch 'st0pw0tS K7% 2 +stopwatches 'st0pw0tSIz Kj% 3 +storage 'stOrIdZ L@% 2 +store stOR H2%,M6% 16A,15B +stored stOd Hc%,Hd% 16A,15B +storehouse 'stOhaUs K6% 2 +storehouses 'stOhaUzIz Kj% 3 +storeroom 'stOrum K6% 2 +storerooms 'stOrumz Kj% 2 +stores stOz Ha%,Mj% 16A,15B +storey 'stOrI K6% 2 +storeyed 'stOrId Ot% 2 +storeys 'stOrIz Kj% 2 +storied 'stOrId OA$ 2 +stories 'stOrIz Kj% 2 +storing 'stOrIN Hb% 26A,15B +stork stOk K6% 1 +storks stOks Kj% 1 +storm stOm J0%,K6% 12A,2C,3A,6A,15A,15B +storm-beaten 'stOm-bitn OA$ 3 +storm-bound 'stOm-baUnd OA% 2 +storm-centre 'stOm-sent@R K6% 3 +storm-centres 'stOm-sent@z Kj$ 3 +storm-cloud 'stOm-klaUd K6% 2 +storm-clouds 'stOm-klaUdz Kj% 2 +storm-cone 'stOm-k@Un K6% 2 +storm-cones 'stOm-k@Unz Kj% 2 +storm-lantern 'stOm-l&nt@n K6% 3 +storm-lanterns 'stOm-l&nt@nz Kj% 3 +storm-signal 'stOm-sIgn@l K6% 3 +storm-signals 'stOm-sIgn@lz Kj% 3 +storm-tossed 'stOm-t0st OA% 2 +storm-trooper 'stOm-trup@R K6% 3 +storm-troopers 'stOm-trup@z Kj% 3 +storm-troops 'stOm-trups Kj% 2 +stormed stOmd Jc%,Jd% 12A,2C,3A,6A,15A,15B +stormier 'stOmI@R Or% 3 +stormiest 'stOmIIst Os% 3 +stormily 'stOmIlI Pu% 3 +storming 'stOmIN Jb% 22A,2C,3A,6A,15A,15B +stormproof 'stOmpruf OA% 2 +storms stOmz Ja%,Kj% 12A,2C,3A,6A,15A,15B +stormy 'stOmI OD% 2 +story 'stOrI K8* 2 +storyteller 'stOrItel@R K6% 4 +storytellers 'stOrItel@z Kj% 4 +stoup stup K6$ 1 +stoups stups Kj$ 1 +stout staUt L@%,OC% 1 +stouter 'staUt@R Or% 2 +stoutest 'staUtIst Os% 2 +stouthearted staUt'hAtId OA% 3 +stoutly 'staUtlI Pu% 2 +stoutness 'staUtn@s L@% 2 +stove st@Uv Jc%,Jd%,K6% 13A,15B +stovepipe 'st@UvpaIp K6% 2 +stovepipes 'st@UvpaIps Kj% 2 +stoves st@Uvz Kj% 1 +stow st@U H0% 16A,15A,15B +stowaway 'st@U@weI K6% 3 +stowaways 'st@U@weIz Kj% 3 +stowed st@Ud Hc%,Hd% 16A,15A,15B +stowing 'st@UIN Hb% 26A,15A,15B +stows st@Uz Ha% 16A,15A,15B +straddle 'str&dl J2% 22A,6A +straddled 'str&dld Jc%,Jd% 22A,6A +straddles 'str&dlz Ja% 22A,6A +straddling 'str&dlIN Jb% 22A,6A +strafe strAf H2$ 16A +strafed strAft Hc$,Hd$ 16A +strafes strAfs Ha$ 16A +strafing 'strAfIN Hb$ 26A +straggle 'str&gl I2% 22A,2C +straggled 'str&gld Ic%,Id% 22A,2C +straggler 'str&gl@R K6% 2 +stragglers 'str&gl@z Kj% 2 +straggles 'str&glz Ia% 22A,2C +stragglier 'str&glI@R Or$ 3 +straggliest 'str&glIIst Os$ 3 +straggling 'str&glIN Ib% 22A,2C +straggly 'str&glI OD% 2 +straight streIt K6%,OA%,Pu% 1 +straighten 'streItn J0% 22A,2C,6A,15B +straightened 'streItnd Jc%,Jd% 22A,2C,6A,15B +straightening 'streItnIN Jb% 22A,2C,6A,15B +straightens 'streItnz Ja% 22A,2C,6A,15B +straightforward ,streIt'fOw@d OA% 3 +straightforwardly ,streIt'fOw@dlI Pu% 4 +straightness 'streItn@s L@% 2 +straights streIts Kj$ 1 +straightway ,streIt'weI Pu% 2 +strain streIn J0%,M6% 12A,3A,6A,15A,15B,16A +strained streInd Jc%,Jd%,OA% 12A,3A,6A,15A,15B,16A +strainer 'streIn@R K6% 2 +strainers 'streIn@z Kj% 2 +straining 'streInIN Jb% 22A,3A,6A,15A,15B,16A +strains streInz Ja%,Mj% 12A,3A,6A,15A,15B,16A +strait streIt K6$,OA$ 1 +strait-laced streIt-'leIst OA% 2 +straiten 'streItn H0% 2 +straitened 'streItnd Hc%,Hd% 2 +straitening 'streItnIN Hb% 2 +straitens 'streItnz Ha% 2 +straitjacket 'streItdZ&kIt K6% 3 +straitjackets 'streItdZ&kIts Kj% 3 +straits streIts Kj% 1 +strand str&nd J0$,K6% 12A,6A +stranded 'str&ndId Jc$,Jd% 22A,6A +stranding 'str&ndIN Jb$ 22A,6A +strands str&ndz Ja$,Kj$ 12A,6A +strange streIndZ OB% 1 +strangely 'streIndZlI Pu% 2 +strangeness 'streIndZn@s L@% 2 +stranger 'streIndZ@R K6%,Or% 2 +strangers 'streIndZ@z Kj% 2 +strangest 'streIndZIst Os% 2 +strangle 'str&Ngl H2% 26A +strangled 'str&Ngld Hc%,Hd% 26A +stranglehold 'str&Nglh@Uld K6% 3 +strangleholds 'str&Nglh@Uldz Kj$ 3 +strangles 'str&Nglz Ha% 26A +strangling 'str&NglIN Hb% 26A +strangulation ,str&NgjU'leISn L@% 4 +strap str&p H4%,M6% 16A,15B +straphanger 'str&ph&N@R K6% 3 +straphangers 'str&ph&N@z Kj% 3 +strapped str&pt Hc%,Hd% 16A,15B +strapping 'str&pIN Hb%,Ki%,OA% 26A,15B +straps str&ps Ha%,Mj% 16A,15B +strata 'strAt@ Kj% 2 +stratagem 'str&t@dZ@m M6% 3 +stratagems 'str&t@dZ@mz Mj% 3 +strategic str@'tidZIk OA% 3 +strategical str@'tidZIkl OA$ 4 +strategically str@'tidZIklI Pu% 4 +strategics str@'tidZIks Lk$ 3 +strategies 'str&t@dZIz Mj% 3 +strategist 'str&tIdZIst K6% 3 +strategists 'str&tIdZIsts Kj% 3 +strategy 'str&t@dZI M8% 3 +stratification ,str&tIfI'keISn M6% 5 +stratifications ,str&tIfI'keISnz Mj% 5 +stratified 'str&tIfaId Jc%,Jd% 32A,6A +stratifies 'str&tIfaIz Ja% 32A,6A +stratify 'str&tIfaI J3% 32A,6A +stratifying 'str&tIfaIIN Jb% 42A,6A +stratosphere 'str&t@sfI@R K6% 3 +stratospheres 'str&t@sfI@z Kj$ 3 +stratum 'strAt@m Ki$ 2 +straw strO H0$,M6% 1 +straw-coloured 'strO-kVl@d OA% 3 +strawberries 'strObrIz Kj% 2 +strawberry 'strObrI K8% 2 +strawboard 'strObOd L@$ 2 +strawed strOd Hc$,Hd$ 1 +strawing 'strOIN Hb$ 2 +straws strOz Ha$,Mj% 1 +stray streI I0%,K6% 12A,2C +strayed streId Ic%,Id% 12A,2C +straying 'streIIN Ib% 22A,2C +strays streIz Ia%,Kj% 12A,2C +streak strik J0%,K6% 12C,6A,15A +streaked strikt Jc%,Jd% 12C,6A,15A +streakier 'strikI@R Or$ 3 +streakiest 'strikIIst Os$ 3 +streaking 'strikIN Jb% 22C,6A,15A +streaks striks Ja%,Kj% 12C,6A,15A +streaky 'strikI OD% 2 +stream strim I0%,K6% 12A,2C,6A +streamed strimd Ic%,Id% 12A,2C,6A +streamer 'strim@R K6% 2 +streamers 'strim@z Kj% 2 +streaming 'strimIN Ib% 22A,2C,6A +streamlet 'strimlIt K6$ 2 +streamlets 'strimlIts Kj$ 2 +streamline 'strimlaIn H2% 2 +streamlined 'strimlaInd Hc%,Hd%,OA% 2 +streamlines 'strimlaInz Ha% 2 +streamlining 'strimlaInIN Hb% 3 +streams strimz Ia%,Kj% 12A,2C,6A +street strit K6% 1 +street-girl 'strit-g3l K6% 2 +street-girls 'strit-g3lz Kj% 2 +street-urchin 'strit-3tSIn K6% 3 +street-urchins 'strit-3tSInz Kj% 3 +streetcar 'stritkAR K6% 2 +streetcars 'stritkAz Kj% 2 +streets strits Kj% 1 +streetwalker 'stritwOk@R K6% 3 +streetwalkers 'stritwOk@z Kj% 3 +strength streNT M6% 1 +strengthen 'streNTn J0% 22A,6A +strengthened 'streNTnd Jc%,Jd% 22A,6A +strengthening 'streNTnIN Jb% 32A,6A +strengthens 'streNTnz Ja% 22A,6A +strengths streNTs Mj% 1 +strenuous 'strenjU@s OA% 3 +strenuously 'strenjU@slI Pu% 4 +strenuousness 'strenjU@sn@s L@% 4 +streptococci ,strept@'k0kaI Kj$ 4 +streptococcus ,strept@'k0k@s Ki$ 4 +streptomycin ,strept@'maIsIn L@$ 4 +stress stres H1%,M7% 16A +stress-mark 'stres-mAk K6% 2 +stress-marks 'stres-mAks Kj% 2 +stressed strest Hc%,Hd% 16A +stresses 'stresIz Ha%,Mj% 26A +stressing 'stresIN Hb% 26A +stretch stretS J1%,M7% 12A,2B,2C,6A,15A,15B,16A,22 +stretched stretSt Jc%,Jd% 12A,2B,2C,6A,15A,15B,16A,22 +stretcher 'stretS@R K6% 2 +stretcher-bearer 'stretS@-be@r@R K6% 4 +stretcher-bearers 'stretS@-be@r@z Kj% 4 +stretcher-parties 'stretS@-pAtIz Kj% 4 +stretcher-party 'stretS@-pAtI K8% 4 +stretchers 'stretS@z Kj% 2 +stretches 'stretSIz Ja%,Mj% 22A,2B,2C,6A,15A,15B,16A,22 +stretching 'stretSIN Jb% 22A,2B,2C,6A,15A,15B,16A,22 +strew stru H0$ 16A,14 +strewed strud Hc$,Hd$ 16A,14 +strewing 'struIN Hb$ 26A,14 +strewn strun Hd% 16A,14 +strews struz Ha$ 16A,14 +strewth struT W-$ 1 +striated straI'eItId OA$ 3 +stricken 'strIk@n Op% 2 +strict strIkt OC% 1 +stricter 'strIkt@R Or% 2 +strictest 'strIktIst Os% 2 +strictly 'strIklI Pu% 2 +strictness 'strIktn@s L@% 2 +stricture 'strIktS@R K6% 2 +strictures 'strIktS@z Kj% 2 +stridden 'strIdn Jd$ 22C,6A +stride straId J5%,K6% 12C,6A +strident 'straIdnt OA% 2 +stridently 'straIdntlI Pu% 3 +strides straIdz Ja%,Kj% 12C,6A +striding 'straIdIN Jb% 22C,6A +stridulate 'strIdjUleIt I2$ 32A +stridulated 'strIdjUleItId Ic$,Id$ 42A +stridulates 'strIdjUleIts Ia$ 32A +stridulating 'strIdjUleItIN Ib$ 42A +stridulation ,strIdjU'leISn M6$ 4 +stridulations ,strIdjU'leISnz Mj$ 4 +strife straIf L@% 1 +strike straIk J5%,K6% 12A,2C,2D,3A,6A,12C,14,15B,16A,22 +strike-leader 'straIk-lid@R K6% 3 +strike-leaders 'straIk-lid@z Kj% 3 +strike-pay 'straIk-peI L@% 2 +strikebound 'straIkbaUnd OA% 2 +strikebreaker 'straIkbreIk@R K6% 3 +strikebreakers 'straIkbreIk@z Kj% 3 +striker 'straIk@R K6% 2 +strikers 'straIk@z Kj% 2 +strikes straIks Ja%,Kj% 12A,2C,2D,3A,6A,12C,14,15B,16A,22 +striking 'straIkIN Jb%,OA% 22A,2C,2D,3A,6A,12C,14,15B,16A,22 +strikingly 'straIkINlI Pu% 3 +string strIN J5%,M6% 12C,6A,15A,15B +stringencies 'strIndZ@nsIz Mj% 3 +stringency 'strIndZ@nsI M8% 3 +stringent 'strIndZ@nt OA% 2 +stringently 'strIndZ@ntlI Pu% 3 +stringier 'strINI@R Or% 3 +stringiest 'strINIIst Os% 3 +stringing 'strININ Jb% 22C,6A,15A,15B +strings strINz Ja%,Mj% 12C,6A,15A,15B +stringy 'strINI OD% 2 +strip strIp J4%,K6% 12A,2C,6A,14,15B,22 +strip-lighting 'strIp-laITIN L@% 3 +strip-poker strIp-'p@Uk@R L@% 3 +strip-show 'strIp-S@U K6% 2 +strip-shows 'strIp-S@Uz Kj% 2 +stripe straIp K6% 1 +striped straIpt OA% 1 +stripes straIps Kj% 1 +stripier 'straIpI@R Or$ 3 +stripiest 'straIpIIst Os$ 3 +stripling 'strIplIN K6% 2 +striplings 'strIplINz Kj% 2 +stripped strIpt Jc%,Jd% 12A,2C,6A,14,15B,22 +stripper 'strIp@R K6% 2 +strippers 'strIp@z Kj% 2 +stripping 'strIpIN Jb% 22A,2C,6A,14,15B,22 +strips strIps Ja%,Kj% 12A,2C,6A,14,15B,22 +striptease strIp'tiz L@% 2 +stripy 'straIpI OD% 2 +strive straIv I5% 12A,3A,4A +striven 'strIvn Id$ 22A,3A,4A +striver 'straIv@R K6$ 2 +strivers 'straIv@z Kj$ 2 +strives straIvz Ia% 12A,3A,4A +striving 'straIvIN Ib% 22A,3A,4A +stroboscope 'str@Ub@sk@Up K6% 3 +stroboscopes 'str@Ub@sk@Ups Kj$ 3 +strode str@Ud Jc% 12C,6A +stroke str@Uk H2%,K6% 16A,15B +stroked str@Ukt Hc%,Hd% 16A,15B +strokes str@Uks Ha%,Kj% 16A,15B +stroking 'str@UkIN Hb% 26A,15B +stroll str@Ul I0%,K6% 12A,2C +strolled str@Uld Ic%,Id% 12A,2C +stroller 'str@Ul@R K6% 2 +strollers 'str@Ul@z Kj$ 2 +strolling 'str@UlIN Ib$ 22A,2C +strolls str@Ulz Ia%,Kj% 12A,2C +strong str0N OC% 1 +strong-arm 'str0N-Am OA% 2 +strong-boned str0N-'b@Und OA% 2 +strong-minded str0N-'maIndId OA% 3 +strongbox 'str0Nb0ks K7% 2 +strongboxes 'str0Nb0ksIz Kj% 3 +stronger 'str0Ng@R Or% 2 +strongest 'str0NgIst Os% 2 +stronghold 'str0Nh@Uld K6% 2 +strongholds 'str0Nh@Uldz Kj% 2 +strongly 'str0NlI Pu% 2 +strongroom 'str0Nrum K6% 2 +strongrooms 'str0Nrumz Kj% 2 +strontium 'str0ntI@m L@% 3 +strop str0p H4$,K6$ 16A +strophe 'str@UfI K6$ 2 +strophes 'str@UfIz Kj$ 2 +stropped str0pt Hc$,Hd$ 16A +stropping 'str0pIN Hb$ 26A +stroppy 'str0pI OA% 2 +strops str0ps Ha$,Kj$ 16A +strove str@Uv Ic% 12A,3A,4A +struck strVk Jc%,Jd%,Ot% 12A,2C,2D,3A,6A,12C,14,15B,16A,22 +structural 'strVktS@r@l OA% 3 +structurally 'strVktS@r@lI Pu% 4 +structure 'strVktS@R M6% 2 +structured 'strVktS@d OA% 2 +structures 'strVktS@z Mj% 2 +strudel 'strudl M6$ 2 +strudels 'strudlz Mj$ 2 +struggle 'strVgl I2%,K6% 22A,2B,3A,4A +struggled 'strVgld Ic%,Id% 22A,2B,3A,4A +struggles 'strVglz Ia%,Kj% 22A,2B,3A,4A +struggling 'strVglIN Ib% 22A,2B,3A,4A +strum strVm J4%,K6% 12A,2B,2C,3A,6A +strummed strVmd Jc%,Jd% 12A,2B,2C,3A,6A +strumming 'strVmIN Jb% 22A,2B,2C,3A,6A +strumpet 'strVmpIt K6$ 2 +strumpets 'strVmpIts Kj$ 2 +strums strVmz Ja%,Kj% 12A,2B,2C,3A,6A +strung strVN Jc%,Jd% 12C,6A,15A,15B +strut strVt I4%,K6% 12A,2C +struth struT W-$ 1 +struts strVts Ia%,Kj% 12A,2C +strutted 'strVtId Ic%,Id% 22A,2C +strutting 'strVtIN Ib% 22A,2C +strychnine 'strIknin L@% 2 +stub stVb H4%,K6% 16A,15B +stubbed stVbd Hc%,Hd% 16A,15B +stubbier 'stVbI@R Or$ 3 +stubbiest 'stVbIIst Os$ 3 +stubbing 'stVbIN Hb% 26A,15B +stubble 'stVbl L@% 2 +stubblier 'stVblI@R Or$ 3 +stubbliest 'stVblIIst Os$ 3 +stubbly 'stVblI OD% 2 +stubborn 'stVb@n OA% 2 +stubbornly 'stVb@nlI Pu% 3 +stubbornness 'stVb@n+n@s L@% 3 +stubby 'stVbI OD% 2 +stubs stVbz Ha%,Kj% 16A,15B +stucco 'stVk@U H0$,M6% 2 +stuccoed 'stVk@Ud Hc$,Hd% 2 +stuccoes 'stVk@Uz Kj$ 2 +stuccoing 'stVk@UIN Hb$ 3 +stuccos 'stVk@Uz Ha$,Mj$ 2 +stuck stVk Jc%,Jd% 12A,2C,3A,6A,15A,15B +stuck-up ,stVk-'Vp OA% 2 +stud stVd H4$,K6% 1 +stud-farm 'stVd-fAm K6% 2 +stud-farms 'stVd-fAmz Kj% 2 +stud-mare 'stVd-me@R K6% 2 +stud-mares 'stVd-me@z Kj% 2 +studbook 'stVdbUk K6$ 2 +studbooks 'stVdbUks Kj$ 2 +studded 'stVdId Hc$,Hd% 2 +studding 'stVdIN Hb$ 2 +student 'stjudnt K6% 2 +students 'stjudnts Kj% 2 +studied 'stVdId Jc%,Jd%,OA% 22A,2B,4A,6A,8,15A +studies 'stVdIz Ja%,Mj% 22A,2B,4A,6A,8,15A +studio 'stjudI@U K6% 3 +studios 'stjudI@Uz Kj% 3 +studious 'stjudI@s OA% 3 +studiously 'stjudI@slI Pu% 4 +studiousness 'stjudI@sn@s L@% 4 +studs stVdz Ha$,Kj% 1 +study 'stVdI J3%,M8% 22A,2B,4A,6A,8,15A +studying 'stVdIIN Jb% 32A,2B,4A,6A,8,15A +stuff stVf H0%,M6% 12A,6A,14,15B +stuffed stVft Hc%,Hd% 12A,6A,14,15B +stuffier 'stVfI@R Or% 3 +stuffiest 'stVfIIst Os% 3 +stuffily 'stVfIlI Pu% 3 +stuffiness 'stVfIn@s L@% 3 +stuffing 'stVfIN Hb%,L@% 22A,6A,14,15B +stuffs stVfs Ha%,Mj$ 12A,6A,14,15B +stuffy 'stVfI OD% 2 +stultification ,stVltIfI'keISn M6$ 5 +stultifications ,stVltIfI'keISnz Mj$ 5 +stultified 'stVltIfaId Hc$,Hd$ 36A +stultifies 'stVltIfaIz Ha$ 36A +stultify 'stVltIfaI H3$ 36A +stultifying 'stVltIfaIIN Hb$ 46A +stumble 'stVmbl I2%,K6% 22A,2C,3A +stumbled 'stVmbld Ic%,Id% 22A,2C,3A +stumbles 'stVmblz Ia%,Kj% 22A,2C,3A +stumbling 'stVmblIN Ib% 22A,2C,3A +stumbling-block 'stVmblIN-bl0k K6% 3 +stumbling-blocks 'stVmblIN-bl0ks Kj% 3 +stump stVmp J0%,K6% 12C,6A,15B +stumped stVmpt Jc%,Jd% 12C,6A,15B +stumper 'stVmp@R K6% 2 +stumpers 'stVmp@z Kj% 2 +stumpier 'stVmpI@R Or$ 3 +stumpiest 'stVmpIIst Os$ 3 +stumping 'stVmpIN Jb% 22C,6A,15B +stumps stVmps Ja%,Kj% 12C,6A,15B +stumpy 'stVmpI OD% 2 +stun stVn H4% 16A +stung stVg Jc%,Jd% 12A,6A,14,15A +stunk stVNk Jc$,Jd$ 12A,3A,15B +stunned stVnd Hc%,Hd% 16A +stunner 'stVn@R K6% 2 +stunners 'stVn@z Kj% 2 +stunning 'stVnIN Hb%,OA% 26A +stunningly 'stVnINlI Pu% 3 +stuns stVnz Ha% 16A +stunt stVnt H0%,K6% 16A +stunted 'stVntId Hc%,Hd% 26A +stunting 'stVntIN Hb$ 26A +stunts stVnts Ha$,Kj% 16A +stupefaction ,stjupI'f&kSn L@% 4 +stupefied 'stjupIfaId Hc$,Hd% 36A +stupefies 'stjupIfaIz Ha$ 36A +stupefy 'stjupIfaI H3$ 36A +stupefying 'stjupIfaIIN Hb% 46A +stupendous stju'pend@s OA% 3 +stupendously stju'pend@slI Pu% 4 +stupid 'stjupId Ki%,OA% 2 +stupidities stju'pIdItIz Mj% 4 +stupidity stju'pIdItI M8% 4 +stupidly 'stjupIdlI Pu% 3 +stupified 'stjupIfaId Hc$,Hd% 36A +stupifies 'stjupIfaIz Ha$ 36A +stupify 'stjupIfaI H3$ 36A +stupifying 'stjupIfaIIN Hb$,OA% 46A +stupor 'stjup@R M6% 2 +stupors 'stjup@z Mj$ 2 +sturdier 'st3dI@R Or% 3 +sturdiest 'st3dIIst Os% 3 +sturdily 'st3dIlI Pu% 3 +sturdiness 'st3dIn@s L@% 3 +sturdy 'st3dI OD% 2 +sturgeon 'st3dZ@n M6$ 2 +sturgeons 'st3dZ@nz Mj$ 2 +stutter 'stVt@R J0%,K6% 2 +stuttered 'stVt@d Jc%,Jd% 2 +stutterer 'stVt@r@R K6% 3 +stutterers 'stVt@r@z Kj% 3 +stuttering 'stVt@rIN Jb% 3 +stutteringly 'stVt@rINlI Pu% 4 +stutters 'stVt@z Ja%,Kj% 2 +sty staI K8% 1 +stye staI K6% 1 +styes staIz Kj% 1 +style staIl H2%,M6% 16A +styled staIld Hc%,Hd% 16A +styles staIlz Ha%,Mj% 16A +styling 'staIlIN Hb% 26A +stylish 'staIlIS OA% 2 +stylishly 'staIlISlI Pu% 3 +stylishness 'staIlISn@s L@% 3 +stylist 'staIlIst K6% 2 +stylistic staI'lIstIk OA% 3 +stylistically staI'lIstIklI Pu% 4 +stylists 'staIlIsts Kj% 2 +stylization ,staI@laI'zeISn M6% 4 +stylizations ,staI@laI'zeISnz Mj$ 4 +stylize 'staI@laIz H2% 2 +stylized 'staI@laIzd Hc%,Hd% 2 +stylizes 'staI@laIzIz Ha$ 3 +stylizing 'staI@laIzIN Hb$ 3 +stylus 'staIl@s K7% 2 +styluses 'staIl@sIz Kj% 3 +stymie 'staImI H5%,K6$ 26A +stymied 'staImId Hc%,Hd% 26A +stymies 'staImIz Ha%,Kj$ 26A +stymying 'staImIIN Hb$ 36A +styptic 'stIptIk K6$,OA% 2 +styptics 'stIptIks Kj$ 2 +suasion 'sweIZn L@$ 2 +suave swAv OA% 1 +suavely 'swAvlI Pu% 2 +suavity 'swAvItI L@% 3 +sub sVb J4%,K6% 12A,3A,6A +sub judice ,sVb 'dZudIsI OA% 4 +sub rosa ,sVb 'r@Uz@ Pu$ 3 +sub- sVb- U-% 1 +subaltern 'sVblt@n K6% 3 +subalterns 'sVblt@nz Kj% 3 +subatomic ,sVb@'t0mIk OA% 4 +subbed sVbd Jc%,Jd% 12A,3A,6A +subbing 'sVbIN Jb% 22A,3A,6A +subcommittee 'sVbk@mItI K6% 4 +subcommittees 'sVbk@mItIz Kj% 4 +subconscious ,sVb'k0nS@s Ki%,OA% 3 +subconsciously ,sVb'k0nS@slI Pu% 4 +subconsciousness ,sVb'k0nS@sn@s L@% 4 +subcontinent ,sVb'k0ntIn@nt K6% 4 +subcontinents ,sVb'k0ntIn@nts Kj% 4 +subcontract ,sVb'k0ntr&kt K6$ 3 +subcontract ,sVbk@n'tr&kt J0% 32A,6A +subcontracted ,sVbk@n'tr&ktId Jc%,Jd% 42A,6A +subcontracting ,sVbk@n'tr&ktIN Jb% 42A,6A +subcontractor ,sVbk@n'tr&kt@R K6% 4 +subcontractors ,sVbk@n'tr&kt@z Kj% 4 +subcontracts ,sVb'k0ntr&kts Kj$ 3 +subcontracts ,sVbk@n'tr&kts Ja% 32A,6A +subcutaneous ,sVbkju'teInI@s OA$ 5 +subdivide ,sVbdI'vaId J2% 32A,6A +subdivided ,sVbdI'vaIdId Jc%,Jd% 42A,6A +subdivides ,sVbdI'vaIdz Ja% 32A,6A +subdividing ,sVbdI'vaIdIN Jb% 42A,6A +subdivision ,sVbdI'vIZn M6% 4 +subdivisions ,sVbdI'vIZnz Mj% 4 +subdue s@b'dju H2% 26A +subdued s@b'djud Hc%,Hd% 26A +subdues s@b'djuz Ha% 26A +subduing s@b'djuIN Hb% 36A +subedit sVb'edIt H0% 3 +subedited sVb'edItId Hc%,Hd% 4 +subediting sVb'edItIN Hb% 4 +subeditor sVb'edIt@R K6% 4 +subeditors sVb'edIt@z Kj% 4 +subedits sVb'edIts Ha% 3 +subfusc 'sVbfVsk OA$ 2 +subgroup 'sVbgrup K6% 2 +subgroups 'sVbgrups Kj% 2 +subheading 'sVbhedIN K6% 3 +subheadings 'sVbhedINz Kj% 3 +subhuman ,sVb'hjum@n OA% 3 +subject 'sVbdZIkt K6%,OA% 2 +subject s@b'dZekt H0% 214 +subjected s@b'dZektId Hc%,Hd% 314 +subjecting s@b'dZektIN Hb% 314 +subjection s@b'dZekSn L@% 3 +subjective s@b'dZektIv OA% 3 +subjectively s@b'dZektIvlI Pu% 4 +subjectivity ,sVbdZek'tIvItI L@% 5 +subjects 'sVbdZIkts Kj% 2 +subjects s@b'dZekts Ha% 214 +subjoin sVb'dZoIn H0$ 26A +subjoined sVb'dZoInd Hc$,Hd$ 26A +subjoining sVb'dZoInIN Hb$ 36A +subjoins sVb'dZoInz Ha$ 26A +subjugate 'sVbdZUgeIt H2% 36A +subjugated 'sVbdZUgeItId Hc%,Hd% 46A +subjugates 'sVbdZUgeIts Ha% 36A +subjugating 'sVbdZUgeItIN Hb% 46A +subjugation ,sVbdZU'geISn M6% 4 +subjugations ,sVbdZU'geISnz Mj% 4 +subjunctive s@b'dZVNktIv M6%,OA% 3 +subjunctives s@b'dZVNktIvz Mj% 3 +sublease ,sVb'lis J2$,K6$ 22A,6A +subleased ,sVb'list Jc$,Jd$ 22A,6A +subleases ,sVb'lisIz Ja$,Kj$ 32A,6A +subleasing ,sVb'lisIN Jb$ 32A,6A +sublet ,sVb'let J5%,Jc%,Jd% 22A,6A +sublets ,sVb'lets Ja% 22A,6A +subletting ,sVb'letIN Jb% 32A,6A +sublieutenant ,sVbl@'ten@nt K6% 4 +sublieutenants ,sVbl@'ten@nts Kj% 4 +sublimate 'sVblImeIt H2%,K6$,OA$ 36A +sublimated 'sVblImeItId Hc%,Hd% 46A +sublimates 'sVblImeIts Ha%,Kj$ 36A +sublimating 'sVblImeItIN Hb% 46A +sublimation ,sVblI'meISn M6% 4 +sublimations ,sVblI'meISnz Mj$ 4 +sublime s@'blaIm Ki%,OA% 2 +sublimely s@'blaImlI Pu% 3 +subliminal ,sVb'lImInl OA% 4 +sublimity s@'blImItI L@$ 4 +submarine ,sVbm@'rin K6%,OA$ 3 +submariner sVb'm&rIn@R K6% 4 +submariners sVb'm&rIn@z Kj% 4 +submarines ,sVbm@'rinz Kj% 3 +submerge s@b'm3dZ J2% 22A,6A +submerged s@b'm3dZd Jc%,Jd%,OA% 22A,6A +submergence s@b'm3dZ@ns L@$ 3 +submerges s@b'm3dZIz Ja% 32A,6A +submerging s@b'm3dZIN Jb% 32A,6A +submersible s@b'm3s@bl OA% 4 +submersion s@b'm3Sn L@% 3 +submission s@b'mISn M6% 3 +submissions s@b'mISnz Mj% 3 +submissive s@b'mIsIv OA% 3 +submissively s@b'mIsIvlI Pu% 4 +submissiveness s@b'mIsIvn@s L@% 4 +submit s@b'mIt J4% 23A,6A,9,14 +submits s@b'mIts Ja% 23A,6A,9,14 +submitted s@b'mItId Jc%,Jd% 33A,6A,9,14 +submitting s@b'mItIN Jb% 33A,6A,9,14 +subnormal ,sVb'nOml K6$,OA% 3 +subnormals ,sVb'nOmlz Kj$ 3 +suborbital ,sVb'ObItl OA$ 4 +subordinate s@'bOdIn@t K6%,OA% 4 +subordinate s@'bOdIneIt H2% 46A,14 +subordinated s@'bOdIneItId Hc%,Hd% 56A,14 +subordinates s@'bOdIn@ts Kj% 4 +subordinates s@'bOdIneIts Ha% 46A,14 +subordinating s@'bOdIneItIN Hb% 56A,14 +subordination s@,bOdI'neISn M6% 5 +subordinations s@,bOdI'neISnz Mj$ 5 +subordinative s@'bOdIn@tIv OA$ 5 +suborn s@'bOn H0$ 26A +subornation ,sVbO'neISn L@$ 4 +suborned s@'bOnd Hc$,Hd$ 26A +suborning s@'bOnIN Hb$ 36A +suborns s@'bOnz Ha$ 26A +subpoena s@'pin@ H0%,K6% 36A +subpoenaed s@'pin@d Hc$,Hd$ 36A +subpoenaing s@'pin@rIN Hb$ 46A +subpoenas s@'pin@z Ha$,Kj$ 36A +subs sVbz Ja%,Kj% 12A,3A,6A +subscribe s@b'skraIb J2% 22A,3A,6A,14 +subscribed s@b'skraIbd Jc%,Jd% 22A,3A,6A,14 +subscriber s@b'skraIb@R K6% 3 +subscribers s@b'skraIb@z Kj% 3 +subscribes s@b'skraIbz Ja% 22A,3A,6A,14 +subscribing s@b'skraIbIN Jb% 32A,3A,6A,14 +subscript 'sVbskrIpt K6% 2 +subscription s@b'skrIpSn M6% 3 +subscriptions s@b'skrIpSnz Mj% 3 +subscripts 'sVbskrIpts Kj% 2 +subsection 'sVbsekSn K6% 3 +subsections 'sVbsekSnz Kj% 3 +subsequent 'sVbsIkw@nt OA% 3 +subsequently 'sVbsIkw@ntlI Pu% 4 +subserve s@b's3v H2$ 26A +subserved s@b's3vd Hc$,Hd$ 26A +subserves s@b's3vz Ha$ 26A +subservience s@b's3vI@ns L@% 4 +subservient s@b's3vI@nt OA% 4 +subserviently s@b's3vI@ntlI Pu% 5 +subserving s@b's3vIN Hb$ 36A +subside s@b'saId I2% 22A +subsided s@b'saIdId Ic%,Id% 32A +subsidence s@b'saIdns M6% 3 +subsidences s@b'saIdnsIz Mj$ 4 +subsides s@b'saIdz Ia% 22A +subsidiaries s@b'sIdI@rIz Kj% 4 +subsidiary s@b'sIdI@rI K8%,OA% 4 +subsidies 'sVbs@dIz Kj% 3 +subsiding s@b'saIdIN Ib% 32A +subsidization ,sVbsIdaI'zeISn L@$ 5 +subsidize 'sVbsIdaIz H2% 36A +subsidized 'sVbsIdaIzd Hc%,Hd% 36A +subsidizes 'sVbsIdaIzIz Ha% 46A +subsidizing 'sVbsIdaIzIN Hb% 46A +subsidy 'sVbs@dI K8% 3 +subsist s@b'sIst I0% 22A,3A +subsisted s@b'sIstId Ic%,Id% 32A,3A +subsistence s@b'sIst@ns L@% 3 +subsisting s@b'sIstIN Ib% 32A,3A +subsists s@b'sIsts Ia% 22A,3A +subsoil 'sVbsoIl L@% 2 +subsonic ,sVb's0nIk OA% 3 +substance 'sVbst@ns M6% 2 +substances 'sVbst@nsIz Mj% 3 +substandard ,sVb'st&nd@d OA% 3 +substantial s@b'st&nSl OA% 3 +substantially s@b'st&nS@lI Pu% 4 +substantiate s@b'st&nSIeIt H2% 46A +substantiated s@b'st&nSIeItId Hc%,Hd% 56A +substantiates s@b'st&nSIeIts Ha% 46A +substantiating s@b'st&nSIeItIN Hb% 56A +substantiation s@b,st&nSI'eISn M6% 5 +substantiations s@b,st&nSI'eISnz Mj$ 5 +substantival ,sVbst@n'taIvl OA$ 4 +substantive 'sVbst@ntIv K6$,OA$ 3 +substantives 'sVbst@ntIvz Kj$ 3 +substation 'sVbsteISn K6% 3 +substations 'sVbsteISnz Kj% 3 +substitute 'sVbstItjut J2%,K6% 33A,6A,14 +substituted 'sVbstItjutId Jc%,Jd% 43A,6A,14 +substitutes 'sVbstItjuts Ja%,Kj% 33A,6A,14 +substituting 'sVbstItjutIN Jb% 43A,6A,14 +substitution ,sVbstI'tjuSn M6% 4 +substitutions ,sVbstI'tjuSnz Mj% 4 +substrata ,sVb'strAt@ Kj$ 3 +substrate 'sVbstreIt K6$ 2 +substrates 'sVbstreIts Kj$ 2 +substratum ,sVb'strAt@m Ki$ 3 +substructure 'sVbstrVktS@R K6% 3 +substructures 'sVbstrVktS@z Kj% 3 +subsume s@b'sjum H2% 26A,14 +subsumed s@b'sjumd Hc%,Hd% 26A,14 +subsumes s@b'sjumz Ha% 26A,14 +subsuming s@b'sjumIN Hb% 36A,14 +subtend s@b'tend H0$ 2 +subtended s@b'tendId Hc$,Hd$ 3 +subtending s@b'tendIN Hb$ 3 +subtends s@b'tendz Ha$ 2 +subterfuge 'sVbt@fjudZ M6% 3 +subterfuges 'sVbt@fjudZIz Mj% 4 +subterranean ,sVbt@'reInI@n OA% 5 +subtitle 'sVbtaItl K6% 3 +subtitles 'sVbtaItlz Kj% 3 +subtle 'sVtl OB% 2 +subtler 'sVtl@R Or% 2 +subtlest 'sVtlIst Os% 2 +subtleties 'sVtltIz Mj% 3 +subtlety 'sVtltI M8% 3 +subtly 'sVtlI Pu% 2 +subtopia ,sVb't@UpI@ L@$ 4 +subtract s@b'tr&kt H0% 26A,14 +subtracted s@b'tr&ktId Hc%,Hd% 36A,14 +subtracting s@b'tr&ktIN Hb% 36A,14 +subtraction s@b'tr&kSn M6% 3 +subtractions s@b'tr&kSnz Mj% 3 +subtracts s@b'tr&kts Ha% 26A,14 +subtropical ,sVb'tr0pIkl OA% 4 +suburb 'sVb3b K6% 2 +suburban s@'b3b@n OA% 3 +suburbia s@'b3bI@ L@% 4 +suburbs 'sVb3bz Kj% 2 +subvention s@b'venSn K6% 3 +subventions s@b'venSnz Kj% 3 +subversion s@b'v3Sn L@% 3 +subversive s@b'v3sIv K6%,OA% 3 +subversives s@b'v3sIvz Kj% 3 +subvert sVb'v3t H0% 26A +subverted sVb'v3tId Hc%,Hd% 36A +subverting sVb'v3tIN Hb% 36A +subverts sVb'v3ts Ha% 26A +subway 'sVbweI K6% 2 +subways 'sVbweIz Kj% 2 +succeed s@k'sid J0% 22A,3A,6A,16B +succeeded s@k'sidId Jc%,Jd% 32A,3A,6A,16B +succeeding s@k'sidIN Jb% 32A,3A,6A,16B +succeeds s@k'sidz Ja% 22A,3A,6A,16B +success s@k'ses M7% 2 +successes s@k'sesIz Mj% 3 +successful s@k'sesf@l OA% 3 +successfully s@k'sesf@lI Pu% 4 +succession s@k'seSn M6% 3 +successions s@k'seSnz Mj$ 3 +successive s@k'sesIv OA% 3 +successively s@k'sesIvlI Pu% 4 +successor s@k'ses@R K6% 3 +successors s@k'ses@z Kj% 3 +succinct s@k'sINkt OA% 2 +succinctly s@k'sINktlI Pu% 3 +succinctness s@k'sINktn@s L@% 3 +succour 'sVk@R H0%,L@% 26A +succoured 'sVk@d Hc%,Hd% 26A +succouring 'sVk@rIN Hb% 36A +succours 'sVk@z Ha% 26A +succubus 'sVkjUb@s K7$ 3 +succubuses 'sVkjUb@sIz Kj$ 4 +succulence 'sVkjUl@ns L@% 3 +succulent 'sVkjUl@nt K6%,OA% 3 +succulents 'sVkjUl@nts Kj% 3 +succumb s@'kVm I0% 22A,3A +succumbed s@'kVmd Ic%,Id% 22A,3A +succumbing s@'kVmIN Ib% 32A,3A +succumbs s@'kVmz Ia% 22A,3A +such sVtS OA*,Qx* 1 +suchlike 'sVtSlaIk OA% 2 +suck sVk J0%,K6% 12C,6A,15A,15B,22 +sucked sVkt Jc%,Jd% 12C,6A,15A,15B,22 +sucker 'sVk@R K6% 2 +suckers 'sVk@z Kj% 2 +sucking 'sVkIN Jb% 22C,6A,15A,15B,22 +sucking-pig 'sVkIN-pIg M6% 3 +sucking-pigs 'sVkIN-pIgz Mj% 3 +suckle 'sVkl H2% 26A +suckled 'sVkld Hc%,Hd% 26A +suckles 'sVklz Ha% 26A +suckling 'sVklIN Hb%,K6$ 26A +sucklings 'sVklINz Kj$ 2 +sucks sVks Ja%,Kj% 12C,6A,15A,15B,22 +suction 'sVkSn L@% 2 +sudden 'sVdn Ki%,OA% 2 +suddenly 'sVdnlI Pu% 3 +suddenness 'sVdn+n@s L@% 3 +suds sVdz Kj% 1 +sue sju J2% 13A,6A,14 +sued sjud Jc%,Jd% 13A,6A,14 +suede sweId L@% 1 +sues sjuz Ja% 13A,6A,14 +suet 'suIt L@% 2 +suety 'suItI OA$ 3 +suffer 'sVf@R J0% 22A,3A,6A,17 +sufferable 'sVf@r@bl OA% 4 +sufferance 'sVf@r@ns L@% 3 +suffered 'sVf@d Jc%,Jd% 22A,3A,6A,17 +sufferer 'sVf@r@R K6% 3 +sufferers 'sVf@r@z Kj% 3 +suffering 'sVf@rIN Jb%,M6% 32A,3A,6A,17 +sufferings 'sVf@rINz Mj% 3 +suffers 'sVf@z Ja% 22A,3A,6A,17 +suffice s@'faIs J2% 22A,3A,6A +sufficed s@'faIst Jc%,Jd% 22A,3A,6A +suffices s@'faIsIz Ja% 32A,3A,6A +sufficiency s@'fIS@nsI L@% 4 +sufficient s@'fISnt OA% 3 +sufficiently s@'fISntlI Pu% 4 +sufficing s@'faIsIN Jb% 32A,3A,6A +suffix 'sVfIks K7% 2 +suffixes 'sVfIksIz Kj% 3 +suffocate 'sVf@keIt J2% 32A,2C,6A +suffocated 'sVf@keItId Jc%,Jd% 42A,2C,6A +suffocates 'sVf@keIts Ja% 32A,2C,6A +suffocating 'sVf@keItIN Jb% 42A,2C,6A +suffocation ,sVf@'keISn L@% 4 +suffragan 'sVfr@g@n K6$ 3 +suffragans 'sVfr@g@nz Kj$ 3 +suffrage 'sVfrIdZ M6% 2 +suffrages 'sVfrIdZIz Mj$ 3 +suffragette ,sVfr@'dZet K6% 3 +suffragettes ,sVfr@'dZets Kj% 3 +suffuse s@'fjuz H2% 26A +suffused s@'fjuzd Hc%,Hd% 26A +suffuses s@'fjuzIz Ha% 36A +suffusing s@'fjuzIN Hb% 36A +suffusion s@'fjuZn L@% 3 +sugar 'SUg@R H0%,M6% 26A +sugar-beet 'SUg@-bit M9% 3 +sugar-candies ,SUg@-'k&ndIz Mj$ 4 +sugar-candy ,SUg@-'k&ndI M8% 4 +sugar-cane 'SUg@-keIn L@% 3 +sugar-coated 'SUg@-k@UtId OA% 4 +sugar-daddies 'SUg@-d&dIz Kj% 4 +sugar-daddy 'SUg@-d&dI K8% 4 +sugar-loaf 'SUg@-l@Uf L@% 3 +sugar-refineries 'SUg@-rIfaIn@rIz Kj% 6 +sugar-refinery 'SUg@-rIfaIn@rI K8% 6 +sugar-tongs 'SUg@-t0Nz Kj% 3 +sugared 'SUg@d Hc%,Hd% 26A +sugarier 'SUg@rI@R Or% 4 +sugariest 'SUg@rIIst Os% 4 +sugaring 'SUg@rIN Hb% 36A +sugarlump 'SUg@lVmp K6% 3 +sugarlumps 'SUg@lVmps Kj% 3 +sugars 'SUg@z Ha%,Mj% 26A +sugary 'SUg@rI OD% 3 +suggest s@'dZest H0% 26A,6C,9,10,14 +suggested s@'dZestId Hc%,Hd% 36A,6C,9,10,14 +suggestibility s@,dZest@'bIlItI L@% 6 +suggestible s@'dZest@bl OA% 4 +suggesting s@'dZestIN Hb% 36A,6C,9,10,14 +suggestion s@'dZestS@n M6% 3 +suggestions s@'dZestS@nz Mj% 3 +suggestive s@'dZestIv OA% 3 +suggestively s@'dZestIvlI Pu% 4 +suggests s@'dZests Ha% 26A,6C,9,10,14 +suicidal ,sjuI'saIdl OA% 4 +suicide 'sjuIsaId M6% 3 +suicides 'sjuIsaIdz Mj% 3 +suing 'sjuIN Jb% 23A,6A,14 +suit sut J0%,K6% 12A,6A,6B +suitability ,sut@'bIlItI L@% 5 +suitable 'sut@bl OA% 3 +suitableness 'sut@bln@s L@% 4 +suitably 'sut@blI Pu% 3 +suitcase 'sutkeIs K6% 2 +suitcases 'sutkeIsIz Kj% 3 +suite swit K6% 1 +suited 'sutId Jc%,Jd% 22A,6A,6B +suites swits Kj% 1 +suiting 'sutIN Jb%,L@% 22A,6A,6B +suitor 'sut@R K6% 2 +suitors 'sut@z Kj% 2 +suits suts Ja%,Kj% 12A,6A,6B +sulk sVlk I0%,K6% 12A,2C +sulked sVlkt Ic%,Id% 12A,2C +sulkier 'sVlkI@R Or% 3 +sulkies 'sVlkIz Kj$ 2 +sulkiest 'sVlkIIst Os% 3 +sulkily 'sVlkIlI Pu% 3 +sulkiness 'sVlkIn@s L@% 3 +sulking 'sVlkIN Ib% 22A,2C +sulks sVlks Ia%,Kj% 12A,2C +sulky 'sVlkI K8$,OD% 2 +sullen 'sVl@n OA% 2 +sullenly 'sVl@nlI Pu% 3 +sullenness 'sVl@n+n@s L@% 3 +sullied 'sVlId Hc%,Hd% 26A +sullies 'sVlIz Ha% 26A +sully 'sVlI H3% 26A +sullying 'sVlIIN Hb% 36A +sulpha 'sVlf@ L@$ 2 +sulphate 'sVlfeIt M6% 2 +sulphates 'sVlfeIts Mj% 2 +sulphide 'sVlfaId M6% 2 +sulphides 'sVlfaIdz Mj% 2 +sulphonamides sVl'f0n@maIdz Kj$ 4 +sulphur 'sVlf@R L@% 2 +sulphuretted 'sVlfjUretId OA$ 4 +sulphuric sVl'fjUrIk OA% 3 +sulphurous 'sVlf@r@s OA% 3 +sultan 'sVlt@n K6% 2 +sultana sVl'tAn@ K6% 3 +sultanas sVl'tAn@z Kj% 3 +sultanate 'sVlt@neIt K6% 3 +sultanates 'sVlt@neIts Kj% 3 +sultans 'sVlt@nz Kj% 2 +sultrier 'sVltrI@R Or% 3 +sultriest 'sVltrIIst Os% 3 +sultrily 'sVltrIlI Pu% 3 +sultriness 'sVltrIn@s L@% 3 +sultry 'sVltrI OD% 2 +sum sVm J4%,K6% 12C,15B +sumac 'Sum&k L@$ 2 +sumach 'Sum&k L@$ 2 +summaries 'sVm@rIz Kj% 3 +summarily 'sVm@r@lI Pu% 4 +summarize 'sVm@raIz H2% 36A +summarized 'sVm@raIzd Hc%,Hd% 36A +summarizes 'sVm@raIzIz Ha% 46A +summarizing 'sVm@raIzIN Hb% 46A +summary 'sVm@rI K8%,OA% 3 +summat 'sVm@t Qx$ 2 +summation s@'meISn K6% 3 +summations s@'meISnz Kj$ 3 +summed sVmd Jc%,Jd% 12C,15B +summer 'sVm@R I0$,M6% 22C +summered 'sVm@d Ic$,Id$ 22C +summerhouse 'sVm@haUs K6% 3 +summerhouses 'sVm@haUzIz Kj% 4 +summerier 'sVm@rI@R Or$ 4 +summeriest 'sVm@rIIst Os$ 4 +summering 'sVm@rIN Ib$ 32C +summers 'sVm@z Ia$,Mj% 22C +summertime 'sVm@taIm M6% 3 +summertimes 'sVm@taImz Mj$ 3 +summery 'sVm@rI OD% 3 +summing 'sVmIN Jb% 22C,15B +summing-up ,sVmIN-'Vp K6% 3 +summing-ups ,sVmIN-'Vps Kj$ 3 +summit 'sVmIt K6% 2 +summits 'sVmIts Kj% 2 +summon 'sVm@n H0% 26A,14,15B,17 +summoned 'sVm@nd Hc%,Hd% 26A,14,15B,17 +summoning 'sVm@nIN Hb% 36A,14,15B,17 +summons 'sVm@nz H1%,Ha%,K7% 26A,14,15B,17 +summonsed 'sVm@nzd Hc%,Hd% 26A +summonses 'sVm@nzIz Ha%,Kj% 36A +summonsing 'sVm@nzIN Hb% 36A +sump sVmp K6% 1 +sumps sVmps Kj% 1 +sumpter 'sVmpt@R K6$ 2 +sumpters 'sVmpt@z Kj$ 2 +sumptuary 'sVmptjU@rI OA$ 4 +sumptuous 'sVmptSU@s OA% 3 +sumptuously 'sVmptSU@slI Pu% 4 +sumptuousness 'sVmptSU@sn@s L@% 4 +sums sVmz Ja%,Kj% 12C,15B +sun sVn H4%,M6% 16A +sun-drenched 'sVn-drentSt OA% 2 +sun-dried 'sVn-draId OA% 2 +sun-god 'sVn-g0d K6$ 2 +sun-gods 'sVn-g0dz Kj$ 2 +sun-helmet 'sVn-helmIt K6$ 3 +sun-helmets 'sVn-helmIts Kj$ 3 +sun-lounge 'sVn-laUndZ K6% 2 +sun-lounges 'sVn-laUndZIz Kj% 3 +sun-parlour 'sVn-pAl@R K6$ 3 +sun-parlours 'sVn-pAl@z Kj$ 3 +sun-porch 'sVn-pOtS K7% 2 +sun-porches 'sVn-pOtSIz Kj$ 3 +sun-up 'sVn-Vp L@% 2 +sun-visor 'sVn-vaIz@R K6% 3 +sun-visors 'sVn-vaIz@z Kj% 3 +sun-worship 'sVn-w3SIp L@% 3 +sunbaked 'sVnbeIkt OA% 2 +sunbathe 'sVnbeID I2%,Ki% 2 +sunbathed 'sVnbeIDd Ic%,Id% 2 +sunbathes 'sVnbeIDz Ia% 2 +sunbathing 'sVnbeIDIN Ib% 3 +sunbeam 'sVnbim K6% 2 +sunbeams 'sVnbimz Kj% 2 +sunblind 'sVnblaInd K6$ 2 +sunblinds 'sVnblaIndz Kj$ 2 +sunbonnet 'sVnb0nIt K6% 3 +sunbonnets 'sVnb0nIts Kj% 3 +sunburn 'sVnb3n M6% 2 +sunburned 'sVnb3nd OA% 2 +sunburns 'sVnb3nz Mj% 2 +sunburnt 'sVnb3nt OA% 2 +sunburst 'sVnb3st K6% 2 +sunbursts 'sVnb3sts Kj% 2 +sundae 'sVndeI K6$ 2 +sundaes 'sVndeIz Kj$ 2 +sunder 'sVnd@R H0%,L@% 26A +sundered 'sVnd@d Hc%,Hd% 26A +sundering 'sVnd@rIN Hb% 36A +sunders 'sVnd@z Ha% 26A +sundial 'sVndaI@l K6% 3 +sundials 'sVndaI@lz Kj% 3 +sundown 'sVndaUn L@% 2 +sundowner 'sVndaUn@R K6$ 3 +sundowners 'sVndaUn@z Kj$ 3 +sundries 'sVndrIz Kj% 2 +sundry 'sVndrI OA% 2 +sunfish 'sVnfIS K9$ 2 +sunfishes 'sVnfISIz Kj$ 3 +sunflower 'sVnflaU@R K6% 3 +sunflowers 'sVnflaU@z Kj% 3 +sung sVN Jd% 12A,2C,3A,6A,12B,13B,15A +sunglasses 'sVngl&sIz Kj% 3 +sunhat 'sVnh&t K6% 2 +sunhats 'sVnh&ts Kj% 2 +sunk sVNk Jd% 12A,2C,3A,6A,14,15A +sunken 'sVNk@n Jd% 22A,2C,3A,6A,14,15A +sunlamp 'sVnl&mp K6% 2 +sunlamps 'sVnl&mps Kj% 2 +sunless 'sVnl@s OA% 2 +sunlight 'sVnlaIt L@% 2 +sunlit 'sVnlIt OA% 2 +sunned sVnd Hc%,Hd% 16A +sunnier 'sVnI@R Or% 3 +sunniest 'sVnIIst Os% 3 +sunnily 'sVnIlI Pu% 3 +sunning 'sVnIN Hb% 26A +sunny 'sVnI OD% 2 +sunray 'sVnreI OA% 2 +sunrise 'sVnraIz M6% 2 +sunrises 'sVnraIzIz Mj% 3 +sunroof 'sVnruf K6% 2 +sunroofs 'sVnrufs Kj% 2 +suns sVnz Ha%,Mj% 16A +sunset 'sVnset M6% 2 +sunsets 'sVnsets Mj% 2 +sunshade 'sVnSeId K6% 2 +sunshades 'sVnSeIdz Kj% 2 +sunshine 'sVnSaIn L@% 2 +sunshine-roof ,sVnSaIn-'ruf K6% 3 +sunshine-roofs ,sVnSaIn-'rufs Kj% 3 +sunspot 'sVnsp0t K6% 2 +sunspots 'sVnsp0ts Kj% 2 +sunstroke 'sVnstr@Uk L@% 2 +suntan 'sVnt&n M6% 2 +suntans 'sVnt&nz Mj$ 2 +suntrap 'sVntr&p K6% 2 +suntraps 'sVntr&ps Kj% 2 +sup sVp J4%,K6% 12A,2C,3A,6A,15B +super 'sup@R K6%,OA% 2 +superabundance ,sup@r@'bVnd@ns Ki% 5 +superabundant ,sup@r@'bVnd@nt OA% 5 +superannuate ,sup@'r&njUeIt H2$ 56A +superannuated ,sup@'r&njUeItId Hc$,Hd%,OA% 66A +superannuates ,sup@'r&njUeIts Ha$ 56A +superannuating ,sup@'r&njUeItIN Hb$ 66A +superannuation ,sup@,r&njU'eISn M6% 6 +superannuations ,sup@,r&njU'eISnz Mj$ 6 +superb su'p3b OA% 2 +superbly su'p3blI Pu% 3 +supercargo 'sup@kAg@U K7$ 4 +supercargoes 'sup@kAg@Uz Kj$ 4 +supercharged 'sup@tSAdZd OA% 3 +supercharger 'sup@tSAdZ@R K6% 4 +superchargers 'sup@tSAdZ@z Kj% 4 +supercilious ,sup@'sIlI@s OA% 5 +superciliously ,sup@'sIlI@slI Pu% 6 +superciliousness ,sup@'sIlI@sn@s L@% 6 +superego 'sup@reg@U L@% 4 +supererogation ,sup@,rer@'geISn L@$ 6 +superfatted ,sup@'f&tId OA$ 4 +superficial ,sup@'fISl OA% 4 +superficialities ,sup@,fISI'&lItIz Mj% 7 +superficiality ,sup@,fISI'&lItI M8% 7 +superficially ,sup@'fIS@lI Pu% 5 +superficies ,sup@'fISiz K9$ 4 +superfine 'sup@faIn OA% 3 +superfluities ,sup@'flUItIz Mj$ 5 +superfluity ,sup@'flUItI M8% 5 +superfluous su'p3flU@s OA% 4 +superfluously su'p3flU@slI Pu% 5 +superhuman ,sup@'hjum@n OA% 4 +superimpose ,sup@rIm'p@Uz H2% 46A,14 +superimposed ,sup@rIm'p@Uzd Hc%,Hd% 46A,14 +superimposes ,sup@rIm'p@UzIz Ha% 56A,14 +superimposing ,sup@rIm'p@UzIN Hb% 56A,14 +superintend ,sup@rIn'tend J0% 42A,6A +superintended ,sup@rIn'tendId Jc%,Jd% 52A,6A +superintendence ,sup@rIn'tend@ns L@% 5 +superintendent ,sup@rIn'tend@nt K6% 5 +superintendents ,sup@rIn'tend@nts Kj% 5 +superintending ,sup@rIn'tendIN Jb% 52A,6A +superintends ,sup@rIn'tendz Ja% 42A,6A +superior su'pI@rI@R K6%,OA% 4 +superiority su,pI@rI'0rItI L@% 6 +superiors su'pI@rI@z Kj% 4 +superlative su'p3l@tIv K6%,OA% 4 +superlatives su'p3l@tIvz Kj% 4 +superman 'sup@m&n Ki% 3 +supermarket 'sup@mAkIt K6% 4 +supermarkets 'sup@mAkIts Kj% 4 +supermen 'sup@men Kj% 3 +supernal su'p3nl OA$ 3 +supernatural ,sup@'n&tSr@l OA% 4 +supernaturally ,sup@'n&tSr@lI Pu% 5 +supernormal ,sup@'nOml OA% 4 +supernumeraries ,sup@'njum@r@rIz Kj% 6 +supernumerary ,sup@'njum@r@rI K8% 6 +supers 'sup@z Kj$ 2 +superscription ,sup@'skrIpSn K6$ 4 +superscriptions ,sup@'skrIpSnz Kj$ 4 +supersede ,sup@'sid H2% 36A +superseded ,sup@'sidId Hc%,Hd% 46A +supersedes ,sup@'sidz Ha% 36A +superseding ,sup@'sidIN Hb% 46A +supersession ,sup@'seSn L@$ 4 +supersonic ,sup@'s0nIk OA% 4 +superstition ,sup@'stISn M6% 4 +superstitions ,sup@'stISnz Mj% 4 +superstitious ,sup@'stIS@s OA% 4 +superstitiously ,sup@'stIS@slI Pu% 5 +superstructure 'sup@strVktS@R K6% 4 +superstructures 'sup@strVktS@z Kj% 4 +supertax 'sup@t&ks M7% 3 +supertaxes 'sup@t&ksIz Mj$ 4 +supervene ,sup@'vin I2% 32A +supervened ,sup@'vind Ic%,Id% 32A +supervenes ,sup@'vinz Ia% 32A +supervening ,sup@'vinIN Ib% 42A +supervise 'sup@vaIz J2% 32A,6A +supervised 'sup@vaIzd Jc%,Jd% 32A,6A +supervises 'sup@vaIzIz Ja% 42A,6A +supervising 'sup@vaIzIN Jb% 42A,6A +supervision ,sup@'vIZn M6% 4 +supervisions ,sup@'vIZnz Mj% 4 +supervisor 'sup@vaIz@R K6% 4 +supervisors 'sup@vaIz@z Kj% 4 +supervisory ,sup@'vaIz@rI OA% 5 +supine 'supaIn OA$ 2 +supinely 'supaInlI Pu$ 3 +supped sVpt Jc%,Jd% 12A,2C,3A,6A,15B +supper 'sVp@R M6% 2 +supperless 'sVp@l@s OA% 3 +suppers 'sVp@z Mj% 2 +supping 'sVpIN Jb% 22A,2C,3A,6A,15B +supplant s@'plAnt H0% 26A +supplanted s@'plAntId Hc%,Hd% 36A +supplanter s@'plAnt@R K6$ 3 +supplanters s@'plAnt@z Kj$ 3 +supplanting s@'plAntIN Hb% 36A +supplants s@'plAnts Ha% 26A +supple 'sVpl OB% 2 +supplement 'sVplIm@nt K6% 3 +supplement 'sVplIment H0% 36A,15A +supplementary ,sVplI'mentrI OA% 4 +supplemented 'sVplImentId Hc%,Hd% 46A,15A +supplementing 'sVplImentIN Hb% 46A,15A +supplements 'sVplIm@nts Kj% 3 +supplements 'sVplIments Ha% 36A,15A +suppleness 'sVpln@s L@% 3 +suppler 'sVpl@R Or$ 2 +supplest 'sVplIst Os$ 2 +suppliant 'sVplI@nt K6$,OA$ 3 +suppliants 'sVplI@nts Kj$ 3 +supplicant 'sVplIk@nt K6% 3 +supplicants 'sVplIk@nts Kj% 3 +supplicate 'sVplIkeIt J2% 32C,6A,14,17 +supplicated 'sVplIkeItId Jc%,Jd% 42C,6A,14,17 +supplicates 'sVplIkeIts Ja% 32C,6A,14,17 +supplicating 'sVplIkeItIN Jb% 42C,6A,14,17 +supplication ,sVplI'keISn M6% 4 +supplications ,sVplI'keISnz Mj$ 4 +supplied s@'plaId Hc%,Hd% 26A,14 +supplier s@'plaI@R K6% 3 +suppliers s@'plaI@z Kj% 3 +supplies s@'plaIz Ha%,Mj% 26A,14 +supply s@'plaI H3%,M8% 26A,14 +supplying s@'plaIIN Hb% 36A,14 +support s@'pOt H0%,M6% 26A +supportable s@'pOt@bl OA% 4 +supported s@'pOtId Hc%,Hd% 36A +supporter s@'pOt@R K6% 3 +supporters s@'pOt@z Kj% 3 +supporting s@'pOtIN Hb% 36A +supports s@'pOts Ha%,Mj% 26A +suppose s@'p@Uz H2% 26A,9,25 +supposed s@'p@Uzd Hc%,Hd%,OA% 26A,9,25 +supposedly s@'p@Uz@dlI Pu% 4 +supposes s@'p@UzIz Ha% 36A,9,25 +supposing s@'p@UzIN Hb%,V-% 36A,9,25 +supposition ,sVp@'zISn M6% 4 +suppositions ,sVp@'zISnz Mj% 4 +suppositories s@'p0zItrIz Kj% 4 +suppository s@'p0zItrI K8% 4 +suppress s@'pres H1% 26A +suppressed s@'prest Hc%,Hd% 26A +suppresses s@'presIz Ha% 36A +suppressing s@'presIN Hb% 36A +suppression s@'preSn K6% 3 +suppressions s@'preSnz Kj$ 3 +suppressive s@'presIv OA$ 3 +suppressor s@'pres@R K6% 3 +suppressors s@'pres@z Kj% 3 +suppurate 'sVpjUreIt I2% 32A +suppurated 'sVpjUreItId Ic%,Id% 42A +suppurates 'sVpjUreIts Ia% 32A +suppurating 'sVpjUreItIN Ib% 42A +suppuration ,sVpjU'reISn M6% 4 +suppurations ,sVpjU'reISnz Mj$ 4 +supra 'supr@ Pu$ 2 +supranational ,supr@'n&S@nl OA% 5 +supremacy sU'prem@sI L@% 4 +supreme su'prim OA% 2 +supremely su'primlI Pu% 3 +sups sVps Ja%,Kj% 12A,2C,3A,6A,15B +surcharge 's3tSAdZ H2%,K6% 26A,15A +surcharged 's3tSAdZd Hc%,Hd% 26A,15A +surcharges 's3tSAdZIz Ha%,Kj% 36A,15A +surcharging 's3tSAdZIN Hb% 36A,15A +surd s3d K6$ 1 +surds s3dz Kj$ 1 +sure SU@R OB*,Pu* 1 +sure-footed SU@-'fUtId OA% 3 +surely 'SU@lI Pu% 2 +sureness 'SU@n@s L@% 2 +surer 'SU@r@R Or% 2 +surest 'SU@rIst Os% 2 +sureties 'SU@r@tIz Mj$ 3 +surety 'SU@r@tI M8$ 3 +surf s3f L@% 1 +surface 's3fIs J2%,K6% 22A,6A +surface-to-air ,s3fIs-t@-'e@R OA% 4 +surfaced 's3fIst Jc%,Jd% 22A,6A +surfaces 's3fIsIz Ja%,Kj% 32A,6A +surfacing 's3fIsIN Jb% 32A,6A +surfboard 's3fbOd K6% 2 +surfboards 's3fbOdz Kj% 2 +surfboat 's3fb@Ut K6$ 2 +surfboats 's3fb@Uts Kj$ 2 +surfeit 's3fIt H0$,K6% 26A,14 +surfeited 's3fItId Hc$,Hd$ 36A,14 +surfeiting 's3fItIN Hb$ 36A,14 +surfeits 's3fIts Ha$,Kj$ 26A,14 +surfing 's3fIN L@% 2 +surfriding 's3fraIdIN L@% 3 +surge s3dZ I2%,K6% 12C +surged s3dZd Ic%,Id% 12C +surgeon 's3dZ@n K6% 2 +surgeons 's3dZ@nz Kj% 2 +surgeries 's3dZ@rIz Mj% 3 +surgery 's3dZ@rI M8% 3 +surges 's3dZIz Ia%,Kj% 22C +surgical 's3dZIkl OA% 3 +surgically 's3dZIklI Pu% 3 +surging 's3dZIN Ib% 22C +surlier 's3lI@R Or% 3 +surliest 's3lIIst Os% 3 +surlily 's3lIlI Pu$ 3 +surliness 's3lIn@s L@% 3 +surly 's3lI OD% 2 +surmise 's3maIz K6% 2 +surmise s@'maIz J2% 22A,6A,9 +surmised s@'maIzd Jc%,Jd% 22A,6A,9 +surmises 's3maIzIz Kj$ 3 +surmises s@'maIzIz Ja% 32A,6A,9 +surmising s@'maIzIN Jb% 32A,6A,9 +surmount s@'maUnt H0% 26A +surmountable s@'maUnt@bl OA% 4 +surmounted s@'maUntId Hc%,Hd% 36A +surmounting s@'maUntIN Hb% 36A +surmounts s@'maUnts Ha% 26A +surname 's3neIm K6% 2 +surnames 's3neImz Kj% 2 +surpass s@'pAs H1% 26A,15A +surpassed s@'pAst Hc%,Hd% 26A,15A +surpasses s@'pAsIz Ha% 36A,15A +surpassing s@'pAsIN Hb%,OA% 36A,15A +surpassingly s@'pAsINlI Pu% 4 +surplice 's3plIs K6% 2 +surpliced 's3plIst OA$ 2 +surplices 's3plIsIz Kj% 3 +surplus 's3pl@s K7% 2 +surpluses 's3pl@sIz Kj% 3 +surprise s@'praIz H2%,M6% 26A +surprised s@'praIzd Hc%,Hd%,OA% 26A +surprisedly s@'praIz@dlI Pu$ 4 +surprises s@'praIzIz Ha%,Mj% 36A +surprising s@'praIzIN Hb%,OA% 36A +surprisingly s@'praIzINlI Pu% 4 +surrealism s@'rI@lIz@m L@% 5 +surrealist s@'rI@lIst K6% 4 +surrealistic s@rI@'lIstIk OA% 5 +surrealists s@'rI@lIsts Kj% 4 +surrender s@'rend@R J0%,K6% 32A,6A,14 +surrendered s@'rend@d Jc%,Jd% 32A,6A,14 +surrendering s@'rend@rIN Jb% 42A,6A,14 +surrenders s@'rend@z Ja%,Kj% 32A,6A,14 +surreptitious ,sVr@p'tIS@s OA% 4 +surreptitiously ,sVr@p'tIS@slI Pu% 5 +surrogate 'sVr@geIt K6%,OA% 3 +surrogates 'sVr@geIts Kj$ 3 +surround s@'raUnd H0%,K6% 26A +surrounded s@'raUndId Hc%,Hd% 36A +surrounding s@'raUndIN Hb%,OA% 36A +surroundings s@'raUndINz Kj% 3 +surrounds s@'raUndz Ha%,Kj% 26A +surtax 's3t&ks H1$,M7% 2 +surtaxed 's3t&kst Hc$,Hd$ 2 +surtaxes 's3t&ksIz Ha$,Mj$ 3 +surtaxing 's3t&ksIN Hb$ 3 +surveillance s3'veIl@ns L@% 3 +survey 's3veI K6% 2 +survey s@'veI H0% 26A +surveyed s@'veId Hc%,Hd% 26A +surveying s@'veIIN Hb%,L@% 36A +surveyor s@'veI@R K6% 3 +surveyors s@'veI@z Kj% 3 +surveys 's3veIz Kj% 2 +surveys s@'veIz Ha% 26A +survival s@'vaIvl M6% 3 +survivals s@'vaIvlz Mj$ 3 +survive s@'vaIv J2% 22A,6A +survived s@'vaIvd Jc%,Jd% 22A,6A +survives s@'vaIvz Ja% 22A,6A +surviving s@'vaIvIN Jb% 32A,6A +survivor s@'vaIv@R K6% 3 +survivors s@'vaIv@z Kj% 3 +susceptibilities s@,sept@'bIlItIz Mj% 6 +susceptibility s@,sept@'bIlItI M8% 6 +susceptible s@'sept@bl OA% 4 +suspect 'sVspekt K6%,Op% 2 +suspect s@'spekt H0% 26A,9,14,25 +suspected s@'spektId Hc%,Hd% 36A,9,14,25 +suspecting s@'spektIN Hb% 36A,9,14,25 +suspects 'sVspekts Kj% 2 +suspects s@'spekts Ha% 26A,9,14,25 +suspend s@'spend H0% 26A,14 +suspended s@'spendId Hc%,Hd% 36A,14 +suspender s@'spend@R K6% 3 +suspenders s@'spend@z Kj% 3 +suspending s@'spendIN Hb% 36A,14 +suspends s@'spendz Ha% 26A,14 +suspense s@'spens L@% 2 +suspension s@'spenSn L@% 3 +suspicion s@'spISn M6% 3 +suspicions s@'spISnz Mj% 3 +suspicious s@'spIS@s OA% 3 +suspiciously s@'spIS@slI Pu% 4 +suss sVs H1$ 115B +sussed sVst Hc$,Hd$ 115B +susses 'sVsIz Ha$ 215B +sussing 'sVsIN Hb$ 215B +sustain s@'steIn H0% 26A +sustained s@'steInd Hc%,Hd% 26A +sustaining s@'steInIN Hb% 36A +sustains s@'steInz Ha% 26A +sustenance 'sVstIn@ns L@% 3 +suttee 'sVti M6$ 2 +suttees 'sVtiz Mj$ 2 +suture 'sutS@R K6$ 2 +sutures 'sutS@z Kj$ 2 +suzerain 'suz@reIn K6$ 3 +suzerains 'suz@reInz Kj$ 3 +suzerainties 'suz@r@ntIz Kj$ 4 +suzerainty 'suz@r@ntI K8$ 4 +svelte svelt OA$ 1 +swab sw0b H4%,K6% 16A,15B +swabbed sw0bd Hc%,Hd% 16A,15B +swabbing 'sw0bIN Hb% 26A,15B +swabs sw0bz Ha%,Kj% 16A,15B +swaddle 'sw0dl H2$ 26A +swaddled 'sw0dld Hc$,Hd% 26A +swaddles 'sw0dlz Ha$ 26A +swaddling 'sw0dlIN Hb$ 26A +swaddling-clothes 'sw0dlIN-kl@UDz Kj% 3 +swag sw&g L@% 1 +swagger 'sw&g@R I0%,K6%,OA% 22A,2C +swaggered 'sw&g@d Ic%,Id% 22A,2C +swaggerer 'sw&g@r@R K6$ 3 +swaggerers 'sw&g@r@z Kj$ 3 +swaggering 'sw&g@rIN Ib% 32A,2C +swaggers 'sw&g@z Ia%,Kj% 22A,2C +swain sweIn K6$ 1 +swains sweInz Kj$ 1 +swallow 'sw0l@U J0%,K6% 22C,6A,15B +swallow-tailed 'sw0l@U-teIld OA% 3 +swallowed 'sw0l@Ud Jc%,Jd% 22C,6A,15B +swallowing 'sw0l@UIN Jb% 32C,6A,15B +swallows 'sw0l@Uz Ja%,Kj% 22C,6A,15B +swam sw&m Jc% 12A,2B,2C,3A,6A +swami 'swAmI K6$ 2 +swamis 'swAmIz Kj$ 2 +swamp sw0mp H0%,M6% 16A,14 +swamped sw0mpt Hc%,Hd% 16A,14 +swampier 'sw0mpI@R Or$ 3 +swampiest 'sw0mpIIst Os$ 3 +swamping 'sw0mpIN Hb% 26A,14 +swamps sw0mps Ha%,Mj% 16A,14 +swampy 'sw0mpI OD% 2 +swan sw0n I4%,K6% 12C +swan's-down 'sw0nz-daUn L@% 2 +swan-song 'sw0n-s0N K6% 2 +swan-songs 'sw0n-s0Nz Kj% 2 +swank sw&Nk I0%,M6% 12A,2C +swanked sw&Nkt Ic%,Id% 12A,2C +swankier 'sw&NkI@R Or% 3 +swankiest 'sw&NkIIst Os% 3 +swanking 'sw&NkIN Ib% 22A,2C +swanks sw&Nks Ia%,Mj% 12A,2C +swanky 'sw&NkI OD% 2 +swanned sw0nd Ic%,Id% 12C +swanning 'sw0nIN Ib% 22C +swans sw0nz Ia%,Kj% 12C +swap sw0p J4%,K6% 12A,6A,15A +swapped sw0pt Jc%,Jd% 12A,6A,15A +swapping 'sw0pIN Jb% 22A,6A,15A +swaps sw0ps Ja%,Kj% 12A,6A,15A +sward swOd L@$ 1 +swarm swOm J0%,K6% 12A,2C,3A,6A,15B +swarmed swOmd Jc%,Jd% 12A,2C,3A,6A,15B +swarming 'swOmIN Jb% 22A,2C,3A,6A,15B +swarms swOmz Ja%,Kj% 12A,2C,3A,6A,15B +swarthy 'swODI OA% 2 +swashbuckler 'sw0SbVkl@R K6% 3 +swashbucklers 'sw0SbVkl@z Kj% 3 +swashbuckling 'sw0SbVklIN L@%,OA% 3 +swastika 'sw0stIk@ K6% 3 +swastikas 'sw0stIk@z Kj% 3 +swat sw0t H4%,K6% 1 +swath swOT K6$ 1 +swathe sweID H2%,K6% 16A,15A +swathed sweIDd Hc%,Hd% 16A,15A +swathes sweIDz Ha%,Kj% 16A,15A +swathing 'sweIDIN Hb% 26A,15A +swaths swOTs Kj$ 1 +swats sw0ts Ha%,Kj% 1 +swatted 'sw0tId Hc%,Hd% 2 +swatting 'sw0tIN Hb% 2 +sway sweI J0%,L@% 12A,2C,6A,15A +swayed sweId Jc%,Jd% 12A,2C,6A,15A +swaying 'sweIIN Jb% 22A,2C,6A,15A +sways sweIz Ja% 12A,2C,6A,15A +swear swe@R J5% 12A,2B,2C,3A,6A,7A,9,14,15A,15B,22 +swearer 'swe@r@R K6$ 2 +swearers 'swe@r@z Kj$ 2 +swearing 'swe@rIN Jb%,L@% 22A,2B,2C,3A,6A,7A,9,14,15A,15B,22 +swears swe@z Ja% 12A,2B,2C,3A,6A,7A,9,14,15A,15B,22 +swearword 'swe@w3d K6% 2 +swearwords 'swe@w3dz Kj% 2 +sweat swet J0%,M6% 12A,2C,6A,15B +sweatband 'swetb&nd K6% 2 +sweatbands 'swetb&ndz Kj% 2 +sweated 'swetId Jc%,Jd% 22A,2C,6A,15B +sweater 'swet@R K6% 2 +sweaters 'swet@z Kj% 2 +sweatier 'swetI@R Or$ 3 +sweatiest 'swetIIst Os$ 3 +sweating 'swetIN Jb% 22A,2C,6A,15B +sweats swets Ja%,Mj% 12A,2C,6A,15B +sweatshop 'swetS0p K6% 2 +sweatshops 'swetS0ps Kj% 2 +sweaty 'swetI OD% 2 +swede swid K6% 1 +swedes swidz Kj% 1 +sweep swip J5%,K6% 12A,2C,6A,12A,15A,15B,22 +sweeper 'swip@R K6% 2 +sweepers 'swip@z Kj% 2 +sweeping 'swipIN Jb%,M6%,OA% 22A,2C,6A,12A,15A,15B,22 +sweepingly 'swipINlI Pu% 3 +sweepings 'swipINz Mj% 2 +sweeps swips Ja%,Kj% 12A,2C,6A,12A,15A,15B,22 +sweet swit M6%,OC% 1 +sweet-scented swit-'sentId OA% 3 +sweetbread 'switbred K6$ 2 +sweetbreads 'switbredz Kj% 2 +sweetbriar 'switbraI@R L@$ 3 +sweetbrier 'switbraI@R L@$ 3 +sweeten 'switn J0% 22A,6A +sweetened 'switnd Jc%,Jd% 22A,6A +sweetening 'switnIN Jb%,M6% 22A,6A +sweetenings 'switnINz Mj% 2 +sweetens 'switnz Ja% 22A,6A +sweeter 'swit@R Or% 2 +sweetest 'switIst Os% 2 +sweetheart 'swithAt K6% 2 +sweethearts 'swithAts Kj% 2 +sweetie 'switI K6% 2 +sweeties 'switIz Kj% 2 +sweetish 'switIS OA% 2 +sweetly 'switlI Pu% 2 +sweetmeat 'switmit K6% 2 +sweetmeats 'switmits Kj% 2 +sweetness 'switn@s L@% 2 +sweets swits Mj% 1 +swell swel J0%,K6%,OA% 12A,2C,6A,14,15B +swelled sweld Jc%,Jd% 12A,2C,6A,14,15B +swelling 'swelIN Jb%,M6% 22A,2C,6A,14,15B +swellings 'swelINz Mj% 2 +swells swelz Ja%,Kj% 12A,2C,6A,14,15B +swelter 'swelt@R I0% 22A +sweltered 'swelt@d Ic%,Id% 22A +sweltering 'swelt@rIN Ib% 32A +swelters 'swelt@z Ia% 22A +swept swept Jc%,Jd% 12A,2C,6A,12A,15A,15B,22 +sweptback 'sweptb&k OA% 2 +swerve sw3v J2%,K6% 12A,2C,4A,6A +swerved sw3vd Jc%,Jd% 12A,2C,4A,6A +swerves sw3vz Ja%,Kj% 12A,2C,4A,6A +swerving 'sw3vIN Jb% 22A,2C,4A,6A +swift swIft K6%,OC% 1 +swifter 'swIft@R Or% 2 +swiftest 'swIftIst Os% 2 +swiftly 'swIftlI Pu% 2 +swiftness 'swIftn@s L@% 2 +swifts swIfts Kj% 1 +swig swIg J4%,K6% 12A,2C,6A,15B +swigged swIgd Jc%,Jd% 12A,2C,6A,15B +swigging 'swIgIN Jb% 22A,2C,6A,15B +swigs swIgz Ja%,Kj% 12A,2C,6A,15B +swill swIl J0%,M6% 16A,15B +swilled swIld Jc%,Jd% 16A,15B +swilling 'swIlIN Jb% 26A,15B +swills swIlz Ja%,Mj% 16A,15B +swim swIm J5%,K6% 12A,2B,2C,3A,6A +swimmer 'swIm@R K6% 2 +swimmers 'swIm@z Kj% 2 +swimming 'swImIN Jb%,L@% 22A,2B,2C,3A,6A +swimming-bath 'swImIN-bAT K6% 3 +swimming-baths 'swImIN-bADz Kj% 3 +swimming-costume 'swImIN-k0stjum K6% 4 +swimming-costumes 'swImIN-k0stjumz Kj% 4 +swimming-pool 'swImIN-pul K6% 3 +swimming-pools 'swImIN-pulz Kj% 3 +swimming-trunks 'swImIN-trVnks Kj% 3 +swimmingly 'swImINlI Pu% 3 +swims swImz Ja%,Kj% 12A,2B,2C,3A,6A +swimsuit 'swImsut K6% 2 +swimsuits 'swImsuts Kj% 2 +swindle 'swIndl J2%,K6% 26A,14 +swindled 'swIndld Jc%,Jd% 26A,14 +swindler 'swIndl@R K6% 2 +swindlers 'swIndl@z Kj% 2 +swindles 'swIndlz Ja%,Kj% 26A,14 +swindling 'swIndlIN Jb% 26A,14 +swine swaIn K9% 1 +swineherd 'swaInh3d K6% 2 +swineherds 'swaInh3dz Kj% 2 +swing swIN J5%,K6% 12A,2B,2C,6A,6C,15A,15B,22 +swinge swIndZ H2$ 1 +swinged swIndZd Hc$,Hd$ 1 +swingeing 'swIndZIN OA% 2 +swinges 'swIndZIz Ha$ 2 +swinging 'swININ Jb%,OA% 22A,2B,2C,6A,6C,15A,15B,22 +swinging 'swIndZIN Hb$ 2 +swings swINz Ja%,Kj% 12A,2B,2C,6A,6C,15A,15B,22 +swinish 'swaInIS OA% 2 +swipe swaIp H2%,K6% 13A,6A,15A +swiped swaIpt Hc%,Hd% 13A,6A,15A +swipes swaIps Ha%,Kj% 13A,6A,15A +swiping 'swaIpIN Hb% 23A,6A,15A +swirl sw3l J0%,K6% 12C,15B +swirled sw3ld Jc%,Jd% 12C,15B +swirling 'sw3lIN Jb% 22C,15B +swirls sw3lz Ja%,Kj% 12C,15B +swish swIS J1%,K7%,OA% 12A,6A,15B +swished swISt Jc%,Jd% 12A,6A,15B +swishes 'swISIz Ja%,Kj% 22A,6A,15B +swishing 'swISIN Jb% 22A,6A,15B +switch swItS J1%,K7% 16A,15A,15B +switchboard 'swItSbOd K6% 2 +switchboards 'swItSbOdz Kj% 2 +switched swItSt Jc%,Jd% 16A,15A,15B +switches 'swItSIz Ja%,Kj% 26A,15A,15B +switching 'swItSIN Jb% 26A,15A,15B +switchman 'swItSm@n Ki$ 2 +switchmen 'swItSm@n Kj$ 2 +swivel 'swIvl J4%,K6% 22A,2C,6A,15B +swivelled 'swIvld Jc%,Jd% 22A,2C,6A,15B +swivelling 'swIv@lIN Jb% 32A,2C,6A,15B +swivels 'swIvlz Ja%,Kj% 22A,2C,6A,15B +swiz swIz Ki% 1 +swizzle 'swIzl K6% 2 +swizzle-stick 'swIzl-stIk K6% 3 +swizzle-sticks 'swIzl-stIks Kj% 3 +swizzles 'swIzlz Kj$ 2 +swob sw0b H4$,K6$ 1 +swobbed sw0bd Hc$,Hd$ 1 +swobbing 'sw0bIN Hb$ 2 +swobs sw0bz Ha$,Kj$ 1 +swollen 'sw@Ul@n Jd% 22A,2C,6A,14,15B +swollen-headed ,sw@Ul@n-'hedId OA% 4 +swoon swun I0%,K6% 12A +swooned swund Ic%,Id% 12A +swooning 'swunIN Ib% 22A +swoons swunz Ia%,Kj% 12A +swoop swup J0%,K6% 12A,2C,15B +swooped swupt Jc%,Jd% 12A,2C,15B +swooping 'swupIN Jb% 22A,2C,15B +swoops swups Ja%,Kj% 12A,2C,15B +swop sw0p J4%,K6% 12A,6A,15A +swopped sw0pt Jc%,Jd% 12A,6A,15A +swopping 'sw0pIN Jb% 22A,6A,15A +swops sw0ps Ja%,Kj% 12A,6A,15A +sword sOd K6% 1 +sword-cane 'sOd-keIn K6$ 2 +sword-canes 'sOd-keInz Kj$ 2 +sword-cut 'sOd-kVt K6% 2 +sword-cuts 'sOd-kVts Kj% 2 +sword-dance 'sOd-dAns K6% 2 +sword-dances 'sOd-dAnsIz Kj% 3 +swordfish 'sOdfIS K9% 2 +swordfishes 'sOdfISIz Kj% 3 +swordplay 'sOdpleI L@% 2 +swords sOdz Kj% 1 +swordsman 'sOdzm@n Ki% 2 +swordsmanship 'sOdzm@nSIp L@% 3 +swordsmen 'sOdzm@n Kj% 2 +swordstick 'sOdstIk K6% 2 +swordsticks 'sOdstIks Kj% 2 +swore swOR Jc% 12A,2B,2C,3A,6A,7A,9,14,15A,15B,22 +sworn swOn Jd%,OA% 12A,2B,2C,3A,6A,7A,9,14,15A,15B,22 +swot sw0t J4%,K6% 12A,2C,3A,15B +swots sw0ts Ja%,Kj% 12A,2C,3A,15B +swotted 'sw0tId Jc%,Jd% 22A,2C,3A,15B +swotting 'sw0tIN Jb% 22A,2C,3A,15B +swum swVm Jd% 12A,2B,2C,3A,6A +swung swVN Jc%,Jd% 12A,2B,2C,6A,6C,15A,15B,22 +sybarite 'sIb@raIt K6$ 3 +sybarites 'sIb@raIts Kj$ 3 +sybaritic ,sIb@'rItIk OA$ 4 +sycamore 'sIk@mOR M6% 3 +sycamores 'sIk@mOz Mj% 3 +sycophancy 'sIk@f@nsI L@$ 4 +sycophant 'sIk@f&nt K6% 3 +sycophantic ,sIk@'f&ntIk OA% 4 +sycophants 'sIk@f&nts Kj% 3 +syllabaries 'sIl@b@rIz Kj$ 4 +syllabary 'sIl@b@rI K8$ 4 +syllabi 'sIl@baI Kj$ 3 +syllabic sI'l&bIk OA% 3 +syllabicate sI'l&bIkeIt H2$ 4 +syllabicated sI'l&bIkeItId Hc$,Hd$ 5 +syllabicates sI'l&bIkeIts Ha$ 4 +syllabicating sI'l&bIkeItIN Hb$ 5 +syllabication sI,l&bI'keISn L@$ 5 +syllabification sI,l&bIfI'keISn L@$ 6 +syllabified sI'l&bIfaId Hc$,Hd$ 4 +syllabifies sI'l&bIfaIz Ha$ 4 +syllabify sI'l&bIfaI H3$ 4 +syllabifying sI'l&bIfaIIN Hb$ 5 +syllabize 'sIl@baIz H2$ 3 +syllabized 'sIl@baIzd Hc$,Hd$ 3 +syllabizes 'sIl@baIzIz Ha$ 4 +syllabizing 'sIl@baIzIN Hb$ 4 +syllable 'sIl@bl K6% 3 +syllabled 'sIl@bld Ot% 3 +syllables 'sIl@blz Kj% 3 +syllabus 'sIl@b@s K7% 3 +syllabuses 'sIl@b@sIz Kj% 4 +syllogism 'sIl@dZIz@m K6% 4 +syllogisms 'sIl@dZIz@mz Kj% 4 +syllogistic ,sIl@'dZIstIk OA% 4 +sylph sIlf K6$ 1 +sylph-like 'sIlf-laIk OA% 2 +sylphs sIlfs Kj$ 1 +sylvan 'sIlv@n OA$ 2 +symbiosis ,sImbI'@UsIs L@$ 4 +symbol 'sImbl K6% 2 +symbolic sIm'b0lIk OA% 3 +symbolical sIm'b0lIkl OA$ 4 +symbolically sIm'b0lIklI Pu% 4 +symbolism 'sImb@lIz@m M6% 4 +symbolisms 'sImb@lIz@mz Mj% 4 +symbolization ,sImb@laI'zeISn M6$ 5 +symbolizations ,sImb@laI'zeISnz Mj$ 5 +symbolize 'simb@laIz H2% 36A +symbolized 'simb@laIzd Hc%,Hd% 36A +symbolizes 'simb@laIzIz Ha% 46A +symbolizing 'simb@laIzIN Hb% 46A +symbols 'sImblz Kj% 2 +symmetric sI'metrIk OA$ 3 +symmetrical sI'metrIkl OA% 4 +symmetrically sI'metrIklI Pu% 4 +symmetry 'sIm@trI L@% 3 +sympathetic ,sImp@'TetIk OA% 4 +sympathetically ,sImp@'TetIklI Pu% 5 +sympathies 'sImp@TIz Mj% 3 +sympathize 'sImp@TaIz I2% 32A,3A +sympathized 'sImp@TaIzd Ic%,Id% 32A,3A +sympathizer 'sImp@TaIz@R K6% 4 +sympathizers 'sImp@TaIz@z Kj% 4 +sympathizes 'sImp@TaIzIz Ia% 42A,3A +sympathizing 'sImp@TaIzIN Ib% 42A,3A +sympathy 'sImp@TI M8% 3 +symphonic sIm'f0nIk OA% 3 +symphonies 'sImf@nIz Kj% 3 +symphony 'sImf@nI K8% 3 +symposia sIm'p@UzI@ Kj% 4 +symposium sIm'p@UzI@m K6% 4 +symposiums sIm'p@UzI@mz Kj% 4 +symptom 'sImpt@m K6% 2 +symptomatic ,sImpt@'m&tIk OA% 4 +symptomatically ,sImpt@'m&tIklI Pu% 5 +symptomless 'sImpt@mlIs OA% 3 +symptoms 'sImpt@mz Kj% 2 +synagogue 'sIn@g0g K6% 3 +synagogues 'sIn@g0gz Kj% 3 +synchroflash 'sINkr@Ufl&S Ki$ 3 +synchromesh ,sINkr@U'meS L@% 3 +synchronization ,sINkr@naI'zeISn M6% 5 +synchronizations ,sINkr@naI'zeISnz Mj$ 5 +synchronize 'sINkr@naIz J2% 32A,6A +synchronized 'sINkr@naIzd Jc%,Jd% 32A,6A +synchronizes 'sINkr@naIzIz Ja% 42A,6A +synchronizing 'sINkr@naIzIN Jb% 42A,6A +synchronous 'sINkr@n@s OA$ 3 +synchronously 'sINkr@n@slI Pu$ 4 +synchrony 'sINkr@nI L@$ 3 +synchrotron 'sINkr@Utr0n K6$ 3 +synchrotrons 'sINkr@Utr0nz Kj$ 3 +syncopate 'sINk@peIt H2% 36A +syncopated 'sINk@peItId Hc%,Hd% 46A +syncopates 'sINk@peIts Ha% 36A +syncopating 'sINk@peItIN Hb% 46A +syncopation ,sINk@'peISn M6% 4 +syncopations ,sINk@'peISnz Mj% 4 +syncope 'sINk@pI L@$ 3 +syndic 'sIndIk K6$ 2 +syndicalism 'sIndIk@lIz@m L@% 5 +syndicalist 'sIndIk@lIst K6% 4 +syndicalists 'sIndIk@lIsts Kj% 4 +syndicate 'sIndIk@t K6% 3 +syndicate 'sIndIkeIt H2% 36A +syndicated 'sIndIkeItId Hc%,Hd% 46A +syndicates 'sIndIk@ts Kj% 3 +syndicates 'sIndIkeIts Ha% 36A +syndicating 'sIndIkeItIN Hb% 46A +syndication ,sIndI'keISn K6$ 4 +syndications ,sIndI'keISnz Kj$ 4 +syndics 'sIndIks Kj$ 2 +syndrome 'sIndr@Um K6% 2 +syndromes 'sIndr@Umz Kj% 2 +synod 'sIn@d K6% 2 +synods 'sIn@dz Kj% 2 +synonym 'sIn@nIm K6% 3 +synonymous sI'n0nIm@s OA% 4 +synonyms 'sIn@nImz Kj% 3 +synopses sI'n0psiz Kj% 3 +synopsis sI'n0psIs Ki% 3 +synoptic sI'n0ptIk OA$ 3 +synoptically sI'n0ptIklI Pu$ 4 +syntactic sIn't&ktIk OA% 3 +syntactically sIn't&ktIklI Pu% 4 +syntax 'sInt&ks L@% 2 +syntheses 'sInT@siz Kj$ 3 +synthesis 'sInT@sIs Mi% 3 +synthesize 'sInT@saIz H2% 36A +synthesized 'sInT@saIzd Hc%,Hd% 36A +synthesizes 'sInT@saIzIz Ha% 46A +synthesizing 'sInT@saIzIN Hb% 46A +synthetic sIn'TetIk K6$,OA% 3 +synthetically sIn'TetIklI Pu% 4 +synthetics sIn'TetIks Kj% 3 +syphilis 'sIfIlIs L@% 3 +syphilitic ,sIfI'lItIk K6%,OA% 4 +syphilitics ,sIfI'lItIks Kj% 4 +syphon 'saIf@n J0%,K6% 215B +syphoned 'saIf@nd Jc%,Jd% 215B +syphoning 'saIf@nIN Jb% 315B +syphons 'saIf@nz Ja%,Kj% 215B +syringa sI'rINg@ M6$ 3 +syringas sI'rINg@z Mj$ 3 +syringe sI'rIndZ H2%,K6% 26A,15B +syringed sI'rIndZd Hc%,Hd% 26A,15B +syringes sI'rIndZIz Ha%,Kj% 36A,15B +syringing sI'rIndZIN Hb% 36A,15B +syrup 'sIr@p M6% 2 +syrups 'sIr@ps Mj% 2 +syrupy 'sIr@pI OA% 3 +system 'sIst@m M6* 2 +systematic ,sIst@'m&tIk OA% 4 +systematically ,sIst@'m&tIklI Pu% 5 +systematization ,sIst@m@taI'zeISn L@% 6 +systematize 'sIst@m@taIz H2% 46A +systematized 'sIst@m@taIzd Hc%,Hd% 46A +systematizes 'sIst@m@taIzIz Ha% 56A +systematizing 'sIst@m@taIzIN Hb% 56A +systems 'sIst@mz Mj% 2 +t ti Ki$ 1 +t's tiz Kj$ 1 +t^ete-`a-t^ete ,teIt-A-'teIt K6%,Pu% 3 +t^ete-`a-t^etes ,teIt-A-'teIts Kj$ 3 +ta tA W-$ 1 +ta ta ,t@ 'tA W-% 2 +tab t&b K6% 1 +tabard 't&b@d K6$ 2 +tabards 't&b@dz Kj$ 2 +tabbies 't&bIz Kj$ 2 +tabby 't&bI K8%,Oq% 2 +tabby-cat 't&bI-k&t K6% 3 +tabby-cats 't&bI-k&ts Kj% 3 +tabernacle 't&b@n&kl K6% 4 +tabernacles 't&b@n&klz Kj% 4 +table 'teIbl H2%,K6* 26A +table d'h^ote ,tAbl 'd@Ut OA%,Pu% 3 +table-knife 'teIbl-naIf Ki% 3 +table-knives 'teIbl-naIvz Kj% 3 +table-lifting 'teIbl-lIftIN L@$ 4 +table-linen 'teIbl-lInIn L@% 4 +table-rapping 'teIbl-r&pIN L@$ 4 +table-talk 'teIbl-tOk L@% 3 +table-turning 'teIbl-t3nIN L@% 4 +tableau 't&bl@U Ki% 2 +tableau vivant ,t&bl@U 'vivAn Ki$ 4 +tableaux 't&bl@Uz Kj$ 2 +tableaux vivants ,t&bl@U 'vivAn Kj$ 4 +tablecloth 'teIblkl0T K6% 3 +tablecloths 'teIblkl0Ts Kj% 3 +tabled 'teIbld Hc%,Hd% 26A +tablemat 'teIblm&t K6% 3 +tablemats 'teIblm&ts Kj% 3 +tables 'teIblz Ha%,Kj% 26A +tablespoon 'teIblspun K6% 3 +tablespoonful 'teIblspunfUl K6% 4 +tablespoonfuls 'teIblspunfUlz Kj% 4 +tablespoons 'teIblspunz Kj% 3 +tablet 't&blIt K6% 2 +tablets 't&blIts Kj% 2 +tableware 'teIblwe@R L@% 3 +tabling 'teIblIN Hb% 26A +tabloid 't&bloId K6% 2 +tabloids 't&bloIdz Kj% 2 +taboo t@'bu H0$,M6%,OA% 26A +tabooed t@'bud Hc$,Hd$ 26A +tabooing t@'buIN Hb$ 36A +taboos t@'buz Ha$,Mj% 26A +tabor 'teIb@R K6$ 2 +tabors 'teIb@z Kj$ 2 +tabs t&bz Kj% 1 +tabular 't&bjUl@R OA% 3 +tabulate 't&bjUleIt H2% 36A +tabulated 't&bjUleItId Hc%,Hd% 46A +tabulates 't&bjUleIts Ha% 36A +tabulating 't&bjUleItIN Hb% 46A +tabulation ,t&bjU'leISn M6% 4 +tabulations ,t&bjU'leISnz Mj% 4 +tabulator 't&bjUleIt@R K6% 4 +tabulators 't&bjUleIt@z Kj% 4 +tachograph 't&k@UgrAf K6% 3 +tachographs 't&k@UgrAfs Kj% 3 +tacit 't&sIt OA% 2 +tacitly 't&sItlI Pu% 3 +taciturn 't&sIt3n OA% 3 +taciturnity ,t&sI't3nItI L@% 5 +taciturnly 't&sIt3nlI Pu% 4 +tack t&k J0%,M6% 12A,2C,6A,15A,15B +tacked t&kt Jc%,Jd% 12A,2C,6A,15A,15B +tackier 't&kI@R Or% 3 +tackiest 't&kIIst Os% 3 +tacking 't&kIN Jb% 22A,2C,6A,15A,15B +tackle 't&kl J2%,M6% 22A,6A,14 +tackled 't&kld Jc%,Jd% 22A,6A,14 +tackles 't&klz Ja%,Mj% 22A,6A,14 +tackling 't&klIN Jb% 22A,6A,14 +tacks t&ks Ja%,Mj% 12A,2C,6A,15A,15B +tacky 't&kI OD% 2 +tact t&kt L@% 1 +tactful 't&ktfUl OA% 2 +tactfully 't&ktf@lI Pu% 3 +tactic 't&ktIk K6% 2 +tactical 't&ktIkl OA% 3 +tactically 't&ktIklI Pu% 3 +tactician t&k'tISn K6% 3 +tacticians t&k'tISnz Kj% 3 +tactics 't&ktIks Kj% 2 +tactile 't&ktaIl OA% 2 +tactless 't&ktl@s OA% 2 +tactlessly 't&ktl@slI Pu% 3 +tactlessness 't&ktl@sn@s L@% 3 +tactual 't&ktSU@l OA$ 3 +tadpole 't&dp@Ul K6% 2 +tadpoles 't&dp@Ulz Kj% 2 +taffeta 't&fIt@ L@$ 3 +taffies 't&fIz Kj$ 2 +taffrail 't&freIl K6$ 2 +taffrails 't&freIlz Kj$ 2 +taffy 't&fI K8$ 2 +tag t&g J4%,M6% 12C,6A,14,15A,15B +tagged t&gd Jc%,Jd% 12C,6A,14,15A,15B +tagging 't&gIN Jb% 22C,6A,14,15A,15B +tags t&gz Ja%,Mj% 12C,6A,14,15A,15B +tail teIl J0%,K6% 12C,3A,6A +tail-coat 'teIl-k@Ut K6% 2 +tail-coats 'teIl-k@Uts Kj% 2 +tail-end teIl-'end K6% 2 +tail-ends teIl-'endz Kj% 2 +tail-light 'teIl-laIt K6% 2 +tail-lights 'teIl-laIts Kj% 2 +tailboard 'teIlbOd K6% 2 +tailboards 'teIlbOdz Kj% 2 +tailed teIld Jc%,Jd%,Ot% 12C,3A,6A +tailgate 'teIlgeIt K6% 2 +tailgates 'teIlgeIts Kj% 2 +tailing 'teIlIN Jb% 22C,3A,6A +tailless 'teIl+l@s OA% 2 +tailor 'teIl@R H0%,K6% 26A,15A +tailor-made 'teIl@-meId OA% 3 +tailored 'teIl@d Hc%,Hd% 26A,15A +tailoring 'teIl@rIN Hb% 36A,15A +tailors 'teIl@z Ha%,Kj% 26A,15A +tailpiece 'teIlpis K6% 2 +tailpieces 'teIlpisIz Kj% 3 +tailplane 'teIlpleIn K6% 2 +tailplanes 'teIlpleInz Kj% 2 +tails teIlz Ja%,Kj% 12C,3A,6A +tailspin 'teIlspIn K6% 2 +tailspins 'teIlspInz Kj$ 2 +taint teInt J0%,M6% 12A,6A +tainted 'teIntId Jc%,Jd% 22A,6A +tainting 'teIntIN Jb% 22A,6A +taintless 'teIntl@s OA$ 2 +taints teInts Ja%,Mj% 12A,6A +take teIk J5*,K6% 12A,2B,2C,3A,6A,6B,12A,13A,14,15A,15B,16B,19B,22 +take-home 'teIk-h@Um OA% 2 +take-off 'teIk-0f K6% 2 +take-offs 'teIk-0fs Kj% 2 +take-up 'teIk-Vp L@% 2 +takeaway 'teIk@weI Oq% 3 +taken 'teIk@n Jd* 22A,2B,2C,3A,6A,6B,12A,13A,14,15A,15B,16B,19B,22 +takeover 'teIk@Uv@R K6% 3 +takeovers 'teIk@Uv@z Kj% 3 +taker 'teIk@R K6% 2 +takers 'teIk@z Kj% 2 +takes teIks Ja%,Kj% 12A,2B,2C,3A,6A,6B,12A,13A,14,15A,15B,16B,19B,22 +taking 'teIkIN Jb%,OA% 22A,2B,2C,3A,6A,6B,12A,13A,14,15A,15B,16B,19B,22 +takings 'teIkINz Kj% 2 +talc t&lk L@% 1 +talcum 't&lk@m L@% 2 +tale teIl K6% 1 +tale-bearer 'teIl-be@r@R K6% 3 +tale-bearers 'teIl-be@r@z Kj% 3 +tale-teller 'teIl-tel@R K6% 3 +tale-tellers 'teIl-tel@z Kj% 3 +talent 't&l@nt M6% 2 +talented 't&l@ntId OA% 3 +talents 't&l@nts Mj% 2 +tales teIlz Kj% 1 +talisman 't&lIzm@n K6% 3 +talismans 't&lIzm@nz Kj$ 3 +talk tOk J0*,M6* 12A,2B,2C,3A,6A,14,15B,22 +talkative 'tOk@tIv OA% 3 +talked tOkt Jc%,Jd% 12A,2B,2C,3A,6A,14,15B,22 +talker 'tOk@R K6% 2 +talkers 'tOk@z Kj% 2 +talkie 'tOkI K6% 2 +talkies 'tOkIz Kj% 2 +talking 'tOkIN Jb% 22A,2B,2C,3A,6A,14,15B,22 +talking-point 'tOkIN-poInt K6% 3 +talking-points 'tOkIN-poInts Kj% 3 +talking-to 'tOkIN-tu K6% 3 +talking-tos 'tOkIN-tuz Kj$ 3 +talks tOks Ja%,Mj% 12A,2B,2C,3A,6A,14,15B,22 +tall tOl OC% 1 +tallboy 'tOlboI K6% 2 +tallboys 'tOlboIz Kj% 2 +taller 'tOl@R Or% 2 +tallest 'tOlIst Os% 2 +tallied 't&lId Ic%,Id% 22A,3A +tallies 't&lIz Ia%,Kj% 22A,3A +tallish 'tOlIS OA$ 2 +tallow 't&l@U L@% 2 +tally 't&lI I3%,K8% 22A,3A +tally-clerk 't&lI-klAk K6% 3 +tally-clerks 't&lI-klAks Kj% 3 +tally-ho ,t&lI-'h@U W-$ 3 +tallying 't&lIIN Ib% 32A,3A +tallyman 't&lIm&n Ki% 3 +tallymen 't&lImen Kj% 3 +talon 't&l@n K6% 2 +talons 't&l@nz Kj% 2 +talus 'teIl@s K7$ 2 +taluses 'teIl@sIz Kj$ 3 +tam-o'-shanter ,t&m-@-'S&nt@R K6% 4 +tam-o'-shanters ,t&m-@-'S&nt@z Kj% 4 +tamable 'teIm@bl OA% 3 +tamale t@'mAlI M6$ 3 +tamales t@'mAlIz Mj$ 3 +tamarind 't&m@rInd M6$ 3 +tamarinds 't&m@rIndz Mj$ 3 +tamarisk 't&m@rIsk K6$ 3 +tamarisks 't&m@rIsks Kj$ 3 +tambour 't&mbU@R K6$ 2 +tambourine ,t&mb@'rin K6% 3 +tambourines ,t&mb@'rinz Kj% 3 +tambours 't&mbU@z Kj$ 2 +tame teIm H2%,OB% 16A +tamed teImd Hc%,Hd% 16A +tamely 'teImlI Pu% 2 +tameness 'teImn@s L@% 2 +tamer 'teIm@R K6%,Or% 2 +tamers 'teIm@z Kj% 2 +tames teImz Ha% 16A +tamest 'teImIst Os% 2 +taming 'teImIN Hb% 26A +tammies 't&mIz Kj$ 2 +tammy 't&mI K8$ 2 +tamp t&mp H0% 115B +tamped t&mpt Hc%,Hd% 115B +tamper 't&mp@R I0% 23A +tampered 't&mp@d Ic%,Id% 23A +tampering 't&mp@rIN Ib% 33A +tampers 't&mp@z Ia% 23A +tamping 't&mpIN Hb% 215B +tamps t&mps Ha% 115B +tan t&n J4%,K6%,OA% 12A,6A +tandem 't&nd@m K6%,Pu% 2 +tandems 't&nd@mz Kj% 2 +tang t&N K6% 1 +tangent 't&ndZ@nt K6% 2 +tangents 't&ndZ@nts Kj% 2 +tangerine ,t&ndZ@'rin M6%,OA% 3 +tangerines ,t&ndZ@'rinz Mj% 3 +tangibility ,t&ndZ@'bIlItI L@% 5 +tangible 't&ndZ@bl OA% 3 +tangibly 't&ndZ@blI Pu% 3 +tangier 't&NI@R Or% 3 +tangiest 't&NIIst Os% 3 +tangle 't&Ngl J2%,M6% 22A,2C,3A,6A,15B +tangled 't&Ngld Jc%,Jd% 22A,2C,3A,6A,15B +tangles 't&Nglz Ja%,Mj% 22A,2C,3A,6A,15B +tangling 't&NglIN Jb% 22A,2C,3A,6A,15B +tango 't&Ng@U K6% 2 +tangos 't&Ng@Uz Kj% 2 +tangs t&Nz Kj% 1 +tangy 't&NI OD% 2 +tank t&Nk I0$,K6% 1 +tank-car 't&Nk-kAR K6$ 2 +tank-cars 't&Nk-kAz Kj$ 2 +tankard 't&Nk@d K6% 2 +tankards 't&Nk@dz Kj% 2 +tanked t&Nkt Ic$,Id$ 1 +tanker 't&Nk@R K6% 2 +tankers 't&Nk@z Kj% 2 +tanking 't&NkIN Ib$ 2 +tanks t&Nks Ia$,Kj% 1 +tanned t&nd Jc%,Jd% 12A,6A +tanner 't&n@R K6% 2 +tanneries 't&n@rIz Kj% 3 +tanners 't&n@z Kj% 2 +tannery 't&n@rI K8% 3 +tannic 't&nIk OA% 2 +tannin 't&nIn L@% 2 +tanning 't&nIN Jb% 22A,6A +tannoy 't&noI K6% 2 +tannoys 't&noIz Kj$ 2 +tans t&nz Ja%,Kj% 12A,6A +tansies 't&nzIz Kj$ 2 +tansy 't&nzI K8$ 2 +tantalize 't&nt@laIz H2% 36A +tantalized 't&nt@laIzd Hc%,Hd% 36A +tantalizes 't&nt@laIzIz Ha% 46A +tantalizing 't&nt@laIzIN Hb% 46A +tantamount 't&nt@maUnt OA% 3 +tantrum 't&ntr@m K6% 2 +tantrums 't&ntr@mz Kj% 2 +tap t&p J4%,K6% 12A,2C,6A,14,15A,15B +tap-dancing 't&p-dAnsIN L@% 3 +tape teIp H2%,M6% 16A +tape-measure 'teIp-meZ@R K6% 3 +tape-measures 'teIp-meZ@z Kj% 3 +tape-recorder 'teIp-rI,kOd@R K6% 4 +tape-recorders 'teIp-rI,kOd@z Kj% 4 +taped teIpt Hc%,Hd% 16A +taper 'teIp@R J0%,K6% 22A,2C,6A,15B +tapered 'teIp@d Jc%,Jd% 22A,2C,6A,15B +tapering 'teIp@rIN Jb% 32A,2C,6A,15B +tapers 'teIp@z Ja%,Kj% 22A,2C,6A,15B +tapes teIps Ha%,Mj% 16A +tapestried 't&pIstrId OA% 3 +tapestries 't&pIstrIz Mj% 3 +tapestry 't&pIstrI M8% 3 +tapeworm 'teIpw3m K6% 2 +tapeworms 'teIpw3mz Kj% 2 +taping 'teIpIN Hb% 26A +tapioca ,t&pI'@Uk@ L@% 4 +tapir 'teIp@R K6$ 2 +tapirs 'teIp@z Kj$ 2 +tapped t&pt Jc%,Jd% 12A,2C,6A,14,15A,15B +tapping 't&pIN Jb% 22A,2C,6A,14,15A,15B +taproom 't&prum K6% 2 +taprooms 't&prumz Kj% 2 +taproot 't&prut K6% 2 +taproots 't&pruts Kj% 2 +taps t&ps Ja%,Kj% 12A,2C,6A,14,15A,15B +tapster 't&pst@R K6% 2 +tapsters 't&pst@z Kj% 2 +tar tAR H4%,M6% 16A +tar-macadam ,tA-m@'k&d@m L@% 4 +taradiddle 't&r@dIdl K6$ 4 +taradiddles 't&r@dIdlz Kj$ 4 +tarantella ,t&r@n'tel@ K6$ 4 +tarantellas ,t&r@n'tel@z Kj$ 4 +tarantelle ,t&r@n'tel K6$ 3 +tarantelles ,t&r@n'telz Kj$ 3 +tarantula t@'r&ntjUl@ K6$ 4 +tarantulas t@'r&ntjUl@z Kj$ 4 +tarboosh tA'buS K7$ 2 +tarbooshes tA'buSIz Kj$ 3 +tardier 'tAdI@R Or$ 3 +tardiest 'tAdIIst Os$ 3 +tardily 'tAdIlI Pu% 3 +tardiness 'tAdIn@s L@% 3 +tardy 'tAdI OD% 2 +tare te@R K6$ 1 +tares te@z Kj$ 1 +target 'tAgIt K6% 2 +targets 'tAgIts Kj% 2 +tariff 't&rIf K6% 2 +tariffs 't&rIfs Kj% 2 +tarmac 'tAm&k H5%,L@% 2 +tarmacked 'tAm&kt Hc%,Hd% 2 +tarmacking 'tAm&kIN Hb% 3 +tarmacs 'tAm&ks Ha$ 2 +tarn tAn K6$ 1 +tarnish 'tAnIS J1%,L@% 22A,6A +tarnished 'tAnISt Jc%,Jd% 22A,6A +tarnishes 'tAnISIz Ja% 32A,6A +tarnishing 'tAnISIN Jb% 32A,6A +tarns tAnz Kj$ 1 +taro 'tAr@U M6$ 2 +taros 'tAr@Uz Mj$ 2 +tarpaulin tA'pOlIn M6% 3 +tarpaulins tA'pOlInz Mj% 3 +tarpon 'tAp0n K6$ 2 +tarpons 'tAp0nz Kj$ 2 +tarradiddle 't&r@dIdl K6$ 4 +tarradiddles 't&r@dIdlz Kj$ 4 +tarragon 't&r@g@n L@% 3 +tarred tAd Hc%,Hd% 16A +tarried 't&rId Ic%,Id% 22A,2B,2C +tarries 't&rIz Ia% 22A,2B,2C +tarring 'tArIN Hb% 26A +tarry 't&rI I3% 22A,2B,2C +tarry 'tArI OA% 2 +tarrying 't&rIIN Ib% 32A,2B,2C +tars tAz Ha$,Mj$ 16A +tarsal 'tAsl K6$,OA$ 2 +tarsals 'tAslz Kj$ 2 +tarsi 'tAsaI Kj$ 2 +tarsus 'tAs@s Ki$ 2 +tart tAt H0%,K6%,OA% 115B +tartan 'tAtn M6% 2 +tartans 'tAtnz Mj% 2 +tartar 'tAt@R M6$ 2 +tartaric tA't&rIk OA% 3 +tartars 'tAt@z Mj$ 2 +tarted 'tAtId Hc%,Hd% 215B +tarting 'tAtIN Hb% 215B +tartly 'tAtlI Pu% 2 +tartness 'tAtn@s L@% 2 +tarts tAts Ha%,Kj% 115B +task tAsk H0$,K6% 16A +task-force 'tAsk-fOs K6% 2 +task-forces 'tAsk-fOsIz Kj% 3 +tasked tAskt Hc$,Hd$ 16A +tasking 'tAskIN Hb$ 26A +taskmaster 'tAskmAst@R K6% 3 +taskmasters 'tAskmAst@z Kj% 3 +tasks tAsks Ha$,Kj% 16A +tassel 't&sl K6% 2 +tasseled 't&sld OA$ 2 +tasselled 't&sld OA% 2 +tassels 't&slz Kj% 2 +taste teIst J2%,M6% 12A,2D,3A,6A +tasted 'teIstId Jc%,Jd% 22A,2D,3A,6A +tasteful 'teIstf@l OA% 2 +tastefully 'teIstf@lI Pu% 3 +tasteless 'teIstl@s OA% 2 +tastelessly 'teIstl@slI Pu% 3 +taster 'teIst@R K6% 2 +tasters 'teIst@z Kj% 2 +tastes teIsts Ja%,Mj% 12A,2D,3A,6A +tastier 'teIstI@R Or% 3 +tastiest 'teIstIIst Os% 3 +tastily 'teIstIlI Pu% 3 +tasting 'teIstIN Jb% 22A,2D,3A,6A +tasty 'teIstI OD% 2 +tat t&t J4$,L@$ 1 +tats t&ts Ja$ 1 +tatted 't&tId Jc$,Jd$ 2 +tatter 't&t@R K6$ 2 +tatterdemalion ,t&t@d@'meIlI@n K6$ 6 +tatterdemalions ,t&t@d@'meIlI@nz Kj$ 6 +tattered 't&t@d OA% 2 +tatters 't&t@z Kj% 2 +tattier 't&tI@R Or% 3 +tattiest 't&tIIst Os% 3 +tattily 't&tIlI Pu% 3 +tatting 't&tIN Jb$,L@$ 2 +tattle 't&tl J2$,L@$ 22A +tattled 't&tld Jc$,Jd$ 22A +tattler 't&tl@R K6$ 2 +tattlers 't&tl@z Kj$ 2 +tattles 't&tlz Ja$ 22A +tattling 't&tlIN Jb$ 22A +tattoo t@'tu H0%,K6% 26A +tattooed t@'tud Hc%,Hd% 26A +tattooing t@'tuIN Hb% 36A +tattoos t@'tuz Ha%,Kj% 26A +tatty 't&tI OD% 2 +taught tOt Jc%,Jd% 12A,2B,2C,6A,11,12A,13A,17,20,21 +taunt tOnt H0%,K6% 16A,14 +taunted 'tOntId Hc%,Hd% 26A,14 +taunting 'tOntIN Hb% 26A,14 +tauntingly 'tOntINlI Pu% 3 +taunts tOnts Ha%,Kj% 16A,14 +taut tOt OC% 1 +tauter 'tOt@R Or$ 2 +tautest 'tOtIst Os$ 2 +tautly 'tOtlI Pu% 2 +tautness 'tOtn@s L@% 2 +tautological ,tOt@'l0dZIkl OA% 5 +tautologies tO't0l@dZIz Mj% 4 +tautology tO't0l@dZI M8% 4 +tavern 't&v@n K6% 2 +taverns 't&v@nz Kj% 2 +tawdrier 'tOdrI@R Or$ 3 +tawdriest 'tOdrIIst Os$ 3 +tawdrily 'tOdrIlI Pu% 3 +tawdriness 'tOdrIn@s L@% 3 +tawdry 'tOdrI OD% 2 +tawny 'tOnI OA% 2 +tawse tOz K6$ 1 +tawses 'tOzIz Kj$ 2 +tax t&ks H1%,M7% 16A,14 +tax-collector 't&ks-k@,lekt@R K6% 4 +tax-collectors 't&ks-k@,lekt@z Kj% 4 +tax-free 't&ks-fri OA% 2 +taxability ,t&ks@'bIlItI L@% 5 +taxable 't&ks@bl OA% 3 +taxation t&k'seISn L@% 3 +taxed t&kst Hc%,Hd% 16A,14 +taxes 't&ksIz Ha%,Mj% 26A,14 +taxi 't&ksI J0%,K6% 22C,15A +taxicab 't&ksIk&b K6% 3 +taxicabs 't&ksIk&bz Kj% 3 +taxidermist t&k'sId@mIst K6% 4 +taxidermists t&k'sId@mIsts Kj% 4 +taxidermy 't&ksId3mI L@% 4 +taxied 't&ksId Jc%,Jd% 22C,15A +taxiing 't&ksIIN Jb% 32C,15A +taximeter 't&ksImit@R K6$ 4 +taximeters 't&ksImit@z Kj$ 4 +taxing 't&ksIN Hb% 26A,14 +taxis 't&ksIz Ja%,Kj% 22C,15A +taxonomies t&k's0n@mIz Mj$ 4 +taxonomy t&k's0n@mI M8% 4 +taxpayer 't&kspeI@R K6% 3 +taxpayers 't&kspeI@z Kj% 3 +tea ti M6% 1 +tea-bag 'ti-b&g K6% 2 +tea-bags 'ti-b&gz Kj% 2 +tea-break 'ti-breIk K6% 2 +tea-breaks 'ti-breIks Kj% 2 +tea-caddies 'ti-k&dIz Kj% 3 +tea-caddy 'ti-k&dI K8% 3 +tea-chest 'ti-tSest K6% 2 +tea-chests 'ti-tSests Kj% 2 +tea-cloth 'ti-kl0T K6% 2 +tea-cloths 'ti-kl0Ts Kj% 2 +tea-cosies 'ti-k@UzIz Kj% 3 +tea-cosy 'ti-k@UzI K8% 3 +tea-garden 'ti-gAdn K6% 3 +tea-gardens 'ti-gAdnz Kj% 3 +tea-kettle 'ti-ketl K6% 3 +tea-kettles 'ti-ketlz Kj% 3 +tea-leaf 'ti-lif Ki% 2 +tea-leaves 'ti-livz Kj% 2 +tea-parties 'ti-pAtIz Kj% 3 +tea-party 'ti-pAtI K8% 3 +tea-service 'ti-s3vIs K6% 3 +tea-services 'ti-s3vIsIz Kj% 4 +tea-set 'ti-set K6% 2 +tea-sets 'ti-sets Kj% 2 +tea-strainer 'ti-streIn@R K6% 3 +tea-strainers 'ti-streIn@z Kj% 3 +tea-table 'ti-teIbl K6% 3 +tea-tables 'ti-teIblz Kj% 3 +tea-things 'ti-TINz Kj% 2 +tea-time 'ti-taIm L@% 2 +tea-towel 'ti-taU@l K6% 3 +tea-towels 'ti-taU@lz Kj% 3 +tea-tray 'ti-treI K6% 2 +tea-trays 'ti-treIz Kj% 2 +tea-trolley 'ti-tr0lI K6% 3 +tea-trolleys 'ti-tr0lIz Kj% 3 +tea-urn 'ti-3n K6% 2 +tea-urns 'ti-3nz Kj% 2 +tea-wagon 'ti-w&g@n K6% 3 +tea-wagons 'ti-w&g@nz Kj% 3 +teacake 'tikeIk K6% 2 +teacakes 'tikeIks Kj% 2 +teach titS J5% 12A,2B,2C,6A,11,12A,13A,17,20,21 +teach-in 'titS-In K6$ 2 +teach-ins 'titS-Inz Kj$ 2 +teachable 'titS@bl OA% 3 +teacher 'titS@R K6% 2 +teachers 'titS@z Kj% 2 +teaches 'titSIz Ja% 22A,2B,2C,6A,11,12A,13A,17,20,21 +teaching 'titSIN Jb%,M6% 22A,2B,2C,6A,11,12A,13A,17,20,21 +teachings 'titSINz Mj% 2 +teacup 'tikVp K6% 2 +teacups 'tikVps Kj% 2 +teahouse 'tihaUs K6% 2 +teahouses 'tihaUzIz Kj% 3 +teak tik L@% 1 +teal til K9$ 1 +team tim I0%,K6% 12C +teamed timd Ic%,Id% 12C +teaming 'timIN Ib% 22C +teams timz Ia%,Kj% 12C +teamster 'timst@R K6$ 2 +teamsters 'timst@z Kj$ 2 +teamwork 'timw3k L@% 2 +teapot 'tip0t K6% 2 +teapots 'tip0ts Kj% 2 +tear tI@R K6% 1 +tear te@R J5%,K6% 12A,2C,3A,6A,15A,15B,22 +tear-drop 'ti@-dr0p K6% 2 +tear-drops 'ti@-dr0ps Kj% 2 +tear-gas 'ti@-g&s L@% 2 +tearaway 'te@r@weI K6%,OA% 3 +tearaways 'te@r@weIz Kj% 3 +tearful 'tI@f@l OA% 2 +tearfully 'tI@f@lI Pu% 3 +tearing 'te@rIN Jb%,L@%,Oq% 22A,2C,3A,6A,15A,15B,22 +tearless 'tI@l@s OA$ 2 +tearoom 'tirum K6% 2 +tearooms 'tirumz Kj% 2 +tears tI@z Kj% 1 +tears te@z Ja%,Kj% 12A,2C,3A,6A,15A,15B,22 +teas tiz Mj% 1 +tease tiz H2%,K6% 16A,15A,15B +teased tizd Hc%,Hd% 16A,15A,15B +teasel 'tizl K6% 2 +teasels 'tizlz Kj% 2 +teaser 'tiz@R K6% 2 +teasers 'tiz@z Kj% 2 +teases 'tizIz Ha%,Kj% 26A,15A,15B +teashop 'tiS0p K6% 2 +teashops 'tiS0ps Kj% 2 +teasing 'tizIN Hb% 26A,15A,15B +teasingly 'tizINlI Pu% 3 +teaspoon 'tispun K6% 2 +teaspoonful 'tispunfUl K6% 3 +teaspoonfuls 'tispunfUlz Kj% 3 +teaspoons 'tispunz Kj% 2 +teat tit K6% 1 +teats tits Kj% 1 +teazel 'tizl K6$ 2 +teazels 'tizlz Kj$ 2 +teazle 'tizl K6$ 2 +teazles 'tizlz Kj$ 2 +tec tek K6$ 1 +tech tek K6$ 1 +technical 'teknIkl OA% 3 +technicalities ,teknI'k&lItIz Mj% 5 +technicality ,teknI'k&lItI M8% 5 +technically 'teknIklI Pu% 3 +technician tek'nISn K6% 3 +technicians tek'nISnz Kj% 3 +technique tek'nik M6% 2 +techniques tek'niks Mj% 2 +technocracies tek'n0kr@sIz Mj$ 4 +technocracy tek'n0kr@sI M8$ 4 +technocrat 'tekn@kr&t K6% 3 +technocrats 'tekn@kr&ts Kj% 3 +technological ,tekn@'l0dZIkl OA% 5 +technologies tek'n0l@dZIz Mj% 4 +technologist tek'n0l@dZIst K6% 4 +technologists tek'n0l@dZIsts Kj% 4 +technology tek'n0l@dZI M8% 4 +techs teks Kj$ 1 +techy 'tetSI OA% 2 +tecs teks Kj$ 1 +teddies 'tedIz Kj% 2 +teddy 'tedI K8% 2 +tedious 'tidI@s OA% 3 +tediously 'tidI@slI Pu% 4 +tediousness 'tidI@sn@s L@% 4 +tedium 'tidI@m L@% 3 +tee ti J5$,K6$ 12A,2C,15B +tee-shirt 'ti-S3t K6% 2 +tee-shirts 'ti-S3ts Kj% 2 +teed tid Jc$,Jd$ 12A,2C,15B +teeing 'tiIN Jb$ 22A,2C,15B +teem tim I0% 12A,2C,3A +teemed timd Ic%,Id% 12A,2C,3A +teeming 'timIN Ib% 22A,2C,3A +teems timz Ia% 12A,2C,3A +teenage 'tineIdZ OA% 2 +teenager 'tineIdZ@R K6% 3 +teenagers 'tineIdZ@z Kj% 3 +teenier 'tinI@R Or% 3 +teeniest 'tinIIst Os% 3 +teens tinz Kj% 1 +teeny 'tinI OD% 2 +tees tiz Ja$,Kj$ 12A,2C,15B +teeter 'tit@R I0% 22C +teetered 'tit@d Ic%,Id% 22C +teetering 'tit@rIN Ib% 32C +teeters 'tit@z Ia% 22C +teeth tiT Kj% 1 +teethe tiD I2$ 12A +teethed tiDd Ic$,Id$ 12A +teethes tiDz Ia$ 12A +teething 'tiDIN Ib% 22A +teetotal ti't@Utl OA% 3 +teetotaller ti't@Utl@R K6% 4 +teetotallers ti't@Utl@z Kj% 4 +teetotum ti't@Ut@m K6$ 3 +teetotums ti't@Ut@mz Kj$ 3 +teg teg K6$ 1 +tegs tegz Kj$ 1 +tegument 'tegjUm@nt K6$ 3 +teguments 'tegjUm@nts Kj$ 3 +tel tel Y~% 1 +telecast 'telIkAst H5$,Hc$,Hd$,K6$ 3 +telecasting 'telIkAstIN Hb$ 4 +telecasts 'telIkAsts Ha$,Kj$ 3 +telecommunication ,telIk@,mjunI'keISn M6$ 7 +telecommunications ,telIk@,mjunI'keISnz Kj% 7 +telegram 'telIgr&m K6% 3 +telegrams 'telIgr&mz Kj% 3 +telegraph 'telIgrAf J0%,K6% 32A,6A,11,12A,13A +telegraph-line 'telIgrAf-laIn K6% 4 +telegraph-lines 'telIgrAf-laInz Kj% 4 +telegraph-pole 'telIgrAf-p@Ul K6% 4 +telegraph-poles 'telIgrAf-p@Ulz Kj% 4 +telegraph-post 'telIgrAf-p@Ust K6% 4 +telegraph-posts 'telIgrAf-p@Usts Kj% 4 +telegraph-wire 'telIgrAf-waI@R K6% 4 +telegraph-wires 'telIgrAf-waI@z Kj% 4 +telegraphed 'telIgrAft Jc%,Jd% 32A,6A,11,12A,13A +telegrapher tI'legr@f@R K6% 4 +telegraphers tI'legr@f@z Kj% 4 +telegraphese ,telIgr@'fiz L@$ 4 +telegraphic ,telI'gr&fIk OA% 4 +telegraphically ,telI'gr&fIklI Pu% 5 +telegraphing 'telIgrAfIN Jb% 42A,6A,11,12A,13A +telegraphist tI'legr@fIst K6% 4 +telegraphists tI'legr@fIsts Kj% 4 +telegraphs 'telIgrAfs Ja%,Kj% 32A,6A,11,12A,13A +telegraphy tI'legr@fI L@% 4 +telemetry tI'lem@trI L@$ 4 +teleological ,telI@'l0dZIkl OA$ 6 +teleologies ,telI'0l@dZIz Mj$ 5 +teleologist telI'0l@dZIst K6$ 5 +teleologists telI'0l@dZIsts Kj$ 5 +teleology ,telI'0l@dZI M8$ 5 +telepathic ,telI'p&TIk OA% 4 +telepathist tI'lep@TIst K6$ 4 +telepathists tI'lep@TIsts Kj$ 4 +telepathy tI'lep@TI L@% 4 +telephone 'telIf@Un J2%,M6% 32A,4A,6A,11,12A,13A +telephoned 'telIf@Und Jc%,Jd% 32A,4A,6A,11,12A,13A +telephones 'telIf@Unz Ja%,Mj% 32A,4A,6A,11,12A,13A +telephonic ,telI'f0nIk OA% 4 +telephoning 'telIf@UnIN Jb% 42A,4A,6A,11,12A,13A +telephonist tI'lef@nIst K6% 4 +telephonists tI'lef@nIsts Kj% 4 +telephony tI'lef@nI L@% 4 +telephoto ,telI'f@Ut@U L@% 4 +telephotograph ,telI'f@Ut@grAf K6$ 5 +telephotographs ,telI'f@Ut@grAfs Kj$ 5 +telephotography ,telIf@'t0gr@fI L@$ 6 +teleprinter 'telIprInt@R K6% 4 +teleprinters 'telIprInt@z Kj% 4 +teleprompter 'telIpr0mpt@R K6% 4 +teleprompters 'telIpr0mpt@z Kj% 4 +telescope 'telIsk@Up J2%,K6% 32A,6A +telescoped 'telIsk@Upt Jc%,Jd% 32A,6A +telescopes 'telIsk@Ups Ja%,Kj% 32A,6A +telescopic ,telI'sk0pIk OA% 4 +telescopically ,telI'sk0pIklI Pu% 5 +telescoping 'telIsk@UpIN Jb$ 42A,6A +teletypewriter ,telI'taIpraIt@R K6$ 5 +teletypewriters ,telI'taIpraIt@z Kj$ 5 +televise 'telIvaIz H2% 36A +televised 'telIvaIzd Hc%,Hd% 36A +televises 'telIvaIzIz Ha% 46A +televising 'telIvaIzIN Hb% 46A +television 'telIvIZn M6% 4 +televisions 'telIvIZnz Mj% 4 +telex 'teleks K7% 2 +telexes 'teleksIz Kj% 3 +telfer 'telf@R K6$ 2 +telfers 'telf@z Kj$ 2 +tell tel J5* 12A,3A,6A,8,10,11,12A,13A,14,15A,15B,17,20,21 +teller 'tel@R K6% 2 +tellers 'tel@z Kj% 2 +tellies 'telIz Kj% 2 +telling 'telIN Jb%,OA% 22A,3A,6A,8,10,11,12A,13A,14,15A,15B,17,20,21 +tellingly 'telINlI Pu% 3 +tells telz Ja% 12A,3A,6A,8,10,11,12A,13A,14,15A,15B,17,20,21 +telltale 'telteIl K6% 2 +telltales 'telteIlz Kj% 2 +telly 'telI K8% 2 +telpher 'telf@R K6$ 2 +telphers 'telf@z Kj$ 2 +temerity tI'merItI L@% 4 +temp temp K6% 1 +temper 'temp@R J0%,M6% 22A,6A,15A +tempera 'temp@r@ L@% 3 +temperament 'tempr@m@nt M6% 3 +temperamental ,tempr@'mentl OA% 4 +temperamentally ,tempr@'ment@lI Pu% 5 +temperaments 'tempr@m@nts Mj% 3 +temperance 'temp@r@ns L@% 3 +temperate 'temp@r@t OA% 3 +temperately 'temp@r@tlI Pu% 4 +temperateness 'temp@r@tn@s L@$ 4 +temperature 'tempr@tS@R M6% 3 +temperatures 'tempr@tS@z Mj% 3 +tempered 'temp@d Jc%,Jd%,Ot% 22A,6A,15A +tempering 'temp@rIN Jb% 32A,6A,15A +tempers 'temp@z Ja%,Mj% 22A,6A,15A +tempest 'tempIst K6% 2 +tempest-swept 'tempIst-swept OA$ 3 +tempest-tossed 'tempIst-0st OA$ 3 +tempests 'tempIsts Kj% 2 +tempestuous tem'pestSU@s OA% 4 +tempi 'tempi Kj$ 2 +template 'templIt K6% 2 +templates 'templIts Kj% 2 +temple 'templ K6% 2 +temples 'templz Kj% 2 +templet 'templIt K6$ 2 +templets 'templIts Kj$ 2 +tempo 'temp@U K6% 2 +temporal 'temp@r@l OA% 3 +temporality ,temp@'r&lItI L@$ 5 +temporalty 'temp@r@ltI L@$ 4 +temporarily 'tempr@r@lI Pu% 4 +temporariness 'tempr@rIn@s L@% 4 +temporary 'tempr@rI OA% 3 +temporize 'temp@raIz I2% 32A +temporized 'temp@raIzd Ic%,Id% 32A +temporizes 'temp@raIzIz Ia% 42A +temporizing 'temp@raIzIN Ib% 42A +tempos 'temp@Uz Kj$ 2 +temps temps Kj% 1 +tempt tempt H0% 16A,14,17 +temptation temp'teISn M6% 3 +temptations temp'teISnz Mj% 3 +tempted 'temptId Hc%,Hd% 26A,14,17 +tempter 'tempt@R K6% 2 +tempters 'tempt@z Kj% 2 +tempting 'temptIN Hb% 26A,14,17 +temptingly 'temtINlI Pu% 3 +temptress 'temptrIs K7% 2 +temptresses 'temptrIsIz Kj% 3 +tempts tempts Ha% 16A,14,17 +ten ten K6%,OA% 1 +tenability ,ten@'bIlItI L@% 5 +tenable 'ten@bl OA% 3 +tenacious tI'neIS@s OA% 3 +tenaciously tI'neIS@slI Pu% 4 +tenaciousness tI'neIS@sn@s L@% 4 +tenacity tI'n&sItI L@% 4 +tenancies 'ten@nsIz Mj% 3 +tenancy 'ten@nsI M8% 3 +tenant 'ten@nt H0$,K6% 2 +tenanted 'ten@ntId Hc$,Hd% 3 +tenanting 'ten@ntIN Hb$ 3 +tenantries 'ten@ntrIz Kj$ 3 +tenantry 'ten@ntrI K8$ 3 +tenants 'ten@nts Ha$,Kj% 2 +tench tentS K9$ 1 +tend tend J0% 12C,4A,6A +tended 'tendId Jc%,Jd% 22C,4A,6A +tendencies 'tend@nsIz Mj% 3 +tendency 'tend@nsI M8% 3 +tendentious ten'denS@s OA% 3 +tendentiously ten'denS@slI Pu% 4 +tendentiousness ten'denS@sn@s L@% 4 +tender 'tend@R J0%,K6%,OC% 22A,3A,6A,12A,13A +tendered 'tend@d Jc%,Jd% 22A,3A,6A,12A,13A +tenderer 'tend@r@R Or% 3 +tenderest 'tend@rIst Os% 3 +tenderfoot 'tend@fUt K6% 3 +tenderfoots 'tend@fUts Kj$ 3 +tenderhearted ,tend@'hAtId OA% 4 +tendering 'tend@rIN Jb% 32A,3A,6A,12A,13A +tenderloin 'tend@loIn L@$ 3 +tenderly 'tend@lI Pu% 3 +tenderness 'tend@n@s L@% 3 +tenders 'tend@z Ja%,Kj% 22A,3A,6A,12A,13A +tending 'tendIN Jb% 22C,4A,6A +tendon 'tend@n K6% 2 +tendons 'tend@nz Kj% 2 +tendril 'tendr@l K6% 2 +tendrils 'tendr@lz Kj% 2 +tends tendz Ja% 12C,4A,6A +tenement 'ten@m@nt K6% 3 +tenement-house 'ten@m@nt-haUs K6% 4 +tenement-houses 'ten@m@nt-haUzIz Kj% 5 +tenements 'ten@m@nts Kj% 3 +tenet 'tenIt K6% 2 +tenets 'tenIts Kj% 2 +tenfold 'tenf@Uld Pu% 2 +tenner 'ten@R K6% 2 +tenners 'ten@z Kj% 2 +tennis 'tenIs L@% 2 +tennis-court 'tenIs-kOt K6% 3 +tennis-courts 'tenIs-kOts Kj% 3 +tennis-elbow ,tenIs-'elb@U L@% 4 +tenon 'ten@n K6$ 2 +tenons 'ten@nz Kj$ 2 +tenor 'ten@R K6% 2 +tenors 'ten@z Kj% 2 +tenpence 'tenp@ns K6% 2 +tenpences 'tenp@nsIz Kj% 3 +tenpin 'tenpIn K6% 2 +tenpins 'tenpInz Kj$ 2 +tens tenz Kj% 1 +tense tens J2%,K6%,OB% 12A,6A +tensed tenst Jc%,Jd% 12A,6A +tensely 'tenslI Pu% 2 +tenseness 'tensn@s L@% 2 +tenser 'tens@R Or% 2 +tenses 'tensIz Ja%,Kj% 22A,6A +tensest 'tensIst Os% 2 +tensile 'tensaIl OA$ 2 +tensing 'tensIN Jb% 22A,6A +tension 'tenSn M6% 2 +tensions 'tenSnz Mj% 2 +tensity 'tensItI L@$ 3 +tent tent K6% 1 +tent-peg 'tent-peg K6% 2 +tent-pegs 'tent-pegz Kj% 2 +tentacle 'tent@kl K6% 3 +tentacles 'tent@klz Kj% 3 +tentative 'tent@tIv OA% 3 +tentatively 'tent@tIvlI Pu% 4 +tenterhooks 'tent@hUks Kj% 3 +tenth tenT K6%,OA% 1 +tenthly 'tenTlI Pu% 2 +tenths tenTs Kj% 1 +tents tents Kj% 1 +tenuity tI'njuItI L@$ 3 +tenuous 'tenjU@s OA% 3 +tenuously 'tenjU@slI Pu% 4 +tenure 'tenjU@R M6% 2 +tenures 'tenjU@z Mj% 2 +tepee 'tipi K6$ 2 +tepees 'tipiz Kj$ 2 +tepid 'tepId OA% 2 +tepidity te'pIdItI L@$ 4 +tepidly 'tepIdlI Pu% 3 +tepidness 'tepIdn@s L@% 3 +tercentenaries ,t3sen'tin@rIz Kj% 5 +tercentenary ,t3sen'tin@rI K8% 5 +tercentennial ,t3sen'tenI@l K6% 5 +tercentennials ,t3sen'tenI@lz Kj% 5 +tergiversate 't3dZIv@seIt I2$ 4 +tergiversated 't3dZIv@seItId Ic$,Id$ 5 +tergiversates 't3dZIv@seIts Ia$ 4 +tergiversating 't3dZIv@seItIN Ib$ 5 +tergiversation ,t3dZIv@'seISn L@$ 5 +term t3m H0%,K6% 123 +termagant 't3m@g@nt K6$ 3 +termagants 't3m@g@nts Kj$ 3 +termed t3md Hc%,Hd% 123 +terminable 't3mIn@bl OA$ 4 +terminal 't3mInl K6%,OA% 3 +terminally 't3mIn@lI Pu% 4 +terminals 't3mInlz Kj% 3 +terminate 't3mIneIt J2% 32A,6A,15A +terminated 't3mIneItId Jc%,Jd% 42A,6A,15A +terminates 't3mIneIts Ja% 32A,6A,15A +terminating 't3mIneItIN Jb% 42A,6A,15A +termination ,t3mI'neISn M6% 4 +terminations ,t3mI'neISnz Mj% 4 +terming 't3mIN Hb% 223 +terminological ,t3mIn@'l0dZIkl OA$ 6 +terminologies ,t3mI'n0l@dZIz Mj$ 5 +terminology ,t3mI'n0l@dZI M8% 5 +terminus 't3mIn@s K7% 3 +terminuses 't3mIn@sIz Kj% 4 +termite 't3maIt K6% 2 +termites 't3maIts Kj% 2 +terms t3mz Ha%,Kj% 123 +tern t3n K6% 1 +terns t3nz Kj% 1 +terra firma ,ter@ 'f3m@ L@% 4 +terra incognita ,ter@ in'k0gnIt@ L@$ 6 +terra-cotta ,ter@-'k0t@ L@% 4 +terrace 'ter@s H2%,K6% 26A +terraced 'ter@st Hc%,Hd% 26A +terraces 'ter@sIz Ha%,Kj% 36A +terracing 'ter@sIN Hb% 36A +terrain te'reIn L@% 2 +terrapin 'ter@pIn K6% 3 +terrapins 'ter@pInz Kj% 3 +terrestrial tI'restrI@l OA% 4 +terrible 'ter@bl OA% 3 +terribly 'ter@blI Pu% 3 +terrier 'terI@R K6% 3 +terriers 'terI@z Kj% 3 +terrific t@'rIfIk OA% 3 +terrifically t@'rIfIklI Pu% 4 +terrified 'terIfaId Hc%,Hd% 36A,15A +terrifies 'terIfaIz Ha% 36A,15A +terrify 'terIfaI H3% 36A,15A +terrifying 'terIfaIIN Hb% 46A,15A +territorial ,terI'tOrI@l K6%,OA% 5 +territorials ,terI'tOrI@lz Kj% 5 +territories 'terItrIz Mj% 3 +territory 'terItrI M8% 3 +terror 'ter@R M6% 2 +terror-stricken 'ter@-strIk@n OA% 4 +terror-struck 'ter@-strVk OA% 3 +terrorism 'ter@rIz@m L@% 4 +terrorist 'ter@rIst K6% 3 +terrorists 'ter@rIsts Kj% 3 +terrorize 'ter@raIz H2% 36A +terrorized 'ter@raIzd Hc%,Hd% 36A +terrorizes 'ter@raIzIz Ha% 46A +terrorizing 'ter@raIzIN Hb% 46A +terrors 'ter@z Mj% 2 +terse t3s OB% 1 +tersely 't3slI Pu% 2 +terseness 't3sn@s L@% 2 +terser 't3s@R Or$ 2 +tersest 't3sIst Os$ 2 +tertian 't3Sn OA$ 2 +tertiary 't3S@rI OA$ 3 +terylene 'ter@lin L@% 3 +tessellated 'tes@leItId OA% 4 +test test H0%,K6% 16A,15A +test-drive 'test-draIv H5$,K6% 2 +test-driven 'test-drIvn Hd$ 3 +test-drives 'test-draIvz Ha$,Kj$ 2 +test-driving 'test-draIvIN Hb$ 3 +test-drove 'test-dr@Uv Hc$ 2 +test-tube 'test-tjub K6% 2 +test-tubes 'test-tjubz Kj% 2 +testament 'test@m@nt K6% 3 +testamentary ,test@'mentrI OA$ 4 +testaments 'test@m@nts Kj% 3 +testate 'testeIt K6$,OA$ 2 +testates 'testeIts Kj$ 2 +testator te'steIt@R K6$ 3 +testators te'steIt@z Kj$ 3 +testatrix te'steItrIks K7$ 3 +testatrixes te'steItrIksIz Kj$ 4 +testbed 'testbed K6% 2 +testbeds 'testbedz Kj$ 2 +tested 'testId Hc%,Hd% 26A,15A +testes 'testiz Kj% 2 +testicle 'testIkl K6% 3 +testicles 'testIklz Kj% 3 +testier 'testI@R Or$ 3 +testiest 'testIIst Os$ 3 +testified 'testIfaId Jc%,Jd% 32A,3A,6A,9 +testifies 'testIfaIz Ja% 32A,3A,6A,9 +testify 'testIfaI J3% 32A,3A,6A,9 +testifying 'testIfaIIN Jb% 42A,3A,6A,9 +testily 'testIlI Pu% 3 +testimonial ,testI'm@UnI@l K6% 5 +testimonials ,testI'm@UnI@lz Kj% 5 +testimonies 'testIm@nIz Mj% 4 +testimony 'testIm@nI M8% 4 +testiness 'testIn@s L@% 3 +testing 'testIN Hb% 26A,15A +testis 'testIs Ki$ 2 +tests tests Ha%,Kj% 16A,15A +testy 'testI OD% 2 +tetanus 'tet@n@s L@% 3 +tetchier 'tetSI@R Or% 3 +tetchiest 'tetSIIst Os% 3 +tetchily 'tetSIlI Pu% 3 +tetchiness 'tetSIn@s L@% 3 +tetchy 'tetSI OD% 2 +tether 'teD@R H0%,K6% 26A,15A +tethered 'teD@d Hc%,Hd% 26A,15A +tethering 'teD@rIN Hb% 36A,15A +tethers 'teD@z Ha%,Kj% 26A,15A +text tekst M6% 1 +textbook 'teksbUk K6% 2 +textbooks 'teksbUks Kj% 2 +textile 'tekstaIl K6%,Oq% 2 +textiles 'tekstaIlz Kj% 2 +texts teksts Mj% 1 +textual 'tekstSU@l OA% 3 +texture 'tekstS@R M6% 2 +textured 'tekstS@d OA% 2 +textures 'tekstS@z Mj% 2 +thalidomide T@'lId@maId L@% 4 +than D&n V-* 1 +thane TeIn K6$ 1 +thanes TeInz Kj$ 1 +thank T&Nk H0% 16A,11,14,17 +thank-offering T&Nk-'0f@rIN K6% 4 +thank-offerings T&Nk-'0f@rINz Kj% 4 +thanked T&Nkt Hc%,Hd% 16A,11,14,17 +thankful 'T&Nkf@l OA% 2 +thankfully 'T&Nkf@lI Pu% 3 +thankfulness 'T&Nkf@ln@s L@% 3 +thanking 'T&NkIN Hb% 26A,11,14,17 +thankless 'T&Nkl@s OA% 2 +thanks T&Nks Ha%,Kj% 16A,11,14,17 +thanksgiving T&nks'gIvIN M6% 3 +thanksgivings T&nks'gIvINz Mj% 3 +that D&t OA*,Pu%,Qx%,Qz*,V-* 1 +that'd 'D&t@d Gf% 2 +that'll 'D&tl Gf% 2 +that's D&ts Gf% 1 +thatch T&tS H1%,L@% 16A +thatched T&tSt Hc%,Hd% 16A +thatcher 'T&tS@R K6% 2 +thatchers 'T&tS@z Kj% 2 +thatches 'T&tSIz Ha% 26A +thatching 'T&tSIN Hb% 26A +thaw TO J0%,K6% 12A,2C,6A,15B +thawed TOd Jc%,Jd% 12A,2C,6A,15B +thawing 'TOIN Jb% 22A,2C,6A,15B +thaws TOz Ja%,Kj% 12A,2C,6A,15B +the D@ Pu$,R-* 1 +theatre 'TI@t@R M6% 3 +theatregoer 'TI@t@g@U@R K6% 5 +theatregoers 'TI@t@g@U@z Kj% 5 +theatres 'TI@t@z Mj% 3 +theatrical TI'&trIkl K6%,OA% 4 +theatrically TI'&trIklI Pu% 4 +theatricals TI'&trIklz Kj% 4 +thee Di Qx$ 1 +theft Teft M6% 1 +thefts Tefts Mj% 1 +their De@R OA* 1 +theirs De@z Qx% 1 +theism 'TiIz@m L@$ 3 +theist 'TiIst K6$ 2 +theistic Ti'IstIk OA$ 3 +theistical Ti'IstIk@l OA$ 4 +theists 'TiIsts Kj$ 2 +them Dem Qx* 1 +thematic TI'm&tIk OA% 3 +theme Tim K6% 1 +themes Timz Kj% 1 +themselves D@m'selvz Qx% 2 +then Den Pu* 1 +thence Dens Pu% 1 +thenceforth ,Dens'fOT Pu% 2 +thenceforward ,Dens'fOw@d Pu% 3 +theocracies TI'0kr@sIz Mj$ 4 +theocracy TI'0kr@sI M8$ 4 +theocratic ,TI@'kr&tIk OA$ 4 +theodolite TI'0d@laIt K6$ 4 +theodolites TI'0d@laIts Kj$ 4 +theologian ,TI@'l@UdZ@n K6% 4 +theologians ,TI@'l@UdZ@nz Kj% 4 +theological ,TI@'l0dZIkl OA% 5 +theologically ,TI@'l0dZIklI Pu% 5 +theologies TI'0l@dZIz Mj% 4 +theology TI'0l@dZI M8% 4 +theorem 'TI@r@m K6% 3 +theorems 'TI@r@mz Kj% 3 +theoretic TI@'retIk OA% 4 +theoretical TI@'retIkl OA% 5 +theoretically TI@'retIklI Pu% 5 +theoretician ,TI@r@'tISn K6% 5 +theoreticians ,TI@r@'tISnz Kj% 5 +theories 'TI@rIz Mj% 3 +theorist 'TI@rIst K6% 3 +theorists 'TI@rIsts Kj% 3 +theorize 'TI@raIz I2% 32A,3A +theorized 'TI@raIzd Ic%,Id% 32A,3A +theorizes 'TI@raIzIz Ia% 42A,3A +theorizing 'TI@raIzIN Ib% 42A,3A +theory 'TI@rI M8% 3 +theosophical ,Ti@'s0fIkl OA$ 5 +theosophist TI'0s@fIst K6$ 4 +theosophists TI'0s@fIsts Kj$ 4 +theosophy Ti'0s@fI L@$ 4 +therapeutic ,Ter@'pjutIk OA% 4 +therapeutical ,Ter@'pjutIkl OA$ 5 +therapeutics ,Ter@'pjutIks Lk$ 4 +therapies 'Ter@pIz Mj% 3 +therapist 'Ter@pIst K6% 3 +therapists 'Ter@pIsts Kj% 3 +therapy 'Ter@pI M8% 3 +there De@R Pu*,W-% 1 +there's De@z Gh% 1 +thereabout 'De@r@baUt Pu$ 3 +thereabouts 'De@r@baUts Pu% 3 +thereafter De@'rAft@R Pu% 3 +thereby De@'baI Pu% 2 +therefore 'De@fOR Pu% 2 +therefrom De@'fr0m Pu% 2 +therein De@'rIn Pu% 2 +thereinafter ,De@rIn'Aft@R Pu$ 4 +thereof De@'r0v Pu% 2 +thereon De@'r0n Pu% 2 +thereto De@'tu Pu% 2 +thereunder De@'rVnd@R Pu% 3 +thereupon ,De@r@'p0n Pu% 3 +therewith De@'wID Pu% 2 +therewithal 'De@wIDOl Pu$ 3 +therm T3m K6% 1 +thermal 'T3ml K6%,OA% 2 +thermally 'T3m@lI Pu% 3 +thermals 'T3mlz Kj% 2 +thermionic ,T3mI'0nIk OA$ 4 +thermo- ,T3m@U- U-% 2 +thermodynamics ,T3m@UdaI'n&mIks Lk% 5 +thermometer T@'m0mIt@R K6% 4 +thermometers T@'m0mIt@z Kj% 4 +thermonuclear ,T3m@U'njuklI@R OA% 5 +thermoplastic ,T3m@U'pl&stIk K6$,OA$ 4 +thermoplastics ,T3m@U'pl&stIks Kj$ 4 +thermos 'T3m@s K7% 2 +thermoses 'T3m@sIz Kj% 3 +thermosetting 'T3m@UsetIN OA$ 4 +thermostat 'T3m@st&t K6% 3 +thermostatic ,T3m@'st&tIk OA% 4 +thermostatically ,T3m@'st&tIklI Pu% 5 +thermostats 'T3m@st&ts Kj% 3 +therms T3mz Kj% 1 +thesaurus TI'sOr@s K7% 3 +thesauruses TI'sOr@sIz Kj% 4 +these Diz OA*,Qx* 1 +theses 'Tisiz Kj% 2 +thesis 'TisIs Ki% 2 +thews Tjuz Kj$ 1 +they DeI Qx* 1 +they'd DeId Gf% 1 +they'll DeIl Gf% 1 +they're De@R Gf% 1 +they've DeIv Gf% 1 +thick TIk L@%,OC%,Pu% 1 +thick-headed TIk-'hedId OA% 3 +thick-set 'TIk-set OA% 2 +thick-skinned 'TIk-skInd OA% 2 +thicken 'TIk@n J0% 2 +thickened 'TIk@nd Jc%,Jd% 2 +thickening 'TIk@nIN Jb%,L@% 3 +thickens 'TIk@nz Ja% 2 +thicker 'TIk@R Or% 2 +thickest 'TIkIst Os% 2 +thicket 'TIkIt K6% 2 +thickets 'TIkIts Kj$ 2 +thickly 'TIklI Pu% 2 +thickness 'TIkn@s M7% 2 +thicknesses 'TIkn@sIz Mj% 3 +thief Tif Ki% 1 +thieve Tiv J2% 12A,6A +thieved Tivd Jc%,Jd% 12A,6A +thievery 'Tiv@rI L@$ 3 +thieves Tivz Ja%,Kj% 12A,6A +thieving 'TivIN Jb% 22A,6A +thievish 'TivIS OA$ 2 +thievishly 'TivISlI Pu$ 3 +thigh TaI K6% 1 +thighbone 'TaIb@Un K6% 2 +thighbones 'TaIb@Unz Kj% 2 +thighs TaIz Kj% 1 +thimble 'TImbl K6% 2 +thimbleful 'TImblfUl K6% 3 +thimblefuls 'TImblfUlz Kj% 3 +thimbles 'TImblz Kj% 2 +thin TIn J4%,OE%,Pu% 12A,2C,6A,15B +thin-skinned 'TIn-skInd OA% 2 +thine DaIn OA$,Qx$ 1 +thing TIN K6* 1 +thingmabob 'TINm@b0b K6$ 3 +thingmabobs 'TINm@b0bz Kj$ 3 +thingmajig 'TINm@dZIg K6$ 3 +thingmajigs 'TINm@dZIgz Kj$ 3 +things TINz Kj* 1 +thingumabob 'TIN@m@b0b K6$ 4 +thingumabobs 'TIN@m@b0bz Kj$ 4 +thingumajig 'TIN@m@dZIg K6$ 4 +thingumajigs 'TIN@m@dZIgz Kj$ 4 +thingummies 'TIN@mIz Kj$ 3 +thingummy 'TIN@mI K8$ 3 +think TINk J5*,K6% 12A,2B,2C,3A,6A,7A,8,9,10,15B,22,25 +think-tank 'TINk-t&Nk K6% 2 +think-tanks 'TINk-t&Nks Kj% 2 +thinkable 'TINk@bl OA$ 3 +thinker 'TINk@R K6% 2 +thinkers 'TINk@z Kj% 2 +thinking 'TINkIN Jb%,L@%,OA% 22A,2B,2C,3A,6A,7A,8,9,10,15B,22,25 +thinks TINks Ja%,Kj% 12A,2B,2C,3A,6A,7A,8,9,10,15B,22,25 +thinly 'TInlI Pu% 2 +thinned TInd Jc%,Jd% 12A,2C,6A,15B +thinner 'TIn@R Or% 2 +thinness 'TIn+n@s L@% 2 +thinnest 'TInIst Os% 2 +thinning 'TInIN Jb% 22A,2C,6A,15B +thins TInz Ja% 12A,2C,6A,15B +third T3d K6%,OA% 1 +third-rate 'T3d-reIt OA% 2 +third-rater T3d-'reIt@R K6% 3 +third-raters T3d-'reIt@z Kj% 3 +thirdly 'T3dlI Pu% 2 +thirds T3dz Kj% 1 +thirst T3st H0%,L@% 12A,3A +thirsted 'T3stId Hc%,Hd% 22A,3A +thirstier 'T3stI@R Or% 3 +thirstiest 'T3stIIst Os% 3 +thirstily 'T3stIlI Pu% 3 +thirsting 'T3stIN Hb% 22A,3A +thirsts T3sts Ha% 12A,3A +thirsty 'T3stI OD% 2 +thirteen ,T3'tin K6%,OA% 2 +thirteens ,T3'tinz Kj% 2 +thirteenth ,T3'tinT K6%,OA% 2 +thirteenths ,T3'tinTs Kj% 2 +thirties 'T3tIz Kj% 2 +thirtieth 'T3tI@T K6%,OA% 3 +thirtieths 'T3tI@Ts Kj% 3 +thirty 'T3tI K8%,OA% 2 +this DIs OA*,Pu%,Qx* 1 +thistle 'TIsl K6% 2 +thistledown 'TIsldaUn L@% 3 +thistles 'TIslz Kj% 2 +thither 'DID@R Pu% 2 +tho' D@U Pu%,V-% 1 +thole T@Ul K6$ 1 +tholepin 'T@UlpIn K6$ 2 +tholepins 'T@UlpInz Kj$ 2 +tholes T@Ulz Kj$ 1 +thong T0N K6% 1 +thongs T0Nz Kj% 1 +thorax 'TOr&ks K7% 2 +thoraxes 'TOr&ksIz Kj$ 3 +thorn TOn M6% 1 +thornier 'TOnI@R Or% 3 +thorniest 'TOnIIst Os% 3 +thorns TOnz Mj% 1 +thorny 'TOnI OD% 2 +thorough 'TVr@ OA% 2 +thoroughbred 'TVr@bred K6%,OA% 3 +thoroughbreds 'TVr@bredz Kj% 3 +thoroughfare 'TVr@fe@R K6% 3 +thoroughfares 'TVr@fe@z Kj% 3 +thoroughgoing 'TVr@g@UIN OA% 4 +thoroughly 'TVr@lI Pu% 3 +thoroughness 'TVr@n@s L@% 3 +those D@Uz OA*,Qx* 1 +thou DaU Qx$ 1 +though D@U Pu%,V-* 1 +thought TOt Jc*,Jd*,M6* 12A,2B,2C,3A,6A,7A,8,9,10,15B,22,25 +thought-reader 'TOt-rid@R K6% 3 +thought-readers 'TOt-rid@z Kj% 3 +thoughtful 'TOtf@l OA% 2 +thoughtfully 'TOtf@lI Pu% 3 +thoughtfulness 'TOtf@ln@s L@% 3 +thoughtless 'TOtl@s OA% 2 +thoughtlessly 'TOtl@slI Pu% 3 +thoughtlessness 'TOtl@sn@s L@% 3 +thoughts TOts Mj% 1 +thousand 'TaUznd K6%,OA% 2 +thousandfold 'TaUzndf@Uld OA%,Pu% 3 +thousands 'TaUzndz Kj% 2 +thousandth 'TaUznT K6%,OA% 2 +thousandths 'TaUznTs Kj% 2 +thraldom 'TrAld@m L@$ 2 +thrall TrOl M6% 1 +thralls TrOlz Mj$ 1 +thrash Tr&S J1% 12C,6A,15A,15B +thrashed Tr&St Jc%,Jd% 12C,6A,15A,15B +thrashes 'Tr&SIz Ja% 22C,6A,15A,15B +thrashing 'Tr&SIN Jb%,K6% 22C,6A,15A,15B +thrashings 'Tr&SINz Kj% 2 +thread Tred H0%,M6% 16A,15A +threadbare 'Tredbe@R OA% 2 +threaded 'TredId Hc%,Hd% 26A,15A +threading 'TredIN Hb% 26A,15A +threadlike 'TredlaIk OA% 2 +threads Tredz Ha%,Mj% 16A,15A +threat Tret K6% 1 +threaten 'Tretn J0% 22A,6A,14,17 +threatened 'Tretnd Jc%,Jd% 22A,6A,14,17 +threatening 'TretnIN Jb% 22A,6A,14,17 +threateningly 'TretnINlI Pu% 3 +threatens 'Tretnz Ja% 22A,6A,14,17 +threats Trets Kj% 1 +three Tri K6%,OA* 1 +three-D Tri-'di L@$,OA$ 2 +three-cornered Tri-'kOn@d OA% 3 +three-decker Tri-'dek@R K6$ 3 +three-deckers Tri-'dek@z Kj$ 3 +three-dimensional ,Tri-dI'menSn@l OA% 5 +three-figure 'Tri-fIg@R OA$ 3 +three-funnelled Tri-'fVn@ld OA$ 3 +three-lane 'Tri-leIn OA% 2 +three-legged 'Tri-legId OA% 3 +three-piece 'Tri-pis OA% 2 +three-ply 'Tri-plaI OA% 2 +three-quarter Tri-'kwOt@R K6%,OA% 3 +three-quarters Tri-'kwOt@z Kj% 3 +three-score 'Tri-skOR L@%,OA% 2 +three-storey 'Tri-stOrI OA% 3 +three-storeyed 'Tri-stOrId OA% 3 +three-wheeled 'Tri-wild OA% 2 +threefold 'Trif@Uld OA%,Pu% 2 +threepence 'Trep@ns K6% 2 +threepences 'Trep@nsIz Kj% 3 +threepenny 'Trep@nI OA% 3 +threes Triz Kj% 1 +threesome 'Tris@m K6% 2 +threesomes 'Tris@mz Kj% 2 +threnodies 'Tren@dIz Kj$ 3 +threnody 'Tren@dI K8$ 3 +thresh TreS J1% 12A,6A,15A +threshed TreSt Jc%,Jd% 12A,6A,15A +thresher 'TreS@R K6% 2 +threshers 'TreS@z Kj% 2 +threshes 'TreSIz Ja% 22A,6A,15A +threshing 'TreSIN Jb% 22A,6A,15A +threshing-floor 'TreSIN-flOR K6% 3 +threshing-floors 'TreSIN-flOz Kj$ 3 +threshing-machine 'TreSIN-m@Sin K6% 4 +threshing-machines 'TreSIN-m@Sinz Kj% 4 +threshold 'TreSh@Uld K6% 2 +thresholds 'TreSh@Uldz Kj% 2 +threw Tru Jc% 12A,6A,12A,13A,15A,15B,22 +thrice TraIs Pu$ 1 +thrift TrIft L@% 1 +thriftier 'TrIftI@R Or$ 3 +thriftiest 'TrIftIIst Os$ 3 +thriftily 'TrIftIlI Pu$ 3 +thriftless 'TrIftl@s OA$ 2 +thriftlessly 'TrIftl@slI Pu$ 3 +thriftlessness 'TrIftl@sn@s L@$ 3 +thrifty 'TrIftI OD% 2 +thrill TrIl J0%,K6% 12A,2C,6A +thrilled TrIld Jc%,Jd% 12A,2C,6A +thriller 'TrIl@R K6% 2 +thrillers 'TrIl@z Kj% 2 +thrilling 'TrIlIN Jb% 22A,2C,6A +thrills TrIlz Ja%,Kj% 12A,2C,6A +thrive TraIv I2% 12A,3A +thrived TraIvd Ic%,Id% 12A,3A +thriven 'TrIv@n Id$ 22A,3A +thrives TraIvz Ia% 12A,3A +thriving 'TraIvIN Ib% 22A,3A +thro' Tru T-% 1 +throat Tr@Ut K6% 1 +throated 'Tr@UtId Ot% 2 +throatier 'Tr@UtI@R Or% 3 +throatiest 'Tr@UtIIst Os% 3 +throats Tr@Uts Kj% 1 +throaty 'Tr@UtI OD% 2 +throb Tr0b I4%,K6% 12A,2C +throbbed Tr0bd Ic%,Id% 12A,2C +throbbing 'Tr0bIN Ib%,OA% 22A,2C +throbs Tr0bz Ia%,Kj% 12A,2C +throe Tr@U K6% 1 +throes Tr@Uz Kj% 1 +thrombosis Tr0m'b@UsIs L@% 3 +throne Tr@Un K6% 1 +thrones Tr@Unz Kj% 1 +throng Tr0N J0%,K6% 12C,4A,6A +thronged Tr0Nd Jc%,Jd% 12C,4A,6A +thronging 'Tr0NIN Jb% 22C,4A,6A +throngs Tr0Nz Ja%,Kj% 12C,4A,6A +throstle 'Tr0sl K6% 2 +throstles 'Tr0slz Kj$ 2 +throttle 'Tr0tl J2%,M6% 22C,6A,15B +throttle-valve 'Tr0tl-v&lv K6% 3 +throttle-valves 'Tr0tl-v&lvz Kj% 3 +throttled 'Tr0tld Jc%,Jd% 22C,6A,15B +throttles 'Tr0tlz Ja%,Mj% 22C,6A,15B +throttling 'Tr0tlIN Jb% 22C,6A,15B +through Tru Pu*,T-* 1 +throughout Tru'aUt Pu%,T-% 2 +throughput 'TrupUt M6% 2 +throughputs 'TrupUts Mj$ 2 +throughway 'TruweI K6$ 2 +throughways 'TruweIz Kj$ 2 +throve Tr@Uv Ic$ 12A,3A +throw Tr@U J5%,K6% 12A,6A,12A,13A,15A,15B,22 +throw-in 'Tr@U-In K6% 2 +throw-ins 'Tr@U-Inz Kj% 2 +throwaway 'Tr@U@weI K6% 3 +throwaways 'Tr@U@weIz Kj$ 3 +throwback 'Tr@Ub&k K6% 2 +throwbacks 'Tr@Ub&ks Kj% 2 +throwing 'Tr@UIN Jb% 22A,6A,12A,13A,15A,15B,22 +thrown Tr@Un Jd% 12A,6A,12A,13A,15A,15B,22 +throws Tr@Uz Ja%,Kj% 12A,6A,12A,13A,15A,15B,22 +thru Tru T-$ 1 +thrum TrVm J4$ 13A,6A +thrummed TrVmd Jc$,Jd$ 13A,6A +thrumming 'TrVmIN Jb$ 23A,6A +thrums TrVmz Ja$ 13A,6A +thrush TrVS K7% 1 +thrushes 'TrVSIz Kj% 2 +thrust TrVst J5%,Jc%,Jd%,M6% 12A,2C,6A,15A,15B +thruster 'TrVst@R K6% 2 +thrusters 'TrVst@z Kj$ 2 +thrusting 'TrVstIN Jb% 22A,2C,6A,15A,15B +thrusts TrVsts Ja%,Mj% 12A,2C,6A,15A,15B +thud TVd I4%,K6% 12C +thudded 'TVdId Ic%,Id% 22C +thudding 'TVdIN Ib% 22C +thuds TVdz Ia%,Kj% 12C +thug TVg K6% 1 +thuggery 'TVg@rI L@% 3 +thugs TVgz Kj% 1 +thumb TVm H0%,K6% 16A +thumbed TVmd Hc%,Hd% 16A +thumbing 'TVmIN Hb% 26A +thumbnut 'TVmnVt K6$ 2 +thumbnuts 'TVmnVts Kj$ 2 +thumbs TVmz Ha%,Kj% 16A +thumbscrew 'TVmskru K6% 2 +thumbscrews 'TVmskruz Kj% 2 +thumbstall 'TVmstOl K6$ 2 +thumbstalls 'TVmstOlz Kj$ 2 +thumbtack 'TVmt&k K6% 2 +thumbtacks 'TVmt&ks Kj% 2 +thump TVmp J0%,K6% 12A,2C,3A,6A,15A,22 +thumped TVmpt Jc%,Jd% 12A,2C,3A,6A,15A,22 +thumping 'TVmpIN Jb%,OA% 22A,2C,3A,6A,15A,22 +thumps TVmps Ja%,Kj% 12A,2C,3A,6A,15A,22 +thunder 'TVnd@R J0%,M6% 22A,2C,3A,15B +thunderbolt 'TVnd@b@Ult K6% 3 +thunderbolts 'TVnd@b@Ults Kj% 3 +thunderclap 'TVnd@kl&p K6% 3 +thunderclaps 'TVnd@kl&ps Kj% 3 +thundered 'TVnd@d Jc%,Jd% 22A,2C,3A,15B +thundering 'TVnd@rIN Jb% 32A,2C,3A,15B +thunderous 'TVnd@r@s OA% 3 +thunders 'TVnd@z Ja%,Mj% 22A,2C,3A,15B +thunderstorm 'TVnd@stOm K6% 3 +thunderstorms 'TVnd@stOmz Kj% 3 +thunderstruck 'TVnd@strVk OA% 3 +thundery 'TVnd@rI OA% 3 +thurible 'TjU@r@bl K6$ 3 +thuribles 'TjU@r@blz Kj$ 3 +thus DVs Pu% 1 +thwack Tw&k H0$,K6% 1 +thwacked Tw&kt Hc$,Hd$ 1 +thwacking 'Tw&kIN Hb$ 2 +thwacks Tw&ks Ha$,Kj$ 1 +thwart TwOt H0%,K6% 16A +thwarted 'TwOtId Hc%,Hd% 26A +thwarting 'TwOtIN Hb% 26A +thwarts TwOts Ha%,Kj% 16A +thy DaI OA$ 1 +thyme taIm L@% 1 +thyroid 'TaIroId K6% 2 +thyroids 'TaIroIdz Kj$ 2 +thyself DaI'self Qx$ 2 +ti ti Ki$ 1 +tiara tI'Ar@ K6% 3 +tiaras tI'Ar@z Kj% 3 +tibia 'tIbI@ Ki% 3 +tibiae 'tIbIi Kj$ 3 +tic tIk K6% 1 +tick tIk J0%,M6% 12A,2C,6A,10,15B +tick-tock 'tIk-t0k K6% 2 +tick-tocks 'tIk-t0ks Kj$ 2 +ticked tIkt Jc%,Jd% 12A,2C,6A,10,15B +ticker 'tIk@R K6% 2 +ticker-tape 'tIk@-teIp L@% 3 +tickers 'tIk@z Kj% 2 +ticket 'tIkIt H0%,K6% 26A +ticket-collector 'tIkIt-k@,lekt@R K6% 5 +ticket-collectors 'tIkIt-k@,lekt@z Kj% 5 +ticketed 'tIkItId Hc%,Hd% 36A +ticketing 'tIkItIN Hb% 36A +tickets 'tIkIts Ha%,Kj% 26A +ticking 'tIkIN Jb%,L@% 22A,2C,6A,10,15B +tickle 'tIkl J2% 22A,6A +tickled 'tIkld Jc%,Jd% 22A,6A +tickler 'tIkl@R K6% 2 +ticklers 'tIkl@z Kj% 2 +tickles 'tIklz Ja% 22A,6A +tickling 'tIklIN Jb% 22A,6A +ticklish 'tIklIS OA% 2 +ticks tIks Ja%,Mj% 12A,2C,6A,10,15B +tics tIks Kj% 1 +tidal 'taIdl OA% 2 +tidbit 'tIdbIt K6$ 2 +tidbits 'tIdbIts Kj$ 2 +tiddler 'tIdl@R K6% 2 +tiddlers 'tIdl@z Kj% 2 +tiddley 'tIdlI OA% 2 +tiddlywinks 'tIdlIwINks Lk% 3 +tide taId H2%,M6% 114,15B +tided 'taIdId Hc%,Hd% 214,15B +tidemark 'taIdmAk K6% 2 +tidemarks 'taIdmAks Kj% 2 +tides taIdz Ha$,Mj% 114,15B +tideway 'taIdweI K6% 2 +tideways 'taIdweIz Kj% 2 +tidied 'taIdId Jc%,Jd% 22A,2C,6A,15B +tidier 'taIdI@R Or% 3 +tidies 'taIdIz Ja%,Kj$ 22A,2C,6A,15B +tidiest 'taIdIIst Os% 3 +tidily 'taIdIlI Pu% 3 +tidiness 'taIdIn@s L@% 3 +tiding 'taIdIN Hb$ 214,15B +tidings 'taIdINz Kj% 2 +tidy 'taIdI J3%,K8$,OD% 22A,2C,6A,15B +tidying 'taIdIIN Jb% 32A,2C,6A,15B +tie taI J5%,K6% 12A,3A,6A,15A,15B +tie-on 'taI-0n Oq% 2 +tie-up 'taI-Vp K6% 2 +tie-ups 'taI-Vps Kj$ 2 +tied taId Jc%,Jd% 12A,3A,6A,15A,15B +tier tI@R K6% 1 +tiers tI@z Kj% 1 +ties taIz Ja%,Kj% 12A,3A,6A,15A,15B +tiff tIf K6% 1 +tiffs tIfs Kj% 1 +tiger 'taIg@R K6% 2 +tiger-lilies 'taIg@-lIlIz Kj% 4 +tiger-lily 'taIg@-lIlI K8% 4 +tigerish 'taIg@rIS OA% 3 +tigers 'taIg@z Kj% 2 +tight taIt OC%,Pu% 1 +tight-laced taIt-'leIst OA% 2 +tight-lipped taIt-'lIpt OA% 2 +tight-wad 'taIt-w0d K6$ 2 +tight-wads 'taIt-w0dz Kj$ 2 +tighten 'taItn J0% 22A,2C,6A,15B +tightened 'taItnd Jc%,Jd% 22A,2C,6A,15B +tightening 'taItnIN Jb% 22A,2C,6A,15B +tightens 'taItnz Ja% 22A,2C,6A,15B +tighter 'taIt@R Or% 2 +tightest 'taItIst Os% 2 +tightly 'taItlI Pu% 2 +tightness 'taItn@s L@% 2 +tightrope 'taItr@Up K6% 2 +tightropes 'taItr@Ups Kj% 2 +tights taIts Kj% 1 +tigress 'taIgrIs K7% 2 +tigresses 'taIgrIsIz Kj% 3 +tike taIk K6$ 1 +tikes taIks Kj$ 1 +tilde 'tIld@ K6$ 2 +tilde tIld K6$ 1 +tildes 'tIld@z Kj$ 2 +tildes tIldz Kj$ 1 +tile taIl H2%,K6% 16A +tiled taIld Hc%,Hd% 16A +tiles taIlz Ha%,Kj% 16A +tiling 'taIlIN Hb% 26A +till tIl H0%,K6%,T-%,V-% 16A +tillage 'tIlIdZ L@$ 2 +tilled tIld Hc%,Hd% 16A +tiller 'tIl@R K6% 2 +tillers 'tIl@z Kj% 2 +tilling 'tIlIN Hb% 26A +tills tIlz Ha%,Kj% 16A +tilt tIlt J0%,K6% 12A,2C,3A,6A,15A,15B +tilted 'tIltId Jc%,Jd% 22A,2C,3A,6A,15A,15B +tilth tIlT K6$ 1 +tilths tIlTs Kj$ 1 +tilting 'tIltIN Jb% 22A,2C,3A,6A,15A,15B +tilts tIlts Ja%,Kj$ 12A,2C,3A,6A,15A,15B +tiltyard 'tIltjAd K6$ 2 +tiltyards 'tIltjAdz Kj$ 2 +timber 'tImb@R M6% 2 +timbered 'tImb@d OA% 2 +timbers 'tImb@z Mj% 2 +timbre 't&mbr@ K6% 2 +timbrel 'tImbr@l K6$ 2 +timbrels 'tImbr@lz Kj$ 2 +timbres 't&mbr@z Kj$ 2 +time taIm H2%,M6* 16A,15A +time-ball 'taIm-bOl K6$ 2 +time-balls 'taIm-bOlz Kj$ 2 +time-bomb 'taIm-b0m K6% 2 +time-bombs 'taIm-b0mz Kj% 2 +time-expired ,taIm-Ik'spaI@d OA$ 3 +time-exposure 'taIm-Ik,sp@UZ@R K6% 4 +time-exposures 'taIm-Ik,sp@UZ@z Kj% 4 +time-fuse 'taIm-fjuz K6% 2 +time-fuses 'taIm-fjuzIz Kj% 3 +time-honoured 'taIm-0n@d OA% 3 +time-lag 'taIm-l&g K6% 2 +time-lags 'taIm-l&gz Kj% 2 +time-limit 'taIm-lImIt K6% 3 +time-limits 'taIm-lImIts Kj% 3 +time-sheet 'taIm-Sit K6% 2 +time-sheets 'taIm-Sits Kj% 2 +time-signal 'taIm-sIgn@l K6% 3 +time-signals 'taIm-sIgn@lz Kj% 3 +time-switch 'taIm-swItS K7% 2 +time-switches 'taIm-swItSIz Kj% 3 +timecard 'taImkAd K6$ 2 +timecards 'taImkAdz Kj$ 2 +timed taImd Hc%,Hd% 16A,15A +timekeeper 'taImkip@R K6% 3 +timekeepers 'taImkip@z Kj% 3 +timekeeping 'taImkipIN L@% 3 +timeless 'taIml@s OA% 2 +timelier 'taImlI@R Or$ 3 +timeliest 'taImlIIst Os$ 3 +timeliness 'taImlIn@s L@% 3 +timely 'taImlI OD% 2 +timepiece 'taImpis K6% 2 +timepieces 'taImpisIz Kj% 3 +times taImz Ha%,Mj* 16A,15A +timesaving 'taImseIvIN OA% 3 +timeserver 'taIms3v@R K6% 3 +timeservers 'taIms3v@z Kj% 3 +timeserving 'taIms3vIN OA% 3 +timetable 'taImteIbl K6% 3 +timetables 'taImteIblz Kj% 3 +timework 'taImw3k L@$ 2 +timid 'tImId OA% 2 +timidity tI'mIdItI L@% 4 +timidly 'tImIdlI Pu% 3 +timidness 'tImIdn@s L@% 3 +timing 'taImIN Hb%,M6% 26A,15A +timings 'taImINz Mj% 2 +timorous 'tIm@r@s OA% 3 +timorously 'tIm@r@slI Pu% 4 +timothy 'tIm@TI L@$ 3 +timpani 'tImp@nI Kj% 3 +timpanist 'tImp@nIst K6% 3 +timpanists 'tImp@nIsts Kj% 3 +tin tIn H4%,M6% 16A +tin pan alley ,tIn p&n '&lI K6% 4 +tin pan alleys ,tIn p&n '&lIz Kj$ 4 +tin-opener 'tIn-@Up@n@R K6% 4 +tin-openers 'tIn-@Up@n@z Kj% 4 +tin-plate 'tIn-pleIt L@$ 2 +tincture 'tINktS@R H2$,K6% 2 +tinctured 'tINktS@d Hc$,Hd$ 2 +tinctures 'tINktS@z Ha$,Kj$ 2 +tincturing 'tINktS@rIN Hb$ 3 +tinder 'tInd@R L@% 2 +tinderbox 'tInd@b0ks K7% 3 +tinderboxes 'tInd@b0ksIz Kj% 4 +tine taIn K6$ 1 +tined taInd Ot$ 1 +tines taInz Kj$ 1 +tinfoil 'tInfoIl L@% 2 +ting tIN J0$,K6% 1 +tinge tIndZ H2$,K6% 16A,14 +tinged tINd Jc$,Jd$ 1 +tinged tIndZd Hc%,Hd% 16A,14 +tinges 'tIndZIz Ha$,Kj$ 26A,14 +tinging 'tININ Jb$ 2 +tinging 'tIndZIN Hb$ 26A,14 +tingle 'tINgl I2%,K6% 22A,2C +tingled 'tINgld Ic%,Id% 22A,2C +tingles 'tINglz Ia%,Kj% 22A,2C +tingling 'tINglIN Ib% 22A,2C +tings tINz Ja$,Kj$ 1 +tinier 'taInI@R Or% 3 +tiniest 'taInIIst Os% 3 +tinker 'tINk@R I0%,K6% 22A,2C,3A +tinkered 'tINk@d Ic%,Id% 22A,2C,3A +tinkering 'tINk@rIN Ib% 32A,2C,3A +tinkers 'tINk@z Ia%,Kj% 22A,2C,3A +tinkle 'tINkl J2%,Ki% 22A,2C,6A +tinkled 'tINkld Jc%,Jd% 22A,2C,6A +tinkles 'tINklz Ja% 22A,2C,6A +tinkling 'tINklIN Jb% 22A,2C,6A +tinned tInd Hc%,Hd% 16A +tinnier 'tInI@R Or% 3 +tinniest 'tInIIst Os% 3 +tinning 'tInIN Hb$ 26A +tinny 'tInI OD% 2 +tins tInz Ha$,Mj% 16A +tinsel 'tInsl H4$,L@% 2 +tinselled 'tInsld Hc$,Hd$ 2 +tinselling 'tIns@lIN Hb$ 3 +tinselly 'tIns@lI OA% 3 +tinsels 'tInslz Ha$ 2 +tinsmith 'tInsmIT K6% 2 +tinsmiths 'tInsmITs Kj% 2 +tint tInt H0%,K6% 16A,22 +tintack 'tInt&k K6% 2 +tintacks 'tInt&ks Kj% 2 +tinted 'tIntId Hc%,Hd% 26A,22 +tinting 'tIntIN Hb% 26A,22 +tintinnabulation ,tIntIn,&bjU'leISn L@$ 6 +tints tInts Ha%,Kj% 16A,22 +tiny 'taInI OD% 2 +tip tIp J4%,K6% 12A,2C,6A,12C,15A,15B +tip-and-run ,tIp-@n-'rVn OA$ 3 +tip-off 'tIp-0f K6% 2 +tip-offs 'tIp-0fs Kj% 2 +tip-top 'tIp-t0p OA%,Pu$ 2 +tip-up 'tIp-Vp OA% 2 +tipped tIpt Jc%,Jd% 12A,2C,6A,12C,15A,15B +tippet 'tIpIt K6$ 2 +tippets 'tIpIts Kj$ 2 +tipping 'tIpIN Jb% 22A,2C,6A,12C,15A,15B +tipple 'tIpl J2%,L@% 22A,6A +tippled 'tIpld Jc%,Jd% 22A,6A +tippler 'tIpl@R K6% 2 +tipplers 'tIpl@z Kj% 2 +tipples 'tIplz Ja% 22A,6A +tippling 'tIplIN Jb% 22A,6A +tips tIps Ja%,Kj% 12A,2C,6A,12C,15A,15B +tipstaff 'tIpstAf K6$ 2 +tipstaffs 'tIpstAfs Kj$ 2 +tipster 'tIpst@R K6$ 2 +tipsters 'tIpst@z Kj$ 2 +tipsy 'tIpsI OA% 2 +tiptoe 'tIpt@U I5%,Pu% 22A,2C +tiptoed 'tIpt@Ud Ic%,Id% 22A,2C +tiptoeing 'tIpt@UIN Ib% 32A,2C +tiptoes 'tIpt@Uz Ia% 22A,2C +tirade taI'reId K6% 2 +tirades taI'reIdz Kj% 2 +tire 'taI@R J2%,K6% 12A,3A,6A,15B +tired 'taI@d Jc%,Jd%,OA% 12A,3A,6A,15B +tiredness 'taI@dn@s L@% 2 +tireless 'taI@l@s OA% 2 +tirelessly 'taI@l@slI Pu% 3 +tires 'taI@z Ja%,Kj% 12A,3A,6A,15B +tiresome 'taI@s@m OA% 2 +tiresomely 'taI@s@mlI Pu% 3 +tiring 'taI@rIN Jb%,Pu% 22A,3A,6A,15B +tiro 'taI@r@U K6$ 2 +tiros 'taI@r@Uz Kj$ 2 +tissue 'tISu M6% 2 +tissues 'tISuz Mj% 2 +tit tIt K6% 1 +titan 'taItn K6$ 2 +titanic taI't&nIk OA$ 3 +titans 'taItnz Kj$ 2 +titbit 'tItbIt K6% 2 +titbits 'tItbIts Kj% 2 +tithe taID K6$ 1 +tithe-barn 'taID-bAn K6$ 2 +tithe-barns 'taID-bAnz Kj$ 2 +tithes taIDz Kj$ 1 +titillate 'tItIleIt H2% 36A +titillated 'tItIleItId Hc%,Hd% 46A +titillates 'tItIleIts Ha% 36A +titillating 'tItIleItIN Hb% 46A +titillation ,tItI'leISn K6% 4 +titillations ,tItI'leISnz Kj% 4 +titivate 'tItIveIt J2% 32A,6A +titivated 'tItIveItId Jc%,Jd% 42A,6A +titivates 'tItIveIts Ja% 32A,6A +titivating 'tItIveItIN Jb% 42A,6A +titlark 'tItlAk K6$ 2 +titlarks 'tItlAks Kj$ 2 +title 'taItl M6% 2 +title-deed 'taItl-did K6% 3 +title-deeds 'taItl-didz Kj% 3 +title-page 'taItl-peIdZ K6% 3 +title-pages 'taItl-peIdZIz Kj% 4 +title-role 'taItl-r@Ul K6% 3 +title-roles 'taItl-r@Ulz Kj% 3 +titled 'taItld OA% 2 +titles 'taItlz Mj% 2 +titmice 'tItmaIs Kj$ 2 +titmouse 'tItmaUs Ki$ 2 +tits tIts Kj% 1 +titter 'tIt@R I0% 22A +tittered 'tIt@d Ic%,Id% 22A +tittering 'tIt@rIN Ib% 32A +titters 'tIt@z Ia% 22A +tittivate 'tItIveIt J2% 32A,6A +tittivated 'tItIveItId Jc%,Jd% 42A,6A +tittivates 'tItIveIts Ja% 32A,6A +tittivating 'tItIveItIN Jb% 42A,6A +tittle 'tItl Ki% 2 +tittle-tattle 'tItl-t&tl I2%,L@% 4 +tittle-tattled 'tItl-t&tld Ic%,Id% 4 +tittle-tattles 'tItl-t&tlz Ia% 4 +tittle-tattling 'tItl-t&tlIN Ib% 4 +titular 'tItjUl@R OA% 3 +tizzies 'tIzIz Kj$ 2 +tizzy 'tIzI K8% 2 +to t@ T-*,X-* 1 +to tu Pu% 1 +to-do t@-'du K6% 2 +to-dos t@-'duz Kj$ 2 +toad t@Ud K6% 1 +toad-in-the-hole ,t@Ud-In-D@-'h@Ul Mi% 4 +toadied 't@UdId Ic$,Id$ 22A,3A +toadies 't@UdIz Ia$,Kj$ 22A,3A +toads t@Udz Kj% 1 +toadstool 't@Udstul K6% 2 +toadstools 't@Udstulz Kj% 2 +toady 't@UdI I3$,K8$ 22A,3A +toadying 't@UdIIN Ib% 32A,3A +toast t@Ust J0%,M6% 12A,6A +toasted 't@UstId Jc%,Jd% 22A,6A +toaster 't@Ust@R K6% 2 +toasters 't@Ust@z Kj% 2 +toasting 't@UstIN Jb% 22A,6A +toasting-fork 't@UstIN-fOk K6% 3 +toasting-forks 't@UstIN-fOks Kj% 3 +toastmaster 't@UstmAst@R K6% 3 +toastmasters 't@UstmAst@z Kj% 3 +toastrack 't@Ustr&k K6% 2 +toastracks 't@Ustr&ks Kj% 2 +toasts t@Usts Ja%,Mj% 12A,6A +tobacco t@'b&k@U M6% 3 +tobacconist t@'b&k@nIst K6% 4 +tobacconists t@'b&k@nIsts Kj% 4 +tobaccos t@'b&k@Uz Mj% 3 +toboggan t@'b0g@n I0$,K6% 32A,2C +tobogganed t@'b0g@nd Ic%,Id% 32A,2C +tobogganing t@'b0g@nIN Ib% 42A,2C +toboggans t@'b0g@nz Ia$,Kj% 32A,2C +toby-jug 't@UbI-dZVg K6% 3 +toby-jugs 't@UbI-dZVgz Kj% 3 +toccata t@'kAt@ K6$ 3 +toccatas t@'kAt@z Kj$ 3 +tocsin 't0ksIn K6$ 2 +tocsins 't0ksInz Kj$ 2 +today t@'deI L@*,Pu* 2 +toddies 't0dIz Mj$ 2 +toddle 't0dl I2% 22A,2C +toddled 't0dld Ic%,Id% 22A,2C +toddler 't0dl@R K6% 2 +toddlers 't0dl@z Kj% 2 +toddles 't0dlz Ia% 22A,2C +toddling 't0dlIN Ib% 22A,2C +toddy 't0dI M8% 2 +toe t@U H5%,K6% 16A +toecap 't@Uk&p K6% 2 +toecaps 't@Uk&ps Kj% 2 +toed t@Ud Hc%,Hd% 16A +toehold 't@Uh@Uld K6% 2 +toeholds 't@Uh@Uldz Kj% 2 +toeing 't@UIN Hb% 26A +toenail 't@UneIl K6% 2 +toenails 't@UneIlz Kj% 2 +toes t@Uz Ha%,Kj% 16A +toff t0f K6% 1 +toffee 't0fI M6% 2 +toffees 't0fIz Mj% 2 +toffs t0fs Kj% 1 +tog t0g H4% 115B +toga 't@Ug@ K6% 2 +togas 't@Ug@z Kj% 2 +together t@'geD@R Pu* 3 +togetherness t@'geD@n@s L@% 4 +togged t0gd Hc%,Hd% 115B +togging 't0gIN Hb% 215B +toggle 't0gl K6% 2 +toggles 't0glz Kj% 2 +togs t0gz Ha%,Kj% 115B +toil toIl I0%,M6% 12A,2B,2C,3A,4A +toiled toIld Ic%,Id% 12A,2B,2C,3A,4A +toiler 'toIl@R K6% 2 +toilers 'toIl@z Kj% 2 +toilet 'toIlIt K6% 2 +toilet-paper 'toIlIt-peIp@R K6% 4 +toilet-papers 'toIlIt-peIp@z Kj$ 4 +toilet-powder 'toIlIt-paUd@R L@$ 4 +toilet-roll 'toIlIt-r@Ul K6% 3 +toilet-rolls 'toIlIt-r@Ulz Kj% 3 +toilet-table 'toIlIt-teIbl K6$ 4 +toilet-tables 'toIlIt-teIblz Kj$ 4 +toilets 'toIlIts Kj% 2 +toiling 'toIlIN Ib% 22A,2B,2C,3A,4A +toils toIlz Ia%,Mj$ 12A,2B,2C,3A,4A +toilsome 'toIls@m OA$ 2 +token 't@Uk@n K6% 2 +tokens 't@Uk@nz Kj% 2 +told t@Uld Jc*,Jd* 12A,3A,6A,8,10,11,12A,13A,14,15A,15B,17,20,21 +tolerable 't0l@r@bl OA% 4 +tolerably 't0l@r@blI Pu% 4 +tolerance 't0l@r@ns M6% 3 +tolerances 't0l@r@nsIz Mj% 4 +tolerant 't0l@r@nt OA% 3 +tolerantly 't0l@r@ntlI Pu% 4 +tolerate 't0l@reIt H2% 36A,6C +tolerated 't0l@reItId Hc%,Hd% 46A,6C +tolerates 't0l@reIts Ha% 36A,6C +tolerating 't0l@reItIN Hb% 46A,6C +toleration ,t0l@'reISn L@$ 4 +toll t@Ul J0%,K6% 12A,6A +tollbar 't@UlbAR K6$ 2 +tollbars 't@UlbAz Kj$ 2 +tollbooth 't@UlbuD K6% 2 +tollbooths 't@UlbuDz Kj% 2 +tolled t@Uld Jc%,Jd% 12A,6A +tollgate 't@UlgeIt K6% 2 +tollgates 't@UlgeIts Kj% 2 +tollhouse 't@UlhaUs K6$ 2 +tollhouses 't@UlhaUzIz Kj$ 3 +tolling 't@UlIN Jb% 22A,6A +tolls t@Ulz Ja%,Kj% 12A,6A +tomahawk 't0m@hOk H0$,K6% 3 +tomahawked 't0m@hOkt Hc$,Hd$ 3 +tomahawking 't0m@hOkIN Hb$ 4 +tomahawks 't0m@hOks Ha$,Kj% 3 +tomato t@'mAt@U K7% 3 +tomatoes t@'mAt@Uz Kj% 3 +tomb tum K6% 1 +tombola t0m'b@Ul@ K6% 3 +tombolas t0m'b@Ul@z Kj$ 3 +tomboy 't0mboI K6% 2 +tomboys 't0mboIz Kj% 2 +tombs tumz Kj% 1 +tombstone 'tumst@Un K6% 2 +tombstones 'tumst@Unz Kj% 2 +tomcat 't0mk&t K6% 2 +tomcats 't0mk&ts Kj% 2 +tome t@Um K6% 1 +tomes t@Umz Kj% 1 +tomfool ,t0m'ful K6$ 2 +tomfooleries t0m'ful@rIz Mj% 4 +tomfoolery t0m'ful@rI M8% 4 +tomfools ,t0m'fulz Kj$ 2 +tommy-gun 't0mI-gVn K6% 3 +tommy-guns 't0mI-gVnz Kj% 3 +tommy-rot 't0mI-r0t L@% 3 +tomorrow t@'m0r@U M6%,Pu% 3 +tomorrows t@'m0r@Uz Mj% 3 +tomtit 't0mtIt K6% 2 +tomtits 't0mtIts Kj% 2 +tomtom 't0mt0m K6% 2 +tomtoms 't0mt0mz Kj% 2 +ton tVn I4$,K6% 12C +tonal 't@Unl OA% 2 +tonalities t@U'n&lItIz Mj% 4 +tonality t@U'n&lItI M8% 4 +tone t@Un J2%,M6% 12C,6A,15B +tone-deaf t@Un-'def OA% 2 +tone-poem 't@Un-p@UIm K6% 3 +tone-poems 't@Un-p@UImz Kj% 3 +toned t@Und Jc%,Jd%,Ot% 12C,6A,15B +toneless 't@Unl@s OA% 2 +tonelessly 't@Unl@slI Pu% 3 +tones t@Unz Ja$,Mj% 12C,6A,15B +tongs t0Nz Kj% 1 +tongue tVN M6% 1 +tongue-in-cheek ,tVN-In-'tSik OA%,Pu% 3 +tongue-tied 'tVn-taId OA% 2 +tongue-twister 'tVn-twIst@R K6% 3 +tongue-twisters 'tVn-twIst@z Kj% 3 +tongued tVNd Ot% 1 +tongues tVNz Mj% 1 +tonic 't0nIk K6%,OA% 2 +tonic sol-fa ,t0nIk 's0l-fA L@% 4 +tonics 't0nIks Kj$ 2 +tonight t@'naIt L@%,Pu% 2 +toning 't@UnIN Jb% 22C,6A,15B +tonnage 'tVnIdZ K6% 2 +tonnages 'tVnIdZIz Kj$ 3 +tonne tVn K6% 1 +tonned tVnd Ic$,Id$ 12C +tonnes tVnz Kj% 1 +tonning 'tVnIN Ib$ 22C +tons tVnz Ia$,Kj% 12C +tonsil 't0nsIl K6% 2 +tonsillitis ,t0nsI'laItIs L@% 4 +tonsils 't0nsIlz Kj% 2 +tonsorial t0n'sOrI@l OA$ 4 +tonsure 't0nS@R H2$,K6$ 2 +tonsured 't0nS@d Hc$,Hd$ 2 +tonsures 't0nS@z Ha$,Kj$ 2 +tonsuring 't0nS@rIN Hb$ 3 +tontine 't0ntin K6$ 2 +tontines 't0ntinz Kj$ 2 +too tu Pu* 1 +took tUk Jc* 12A,2B,2C,3A,6A,6B,12A,13A,14,15A,15B,16B,19B,22 +tool tul H0$,K6% 12C,6A +tooled tuld Hc$,Hd$ 12C,6A +tooling 'tulIN Hb$ 22C,6A +tools tulz Ha$,Kj% 12C,6A +toot tut J0$,K6$ 12A,6A +tooted 'tutId Jc$,Jd$ 22A,6A +tooth tuT Ki% 1 +toothache 'tuTeIk M@% 2 +toothbrush 'tuTbrVS K7% 2 +toothbrushes 'tuTbrVSIz Kj% 3 +toothed tuTt Ot% 1 +toothless 'tuTl@s OA% 2 +toothpaste 'tuTpeIst M6% 2 +toothpastes 'tuTpeIsts Mj% 2 +toothpick 'tuTpIk K6% 2 +toothpicks 'tuTpIks Kj% 2 +toothpowder 'tuTpaUd@R L@% 3 +toothsome 'tuTs@m OA$ 2 +tooting 'tutIN Jb$ 22A,6A +tootle 'tutl I2%,K6% 2 +tootled 'tutld Ic%,Id% 2 +tootles 'tutlz Ia%,Kj% 2 +tootling 'tutlIN Ib% 2 +toots tuts Ja$,Kj$ 12A,6A +top t0p H4%,K6* 16A +top-boot 't0p-but K6$ 2 +top-boots 't0p-buts Kj$ 2 +top-dress 't0p-dres H1$ 2 +top-dressed 't0p-drest Hc$,Hd$ 2 +top-dresses 't0p-dresIz Ha$ 3 +top-dressing 't0p-dresIN Hb$,M6% 3 +top-dressings 't0p-dresINz Mj$ 3 +top-flight 't0p-flaIt Oq% 2 +top-heavy t0p-'hevI OA% 3 +top-hole t0p-'h@Ul OA% 2 +top-ranking t0p-'r&nkIN OA% 3 +topaz 't@Up&z M7% 2 +topazes 't@Up&zIz Mj$ 3 +topcoat 't0pk@Ut K6% 2 +topcoats 't0pk@Uts Kj% 2 +tope t@Up J2$ 12A,6A +toped t@Upt Jc$,Jd$ 12A,6A +toper 't@Up@R K6$ 2 +topers 't@Up@z Kj$ 2 +topes t@Ups Ja$ 12A,6A +topgallant 't0pg&l@nt K6$,OA$ 3 +topgallants 't0pg&l@nts Kj$ 3 +topi 't@UpI K6$ 2 +topiary 't@UpI@rI L@$ 4 +topic 't0pIk K6% 2 +topical 't0pIkl OA% 3 +topically 't0pIklI Pu% 3 +topics 't0pIks Kj% 2 +toping 't@UpIN Jb$ 22A,6A +topis 't@UpIz Kj$ 2 +topknot 't0pn0t K6% 2 +topknots 't0pn0ts Kj% 2 +topless 't0pl@s OA% 2 +topmast 't0pmAst K6$ 2 +topmasts 't0pmAsts Kj$ 2 +topmost 't0pm@Ust OA% 2 +topnotch 't0pn0tS Oq% 2 +topographical ,t0p@'gr&fIkl OA% 5 +topographically ,t0p@'gr&fIklI Pu% 5 +topography t@'p0gr@fI L@% 4 +topped t0pt Hc%,Hd% 16A +topper 't0p@R K6% 2 +toppers 't0p@z Kj% 2 +topping 't0pIN Hb%,OA% 26A +toppingly 't0pINlI Pu$ 3 +topple 't0pl J2% 22A,2C,6A,15B +toppled 't0pld Jc%,Jd% 22A,2C,6A,15B +topples 't0plz Ja% 22A,2C,6A,15B +toppling 't0plIN Jb% 22A,2C,6A,15B +tops t0ps Ha%,Kj% 16A +topsail 't0pseIl K6% 2 +topsails 't0pseIlz Kj% 2 +topsy-turvy ,t0psI-'t3vI OA%,Pu% 4 +topsy-turvydom ,t0psI-'t3vId@m K6$ 5 +topsy-turvydoms ,t0psI-'t3vId@mz Kj$ 5 +toque t@Uk K6$ 1 +toques t@Uks Kj$ 1 +tor tOR K6$ 1 +torch tOtS K7% 1 +torch-race 'tOtS-reIs K6$ 2 +torch-races 'tOtS-reIsIz Kj$ 3 +torch-singer 'tOtS-sIN@R K6$ 3 +torch-singers 'tOtS-sIN@z Kj$ 3 +torches 'tOtSIz Kj% 2 +torchlight 'tOtSlaIt L@% 2 +tore tOR Jc% 12A,2C,3A,6A,15A,15B,22 +toreador 't0rI@dOR K6% 4 +toreadors 't0rI@dOz Kj% 4 +torment 'tOment M6% 2 +torment tO'ment H0% 26A,15A +tormented tO'mentId Hc%,Hd% 36A,15A +tormenting tO'mentIN Hb% 36A,15A +tormentor tO'ment@R K6% 3 +tormentors tO'ment@z Kj% 3 +torments 'tOments Mj% 2 +torments tO'ments Ha% 26A,15A +torn tOn Jd% 12A,2C,3A,6A,15A,15B,22 +tornado tO'neId@U K7% 3 +tornadoes tO'neId@Uz Kj% 3 +torpedo tO'pid@U H0%,K7% 36A +torpedo-boat tO'pid@U-b@Ut K6% 4 +torpedo-boats tO'pid@U-b@Uts Kj% 4 +torpedo-tube tO'pid@U-tjub K6$ 4 +torpedo-tubes tO'pid@U-tjubz Kj$ 4 +torpedoed tO'pid@Ud Hc%,Hd% 36A +torpedoes tO'pid@Uz Kj% 3 +torpedoing tO'pid@UIN Hb% 46A +torpedos tO'pid@Uz Ha% 36A +torpid 'tOpId OA$ 2 +torpidity tO'pIdItI L@$ 4 +torpidly 'tOpIdlI Pu$ 3 +torpidness 'tOpIdn@s L@$ 3 +torpor 'tOp@R M6$ 2 +torpors 'tOp@z Mj$ 2 +torque tOk M6$ 1 +torques tOks Mj$ 1 +torrent 't0r@nt K6% 2 +torrential t@'renSl OA% 3 +torrents 't0r@nts Kj% 2 +torrid 't0rId OA% 2 +torridity 't0rIdItI L@$ 4 +tors tOz Kj$ 1 +torsion 'tOSn L@$ 2 +torso 'tOs@U K6% 2 +torsos 'tOs@Uz Kj% 2 +tort tOt K6$ 1 +tortilla tO'tij@ K6$ 3 +tortillas tO'tij@z Kj$ 3 +tortoise 'tOt@s K6% 2 +tortoises 'tOt@sIz Kj% 3 +tortoiseshell 'tOt@s+Sel L@% 3 +torts tOts Kj$ 1 +tortuous 'tOtSU@s OA% 3 +tortuously 'tOtSU@slI Pu% 4 +torture 'tOtS@R H2%,M6% 26A,16A +tortured 'tOtS@d Hc%,Hd% 26A,16A +torturer 'tOtS@r@R K6% 3 +torturers 'tOtS@r@z Kj% 3 +tortures 'tOtS@z Ha%,Mj% 26A,16A +torturing 'tOtS@rIN Hb% 36A,16A +tosh t0S K7$ 1 +toshes 't0SIz Kj$ 2 +toss t0s J1%,K7% 12C,6A,12A,13A,15A,15B +toss-up 't0s-Vp K6% 2 +toss-ups 't0s-Vps Kj$ 2 +tossed t0st Jc%,Jd% 12C,6A,12A,13A,15A,15B +tosses 't0sIz Ja%,Kj% 22C,6A,12A,13A,15A,15B +tossing 't0sIN Jb% 22C,6A,12A,13A,15A,15B +tot t0t J4%,K6% 12C,15B +total 't@Utl J4%,K6%,OA% 22C,6A +totalitarian ,t@Ut&lI'te@rI@n OA% 6 +totalitarianism ,t@Ut&lI'te@rI@nIz@m L@% 8 +totality t@U't&lItI L@% 4 +totalizator 't@Ut@laIzeIt@R K6$ 5 +totalizators 't@Ut@laIzeIt@z Kj$ 5 +totalled 't@Utld Jc%,Jd% 22C,6A +totalling 't@Ut@lIN Jb% 32C,6A +totally 't@Ut@lI Pu% 3 +totals 't@Utlz Ja%,Kj% 22C,6A +tote t@Ut H2$,K6$ 16A +toted 't@UtId Hc$,Hd$ 26A +totem 't@Ut@m K6% 2 +totem-pole 't@Ut@m-p@Ul K6% 3 +totem-poles 't@Ut@m-p@Ulz Kj% 3 +totems 't@Ut@mz Kj% 2 +totes t@Uts Ha$,Kj$ 16A +toting 't@UtIN Hb$ 26A +tots t0ts Ja$,Kj% 12C,15B +totted 't0tId Jc%,Jd% 22C,15B +totter 't0t@R I0% 22A,2C +tottered 't0t@d Ic%,Id% 22A,2C +tottering 't0t@rIN Ib% 32A,2C +totters 't0t@z Ia% 22A,2C +tottery 't0t@rI OA% 3 +totting 't0tIN Jb$ 22C,15B +toucan 'tuk@n K6$ 2 +toucans 'tuk@nz Kj$ 2 +touch tVtS J1%,M7% 12A,2C,3A,6A,15A,15B +touch-and-go ,tVtS-@n-'g@U OA% 3 +touch-type 'tVtS-taIp I2% 22A +touch-typed 'tVtS-taIpt Ic$,Id$ 22A +touch-types 'tVtS-taIps Ia% 22A +touch-typing 'tVtS-taIpIN Ib% 32A +touchable 'tVtS@bl OA% 3 +touchdown 'tVtSdaUn K6% 2 +touchdowns 'tVtSdaUnz Kj% 2 +touched tVtSt Jc%,Jd%,OA% 12A,2C,3A,6A,15A,15B +touches 'tVtSIz Ja%,Mj% 22A,2C,3A,6A,15A,15B +touchier 'tVtSI@R Or$ 3 +touchiest 'tVtSIIst Os$ 3 +touchily 'tVtSIlI Pu% 3 +touchiness 'tVtSIn@s L@% 3 +touching 'tVtSIN Jb%,OA%,T-% 22A,2C,3A,6A,15A,15B +touchingly 'tVtSINlI Pu% 3 +touchline 'tVtSlaIn K6% 2 +touchlines 'tVtSlaInz Kj% 2 +touchstone 'tVtS+st@Un K6% 2 +touchstones 'tVtS+st@Unz Kj$ 2 +touchy 'tVtSI OD% 2 +tough tVf K6%,OC% 1 +toughen 'tVfn J0% 2 +toughened 'tVfnd Jc%,Jd% 2 +toughening 'tVfnIN Jb% 2 +toughens 'tVfnz Ja% 2 +tougher 'tVf@R Or% 2 +toughest 'tVfIst Os% 2 +toughie 'tVfI K6$ 2 +toughies 'tVfIz Kj$ 2 +toughly 'tVflI Pu% 2 +toughness 'tVfn@s L@% 2 +toughs tVfs Kj$ 1 +toupee 'tupeI K6$ 2 +toupees 'tupeIz Kj$ 2 +tour tU@R J0%,K6% 12A,2C,6A +tour de force ,tU@ d@ 'fOs Ki% 3 +toured tU@d Jc%,Jd% 12A,2C,6A +touring 'tU@rIN Jb%,L@%,OA% 22A,2C,6A +tourism 'tU@rIz@m L@% 3 +tourist 'tU@rIst K6% 2 +tourists 'tU@rIsts Kj% 2 +tournament 'tOn@m@nt K6% 3 +tournaments 'tOn@m@nts Kj% 3 +tourney 't3nI K6$ 2 +tourneys 't3nIz Kj$ 2 +tourniquet 'tU@nIkeI K6% 3 +tourniquets 'tU@nIkeIz Kj% 3 +tours tU@z Ja%,Kj% 12A,2C,6A +tours de force ,tU@ d@ 'fOs Kj$ 3 +tousle 'taUzl H2$ 26A +tousled 'taUzld Hc$,Hd% 26A +tousles 'taUzlz Ha$ 26A +tousling 'taUzlIN Hb$ 26A +tout taUt I0%,K6% 12A,3A +tout ensemble ,tut 0n's0mbl Ki$,Pu$ 4 +touted 'taUtId Ic%,Id% 22A,3A +touting 'taUtIN Ib% 22A,3A +touts taUts Ia%,Kj% 12A,3A +tow t@U H0%,M6% 16A,15A,15B +toward t@'wOd T-% 2 +towards t@'wOdz T-% 2 +towed t@Ud Hc%,Hd% 16A,15A,15B +towel 'taU@l H4%,K6% 2 +towel-horse 'taU@l-hOs K6$ 3 +towel-horses 'taU@l-hOsIz Kj$ 4 +towel-rack 'taU@l-r&k K6% 3 +towel-racks 'taU@l-r&ks Kj% 3 +towel-rail 'taU@l-reIl K6% 3 +towel-rails 'taU@l-reIlz Kj% 3 +towelled 'taU@ld Hc%,Hd% 2 +towelling 'taU@lIN Hb%,L@% 3 +towels 'taU@lz Ha%,Kj% 2 +tower 'taU@R I0%,K6% 22C +tower-block 'taU@-bl0k K6% 3 +tower-blocks 'taU@-bl0ks Kj% 3 +towered 'taU@d Ic%,Id% 22C +towering 'taU@rIN Ib%,OA% 32C +towers 'taU@z Ia%,Kj% 22C +towing 't@UIN Hb% 26A,15A,15B +towing-line 't@UIN-laIn K6$ 3 +towing-lines 't@UIN-laInz Kj$ 3 +towing-path 't@UIN-pAT K6$ 3 +towing-paths 't@UIN-pADz Kj$ 3 +towing-rope 't@UIn-r@Up K6$ 3 +towing-ropes 't@UIn-r@Ups Kj$ 3 +towline 't@UlaIn K6% 2 +towlines 't@UlaInz Kj% 2 +town taUn K6* 1 +town-crier taUn-'kraI@R K6% 3 +town-criers taUn-'kraI@z Kj% 3 +town-gas 'taUn-g&s L@$ 2 +townee 'taUnI K6$ 2 +townees 'taUnIz Kj$ 2 +towns taUnz Kj% 1 +townsfolk 'taUnzf@Uk Kj% 2 +township 'taUnSIp K6% 2 +townships 'taUnSIps Kj% 2 +townsman 'taUnzm@n Ki% 2 +townsmen 'taUnzm@n Kj% 2 +townspeople 'taUnzpipl Kj% 3 +towpath 't@UpAT K6% 2 +towpaths 't@UpADz Kj% 2 +towrope 't@Ur@Up K6% 2 +towropes 't@Ur@Ups Kj% 2 +tows t@Uz Ha%,Mj% 16A,15A,15B +toxaemia t0k'simI@ L@$ 4 +toxic 't0ksIk OA% 2 +toxicity t0k'sIsItI L@% 4 +toxicologist ,t0ksI'k0l@dZIst K6% 5 +toxicologists ,t0ksI'k0l@dZIsts Kj% 5 +toxicology ,t0ksI'k0l@dZI L@% 5 +toxin 't0ksIn K6% 2 +toxins 't0ksInz Kj% 2 +toy toI I0%,K6% 13A +toyed toId Ic%,Id% 13A +toying 'toIIN Ib% 23A +toys toIz Ia%,Kj% 13A +toyshop 'toIS0p K6% 2 +toyshops 'toIS0ps Kj% 2 +trace treIs J2%,M6% 16A,15A,15B +traceable 'treIs@bl OA% 3 +traced treIst Jc%,Jd% 16A,15A,15B +tracer 'treIs@R K6% 2 +traceries 'treIs@rIz Mj$ 3 +tracers 'treIs@z Kj% 2 +tracery 'treIs@rI M8% 3 +traces 'treIsIz Ja%,Mj% 26A,15A,15B +trachea tr@'kI@ Ki% 3 +tracheae tr@'kIi Kj$ 3 +trachoma tr@'k@Um@ L@$ 3 +tracing 'treIsIN Jb%,K6% 26A,15A,15B +tracing-paper 'treIsIN-peIp@R L@% 4 +tracings 'treIsINz Kj% 2 +track tr&k H0%,K6% 16A,15A,15B +tracked tr&kt Hc%,Hd%,OA% 16A,15A,15B +tracker 'tr&k@R K6% 2 +trackers 'tr&k@z Kj% 2 +tracking 'tr&kIN Hb% 26A,15A,15B +trackless 'tr&kl@s OA% 2 +tracks tr&ks Ha%,Kj% 16A,15A,15B +tract tr&kt K6% 1 +tractabilities ,tr&kt@'bIlItIz Mj$ 5 +tractability ,tr&kt@'bIlItI M8% 5 +tractable 'tr&kt@bl OA% 3 +traction 'tr&kSn L@% 2 +traction-engine 'tr&kSn-endZIn K6% 4 +traction-engines 'tr&kSn-endZInz Kj% 4 +tractor 'tr&kt@R K6% 2 +tractors 'tr&kt@z Kj% 2 +tracts tr&kts Kj% 1 +trad tr&d L@$ 1 +trade treId J2%,M6% 12A,2C,3A,14,15B +trade-in 'treId-In K6% 2 +trade-ins 'treId-Inz Kj% 2 +trade-union treId-'junI@n K6% 3 +trade-unionism treId-'junI@nIz@m L@% 6 +trade-unionist treId-'junI@nIst K6% 5 +trade-unionists treId-'junI@nIsts Kj% 5 +trade-unions treId-'junI@nz Kj% 3 +trade-wind 'treId-wInd K6% 2 +trade-winds 'treId-wIndz Kj% 2 +traded 'treIdId Jc%,Jd% 22A,2C,3A,14,15B +trademark 'treIdmAk K6% 2 +trademarks 'treIdmAks Kj% 2 +trader 'treId@R K6% 2 +traders 'treId@z Kj% 2 +trades treIdz Ja%,Mj% 12A,2C,3A,14,15B +trades-union treIdz-'junI@n K6% 3 +trades-unions treIdz-'junI@nz Kj% 3 +tradesfolk 'treIdzf@Uk Kj% 2 +tradesman 'treIdzm@n Ki% 2 +tradesmen 'treIdzm@n Kj% 2 +tradespeople 'treIdzpipl Kj% 3 +trading 'treIdIN Jb% 22A,2C,3A,14,15B +tradition tr@'dISn M6% 3 +traditional tr@'dIS@nl OA% 4 +traditionalism tr@'dISn@lIz@m L@% 5 +traditionalist tr@'dISn@lIst K6% 4 +traditionalists tr@'dISn@lIsts Kj% 4 +traditionally tr@'dIS@n@lI Pu% 5 +traditions tr@'dISnz Mj% 3 +traduce tr@'djus H2$ 26A +traduced tr@'djust Hc$,Hd$ 26A +traducer tr@'djus@R K6$ 3 +traducers tr@'djus@z Kj$ 3 +traduces tr@'djusIz Ha$ 36A +traducing tr@'djusIN Hb$ 36A +traffic 'tr&fIk I5%,L@% 23A +trafficator 'tr&fIkeIt@R K6$ 4 +trafficators 'tr&fIkeIt@z Kj$ 4 +trafficked 'tr&fIkt Ic%,Id% 23A +trafficker 'tr&fIk@R K6% 3 +traffickers 'tr&fIk@z Kj% 3 +trafficking 'tr&fIkIN Ib% 33A +traffics 'tr&fIks Ia% 23A +tragedian tr@'dZidI@n K6% 4 +tragedians tr@'dZidI@nz Kj% 4 +tragedienne tr@,dZidI'en K6$ 4 +tragediennes tr@,dZidI'enz Kj$ 4 +tragedies 'tr&dZ@dIz Mj% 3 +tragedy 'tr&dZ@dI M8% 3 +tragic 'tr&dZIk OA% 2 +tragically 'tr&dZIklI Pu% 3 +tragicomedies ,tr&dZI'k0m@dIz Kj% 5 +tragicomedy ,tr&dZI'k0m@dI K8% 5 +tragicomic ,tr&dZI'k0mIk OA% 4 +trail treIl J0%,K6% 12A,2C,6A,15A,15B +trailed treIld Jc%,Jd% 12A,2C,6A,15A,15B +trailer 'treIl@R K6% 2 +trailers 'treIl@z Kj% 2 +trailing 'treIlIN Jb% 22A,2C,6A,15A,15B +trails treIlz Ja%,Kj% 12A,2C,6A,15A,15B +train treIn J0%,K6% 12C,3A,6A,14,15A,17 +trainbearer 'treInbe@r@R K6% 3 +trainbearers 'treInbe@r@z Kj% 3 +trained treInd Jc%,Jd% 12C,3A,6A,14,15A,17 +trainee treI'ni K6% 2 +trainees treI'niz Kj% 2 +trainer 'treIn@R K6% 2 +trainers 'treIn@z Kj% 2 +training 'treInIN Jb%,L@% 22C,3A,6A,14,15A,17 +training-college 'treInIN-k0lIdZ K6% 4 +training-colleges 'treInIN-k0lIdZIz Kj% 5 +training-ship 'treInIN-SIp K6% 3 +training-ships 'treInIN-SIps Kj% 3 +trainload 'treInl@Ud K6% 2 +trainloads 'treInl@Udz Kj% 2 +trainman 'treInm&n Ki$ 2 +trainmen 'treInmen Kj$ 2 +trains treInz Ja%,Kj% 12C,3A,6A,14,15A,17 +traipse treIps I2% 12A,2B,2C +traipsed treIpst Ic%,Id% 12A,2B,2C +traipses 'treIpsIz Ia% 22A,2B,2C +traipsing 'treIpsIN Ib% 22A,2B,2C +trait treIt K6% 1 +traitor 'treIt@R K6% 2 +traitorous 'treIt@r@s OA% 3 +traitorously 'treIt@r@slI Pu% 4 +traitors 'treIt@z Kj% 2 +traitress 'treItrIs K7$ 2 +traitresses 'treItrIsIz Kj$ 3 +traits treIts Kj% 1 +trajectories tr@'dZekt@rIz Kj% 4 +trajectory tr@'dZekt@rI K8% 4 +tram tr&m K6% 1 +tram-car 'tr&m-kAR K6% 2 +tram-cars 'tr&m-kAz Kj% 2 +tramline 'tr&mlaIn K6% 2 +tramlines 'tr&mlaInz Kj% 2 +trammel 'tr&m@l H4$ 26A +trammelled 'tr&m@ld Hc$,Hd$ 26A +trammelling 'tr&m@lIN Hb$ 36A +trammels 'tr&m@lz Ha$,Kj$ 26A +tramp tr&mp J0%,K6% 12A,2B,2C,6A +tramp-steamer 'tr&mp-stim@R K6% 3 +tramp-steamers 'tr&mp-stim@z Kj% 3 +tramped tr&mpt Jc%,Jd% 12A,2B,2C,6A +tramping 'tr&mpIN Jb% 22A,2B,2C,6A +trample 'tr&mpl J2%,K6% 22C,3A,6A,15B +trampled 'tr&mpld Jc%,Jd% 22C,3A,6A,15B +tramples 'tr&mplz Ja%,Kj% 22C,3A,6A,15B +trampling 'tr&mplIN Jb% 22C,3A,6A,15B +trampoline 'tr&mp@lin K6% 3 +trampolines 'tr&mp@linz Kj% 3 +tramps tr&mps Ja%,Kj% 12A,2B,2C,6A +trams tr&mz Kj% 1 +tramway 'tr&mweI K6% 2 +tramways 'tr&mweIz Kj% 2 +trance trAns K6% 1 +trances 'trAnsIz Kj% 2 +tranquil 'tr&NkwIl OA% 2 +tranquility tr&n'kwIlItI L@% 4 +tranquilize 'tr&nkwIlaIz H2% 36A +tranquilized 'tr&nkwIlaIzd Hc%,Hd% 36A +tranquilizes 'tr&nkwIlaIzIz Ha% 46A +tranquilizing 'tr&nkwIlaIzIN Hb% 46A +tranquillity tr&n'kwIlItI L@% 4 +tranquillize 'tr&nkwIlaIz H2% 36A +tranquillized 'tr&nkwIlaIzd Hc%,Hd% 36A +tranquillizer 'tr&nkwIlaIz@R K6% 4 +tranquillizers 'tr&nkwIlaIz@z Kj% 4 +tranquillizes 'tr&nkwIlaIzIz Ha% 46A +tranquillizing 'tr&nkwIlaIzIN Hb% 46A +tranquilly 'tr&NkwIlI Pu% 3 +trans tr&nz Y~$ 1 +trans- tr&nz- U-% 1 +transact tr&n'z&kt H0% 26A,14 +transacted tr&n'z&ktId Hc%,Hd% 36A,14 +transacting tr&n'z&ktIN Hb% 36A,14 +transaction tr&n'z&kSn M6% 3 +transactions tr&n'z&kSnz Mj% 3 +transacts tr&n'z&kts Ha% 26A,14 +transalpine tr&n'z&lpaIn K6$,OA% 3 +transalpines tr&n'z&lpaInz Kj$ 3 +transatlantic ,tr&nz@t'l&ntIk OA% 4 +transcend tr&n'send H0% 26A +transcended tr&n'sendId Hc%,Hd% 36A +transcendence tr&n'send@ns L@% 3 +transcendency tr&n'send@nsI L@$ 4 +transcendent tr&n'send@nt OA% 3 +transcendental ,tr&nsen'dentl OA% 4 +transcendentalism ,tr&nsen'dent@lIz@m L@$ 6 +transcendentalist ,tr&nsen'dent@lIst K6$ 5 +transcendentalists ,tr&nsen'dent@lIsts Kj$ 5 +transcendentally ,tr&ns@n'dent@lI Pu% 5 +transcending tr&n'sendIN Hb% 36A +transcends tr&n'sendz Ha% 26A +transcontinental ,tr&nzk0ntI'nentl OA% 5 +transcribe tr&n'skraIb H2% 26A +transcribed tr&n'skraIbd Hc%,Hd% 26A +transcribes tr&n'skraIbz Ha% 26A +transcribing tr&n'skraIbIN Hb% 36A +transcript 'tr&nskrIpt K6% 2 +transcription tr&n'skrIpSn M6% 3 +transcriptions tr&n'skrIpSnz Mj% 3 +transcripts 'tr&nskrIpts Kj% 2 +transept 'tr&nsept K6% 2 +transepts 'tr&nsepts Kj% 2 +transfer 'tr&nsf3R M6% 2 +transfer tr&ns'f3R J4% 23A,6A,14 +transferability ,tr&ns,f3r@'bIlItI L@% 6 +transferable tr&ns'f3r@bl OA% 4 +transference 'tr&nsf@r@ns M6% 3 +transferences 'tr&nsf@r@nsIz Mj$ 4 +transferred tr&ns'f3d Jc%,Jd% 23A,6A,14 +transferring tr&ns'f3rIN Jb% 33A,6A,14 +transfers 'tr&nsf3z Mj% 2 +transfers tr&ns'f3z Ja% 23A,6A,14 +transfiguration ,tr&nsfIg@'reISn M6% 5 +transfigurations ,tr&nsfIg@'reISnz Mj$ 5 +transfigure tr&ns'fIg@R H2$ 36A +transfigured tr&ns'fIg@d Hc$,Hd% 36A +transfigures tr&ns'fIg@z Ha$ 36A +transfiguring tr&ns'fIg@rIN Hb$ 46A +transfix tr&ns'fIks H1% 26A +transfixed tr&ns'fIkst Hc%,Hd% 26A +transfixes tr&ns'fIksIz Ha% 36A +transfixing tr&ns'fIksIN Hb% 36A +transform tr&ns'fOm H0% 26A,14 +transformable tr&ns'fOm@bl OA% 4 +transformation ,tr&nsf@'meISn M6% 4 +transformations ,tr&nsf@'meISnz Mj% 4 +transformed tr&ns'fOmd Hc%,Hd% 26A,14 +transformer tr&ns'fOm@R K6% 3 +transformers tr&ns'fOm@z Kj% 3 +transforming tr&ns'fOmIN Hb% 36A,14 +transforms tr&ns'fOmz Ha% 26A,14 +transfuse tr&ns'fjuz H2$ 26A +transfused tr&ns'fjuzd Hc$,Hd$ 26A +transfuses tr&ns'fjuzIz Ha$ 36A +transfusing tr&ns'fjuzIN Hb$ 36A +transfusion tr&ns'fjuZn M6% 3 +transfusions tr&ns'fjuZnz Mj% 3 +transgress tr&nz'gres J1% 22A,6A +transgressed tr&nz'grest Jc%,Jd% 22A,6A +transgresses tr&nz'gresIz Ja% 32A,6A +transgressing tr&nz'gresIN Jb% 32A,6A +transgression tr&nz'greSn M6% 3 +transgressions tr&nz'greSnz Mj% 3 +transgressor tr&nz'gres@R K6% 3 +transgressors tr&nz'gres@z Kj% 3 +transience 'tr&nzI@ns L@% 3 +transiency 'tr&nzI@nsI L@$ 4 +transient 'tr&nzI@nt K6$,OA% 3 +transiently 'tr&nzI@ntlI Pu% 4 +transients 'tr&nzI@nts Kj$ 3 +transistor tr&n'zIst@R K6% 3 +transistorized tr&n'zIst@raIzd OA% 4 +transistors tr&n'zIst@z Kj% 3 +transit 'tr&nsIt L@% 2 +transition tr&n'zISn M6% 3 +transitional tr&n'sIS@nl OA% 4 +transitionally tr&n'sIS@n@lI Pu% 5 +transitions tr&n'zISnz Mj% 3 +transitive 'tr&ns@tIv OA% 3 +transitively 'tr&ns@tIvlI Pu% 4 +transitory 'tr&nsItrI OA% 3 +translatable tr&ns'leIt@bl OA% 4 +translate tr&nz'leIt H2% 26A,14 +translated tr&nz'leItId Hc%,Hd% 36A,14 +translates tr&nz'leIts Ha% 26A,14 +translating tr&nz'leItIN Hb% 36A,14 +translation tr&ns'leISn M6% 3 +translations tr&ns'leISnz Mj% 3 +translator tr&nz'leIt@R K6% 3 +translators tr&nz'leIt@z Kj% 3 +transliterate tr&nz'lIt@reIt H2$ 46A,14 +transliterated tr&nz'lIt@reItId Hc$,Hd$ 56A,14 +transliterates tr&nz'lIt@reIts Ha$ 46A,14 +transliterating tr&nz'lIt@reItIN Hb$ 56A,14 +transliteration ,tr&nzlIt@'reISn M6$ 5 +transliterations ,tr&nzlIt@'reISnz Mj$ 5 +translucence tr&nz'lusns L@% 3 +translucency tr&nz'lusnsI L@$ 4 +translucent tr&nz'lusnt OA% 3 +transmigration ,tr&nzmaI'greISn L@% 4 +transmission tr&nz'mISn M6% 3 +transmissions tr&nz'mISnz Mj% 3 +transmit tr&nz'mIt H4% 26A,14 +transmits tr&nz'mIts Ha% 26A,14 +transmitted tr&nz'mItId Hc%,Hd% 36A,14 +transmitter tr&nz'mIt@R K6% 3 +transmitters tr&nz'mIt@z Kj% 3 +transmitting tr&nz'mItIN Hb% 36A,14 +transmogrification ,tr&nzm0grIfI'keISn M6$ 6 +transmogrifications ,tr&nzm0grIfI'keISnz Mj$ 6 +transmogrified tr&nz'm0grIfaId Hc$,Hd$ 46A +transmogrifies tr&nz'm0grIfaIz Ha$ 46A +transmogrify tr&nz'm0grIfaI H3$ 46A +transmogrifying tr&nz'm0grIfaIIN Hb$ 56A +transmutable tr&nz'mjut@bl OA$ 4 +transmutation ,tr&nzmju'teISn M6$ 4 +transmutations ,tr&nzmju'teISnz Mj$ 4 +transmute tr&nz'mjut H2$ 26A,14 +transmuted tr&nz'mjutId Hc$,Hd$ 36A,14 +transmutes tr&nz'mjuts Ha$ 26A,14 +transmuting tr&nz'mjutIN Hb$ 36A,14 +transoceanic ,tr&nz,@USI'&nIk OA$ 5 +transom 'tr&ns@m K6$ 2 +transom-window ,tr&ns@m-'wInd@U K6$ 4 +transom-windows ,tr&ns@m-'wInd@Uz Kj$ 4 +transoms 'tr&ns@mz Kj$ 2 +transparence tr&ns'p&r@ns L@% 3 +transparencies tr&ns'p&r@nsIz Mj% 4 +transparency tr&ns'p&r@nsI M8% 4 +transparent tr&ns'p&r@nt OA% 3 +transparently tr&ns'p&r@ntlI Pu% 4 +transpiration ,tr&nspI'reISn L@$ 4 +transpire tr&n'spaI@R J2% 22A,6A +transpired tr&n'spaI@d Jc%,Jd% 22A,6A +transpires tr&n'spaI@z Ja% 22A,6A +transpiring tr&n'spaI@rIN Jb% 32A,6A +transplant 'tr&nsplAnt K6% 2 +transplant tr&ns'plAnt J0% 22A,6A +transplantation ,tr&nsplAn'teISn M6% 4 +transplantations ,tr&nsplAn'teISnz Mj$ 4 +transplanted tr&ns'plAntId Jc%,Jd% 32A,6A +transplanting tr&ns'plAntIN Jb% 32A,6A +transplants 'tr&nsplAnts Kj% 2 +transplants tr&ns'plAnts Ja% 22A,6A +transpolar ,tr&nz'p@Ul@R OA$ 3 +transport 'tr&nspOt M6% 2 +transport tr&n'spOt H0% 26A,15A +transportable tr&n'spOt@bl OA% 4 +transportation ,tr&nspO'teISn L@% 4 +transported tr&n'spOtId Hc%,Hd% 36A,15A +transporter tr&n'spOt@R K6% 3 +transporters tr&n'spOt@z Kj% 3 +transporting tr&n'spOtIN Hb% 36A,15A +transports 'tr&nspOts Mj% 2 +transports tr&n'spOts Ha% 26A,15A +transpose tr&n'sp@Uz H2% 26A,14 +transposed tr&n'sp@Uzd Hc%,Hd% 26A,14 +transposes tr&n'sp@UzIz Ha% 36A,14 +transposing tr&n'sp@UzIN Hb% 36A,14 +transposition ,tr&nsp@'zISn M6% 4 +transpositions ,tr&nsp@'zISnz Mj% 4 +transsexual tr&nz'sekSU@l K6$ 4 +transsexuals tr&nz'sekSU@lz Kj$ 4 +transship tr&n'SIp H4$ 26A +transshipment tr&n'SIpm@nt K6$ 3 +transshipments tr&n'SIpm@nts Kj$ 3 +transshipped tr&n'SIpt Hc$,Hd$ 26A +transshipping tr&n'SIpIN Hb$ 36A +transships tr&n'SIps Ha$ 26A +transubstantiation ,tr&ns@b,st&nSI'eISn L@% 6 +transverse 'tr&nzv3s OA% 2 +transversely 'tr&nzv3slI Pu% 3 +transvestism tr&nz'vestIz@m L@% 4 +transvestite tr&nz'vestaIt K6% 3 +transvestites tr&nz'vestaIts Kj% 3 +trap tr&p H4%,K6% 16A,15A +trap-door 'tr&p-dOR K6% 2 +trap-doors 'tr&p-dOz Kj% 2 +trap-shooting 'tr&p-SutIN L@$ 3 +trapeze tr@'piz K6% 2 +trapezes tr@'pizIz Kj% 3 +trapezium tr@'pizI@m K6% 4 +trapeziums tr@'pizI@mz Kj% 4 +trapezoid 'tr&pIzoId K6$ 3 +trapezoids 'tr&pIzoIdz Kj$ 3 +trapped tr&pt Hc%,Hd% 16A,15A +trapper 'tr&p@R K6% 2 +trappers 'tr&p@z Kj% 2 +trapping 'tr&pIN Hb% 26A,15A +trappings 'tr&pINz Kj% 2 +traps tr&ps Ha%,Kj% 16A,15A +trash tr&S L@% 1 +trashier 'tr&SI@R Or$ 3 +trashiest 'tr&SIIst Os$ 3 +trashy 'tr&SI OD% 2 +trauma 'trOm@ K6% 2 +traumas 'trOm@z Kj% 2 +traumatic trO'm&tIk OA% 3 +travail 'tr&veIl M6% 2 +travails 'tr&veIlz Mj% 2 +travel 'tr&vl J4%,M6% 22A,2B,2C,3A,4A +travel-soiled 'tr&vl-soIld OA% 3 +travel-stained 'tr&vl-steInd OA% 3 +travel-worn 'tr&vl-wOn OA% 3 +traveled 'tr&vld OA$ 2 +travelled 'tr&vld Jc%,Jd%,OA% 22A,2B,2C,3A,4A +traveller 'tr&vl@R K6% 2 +travellers 'tr&vl@z Kj% 2 +travelling 'tr&v@lIN Jb%,L@% 32A,2B,2C,3A,4A +travelogue 'tr&v@l0g K6% 3 +travelogues 'tr&v@l0gz Kj% 3 +travels 'tr&vlz Ja%,Mj% 22A,2B,2C,3A,4A +traverse 'tr&v3s H2%,K6$ 26A +traversed 'tr&v3st Hc%,Hd% 26A +traverses 'tr&v3sIz Ha%,Kj% 36A +traversing 'tr&v3sIN Hb% 36A +travestied 'tr&v@stId Hc%,Hd% 36A +travesties 'tr&v@stIz Ha%,Kj% 36A +travesty 'tr&v@stI H3%,K8% 36A +travestying 'tr&v@stIIN Hb$ 46A +trawl trOl J0%,K6% 12A,6A +trawl-net 'trOl-net K6% 2 +trawl-nets 'trOl-nets Kj% 2 +trawled trOld Jc%,Jd% 12A,6A +trawler 'trOl@R K6% 2 +trawlers 'trOl@z Kj% 2 +trawling 'trOlIN Jb% 22A,6A +trawls trOlz Ja%,Kj$ 12A,6A +tray treI K6% 1 +tray-cloth 'treI-kl0T K6% 2 +tray-cloths 'treI-kl0Ts Kj% 2 +trays treIz Kj% 1 +treacheries 'tretS@rIz Mj$ 3 +treacherous 'tretS@r@s OA% 3 +treacherously 'tretS@r@slI Pu% 4 +treachery 'tretS@rI M8% 3 +treacle 'trikl L@% 2 +treacly 'triklI OA% 2 +tread tred J5%,K6% 12C,3A,6A,15A,15B +treading 'tredIN Jb% 22C,3A,6A,15A,15B +treadle 'tredl I2%,K6% 22A +treadled 'tredld Ic%,Id% 22A +treadles 'tredlz Ia%,Kj% 22A +treadling 'tredlIN Ib% 22A +treadmill 'tredmIl K6% 2 +treadmills 'tredmIlz Kj% 2 +treads tredz Ja%,Kj% 12C,3A,6A,15A,15B +treas 'treZ@r@R Y>% 3 +treason 'trizn L@% 2 +treasonable 'triz@n@bl OA% 4 +treasonably 'triz@n@blI Pu% 4 +treasonous 'triz@n@s OA$ 3 +treasure 'treZ@R H2%,M6% 26A,15B +treasure-house 'treZ@-haUs K6% 3 +treasure-houses 'treZ@-haUzIz Kj$ 4 +treasure-trove 'treZ@-tr@Uv L@% 3 +treasured 'treZ@d Hc%,Hd% 26A,15B +treasurer 'treZ@r@R K6% 3 +treasurers 'treZ@r@z Kj% 3 +treasures 'treZ@z Ha%,Mj% 26A,15B +treasuries 'treZ@rIz Kj% 3 +treasuring 'treZ@rIN Hb% 36A,15B +treasury 'treZ@rI K8% 3 +treat trit J0%,K6% 13A,6A,14,15A,16B +treated 'tritId Jc%,Jd% 23A,6A,14,15A,16B +treaties 'tritIz Mj% 2 +treating 'tritIN Jb% 23A,6A,14,15A,16B +treatise 'tritIs K6% 2 +treatises 'tritIsIz Kj% 3 +treatment 'tritm@nt M6% 2 +treatments 'tritm@nts Mj% 2 +treats trits Ja%,Kj% 13A,6A,14,15A,16B +treaty 'tritI M8% 2 +treble 'trebl J2%,K6%,OA% 22A,6A +trebled 'trebld Jc%,Jd% 22A,6A +trebles 'treblz Ja%,Kj% 22A,6A +trebling 'treblIN Jb% 22A,6A +tree tri H5$,K6% 16A +tree-fern 'tri-f3n K6% 2 +tree-ferns 'tri-f3nz Kj% 2 +treed trid Hc$,Hd$ 16A +treeing 'triIN Hb$ 26A +treeless 'tril@s OA% 2 +trees triz Ha$,Kj% 16A +trefoil 'trefoIl K6$ 2 +trefoils 'trefoIlz Kj$ 2 +trek trek I4%,K6% 12A,2B,2C +trekked trekt Ic%,Id% 12A,2B,2C +trekking 'trekIN Ib% 22A,2B,2C +treks treks Ia%,Kj% 12A,2B,2C +trellis 'trelIs H1$,K7% 26A +trellised 'trelIst Hc$,Hd% 26A +trellises 'trelIsIz Ha$,Kj% 36A +trellising 'trelIsIN Hb$ 36A +tremble 'trembl I2%,K6% 22A,2B,2C,4B +trembled 'trembld Ic%,Id% 22A,2B,2C,4B +trembles 'tremblz Ia%,Kj% 22A,2B,2C,4B +trembling 'tremblIN Ib% 22A,2B,2C,4B +tremendous trI'mend@s OA% 3 +tremendously trI'mend@slI Pu% 4 +tremolo 'trem@l@U K6% 3 +tremolos 'trem@l@Uz Kj% 3 +tremor 'trem@R K6% 2 +tremors 'trem@z Kj% 2 +tremulous 'tremjUl@s OA$ 3 +tremulously 'tremjUl@slI Pu$ 4 +trench trentS H1$,K7% 16A +trenchancy 'trentS@nsI L@$ 3 +trenchant 'trentS@nt OA% 2 +trenchantly 'trentS@ntlI Pu% 3 +trenched trentSt Hc$,Hd$ 16A +trencher 'trentS@R K6$ 2 +trencherman 'trentS@m@n Ki% 3 +trenchermen 'trentS@m@n Kj% 3 +trenchers 'trentS@z Kj$ 2 +trenches 'trentSIz Ha$,Kj% 26A +trenching 'trentSIN Hb$ 26A +trend trend I0$,K6% 12C +trend-setter 'trend-set@R K6% 3 +trend-setters 'trend-set@z Kj% 3 +trend-setting 'trend-setIN L@% 3 +trended 'trendId Ic$,Id$ 22C +trendier 'trendI@R Or% 3 +trendiest 'trendIIst Os% 3 +trending 'trendIN Ib$ 22C +trends trendz Ia$,Kj% 12C +trendy 'trendI OD% 2 +trepan trI'p&n H4$ 2 +trepanned trI'p&nd Hc$,Hd$ 2 +trepanning trI'p&nIN Hb$ 3 +trepans trI'p&nz Ha$ 2 +trephine trI'fin H2$,K6$ 26A +trephined trI'find Hc$,Hd$ 26A +trephines trI'finz Ha$,Kj$ 26A +trephining trI'finIN Hb$ 36A +trepidation ,trepI'deISn L@% 4 +trespass 'tresp@s I1%,M7% 22A,3A +trespassed 'tresp@st Ic%,Id% 22A,3A +trespasser 'tresp@s@R K6% 3 +trespassers 'tresp@s@z Kj% 3 +trespasses 'tresp@sIz Ia%,Mj% 32A,3A +trespassing 'tresp@sIN Ib% 32A,3A +tress tres K7% 1 +tresses 'tresIz Kj% 2 +trestle 'tresl K6% 2 +trestle-bridge 'tresl-brIdZ K6$ 3 +trestle-bridges 'tresl-brIdZIz Kj$ 4 +trestle-table 'tresl-teIbl K6% 4 +trestle-tables 'tresl-teIblz Kj% 4 +trestles 'treslz Kj% 2 +trews truz Kj$ 1 +tri- traI- U-% 1 +triad 'traI&d K6% 2 +triads 'traI&dz Kj% 2 +trial 'traI@l M6% 2 +trials 'traI@lz Mj% 2 +triangle 'traI&Ngl K6% 3 +triangles 'traI&Nglz Kj% 3 +triangular traI'&NgjUl@R OA% 4 +tribal 'traIbl OA% 2 +tribalism 'traIb@lIz@m L@% 4 +tribe traIb K6% 1 +tribes traIbz Kj% 1 +tribesman 'traIbzm@n Ki% 2 +tribesmen 'traIbzm@n Kj% 2 +tribulation ,trIbjU'leISn M6% 4 +tribulations ,trIbjU'leISnz Mj% 4 +tribunal traI'bjunl K6% 3 +tribunals traI'bjunlz Kj% 3 +tribune 'trIbjun K6% 2 +tribunes 'trIbjunz Kj% 2 +tributaries 'trIbjUt@rIz Kj% 4 +tributary 'trIbjUt@rI K8%,OA% 4 +tribute 'trIbjut M6% 2 +tributes 'trIbjuts Mj% 2 +trice traIs H2$,K6% 115B +triced traIst Hc$,Hd$ 115B +trices 'traIsIz Ha$,Kj$ 215B +tricing 'traIsIN Hb$ 215B +trick trIk H0%,K6% 16A,14,15B +tricked trIkt Hc%,Hd% 16A,14,15B +trickery 'trIk@rI L@% 3 +trickier 'trIkI@R Or% 3 +trickiest 'trIkIIst Os% 3 +trickiness 'trIkInIs L@% 3 +tricking 'trIkIN Hb% 26A,14,15B +trickle 'trIkl J2%,K6% 22A,2C,15A +trickled 'trIkld Jc%,Jd% 22A,2C,15A +trickles 'trIklz Ja%,Kj% 22A,2C,15A +trickling 'trIklIN Jb% 22A,2C,15A +tricks trIks Ha%,Kj% 16A,14,15B +trickster 'trIkst@R K6% 2 +tricksters 'trIkst@z Kj% 2 +tricksy 'trIksI OA% 2 +tricky 'trIkI OD% 2 +tricolour 'trIk@l@R K6$ 3 +tricolours 'trIk@l@z Kj$ 3 +tricycle 'traIsIkl K6% 3 +tricycles 'traIsIklz Kj% 3 +trident 'traIdnt K6% 2 +tridents 'traIdnts Kj$ 2 +tried traId Jc%,Jd%,OA% 12A,2B,3A,6A,6B,6C,7A,10,15A,15B +triennial traI'enI@l K6$,OA$ 4 +triennials traI'enI@lz Kj$ 4 +trier 'traI@R K6$ 2 +triers 'traI@z Kj$ 2 +tries traIz Ja%,Kj% 12A,2B,3A,6A,6B,6C,7A,10,15A,15B +trifle 'traIf@l J2%,M6% 23A,15B +trifled 'traIf@ld Jc%,Jd% 23A,15B +trifler 'traIfl@R K6$ 2 +triflers 'traIfl@z Kj$ 2 +trifles 'traIf@lz Ja%,Mj% 23A,15B +trifling 'traIflIN Jb%,OA% 23A,15B +trigger 'trIg@R H0%,K6% 215B +trigger-happy 'trIg@-h&pI OA% 4 +triggered 'trIg@d Hc%,Hd% 215B +triggering 'trIg@rIN Hb$ 315B +triggers 'trIg@z Ha%,Kj% 215B +trigonometry ,trIg@'n0m@trI L@% 5 +trilateral ,traI'l&t@r@l OA$ 4 +trilbies 'trIlbIz Kj$ 2 +trilby 'trIlbI K8% 2 +trill trIl J0%,K6% 12A,2C,6A +trilled trIld Jc%,Jd% 12A,2C,6A +trilling 'trIlIN Jb% 22A,2C,6A +trillion 'trIlI@n K6%,OA% 3 +trillions 'trIlI@nz Kj% 3 +trillionth 'trIlI@nT K6%,OA% 3 +trillionths 'trIlI@nTs Kj% 3 +trills trIlz Ja%,Kj% 12A,2C,6A +trilogies 'trIl@dZIz Kj% 3 +trilogy 'trIl@dZI K8% 3 +trim trIm J4%,L@%,OE% 12A,6A,14,15A,22 +trimaran 'traIm@r&n K6% 3 +trimarans 'traIm@r&nz Kj% 3 +trimly 'trImlI Pu% 2 +trimmed trImd Jc%,Jd% 12A,6A,14,15A,22 +trimmer 'trIm@R K6$,Or% 2 +trimmers 'trIm@z Kj$ 2 +trimmest 'trImIst Os% 2 +trimming 'trImIN Jb%,M6% 22A,6A,14,15A,22 +trimmings 'trImINz Mj% 2 +trims trImz Ja% 12A,6A,14,15A,22 +trinities 'trInItIz Kj$ 3 +trinitrotoluene ,traI,naItr@U't0ljUin L@$ 6 +trinity 'trInItI K8% 3 +trinket 'trINkIt K6% 2 +trinkets 'trINkIts Kj% 2 +trio 'tri@U K6% 2 +trios 'tri@Uz Kj% 2 +trip trIp J4%,K6% 12A,2C,3A,15B +tripartite ,traI'pAtaIt OA% 3 +tripe traIp L@% 1 +triple 'trIpl J2%,OA% 22A,6A +tripled 'trIpld Jc%,Jd% 22A,6A +triples 'trIplz Ja% 22A,6A +triplet 'trIpl@t K6% 2 +triplets 'trIpl@ts Kj% 2 +triplex 'trIpleks OA$ 2 +triplicate 'trIplIk@t K6$,OA% 3 +triplicate 'trIplIkeIt H2$ 36A +triplicated 'trIplIkeItId Hc$,Hd$ 46A +triplicates 'trIplIk@ts Kj$ 3 +triplicates 'trIplIkeIts Ha$ 36A +triplicating 'trIplIkeItIN Hb$ 46A +tripling 'trIplIN Jb% 22A,6A +tripod 'traIp0d K6% 2 +tripods 'traIp0dz Kj% 2 +tripos 'traIp0s K7$ 2 +triposes 'traIp0sIz Kj$ 3 +tripped trIpt Jc%,Jd% 12A,2C,3A,15B +tripper 'trIp@R K6% 2 +trippers 'trIp@z Kj% 2 +tripping 'trIpIN Jb%,OA$ 22A,2C,3A,15B +trippingly 'trIpINlI Pu$ 3 +trips trIps Ja%,Kj% 12A,2C,3A,15B +triptych 'trIptIk K6$ 2 +triptychs 'trIptIks Kj$ 2 +trireme 'traIrim K6$ 2 +triremes 'traIrimz Kj$ 2 +trisect traI'sekt H0$ 26A +trisected traI'sektId Hc$,Hd$ 36A +trisecting traI'sektIN Hb$ 36A +trisects traI'sekts Ha$ 26A +trite traIt OA% 1 +tritely 'traItlI Pu% 2 +triteness 'traItn@s L@% 2 +triumph 'traI@mf I0%,M6% 22A,3A +triumphal traI'Vmf@l OA% 3 +triumphant traI'Vmf@nt OA% 3 +triumphantly traI'Vmf@ntlI Pu% 4 +triumphed 'traI@mft Ic%,Id% 22A,3A +triumphing 'traI@mfIN Ib% 32A,3A +triumphs 'traI@mfs Ia%,Mj% 22A,3A +triumvir traI'Vmv@R K6$ 3 +triumvirate traI'VmvIr@t K6% 4 +triumvirates traI'VmvIr@ts Kj$ 4 +triumvirs traI'Vmv@z Kj$ 3 +triune 'traIjun OA$ 2 +trivet 'trIvIt K6$ 2 +trivets 'trIvIts Kj$ 2 +trivia 'trIvI@ Kj% 3 +trivial 'trIvI@l OA% 3 +trivialities ,trIvI'&lItIz Mj% 5 +triviality ,trIvI'&lItI M8% 5 +trivialize 'trIvI@laIz H2% 46A +trivialized 'trIvI@laIzd Hc%,Hd% 46A +trivializes 'trIvI@laIzIz Ha% 56A +trivializing 'trIvI@laIzIN Hb% 56A +trivially 'trIvI@lI Pu% 4 +trochaic tr@U'keIIk OA$ 3 +trochee 'tr@Uki K6$ 2 +trochees 'tr@Ukiz Kj$ 2 +trod tr0d Jc%,Jd% 12C,3A,6A,15A,15B +trodden 'tr0dn Jd% 22C,3A,6A,15A,15B +troglodyte 'tr0gl@daIt K6$ 3 +troglodytes 'tr0gl@daIts Kj$ 3 +troika 'troIk@ K6$ 2 +troikas 'troIk@z Kj$ 2 +troll tr@Ul J0$,K6$ 12A,2C +trolled tr@Uld Jc$,Jd$ 12A,2C +trolley 'tr0lI K6% 2 +trolley-car 'tr0lI-kAR K6% 3 +trolley-cars 'tr0lI-kAz Kj% 3 +trolleys 'tr0lIz Kj% 2 +trolling 'tr@UlIN Jb$ 22A,2C +trollop 'tr0l@p K6% 2 +trollops 'tr0l@ps Kj% 2 +trolls tr@Ulz Ja$,Kj$ 12A,2C +trombone tr0m'b@Un K6% 2 +trombones tr0m'b@Unz Kj% 2 +trombonist tr0m'b@UnIst K6% 3 +trombonists tr0m'b@UnIsts Kj% 3 +troop trup J0%,K6% 12C +troop-carrier 'trup-k&rI@R K6% 4 +troop-carriers 'trup-k&rI@z Kj% 4 +trooped trupt Jc%,Jd% 12C +trooper 'trup@R K6% 2 +troopers 'trup@z Kj% 2 +trooping 'trupIN Jb% 22C +troops trups Ja%,Kj% 12C +troopship 'trupSIp K6% 2 +troopships 'trupSIps Kj% 2 +trope tr@Up K6$ 1 +tropes tr@Ups Kj$ 1 +trophies 'tr@UfIz Kj% 2 +trophy 'tr@UfI K8% 2 +tropic 'tr0pIk K6% 2 +tropical 'tr0pIkl OA% 3 +tropically 'tr0pIklI Pu% 3 +tropics 'tr0pIks Kj% 2 +trot tr0t J4%,K6% 12A,2B,2C,15A,15B +troth tr@UT L@$ 1 +trots tr0ts Ja%,Kj% 12A,2B,2C,15A,15B +trotted 'tr0tId Jc%,Jd% 22A,2B,2C,15A,15B +trotter 'tr0t@R K6% 2 +trotters 'tr0t@z Kj% 2 +trotting 'tr0tIN Jb% 22A,2B,2C,15A,15B +troubadour 'trub@dOR K6% 3 +troubadours 'trub@dOz Kj% 3 +trouble 'trVbl J2%,M6% 22A,2C,4A,6A,14,17 +troubled 'trVbld Jc%,Jd% 22A,2C,4A,6A,14,17 +troublemaker 'trVblmeIk@R K6% 4 +troublemakers 'trVblmeIk@z Kj% 4 +troubles 'trVblz Ja%,Mj% 22A,2C,4A,6A,14,17 +troubleshooter 'trVblSut@R K6% 4 +troubleshooters 'trVblSut@z Kj% 4 +troublesome 'trVbls@m OA% 3 +troubling 'trVblIN Jb% 22A,2C,4A,6A,14,17 +troublous 'trVbl@s OA$ 2 +trough tr0f K6% 1 +troughs tr0fs Kj% 1 +trounce traUns H2% 16A +trounced traUnst Hc%,Hd% 16A +trounces 'traUnsIz Ha% 26A +trouncing 'traUnsIN Hb%,K6% 26A +trouncings 'traUnsINz Kj$ 2 +troupe trup K6% 1 +trouper 'trup@R K6% 2 +troupers 'trup@z Kj% 2 +troupes trups Kj% 1 +trouser 'traUz@R K6% 2 +trousers 'traUz@z Kj% 2 +trousseau 'trus@U K6% 2 +trousseaus 'trus@Uz Kj$ 2 +trousseaux 'trus@Uz Kj$ 2 +trout traUt M9% 1 +trove tr@Uv K6% 1 +troves tr@Uvz Kj$ 1 +trowel 'traU@l K6% 2 +trowels 'traU@lz Kj% 2 +troy troI L@$ 1 +truancies 'tru@nsIz Mj$ 3 +truancy 'tru@nsI M8% 3 +truant 'tru@nt K6% 2 +truants 'tru@nts Kj% 2 +truce trus K6% 1 +truces 'trusIz Kj$ 2 +truck trVk M6% 1 +truckle 'trVkl I2$,K6$ 23A +truckle-bed 'trVkl-bed K6% 3 +truckle-beds 'trVkl-bedz Kj% 3 +truckled 'trVkld Ic$,Id$ 23A +truckles 'trVklz Ia$,Kj$ 23A +truckling 'trVklIN Ib$ 23A +trucks trVks Mj% 1 +truculence 'trVkjUl@ns L@% 3 +truculency 'trVkjUl@nsI L@$ 4 +truculent 'trVkjUl@nt OA% 3 +truculently 'trVkjUl@ntlI Pu% 4 +trudge trVdZ I2%,K6% 12A,2B,2C +trudged trVdZd Ic%,Id% 12A,2B,2C +trudges 'trVdZIz Ia%,Kj% 22A,2B,2C +trudging 'trVdZIN Ib% 22A,2B,2C +true tru H2$,K6$,OB*,Pu* 115B +true-blue tru-'blu K6%,OA% 2 +true-blues tru-'bluz Kj% 2 +true-hearted tru-'hAtId OA$ 3 +trued trud Hc$,Hd$ 115B +truelove tru'lVv K6% 2 +trueloves tru'lVvz Kj$ 2 +truer 'tru@R Or% 2 +trues truz Ha$,Kj$ 115B +truest 'truIst Os% 2 +truffle 'trVfl K6% 2 +truffles 'trVflz Kj% 2 +truing 'truIN Hb$ 215B +truism 'truIz@m K6% 3 +truisms 'truIz@mz Kj% 3 +truly 'trulI Pu% 2 +trump trVmp J0%,K6% 12A,6A,15B +trumped trVmpt Jc%,Jd% 12A,6A,15B +trumpery 'trVmp@rI OA% 3 +trumpet 'trVmpIt J0%,K6% 22A,2C,6A,15B +trumpeted 'trVmpItId Jc%,Jd% 32A,2C,6A,15B +trumpeter 'trVmpIt@R K6% 3 +trumpeters 'trVmpIt@z Kj% 3 +trumpeting 'trVmpItIN Jb% 32A,2C,6A,15B +trumpets 'trVmpIts Ja%,Kj% 22A,2C,6A,15B +trumping 'trVmpIN Jb% 22A,6A,15B +trumps trVmps Ja%,Kj% 12A,6A,15B +truncate trVN'keIt H2% 26A +truncated trVN'keItId Hc%,Hd% 36A +truncates trVN'keIts Ha% 26A +truncating trVN'keItIN Hb% 36A +truncheon 'trVntS@n K6% 2 +truncheons 'trVntS@nz Kj% 2 +trundle 'trVndl J2% 22C,6A,15A,15B +trundled 'trVndld Jc%,Jd% 22C,6A,15A,15B +trundles 'trVndlz Ja% 22C,6A,15A,15B +trundling 'trVndlIN Jb% 22C,6A,15A,15B +trunk trVNk K6% 1 +trunk-call 'trVNk-kOl K6% 2 +trunk-calls 'trVNk-kOlz Kj% 2 +trunk-line 'trVNk-laIn K6$ 2 +trunk-lines 'trVNk-laInz Kj$ 2 +trunk-road 'trVNk-r@Ud K6% 2 +trunk-roads 'trVNk-r@Udz Kj% 2 +trunking 'trVNkIN L@% 2 +trunks trVNks Kj% 1 +truss trVs H1$,K7% 16A,15B +trussed trVst Hc$,Hd% 16A,15B +trusses 'trVsIz Ha$,Kj% 26A,15B +trussing 'trVsIN Hb$ 26A,15B +trust trVst J0%,M6% 13A,6A,7A,9,14,15A,15B,17 +trusted 'trVstId Jc%,Jd% 23A,6A,7A,9,14,15A,15B,17 +trustee trVs'ti K6% 2 +trustees trVs'tiz Kj% 2 +trusteeship trVs'tiSIp K6$ 3 +trusteeships trVs'tiSIps Kj$ 3 +trustful 'trVstf@l OA% 2 +trustfully 'trVstf@lI Pu% 3 +trustier 'trVstI@R Or$ 3 +trustiest 'trVstIIst Os$ 3 +trusting 'trVstIN Jb%,OA% 23A,6A,7A,9,14,15A,15B,17 +trustingly 'trVstINlI Pu% 3 +trusts trVsts Ja%,Mj% 13A,6A,7A,9,14,15A,15B,17 +trustworthiness 'trVstw3DIn@s L@% 4 +trustworthy 'trVstw3DI OA% 3 +trusty 'trVstI OD% 2 +truth truT M6% 1 +truthful 'truTf@l OA% 2 +truthfully 'truTf@lI Pu% 3 +truthfulness 'truTf@ln@s L@% 3 +truths truDz Mj% 1 +try traI J3%,K8% 12A,2B,3A,6A,6B,6C,7A,10,15A,15B +try-on 'traI-0n K6% 2 +try-ons 'traI-0nz Kj$ 2 +try-out 'traI-aUt K6% 2 +try-outs 'traI-aUts Kj$ 2 +trying 'traIIN Jb%,OA% 22A,2B,3A,6A,6B,6C,7A,10,15A,15B +tryst trIst K6$ 1 +trysts trIsts Kj$ 1 +tsetse 'tsetsI K6$ 2 +tsetse-flies 'tsetsI-flaIz Kj% 3 +tsetse-fly 'tsetsI-flaI K8% 3 +tsetses 'tsetsIz Kj$ 2 +tu quoque ,tju 'kw@UkwI W-$ 3 +tub tVb K6% 1 +tub-thumper 'tVb-TVmp@R K6% 3 +tub-thumpers 'tVb-TVmp@z Kj% 3 +tuba 'tjub@ K6% 2 +tubas 'tjub@z Kj% 2 +tubbier 'tVbI@R Or$ 3 +tubbiest 'tVbIIst Os$ 3 +tubby 'tVbI OD% 2 +tube tjub M6% 1 +tube-well 'tjub-wel K6$ 2 +tube-wells 'tjub-welz Kj$ 2 +tubeless 'tjubl@s OA% 2 +tuber 'tjub@R K6$ 2 +tubercular tju'b3kjUl@R OA% 4 +tuberculosis tju,b3kjU'l@UsIs L@% 5 +tuberculous tju'b3kjUl@s OA% 4 +tubers 'tjub@z Kj$ 2 +tubes tjubz Mj% 1 +tubful 'tVbfUl K6% 2 +tubfuls 'tVbfUlz Kj% 2 +tubing 'tjubIN L@% 2 +tubs tVbz Kj% 1 +tubular 'tjubjUl@R OA% 3 +tuck tVk J0%,M6% 12C,3A,15A,15B +tuck-in 'tVk-In K6% 2 +tuck-ins 'tVk-Inz Kj$ 2 +tuck-shop 'tVk-S0p K6% 2 +tuck-shops 'tVk-S0ps Kj% 2 +tucked tVkt Jc%,Jd% 12C,3A,15A,15B +tucker 'tVk@R K6$ 2 +tuckers 'tVk@z Kj$ 2 +tucking 'tVkIN Jb% 22C,3A,15A,15B +tucks tVks Ja%,Mj% 12C,3A,15A,15B +tuft tVft K6% 1 +tufted 'tVftId OA% 2 +tufts tVfts Kj% 1 +tug tVg J4%,K6% 12A,2C,3A,6A,15A,15B +tugboat 'tVgb@Ut K6% 2 +tugboats 'tVgb@Uts Kj% 2 +tugged tVgd Jc%,Jd% 12A,2C,3A,6A,15A,15B +tugging 'tVgIN Jb% 22A,2C,3A,6A,15A,15B +tugs tVgz Ja%,Kj% 12A,2C,3A,6A,15A,15B +tuition tju'ISn L@% 3 +tulip 'tjulIp K6% 2 +tulips 'tjulIps Kj% 2 +tulle tjul L@$ 1 +tumble 'tVmbl J2%,K6% 22A,2C,3A,6A,15A,15B +tumble-down 'tVmbl-daUn Oq% 3 +tumbled 'tVmbld Jc%,Jd% 22A,2C,3A,6A,15A,15B +tumbler 'tVmbl@R K6% 2 +tumblers 'tVmbl@z Kj% 2 +tumbles 'tVmblz Ja%,Kj% 22A,2C,3A,6A,15A,15B +tumbleweed 'tVmblwid L@$ 3 +tumbling 'tVmblIN Jb% 22A,2C,3A,6A,15A,15B +tumbrel 'tVmbr@l K6$ 2 +tumbrels 'tVmbr@lz Kj$ 2 +tumbril 'tVmbr@l K6$ 2 +tumbrils 'tVmbr@lz Kj$ 2 +tumescence tju'mesns M6% 3 +tumescences tju'mesnsIz Mj$ 4 +tumescent tju'mesnt OA% 3 +tumid 'tjumId OA$ 2 +tumidity tju'mIdItI L@$ 4 +tummies 'tVmIz Kj% 2 +tummy 'tVmI K8% 2 +tumour 'tjum@R K6% 2 +tumours 'tjum@z Kj% 2 +tumuli 'tjumjUlaI Kj$ 3 +tumult 'tjumVlt M6% 2 +tumults 'tjumVlts Mj% 2 +tumultuous tju'mVltSU@s OA% 4 +tumultuously tju'mVltSU@slI Pu% 5 +tumulus 'tjumjUl@s Ki$ 3 +tun tVn K6$ 1 +tuna 'tjun@ M9% 2 +tunas 'tjun@z Kj$ 2 +tundra 'tVndr@ M6% 2 +tundras 'tVndr@z Mj$ 2 +tune tjun J2%,M6% 12C,6A +tuned tjund Jc%,Jd% 12C,6A +tuneful 'tjunf@l OA% 2 +tunefully 'tjunf@lI Pu% 3 +tunefulness 'tjunf@ln@s L@% 3 +tuner 'tjun@R K6% 2 +tuners 'tjun@z Kj% 2 +tunes tjunz Ja%,Mj% 12C,6A +tung-oil 'tVN-oIl L@$ 2 +tungsten 'tVNst@n L@% 2 +tunic 'tjunIk K6% 2 +tunics 'tjunIks Kj% 2 +tuning 'tjunIN Jb% 22C,6A +tuning-fork 'tjunIN-fOk K6% 3 +tuning-forks 'tjunIN-fOks Kj% 3 +tunnel 'tVnl J4%,K6% 22A,2C,3A,6A +tunnelled 'tVnld Jc%,Jd% 22A,2C,3A,6A +tunnelling 'tVn@lIN Jb% 32A,2C,3A,6A +tunnels 'tVnlz Ja%,Kj% 22A,2C,3A,6A +tunnies 'tVnIz Kj$ 2 +tunny 'tVnI K9$ 2 +tuns tVnz Kj$ 1 +tup tVp K6$ 1 +tuppence 'tVp@ns K6% 2 +tuppences 'tVp@nsIz Kj% 3 +tuppenny 'tVp@nI OA% 3 +tups tVps Kj$ 1 +turban 't3b@n K6% 2 +turbaned 't3b@nd OA% 2 +turbans 't3b@nz Kj% 2 +turbid 't3bId OA$ 2 +turbidity t3'bIdItI L@$ 4 +turbidness 't3bIdn@s L@$ 3 +turbine 't3baIn K6% 2 +turbines 't3baInz Kj% 2 +turbojet ,t3b@U'dZet K6% 3 +turbojets ,t3b@U'dZets Kj% 3 +turboprop ,t3b@U'pr0p K6% 3 +turboprops ,t3b@U'pr0ps Kj% 3 +turbot 't3b@t M9% 2 +turbulence 't3bjUl@ns M6% 3 +turbulences 't3bjUl@nsIz Mj$ 4 +turbulent 't3bjUl@nt OA% 3 +turbulently 't3bjUl@ntlI Pu% 4 +turd t3d K6% 1 +turds t3dz Kj% 1 +tureen tjU'rin K6% 2 +tureens tjU'rinz Kj% 2 +turf t3f H0$,M6% 16A,15B +turfed t3ft Hc$,Hd$ 16A,15B +turfing 't3fIN Hb$ 26A,15B +turfs t3fs Ha$,Mj$ 16A,15B +turgid 't3dZId OA% 2 +turgidity t3'dZIdItI L@$ 4 +turgidly 't3dZIdlI Pu% 3 +turkey 't3kI M6% 2 +turkeys 't3kIz Mj% 2 +turmeric 't3m@rIk L@% 3 +turmoil 't3moIl M6% 2 +turmoils 't3moIlz Mj$ 2 +turn t3n J0*,K6% 12A,2C,3A,4A,6A,14,15A,15B +turn-off 't3n-0f K6% 2 +turn-offs 't3n-0fs Kj$ 2 +turn-on 't3n-0n K6% 2 +turn-ons 't3n-0nz Kj$ 2 +turn-out 't3n-aUt K6% 2 +turn-outs 't3n-aUts Kj$ 2 +turn-round 't3n-raUnd K6% 2 +turn-rounds 't3n-raUndz Kj$ 2 +turn-up 't3n-Vp K6% 2 +turn-ups 't3n-Vps Kj% 2 +turncoat 't3nk@Ut K6% 2 +turncoats 't3nk@Uts Kj% 2 +turncock 't3nk0k K6$ 2 +turncocks 't3nk0ks Kj$ 2 +turned t3nd Jc*,Jd* 12A,2C,3A,4A,6A,14,15A,15B +turner 't3n@R K6% 2 +turners 't3n@z Kj% 2 +turning 't3nIN Jb%,K6% 22A,2C,3A,4A,6A,14,15A,15B +turning-point 't3nIN-poInt K6% 3 +turning-points 't3nIN-poInts Kj% 3 +turnings 't3nINz Kj% 2 +turnip 't3nIp K6% 2 +turnips 't3nIps Kj% 2 +turnkey 't3nki K6% 2 +turnkeys 't3nkiz Kj% 2 +turnover 't3n@Uv@R K6% 3 +turnovers 't3n@Uv@z Kj% 3 +turnpike 't3npaIk K6% 2 +turnpikes 't3npaIks Kj% 2 +turns t3nz Ja%,Kj% 12A,2C,3A,4A,6A,14,15A,15B +turnspit 't3nspIt K6$ 2 +turnspits 't3nspIts Kj$ 2 +turnstile 't3nstaIl K6% 2 +turnstiles 't3nstaIlz Kj% 2 +turntable 't3nteIbl K6% 3 +turntables 't3nteIblz Kj% 3 +turpentine 't3p@ntaIn L@% 3 +turpitude 't3pItjud L@% 3 +turps t3ps L@% 1 +turquoise 't3kwoIz M6% 2 +turquoises 't3kwoIzIz Mj$ 3 +turret 'tVrIt K6% 2 +turrets 'tVrIts Kj% 2 +turtle 't3tl K6% 2 +turtledove 't3tldVv K6% 3 +turtledoves 't3tldVvz Kj% 3 +turtleneck 't3tlnek OA% 3 +turtlenecked 't3tlnekt OA% 3 +turtles 't3tlz Kj% 2 +turves t3vz Kj$ 1 +tusk tVsk K6% 1 +tusks tVsks Kj% 1 +tussle 'tVsl I2%,K6% 2 +tussled 'tVsld Ic%,Id% 2 +tussles 'tVslz Ia%,Kj% 2 +tussling 'tVslIN Ib% 2 +tussock 'tVs@k K6% 2 +tussocks 'tVs@ks Kj% 2 +tut tVt H4$,W-$ 16A +tut-tut ,tVt-'tVt W-% 2 +tutelage 'tjutIlIdZ L@% 3 +tutelary 'tjutIl@rI OA$ 4 +tutor 'tjut@R H0%,K6% 26A,15A,16A +tutored 'tjut@d Hc%,Hd% 26A,15A,16A +tutorial tju'tOrI@l K6%,OA% 4 +tutorially tju'tOrI@lI Pu% 5 +tutorials tju'tOrI@lz Kj% 4 +tutoring 'tjut@rIN Hb% 36A,15A,16A +tutors 'tjut@z Ha%,Kj% 26A,15A,16A +tutorship 'tjut@SIp K6% 3 +tutorships 'tjut@SIps Kj$ 3 +tuts tVts Ha$ 16A +tutted 'tVtId Hc$,Hd$ 26A +tutti-frutti ,tutI-'frutI M6% 4 +tutti-fruttis ,tutI-'frutIz Mj$ 4 +tutting 'tVtIN Hb$ 26A +tutu 'tutu K6$ 2 +tutus 'tutuz Kj$ 2 +tuxedo tVk'sid@U K6% 3 +tuxedos tVk'sid@Uz Kj% 3 +twaddle 'tw0dl I2$,L@% 22A +twaddled 'tw0dld Ic$,Id$ 22A +twaddles 'tw0dlz Ia$ 22A +twaddling 'tw0dlIN Ib$ 22A +twain tweIn K6% 1 +twains tweInz Kj$ 1 +twang tw&N J0%,K6% 12A,6A +twanged tw&Nd Jc%,Jd% 12A,6A +twanging 'tw&NIN Jb% 22A,6A +twangs tw&Nz Ja%,Kj% 12A,6A +tweak twik H0%,K6% 16A +tweaked twikt Hc%,Hd% 16A +tweaking 'twikIN Hb% 26A +tweaks twiks Ha%,Kj% 16A +twee twi OA% 1 +tweed twid M6% 1 +tweeds twidz Mj% 1 +tweet twit I0$,K6$ 1 +tweeted 'twitId Ic$,Id$ 2 +tweeter 'twit@R K6$ 2 +tweeters 'twit@z Kj$ 2 +tweeting 'twitIN Ib$ 2 +tweets twits Ia$,Kj$ 1 +tweezers 'twiz@z Kj% 2 +twelfth twelfT K6%,OA% 1 +twelfths twelfTs Kj% 1 +twelve twelv K6%,OA% 1 +twelvemonth 'twelvmVnT K6% 2 +twelvemonths 'twelvmVnTs Kj$ 2 +twelves twelvz Kj% 1 +twenties 'twentIz Kj% 2 +twentieth 'twentI@T K6%,OA% 3 +twentieths 'twentI@Ts Kj% 3 +twenty 'twentI K8%,OA% 2 +twerp tw3p K6% 1 +twerps tw3ps Kj% 1 +twice twaIs Pu% 1 +twiddle 'twIdl J2%,K6$ 23A,6A +twiddled 'twIdld Jc%,Jd% 23A,6A +twiddles 'twIdlz Ja%,Kj$ 23A,6A +twiddling 'twIdlIN Jb% 23A,6A +twiddly 'twIdlI OA% 2 +twig twIg J4%,K6% 12A,6A +twigged twIgd Jc%,Jd% 12A,6A +twiggier 'twIgI@R Or$ 3 +twiggiest 'twIgIIst Os$ 3 +twigging 'twIgIN Jb$ 22A,6A +twiggy 'twIgI OD% 2 +twigs twIgz Ja%,Kj% 12A,6A +twilight 'twaIlaIt L@% 2 +twilit 'twaIlIt OA$ 2 +twill twIl L@$ 1 +twilled twIld OA$ 1 +twin twIn H4%,K6% 16A,14 +twine twaIn J2%,L@% 12A,2C,15A,15B +twined twaInd Jc%,Jd% 12A,2C,15A,15B +twines twaInz Ja% 12A,2C,15A,15B +twinge twIndZ K6% 1 +twinges 'twIndZIz Kj% 2 +twining 'twaInIN Jb% 22A,2C,15A,15B +twinkle 'twINkl I2%,L@% 22A,2C +twinkled 'twINkld Ic%,Id% 22A,2C +twinkles 'twINklz Ia% 22A,2C +twinkling 'twINklIN Ib%,Ki% 22A,2C +twinned twInd Hc%,Hd%,Oq% 16A,14 +twinning 'twInIN Hb% 26A,14 +twins twInz Ha%,Kj% 16A,14 +twirl tw3l J0%,K6% 12A,2C,6A,15B,16A +twirled tw3ld Jc%,Jd% 12A,2C,6A,15B,16A +twirling 'tw3lIN Jb% 22A,2C,6A,15B,16A +twirls tw3lz Ja%,Kj% 12A,2C,6A,15B,16A +twist twIst J0%,M6% 12A,2C,6A,15A,15B,16A +twisted 'twIstId Jc%,Jd% 22A,2C,6A,15A,15B,16A +twister 'twIst@R K6% 2 +twisters 'twIst@z Kj% 2 +twistier 'twIstI@R Or$ 3 +twistiest 'twIstIIst Os$ 3 +twisting 'twIstIN Jb% 22A,2C,6A,15A,15B,16A +twists twIsts Ja%,Mj% 12A,2C,6A,15A,15B,16A +twisty 'twIstI OD% 2 +twit twIt H4$,K6% 16A,14 +twitch twItS J1%,K7% 12A,2C,6A,15A,15B +twitched twItSt Jc%,Jd% 12A,2C,6A,15A,15B +twitches 'twItSIz Ja%,Kj% 22A,2C,6A,15A,15B +twitching 'twItSIN Jb% 22A,2C,6A,15A,15B +twits twIts Ha$,Kj% 16A,14 +twitted 'twItId Hc$,Hd$ 26A,14 +twitter 'twIt@R I0%,K6% 215A,15B +twittered 'twIt@d Ic%,Id% 215A,15B +twittering 'twIt@rIN Ib% 315A,15B +twitters 'twIt@z Ia%,Kj% 215A,15B +twitting 'twItIN Hb$ 26A,14 +two tu K6%,OA* 1 +two-a-penny ,tu-@-'penI OA% 4 +two-edged tu-'edZd OA% 2 +two-faced tu-'feIst OA% 2 +two-funnelled tu-'fVn@ld OA% 3 +two-handed tu-'h&ndId OA% 3 +two-piece 'tu-pis Ki% 2 +two-ply 'tu-plaI OA% 2 +two-seater tu-'sit@R K6% 3 +two-seaters tu-'sit@z Kj% 3 +two-step 'tu-step K6% 2 +two-steps 'tu-steps Kj% 2 +two-timing 'tu-taImIN OA% 3 +two-way 'tu-weI Oq% 2 +twofold 'tuf@Uld OA%,Pu% 2 +twopence 'tVp@ns K6% 2 +twopences 'tVp@nsIz Kj% 3 +twopenny 'tVp@nI OA% 3 +twopenny-halfpenny ,tVpnI-'heIpnI OA% 4 +twos tuz Kj% 1 +tycoon taI'kun K6% 2 +tycoons taI'kunz Kj% 2 +tying 'taIIN Jb% 22A,3A,6A,15A,15B +tyke taIk K6$ 1 +tykes taIks Kj$ 1 +tympana 'tImp@n@ Kj$ 3 +tympanum 'tImp@n@m K6$ 3 +tympanums 'tImp@n@mz Kj$ 3 +type taIp J2%,M6% 12A,6A +typecast 'taIpkAst H5$,Hc$,Hd% 26A +typecasting 'taIpkAstIN Hb$ 36A +typecasts 'taIpkAsts Ha$ 26A +typed taIpt Jc%,Jd% 12A,6A +typeface 'taIpfeIs K6% 2 +typefaces 'taIpfeIsIz Kj% 3 +types taIps Ja%,Mj% 12A,6A +typescript 'taIpskrIpt K6% 2 +typescripts 'taIpskrIpts Kj% 2 +typesetter 'taIpset@R K6% 3 +typesetters 'taIpset@z Kj% 3 +typewriter 'taIpraIt@R K6% 3 +typewriters 'taIpraIt@z Kj% 3 +typewritten 'taIprItn OA% 3 +typhoid 'taIfoId L@% 2 +typhoon taI'fun K6% 2 +typhoons taI'funz Kj% 2 +typhus 'taIf@s L@% 2 +typical 'tIpIkl OA% 3 +typically 'tIpIklI Pu% 3 +typified 'tIpIfaId Hc%,Hd% 36A +typifies 'tIpIfaIz Ha% 36A +typify 'tIpIfaI H3% 36A +typifying 'tIpIfaIIN Hb% 46A +typing 'taIpIN Jb% 22A,6A +typist 'taIpIst K6% 2 +typists 'taIpIsts Kj% 2 +typographer taI'p0gr@f@R K6% 4 +typographers taI'p0gr@f@z Kj% 4 +typographic ,taIp@'gr&fIk OA% 4 +typographically ,taIp@'gr&fIklI Pu% 5 +typography taI'p0gr@fI L@% 4 +tyrannical tI'r&nIkl OA% 4 +tyrannies 'tIr@nIz Mj% 3 +tyrannize 'tIr@naIz J2% 33A,6A +tyrannized 'tIr@naIzd Jc%,Jd% 33A,6A +tyrannizes 'tIr@naIzIz Ja% 43A,6A +tyrannizing 'tIr@naIzIN Jb% 43A,6A +tyrannous 'tIr@n@s OA% 3 +tyranny 'tIr@nI M8% 3 +tyrant 'taI@r@nt K6% 2 +tyrants 'taI@r@nts Kj% 2 +tyre 'taI@R K6% 1 +tyres 'taI@z Kj% 1 +tyro 'taI@r@U K6$ 2 +tyros 'taI@r@Uz Kj$ 2 +tzar zAR K6% 1 +tzarina zA'rin@ K6% 3 +tzarinas zA'rin@z Kj$ 3 +tzars zAz Kj$ 1 +u ju Ki$ 1 +u's juz Kj$ 1 +ubiquitous ju'bIkwIt@s OA% 4 +ubiquity ju'bIkwItI L@$ 4 +udder 'Vd@R K6% 2 +udders 'Vd@z Kj% 2 +ugh 3 W-$ 1 +uglier 'VglI@R Or% 3 +ugliest 'VglIIst Os% 3 +uglified 'VglIfaId Hc$,Hd$ 3 +uglifies 'VglIfaIz Ha$ 3 +uglify 'VglIfaI H3$ 3 +uglifying 'VglIfaIIN Hb$ 4 +ugliness 'VglIn@s L@% 3 +ugly 'VglI OD% 2 +ukase ju'keIs K6$ 2 +ukases ju'keIsIz Kj$ 3 +ukulele ,juk@'leIlI K6% 4 +ukuleles ,juk@'leIlIz Kj% 4 +ulcer 'Vls@R K6% 2 +ulcerate 'Vls@reIt J2% 32A,6A +ulcerated 'Vls@reItId Jc%,Jd% 42A,6A +ulcerates 'Vls@reIts Ja% 32A,6A +ulcerating 'Vls@reItIN Jb% 42A,6A +ulceration ,Vls@'reISn K6% 4 +ulcerations ,Vls@'reISnz Kj% 4 +ulcerous 'Vls@r@s OA% 3 +ulcers 'Vls@z Kj% 2 +ulna 'Vln@ Ki% 2 +ulnae 'Vlni Kj$ 2 +ulster 'Vlst@R K6$ 2 +ulsters 'Vlst@z Kj$ 2 +ulterior Vl'tI@rI@R OA% 4 +ultimata ,VltI'meIt@ Kj$ 4 +ultimate 'VltIm@t OA% 3 +ultimately 'VltIm@tlI Pu% 4 +ultimatum ,VltI'meIt@m K6% 4 +ultimatums ,VltI'meIt@mz Kj% 4 +ultimo 'VltIm@U OA$ 3 +ultra vires ,Vltr@ 'vaI@riz OA$,Pu$ 4 +ultra- ,Vltr@- U-% 2 +ultramarine ,Vltr@m@'rin K6$,OA% 4 +ultramarines ,Vltr@m@'rinz Kj$ 4 +ultramontane ,Vltr@m0n'teIn OA$ 4 +ultrasonic ,Vltr@'s0nIk OA% 4 +ultraviolet ,Vltr@'vaI@l@t OA% 5 +ululate 'juljUleIt I2$ 32A +ululated 'juljUleItId Ic$,Id$ 42A +ululates 'juljUleIts Ia$ 32A +ululating 'juljUleItIN Ib$ 42A +ululation ,juljU'leISn K6$ 4 +ululations ,juljU'leISnz Kj$ 4 +umber 'Vmb@R K6$,OA$ 2 +umbers 'Vmb@z Kj$ 2 +umbilical Vm'bIlIkl OA% 4 +umbrage 'VmbrIdZ L@% 2 +umbrella Vm'brel@ K6% 3 +umbrellas Vm'brel@z Kj% 3 +umlaut 'UmlaUt K6$ 2 +umlauts 'UmlaUts Kj$ 2 +umpire 'VmpaI@R J2%,K6% 22A,6A +umpired 'VmpaI@d Jc%,Jd% 22A,6A +umpires 'VmpaI@z Ja%,Kj% 22A,6A +umpiring 'VmpaI@rIN Jb% 32A,6A +umpteen 'Vmptin OA% 2 +umpteenth 'VmptinT OA% 2 +un- Vn- U-% 1 +un-come-at-able ,Vn-kVm-'&t-@bl OA$ 5 +un-get-at-able ,Vn-get-'&t-@bl OA$ 5 +unabashed ,Vn@'b&St OA% 3 +unabated ,Vn@'beItId OA% 4 +unable Vn'eIbl Op% 3 +unabridged ,Vn@'brIdZd OA% 3 +unacceptable ,Vn@k'sept@bl OA% 5 +unacceptably ,Vn@k'sept@blI Pu% 5 +unaccommodating ,Vn@'k0m@deItIN OA% 6 +unaccompanied ,Vn@'kVmp@nId OA% 5 +unaccountable ,Vn@'kaUnt@bl OA% 5 +unaccountably ,Vn@'kaUnt@blI Pu% 5 +unaccounted ,Vn@'kaUntId OA% 4 +unaccustomed ,Vn@'kVst@md OA% 4 +unacknowledged ,Vn@k'n0lIdZd OA% 4 +unacquainted ,Vn@'kweIntId OA% 4 +unadorned ,Vn@'dOnd OA% 3 +unadulterated ,Vn@'dVlt@reItId OA% 6 +unadventurous ,Vn@d'ventS@r@s OA% 5 +unadvised ,Vn@d'vaIzd OA$ 3 +unadvisedly ,Vn@d'vaIz@dlI Pu% 5 +unaffected ,Vn@'fektId OA% 4 +unafraid ,Vn@'freId Op% 3 +unaided Vn'eIdId OA% 3 +unalienable Vn'eIlI@n@bl OA$ 6 +unaligned ,Vn@'laInd OA% 3 +unalloyed ,Vn@'loId OA% 3 +unalterable Vn'0lt@r@bl OA% 5 +unalterably Vn'Olt@r@blI Pu% 5 +unaltered Vn'Olt@d OA% 3 +unambiguous ,Vn&m'bIgjU@s OA% 5 +unambiguously ,Vn&m'bIgjU@slI Pu% 5 +unamended ,Vn@'mendId OA% 4 +unanimity ,jun@'nImItI L@% 5 +unanimous ju'n&nIm@s OA% 4 +unanimously ju'n&nIm@slI Pu% 5 +unannounced ,Vn@'naUnst OA% 3 +unanswerable ,Vn'Ans@r@bl OA% 5 +unanswered ,Vn'Ans@d OA% 3 +unanticipated ,Vn&n'tIsIpeItId OA% 6 +unappealing ,Vn@'pilIN OA% 4 +unappetizing Vn'&pItaIzIN OA% 5 +unappreciated ,Vn@'priSIeItId OA% 6 +unappreciative ,Vn@'priS@tIv OA% 5 +unapproachable ,Vn@'pr@UtS@bl OA% 5 +unarguable Vn'AgjU@bl OA% 5 +unarguably Vn'AgjU@blI Pu% 5 +unarmed ,Vn'Amd OA% 2 +unarticulated ,VnA'tIkjUleItId OA% 6 +unashamed ,Vn@'SeImd Op% 3 +unashamedly ,Vn@'SeImIdlI Pu% 5 +unasked ,Vn'Askt OA% 2 +unassailable ,Vn@'seIl@bl OA% 5 +unassailably ,Vn@'seIl@blI Pu% 5 +unassisted ,Vn@'sIstId OA% 4 +unassuming ,Vn@'sjumIN OA% 4 +unassumingly ,Vn@'sjumINlI Pu% 5 +unattached ,Vn@'t&tSt OA% 3 +unattainable ,Vn@'taIn@bl OA% 5 +unattainably ,Vn@'teIn@blI Pu% 5 +unattended ,Vn@'tendId OA% 4 +unattractive ,Vn@'tr&ktIv OA% 4 +unattractively ,Vn@'tr&ktIvlI Pu% 5 +unauthorized Vn'OT@raIzd OA% 4 +unavailable ,Vn@'veIl@bl OA% 5 +unavailing ,Vn@'veIlIN OA% 4 +unavoidable ,Vn@'voId@bl OA% 5 +unavoidably ,Vn@'voId@blI Pu% 5 +unawakened ,Vn@'weIk@nd OA% 4 +unaware ,Vn@'we@R Op% 3 +unawares ,Vn@'we@z Pu% 3 +unbacked ,Vn'b&kt OA$ 2 +unbalance Vn'b&l@ns H2% 36A +unbalanced ,Vn'b&l@nst OA% 3 +unbalanced Vn'b&l@nst Hc%,Hd%,OA% 36A +unbalances Vn'b&l@nsIz Ha% 46A +unbalancing Vn'b&l@nsIN Hb% 46A +unbar ,Vn'bAR H4$ 2 +unbarred ,Vn'bAd Hc$,Hd% 2 +unbarring ,Vn'bArIN Hb$ 3 +unbars ,Vn'bAz Ha$ 2 +unbearable Vn'be@r@bl OA% 4 +unbearably Vn'be@r@blI Pu% 4 +unbeatable Vn'bit@bl OA% 4 +unbeaten ,Vn'bitn OA% 3 +unbecoming ,VnbI'kVmIN OA% 4 +unbecomingly ,VnbI'kVmINlI Pu% 5 +unbeknown ,VnbI'n@Un OA%,Pu% 3 +unbeknownst ,VnbI'n@Unst OA%,Pu% 3 +unbelief ,VnbI'lif L@% 3 +unbelievable ,VnbI'liv@bl OA% 5 +unbelievably ,VnbI'liv@blI Pu% 5 +unbeliever ,VnbI'liv@R K6% 4 +unbelievers ,VnbI'liv@z Kj% 4 +unbelieving ,VnbI'livIN OA% 4 +unbelievingly ,VnbI'livINlI Pu% 5 +unbeloved ,VnbI'lVvd OA% 3 +unbend ,Vn'bend J0% 22A,6A +unbended ,Vn'bendId Jc%,Jd% 32A,6A +unbending ,Vn'bendIN Jb%,OA% 32A,6A +unbends ,Vn'bendz Ja% 22A,6A +unbent ,Vn'bent Jc%,Jd% 22A,6A +unbiased ,Vn'baI@st OA% 3 +unbiassed ,Vn'baI@st OA% 3 +unbidden ,Vn'bIdn OA% 3 +unbind ,Vn'baInd H5% 26A +unbinding ,Vn'baIndIN Hb% 36A +unbinds ,Vn'baIndz Ha% 26A +unblock Vn'bl0k H0% 26A,15B +unblocked Vn'bl0kt Hc%,Hd% 26A,15B +unblocking Vn'bl0kIN Hb% 36A,15B +unblocks Vn'bl0ks Ha% 26A,15B +unblushing ,Vn'blVSIN OA% 3 +unblushingly ,Vn'blVSINlI Pu% 4 +unblushingly Vn'blVSINlI Pu% 4 +unbolt Vn'b@Ult J0% 22A,2C,6A,15B +unbolted Vn'b@UltId Jc%,Jd% 32A,2C,6A,15B +unbolting Vn'b@UltIN Jb% 32A,2C,6A,15B +unbolts Vn'b@Ults Ja% 22A,2C,6A,15B +unborn ,Vn'bOn OA% 2 +unbosom Vn'bUz@m H0$ 36A,14 +unbosomed Vn'bUz@md Hc$,Hd$ 36A,14 +unbosoming Vn'bUz@mIN Hb$ 46A,14 +unbosoms Vn'bUz@mz Ha$ 36A,14 +unbound ,Vn'baUnd Hc%,Hd% 26A +unbounded Vn'baUndId OA% 3 +unbowed ,Vn'baUd OA% 2 +unbreakable Vn'breIk@bl OA% 4 +unbridled ,Vn'braIdld OA% 3 +unbroken ,Vn'br@Uk@n OA% 3 +unbuckle ,Vn'bVkl H2% 36A +unbuckled ,Vn'bVkld Hc%,Hd% 36A +unbuckles ,Vn'bVklz Ha% 36A +unbuckling ,Vn'bVklIN Hb% 36A +unburden ,Vn'b3dn H0% 36A,15A +unburdened ,Vn'b3dnd Hc%,Hd% 36A,15A +unburdening ,Vn'b3dnIN Hb% 46A,15A +unburdens ,Vn'b3dnz Ha% 36A,15A +unburied Vn'berId OA% 3 +unbutton Vn'bVtn H0% 36A +unbuttoned ,Vn'bVtnd OA% 3 +unbuttoned Vn'bVtnd Hc%,Hd%,OA% 36A +unbuttoning Vn'bVtnIN Hb% 46A +unbuttons Vn'bVtnz Ha% 36A +uncalled-for Vn'kOld-fOR OA% 3 +uncannily Vn'k&nIlI Pu% 4 +uncanny Vn'k&nI OA% 3 +uncared-for ,Vn'ke@d-fOR OA% 3 +uncarpeted Vn'kApItId OA% 4 +unceasing Vn'sisIN OA% 3 +unceasingly Vn'sisINlI Pu% 4 +uncensored Vn'sens@d OA% 3 +unceremonious ,Vn,serI'm@UnI@s OA% 6 +unceremoniously ,Vn,serI'm@UnI@slI Pu% 7 +unceremoniousness ,Vn,serI'm@UnI@sn@s L@$ 7 +uncertain Vn's3tn OA% 3 +uncertainly Vn's3tnlI Pu% 4 +uncertainties Vn's3tntIz Mj% 4 +uncertainty Vn's3tntI M8% 4 +unchain Vn'tSeIn H0$ 26A,15A,15B +unchained Vn'tSeInd Hc%,Hd% 26A,15A,15B +unchaining Vn'tSeInIN Hb$ 36A,15A,15B +unchains Vn'tSeInz Ha$ 26A,15A,15B +unchallengeable Vn'tS&l@ndZ@bl OA% 5 +unchallenged Vn'tS&l@ndZd OA% 3 +unchanged Vn'tSeIndZd OA% 2 +unchanging Vn'tSeIndZIN OA% 3 +uncharacteristic ,Vnk&r@kt@'rIstIk OA% 6 +uncharacteristically ,Vnk&r@kt@'rIstIklI Pu% 7 +uncharitable ,Vn'tS&rIt@bl OA% 5 +uncharted ,Vn'tSAtId OA% 3 +unchecked ,Vn'tSekt OA% 2 +unchivalrously Vn'SIvlr@slI Pu% 5 +unchristian ,Vn'krIstS@n OA% 3 +uncivil ,Vn'sIvl OA% 3 +uncivilized Vn'sIvIlaIzd OA% 4 +unclaimed ,Vn'kleImd OA% 2 +unclassified Vn'kl&sIfaId OA% 4 +uncle 'VNkl K6% 2 +unclean ,Vn'klin OA% 2 +unclear Vn'klI@R OA% 2 +uncles 'VNklz Kj% 2 +unclouded ,Vn'klaUdId OA% 3 +uncluttered Vn'klVt@d OA% 3 +unco 'VNk@U OA$,Pu$ 2 +unco-operative ,Vnk@U-'0p@r@tIv OA% 6 +unco-ordinated ,Vnk@U-'OdIneItId OA% 6 +uncoloured ,Vn'kVl@d OA% 3 +uncomfortable Vn'kVmft@bl OA% 4 +uncomfortably Vn'kVmf@t@blI Pu% 5 +uncommercialized ,Vnk@'m3S@laIzd OA% 5 +uncommitted ,Vnk@'mItId OA% 4 +uncommon Vn'k0m@n OA% 3 +uncommonly Vn'k0m@nlI Pu% 4 +uncommunicative ,Vnk@'mjunIk@tIv OA% 6 +uncompetitive ,Vnk@m'pet@tIv OA% 5 +uncomplaining ,Vnk@m'pleInIN OA% 4 +uncomplainingly ,Vnk@m'pleInINlI Pu% 5 +uncompleted ,Vnk@m'plitId OA% 4 +uncomplicated Vn'k0mplIkeItId OA% 5 +uncomplimentary ,Vnk0mplI'mentrI OA% 5 +uncomprehending ,Vnk0mprI'hendIN OA% 5 +uncompromising Vn'k0mpr@maIzIN OA% 5 +unconcealed ,Vnk@n'sild OA% 3 +unconcern ,Vnk@n's3n L@% 3 +unconcerned ,Vnk@n's3nd OA% 3 +unconcernedly ,Vnk@n's3n@dlI Pu% 5 +unconditional ,Vnk@n'dIS@nl OA% 5 +unconditionally ,Vnk@n'dIS@n@lI Pu% 6 +unconditioned ,Vnk@n'dISnd OA% 4 +unconfined ,Vnk@n'faInd OA% 3 +unconfirmed ,Vnk@n'f3md OA% 3 +unconformable ,Vnk@n'fOm@bl OA% 5 +uncongenial ,Vnk@n'dZinI@l OA% 5 +unconnected ,Vnk@'nektId OA% 4 +unconquered Vn'k0Nk@d OA% 3 +unconscionable Vn'k0nS@n@bl OA% 5 +unconscious Vn'k0nS@s K7%,OA% 3 +unconsciouses Vn'k0nS@sIz Kj$ 4 +unconsciously Vn'k0nS@slI Pu% 4 +unconsciousness Vn'k0nS@sn@s L@% 4 +unconsidered 'Vnk@nsId@d OA% 4 +unconstitutional ,Vnk0nstI'tjuS@nl OA% 6 +unconstitutionally ,Vnk0nstI'tjuS@n@lI Pu% 7 +unconstrained ,Vnk@n'streInd OA% 3 +unconstructive ,Vnk@n'strVktIv OA% 4 +unconsummated Vn'k0ns@meItId OA% 5 +uncontaminated ,Vnk@n't&mIneItId OA% 6 +uncontrollable ,Vnk@n'tr@Ul@bl OA% 5 +uncontrollably ,Vnk@n'tr@Ul@blI Pu% 5 +uncontrolled ,Vnk@n'tr@Uld OA% 3 +uncontroversial ,Vnk0ntr@'v3Sl OA% 5 +unconventional ,Vnk@n'venS@nl OA% 5 +unconventionality ,Vnk@n,venS@'n&lItI L@% 7 +unconverted ,Vnk@n'v3tId OA% 4 +unconvinced ,Vnk@n'vInst OA% 3 +unconvincing ,Vnk@n'vInsIN OA% 4 +uncooked Vn'kUkt OA% 2 +uncork ,Vn'kOk H0% 26A +uncorked ,Vn'kOkt Hc%,Hd% 26A +uncorking ,Vn'kOkIN Hb% 36A +uncorks ,Vn'kOks Ha% 26A +uncorrected ,Vnk@'rektId OA% 4 +uncorrelated Vn'k0r@leItId OA% 5 +uncorroborated ,Vnk@'r0b@reItId OA% 6 +uncouple ,Vn'kVpl H2% 36A +uncoupled ,Vn'kVpld Hc%,Hd% 36A +uncouples ,Vn'kVplz Ha% 36A +uncoupling ,Vn'kVplIN Hb% 36A +uncouth Vn'kuT OA% 2 +uncouthly Vn'kuTlI Pu% 3 +uncouthness Vn'kuTn@s L@% 3 +uncover Vn'kVv@R H0% 32A,6A +uncovered Vn'kVv@d Hc%,Hd% 32A,6A +uncovering Vn'kVv@rIN Hb% 42A,6A +uncovers Vn'kVv@z Ha% 32A,6A +uncritical Vn'krItIkl OA% 4 +uncritically Vn'krItIklI Pu% 4 +uncross Vn'kr0s H1% 26A +uncrossed ,Vn'kr0st OA% 2 +uncrossed Vn'kr0st Hc%,Hd%,OA% 26A +uncrosses Vn'kr0sIz Ha% 36A +uncrossing Vn'kr0sIN Hb% 36A +uncrowned ,Vn'kraUnd OA% 2 +unction 'VNkSn L@% 2 +unctuous 'VNktSU@s OA% 3 +unctuously 'VNktSU@slI Pu% 4 +uncultivated Vn'kVltIveItId OA% 5 +uncultured Vn'kVltS@d OA% 3 +uncurl Vn'k3l J0% 22A,2C,6A,15A,15B +uncurled Vn'k3ld Jc%,Jd% 22A,2C,6A,15A,15B +uncurling Vn'k3lIN Jb% 32A,2C,6A,15A,15B +uncurls Vn'k3lz Ja% 22A,2C,6A,15A,15B +uncut ,Vn'kVt OA% 2 +undamaged Vn'd&mIdZd OA% 3 +undated ,Vn'deItId OA% 3 +undaunted ,Vn'dOntId OA% 3 +undeceive ,VndI'siv H2$ 36A +undeceived ,VndI'sivd Hc$,Hd$ 36A +undeceives ,VndI'sivz Ha$ 36A +undeceiving ,VndI'sivIN Hb$ 46A +undecided ,VndI'saIdId OA% 4 +undeclared ,VndI'kle@d OA% 3 +undefeated ,VndI'fitId OA% 4 +undefended ,VndI'fendId OA% 4 +undeferential ,Vndef@'renSl OA% 5 +undefinable ,VndI'faIn@bl OA% 5 +undefined ,VndI'faInd OA% 3 +undemanding ,VndI'mAndIN OA% 4 +undemocratic ,Vndem@'kr&tIk OA% 5 +undemocratically ,Vndem@'kr&tIklI Pu% 6 +undemonstrative ,VndI'm0nstr@tIv OA% 5 +undeniable ,VndI'naI@bl OA% 5 +undeniably ,VndI'naI@blI Pu% 5 +undenominational ,VndI,n0mI'neIS@nl OA% 7 +under 'Vnd@R Pu*,T-* 2 +under- 'Vnd@R- U-% 2 +under-the-counter ,Vnd@-D@-'kaUnt@R OA% 5 +underact ,Vnd@'r&kt J0% 32A,6A +underacted ,Vnd@'r&ktId Jc%,Jd% 42A,6A +underacting ,Vnd@'r&ktIN Jb% 42A,6A +underacts ,Vnd@'r&kts Ja% 32A,6A +underarm 'Vnd@rAm OA%,Pu% 3 +underbellies 'Vnd@belIz Kj% 4 +underbelly 'Vnd@belI K8% 4 +underbid ,Vnd@'bId H5%,Hc%,Hd% 3 +underbidding ,Vnd@'bIdIN Hb% 4 +underbids ,Vnd@'bIdz Ha% 3 +underbred ,Vnd@'bred OA$ 3 +underbrush 'Vnd@brVS L@$ 3 +undercarriage 'Vnd@k&rIdZ K6% 4 +undercarriages 'Vnd@k&rIdZIz Kj% 5 +undercharge 'Vnd@tSAdZ K6$ 3 +undercharge ,Vnd@'tSAdZ H2% 36A +undercharged ,Vnd@'tSAdZd Hc%,Hd% 36A +undercharges 'Vnd@tSAdZIz Kj$ 4 +undercharges ,Vnd@'tSAdZIz Ha% 46A +undercharging ,Vnd@'tSAdZIN Hb% 46A +underclothes 'Vnd@kl@UDz Kj% 3 +underclothing 'Vnd@kl@UDIN L@% 4 +undercoat 'Vnd@k@Ut K6% 3 +undercoats 'Vnd@k@Uts Kj% 3 +undercover ,Vnd@'kVv@R OA% 4 +undercurrent 'Vnd@kVr@nt K6% 4 +undercurrents 'Vnd@kVr@nts Kj% 4 +undercut 'Vnd@kVt L@% 3 +undercut ,Vnd@'kVt H5%,Hc%,Hd% 36A +undercuts ,Vnd@'kVts Ha% 36A +undercutting ,Vnd@'kVtIN Hb% 46A +underdeveloped ,Vnd@dI'vel@pt OA% 5 +underdevelopment ,Vnd@dI'vel@pm@nt L@% 6 +underdog 'Vnd@d0g K6% 3 +underdogs 'Vnd@d0gz Kj% 3 +underdone ,Vnd@'dVn OA% 3 +underemployed ,Vnd@rIm'ploId OA% 4 +underestimate ,Vnd@'restIm@t K6% 5 +underestimate ,Vnd@'restImeIt H2% 56A +underestimated ,Vnd@'restImeItId Hc%,Hd% 66A +underestimates ,Vnd@'restIm@ts Kj% 5 +underestimates ,Vnd@'restImeIts Ha% 56A +underestimating ,Vnd@'restImeItIN Hb% 66A +underestimation ,Vnd@,restI'meISn M6% 6 +underestimations ,Vnd@,restI'meISnz Mj% 6 +underexpose ,Vnd@rIk'sp@Uz H2% 46A +underexposed ,Vnd@rIk'sp@Uzd Hc%,Hd% 46A +underexposes ,Vnd@rIk'sp@UzIz Ha% 56A +underexposing ,Vnd@rIk'sp@UzIN Hb% 56A +underexposure ,Vnd@rIk'sp@UZ@R K6% 5 +underexposures ,Vnd@rIk'sp@UZ@z Kj% 5 +underfed ,Vnd@'fed OA% 3 +underfelt 'Vnd@felt L@% 3 +underfloor ,Vnd@'flOR OA% 3 +underfoot ,Vnd@'fUt Pu% 3 +undergarment 'Vnd@gAm@nt K6% 4 +undergarments 'Vnd@gAm@nts Kj% 4 +undergo ,Vnd@'g@U H5% 36A +undergoes ,Vnd@'g@Uz Ha% 36A +undergoing ,Vnd@'g@UIN Hb% 46A +undergone ,Vnd@'g0n Hd% 36A +undergraduate ,Vnd@'gr&dZU@t K6% 5 +undergraduates ,Vnd@'gr&dZU@ts Kj% 5 +underground 'Vnd@graUnd K6%,Oq%,Pu% 3 +undergrounds 'Vnd@graUndz Kj$ 3 +undergrowth 'Vnd@gr@UT L@% 3 +underhand 'Vnd@h&nd OA%,Pu% 3 +underhanded 'Vnd@h&ndId OA% 4 +underhung ,Vnd@'hVN OA$ 3 +underlain ,Vnd@'leIn Hd% 36A +underlay 'Vnd@leI L@% 3 +underlay ,Vnd@'leI Hc% 36A +underlie ,Vnd@'laI H5% 36A +underlies ,Vnd@'laIz Ha% 36A +underline 'Vnd@laIn K6% 3 +underline ,Vnd@'laIn H2% 36A +underlined ,Vnd@'laInd Hc%,Hd% 36A +underlines 'Vnd@laInz Kj% 3 +underlines ,Vnd@'laInz Ha% 36A +underling 'Vnd@lIN K6% 3 +underlings 'Vnd@lINz Kj% 3 +underlining ,Vnd@'laInIN Hb% 46A +underlying ,Vnd@'laIIN Hb% 46A +undermanned ,Vnd@'m&nd OA% 3 +undermentioned ,Vnd@'menSnd OA% 4 +undermine ,Vnd@'maIn H2% 36A +undermined ,Vnd@'maInd Hc%,Hd% 36A +undermines ,Vnd@'maInz Ha% 36A +undermining ,Vnd@'maInIN Hb% 46A +underneath ,Vnd@'niT Pu%,T-% 3 +undernourished ,Vnd@'nVrISt OA% 4 +undernourishment ,Vnd@'nVrISm@nt L@% 5 +underpaid ,Vnd@'peId Hc%,Hd% 36A +underpants 'Vnd@p&nts Kj% 3 +underpass 'Vnd@pAs K7% 3 +underpasses 'Vnd@pAsIz Kj% 4 +underpay ,Vnd@'peI H5% 36A +underpaying ,Vnd@'peIIN Hb% 46A +underpayment ,Vnd@'peIm@nt M6% 4 +underpayments ,Vnd@'peIm@nts Mj% 4 +underpays ,Vnd@'peIz Ha% 36A +underpin ,Vnd@'pIn H4% 3 +underpinned ,Vnd@'pInd Hc%,Hd% 3 +underpinning ,Vnd@'pInIN Hb% 4 +underpins ,Vnd@'pInz Ha% 3 +underpopulated ,Vnd@'p0pjUleItId OA% 6 +underprivileged ,Vnd@'prIv@lIdZd OA% 5 +underproduction ,Vnd@pr@'dVkSn L@% 5 +underquote ,Vnd@'kw@Ut H2$ 36A +underquoted ,Vnd@'kw@UtId Hc$,Hd$ 46A +underquotes ,Vnd@'kw@Uts Ha$ 36A +underquoting ,Vnd@'kw@UtIN Hb$ 46A +underrate ,Vnd@'reIt H2% 36A +underrated ,Vnd@'reItId Hc%,Hd% 46A +underrates ,Vnd@'reIts Ha% 36A +underrating ,Vnd@'reItIN Hb% 46A +underscore ,Vnd@'skOR H2% 36A +underscored ,Vnd@'skOd Hc%,Hd% 36A +underscores ,Vnd@'skOz Ha% 36A +underscoring ,Vnd@'skOrIN Hb% 46A +undersea 'Vnd@si OA% 3 +underseal 'Vnd@sil L@% 3 +undersealed 'Vnd@sild OA% 3 +undersecretaries ,Vnd@'sekr@trIz Kj% 5 +undersecretary ,Vnd@'sekr@trI K8% 5 +undersell ,Vnd@'sel H5% 36A +underselling ,Vnd@'selIN Hb% 46A +undersells ,Vnd@'selz Ha% 36A +undersexed ,Vnd@'sekst OA% 3 +undershoot ,Vnd@'Sut H5% 3 +undershooting ,Vnd@'SutIN Hb% 4 +undershoots ,Vnd@'Suts Ha% 3 +undershot ,Vnd@'S0t Hc%,Hd% 3 +underside 'Vnd@saId K6% 3 +undersides 'Vnd@saIdz Kj% 3 +undersign ,Vnd@'saIn H0% 36A +undersigned ,Vnd@'saInd Hc%,Hd% 36A +undersigning ,Vnd@'saInIN Hb% 46A +undersigns ,Vnd@'saInz Ha% 36A +undersized ,Vnd@'saIzd OA% 3 +underskirt 'Vnd@sk3t K6% 3 +underskirts 'Vnd@sk3ts Kj% 3 +underslung ,Vnd@'slVN OA$ 3 +undersold ,Vnd@'s@Uld Hc%,Hd% 36A +underspend ,Vnd@'spend J5% 32A,6A,14,19B +underspending ,Vnd@'spendIN Jb% 42A,6A,14,19B +underspends ,Vnd@'spendz Ja% 32A,6A,14,19B +underspent ,Vnd@'spent Jc%,Jd%,OA% 32A,6A,14,19B +understaffed ,Vnd@'stAft OA% 3 +understand ,Vnd@'st&nd J5% 32A,6A,6C,8,9,10,17,19C +understandable ,Vnd@'st&nd@bl OA% 5 +understandably ,Vnd@'st&nd@blI Pu% 5 +understanding ,Vnd@'st&ndIN Jb%,M6%,OA% 42A,6A,6C,8,9,10,17,19C +understandings ,Vnd@'st&ndINz Mj$ 4 +understands ,Vnd@'st&ndz Ja% 32A,6A,6C,8,9,10,17,19C +understate ,Vnd@'steIt H2% 36A +understated ,Vnd@'steItId Hc%,Hd% 46A +understatement 'Vnd@steItm@nt M6% 4 +understatements 'Vnd@steItm@nts Mj% 4 +understates ,Vnd@'steIts Ha% 36A +understating ,Vnd@'steItIN Hb% 46A +understock ,Vnd@'st0k H0% 36A +understocked ,Vnd@'st0kt Hc%,Hd% 36A +understocking ,Vnd@'st0kIN Hb% 46A +understocks ,Vnd@'st0ks Ha% 36A +understood ,Vnd@'stUd Jc%,Jd% 32A,6A,6C,8,9,10,17,19C +understudied 'Vnd@stVdId Hc%,Hd% 46A +understudies 'Vnd@stVdIz Ha%,Kj% 46A +understudy 'Vnd@stVdI H3%,K8% 46A +understudying 'Vnd@stVdIIN Hb% 56A +undersurface 'Vnd@s3fIs K6% 4 +undersurfaces 'Vnd@s3fIsIz Kj% 5 +undertake ,Vnd@'teIk H5% 36A,7A,9 +undertaken ,Vnd@'teIk@n Hc% 46A,7A,9 +undertaker 'Vnd@teIk@R K6% 4 +undertakers 'Vnd@teIk@z Kj% 4 +undertakes ,Vnd@'teIks Ha% 36A,7A,9 +undertaking 'Vnd@teIkIN M6% 4 +undertaking ,Vnd@'teIkIN Hb%,K6% 46A,7A,9 +undertakings 'Vnd@teIkINz Mj$ 4 +undertakings ,Vnd@'teIkINz Kj% 4 +undertone 'Vnd@t@Un K6% 3 +undertones 'Vnd@t@Unz Kj% 3 +undertook ,Vnd@'tUk Hc% 36A,7A,9 +undertow 'Vnd@t@U K6% 3 +undertows 'Vnd@t@Uz Kj$ 3 +undervaluation ,Vnd@,v&ljU'eISn M6% 6 +undervaluations ,Vnd@,v&ljU'eISnz Mj% 6 +undervalue ,Vnd@'v&lju H2% 46A +undervalued ,Vnd@'v&ljud Hc%,Hd% 46A +undervalues ,Vnd@'v&ljuz Ha% 46A +undervaluing ,Vnd@'v&ljuIN Hb% 56A +underwater 'Vnd@wOt@R OA% 4 +underwear 'Vnd@we@R L@% 3 +underweight ,Vnd@'weIt OA% 3 +underwent ,Vnd@'went Hc% 36A +underworld 'Vnd@w3ld K6% 3 +underworlds 'Vnd@w3ldz Kj$ 3 +underwrite ,Vnd@'raIt H5% 36A +underwriter ,Vnd@'raIt@R K6% 4 +underwriters ,Vnd@'raIt@z Kj% 4 +underwrites ,Vnd@'raIts Ha% 36A +underwriting ,Vnd@'raItIN Hb% 46A +underwritten ,Vnd@'rItn Hd% 46A +underwrote ,Vnd@'r@Ut Hc% 36A +undeserved ,VndI'z3vd OA% 3 +undeserving ,VndI'z3vIN OA% 4 +undesigned ,VndI'zaInd OA% 3 +undesirable ,VndI'zaI@r@bl K6%,OA% 5 +undesirables ,VndI'zaI@r@blz Kj% 5 +undetected ,VndI'tektId OA% 4 +undetermined ,VndI't3mInd OA% 4 +undeterred ,VndI't3d OA% 3 +undeveloped ,VndI'vel@pt OA% 4 +undiagnosed Vn'daI@gn@Uzd OA% 4 +undid Vn'dId Hc% 26A +undies 'VndIz Kj% 2 +undifferentiated ,VndIf@'renSIeItId OA% 7 +undigested ,VndI'dZestId OA% 4 +undignified Vn'dIgnIfaId OA% 4 +undiluted ,VndaI'ljutId OA% 4 +undiminished ,VndI'mInISt OA% 4 +undimmed Vn'dImd OA% 2 +undiplomatic ,VndIpl@'m&tIk OA% 5 +undiplomatically ,VndIpl@'m&tIklI Pu% 6 +undischarged ,VndIs'tSAdZd OA% 3 +undisciplined Vn'dIsIplInd OA% 4 +undisclosed ,VndIs'kl@Uzd OA% 3 +undiscovered ,VndI'skVv@d OA% 4 +undiscriminating ,VndI'skrImIneItIN OA% 6 +undisguised ,VndIs'gaIzd OA% 3 +undismayed ,VndIs'meId OA% 3 +undisputed ,VndI'spjutId OA% 4 +undisputedly ,VndI'spjutIdlI Pu% 5 +undissolved ,VndI'z0lvd OA% 3 +undistinguishable ,VndI'stINgwIS@bl OA% 6 +undistinguished ,VndI'stINgwISt OA% 4 +undistributed ,VndI'strIbjutId OA% 5 +undisturbed ,VndI'st3bd OA% 3 +undivided ,VndI'vaIdId OA% 4 +undo Vn'du H5% 26A +undock Vn'd0k J0$ 22A,6A +undocked Vn'd0kt Jc$,Jd$ 22A,6A +undocking Vn'd0kIN Jb$ 32A,6A +undocks Vn'd0ks Ja$ 22A,6A +undocumented Vn'd0kjUmentId OA% 5 +undoes Vn'dVz Ha% 26A +undogmatic ,Vnd0g'm&tIk OA% 4 +undoing Vn'duIN Hb%,K6% 36A +undoings Vn'duINz Kj$ 3 +undomesticated ,Vnd@'mestIkeItId OA% 6 +undone Vn'dVn Hd%,Op% 26A +undoubted Vn'daUtId OA% 3 +undoubtedly Vn'daUtIdlI Pu% 4 +undramatic ,Vndr@'m&tIk OA% 4 +undramatically ,Vndr@'m&tIklI Pu% 5 +undreamed Vn'drimd OA% 2 +undreamed-of Vn'drimd-@v OA% 3 +undreamt Vn'dremt OA% 2 +undress Vn'dres J1%,L@% 22A,6A +undressed Vn'drest Jc%,Jd% 22A,6A +undresses Vn'dresIz Ja% 32A,6A +undressing Vn'dresIN Jb% 32A,6A +undrinkable Vn'drINk@bl OA% 4 +undue ,Vn'dju OA% 2 +undulate 'VndjUleIt I2% 32A,2C +undulated 'VndjUleItId Ic%,Id% 42A,2C +undulates 'VndjUleIts Ia% 32A,2C +undulating 'VndjUleItIN Ib% 42A,2C +undulation ,VndjU'leISn M6% 4 +undulations ,VndjU'leISnz Mj% 4 +unduly ,Vn'djulI Pu% 3 +undying ,Vn'daIIN OA% 3 +unearned ,Vn'3nd OA% 2 +unearth Vn'3T H0% 26A +unearthed Vn'3Tt Hc%,Hd% 26A +unearthing Vn'3TIN Hb$ 36A +unearthly Vn'3TlI OA% 3 +unearths Vn'3Ts Ha$ 26A +unease Vn'iz L@% 2 +uneasily Vn'izIlI Pu% 4 +uneasiness Vn'izIn@s L@% 4 +uneasy Vn'izI OA% 3 +uneatable Vn'it@bl OA% 4 +uneaten Vn'itn OA% 3 +uneconomic ,Vnik@'n0mIk OA% 5 +uneconomical ,Vnik@'n0mIkl OA% 6 +unedifying Vn'edIfaIIN OA% 5 +unedited Vn'edItId OA% 4 +uneducated Vn'edZUkeItId OA% 5 +uneffective ,VnI'fektIv OA% 4 +unelaborated ,VnI'l&b@reItId OA% 6 +unemotional ,VnI'm@US@nl OA% 5 +unemotionally ,VnI'm@US@n@lI Pu% 6 +unemployable ,VnIm'ploI@bl OA% 5 +unemployed ,VnIm'ploId OA% 3 +unemployment ,VnIm'ploIm@nt L@% 4 +unending Vn'endIN OA% 3 +unendingly Vn'endINlI Pu% 4 +unendurable ,VnIn'djU@r@bl OA% 5 +unenlightened ,VnIn'laItnd OA% 4 +unenterprising Vn'ent@praIzIN OA% 5 +unenthusiastic ,VnIn,TjuzI'&stIk OA% 6 +unenthusiastically ,VnIn,TjuzI'&stIklI Pu% 7 +unenviable Vn'envI@bl OA% 5 +unequal ,Vn'ikw@l OA% 3 +unequalled ,Vn'ikw@ld OA% 3 +unequally ,Vn'ikw@lI Pu% 4 +unequipped ,VnI'kwIpt OA% 3 +unequivocal ,VnI'kwIv@kl OA% 5 +unequivocally ,VnI'kwIv@klI Pu% 5 +unerring Vn'3rIN OA% 3 +unerringly Vn'3rINlI Pu% 4 +unethical Vn'eTIkl OA% 4 +unethically Vn'eTIklI Pu% 4 +uneven Vn'ivn OA% 3 +unevenly Vn'ivnlI Pu% 4 +uneventful ,VnI'ventf@l OA% 4 +uneventfully ,VnI'ventf@lI Pu% 5 +unexampled ,VnIg'zAmpld OA% 4 +unexceeded ,VnIk'sidId OA% 4 +unexceptionable ,VnIk'sepS@n@bl OA% 6 +unexceptional ,VnIk'sepS@nl OA% 5 +unexciting ,VnIk'saItIN OA% 4 +unexpected ,VnIk'spektId OA% 4 +unexpectedly ,VnIk'spektIdlI Pu% 5 +unexpectedness ,VnIk'spektIdnIs L@% 5 +unexpired ,VnIk'spaI@d OA% 3 +unexplained ,VnIk'spleInd OA% 3 +unexplored ,VnIk'splOd OA% 3 +unexposed ,VnIk'sp@Uzd OA% 3 +unexpressed ,VnIk'sprest OA% 3 +unexpurgated Vn'eksp@geItId OA% 5 +unfailing Vn'feIlIN OA% 3 +unfailingly Vn'feIlINlI Pu% 4 +unfair ,Vn'fe@R OA% 2 +unfairly ,Vn'fe@lI Pu% 3 +unfairness ,Vn'fe@n@s L@% 3 +unfaithful ,Vn'feITf@l OA% 3 +unfaithfully ,Vn'feITf@lI Pu% 4 +unfaithfulness ,Vn'feITf@ln@s L@% 4 +unfaltering Vn'fOlt@rIN OA% 4 +unfalteringly Vn'fOlt@rINlI Pu% 5 +unfamiliar ,Vnf@'mIlI@R OA% 5 +unfamiliarity ,Vnf@,mIlI'&rItI L@% 7 +unfashionable Vn'f&Sn@bl OA% 4 +unfashionably Vn'f&Sn@blI Pu% 4 +unfasten Vn'fAsn J0% 32A,2C,3A,6A,14,15A,15B +unfastened Vn'fAsnd Jc%,Jd% 32A,2C,3A,6A,14,15A,15B +unfastening Vn'fAsnIN Jb% 42A,2C,3A,6A,14,15A,15B +unfastens Vn'fAsnz Ja% 32A,2C,3A,6A,14,15A,15B +unfathomable Vn'f&D@m@bl OA% 5 +unfathomed Vn'f&D@md OA% 3 +unfavourable Vn'feIv@r@bl OA% 5 +unfavourably Vn'feIv@r@blI Pu% 5 +unfed Vn'fed OA% 2 +unfeeling Vn'filIN OA% 3 +unfeelingly Vn'filINlI Pu% 4 +unfeigned Vn'feInd OA% 2 +unfeignedly Vn'feIn@dlI Pu% 4 +unfermented ,Vnf@'mentId OA% 4 +unfertilized Vn'f3t@laIzd OA% 4 +unfettered Vn'fet@d OA% 3 +unfinished Vn'fInISt OA% 3 +unfit ,Vn'fIt H4$,OA% 214 +unfits ,Vn'fIts Ha$ 214 +unfitted ,Vn'fItId Hc$,Hd% 314 +unfitting ,Vn'fItIN Hb$ 314 +unflagging ,Vn'fl&gIN OA% 3 +unflappable ,Vn'fl&p@bl OA% 4 +unfledged ,Vn'fledZd OA% 2 +unflinching Vn'flIntSIN OA% 3 +unflurried Vn'flVrId OA% 3 +unfold Vn'f@Uld J0% 22A,2C,6A +unfolded Vn'f@UldId Jc%,Jd% 32A,2C,6A +unfolding Vn'f@UldIN Jb% 32A,2C,6A +unfolds Vn'f@Uldz Ja% 22A,2C,6A +unforeseeable ,VnfO'si@bl OA% 5 +unforeseen ,VnfO'sin OA% 3 +unforgettable ,Vnf@'get@bl OA% 5 +unforgettably ,Vnf@'get@blI Pu% 5 +unforgivable ,Vnf@'gIv@bl OA% 5 +unforgivably ,Vnf@'gIv@blI Pu% 5 +unforgiving ,Vnf@'gIvIN OA% 4 +unformed Vn'fOmd OA% 2 +unforthcoming ,VnfOT'kVmIN OA% 4 +unfortunate Vn'fOtSUn@t K6$,OA% 4 +unfortunately Vn'fOtSUn@tlI Pu% 5 +unfortunates Vn'fOtS@n@ts Kj$ 4 +unfounded ,Vn'faUndId OA% 3 +unframed Vn'freImd OA% 2 +unfrequented ,VnfrI'kwentId OA% 4 +unfriendliness Vn'frendlIn@s L@% 4 +unfriendly ,Vn'frendlI OA% 3 +unfrock ,Vn'fr0k H0% 26A +unfrocked ,Vn'fr0kt Hc%,Hd% 26A +unfrocking ,Vn'fr0kIN Hb$ 36A +unfrocks ,Vn'fr0ks Ha$ 26A +unfruitful Vn'frutf@l OA% 3 +unfulfilled ,VnfUl'fIld OA% 3 +unfurl Vn'f3l J0% 22A,6A +unfurled Vn'f3ld Jc%,Jd% 22A,6A +unfurling Vn'f3lIN Jb% 32A,6A +unfurls Vn'f3lz Ja% 22A,6A +unfurnished ,Vn'f3nISt OA% 3 +ungainly Vn'geInlI OA% 3 +ungenerous Vn'dZen@r@s OA% 4 +ungentle Vn'dZentl OA% 3 +ungentlemanly Vn'dZentlm@nlI OA% 5 +unglazed Vn'gleIzd OA% 2 +ungodly Vn'g0dlI OA% 3 +ungovernable Vn'gVv@n@bl OA% 5 +ungraceful Vn'greIsf@l OA% 3 +ungracious Vn'greIS@s OA% 3 +ungraciously Vn'greIS@slI Pu% 4 +ungrammatical ,Vngr@'m&tIkl OA% 5 +ungrammatically ,Vngr@'m&tIklI Pu% 5 +ungrateful Vn'greItf@l OA% 3 +ungratefully Vn'greItf@lI Pu% 4 +ungratefulness Vn'greItf@ln@s L@% 4 +ungrudging Vn'grVdZIN OA% 3 +ungrudgingly Vn'grVdZINlI Pu% 4 +unguarded ,Vn'gAdId OA% 3 +unguent 'VNgw@nt M6$ 2 +unguents 'VNgw@nts Mj$ 2 +unhallowed Vn'h&l@Ud OA% 3 +unhampered Vn'h&mp@d OA% 3 +unhand Vn'h&nd H0$ 26A +unhanded Vn'h&ndId Hc$,Hd$ 36A +unhanding Vn'h&ndIN Hb$ 36A +unhands Vn'h&ndz Ha$ 26A +unhappier Vn'h&pI@R Or% 4 +unhappiest Vn'h&pIIst Os% 4 +unhappily Vn'h&pIlI Pu% 4 +unhappiness Vn'h&pIn@s L@% 4 +unhappy Vn'h&pI OD% 3 +unharmed Vn'hAmd OA% 2 +unhealed Vn'hild OA% 2 +unhealthy Vn'helTI OA% 3 +unheard Vn'h3d OA% 2 +unheard-of Vn'h3d-0v OA% 3 +unhearing Vn'hI@rIN OA% 3 +unheated Vn'hitId OA% 3 +unheeded Vn'hidId OA% 3 +unhelpful Vn'helpf@l OA% 3 +unhelpfully Vn'helpf@lI Pu% 4 +unheralded Vn'her@ldId OA% 4 +unhesitating Vn'hezIteItIN OA% 5 +unhesitatingly Vn'hesIteItINlI Pu% 6 +unhindered Vn'hInd@d OA% 3 +unhinge Vn'hIndZ H2$ 26A +unhinged Vn'hIndZd Hc$,Hd% 26A +unhinges Vn'hIndZIz Ha$ 36A +unhinging Vn'hIndZIN Hb$ 36A +unhitch Vn'hItS J1% 22A,2C,6A,15A,15B +unhitched Vn'hItSt Jc%,Jd% 22A,2C,6A,15A,15B +unhitches Vn'hItSIz Ja% 32A,2C,6A,15A,15B +unhitching Vn'hItSIN Jb% 32A,2C,6A,15A,15B +unholy Vn'h@UlI OA% 3 +unhook Vn'hUk H0% 26A +unhooked Vn'hUkt Hc%,Hd% 26A +unhooking Vn'hUkIN Hb% 36A +unhooks Vn'hUks Ha% 26A +unhoped-for Vn'h@Upt-fOR OA% 3 +unhorse ,Vn'hOs H2$ 26A +unhorsed ,Vn'hOst Hc$,Hd% 26A +unhorses ,Vn'hOsIz Ha$ 36A +unhorsing ,Vn'hOsIN Hb$ 36A +unhurried Vn'hVrId OA% 3 +unhurriedly Vn'hVrIdlI Pu% 4 +unhurt Vn'h3t OA% 2 +unhygienic ,VnhaI'dZinIk OA% 4 +unhygienically ,VnhaI'dZinIklI Pu% 5 +unicorn 'junIkOn K6% 3 +unicorns 'junIkOnz Kj% 3 +unidentifiable ,VnaI,dentI'faI@bl OA% 7 +unidentified ,VnaI'dentIfaId OA% 5 +unification ,junIfI'keISn L@% 5 +unified 'junIfaId Hc%,Hd% 36A +unifies 'junIfaIz Ha% 36A +uniform 'junIfOm M6%,OA% 3 +uniformed 'junIfOmd OA% 3 +uniformity ,junI'fOmItI L@% 5 +uniformly 'junIfOmlI Pu% 4 +uniforms 'junIfOmz Mj% 3 +unify 'junIfaI H3% 36A +unifying 'junIfaIIN Hb% 46A +unilateral ,junI'l&tr@l OA% 4 +unilateralism ,junI'l&tr@lIzm L@% 6 +unilateralist ,junI'l&tr@lIst K6%,OA% 5 +unilateralists ,junI'l&tr@lIsts Kj% 5 +unilaterally ,junI'l&tr@lI Pu% 5 +unimaginable ,VnI'm&dZIn@bl OA% 6 +unimaginably ,VnI'm&dZIn@blI Pu% 6 +unimaginative ,VnI'm&dZIn@tIv OA% 6 +unimaginatively ,VnI'm&dZIn@tIvlI Pu% 7 +unimpaired ,VnIm'pe@d OA% 3 +unimpeachable ,VnIm'pitS@bl OA% 5 +unimpeded ,VnIm'pidId OA% 4 +unimportant ,VnIm'pOtnt OA% 4 +unimpressed ,VnIm'prest OA% 3 +unimpressive ,VnIm'presIv OA% 4 +unimpressively ,VnIm'presIvlI Pu% 5 +uninfluenced Vn'InflU@nst OA% 4 +uninformative ,VnIn'fOm@tIv OA% 5 +uninformed ,VnIn'fOmd OA% 3 +uninhabitable ,VnIn'h&bIt@bl OA% 6 +uninhabited ,VnIn'h&bItId OA% 5 +uninhibited ,VnIn'hIbItId OA% 5 +uninitiated ,VnI'nISIeItId OA% 6 +uninjured Vn'IndZ@d OA% 3 +uninspired ,VnIn'spaI@d OA% 3 +uninspiring ,VnIn'spaI@rIN OA% 4 +uninsured ,VnIn'SU@d OA% 3 +unintelligent ,VnIn'telIdZ@nt OA% 5 +unintelligently ,VnIn'telIdZ@ntlI Pu% 6 +unintelligible ,VnIn'telIdZ@bl OA% 6 +unintelligibly ,VnIn'telIdZ@blI Pu% 6 +unintended ,VnIn'tendId OA% 4 +unintentional ,VnIn'tenSn@l OA% 5 +unintentionally ,VnIn'tenSn@lI Pu% 5 +uninterested Vn'Intr@stId OA% 4 +uninteresting Vn'Intr@stIN OA% 4 +uninterestingly Vn'Intr@stINlI Pu% 5 +uninterrupted ,VnInt@'rVptId OA% 5 +uninterruptedly ,VnInt@'rVptIdlI Pu% 6 +uninvited ,VnIn'vaItId OA% 4 +uninviting ,VnIn'vaItIN OA% 4 +union 'junI@n M6% 2 +unionist 'junI@nIst K6% 4 +unionists 'junI@nIsts Kj% 4 +unions 'junI@nz Mj% 2 +unique ju'nik OA% 2 +uniquely ju'niklI Pu% 3 +uniqueness ju'nikn@s L@% 3 +unisex 'junIseks OA% 3 +unison 'junIsn L@% 3 +unit 'junIt K6% 2 +unitary 'junItrI OA% 3 +unite ju'naIt J2% 22A,3A,4A,6A +united ju'naItId Jc%,Jd%,OA% 32A,3A,4A,6A +unitedly ju'naItIdlI Pu$ 4 +unites ju'naIts Ja% 22A,3A,4A,6A +unities 'junItIz Mj% 3 +uniting ju'naItIN Jb% 32A,3A,4A,6A +units 'junIts Kj% 2 +unity 'junItI M8% 3 +universal ,junI'v3sl OA% 4 +universality ,junIv3's&lItI L@% 6 +universally ,junI'v3s@lI Pu% 5 +universe 'junIv3s K6% 3 +universes 'junIv3sIz Kj% 4 +universities ,junI'v3sItIz Kj% 5 +university ,junI'v3sItI K8% 5 +unjust Vn'dZVst OA% 2 +unjustifiable ,VndZVstI'faI@bl OA% 6 +unjustifiably ,VndZVstI'faI@blI Pu% 6 +unjustified Vn'dZVstIfaId OA% 4 +unjustly Vn'dZVstlI Pu% 3 +unkempt ,Vn'kempt OA% 2 +unkind Vn'kaInd OA% 2 +unkindly Vn'kaIndlI Pu% 3 +unkissed Vn'kIst OA% 2 +unknowable Vn'n@U@bl OA% 4 +unknowing Vn'n@UIN OA% 3 +unknowingly Vn'n@UINlI Pu% 4 +unknown ,Vn'n@Un K6%,OA% 2 +unknowns Vn'n@Unz Kj$ 2 +unlabelled Vn'leIbld OA% 3 +unladylike Vn'leIdIlaIk OA% 4 +unlamented ,Vnl@'mentId OA% 4 +unlatched Vn'l&tSt OA% 2 +unlawful Vn'lOf@l OA% 3 +unlawfully Vn'lOf@lI Pu% 4 +unlearn ,Vn'l3n H0% 26A +unlearned ,Vn'l3nd Hc%,Hd% 26A +unlearning ,Vn'l3nIN Hb% 36A +unlearns ,Vn'l3nz Ha% 26A +unlearnt ,Vn'l3nt Hd% 26A +unleash Vn'liS H1% 26A +unleashed Vn'liSt Hc%,Hd% 26A +unleashes Vn'liSIz Ha% 36A +unleashing Vn'liSIN Hb% 36A +unleavened ,Vn'levnd OA% 3 +unless @n'les V-% 2 +unlettered ,Vn'let@d OA% 3 +unlicensed Vn'laIsnst OA% 3 +unlighted Vn'laItId OA% 3 +unlikable Vn'laIk@bl OA% 4 +unlike ,Vn'laIk Op%,T-% 2 +unlikely Vn'laIklI OA% 3 +unlimited Vn'lImItId OA% 4 +unlined Vn'laInd OA% 2 +unlisted Vn'lIstId OA% 3 +unlit Vn'lIt OA% 2 +unliterary Vn'lIt@r@rI OA% 5 +unload Vn'l@Ud J0% 22A,6A,14 +unloaded Vn'l@UdId Jc%,Jd% 32A,6A,14 +unloading Vn'l@UdIN Jb% 32A,6A,14 +unloads Vn'l@Udz Ja% 22A,6A,14 +unlocated ,Vnl@U'keItId OA% 4 +unlock Vn'l0k J0% 22A,2C,6A,15A,15B +unlocked Vn'l0kt Jc%,Jd% 22A,2C,6A,15A,15B +unlocking Vn'l0kIN Jb% 32A,2C,6A,15A,15B +unlocks Vn'l0ks Ja% 22A,2C,6A,15A,15B +unlooked-for Vn'lUkt-fOR OA% 3 +unloose Vn'lus H2% 26A +unloosed Vn'lust Hc%,Hd% 26A +unlooses Vn'lusIz Ha% 36A +unloosing Vn'lusIN Hb% 36A +unlovable Vn'lVv@bl OA% 4 +unloved VN'lVvd OA% 2 +unlovely Vn'lVvlI OA% 3 +unluckily Vn'lVkIlI Pu% 4 +unlucky Vn'lVkI OA% 3 +unmade Vn'meId OA% 2 +unman ,Vn'm&n H4$ 26A +unmanageable Vn'm&nIdZ@bl OA% 5 +unmanageably Vn'm&nIdZ@blI Pu% 5 +unmanly Vn'm&nlI OA% 3 +unmanned ,Vn'm&nd Hc$,Hd%,OA% 26A +unmannered Vn'm&n@d OA$ 3 +unmannerly Vn'm&n@lI OA% 4 +unmanning ,Vn'm&nIN Hb$ 36A +unmans ,Vn'm&nz Ha$ 26A +unmarked Vn'mAkt OA% 2 +unmarried Vn'm&rId OA% 3 +unmask Vn'mAsk J0% 22A,6A +unmasked Vn'mAskt Jc%,Jd% 22A,6A +unmasking Vn'mAskIN Jb% 32A,6A +unmasks Vn'mAsks Ja% 22A,6A +unmatchable Vn'm&tS@bl OA% 4 +unmatched Vn'm&tSt OA% 2 +unmechanized Vn'mek@naIzd OA% 4 +unmemorable Vn'mem@r@bl OA% 5 +unmemorably Vn'mem@r@blI Pu% 5 +unmentionable Vn'menS@n@bl OA% 5 +unmerciful Vn'm3sIf@l OA% 4 +unmercifully Vn'm3sIf@lI Pu% 5 +unmerited Vn'merItId OA% 4 +unmindful Vn'maIndf@l OA% 3 +unmingled Vn'mINgld OA% 3 +unmistakable ,VnmI'steIk@bl OA% 5 +unmistakably ,VnmI'steIk@blI Pu% 5 +unmitigated Vn'mItIgeItId OA% 5 +unmixed Vn'mIkst OA% 2 +unmodernized Vn'm0d@naIzd OA% 4 +unmodified Vn'm0dIfaId OA% 4 +unmolested ,Vnm@'lestId OA% 4 +unmourned Vn'mOnd OA% 2 +unmovable Vn'muv@bl OA% 4 +unmoved Vn'muvd OA% 2 +unmoving Vn'muvIN OA% 3 +unmusical Vn'mjuzIkl OA% 4 +unmusically Vn'mjuzIklI Pu% 4 +unnamed Vn'neImd OA% 2 +unnatural Vn'n&tSr@l OA% 3 +unnaturally Vn'n&tSr@lI Pu% 4 +unnecessarily ,Vn'nes@s@r@lI Pu% 6 +unnecessary Vn'nes@srI OA% 4 +unnerve ,Vn'n3v H2% 26A +unnerved ,Vn'n3vd Hc%,Hd% 26A +unnerves ,Vn'n3vz Ha% 26A +unnerving ,Vn'n3vIN Hb% 36A +unnoticeable Vn'n@UtIs@bl OA% 5 +unnoticed ,Vn'n@UtIst OA% 3 +unnumbered ,Vn'nVmb@d OA% 3 +unobjectionable ,Vn@b'dZekSn@bl OA% 5 +unobservant ,Vn@b'z3v@nt OA% 4 +unobserved ,Vn@b'z3vd OA% 3 +unobtainable ,Vn@b'teIn@bl OA% 5 +unobtrusive ,Vn@b'trusIv OA% 4 +unobtrusively ,Vn@b'trusIvlI Pu% 5 +unobvious Vn'0bvI@s OA% 4 +unoccupied Vn'0kjUpaId OA% 4 +unofficial ,Vn@'fISl OA% 4 +unofficially ,Vn@'fIS@lI Pu% 5 +unopen Vn'@Up@n OA% 3 +unopened Vn'@Up@nd OA% 3 +unopposed ,Vn@'p@Uzd OA% 3 +unoriginal ,Vn@'rIdZ@nl OA% 5 +unorthodox ,Vn'OT@d0ks OA% 4 +unpack ,Vn'p&k J0% 22A,6A +unpacked ,Vn'p&kt Jc%,Jd% 22A,6A +unpacking ,Vn'p&kIN Jb% 32A,6A +unpacks ,Vn'p&ks Ja% 22A,6A +unpaid Vn'peId OA% 2 +unpainted Vn'peIntId OA% 3 +unpalatable Vn'p&l@t@bl OA% 5 +unpalatably Vn'p&l@t@blI Pu% 5 +unparalleled Vn'p&r@leld OA% 4 +unpardonable Vn'pAdn@bl OA% 4 +unpardonably Vn'pAdn@blI Pu% 4 +unparliamentary ,Vn,pAl@'mentrI OA% 5 +unpatriotic ,Vnp&trI'0tIk OA% 5 +unpatriotically ,Vnp&trI'0tIklI Pu% 6 +unpaved Vn'peIvd OA% 2 +unpersuaded ,Vnp@'sweIdId OA% 4 +unperturbed ,Vnp@'t3bd OA% 3 +unpick Vn'pIk J0% 23A,6A,15B +unpicked Vn'pIkt Jc%,Jd% 23A,6A,15B +unpicking Vn'pIkIN Jb% 33A,6A,15B +unpicks Vn'pIks Ja% 23A,6A,15B +unplaced ,Vn'pleIst OA% 2 +unplanned Vn'pl&nd OA% 2 +unplayable Vn'pleI@bl OA% 4 +unpleasant Vn'pleznt OA% 3 +unpleasantly Vn'plezntlI Pu% 4 +unpleasantness Vn'plezntn@s M7% 4 +unpleasantnesses Vn'plezntn@sIz Mj% 5 +unplug Vn'plVg J4% 22C,6A,15B +unplugged Vn'plVgd Jc%,Jd% 22C,6A,15B +unplugging Vn'plVgIN Jb% 32C,6A,15B +unplugs Vn'plVgz Ja% 22C,6A,15B +unplumbed Vn'plVmd OA% 2 +unpolluted ,Vnp@'lutId OA% 4 +unpompous Vn'p0mp@s OA% 3 +unpopular Vn'p0pjUl@R OA% 4 +unpopularity ,Vnp0pjU'l&rItI L@% 6 +unpractised Vn'pr&ktIst OA% 3 +unprecedented Vn'presIdentId OA% 5 +unprecedentedly Vn'presIdentIdlI Pu% 6 +unpredictability ,VnprI,dIkt@'bIlItI L@% 7 +unpredictable ,VnprI'dIkt@bl OA% 5 +unpredictably ,VnprI'dIkt@blI Pu% 5 +unpredicted ,VnprI'dIktId OA% 4 +unprejudiced Vn'predZUdIst OA% 4 +unpremeditated ,Vnpri'medIteItId OA% 6 +unprepared ,VnprI'pe@d OA% 3 +unprepossessing ,Vnprip@'zesIN OA$ 5 +unpretentious ,VnprI'tenS@s OA% 4 +unprincipled Vn'prIns@pld OA% 4 +unprintable Vn'prInt@bl OA% 4 +unproductive ,Vnpr@'dVktIv OA% 4 +unproductively ,Vnpr@'dVktIvlI Pu% 5 +unprofessional ,Vnpr@'feS@nl OA% 5 +unprofitable Vn'pr0fIt@bl OA% 5 +unprofitably Vn'pr0fIt@blI Pu% 5 +unpromising Vn'pr0mIsIN OA% 4 +unprompted ,Vn'pr0mptId OA% 3 +unpronounceable ,Vnpr@'naUns@bl OA% 5 +unpropitious ,Vnpr@'pIS@s OA% 4 +unprotected ,Vnpr@'tektId OA% 4 +unproved Vn'pruvd OA% 2 +unproven Vn'pruvn Op% 3 +unprovided ,Vnpr@'vaIdId OA% 4 +unprovoked ,Vnpr@'v@Ukt OA% 3 +unpublished Vn'pVblISt OA% 3 +unpunished Vn'pVnISt OA% 3 +unputdownable ,VnpUt'daUn@bl OA$ 5 +unqualified Vn'kw0lIfaId OA% 4 +unquestionable Vn'kwestS@n@bl OA% 5 +unquestionably Vn'kwestS@n@blI Pu% 5 +unquestioned Vn'kwestS@nd OA% 3 +unquestioning Vn'kwestS@nIN OA% 4 +unquiet Vn'kwaI@t OA% 3 +unquotable Vn'kw@Ut@bl OA% 4 +unquote Vn'kw@Ut Pu% 2 +unravel Vn'r&v@l J4% 32A,6A +unravelled Vn'r&v@ld Jc%,Jd% 32A,6A +unravelling Vn'r&v@lIN Jb% 42A,6A +unravels Vn'r&v@lz Ja% 32A,6A +unreached Vn'ritSt OA% 2 +unread Vn'red OA% 2 +unreadable Vn'rid@bl OA% 4 +unready Vn'redI OA% 3 +unreal Vn'rI@l OA% 3 +unrealistic ,VnrI@'lIstIk OA% 5 +unrealistically ,VnrI@'lIstIklI Pu% 6 +unreality ,VnrI'&lItI L@% 5 +unrealized Vn'rI@laIzd OA% 4 +unreasonable Vn'rizn@bl OA% 4 +unreasonably Vn'rizn@blI Pu% 4 +unreasoning Vn'riz@nIN OA% 4 +unreceptive ,VnrI'septIv OA% 4 +unreciprocated ,VnrI'sIpr@keItId OA% 6 +unrecognizable Vn'rek@gnaIz@bl OA% 6 +unrecognizably ,Vnrek@g'naIz@blI Pu% 6 +unrecognized Vn'rek@gnaIzd OA% 4 +unreconciled Vn'rek@nsaIld OA% 4 +unrecorded ,VnrI'kOdId OA% 4 +unredeemable ,VnrI'dim@bl OA% 5 +unrefined ,VnrI'faInd OA% 3 +unreflective ,VnrI'flektIv OA% 4 +unregenerate ,VnrI'dZen@r@t OA% 5 +unregistered Vn'redZIst@d OA% 4 +unrehearsed ,VnrI'h3st OA% 3 +unrelated ,VnrI'leItId OA% 4 +unrelaxed ,VnrI'l&kst OA% 3 +unrelenting ,VnrI'lentIN OA% 4 +unreliable ,VnrI'laI@bl OA% 5 +unreliably ,VnrI'laI@blI Pu% 5 +unrelieved ,VnrI'livd OA% 3 +unremarkable ,VnrI'mAk@bl OA% 5 +unremarkably ,VnrI'mAk@blI Pu% 5 +unremitting ,VnrI'mItIN OA% 4 +unrepeatable ,VnrI'pit@bl OA% 5 +unrepentant ,VnrI'pent@nt OA% 4 +unrepresentative ,VnreprI'zent@tIv OA% 6 +unrequested ,VnrI'kwestId OA% 4 +unrequited ,VnrI'kwaItId OA% 4 +unreserved ,VnrI'z3vd OA% 3 +unreservedly ,VnrI'z3vIdlI Pu% 5 +unresisting ,VnrI'zIstIN OA% 4 +unresolved ,VnrI'z0lvd OA% 3 +unrest Vn'rest L@% 2 +unrestrained ,VnrI'streInd OA% 3 +unrestricted ,VnrI'strIktId OA% 4 +unrevised ,VnrI'vaIzd OA% 3 +unrewarded ,VnrI'wOdId OA% 4 +unrewarding ,VnrI'wOdIN OA% 4 +unrhythmical Vn'rIDmIkl OA% 4 +unrighteous Vn'raItS@s OA% 3 +unrighteously Vn'raItS@slI Pu% 4 +unripe Vn'raIp OA% 2 +unripened Vn'raIp@nd OA% 3 +unrivalled Vn'raIv@ld OA% 3 +unroll Vn'r@Ul J0% 22A,6A +unrolled Vn'r@Uld Jc%,Jd% 22A,6A +unrolling Vn'r@UlIN Jb% 32A,6A +unrolls Vn'r@Ulz Ja% 22A,6A +unromantic ,Vnr@'m&ntIk OA% 4 +unromantically ,Vnr@'m&ntIklI Pu% 5 +unruffled Vn'rVfld OA% 3 +unrulier Vn'rulI@R Or$ 4 +unruliest Vn'rulIIst Os% 4 +unruly Vn'rulI OD% 3 +unsaddle Vn's&dl H2% 36A +unsaddled Vn's&dld Hc%,Hd%,OA% 36A +unsaddles Vn's&dlz Ha% 36A +unsaddling Vn's&dlIN Hb% 36A +unsafe Vn'seIf OA% 2 +unsaid ,Vn'sed Hc$,Hd%,OA% 26A +unsaleable Vn'seIl@bl OA% 4 +unsalted Vn'sOltId OA% 3 +unsatisfactorily ,Vns&tIs'f&kt@rIlI Pu% 7 +unsatisfactory ,Vns&tIs'f&kt@rI OA% 6 +unsatisfied Vn's&tIsfaId OA% 4 +unsatisfying Vn's&tIsfaIIN OA% 5 +unsaturated Vn's&tS@reItId OA% 5 +unsavoury Vn'seIv@rI OA% 4 +unsay ,Vn'seI H5$ 26A +unsaying ,Vn'seIIN Hb$ 36A +unsays ,Vn'seIz Ha$ 26A +unscathed Vn'skeIDd OA% 2 +unscheduled Vn'Sedjuld OA% 3 +unscientific ,VnsaI@n'tIfIk OA% 5 +unscientifically ,VnsaI@n'tIfIklI Pu% 6 +unscramble ,Vn'skr&mbl H2% 3 +unscrambled ,Vn'skr&mbld Hc%,Hd% 3 +unscrambles ,Vn'skr&mblz Ha% 3 +unscrambling ,Vn'skr&mblIN Hb% 3 +unscrew Vn'skru J0% 22A,6A,15A,15B +unscrewed Vn'skrud Jc%,Jd% 22A,6A,15A,15B +unscrewing Vn'skruIN Jb% 32A,6A,15A,15B +unscrews Vn'skruz Ja% 22A,6A,15A,15B +unscripted Vn'skrIptId OA% 3 +unscrupulous Vn'skrupjUl@s OA% 4 +unscrupulously Vn'skrupjUl@slI Pu% 5 +unsealed Vn'sild OA% 2 +unseasonable Vn'sizn@bl OA% 4 +unseasonably Vn'siz@n@blI Pu% 5 +unseasoned ,Vn'siznd OA% 3 +unseat ,Vn'sit H0$ 26A +unseated ,Vn'sitId Hc%,Hd% 36A +unseating ,Vn'sitIN Hb$ 36A +unseats ,Vn'sits Ha$ 26A +unseaworthy Vn'siw3DI OA% 4 +unsecured VnsI'kjU@d OA% 3 +unseeded Vn'sidId OA% 3 +unseeing Vn'siIN OA% 3 +unseemly Vn'simlI OA% 3 +unseen Vn'sin K6%,OA% 2 +unseens Vn'sinz Kj% 2 +unselected VnsI'lektId OA% 4 +unselective VnsI'lektIv OA% 4 +unselfconscious ,Vnself'k0nS@s OA% 4 +unselfconsciously ,Vnself'k0nS@slI Pu% 5 +unselfish Vn'selfIS OA% 3 +unselfishly Vn'selfISlI Pu% 4 +unselfishness Vn'selfISn@s L@% 4 +unsettle ,Vn'setl H2% 36A +unsettled ,Vn'setld Hc%,Hd% 36A +unsettles ,Vn'setlz Ha% 36A +unsettling ,Vn'setlIN Hb% 36A +unsex ,Vn'seks H1$ 26A +unsexed ,Vn'sekst Hc$,Hd$,OA$ 26A +unsexes ,Vn'seksIz Ha$ 36A +unsexing ,Vn'seksIN Hb$ 36A +unshakable Vn'SeIk@bl OA% 4 +unshakably Vn'SeIk@blI Pu% 4 +unshaved Vn'SeIvd OA% 2 +unshaven Vn'SeIvn OA% 3 +unsheathe Vn'SiD H2% 26A +unsheathed Vn'SiDd Hc%,Hd% 26A +unsheathes Vn'SiDz Ha% 26A +unsheathing Vn'SiDIN Hb% 36A +unshielded Vn'SildId OA% 3 +unshrinkable Vn'SrInk@bl OA% 4 +unshrinking Vn'SrINkIN OA% 3 +unshuttered Vn'SVt@d OA% 3 +unsighted Vn'saItId OA% 3 +unsightliness Vn'saItlIn@s L@% 4 +unsightly Vn'saItlI OA% 3 +unsigned Vn'saInd OA% 2 +unsilenced Vn'saIl@nst OA% 3 +unsinkable Vn'sINk@bl OA% 4 +unskilled ,Vn'skIld OA% 2 +unsmiling Vn'smaIlIN OA% 3 +unsociable Vn's@US@bl OA% 4 +unsociably Vn's@US@blI Pu% 4 +unsocial Vn's@USl OA% 3 +unsold Vn's@Uld OA% 2 +unsolicited ,Vns@'lIsItId OA% 5 +unsolved Vn's0lvd OA% 2 +unsophisticated ,Vns@'fIstIkeItId OA% 6 +unsound ,Vn'saUnd OA% 2 +unsparing Vn'spe@rIN OA% 3 +unsparingly Vn'spe@rINlI Pu% 4 +unspeakable Vn'spik@bl OA% 4 +unspeakably Vn'spik@blI Pu% 4 +unspecialized Vn'speS@laIzd OA% 4 +unspecific ,Vnsp@'sIfIk OA% 4 +unspecifically ,Vnsp@'sIfIklI Pu% 5 +unspecified Vn'spesIfaId OA% 4 +unspectacular ,Vnspek't&kjUl@R OA% 5 +unspoiled Vn'spoIld OA% 2 +unspoilt Vn'spoIlt OA% 2 +unspoken Vn'sp@Uk@n OA% 3 +unsporting Vn'spOtIN OA% 3 +unsportingly Vn'spOtINlI Pu% 4 +unsportsmanlike Vn'spOtsm@nlaIk OA% 4 +unspotted Vn'sp0tId OA% 3 +unstable Vn'steIbl OA% 3 +unstartling Vn'stAtlIN OA% 3 +unstated Vn'steItId OA% 3 +unstatesmanlike Vn'steItsm@nlaIk OA% 4 +unsteadily Vn'stedIlI Pu% 4 +unsteady Vn'stedI Op% 3 +unstoppable Vn'st0p@bl OA% 4 +unstrained Vn'streInd OA% 2 +unstressed Vn'strest OA% 2 +unstructured Vn'strVktS@d OA% 3 +unstrung ,Vn'strVN OA$ 2 +unstuck ,Vn'stVk OA% 2 +unstudied ,Vn'stVdId OA% 3 +unsubtle Vn'sVtl OA% 3 +unsuccessful ,Vns@k'sesf@l OA% 4 +unsuccessfully ,Vns@k'sesf@lI Pu% 5 +unsuitability Vn,sut@'bIlItI L@% 6 +unsuitable Vn'sut@bl OA% 4 +unsuitably Vn'sut@blI Pu% 4 +unsuited Vn'sutId OA% 3 +unsullied Vn'sVlId OA% 3 +unsung ,Vn'sVN OA% 2 +unsupervised Vn'sup@vaIzd OA% 4 +unsupported ,Vns@'pOtId OA% 4 +unsure Vn'SU@R OA% 2 +unsurpassed ,Vns@'pAst OA% 3 +unsuspected ,Vns@'spektId OA% 4 +unsuspecting ,Vns@'spektIN OA% 4 +unsuspectingly ,Vns@'spektINlI Pu% 5 +unsuspicious ,Vns@'spIS@s OA% 4 +unswayed Vn'sweId OA% 2 +unsweetened Vn'switnd OA% 3 +unswept Vn'swept OA% 2 +unswerving Vn'sw3vIN OA% 3 +unswervingly Vn'sw3vINlI Pu% 4 +unsyllabic ,VnsI'l&bIk OA$ 4 +unsympathetic ,VnsImp@'TetIk OA% 5 +unsympathetically ,VnsImp@'TetIklI Pu% 6 +unsystematic ,VnsIst@'m&tIk OA% 5 +unsystematically ,VnsIst@'m&tIklI Pu% 6 +untainted Vn'teIntId OA% 3 +untamed Vn'teImd OA% 2 +untapped Vn't&pt OA% 2 +untarnished Vn'tAnISt OA% 3 +untaxed Vn't&kst OA% 2 +untenable Vn'ten@bl OA% 4 +untenanted Vn'ten@ntId OA% 4 +untended Vn'tendId OA% 3 +untested Vn'testId OA% 3 +untethered Vn'teD@d OA% 3 +unthinkable Vn'TINk@bl OA% 4 +unthinking Vn'TINkIN OA% 3 +unthinkingly Vn'TINkINlI Pu% 4 +unthought-of Vn'TOt-0v OA% 3 +untidier Vn'taIdI@R Or% 4 +untidiest Vn'taIdIIst Os% 4 +untidily Vn'taIdIlI Pu% 4 +untidiness Vn'taIdIn@s L@% 4 +untidy Vn'taIdI OD% 3 +untie Vn'taI J5% 22A,3A,6A,15A,15B +untied Vn'taId Jc%,Jd% 22A,3A,6A,15A,15B +unties Vn'taIz Ja% 22A,3A,6A,15A,15B +until Vn'tIl T-*,V-* 2 +untimely Vn'taImlI OA% 3 +untiring Vn'taI@rIN OA% 3 +untitled Vn'taItld OA% 3 +unto 'Vntu T-% 2 +untold ,Vn't@Uld OA% 2 +untouchable Vn'tVtS@bl K6%,OA% 4 +untouchables Vn'tVtS@blz Kj% 4 +untouched Vn'tVtSt OA% 2 +untoward ,Vnt@'wOd OA% 3 +untrained Vn'treInd OA% 2 +untrammelled Vn'tr&m@ld OA% 3 +untranslatable ,Vntr&ns'leIt@bl OA% 5 +untreated Vn'tritId OA% 3 +untried Vn'traId OA% 2 +untroubled Vn'trVbld OA% 3 +untrue Vn'tru OA% 2 +untruly Vn'trulI Pu% 3 +untrustworthy Vn'trVstw3DI OA% 4 +untruth Vn'truT M6% 2 +untruthful Vn'truTf@l OA% 3 +untruthfully Vn'truTf@lI Pu% 4 +untruths Vn'truDz Mj% 2 +untucked Vn'tVkt OA% 2 +unturned Vn't3nd OA% 2 +untutored Vn'tjut@d OA% 3 +untwisted Vn'twIstId OA% 3 +untying Vn'taIIN Jb% 32A,3A,6A,15A,15B +untypical Vn'tIpIkl OA% 4 +untypically Vn'tIpIklI Pu% 4 +unused Vn'just OA% 2 +unused Vn'juzd OA% 2 +unusual Vn'juZU@l OA% 4 +unusually Vn'juZU@lI Pu% 5 +unutterable Vn'Vt@r@bl OA% 5 +unutterably Vn'Vt@r@blI Pu% 5 +unvaried Vn've@rId OA% 3 +unvarnished Vn'vAnISt OA% 3 +unvarying Vn've@rIIN OA% 4 +unveil ,Vn'veIl J0% 22A,6A +unveiled ,Vn'veIld Jc%,Jd% 22A,6A +unveiling ,Vn'veIlIN Jb% 32A,6A +unveils ,Vn'veIlz Ja% 22A,6A +unverified Vn'verIfaId OA% 4 +unversed Vn'v3st OA% 2 +unvigilant Vn'vIdZIl@nt OA% 4 +unvoiced ,Vn'voIst OA% 2 +unwanted Vn'w0ntId OA% 3 +unwarily Vn'we@rIlI Pu% 4 +unwarrantably Vn'w0r@nt@blI Pu% 5 +unwarranted Vn'w0r@ntId OA% 4 +unwary Vn'we@rI OA% 3 +unwashed Vn'w0St OA% 2 +unwavering Vn'weIv@rIN OA% 4 +unwaveringly Vn'weIv@rINlI Pu% 5 +unweaned Vn'wind OA% 2 +unwearied Vn'wI@rId OA% 3 +unwed Vn'wed OA% 2 +unwelcome Vn'welk@m OA% 3 +unwell Vn'wel Op% 2 +unwholesome Vn'h@Uls@m OA% 3 +unwieldiness Vn'wildIn@s L@% 4 +unwieldy Vn'wildI OA% 3 +unwilling Vn'wIlIN OA% 3 +unwillingly Vn'wIlINlI Pu% 4 +unwillingness Vn'wIlINnIs L@% 4 +unwind ,Vn'waInd J5% 22A,6A,21 +unwinding ,Vn'waIndIN Jb% 32A,6A,21 +unwinds ,Vn'waIndz Ja% 22A,6A,21 +unwise Vn'waIz OA% 2 +unwisely Vn'waIzlI Pu% 3 +unwitnessed Vn'wItn@st OA% 3 +unwitting Vn'wItIN OA% 3 +unwittingly Vn'wItINlI Pu% 4 +unwonted Vn'w@UntId Oq% 3 +unwontedly Vn'w@UntIdlI Pu% 4 +unworkable Vn'w3k@bl OA% 4 +unworkmanlike Vn'w3km@nlaIk OA% 4 +unworldly Vn'w3ldlI OA% 3 +unworn Vn'wOn OA% 2 +unworried Vn'wVrId OA% 3 +unworthily Vn'w3DIlI Pu% 4 +unworthiness Vn'w3DIn@s L@% 4 +unworthy Vn'w3DI OA% 3 +unwound ,Vn'waUnd Jc%,Jd% 22A,6A,21 +unwrap Vn'r&p J4% 26A,14,15A,15B +unwrapped Vn'r&pt Jc%,Jd% 26A,14,15A,15B +unwrapping Vn'r&pIN Jb% 36A,14,15A,15B +unwraps Vn'r&ps Ja% 26A,14,15A,15B +unwritten ,Vn'rItn OA% 3 +unyielding Vn'jildIN OA% 3 +unzip ,Vn'zIp H4% 2 +unzipped ,Vn'zIpt Hc%,Hd% 2 +unzipping ,Vn'zIpIN Hb% 3 +unzips ,Vn'zIps Ha% 2 +up Vp J4%,P+*,T-* 12A,6A +up- Vp- U-% 1 +up-and-coming ,Vp-@n-'kVmIN OA% 4 +up-beat 'Vp-bit K6% 2 +up-beats 'Vp-bits Kj% 2 +up-market 'Vp-mAkIt OA% 3 +up-to-date ,Vp-t@-'deIt OA% 3 +up-to-the-minute ,Vp-t@-D@-'mInIt Oq% 5 +upbraid ,Vp'breId H0% 26A,14 +upbraided ,Vp'breIdId Hc%,Hd% 36A,14 +upbraiding ,Vp'breIdIN Hb%,K6$ 36A,14 +upbraidings ,Vp'breIdINz Kj% 3 +upbraids ,Vp'breIdz Ha% 26A,14 +upbringing 'VpbrININ L@% 3 +upcountry ,Vp'kVntrI OA%,Pu% 3 +update ,Vp'deIt H2% 26A +updated ,Vp'deItId Hc%,Hd% 36A +updates ,Vp'deIts Ha% 26A +updating ,Vp'deItIN Hb% 36A +upgrade 'VpgreId K6% 2 +upgrade ,Vp'greId H2% 26A +upgraded ,Vp'greIdId Hc%,Hd% 36A +upgrades 'VpgreIdz Kj% 2 +upgrades ,Vp'greIdz Ha% 26A +upgrading ,Vp'greIdIN Hb% 36A +upheaval ,Vp'hiv@l K6% 3 +upheavals ,Vp'hiv@lz Kj% 3 +upheld ,Vp'held Hc%,Hd% 26A +uphill ,Vp'hIl OA%,Pu% 2 +uphold ,Vp'h@Uld H5% 26A +upholding ,Vp'h@UldIN Hb% 36A +upholds ,Vp'h@Uldz Ha% 26A +upholster ,Vp'h@Ulst@R H0% 36A +upholstered ,Vp'h@Ulst@d Hc%,Hd% 36A +upholsterer ,Vp'h@Ulst@r@R K6% 4 +upholsterers ,Vp'h@Ulst@r@z Kj% 4 +upholstering ,Vp'h@Ulst@rIN Hb% 46A +upholsters ,Vp'h@Ulst@z Ha% 36A +upholstery ,Vp'h@Ulst@rI L@% 4 +upkeep 'Vpkip L@% 2 +upland 'Vpl@nd K6% 2 +uplands 'Vpl@ndz Kj% 2 +uplift 'VplIft L@% 2 +uplift ,Vp'lIft H0% 26A +uplifted ,Vp'lIftId Hc%,Hd% 36A +uplifting ,Vp'lIftIN Hb% 36A +uplifts ,Vp'lIfts Ha% 26A +upmost 'Vpm@Ust OA% 2 +upon @'p0n T-* 2 +upped Vpt Jc$,Jd$ 12A,6A +upper 'Vp@R K6%,OA% 2 +upper-cuts 'Vp@-kVts Kj% 3 +uppercut 'Vp@kVt K6% 3 +uppermost 'Vp@m@Ust OA%,Pu% 3 +uppers 'Vp@z Kj% 2 +upping 'VpIN Jb$ 22A,6A +uppish 'VpIS OA$ 2 +uppishly 'VpISlI Pu$ 3 +uppishness 'VpISn@s L@$ 3 +uppity 'VpItI OA% 3 +upright 'VpraIt K6%,OA% 2 +uprightly 'VpraItlI Pu% 3 +uprightness 'VpraItn@s L@% 3 +uprights 'VpraIts Kj% 2 +uprising 'VpraIzIN K6% 3 +uprisings 'VpraIzINz Kj% 3 +uproar 'VprOR M6% 2 +uproarious Vp'rOrI@s OA% 4 +uproariously Vp'rOrI@slI Pu% 5 +uproars 'VprOz Mj% 2 +uproot ,Vp'rut H0% 26A +uprooted ,Vp'rutId Hc%,Hd% 36A +uprooting ,Vp'rutIN Hb% 36A +uproots ,Vp'ruts Ha% 26A +ups Vps Ja$,Kj$ 12A,6A +upset 'Vpset K6% 2 +upset ,Vp'set J5%,Jc%,Jd% 22A,6A +upsets 'Vpsets Kj% 2 +upsets ,Vp'sets Ja% 22A,6A +upsetting ,Vp'setIN Jb% 32A,6A +upshot 'VpS0t K6% 2 +upshots 'VpS0ts Kj$ 2 +upside-down ,VpsaId-'daUn Pu% 3 +upstage ,Vp'steIdZ H2%,OA%,Pu% 26A +upstaged ,Vp'steIdZd Hc%,Hd% 26A +upstages ,Vp'steIdZIz Ha% 36A +upstaging ,Vp'steIdZIN Hb% 36A +upstairs ,Vp'ste@z Oq%,Pu% 2 +upstanding ,Vp'st&ndIN OA% 3 +upstart 'VpstAt K6%,OA% 2 +upstarts 'VpstAts Kj% 2 +upstream ,Vp'strim Pu% 2 +upsurge 'Vps3dZ K6% 2 +upsurges 'Vps3dZIz Kj% 3 +uptake 'VpteIk M6% 2 +uptakes 'VpteIks Mj$ 2 +uptight ,Vp'taIt OA% 2 +uptown ,Vp'taUn OA%,Pu% 2 +upturn 'Vpt3n K6% 2 +upturned 'Vpt3nd OA% 2 +upturns 'Vpt3nz Kj% 2 +upward 'Vpw@d OA%,Pu% 2 +upwards 'Vpw@dz Pu% 2 +uranium jU'reInI@m L@% 4 +urban '3b@n OA% 2 +urbane 3'beIn OA% 2 +urbanely 3'beInlI Pu% 3 +urbanity 3'b&nItI L@% 4 +urbanization ,3b@naI'zeISn L@% 5 +urbanize '3b@naIz H2% 36A +urbanized '3b@naIzd Hc%,Hd% 36A +urbanizes '3b@naIzIz Ha% 46A +urbanizing '3b@naIzIN Hb% 46A +urchin '3tSIn K6% 2 +urchins '3tSInz Kj% 2 +urge 3dZ H2%,M6% 16A,6D,9,14,15B,17,19C +urged 3dZd Hc%,Hd% 16A,6D,9,14,15B,17,19C +urgency '3dZ@nsI L@% 3 +urgent '3dZ@nt OA% 2 +urgently '3dZ@ntlI Pu% 3 +urges '3dZIz Ha%,Mj% 26A,6D,9,14,15B,17,19C +urging '3dZIN Hb%,K6$ 26A,6D,9,14,15B,17,19C +urgings '3dZINz Kj% 2 +uric 'jU@rIk OA$ 2 +urinal jU'raIn@l K6% 3 +urinals jU'raIn@lz Kj% 3 +urinary 'jU@rInrI OA% 4 +urinate 'jU@rIneIt I2% 3 +urinated 'jU@rIneItId Ic%,Id% 4 +urinates 'jU@rIneIts Ia% 3 +urinating 'jU@rIneItIN Ib% 4 +urine 'jU@rIn L@% 2 +urn 3n K6% 1 +urns 3nz Kj% 1 +us Vz Qx* 1 +usable 'juz@bl OA% 3 +usage 'jusIdZ M6% 2 +usages 'jusIdZIz Mj% 3 +use jus M6% 1 +use juz H2* 16A,14,15A,15B,16A +used just Gc*,OA% 1 +used juzd Hc*,Hd*,OA% 16A,14,15A,15B,16A +useful 'jusf@l OA% 2 +usefully 'jusf@lI Pu% 3 +usefulness 'jusf@ln@s L@% 3 +useless 'jusl@s OA% 2 +uselessly 'jusl@slI Pu% 3 +uselessness 'jusl@sn@s L@% 3 +user 'juz@R K6% 2 +users 'juz@z Kj% 2 +uses 'jusIz Mj% 2 +uses 'juzIz Ha% 26A,14,15A,15B,16A +usher 'VS@R H0%,K6% 214,15B +ushered 'VS@d Hc%,Hd% 214,15B +usherette ,VS@'ret K6% 3 +usherettes ,VS@'rets Kj% 3 +ushering 'VS@rIN Hb% 314,15B +ushers 'VS@z Ha%,Kj% 214,15B +using 'juzIN Hb% 26A,14,15A,15B,16A +usual 'juZU@l OA% 3 +usually 'juZ@lI Pu* 3 +usurer 'juZ@r@R K6$ 3 +usurers 'juZ@r@z Kj$ 3 +usurious ju'zjU@rI@s OA$ 4 +usurp ju'z3p H0% 26A +usurpation ,juz3'peISn M6% 4 +usurpations ,juz3'peISnz Mj$ 4 +usurped ju'z3pt Hc%,Hd% 26A +usurper ju'z3p@R K6% 3 +usurpers ju'z3p@z Kj% 3 +usurping ju'z3pIN Hb% 36A +usurps ju'z3ps Ha% 26A +usury 'juZ@rI L@$ 3 +utensil ju'tensIl K6% 3 +utensils ju'tensIlz Kj% 3 +uterine 'jut@raIn OA% 3 +uterus 'jut@r@s K7% 3 +uteruses 'jut@r@sIz Kj$ 4 +utilitarian ju,tIlI'te@rI@n K6%,OA% 6 +utilitarianism ju,tIlI'te@rI@nIz@m L@% 8 +utilitarians ju,tIlI'te@rI@nz Kj% 6 +utilities ju'tIlItIz Mj% 4 +utility ju'tIlItI M8% 4 +utilizable ,jutI'laIz@bl OA% 5 +utilization ,jutIlaI'zeISn L@% 5 +utilize 'jutIlaIz H2% 36A +utilized 'jutIlaIzd Hc%,Hd% 36A +utilizes 'jutIlaIzIz Ha% 46A +utilizing 'jutIlaIzIN Hb% 46A +utmost 'Vtm@Ust K6%,OA% 2 +utmosts 'Vtm@Usts Kj$ 2 +utter 'Vt@R H0%,OA% 26A +utterance 'Vt@r@ns M6% 3 +utterances 'Vt@r@nsIz Mj% 4 +uttered 'Vt@d Hc%,Hd% 26A +uttering 'Vt@rIN Hb% 36A +utterly 'Vt@lI Pu% 3 +uttermost 'Vt@m@Ust K6%,OA% 3 +uttermosts 'Vt@m@Usts Kj$ 3 +utters 'Vt@z Ha% 26A +uvula 'juvjUl@ K6$ 3 +uvular 'juvjUl@R OA$ 3 +uvulas 'juvjUl@z Kj$ 3 +uxorious ,Vk'sOrI@s OA% 4 +uxoriously ,Vk'sOrI@slI Pu$ 5 +uxoriousness ,Vk'sOrI@sn@s L@$ 5 +v vi Ki$ 1 +v's viz Kj$ 1 +vac v&k K6$ 1 +vacancies 'veIk@nsIz Mj% 3 +vacancy 'veIk@nsI M8% 3 +vacant 'veIk@nt OA% 2 +vacantly 'veIk@ntlI Pu% 3 +vacate v@'keIt H2% 26A +vacated v@'keItId Hc%,Hd% 36A +vacates v@'keIts Ha% 26A +vacating v@'keItIN Hb% 36A +vacation v@'keISn I0$,M6% 33A +vacationed v@'keISnd Ic$,Id$ 33A +vacationing v@'keISnIN Ib$ 43A +vacationist v@'keIS@nIst K6$ 4 +vacationists v@'keIS@nIsts Kj$ 4 +vacations v@'keISnz Ia$,Mj% 33A +vaccinate 'v&ksIneIt H2% 36A,14 +vaccinated 'v&ksIneItId Hc%,Hd% 46A,14 +vaccinates 'v&ksIneIts Ha% 36A,14 +vaccinating 'v&ksIneItIN Hb% 46A,14 +vaccination ,v&ksI'neISn M6% 4 +vaccinations ,v&ksI'neISnz Mj% 4 +vaccine 'v&ksin M6% 2 +vaccines 'v&ksinz Mj% 2 +vacillate 'v&sIleIt I2% 32A,3A +vacillated 'v&sIleItId Ic%,Id% 42A,3A +vacillates 'v&sIleIts Ia% 32A,3A +vacillating 'v&sIleItIN Ib% 42A,3A +vacillation ,v&sI'leISn M6% 4 +vacillations ,v&sI'leISnz Mj% 4 +vacs v&ks Kj$ 1 +vacua 'v&kjU@ Kj$ 3 +vacuities v@'kjuItIz Mj$ 4 +vacuity v@'kjuItI M8% 4 +vacuous 'v&kjU@s OA% 3 +vacuously 'v&kjU@slI Pu% 4 +vacuum 'v&kjU@m K6% 3 +vacuums 'v&kjU@mz Kj% 3 +vade-mecum ,veIdI-'mik@m K6$ 4 +vade-mecums ,veIdI-'mik@mz Kj$ 4 +vagabond 'v&g@b0nd K6%,OA% 3 +vagabonds 'v&g@b0ndz Kj% 3 +vagaries 'veIg@rIz Kj% 3 +vagary 'veIg@rI K8% 3 +vagina v@'dZaIn@ K6% 3 +vaginal v@'dZaInl OA% 3 +vaginas v@'dZaIn@z Kj% 3 +vagrancy 'veIgr@nsI L@% 3 +vagrant 'veIgr@nt K6%,OA% 2 +vagrants 'veIgr@nts Kj% 2 +vague veIg OB% 1 +vaguely 'veIglI Pu% 2 +vagueness 'veIgn@s L@% 2 +vaguer 'veIg@R Or% 2 +vaguest 'veIgIst Os% 2 +vain veIn OC% 1 +vainer 'veIn@R Or% 2 +vainest 'veInIst Os% 2 +vainglorious veIn'glOrI@s OA% 4 +vainglory veIn'glOrI L@% 3 +vainly 'veInlI Pu% 2 +valance 'v&l@ns K6$ 2 +valances 'v&l@nsIz Kj$ 3 +vale veIl K6% 1 +valediction ,v&lI'dIkSn K6% 4 +valedictions ,v&lI'dIkSnz Kj% 4 +valedictory ,v&lI'dIkt@rI OA% 5 +valence 'v&l@ns K6$ 2 +valence 'veIl@ns M6$ 2 +valences 'v&l@nsIz Kj$ 3 +valences 'veIl@nsIz Mj$ 3 +valencies 'veIl@nsIz Kj$ 3 +valency 'veIl@nsI K8$ 3 +valentine 'v&l@ntaIn K6% 3 +valentines 'v&l@ntaInz Kj% 3 +valerian v@'lI@rI@n L@$ 4 +vales veIlz Kj% 1 +valet 'v&leI H0$,K6% 26A +valeted 'v&leId Hc$,Hd$ 26A +valeting 'v&leIIN Hb$ 36A +valets 'v&leIz Ha$,Kj$ 26A +valetudinarian ,v&lItjudI'ne@rI@n K6$,OA$ 7 +valetudinarians ,v&lItjudI'ne@rI@nz Kj$ 7 +valiant 'v&lI@nt OA% 3 +valiantly 'v&lI@ntlI Pu% 4 +valid 'v&lId OA% 2 +validate 'v&lIdeIt H2% 36A +validated 'v&lIdeItId Hc%,Hd% 46A +validates 'v&lIdeIts Ha% 36A +validating 'v&lIdeItIN Hb% 46A +validity v@'lIdItI L@% 4 +validly 'v&lIdlI Pu% 3 +valise v@'liz K6% 2 +valises v@'lizIz Kj$ 3 +valley 'v&lI K6% 2 +valleys 'v&lIz Kj% 2 +valorous 'v&l@r@s OA% 3 +valour 'v&l@R L@% 2 +valuable 'v&ljU@bl K6%,OA% 4 +valuables 'v&ljU@blz Kj% 4 +valuation ,v&ljU'eISn M6% 4 +valuations ,v&ljU'eISnz Mj% 4 +value 'v&lju H2%,M6% 26A,15A,16B +value-added ,v&lju-'&dId Oq% 4 +valued 'v&ljud Hc%,Hd% 26A,15A,16B +valueless 'v&ljul@s OA% 3 +valuer 'v&lju@R K6% 3 +valuers 'v&lju@z Kj% 3 +values 'v&ljuz Ha%,Mj% 26A,15A,16B +valuing 'v&ljuIN Hb% 36A,15A,16B +valve v&lv K6% 1 +valves v&lvz Kj% 1 +valvular 'v&lvjUl@R OA$ 3 +vamoose ,v&'mus I2$ 2 +vamoosed ,v&'must Ic$,Id$ 2 +vamooses ,v&'musIz Ia$ 3 +vamoosing ,v&'musIN Ib$ 3 +vamp v&mp J0%,K6% 12A,6A,15B +vamped v&mpt Jc%,Jd% 12A,6A,15B +vamping 'v&mpIN Jb% 22A,6A,15B +vampire 'v&mpaI@R K6% 2 +vampires 'v&mpaI@z Kj% 2 +vamps v&mps Ja%,Kj% 12A,6A,15B +van v&n K6% 1 +vandal 'v&nd@l K6% 2 +vandalism 'v&nd@lIz@m L@% 4 +vandals 'v&nd@lz Kj% 2 +vane veIn K6$ 1 +vanes veInz Kj$ 1 +vanguard 'v&ngAd K6% 2 +vanguards 'v&ngAdz Kj$ 2 +vanilla v@'nIl@ M6% 3 +vanillas v@'nIl@z Mj$ 3 +vanish 'v&nIS I1% 22A +vanished 'v&nISt Ic%,Id% 22A +vanishes 'v&nISIz Ia% 32A +vanishing 'v&nISIN Ib% 32A +vanities 'v&nItIz Mj% 3 +vanity 'v&nItI M8% 3 +vanquish 'v&NkwIS H1% 26A +vanquished 'v&NkwISt Hc%,Hd% 26A +vanquishes 'v&NkwISIz Ha% 36A +vanquishing 'v&NkwISIN Hb% 36A +vans v&nz Kj% 1 +vantage 'vAntIdZ M6% 2 +vantage-point 'vAntIdZ-poInt K6% 3 +vantage-points 'vAntIdZ-poInts Kj% 3 +vantages 'vAntIdZIz Mj$ 3 +vapid 'v&pId OA% 2 +vapidity v@'pIdItI L@$ 4 +vapidly 'v&pIdlI Pu% 3 +vapidness 'v&pIdn@s L@$ 3 +vaporization ,veIp@raI'zeISn M6% 5 +vaporizations ,veIp@raI'zeISnz Mj$ 5 +vaporize 'veIp@raIz J2% 32A,6A +vaporized 'veIp@raIzd Jc%,Jd% 32A,6A +vaporizes 'veIp@raIzIz Ja% 42A,6A +vaporizing 'veIp@raIzIN Jb% 42A,6A +vaporous 'veIp@r@s OA% 3 +vapour 'veIp@R M6% 2 +vapour-bath 'veIp@-bAT K6$ 3 +vapour-baths 'veIp@-bADz Kj$ 3 +vapours 'veIp@z Mj% 2 +variability ,ve@rI@'bIlItI L@% 6 +variable 've@rI@bl K6%,OA% 4 +variableness 've@rI@bln@s L@% 5 +variables 've@rI@blz Kj% 4 +variably 've@rI@blI Pu% 4 +variance 've@rI@ns M6% 3 +variances 've@rI@nsIz Mj$ 4 +variant 've@rI@nt K6%,OA% 3 +variants 've@rI@nts Kj% 3 +variation ,ve@rI'eISn M6% 4 +variations ,ve@rI'eISnz Mj% 4 +varicoloured 've@rIkVl@d OA$ 4 +varicose 'v&rIk@Us OA% 3 +varied 've@rId Jc%,Jd%,OA% 22A,6A +variegated 've@rIgeItId OA% 4 +variegation ,ve@rI'geISn M6% 4 +variegations ,ve@rI'geISnz Mj$ 4 +varies 've@rIz Ja% 22A,6A +varieties v@'raI@tIz Mj% 4 +variety v@'raI@tI M8% 4 +variform ,ve@rI'fOm OA$ 3 +variorum 've@rIOr@m OA$ 4 +various 've@rI@s OA% 3 +variously 've@rI@slI Pu% 4 +varlet 'vAlIt K6$ 2 +varlets 'vAlIts Kj$ 2 +varnish 'vAnIS H1%,M7% 26A +varnished 'vAnISt Hc%,Hd% 26A +varnishes 'vAnISIz Ha%,Mj% 36A +varnishing 'vAnISIN Hb% 36A +varsities 'vAsItIz Kj$ 3 +varsity 'vAsItI K8% 3 +vary 've@rI J3% 22A,6A +varying 've@rIIN Jb% 32A,6A +vascular 'v&skjUl@R OA% 3 +vase vAz K6% 1 +vasectomies v@'sekt@mIz Kj% 4 +vasectomy v@'sekt@mI K8% 4 +vaseline 'v&s@lin L@% 3 +vases 'vAzIz Kj% 2 +vassal 'v&s@l K6$ 2 +vassalage 'v&s@lIdZ L@$ 3 +vassals 'v&s@lz Kj$ 2 +vast vAst OA% 1 +vastly 'vAstlI Pu% 2 +vastness 'vAstn@s L@% 2 +vat v&t K6% 1 +vats v&ts Kj% 1 +vaudeville 'vOd@vIl L@% 3 +vault vOlt J0%,K6% 12A,2B,2C,6A +vaulted 'vOltId Jc%,Jd%,OA% 22A,2B,2C,6A +vaulter 'vOlt@R K6% 2 +vaulters 'vOlt@z Kj% 2 +vaulting 'vOltIN Jb% 22A,2B,2C,6A +vaulting-horse 'vOltIN-hOs K6% 3 +vaulting-horses 'vOltIN-hOsIz Kj% 4 +vaults vOlts Ja%,Kj% 12A,2B,2C,6A +vaunt vOnt J0$,K6$ 1 +vaunted 'vOntId Jc$,Jd% 2 +vaunter 'vOnt@R K6$ 2 +vaunters 'vOnt@z Kj$ 2 +vaunting 'vOntIN Jb$ 2 +vauntingly 'vOntINlI Pu$ 3 +vaunts vOnts Ja$,Kj$ 1 +veal vil L@% 1 +vector 'vekt@R K6$ 2 +vectors 'vekt@z Kj$ 2 +veer vI@R I0% 12A,2C +veered vI@d Ic%,Id% 12A,2C +veering 'vI@rIN Ib% 22A,2C +veers vI@z Ia% 12A,2C +vegetable 'vedZIt@bl K6%,OA% 4 +vegetables 'vedZIt@blz Kj% 4 +vegetarian ,vedZI'te@rI@n K6% 5 +vegetarians ,vedZI'te@rI@nz Kj% 5 +vegetate 'vedZIteIt I2% 32A +vegetated 'vedZIteItId Ic%,Id% 42A +vegetates 'vedZIteIts Ia% 32A +vegetating 'vedZIteItIN Ib% 42A +vegetation ,vedZI'teISn L@% 4 +vehemence 'vi@m@ns L@% 3 +vehement 'vi@m@nt OA% 3 +vehemently 'vi@m@ntlI Pu% 4 +vehicle 'viIkl K6% 3 +vehicles 'viIklz Kj% 3 +vehicular vI'IkjUl@R OA% 4 +veil veIl H0%,K6% 16A +veiled veIld Hc%,Hd% 16A +veiling 'veIlIN Hb%,L@% 26A +veils veIlz Ha%,Kj% 16A +vein veIn K6% 1 +veined veInd OA% 1 +veins veInz Kj% 1 +veld velt L@$ 1 +vellum 'vel@m L@% 2 +velocipede v@'l0sIpid K6$ 4 +velocipedes v@'l0sIpidz Kj$ 4 +velocities v@'l0sItIz Mj% 4 +velocity v@'l0sItI M8% 4 +velour v@'lU@R L@% 2 +velvet 'velvIt L@% 2 +velveteen ,velvI'tin L@% 3 +velvety 'velvItI OA% 3 +venal 'vin@l OA% 2 +venality vI'n&lItI L@$ 4 +venally 'vin@lI Pu% 3 +vend vend H0$ 16A +vended 'vendId Hc$,Hd$ 26A +vendee ven'di K6$ 2 +vendees ven'diz Kj$ 2 +vender 'vend@R K6$ 2 +venders 'vend@z Kj$ 2 +vendetta ven'det@ K6% 3 +vendettas ven'det@z Kj% 3 +vending 'vendIN Hb% 26A +vendor 'vend@R K6% 2 +vendors 'vend@z Kj% 2 +vends vendz Ha$ 16A +veneer v@'nI@R H0%,M6% 26A +veneered v@'nI@d Hc%,Hd% 26A +veneering v@'nI@rIN Hb% 36A +veneers v@'nI@z Ha%,Mj% 26A +venerable 'ven@r@bl OA% 4 +venerate 'ven@reIt H2% 36A +venerated 'ven@reItId Hc%,Hd% 46A +venerates 'ven@reIts Ha% 36A +venerating 'ven@reItIN Hb% 46A +veneration ,ven@'reISn M6% 4 +venerations ,ven@'reISnz Mj$ 4 +venereal v@'nI@rI@l OA% 4 +vengeance 'vendZ@ns L@% 2 +vengeful 'vendZf@l OA% 2 +venial 'vinI@l OA% 3 +venison 'venIsn L@% 3 +venom 'ven@m L@% 2 +venomed 'ven@md OA% 2 +venomous 'ven@m@s OA% 3 +venomously 'ven@m@slI Pu% 4 +venous 'vin@s OA$ 2 +vent vent H0%,K6% 16A,14 +vent-hole 'vent-h@Ul K6% 2 +vent-holes 'vent-h@Ulz Kj% 2 +vented 'ventId Hc%,Hd% 26A,14 +ventilate 'ventIleIt H2% 36A +ventilated 'ventIleItId Hc%,Hd% 46A +ventilates 'ventIleIts Ha% 36A +ventilating 'ventIleItIN Hb% 46A +ventilation ,ventI'leISn L@% 4 +ventilator 'ventIleIt@R K6% 4 +ventilators 'ventIleIt@z Kj% 4 +venting 'ventIN Hb% 26A,14 +ventral 'ventr@l OA$ 2 +ventricle 'ventrIkl K6% 3 +ventricles 'ventrIklz Kj% 3 +ventricular ven'trIkjUl@ OA$ 4 +ventriloquism ven'trIl@kwIz@m L@% 5 +ventriloquist vent'rIl@kwIst K6% 4 +ventriloquists vent'rIl@kwIsts Kj% 4 +vents vents Ha%,Kj% 16A,14 +venture 'ventS@R J2%,M6% 23A,6A,7A,15A,16A +ventured 'ventS@d Jc%,Jd% 23A,6A,7A,15A,16A +ventures 'ventS@z Ja%,Mj% 23A,6A,7A,15A,16A +venturesome 'ventS@s@m OA% 3 +venturing 'ventS@rIN Jb% 33A,6A,7A,15A,16A +venturous 'ventS@r@s OA% 3 +venue 'venju K6% 2 +venues 'venjuz Kj% 2 +veracious v@'reIS@s OA$ 3 +veraciously v@'reIS@slI Pu$ 4 +veracity v@'r&sItI L@% 4 +veranda v@'r&nd@ K6% 3 +verandah v@'r&nd@ K6% 3 +verandahs v@'r&nd@z Kj% 3 +verandas v@'r&nd@z Kj% 3 +verb v3b K6% 1 +verbal 'v3bl OA% 2 +verbalize 'v3b@laIz H2% 3 +verbalized 'v3b@laIzd Hc%,Hd% 3 +verbalizes 'v3b@laIzIz Ha% 4 +verbalizing 'v3b@laIzIN Hb% 4 +verbally 'v3b@lI Pu% 3 +verbatim v3'beItIm OA%,Pu% 3 +verbena v3'bin@ K6$ 3 +verbenas v3'bin@z Kj$ 3 +verbiage 'v3bIIdZ L@% 3 +verbose v3'b@Us OA% 2 +verbosely v3'b@UslI Pu% 3 +verboseness v3'b@Usn@s L@$ 3 +verbosity v3'b0sItI L@% 4 +verbs v3bz Kj% 1 +verdancy 'v3dnsI L@$ 3 +verdant 'v3dnt OA% 2 +verdict 'v3dIkt K6% 2 +verdicts 'v3dIkts Kj% 2 +verdigris 'v3dIgrIs L@% 3 +verdure 'v3dj@R L@% 2 +verge v3dZ I2%,K6% 13A +verged v3dZd Ic%,Id% 13A +verger 'v3dZ@R K6% 2 +vergers 'v3dZ@z Kj% 2 +verges 'v3dZIz Ia%,Kj% 23A +verging 'v3dZIN Ib% 23A +verifiable 'verIfaI@bl OA% 5 +verification ,verIfI'keISn M6% 5 +verifications ,verIfI'keISnz Mj% 5 +verified 'verIfaId Hc%,Hd% 36A +verifies 'verIfaIz Ha% 36A +verify 'verIfaI H3% 36A +verifying 'verIfaIIN Hb% 46A +verily 'ver@lI Pu% 3 +verisimilitude ,verIsI'mIlItjud M6% 6 +verisimilitudes ,verIsI'mIlItjudz Mj% 6 +veritable 'verIt@bl OA% 4 +verities 'verItIz Mj$ 3 +verity 'verItI M8$ 3 +vermicelli ,v3mI'selI L@$ 4 +vermiform 'v3mIfOm OA$ 3 +vermilion v@'mIlI@n M6%,OA% 4 +vermilions v@'mIlI@nz Mj$ 4 +vermin 'v3mIn L@% 2 +verminous 'v3mIn@s OA$ 3 +vermouth 'v3m@T M6% 2 +vermouths 'v3m@Ts Mj$ 2 +vernacular v@'n&kjUl@R K6%,OA% 4 +vernaculars v@'n&kjUl@z Kj$ 4 +vernal 'v3n@l OA% 2 +veronica v@'r0nIk@ K6$ 4 +veronicas v@'r0nIk@z Kj$ 4 +verruca v@'ruk@ K6$ 3 +verrucas v@'ruk@z Kj$ 3 +versatile 'v3s@taIl OA% 3 +versatility ,v3s@'tIlItI L@% 5 +verse v3s M6% 1 +versed v3st OA% 1 +verses 'v3sIz Mj% 2 +versification ,v3sIfI'keISn L@$ 5 +versified 'v3sIfaId Jc$,Jd$ 32A,6A +versifier 'v3sIfaI@R K6$ 4 +versifiers 'v3sIfaI@z Kj$ 4 +versifies 'v3sIfaIz Ja$ 32A,6A +versify 'v3sIfaI J3$ 32A,6A +versifying 'v3sIfaIIN Jb$ 42A,6A +version 'v3Sn K6% 2 +versions 'v3Snz Kj% 2 +verso 'v3s@U K6$ 2 +versos 'v3s@Uz Kj$ 2 +versus 'v3s@s T-% 2 +vertebra 'v3tIbr@ Ki% 3 +vertebrae 'v3tIbri Kj% 3 +vertebrate 'v3tIbreIt K6%,OA% 3 +vertebrates 'v3tIbreIts Kj% 3 +vertex 'v3teks Ki% 2 +vertical 'v3tIkl K6$,OA% 3 +vertically 'v3tIklI Pu% 3 +verticals 'v3tIklz Kj$ 3 +vertices 'v3tIsiz Kj$ 3 +vertiginous v3'tIdZIn@s OA$ 4 +vertigo 'v3tIg@U L@% 3 +verve v3v L@% 1 +very 'verI Oq%,Pu* 2 +vesicle 'vesIkl K6$ 3 +vesicles 'vesIklz Kj$ 3 +vesicular v@'sIkjUl@R OA$ 4 +vespers 'vesp@z Kj$ 2 +vessel 'ves@l K6% 2 +vessels 'ves@lz Kj% 2 +vest vest J0$,K6% 13A,6A,14 +vestal 'vest@l K6$,OA$ 2 +vestals 'vest@lz Kj$ 2 +vested 'vestId Jc$,Jd% 23A,6A,14 +vestibule 'vestIbjul K6% 3 +vestibules 'vestIbjulz Kj% 3 +vestige 'vestIdZ M6% 2 +vestiges 'vestIdZIz Mj% 3 +vestigial ve'stIdZI@l OA% 3 +vesting 'vestIN Jb$ 23A,6A,14 +vestment 'vestm@nt K6% 2 +vestments 'vestm@nts Kj% 2 +vestries 'vestrIz Kj% 2 +vestry 'vestrI K8% 2 +vestryman 'vestrIm@n Ki% 3 +vestrymen 'vestrIm@n Kj% 3 +vests vests Ja$,Kj% 13A,6A,14 +vesture 'vestS@R H2$,K6$ 2 +vestured 'vestS@d Hc$,Hd$ 2 +vestures 'vestS@z Ha$,Kj$ 2 +vesturing 'vestS@rIN Hb$ 3 +vet vet H4%,K6% 16A +vetch vetS M7$ 1 +vetches 'vetSIz Mj$ 2 +veteran 'vet@r@n K6% 3 +veterans 'vet@r@nz Kj% 3 +veterinary 'vetrInrI OA% 3 +veto 'vit@U H0%,K7% 26A +vetoed 'vit@Ud Hc%,Hd% 26A +vetoes 'vit@Uz Kj% 2 +vetoing 'vit@UIN Hb% 36A +vetos 'vit@Uz Ha% 26A +vets vets Ha%,Kj% 16A +vetted 'vetId Hc%,Hd% 26A +vetting 'vetIN Hb% 26A +vex veks H1% 16A +vexation vek'seISn M6% 3 +vexations vek'seISnz Mj% 3 +vexatious vek'seIS@s OA% 3 +vexed vekst Hc%,Hd% 16A +vexes 'veksIz Ha% 26A +vexing 'veksIN Hb% 26A +via 'vaI@ T-% 2 +via media ,vaI@ 'midI@ Ki$ 5 +viability ,vaI@'bIlItI L@% 5 +viable 'vaI@bl OA% 3 +viaduct 'vaI@dVkt K6% 3 +viaducts 'vaI@dVkts Kj% 3 +vial 'vaI@l K6$ 2 +vials 'vaI@lz Kj$ 2 +vibes vaIbz Kj% 1 +vibrant 'vaIbr@nt OA% 2 +vibraphone 'vaIbr@f@Un K6% 3 +vibraphones 'vaIbr@f@Unz Kj% 3 +vibrate vaI'breIt J2% 22A,2C,6A +vibrated vaI'breItId Jc%,Jd% 32A,2C,6A +vibrates vaI'breIts Ja% 22A,2C,6A +vibrating vaI'breItIN Jb% 32A,2C,6A +vibration vaI'breISn M6% 3 +vibrations vaI'breISnz Mj% 3 +vibrato vI'brAt@U M6% 3 +vibrator vaI'breIt@R K6% 3 +vibrators vaI'breIt@z Kj% 3 +vibratos vI'brAt@Uz Mj$ 3 +vicar 'vIk@R K6% 2 +vicarage 'vIk@rIdZ K6% 3 +vicarages 'vIk@rIdZIz Kj% 4 +vicarious vI'ke@rI@s OA% 4 +vicariously vI'ke@rI@slI Pu% 5 +vicars 'vIk@z Kj% 2 +vice vaIs M6%,T-% 1 +vice versa ,vaIsI 'v3s@ Pu% 4 +vice- vaIs- U-% 1 +viceregal vaIs'rig@l OA$ 3 +vicereine vaIs'reIn K6$ 2 +vicereines vaIs'reInz Kj$ 2 +viceroy 'vaIsroI K6% 2 +viceroys 'vaIsroIz Kj% 2 +vices 'vaIsIz Mj% 2 +vicinities vI'sInItIz Mj$ 4 +vicinity vI'sInItI M8% 4 +vicious 'vIS@s OA% 2 +viciously 'vIS@slI Pu% 3 +viciousness 'vIS@sn@s L@% 3 +vicissitude vI'sIsItjud K6% 4 +vicissitudes vI'sIsItjudz Kj% 4 +victim 'vIktIm K6% 2 +victimization ,vIktImaI'zeISn M6% 5 +victimizations ,vIktImaI'zeISnz Mj$ 5 +victimize 'vIktImaIz H2% 36A +victimized 'vIktImaIzd Hc%,Hd% 36A +victimizes 'vIktImaIzIz Ha% 46A +victimizing 'vIktImaIzIN Hb% 46A +victims 'vIktImz Kj% 2 +victor 'vIkt@R K6% 2 +victoria vIk'tOrI@ K6$ 4 +victorias vIk'tOrI@z Kj$ 4 +victories 'vIkt@rIz Mj% 3 +victorious vIk'tOrI@s OA% 4 +victoriously vIk'tOrI@slI Pu% 5 +victors 'vIkt@z Kj% 2 +victory 'vIkt@rI M8% 3 +victual 'vItl J4$,K6$ 22A,6A +victualled 'vItld Jc$,Jd$ 22A,6A +victualler 'vItl@R K6$ 2 +victuallers 'vItl@z Kj$ 2 +victualling 'vIt@lIN Jb$ 32A,6A +victuals 'vItlz Ja$,Kj% 22A,6A +vicu~na vI'kjun@ K6$ 3 +vicu~nas vI'kjun@z Kj$ 3 +vide 'vaIdI Z-$ 2 +videlicet vI'dilIset Pu$ 4 +video 'vIdI@U K6% 3 +videos 'vIdI@Uz Kj% 3 +videotape 'vIdI@UteIp H2%,L@% 46A +videotaped 'vIdI@UteIpt Hc%,Hd% 46A +videotapes 'vIdI@UteIps Ha% 46A +videotaping 'vIdI@UteIpIN Hb% 56A +vie vaI I5% 13A +vied vaId Ic%,Id% 13A +vies vaIz Ia% 13A +view vju H0%,M6% 16A +viewed vjud Hc%,Hd% 16A +viewer 'vju@R K6% 2 +viewers 'vju@z Kj% 2 +viewfinder 'vjufaInd@R K6% 3 +viewfinders 'vjufaInd@z Kj% 3 +viewing 'vjuIN Hb% 26A +viewless 'vjul@s OA$ 2 +viewpoint 'vjupoInt K6% 2 +viewpoints 'vjupoInts Kj% 2 +views vjuz Ha%,Mj% 16A +vigil 'vIdZIl M6% 2 +vigilance 'vIdZIl@ns L@% 3 +vigilant 'vIdZIl@nt OA% 3 +vigilante ,vIdZI'l&ntI K6% 4 +vigilantes ,vIdZI'l&ntIz Kj% 4 +vigilantly 'vIdZIl@ntlI Pu% 4 +vigils 'vIdZIlz Mj% 2 +vignette vi'njet K6% 2 +vignettes vi'njets Kj% 2 +vigorous 'vIg@r@s OA% 3 +vigorously 'vIg@r@slI Pu% 4 +vigour 'vIg@R L@% 2 +vile vaIl OB% 1 +vilely 'vaIl+lI Pu% 2 +vileness 'vaIln@s L@% 2 +viler 'vaIl@R Or% 2 +vilest 'vaIlIst Os% 2 +vilification ,vIlIfI'keISn M6% 5 +vilifications ,vIlIfI'keISnz Mj$ 5 +vilified 'vIlIfaId Hc%,Hd% 36A +vilifies 'vIlIfaIz Ha% 36A +vilify 'vIlIfaI H3% 36A +vilifying 'vIlIfaIIN Hb% 46A +villa 'vIl@ K6% 2 +village 'vIlIdZ K6% 2 +villager 'vIlIdZ@R K6% 3 +villagers 'vIlIdZ@z Kj% 3 +villages 'vIlIdZIz Kj% 3 +villain 'vIl@n K6% 2 +villainess 'vIl@nes K6% 3 +villainesses 'vIl@nesIz Kj$ 4 +villainies 'vIl@nIz Mj% 3 +villainous 'vIl@n@s OA% 3 +villains 'vIl@nz Kj% 2 +villainy 'vIl@nI M8% 3 +villas 'vIl@z Kj% 2 +villein 'vIleIn K6$ 2 +villeinage 'vIlInIdZ L@$ 3 +villeins 'vIleInz Kj$ 2 +vim vIm L@% 1 +vinaigrette ,vInI'gret L@% 3 +vindicate 'vIndIkeIt H2% 36A +vindicated 'vIndIkeItId Hc%,Hd% 46A +vindicates 'vIndIkeIts Ha% 36A +vindicating 'vIndIkeItIN Hb% 46A +vindication ,vIndI'keISn M6% 4 +vindications ,vIndI'keISnz Mj% 4 +vindictive vIn'dIktIv OA% 3 +vindictively vIn'dIktIvlI Pu% 4 +vindictiveness vIn'dIktIvn@s L@% 4 +vine vaIn K6% 1 +vinegar 'vInIg@R M6% 3 +vinegars 'vInIg@z Mj$ 3 +vinegary 'vInIg@rI OA% 4 +vineries 'vaIn@rIz Kj$ 3 +vinery 'vaIn@rI K8$ 3 +vines vaInz Kj% 1 +vineyard 'vInj@d K6% 2 +vineyards 'vInj@dz Kj% 2 +vino 'vin@U M7$ 2 +vinoes 'vin@Uz Mj$ 2 +vinous 'vaIn@s OA$ 2 +vintage 'vIntIdZ M6% 2 +vintages 'vIntIdZIz Mj% 3 +vintner 'vIntn@R K6% 2 +vintners 'vIntn@z Kj% 2 +vinyl 'vaInIl M6% 2 +vinyls 'vaInIlz Mj$ 2 +viol 'vaI@l K6$ 2 +viola 'vaI@l@ K6$ 3 +viola vI'@Ul@ K6% 3 +violas 'vaI@l@z Kj$ 3 +violas vI'@Ul@z Kj% 3 +violate 'vaI@leIt H2% 36A +violated 'vaI@leItId Hc%,Hd% 46A +violates 'vaI@leIts Ha% 36A +violating 'vaI@leItIN Hb% 46A +violation ,vaI@'leISn M6% 4 +violations ,vaI@'leISnz Mj% 4 +violence 'vaI@l@ns L@% 3 +violent 'vaI@l@nt OA% 3 +violently 'vaI@l@ntlI Pu% 4 +violet 'vaI@l@t M6% 3 +violets 'vaI@l@ts Mj% 3 +violin ,vaI@'lIn K6% 3 +violinist ,vaI@'lInIst K6% 4 +violinists ,vaI@'lInIsts Kj% 4 +violins ,vaI@'lInz Kj% 3 +viols 'vaI@lz Kj$ 2 +viper 'vaIp@R K6% 2 +vipers 'vaIp@z Kj% 2 +virago vI'rAg@U K6$ 3 +viragoes vI'rAg@Uz Kj$ 3 +viragos vI'rAg@Uz Kj$ 3 +virgin 'v3dZIn K6%,OA% 2 +virginal 'v3dZInl K6%,OA% 3 +virginals 'v3dZInlz Kj% 3 +virginity v@'dZInItI L@% 4 +virgins 'v3dZInz Kj% 2 +virgule 'v3gjul K6$ 2 +virgules 'v3gjulz Kj$ 2 +virile 'vIraIl OA% 2 +virility vI'rIlItI L@% 4 +virology vaI@'r0l@dZI L@% 4 +virtu v3'tu L@$ 2 +virtual 'v3tSU@l OA% 3 +virtually 'v3tSU@lI Pu% 4 +virtue 'v3tSu M6% 2 +virtues 'v3tSuz Mj% 2 +virtuosi ,v3tSU'@Uzi Kj% 4 +virtuosity ,v3tSU'0sItI L@% 5 +virtuoso ,v3tSU'@Uz@U K6% 4 +virtuosos ,v3tSU'@Uz@Uz Kj% 4 +virtuous 'v3tSU@s OA% 3 +virtuously 'v3tSU@slI Pu% 4 +virulence 'vIrUl@ns L@% 3 +virulent 'vIrUl@nt OA% 3 +virulently 'vIrUl@ntlI Pu% 4 +virus 'vaI@r@s K7% 2 +viruses 'vaI@r@sIz Kj% 3 +vis-`a-vis ,viz-A-'vi Pu%,T-% 3 +visa 'viz@ H0$,K6% 26A +visaed 'viz@d Hc$,Hd$ 26A +visage 'vIzIdZ K6% 2 +visaged 'vIzIdZd Ot% 2 +visages 'vIzIdZIz Kj% 3 +visaing 'viz@rIN Hb$ 36A +visas 'viz@z Ha$,Kj% 26A +viscera 'vIs@r@ Kj$ 3 +visceral 'vIs@r@l OA% 3 +viscid 'vIsId OA$ 2 +viscosity vIs'k0sItI L@% 4 +viscount 'vaIkaUnt K6% 2 +viscountcies 'vaIkaUntsIz Kj$ 3 +viscountcy 'vaIkaUntsI K8$ 3 +viscountess 'vaIkaUntIs K7% 3 +viscountesses 'vaIkaUntIsIz Kj$ 4 +viscounts 'vaIkaUnts Kj% 2 +viscous 'vIsk@s OA% 2 +visibility ,vIz@'bIlItI L@% 5 +visible 'vIz@bl OA% 3 +visibly 'vIz@blI Pu% 3 +vision 'vIZn M6% 2 +visionaries 'vIZ@nrIz Kj% 3 +visionary 'vIZ@nrI K8%,OA% 3 +visions 'vIZnz Mj% 2 +visit 'vIzIt J0%,K6% 22C,3A,6A,14 +visitant 'vIzIt@nt K6$ 3 +visitants 'vIzIt@nts Kj$ 3 +visitation ,vIzI'teISn K6% 4 +visitations ,vIzI'teISnz Kj% 4 +visited 'vIzItId Jc%,Jd% 32C,3A,6A,14 +visiting 'vIzItIN Jb%,L@% 32C,3A,6A,14 +visitor 'vIzIt@R K6% 3 +visitors 'vIzIt@z Kj% 3 +visits 'vIzIts Ja%,Kj% 22C,3A,6A,14 +visor 'vaIz@R K6% 2 +visors 'vaIz@z Kj% 2 +vista 'vIst@ K6% 2 +vistas 'vIst@z Kj% 2 +visual 'vIZU@l OA% 3 +visualization ,vIZU@laI'zeISn M6% 6 +visualizations ,vIZU@laI'zeISnz Mj$ 6 +visualize 'vIZU@laIz H2% 46A +visualized 'vIZU@laIzd Hc%,Hd% 46A +visualizes 'vIZU@laIzIz Ha% 56A +visualizing 'vIZU@laIzIN Hb% 56A +visually 'vIZU@lI Pu% 4 +vital 'vaItl OA% 2 +vitalism 'vaIt@lIz@m L@$ 4 +vitalist 'vaIt@lIst K6$ 3 +vitalists 'vaIt@lIsts Kj$ 3 +vitality vaI't&lItI L@% 4 +vitalize 'vaIt@laIz H2% 36A +vitalized 'vaIt@laIzd Hc%,Hd% 36A +vitalizes 'vaIt@laIzIz Ha% 46A +vitalizing 'vaIt@laIzIN Hb% 46A +vitally 'vaIt@lI Pu% 3 +vitals 'vaItlz Kj$ 2 +vitamin 'vIt@mIn K6% 3 +vitamins 'vIt@mInz Kj% 3 +vitiate 'vISIeIt H2$ 36A +vitiated 'vISIeItId Hc$,Hd% 46A +vitiates 'vISIeIts Ha$ 36A +vitiating 'vISIeItIN Hb$ 46A +vitreous 'vItrI@s OA% 3 +vitrified 'vItrIfaId Jc$,Jd$ 32A,6A +vitrifies 'vItrIfaIz Ja$ 32A,6A +vitrify 'vItrIfaI J3$ 32A,6A +vitrifying 'vItrIfaIIN Jb$ 42A,6A +vitriol 'vItrI@l L@% 3 +vitriolic ,vItrI'0lIk OA% 4 +vituperate vI'tjup@reIt H2$ 46A +vituperated vI'tjup@reItId Hc$,Hd$ 56A +vituperates vI'tjup@reIts Ha$ 46A +vituperating vI'tjup@reItIN Hb$ 56A +vituperation vI,tjup@'reISn L@$ 5 +vituperative vI'tjup@r@tIv OA% 5 +viva 'vaIv@ K6$ 2 +viva voce ,vaIv@ 'v@UsI K6$,OA$,Pu$ 4 +viva voces ,vaIv@ 'v@UsIz Kj$ 4 +vivace vI'vAtSeI Pu$ 3 +vivacious vI'veIS@s OA% 3 +vivaciously vI'veIS@slI Pu% 4 +vivacity vI'v&sItI L@% 4 +vivas 'vaIv@z Kj$ 2 +vivid 'vIvId OA% 2 +vividly 'vIvIdlI Pu% 3 +vividness 'vIvIdn@s L@% 3 +viviparous vI'vIp@r@s OA$ 4 +vivisect ,vIvI'sekt H0$ 36A +vivisected ,vIvI'sektId Hc$,Hd$ 46A +vivisecting ,vIvI'sektIN Hb$ 46A +vivisection ,vIvI'sekSn M6% 4 +vivisectionist ,vIvI'sekS@nIst K6$ 5 +vivisectionists ,vIvI'sekS@nIsts Kj$ 5 +vivisections ,vIvI'sekSnz Mj$ 4 +vivisects ,vIvI'sekts Ha$ 36A +vixen 'vIksn K6% 2 +vixenish 'vIks@nIS OA$ 3 +vixens 'vIksnz Kj% 2 +viz vIz Y~% 1 +vizier vI'zI@R K6$ 3 +viziers vI'zI@z Kj$ 3 +vocabularies v@'k&bjUl@rIz Mj% 5 +vocabulary v@'k&bjUl@rI M8% 5 +vocal 'v@Ukl OA% 2 +vocalist 'v@Uk@lIst K6% 3 +vocalists 'v@Uk@lIsts Kj% 3 +vocalize 'v@Uk@laIz H2% 3 +vocalized 'v@Uk@laIzd Hc%,Hd% 3 +vocalizes 'v@Uk@laIzIz Ha% 4 +vocalizing 'v@Uk@laIzIN Hb% 4 +vocally 'v@Uk@lI Pu% 3 +vocation v@U'keISn M6% 3 +vocational v@U'keISn@l OA% 4 +vocations v@U'keISnz Mj% 3 +vocative 'v0k@tIv K6$,OA$ 3 +vocatives 'v0k@tIvz Kj$ 3 +vociferate v@'sIf@reIt J2$ 42A,6A +vociferated v@'sIf@reItId Jc$,Jd$ 52A,6A +vociferates v@'sIf@reIts Ja$ 42A,6A +vociferating v@'sIf@reItIN Jb$ 52A,6A +vociferation v@,sIf@'reISn L@$ 5 +vociferous v@'sIf@r@s OA% 4 +vodka 'v0dk@ M6% 2 +vodkas 'v0dk@z Mj% 2 +vogue v@Ug K6% 1 +vogues v@Ugz Kj$ 1 +voice voIs H2%,M6* 16A +voiced voIst Hc%,Hd%,Ot% 16A +voiceless 'voIsl@s OA% 2 +voices 'voIsIz Ha%,Mj% 26A +voicing 'voIsIN Hb% 26A +void voId H0$,K6%,OA% 16A +voided 'voIdId Hc$,Hd$ 26A +voiding 'voIdIN Hb$ 26A +voids voIdz Ha$,Kj$ 16A +voile voIl L@$ 1 +vol v0l Y>% 1 +volatile 'v0l@taIl OA% 3 +volatilities ,v0l@'tIlItIz Mj$ 5 +volatility ,v0l@'tIlItI M8% 5 +volcanic v0l'k&nIk OA% 3 +volcano v0l'keIn@U K6% 3 +volcanoes v0l'keIn@Uz Kj% 3 +volcanos v0l'keIn@Uz Kj% 3 +vole v@Ul K6% 1 +voles v@Ulz Kj% 1 +volition v@'lISn L@% 3 +volitional v@'lISn@l OA$ 4 +volley 'v0lI J0%,K6% 22A,2C,6A +volleyball 'v0lIbOl M6% 3 +volleyballs 'v0lIbOlz Mj$ 3 +volleyed 'v0lId Jc%,Jd% 22A,2C,6A +volleying 'v0lIIN Jb% 32A,2C,6A +volleys 'v0lIz Ja%,Kj% 22A,2C,6A +vols v0lz Y)% 1 +volt v@Ult K6% 1 +voltage 'v@UltIdZ M6% 2 +voltages 'v@UltIdZIz Mj% 3 +volte-face ,v0lt-'fAs Ki$ 2 +volts v@Ults Kj% 1 +volubility ,v0ljU'bIlItI L@% 5 +voluble 'v0ljUbl OA% 3 +volubly 'v0ljUblI Pu% 3 +volume 'v0ljum M6% 2 +volumes 'v0ljumz Mj% 2 +voluminous v@'ljumIn@s OA% 4 +voluntaries 'v0l@ntrIz Kj$ 3 +voluntarily 'v0l@ntr@lI Pu% 4 +voluntary 'v0l@ntrI K8$,OA% 3 +volunteer ,v0l@n'tI@R J0%,K6% 32A,3A,6A,7A +volunteered ,v0l@n'tI@d Jc%,Jd% 32A,3A,6A,7A +volunteering ,v0l@n'tI@rIN Jb% 42A,3A,6A,7A +volunteers ,v0l@n'tI@z Ja%,Kj% 32A,3A,6A,7A +voluptuaries v@'lVptSU@rIz Kj$ 5 +voluptuary v@'lVptSU@rI K8$ 5 +voluptuous v@'lVptSU@s OA% 4 +voluptuously v@'lVptSU@slI Pu% 5 +voluptuousness v@'lVptSU@sn@s L@% 5 +volute v@'ljut K6$ 2 +voluted v@'ljutId OA$ 3 +volutes v@'ljuts Kj$ 2 +vomit 'v0mIt J0%,L@% 22A,6A,15B +vomited 'v0mItId Jc%,Jd% 32A,6A,15B +vomiting 'v0mItIN Jb% 32A,6A,15B +vomits 'v0mIts Ja% 22A,6A,15B +voodoo 'vudu L@% 2 +voodooism 'vuduIz@m L@$ 4 +voracious v@'reIS@s OA% 3 +voraciously v@'reIS@slI Pu% 4 +voracity v@'r&sItI L@$ 4 +vortex 'vOteks K7% 2 +vortexes 'vOteksIz Kj% 3 +vortices 'vOtIsiz Kj% 3 +votaries 'v@Ut@rIz Kj$ 3 +votary 'v@Ut@rI K8$ 3 +vote v@Ut J2%,K6% 13A,6A,9,12B,13B,15B,25 +voted 'v@UtId Jc%,Jd% 23A,6A,9,12B,13B,15B,25 +voteless 'v@Utl@s OA$ 2 +voter 'v@Ut@R K6% 2 +voters 'v@Ut@z Kj% 2 +votes v@Uts Ja%,Kj% 13A,6A,9,12B,13B,15B,25 +voting 'v@UtIN Jb% 23A,6A,9,12B,13B,15B,25 +votive 'v@UtIv OA$ 2 +vouch vaUtS I1% 1 +vouched vaUtSt Ic%,Id% 1 +voucher 'vaUtS@R K6% 2 +vouchers 'vaUtS@z Kj% 2 +vouches 'vaUtSIz Ia% 2 +vouching 'vaUtSIN Ib% 2 +vouchsafe vaUtS'seIf H2% 26A,7A,12C +vouchsafed vaUtS'seIft Hc%,Hd% 26A,7A,12C +vouchsafes vaUtS'seIfs Ha% 26A,7A,12C +vouchsafing vaUtS'seIfIN Hb% 36A,7A,12C +vow vaU H0%,K6% 16A,7A,9 +vowed vaUd Hc%,Hd% 16A,7A,9 +vowel 'vaU@l K6% 2 +vowels 'vaU@lz Kj% 2 +vowing 'vaUIN Hb% 26A,7A,9 +vows vaUz Ha%,Kj% 16A,7A,9 +vox v0ks Ki$ 1 +vox populi ,v0ks 'p0pjUlaI Ki$ 4 +voyage 'voIIdZ I2%,K6% 22A,2C +voyaged 'voIIdZd Ic%,Id% 22A,2C +voyager 'voI@dZ@R K6% 3 +voyagers 'voI@dZ@z Kj% 3 +voyages 'voIIdZIz Ia%,Kj% 32A,2C +voyaging 'voIIdZIN Ib% 32A,2C +voyeur vwA'j3R K6% 2 +voyeurism vwA'j3rIzm L@% 4 +voyeuristic ,vwAj@'rIstIk OA% 4 +voyeuristically ,vwAj@'rIstIklI Pu% 5 +voyeurs vwA'j3z Kj% 2 +vs 'v3s@s Y~% 2 +vulcanite 'vVlk@naIt L@$ 3 +vulcanization ,vVlk@naI'zeISn M6$ 5 +vulcanizations ,vVlk@naI'zeISnz Mj$ 5 +vulcanize 'vVlk@naIz H2$ 36A +vulcanized 'vVlk@naIzd Hc$,Hd$ 36A +vulcanizes 'vVlk@naIzIz Ha$ 46A +vulcanizing 'vVlk@naIzIN Hb$ 46A +vulgar 'vVlg@R OA% 2 +vulgarian vVl'ge@rI@n K6$ 4 +vulgarians vVl'ge@rI@nz Kj$ 4 +vulgarism 'vVlg@rIz@m M6$ 4 +vulgarisms 'vVlg@rIz@mz Mj$ 4 +vulgarities vVl'g&rItIz Mj% 4 +vulgarity vVl'g&rItI M8% 4 +vulgarization ,vVlg@raI'zeISn L@% 5 +vulgarize 'vVlg@raIz H2% 36A +vulgarized 'vVlg@raIzd Hc%,Hd% 36A +vulgarizes 'vVlg@raIzIz Ha% 46A +vulgarizing 'vVlg@raIzIN Hb% 46A +vulgarly 'vVlg@lI Pu% 3 +vulnerabilities ,vVln@r@'bIlItIz Mj% 6 +vulnerability ,vVln@r@'bIlItI M8% 6 +vulnerable 'vVln@r@bl OA% 4 +vulpine 'vVlpaIn OA$ 2 +vulture 'vVltS@R K6% 2 +vultures 'vVltS@z Kj% 2 +vulva 'vVlv@ K6$ 2 +vulvas 'vVlv@z Kj$ 2 +vying 'vaIIN Ib% 23A +w 'dVblju Ki$ 3 +w's 'dVbljuz Kj$ 3 +wad w0d H4$,K6% 1 +wadded 'w0dId Hc$,Hd$ 2 +wadding 'w0dIN Hb$,L@% 2 +waddle 'w0dl I2%,Ki% 22A,2C +waddled 'w0dld Ic%,Id% 22A,2C +waddles 'w0dlz Ia% 22A,2C +waddling 'w0dlIN Ib% 22A,2C +wade weId J2% 12A,2C,6A +waded 'weIdId Jc%,Jd% 22A,2C,6A +wader 'weId@R K6% 2 +waders 'weId@z Kj% 2 +wades weIdz Ja% 12A,2C,6A +wadi 'w0dI K6$ 2 +wading 'weIdIN Jb% 22A,2C,6A +wadis 'w0dIz Kj$ 2 +wads w0dz Ha$,Kj% 1 +wafer 'weIf@R K6% 2 +wafers 'weIf@z Kj% 2 +waffle 'w0fl I2%,M6% 22A,2C +waffled 'w0fld Ic%,Id% 22A,2C +waffles 'w0flz Ia%,Mj% 22A,2C +waffling 'w0flIN Ib% 22A,2C +waft w0ft H0%,K6% 16A +wafted 'w0ftId Hc%,Hd% 26A +wafting 'w0ftIN Hb% 26A +wafts w0fts Ha%,Kj% 16A +wag w&g J4%,K6% 12A,2C,6A +wage weIdZ H2%,K6% 16A +wage-claim 'weIdZ-kleIm K6% 2 +wage-claims 'weIdZ-kleImz Kj% 2 +wage-earner 'weIdZ-3n@R K6% 3 +wage-earners 'weIdZ-3n@z Kj% 3 +wage-freeze 'weIdZ-friz K6% 2 +wage-freezes 'weIdZ-frizIz Kj% 3 +waged weIdZd Hc%,Hd% 16A +wager 'weIdZ@R J0%,K6% 22A,6A,11,12C,14 +wagered 'weIdZ@d Jc%,Jd% 22A,6A,11,12C,14 +wagering 'weIdZ@rIN Jb% 32A,6A,11,12C,14 +wagers 'weIdZ@z Ja%,Kj% 22A,6A,11,12C,14 +wages 'weIdZIz Ha%,Kj% 26A +wagged w&gd Jc%,Jd% 12A,2C,6A +waggeries 'w&g@rIz Mj$ 3 +waggery 'w&g@rI M8$ 3 +wagging 'w&gIN Jb% 22A,2C,6A +waggish 'w&gIS OA$ 2 +waggishly 'w&gISlI Pu$ 3 +waggishness 'w&gISn@s L@$ 3 +waggle 'w&gl J2% 2 +waggled 'w&gld Jc%,Jd% 2 +waggles 'w&glz Ja% 2 +waggling 'w&glIN Jb% 2 +waggon 'w&g@n K6% 2 +waggoner 'w&g@n@R K6% 3 +waggoners 'w&g@n@z Kj% 3 +waggons 'w&g@nz Kj% 2 +waging 'weIdZIN Hb% 26A +wagon-lit ,v&g0n-'li Ki$ 3 +wagons-lit ,v&g0n-'li Kj$ 3 +wags w&gz Ja%,Kj% 12A,2C,6A +wagtail 'w>eIl K6% 2 +wagtails 'w>eIlz Kj% 2 +waif weIf K6% 1 +waifs weIfs Kj% 1 +wail weIl J0%,K6% 12A,2B,2C,6A +wailed weIld Jc%,Jd% 12A,2B,2C,6A +wailing 'weIlIN Jb% 22A,2B,2C,6A +wails weIlz Ja%,Kj% 12A,2B,2C,6A +wain weIn K6$ 1 +wains weInz Kj$ 1 +wainscot 'weInsk@t K6% 2 +wainscoted 'weInsk@tId OA$ 3 +wainscots 'weInsk@ts Kj$ 2 +waist weIst K6% 1 +waist-deep weIst-'dip OA%,Pu% 2 +waist-high weIst-'haI OA%,Pu% 2 +waistband 'weIstb&nd K6% 2 +waistbands 'weIstb&ndz Kj% 2 +waistcoat 'weIsk@Ut K6% 2 +waistcoats 'weIsk@Uts Kj% 2 +waistline 'weIstlaIn K6% 2 +waistlines 'weIstlaInz Kj% 2 +waists weIsts Kj% 1 +wait weIt J0%,M6% 12A,2B,2C,3A,4A,6A,14 +waited 'weItId Jc%,Jd% 22A,2B,2C,3A,4A,6A,14 +waiter 'weIt@R K6% 2 +waiters 'weIt@z Kj% 2 +waiting 'weItIN Jb% 22A,2B,2C,3A,4A,6A,14 +waiting-list 'weItIN-lIst K6% 3 +waiting-lists 'weItIN-lIsts Kj% 3 +waiting-room 'weItIN-rum K6% 3 +waiting-rooms 'weItIN-rumz Kj% 3 +waitress 'weItrIs K7% 2 +waitresses 'weItrIsIz Kj% 3 +waits weIts Ja%,Mj% 12A,2B,2C,3A,4A,6A,14 +waive weIv H2% 16A +waived weIvd Hc%,Hd% 16A +waiver 'weIv@R K6% 2 +waivers 'weIv@z Kj% 2 +waives weIvz Ha% 16A +waiving 'weIvIN Hb% 26A +wake weIk J2%,K6% 12A,2C,4B,6A,15B +waked weIkt Jc%,Jd% 12A,2C,4B,6A,15B +wakeful 'weIkf@l OA% 2 +wakefulness 'weIkf@ln@s L@% 3 +waken 'weIk@n J0% 22A,6A +wakened 'weIk@nd Jc%,Jd% 22A,6A +wakening 'weIk@nIN Jb% 32A,6A +wakens 'weIk@nz Ja% 22A,6A +wakes weIks Ja%,Kj% 12A,2C,4B,6A,15B +waking 'weIkIN Jb%,OA% 22A,2C,4B,6A,15B +wale weIl K6$ 1 +wales weIlz Kj$ 1 +walk wOk J0%,K6% 12A,2B,2C,6A,15A,15B +walkabout 'wOk@baUt K6% 3 +walkabouts 'wOk@baUts Kj$ 3 +walkaway 'wOk@weI K6$ 3 +walkaways 'wOk@weIz Kj$ 3 +walked wOkt Jc%,Jd% 12A,2B,2C,6A,15A,15B +walker 'wOk@R K6% 2 +walkers 'wOk@z Kj% 2 +walkie-talkie ,wOkI-'tOkI K6% 4 +walkie-talkies ,wOkI-'tOkIz Kj% 4 +walking 'wOkIN Jb%,L@% 22A,2B,2C,6A,15A,15B +walkout 'wOkaUt K6% 2 +walkouts 'wOkaUts Kj% 2 +walkover 'wOk@Uv@R K6% 3 +walkovers 'wOk@Uv@z Kj% 3 +walks wOks Ja%,Kj% 12A,2B,2C,6A,15A,15B +wall wOl H0%,K6% 115B +wall-eyed ,wOl-'aId OA$ 2 +wall-painting 'wOl-peIntIN K6% 3 +wall-paintings 'wOl-peIntINz Kj% 3 +wallabies 'w0l@bIz Kj% 3 +wallaby 'w0l@bI K8% 3 +wallah 'w0l@ K6$ 2 +wallahs 'w0l@z Kj$ 2 +walled wOld Hc%,Hd% 115B +wallet 'w0lIt K6% 2 +wallets 'w0lIts Kj% 2 +wallflower 'wOlflaU@R K6% 3 +wallflowers 'wOlflaU@z Kj% 3 +walling 'wOlIN Hb% 215B +wallop 'w0l@p H0%,K6% 2 +walloped 'w0l@pt Hc%,Hd% 2 +walloping 'w0l@pIN Hb%,OA% 3 +wallops 'w0l@ps Ha%,Kj% 2 +wallow 'w0l@U I0%,K6% 22A,2C +wallowed 'w0l@Ud Ic%,Id% 22A,2C +wallowing 'w0l@UIN Ib% 32A,2C +wallows 'w0l@Uz Ia%,Kj% 22A,2C +wallpaper 'wOlpeIp@R L@% 3 +walls wOlz Ha%,Kj% 115B +walnut 'wOlnVt M6% 2 +walnuts 'wOlnVts Mj% 2 +walrus 'wOlr@s K7% 2 +walruses 'wOlr@sIz Kj% 3 +waltz wOls J1%,K7% 12A,2C,15A +waltzed wOlst Jc%,Jd% 12A,2C,15A +waltzes 'wOlsIz Ja%,Kj% 22A,2C,15A +waltzing 'wOlsIN Jb% 22A,2C,15A +wampum 'w0mp@m L@$ 2 +wan w0n OE% 1 +wand w0nd K6% 1 +wander 'w0nd@R J0% 22A,2B,2C,6A +wandered 'w0nd@d Jc%,Jd% 22A,2B,2C,6A +wanderer 'w0nd@r@R K6% 3 +wanderers 'w0nd@r@z Kj% 3 +wandering 'w0nd@rIN Jb% 32A,2B,2C,6A +wanderings 'w0nd@rINz Kj% 3 +wanderlust 'w0nd@lVst L@% 3 +wanders 'w0nd@z Ja% 22A,2B,2C,6A +wands w0ndz Kj% 1 +wane weIn I2%,K6% 12A +waned weInd Ic%,Id% 12A +wanes weInz Ia%,Kj$ 12A +wangle 'w&Ngl H2%,K6% 26A +wangled 'w&Ngld Hc%,Hd% 26A +wangles 'w&Nglz Ha%,Kj% 26A +wangling 'w&NglIN Hb% 26A +waning 'weInIN Ib% 22A +wank w&Nk I0%,K6% 12A +wanked w&Nkt Ic%,Id% 12A +wanking 'w&NkIN Ib% 22A +wanks w&Nks Ia%,Kj% 12A +wanly 'w0nlI Pu% 2 +wanna 'w0n@ Gh$ 2 +wanner 'w0n@R Or$ 2 +wanness 'w0n+n@s L@$ 2 +wannest 'w0nIst Os$ 2 +want w0nt J0*,M6% 12A,3A,6A,6E,7A,17,19B,24A +want-ad 'w0nt-&d K6$ 2 +want-ads 'w0nt-&dz Kj$ 2 +wanted 'w0ntId Jc*,Jd* 22A,3A,6A,6E,7A,17,19B,24A +wanting 'w0ntIN Jb%,T-% 22A,3A,6A,6E,7A,17,19B,24A +wanton 'w0nt@n I0$,K6%,OA% 22A,2C +wantoned 'w0nt@nd Ic$,Id$ 22A,2C +wantoning 'w0nt@nIN Ib$ 32A,2C +wantonly 'w0nt@nlI Pu% 3 +wantonness 'w0nt@n+n@s L@% 3 +wantons 'w0nt@nz Ia$,Kj% 22A,2C +wants w0nts Ja%,Mj% 12A,3A,6A,6E,7A,17,19B,24A +war wOR I4%,M6* 1 +war-babies 'wO-beIbIz Kj% 3 +war-baby 'wO-beIbI K8% 3 +war-bride 'wO-braId K6% 2 +war-brides 'wO-braIdz Kj% 2 +war-cloud 'wO-klaUd K6% 2 +war-clouds 'wO-klaUdz Kj% 2 +war-cries 'wO-kraIz Kj% 2 +war-cry 'wO-kraI K8% 2 +war-dance 'wO-dAns K6% 2 +war-dances 'wO-dAnsIz Kj% 3 +war-god 'wO-g0d K6% 2 +war-gods 'wO-g0dz Kj% 2 +war-torn 'wO-tOn OA% 2 +war-widow 'wO-wId@U K6% 3 +war-widows 'wO-wId@Uz Kj% 3 +warble 'wObl J2%,K6% 22A,2C,6A +warbled 'wObld Jc%,Jd% 22A,2C,6A +warbler 'wObl@R K6% 2 +warblers 'wObl@z Kj% 2 +warbles 'wOblz Ja%,Kj% 22A,2C,6A +warbling 'wOblIN Jb% 22A,2C,6A +ward wOd H0%,M6% 115B +warded 'wOdId Hc%,Hd% 215B +warden 'wOdn K6% 2 +wardens 'wOdnz Kj% 2 +warder 'wOd@R K6% 2 +warders 'wOd@z Kj% 2 +warding 'wOdIN Hb% 215B +wardress 'wOdrIs K7$ 2 +wardresses 'wOdrIsIz Kj$ 3 +wardrobe 'wOdr@Ub K6% 2 +wardrobes 'wOdr@Ubz Kj% 2 +wardroom 'wOdrUm K6% 2 +wardrooms 'wOdrUmz Kj% 2 +wards wOdz Ha%,Mj% 115B +ware we@R H2$,K6% 16A +wared we@d Hc$,Hd$ 16A +warehouse 'we@haUs K6% 2 +warehouses 'we@haUzIz Kj% 3 +warehousing 'we@haUzIN L@% 3 +wares we@z Ha$,Kj% 16A +warfare 'wOfe@R L@% 2 +warhead 'wOhed K6% 2 +warheads 'wOhedz Kj% 2 +warhorse 'wOhOs K6% 2 +warhorses 'wOhOsIz Kj% 3 +warier 'we@rI@R Or% 3 +wariest 'we@rIIst Os% 3 +warily 'we@rIlI Pu% 3 +wariness 'we@rIn@s L@% 3 +waring 'we@rIN Hb$ 26A +warlike 'wOlaIk OA% 2 +warlord 'wOlOd K6% 2 +warlords 'wOlOdz Kj% 2 +warm wOm J0%,OC% 12A,2C,6A,15B +warm-blooded wOm-'blVdId OA% 3 +warm-hearted wOm-'hAtId OA% 3 +warmed wOmd Jc%,Jd% 12A,2C,6A,15B +warmer 'wOm@R K6%,Or% 2 +warmers 'wOm@z Kj% 2 +warmest 'wOmIst Os% 2 +warming 'wOmIN Jb% 22A,2C,6A,15B +warming-pan 'wOmIN-p&n K6% 3 +warming-pans 'wOmIN-p&nz Kj% 3 +warmly 'wOmlI Pu% 2 +warmonger 'wOmVNg@R K6% 3 +warmongers 'wOmVNg@z Kj% 3 +warms wOmz Ja% 12A,2C,6A,15B +warmth wOmT L@% 1 +warn wOn H0% 16A,11,14,15B,17 +warned wOnd Hc%,Hd% 16A,11,14,15B,17 +warning 'wOnIN Hb%,M6%,OA% 26A,11,14,15B,17 +warnings 'wOnINz Mj% 2 +warns wOnz Ha% 16A,11,14,15B,17 +warp wOp J0%,K6% 12A,6A +warpaint 'wOpeInt L@% 2 +warpath 'wOpAT K6% 2 +warpaths 'wOpADz Kj% 2 +warped wOpt Jc%,Jd% 12A,6A +warping 'wOpIN Jb% 22A,6A +warps wOps Ja%,Kj% 12A,6A +warrant 'w0r@nt H0%,M6% 26A,9,25 +warranted 'w0r@ntId Hc%,Hd% 36A,9,25 +warrantee ,w0r@n'ti K6$ 3 +warrantees ,w0r@n'tiz Kj$ 3 +warranties 'w0r@ntIz Kj% 3 +warranting 'w0r@ntIN Hb% 36A,9,25 +warrantor 'w0r@ntOR K6$ 3 +warrantors 'w0r@ntOz Kj$ 3 +warrants 'w0r@nts Ha%,Mj% 26A,9,25 +warranty 'w0r@ntI K8% 3 +warred wOd Ic%,Id% 1 +warren 'w0r@n K6% 2 +warrens 'w0r@nz Kj% 2 +warring 'wOrIN Ib% 2 +warrior 'w0rI@R K6% 3 +warriors 'w0rI@z Kj% 3 +wars wOz Ia%,Mj% 1 +warship 'wOSIp K6% 2 +warships 'wOSIps Kj% 2 +wart wOt K6% 1 +warthog 'wOth0g K6% 2 +warthogs 'wOth0gz Kj% 2 +wartime 'wOtaIm L@% 2 +warts wOts Kj% 1 +wary 'we@rI OD% 2 +was w0z Gc*,Ic% 11 +wash w0S J1%,M7% 12A,2C,6A,15A,15B,22 +wash- w0S- U-% 1 +wash-drawing 'w0S-drOIN K6$ 3 +wash-drawings 'w0S-drOINz Kj$ 3 +wash-hand-basin 'w0S-h&nd-beIsn K6$ 4 +wash-hand-basins 'w0S-h&nd-beIsnz Kj$ 4 +wash-hand-stand 'w0S-h&nd-st&nd K6$ 3 +wash-hand-stands 'w0S-h&nd-st&ndz Kj$ 3 +wash-house 'w0S-haUs K6% 2 +wash-houses 'w0S-haUzIz Kj% 3 +wash-leather 'w0S-leD@R M6% 3 +wash-leathers 'w0S-leD@z Mj% 3 +washable 'w0S@bl OA% 3 +washbasin 'w0SbeIsn K6% 3 +washbasins 'w0SbeIsnz Kj% 3 +washboard 'w0SbOd K6% 2 +washboards 'w0SbOdz Kj% 2 +washbowl 'w0Sb@Ul K6% 2 +washbowls 'w0Sb@Ulz Kj% 2 +washcloth 'w0Skl0T K6% 2 +washcloths 'w0Skl0Ts Kj% 2 +washday 'w0SdeI K6% 2 +washdays 'w0SdeIz Kj% 2 +washed w0St Jc%,Jd% 12A,2C,6A,15A,15B,22 +washer 'w0S@R K6% 2 +washers 'w0S@z Kj% 2 +washerwoman 'w0S@wUm@n Ki% 4 +washerwomen 'w0S@wImIn Kj% 4 +washes 'w0SIz Ja%,Mj% 22A,2C,6A,15A,15B,22 +washing 'w0SIN Jb%,L@% 22A,2C,6A,15A,15B,22 +washing-day 'w0SIN-deI K6% 3 +washing-days 'w0SIN-deIz Kj% 3 +washing-machine 'w0SIN-m@Sin K6% 4 +washing-machines 'w0SIN-m@Sinz Kj% 4 +washing-up ,w0SIN-'Vp M6% 3 +washing-ups ,w0SIN-'Vps Mj$ 3 +washout 'w0SaUt K6% 2 +washouts 'w0SaUts Kj$ 2 +washroom 'w0Srum K6% 2 +washrooms 'w0Srumz Kj% 2 +washstand 'w0S+st&nd K6% 2 +washstands 'w0S+st&ndz Kj% 2 +washtub 'w0StVb K6% 2 +washtubs 'w0StVbz Kj% 2 +washy 'w0SI OA$ 2 +wasn't 'w0znt Gg% 2 +wasp w0sp K6% 1 +wasp-waisted w0sp-'weIstId OA% 3 +waspish 'w0spIS OA% 2 +wasps w0sps Kj% 1 +wassail 'w0seIl K6$ 2 +wassails 'w0seIlz Kj$ 2 +wastage 'weIstIdZ L@% 2 +waste weIst J2%,M6%,OA% 12A,2C,6A,14 +waste-paper-basket weIst-'peIp@-b&skIt K6% 5 +waste-paper-baskets weIst-'peIp@-b&skIts Kj% 5 +waste-pipe 'weIst-paIp K6% 2 +waste-pipes 'weIst-paIps Kj% 2 +wastebasket 'weIstbAskIt K6% 3 +wastebaskets 'weIstbAskIts Kj% 3 +wastebin 'weIstbIn K6% 2 +wastebins 'weIstbInz Kj% 2 +wasted 'weIstId Jc%,Jd% 22A,2C,6A,14 +wasteful 'weIstf@l OA% 2 +wastefully 'weIstf@lI Pu% 3 +wasteland 'weIstl&nd K6% 2 +wastelands 'weIstl&ndz Kj$ 2 +waster 'weIst@R K6$ 2 +wasters 'weIst@z Kj$ 2 +wastes weIsts Ja%,Mj% 12A,2C,6A,14 +wasting 'weIstIN Jb% 22A,2C,6A,14 +wastrel 'weIstr@l K6$ 2 +wastrels 'weIstr@lz Kj$ 2 +watch w0tS J1%,M7% 12A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watch-chain 'w0tS-tSeIn K6% 2 +watch-chains 'w0tS-tSeInz Kj% 2 +watch-glass 'w0tS-glAs K7% 2 +watch-glasses 'w0tS-glAsIz Kj$ 3 +watch-guard 'w0tS-gAd K6$ 2 +watch-guards 'w0tS-gAdz Kj$ 2 +watch-key 'w0tS-ki K6$ 2 +watch-keys 'w0tS-kiz Kj$ 2 +watchdog 'w0tSd0g K6% 2 +watchdogs 'w0tSd0gz Kj% 2 +watched w0tSt Jc%,Jd% 12A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watcher 'w0tS@R K6% 2 +watchers 'w0tS@z Kj% 2 +watches 'w0tSIz Ja%,Mj% 22A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watchful 'w0tSf@l OA% 2 +watchfully 'w0tSf@lI Pu% 3 +watchfulness 'w0tSf@ln@s L@% 3 +watching 'w0tSIN Jb% 22A,2B,2C,3A,4A,6A,8,10,15A,18A,19A +watchmaker 'w0tSmeIk@R K6% 3 +watchmakers 'w0tSmeIk@z Kj% 3 +watchman 'w0tSm@n Ki% 2 +watchmen 'w0tSm@n Kj% 2 +watchtower 'w0tStaU@R K6% 3 +watchtowers 'w0tStaU@z Kj% 3 +watchword 'w0tSw3d K6% 2 +watchwords 'w0tSw3dz Kj% 2 +water 'wOt@R J0%,M6* 22A,6A,15B +water-biscuit 'wOt@-bIskIt K6% 4 +water-biscuits 'wOt@-bIskIts Kj% 4 +water-blister 'wOt@-blIst@R K6$ 4 +water-blisters 'wOt@-blIst@z Kj$ 4 +water-bottle 'wOt@-b0tl K6% 4 +water-bottles 'wOt@-b0tlz Kj% 4 +water-buffalo 'wOt@-bVf@l@U K6% 5 +water-buffalos 'wOt@-bVf@l@Uz Kj$ 5 +water-butt 'wOt@-bVt K6% 3 +water-butts 'wOt@-bVts Kj% 3 +water-cart 'wOt@-kAt K6% 3 +water-carts 'wOt@-kAts Kj% 3 +water-closet 'wOt@-kl0zIt K6% 4 +water-closets 'wOt@-kl0zIts Kj% 4 +water-finder 'wOt@-faInd@R K6$ 4 +water-finders 'wOt@-faInd@z Kj$ 4 +water-glass 'wOt@-glAs L@$ 3 +water-hole 'wOt@-h@Ul K6% 3 +water-holes 'wOt@-h@Ulz Kj% 3 +water-ice 'wOt@r-aIs M6% 3 +water-ices 'wOt@r-aIsIz Mj% 4 +water-jacket 'wOt@-dZ&kIt K6$ 4 +water-jackets 'wOt@-dZ&kIts Kj$ 4 +water-level 'wOt@-levl K6% 4 +water-levels 'wOt@-levlz Kj% 4 +water-lilies 'wOt@-lIlIz Kj% 4 +water-lily 'wOt@-lIlI K8% 4 +water-line 'wOt@-laIn K6% 3 +water-lines 'wOt@-laInz Kj$ 3 +water-main 'wOt@-meIn K6% 3 +water-mains 'wOt@-meInz Kj% 3 +water-nymph 'wOt@-nImf K6% 3 +water-nymphs 'wOt@-nImfs Kj% 3 +water-polo 'wOt@-p@Ul@U L@% 4 +water-power 'wOt@-paU@R L@% 4 +water-rat 'wOt@-r&t K6% 3 +water-rate 'wOt@-reIt K6% 3 +water-rates 'wOt@-reIts Kj% 3 +water-rats 'wOt@-r&ts Kj% 3 +water-skiing 'wOt@-skiIN L@% 4 +water-skin 'wOt@-skIn K6$ 3 +water-skins 'wOt@-skInz Kj$ 3 +water-softener 'wOt@-s0fn@R M6% 4 +water-softeners 'wOt@-s0fn@z Mj% 4 +water-spaniel 'wOt@-sp&nI@l K6$ 5 +water-spaniels 'wOt@-sp&nI@lz Kj$ 5 +water-supplies 'wOt@-s@plaIz Kj% 4 +water-supply 'wOt@-s@plaI K8% 4 +water-tower 'wOt@-taU@R K6% 4 +water-towers 'wOt@-taU@z Kj% 4 +water-vole 'wOt@-v@Ul K6% 3 +water-voles 'wOt@-v@Ulz Kj% 3 +water-waggon 'wOt@-w&g@n K6% 4 +water-waggons 'wOt@-w&g@nz Kj% 4 +water-wagon 'wOt@-w&g@n K6$ 4 +water-wagons 'wOt@-w&g@nz Kj$ 4 +water-wheel 'wOt@-wil K6% 3 +water-wheels 'wOt@-wilz Kj% 3 +water-wings 'wOt@-wINz Kj% 3 +water-worn 'wOt@-wOn OA% 3 +waterbird 'wOt@b3d K6% 3 +waterbirds 'wOt@b3dz Kj% 3 +waterborne 'wOt@bOn OA% 3 +watercannon 'wOt@k&n@n K6% 4 +watercannons 'wOt@k&n@nz Kj$ 4 +waterchute 'wOt@Sut K6% 3 +waterchutes 'wOt@Suts Kj% 3 +watercolour 'wOt@kVl@R M6% 4 +watercolourist 'wOt@kVl@rIst K6% 5 +watercolourists 'wOt@kVl@rIsts Kj% 5 +watercolours 'wOt@kVl@z Mj% 4 +watercourse 'wOt@kOs K6% 3 +watercourses 'wOt@kOsIz Kj% 4 +watercress 'wOt@kres L@% 3 +watered 'wOt@d Jc%,Jd% 22A,6A,15B +waterfall 'wOt@fOl K6% 3 +waterfalls 'wOt@fOlz Kj% 3 +waterfowl 'wOt@faUl K6% 3 +waterfowls 'wOt@faUlz Kj$ 3 +waterfront 'wOt@frVnt K6% 3 +waterfronts 'wOt@frVnts Kj$ 3 +waterhen 'wOt@hen K6% 3 +waterhens 'wOt@henz Kj% 3 +waterhyacinth 'wOt@haI@sInT K6$ 5 +waterhyacinths 'wOt@haI@sInTs Kj$ 5 +waterier 'wOt@rI@R Or$ 4 +wateriest 'wOt@rIIst Os$ 4 +watering 'wOt@rIN Jb% 32A,6A,15B +watering-can 'wOt@rIN-k&n K6% 4 +watering-cans 'wOt@rIN-k&nz Kj% 4 +watering-cart 'wOt@rIN-kAt K6% 4 +watering-carts 'wOt@rIN-kAts Kj% 4 +waterless 'wOt@lIs OA% 3 +waterlogged 'wOt@l0gd OA% 3 +waterman 'wOt@m@n Ki% 3 +watermark 'wOt@mAk K6% 3 +watermarks 'wOt@mAks Kj% 3 +watermelon 'wOt@mel@n K6% 4 +watermelons 'wOt@mel@nz Kj% 4 +watermen 'wOt@m@n Kj% 3 +watermill 'wOt@mIl K6% 3 +watermills 'wOt@mIlz Kj% 3 +waterproof 'wOt@pruf H0%,K6%,OA% 3 +waterproofed 'wOt@pruft Hc%,Hd% 3 +waterproofing 'wOt@prufIN Hb% 4 +waterproofs 'wOt@prufs Ha%,Kj% 3 +waters 'wOt@z Ja%,Mj% 22A,6A,15B +watershed 'wOt@Sed K6% 3 +watersheds 'wOt@Sedz Kj% 3 +waterside 'wOt@saId K6% 3 +watersides 'wOt@saIdz Kj$ 3 +waterspout 'wOt@spaUt K6% 3 +waterspouts 'wOt@spaUts Kj% 3 +watertable 'wOt@teIbl K6% 4 +watertables 'wOt@teIblz Kj$ 4 +watertight 'wOt@taIt OA% 3 +waterway 'wOt@weI K6% 3 +waterways 'wOt@weIz Kj% 3 +waterworks 'wOt@w3ks K9% 3 +watery 'wOt@rI OD% 3 +watt w0t K6% 1 +wattage 'w0tIdZ M6% 2 +wattages 'w0tIdZIz Mj$ 3 +wattle 'w0tl M6% 2 +wattles 'w0tlz Mj$ 2 +watts w0ts Kj% 1 +wave weIv J2%,K6% 12A,3A,6A,12A,13A,15A,15B,16A +waved weIvd Jc%,Jd% 12A,3A,6A,12A,13A,15A,15B,16A +wavelength 'weIvleNT K6% 2 +wavelengths 'weIvleNTs Kj% 2 +waver 'weIv@R I0% 22A,2C +wavered 'weIv@d Ic%,Id% 22A,2C +waverer 'weIv@r@R K6$ 3 +waverers 'weIv@r@z Kj$ 3 +wavering 'weIv@rIN Ib% 32A,2C +wavers 'weIv@z Ia% 22A,2C +waves weIvz Ja%,Kj% 12A,3A,6A,12A,13A,15A,15B,16A +wavier 'weIvI@R Or$ 3 +waviest 'weIvIIst Os$ 3 +waving 'weIvIN Jb% 22A,3A,6A,12A,13A,15A,15B,16A +wavy 'weIvI OD% 2 +wax w&ks J1%,M7% 12A,2D,6A +wax-chandler 'w&ks-tSAndl@R K6$ 3 +wax-chandlers 'w&ks-tSAndl@z Kj$ 3 +wax-paper 'w&ks-peIp@R K6% 3 +wax-papers 'w&ks-peIp@z Kj$ 3 +waxed w&kst Jc%,Jd% 12A,2D,6A +waxen 'w&ks@n OA% 2 +waxes 'w&ksIz Ja%,Mj% 22A,2D,6A +waxier 'w&ksI@R Or$ 3 +waxiest 'w&ksIIst Os$ 3 +waxing 'w&ksIN Jb% 22A,2D,6A +waxwork 'w&ksw3k K6% 2 +waxworks 'w&ksw3ks Kj% 2 +waxy 'w&ksI OD% 2 +way weI M6*,Pu* 1 +way-out 'weI-aUt OA% 2 +waybill 'weIbIl K6% 2 +waybills 'weIbIlz Kj$ 2 +wayfarer 'weIfe@r@R K6% 3 +wayfarers 'weIfe@r@z Kj% 3 +wayfaring 'weIfe@rIN OA% 3 +waylaid ,weI'leId Hc%,Hd% 26A +waylay ,weI'leI H5% 26A +waylaying ,weI'leIIN Hb% 36A +waylays ,weI'leIz Ha% 26A +ways weIz Mj% 1 +wayside 'weIsaId K6% 2 +waysides 'weIsaIdz Kj% 2 +wayward 'weIw@d OA% 2 +we wi Qx* 1 +we'd wid Gf% 1 +we'll wil Gf% 1 +we're wI@R Gf% 1 +we've wiv Gf% 1 +weak wik OC% 1 +weak-kneed wik-'nid OA% 2 +weaken 'wik@n J0% 22A,6A +weakened 'wik@nd Jc%,Jd% 22A,6A +weakening 'wik@nIN Jb% 32A,6A +weakens 'wik@nz Ja% 22A,6A +weaker 'wik@R Or% 2 +weakest 'wikIst Os% 2 +weaklier 'wiklI@R Or$ 3 +weakliest 'wiklIIst Os$ 3 +weakling 'wiklIN K6% 2 +weaklings 'wiklINz Kj% 2 +weakly 'wiklI OD%,Pu% 2 +weakness 'wikn@s M7% 2 +weaknesses 'wikn@sIz Mj% 3 +weal wil M6$ 1 +weald wild K6$ 1 +wealds wildz Kj$ 1 +weals wilz Mj$ 1 +wealth welT L@% 1 +wealthier 'welTI@R Or% 3 +wealthiest 'welTIIst Os% 3 +wealthily 'welTIlI Pu% 3 +wealthy 'welTI OD% 2 +wean win H0% 16A,14 +weaned wind Hc%,Hd% 16A,14 +weaning 'winIN Hb% 26A,14 +weans winz Ha% 16A,14 +weapon 'wep@n K6% 2 +weaponless 'wep@nl@s OA$ 3 +weapons 'wep@nz Kj% 2 +wear we@R J5%,L@% 12A,2B,2C,2D,6A,15A,15B,22 +wearable 'we@r@bl OA% 3 +wearer 'we@r@R K6% 2 +wearers 'we@r@z Kj% 2 +wearied 'wI@rId Jc%,Jd% 22A,3A,6A,14 +wearier 'wI@rI@R Or% 3 +wearies 'wI@rIz Ja% 22A,3A,6A,14 +weariest 'wI@rIIst Os% 3 +wearily 'wI@rIlI Pu% 3 +weariness 'wI@rIn@s L@% 3 +wearing 'we@rIN Jb%,OA% 22A,2B,2C,2D,6A,15A,15B,22 +wearisome 'wI@rIs@m OA% 3 +wears we@z Ja% 12A,2B,2C,2D,6A,15A,15B,22 +weary 'wI@rI J3%,OD% 22A,3A,6A,14 +wearying 'wI@rIIN Jb% 32A,3A,6A,14 +weasel 'wizl K6% 2 +weasels 'wizlz Kj% 2 +weather 'weD@R J0%,M6% 22A,6A +weather-beaten 'weD@-bitn OA% 4 +weather-bound 'weD@-baUnd OA% 3 +weather-bureau 'weD@-bjU@r@U K6% 4 +weather-bureaus 'weD@-bjU@r@Uz Kj$ 4 +weather-chart 'weD@-tSAt K6% 3 +weather-charts 'weD@-tSAts Kj% 3 +weather-glass 'weD@-glAs K7$ 3 +weather-glasses 'weD@-glAsIz Kj$ 4 +weather-map 'weD@-m&p K6% 3 +weather-maps 'weD@-m&ps Kj% 3 +weather-ship 'weD@-SIp K6$ 3 +weather-ships 'weD@-SIps Kj$ 3 +weather-station 'weD@-steISn K6% 4 +weather-stations 'weD@-steISnz Kj% 4 +weather-vane 'weD@-veIn K6% 3 +weather-vanes 'weD@-veInz Kj% 3 +weatherboarding 'weD@bOdIN L@% 4 +weatherboards 'weD@bOdz Kj% 3 +weathercock 'weD@k0k K6% 3 +weathercocks 'weD@k0ks Kj% 3 +weathered 'weD@d Jc%,Jd% 22A,6A +weathering 'weD@rIN Jb% 32A,6A +weatherman 'weD@m&n Ki% 3 +weathermen 'weD@men Kj% 3 +weatherproof 'weD@pruf OA% 3 +weathers 'weD@z Ja%,Mj% 22A,6A +weave wiv J5%,K6% 12A,2C,6A,15A,15B +weaver 'wiv@R K6% 2 +weaverbird 'wiv@b3d K6% 3 +weaverbirds 'wiv@b3dz Kj% 3 +weavers 'wiv@z Kj% 2 +weaves wivz Ja%,Kj% 12A,2C,6A,15A,15B +weaving 'wivIN Jb% 22A,2C,6A,15A,15B +web web K6% 1 +web-footed web-'fUtId OA% 3 +web-toed 'web-t@Ud OA% 2 +webbed webd OA% 1 +webbing 'webIN L@% 2 +webs webz Kj% 1 +wed wed J4%,Jc%,Jd% 12A,6A,14 +wedded 'wedId Jc%,Jd% 22A,6A,14 +wedding 'wedIN Jb%,K6% 22A,6A,14 +wedding-cake 'wedIN-keIk M6% 3 +wedding-cakes 'wedIN-keIks Mj% 3 +wedding-ring 'wedIN-rIN K6% 3 +wedding-rings 'wedIN-rINz Kj% 3 +weddings 'wedINz Kj% 2 +wedge wedZ H2%,K6% 16A,15A,22 +wedged wedZd Hc%,Hd% 16A,15A,22 +wedges 'wedZIz Ha%,Kj% 26A,15A,22 +wedging 'wedZIN Hb% 26A,15A,22 +wedlock 'wedl0k L@% 2 +weds wedz Ja% 12A,6A,14 +wee wi I5%,M6%,OA% 1 +wee-wee 'wi-wi M6% 2 +wee-wees 'wi-wiz Mj% 2 +weed wid Ic%,Id%,J0%,K6% 12A,6A,15B +weeded 'widId Jc%,Jd% 22A,6A,15B +weedier 'widI@R Or% 3 +weediest 'widIIst Os% 3 +weeding 'widIN Jb% 22A,6A,15B +weedkiller 'widkIl@R M6% 3 +weedkillers 'widkIl@z Mj% 3 +weeds widz Ja%,Kj% 12A,6A,15B +weedy 'widI OD% 2 +weeing 'wiIN Ib% 2 +week wik K6* 1 +weekday 'wikdeI K6% 2 +weekdays 'wikdeIz Kj% 2 +weekend wik'end I0$,K6% 2 +weekended wik'endId Ic$,Id$ 3 +weekender wik'end@R K6$ 3 +weekenders wik'end@z Kj$ 3 +weekending wik'endIN Ib$ 3 +weekends wik'endz Ia$,Kj% 2 +weeklies 'wiklIz Kj% 2 +weekly 'wiklI K8%,OA%,Pu% 2 +weeks wiks Kj% 1 +weenier 'winI@R Or% 3 +weeniest 'winIIst Os% 3 +weeny 'winI OD% 2 +weep wip J5% 12A,2B,2C,3A,4B,6A +weeping 'wipIN Jb%,OA% 22A,2B,2C,3A,4B,6A +weeps wips Ja% 12A,2B,2C,3A,4B,6A +wees wiz Ia%,Mj$ 1 +weevil 'wivIl K6% 2 +weevils 'wivIlz Kj% 2 +weft weft K6% 1 +wefts wefts Kj$ 1 +weigh weI J0% 12B,2C,3A,6A,14,15B +weighbridge 'weIbrIdZ K6% 2 +weighbridges 'weIbrIdZIz Kj% 3 +weighed weId Jc%,Jd% 12B,2C,3A,6A,14,15B +weighing 'weIIN Jb% 22B,2C,3A,6A,14,15B +weighing-machine 'weIIN-m@Sin K6% 4 +weighing-machines 'weIIN-m@Sinz Kj% 4 +weighs weIz Ja% 12B,2C,3A,6A,14,15B +weight weIt H0$,M6% 16A +weighted 'weItId Hc$,Hd% 26A +weightier 'weItI@R Or% 3 +weightiest 'weItIIst Os% 3 +weightily 'weItIlI Pu% 3 +weightiness 'weItIn@s L@$ 3 +weighting 'weItIN Hb$ 26A +weightless 'weItl@s OA% 2 +weightlessness 'weItl@sn@s L@% 3 +weightlifting 'weItlIftIN L@% 3 +weights weIts Ha$,Mj% 16A +weighty 'weItI OD% 2 +weir wI@R K6% 1 +weird wI@d OC% 1 +weirder 'wI@d@R Or% 2 +weirdest 'wI@dIst Os% 2 +weirdie 'wI@dI K6$ 2 +weirdies 'wI@dIz Kj$ 2 +weirdly 'wI@dlI Pu% 2 +weirdness 'wI@dn@s L@% 2 +weirs wI@z Kj% 1 +welcome 'welk@m H2%,K6%,OA% 26A,15A +welcomed 'welk@md Hc%,Hd% 26A,15A +welcomes 'welk@mz Ha%,Kj% 26A,15A +welcoming 'welk@mIN Hb% 36A,15A +weld weld J0%,K6$ 12A,6A,15A,15B +welded 'weldId Jc%,Jd% 22A,6A,15A,15B +welder 'weld@R K6% 2 +welders 'weld@z Kj% 2 +welding 'weldIN Jb% 22A,6A,15A,15B +welds weldz Ja%,Kj$ 12A,6A,15A,15B +welfare 'welfe@R L@% 2 +welkin 'welkIn Ki$ 2 +well wel I0%,K6%,Op%,Pu*,W-% 12C +well- wel- U-% 1 +well-adjusted ,wel-@'dZVstId OA% 4 +well-advised ,wel-@d'vaIzd OA% 3 +well-appointed ,wel-@'poIntID OA% 4 +well-balanced wel-'b&l@nst OA% 3 +well-behaved ,wel-bI'heIvd OA% 3 +well-being wel-'biIN L@% 3 +well-born 'wel-bOn OA% 2 +well-bred 'wel-bred OA% 2 +well-conducted ,wel-k@n'dVktId OA% 4 +well-connected ,wel-k@'nektId OA% 4 +well-disposed ,wel-dIs'p@Uzd OA% 3 +well-doer 'wel-du@R K6% 3 +well-doers 'wel-du@z Kj% 3 +well-doing 'wel-duIN L@% 3 +well-favoured wel-'feIv@d OA% 3 +well-found 'wel-faUnd OA$ 2 +well-founded wel-'faUndId OA% 3 +well-groomed wel-'grumd OA% 2 +well-grounded wel-'graUndId OA% 3 +well-heeled wel-'hI@ld OA% 2 +well-informed ,wel-In'fOmd OA% 3 +well-intentioned ,wel-In'tenSnd OA% 4 +well-knit 'wel-nIt OA% 2 +well-known 'wel-n@Un OA% 2 +well-lined wel-'laInd OA% 2 +well-marked 'wel-mAkt OA% 2 +well-meaning 'wel-minIN OA% 3 +well-meant 'wel-ment OA% 2 +well-nigh 'wel-naI Pu% 2 +well-read 'wel-red OA% 2 +well-rounded wel-'raUndId OA% 3 +well-set 'wel-set OA% 2 +well-shaven 'wel-SeIvn OA% 3 +well-spoken 'wel-sp@Uk@n OA% 3 +well-timed wel-'taImd OA% 2 +well-to-do ,wel-t@-'du OA% 3 +well-tried wel-'traId OA% 2 +well-turned wel-'t3nd OA% 2 +well-water 'wel-wOt@R L@% 3 +well-wisher 'wel-wIS@R K6% 3 +well-wishers 'wel-wIS@z Kj% 3 +well-worn 'wel-wOn OA% 2 +welled weld Ic%,Id% 12C +wellhead 'welhed K6% 2 +wellheads 'welhedz Kj$ 2 +welling 'welIN Ib% 22C +wellington 'welINt@n K6% 3 +wellingtons 'welINt@nz Kj% 3 +wells welz Ia%,Kj% 12C +welsh welS I1$ 13A +welshed welSt Ic$,Id$ 13A +welsher 'welS@R K6$ 2 +welshers 'welS@z Kj$ 2 +welshes 'welSIz Ia$ 23A +welshing 'welSIN Ib$ 23A +welt welt K6$ 1 +welter 'welt@R I0$,Ki$,OA$ 22C +weltered 'welt@d Ic$,Id$ 22C +weltering 'welt@rIN Ib$ 32C +welters 'welt@z Ia$ 22C +welterweight 'welt@weIt K6% 3 +welterweights 'welt@weIts Kj% 3 +welts welts Kj$ 1 +wen wen K6$ 1 +wench wentS I1$,K7% 12A +wenched wentSt Ic$,Id$ 12A +wenches 'wentSIz Ia$,Kj% 22A +wenching 'wentSIN Ib$ 22A +wend wend H0% 1 +wended 'wendId Hc%,Hd% 2 +wending 'wendIN Hb% 2 +wends wendz Ha% 1 +wens wenz Kj$ 1 +went went Ic* 12A,2B,2C,2D,2E,3A,4A,6A,15B +wept wept Jc%,Jd% 12A,2B,2C,3A,4B,6A +were w3R Gc*,Ic% 11 +weren't w3nt Gg% 1 +werewolf 'wI@wUlf Ki% 3 +werewolves 'wI@wUlvz Kj% 3 +wert w3t Ge$ 1 +west west L@%,Pu% 1 +west-country 'west-kVntrI OA% 3 +west-end 'west-end OA% 2 +westerly 'west@lI Oq%,Pu% 3 +western 'west@n K6%,OA% 2 +westerner 'west@n@R K6% 3 +westerners 'west@n@z Kj% 3 +westernization ,west@naI'zeISn L@% 5 +westernize 'west@naIz H2% 36A +westernized 'west@naIzd Hc%,Hd% 36A +westernizes 'west@naIzIz Ha% 46A +westernizing 'west@naIzIN Hb% 46A +westernmost 'west@nm@Ust OA% 3 +westerns 'west@nz Kj% 2 +westward 'westw@d OA%,Pu% 2 +westwards 'westw@dz Pu% 2 +wet wet H4%,Hc%,Hd%,L@%,OE% 16A +wet-nurse 'wet-n3s K6% 2 +wet-nurses 'wet-n3sIz Kj% 3 +wether 'weD@R K6$ 2 +wethers 'weD@z Kj$ 2 +wets wets Ha% 16A +wetted 'wetId Hc%,Hd% 26A +wetter 'wet@R Or% 2 +wettest 'wetIst Os% 2 +wetting 'wetIN Hb%,K6% 26A +wettings 'wetINz Kj% 2 +whack w&k H0%,K6% 16A +whacked w&kt Hc%,Hd%,OA% 16A +whacker 'w&k@R K6$ 2 +whackers 'w&k@z Kj$ 2 +whacking 'w&kIN Hb%,K6%,OA%,Pu% 26A +whackings 'w&kINz Kj% 2 +whacks w&ks Ha%,Kj% 16A +whale weIl I2$,K6% 12A +whalebone 'weIlb@Un L@% 2 +whaled weIld Ic$,Id$ 12A +whaler 'weIl@R K6% 2 +whalers 'weIl@z Kj% 2 +whales weIlz Ia$,Kj$ 12A +whaling 'weIlIN Ib% 22A +whaling-gun 'weIlIN-gVn K6% 3 +whaling-guns 'weIlIN-gVnz Kj% 3 +whang w&N H0$,K6$,Pu$ 1 +whanged w&Nd Hc$,Hd$ 1 +whanging 'w&NIN Hb$ 2 +whangs w&Nz Ha$,Kj$ 1 +wharf wOf K6% 1 +wharfage 'wOfIdZ L@% 2 +wharfs wOfs Kj% 1 +wharves wOvz Kj% 1 +what w0t OA*,Qy*,Qz* 1 +what'll 'w0tl Gf% 2 +what's w0ts Gf% 1 +what-for w0t-'fOR L@% 2 +whate'er w0t'e@R OA% 2 +whatever w0t'ev@R OA%,Qx% 3 +whatnot 'w0tn0t L@% 2 +whatsoe'er ,w0ts@U'e@R OA% 3 +whatsoever ,w0ts@U'ev@R OA% 4 +wheat wit L@% 1 +wheaten 'witn OA% 2 +wheedle 'widl H2% 26A,14 +wheedled 'widld Hc%,Hd% 26A,14 +wheedles 'widlz Ha% 26A,14 +wheedling 'widlIN Hb% 26A,14 +wheel wil J0%,K6% 12A,2C,6A,15A,15B +wheelbarrow 'wilb&r@U K6% 3 +wheelbarrows 'wilb&r@Uz Kj% 3 +wheelbase 'wilbeIs K6% 2 +wheelbases 'wilbeIsIz Kj% 3 +wheelchair 'wiltSe@R K6% 2 +wheelchairs 'wiltSe@z Kj% 2 +wheeled wild Jc%,Jd% 12A,2C,6A,15A,15B +wheelhouse 'wilhaUs Ki% 2 +wheelhouses 'wilhaUzIz Kj% 3 +wheeling 'wilIN Jb% 22A,2C,6A,15A,15B +wheels wilz Ja%,Kj% 12A,2C,6A,15A,15B +wheelwright 'wilraIt K6% 2 +wheelwrights 'wilraIts Kj% 2 +wheeze wiz J2%,K6% 12A,2B,2C,15B +wheezed wizd Jc%,Jd% 12A,2B,2C,15B +wheezes 'wizIz Ja%,Kj% 22A,2B,2C,15B +wheezier 'wizI@R Or$ 3 +wheeziest 'wizIIst Os$ 3 +wheezily 'wizIlI Pu% 3 +wheeziness 'wizInIs L@% 3 +wheezing 'wizIN Jb% 22A,2B,2C,15B +wheezy 'wizI OD% 2 +whelk welk K6% 1 +whelks welks Kj% 1 +whelp welp I0$,K6$ 1 +whelped welpt Ic$,Id$ 1 +whelping 'welpIN Ib$ 2 +whelps welps Ia$,Kj$ 1 +when wen Pv*,Pw*,V-* 1 +when's wenz Gh% 1 +whence wens Pu% 1 +whencesoever ,wens@U'ev@R OA$,V-$ 4 +whenever wen'ev@R Pu%,V-% 3 +where we@R Pv*,Pw* 1 +where's we@z Gh% 1 +whereabouts 'we@r@baUts Kj%,Pu% 3 +whereas ,we@'r&z V-% 2 +whereat ,we@'r&t Pu$ 2 +whereby ,we@'baI Pu% 2 +wherefore 'we@fOR Pu% 2 +wherefores 'we@fOz Kj$ 2 +wherein ,we@'rIn Pu$ 2 +whereof ,we@'r0v Pu$ 2 +whereon ,we@'r0n Pu$ 2 +wheresoever ,we@s@U'ev@R Pu% 4 +whereto ,we@'tu Pu$ 2 +whereunto ,we@'rVntu Pu$ 3 +whereupon ,we@rV'p0n Pu% 3 +wherever ,we@'rev@R Pu% 3 +wherewith ,we@'wID Pu$ 2 +wherewithal 'we@wIDOl L@%,Pu% 3 +wherries 'werIz Kj$ 2 +wherry 'werI K8$ 2 +whet wet H4$ 16A +whether 'weD@R V-* 2 +whets wets Ha$ 16A +whetstone 'wetst@Un K6% 2 +whetstones 'wetst@Unz Kj% 2 +whetted 'wetId Hc$,Hd$ 26A +whetting 'wetIN Hb$ 26A +whew fju W-$ 1 +whey weI L@$ 1 +which wItS OA*,Qy*,Qz* 1 +whichever wItS'ev@R OA%,Qx% 3 +whichsoever ,wItS+s@U'ev@R OA$,Qx$ 4 +whiff wIf K6% 1 +whiffs wIfs Kj% 1 +while waIl H2%,Ki%,V-* 115B +whiled waIld Hc%,Hd% 115B +whiles waIlz Ha% 115B +whiling 'waIlIN Hb% 215B +whilst waIlst V-% 1 +whim wIm K6% 1 +whimper 'wImp@R J0%,K6% 22A,6A +whimpered 'wImp@d Jc%,Jd% 22A,6A +whimpering 'wImp@rIN Jb% 32A,6A +whimpers 'wImp@z Ja%,Kj% 22A,6A +whims wImz Kj% 1 +whimsey 'wImzI M6$ 2 +whimseys 'wImzIz Mj$ 2 +whimsical 'wImzIkl OA% 3 +whimsicalities ,wImzI'k&l@tIz Mj% 5 +whimsicality ,wImzI'k&l@tI M8% 5 +whimsically 'wImzIklI Pu% 3 +whimsies 'wImzIz Mj% 2 +whimsy 'wImzI M8% 2 +whin wIn L@$ 1 +whine waIn J2%,K6% 12A,2C,4A,6A,15B +whined waInd Jc%,Jd% 12A,2C,4A,6A,15B +whiner 'waIn@R K6$ 2 +whiners 'waIn@z Kj$ 2 +whines waInz Ja%,Kj% 12A,2C,4A,6A,15B +whining 'waInIN Jb% 22A,2C,4A,6A,15B +whinnied 'wInId Ic%,Id% 2 +whinnies 'wInIz Ia%,Kj% 2 +whinny 'wInI I3%,K8% 2 +whinnying 'wInIIN Ib% 3 +whip wIp J4%,K6% 12C,6A,15A,15B +whip-round 'wIp-raUnd K6% 2 +whip-rounds 'wIp-raUndz Kj$ 2 +whipcord 'wIpkOd L@% 2 +whipped wIpt Jc%,Jd% 12C,6A,15A,15B +whipper-in ,wIp@r-'In Ki$ 3 +whippers-in ,wIp@z-'In Kj$ 3 +whippersnapper 'wIp@sn&p@R K6% 4 +whippersnappers 'wIp@sn&p@z Kj% 4 +whippet 'wIpIt K6% 2 +whippets 'wIpIts Kj% 2 +whippier 'wIpI@R Or$ 3 +whippiest 'wIpIIst Os$ 3 +whipping 'wIpIN Jb%,M6% 22C,6A,15A,15B +whipping-boy 'wIpIN-boI K6% 3 +whipping-boys 'wIpIN-boIz Kj% 3 +whipping-post 'wIpIN-p@Ust K6% 3 +whipping-posts 'wIpIN-p@Usts Kj% 3 +whipping-top 'wIpIN-t0p K6% 3 +whipping-tops 'wIpIN-t0ps Kj% 3 +whippings 'wIpINz Mj% 2 +whippoorwill 'wIp@wIl K6$ 3 +whippoorwills 'wIp@wIlz Kj$ 3 +whippy 'wIpI OD% 2 +whips wIps Ja%,Kj% 12C,6A,15A,15B +whir w3R I4$,Ki$ 12A,2C +whirl w3l J0%,Ki% 12A,2C,15A,15B +whirled w3ld Jc%,Jd% 12A,2C,15A,15B +whirligig 'w3lIgIg K6% 3 +whirligigs 'w3lIgIgz Kj% 3 +whirling 'w3lIN Jb% 22A,2C,15A,15B +whirlpool 'w3lpul K6% 2 +whirlpools 'w3lpulz Kj% 2 +whirls w3lz Ja% 12A,2C,15A,15B +whirlwind 'w3lwInd K6% 2 +whirlwinds 'w3lwIndz Kj% 2 +whirr w3R I0%,Ki% 12A,2C +whirred w3d Ic%,Id% 12A,2C +whirring 'w3rIN Ib% 22A,2C +whirrs w3z Ia% 12A,2C +whirs w3z Ia$ 12A,2C +whisk wIsk J0%,K6% 16A,15B +whisked wIskt Jc%,Jd% 16A,15B +whisker 'wIsk@R K6% 2 +whiskered 'wIsk@d OA% 2 +whiskers 'wIsk@z Kj% 2 +whiskey 'wIskI M6% 2 +whiskeys 'wIskIz Mj% 2 +whiskies 'wIskIz Mj% 2 +whisking 'wIskIN Jb% 26A,15B +whisks wIsks Ja%,Kj% 16A,15B +whisky 'wIskI M8% 2 +whisper 'wIsp@R J0%,K6% 22A,2C,3A,6A,14,15B +whispered 'wIsp@d Jc%,Jd% 22A,2C,3A,6A,14,15B +whisperer 'wIsp@r@R K6% 3 +whisperers 'wIsp@r@z Kj% 3 +whispering 'wIsp@rIN Jb%,K6% 32A,2C,3A,6A,14,15B +whispering-galleries ,wIsp@rIN-'g&l@rIz Kj$ 6 +whispering-gallery ,wIsp@rIN-'g&l@rI K8$ 6 +whisperings 'wIsp@rINz Kj% 3 +whispers 'wIsp@z Ja%,Kj% 22A,2C,3A,6A,14,15B +whist wIst L@% 1 +whist-drive 'wIst-draIv K6% 2 +whist-drives 'wIst-draIvz Kj% 2 +whistle 'wIsl J2%,K6% 22A,2C,6A,15B,16A +whistle-stop 'wIsl-st0p K6% 3 +whistle-stops 'wIsl-st0ps Kj$ 3 +whistled 'wIsld Jc%,Jd% 22A,2C,6A,15B,16A +whistles 'wIslz Ja%,Kj% 22A,2C,6A,15B,16A +whistling 'wIslIN Jb% 22A,2C,6A,15B,16A +whit wIt Ki$ 1 +white waIt M6%,OB* 1 +white-collar ,waIt-'k0l@R OA% 3 +white-hot ,waIt-'h0t OA% 2 +white-lipped ,waIt-'lIpt OA$ 2 +white-livered ,waIt-'lIv@d OA$ 3 +whitebait 'waItbeIt L@% 2 +whitecaps 'waItk&ps Kj$ 2 +whiten 'waItn J0% 22A,6A +whitened 'waItnd Jc%,Jd% 22A,6A +whiteness 'waItnIs L@% 2 +whitening 'waItnIN Jb%,L@% 22A,6A +whitens 'waItnz Ja% 22A,6A +whiter 'waIt@R Or% 2 +whites waIts Mj% 1 +whitest 'waItIst Os% 2 +whitethorn 'waItTOn M6$ 2 +whitethorns 'waItTOnz Mj$ 2 +whitewash 'waItw0S H1%,L@% 2 +whitewashed 'waItw0St Hc%,Hd% 2 +whitewashes 'waItw0SIz Ha% 3 +whitewashing 'waItw0SIN Hb% 3 +whither 'wID@R Pu% 2 +whithersoever ,wID@s@U'ev@R Pu$ 5 +whiting 'waItIN M9% 2 +whitish 'waItIS OA% 2 +whitlow 'wItl@U K6$ 2 +whitlows 'wItl@Uz Kj$ 2 +whittle 'wItl J2% 22C,3A,6A,15A,15B +whittled 'wItld Jc%,Jd% 22C,3A,6A,15A,15B +whittles 'wItlz Ja% 22C,3A,6A,15A,15B +whittling 'wItlIN Jb% 22C,3A,6A,15A,15B +whiz wIz I5%,L@% 12C +whizz-kid 'wIz-kId K6% 2 +whizz-kids 'wIz-kIdz Kj% 2 +whizzed wIzd Ic%,Id% 12C +whizzes 'wIzIz Ia% 22C +whizzing 'wIzIN Ib% 22C +who hu Qy*,Qz* 1 +who'd hud Gf% 1 +who'll hul Gf% 1 +who're 'hu@R Gf% 2 +who's huz Gf% 1 +whoa w@U W-$ 1 +whodunit ,hu'dVnIt K6% 3 +whodunits ,hu'dVnIts Kj% 3 +whoever hu'ev@R Qx% 3 +whole h@Ul K6*,OA* 1 +whole-wheat 'h@Ul-wit L@% 2 +wholehearted ,h@Ul'hAtId OA% 3 +wholeheartedly ,h@Ul'hAtIdlI Pu% 4 +wholeheartedness ,h@Ul'hAtIdnIs L@% 4 +wholemeal 'h@Ulmil L@% 2 +wholes h@Ulz Kj$ 1 +wholesale 'h@UlseIl L@%,OA%,Pu% 2 +wholesaler 'h@UlseIl@R K6% 3 +wholesalers 'h@UlseIl@z Kj% 3 +wholesome 'h@Uls@m OA% 2 +wholesomely 'h@Uls@mlI Pu% 3 +wholly 'h@Ul+lI Pu% 2 +whom hum Qy%,Qz% 1 +whoop hup J0$,K6$ 1 +whooped hupt Jc$,Jd$ 1 +whoopee 'wUpI K6$ 2 +whoopees 'wUpIz Kj$ 2 +whooping 'hupIN Jb% 2 +whooping-cough 'hupIN-k0f L@% 3 +whoops hups Ja$,Kj$ 1 +whop w0p H4$ 16A +whopped w0pt Hc$,Hd$ 16A +whopper 'w0p@R K6% 2 +whoppers 'w0p@z Kj% 2 +whopping 'w0pIN Hb$,OA%,Pu% 26A +whops w0ps Ha$ 16A +whore hOR K6% 1 +whoremonger 'hOmVNg@R K6% 3 +whoremongers 'hOmVNg@z Kj% 3 +whores hOz Kj% 1 +whorl w3l K6$ 1 +whorled w3ld OA$ 1 +whorls w3lz Kj$ 1 +whose huz Qx% 1 +whoso 'hus@U Qx$ 2 +whosoever ,hus@U'ev@R Qx% 4 +why waI K6%,Pv*,Pw*,W-% 1 +whys waIz Kj% 1 +wich- wItS- U-$ 1 +wick wIk M6% 1 +wicked 'wIkId OA% 2 +wickedly 'wIkIdlI Pu% 3 +wickedness 'wIkIdnIs L@% 3 +wicker 'wIk@R L@% 2 +wickerwork 'wIk@w3k L@% 3 +wicket 'wIkIt K6% 2 +wicket-door ,wIkIt-'dOR K6$ 3 +wicket-doors ,wIkIt-'dOz Kj$ 3 +wicket-gate ,wIkIt-'geIt K6% 3 +wicket-gates ,wIkIt-'geIts Kj% 3 +wicket-keeper 'wIkIt-kip@R K6% 4 +wicket-keepers 'wIkIt-kip@z Kj% 4 +wickets 'wIkIts Kj% 2 +wicks wIks Mj% 1 +wide waId OB%,Pu% 1 +wide-awake ,waId-@'weIk OA% 3 +widely 'waIdlI Pu% 2 +widen 'waIdn J0% 22A,6A +widened 'waIdnd Jc%,Jd% 22A,6A +widening 'waIdnIN Jb% 32A,6A +widens 'waIdnz Ja% 22A,6A +wider 'waId@R Or% 2 +widespread 'waIdspred OA% 2 +widest 'waIdIst Os% 2 +widgeon 'wIdZ@n K6$ 2 +widgeons 'wIdZ@nz Kj$ 2 +widow 'wId@U K6% 2 +widowed 'wId@Ud OA% 2 +widower 'wId@U@R K6% 3 +widowers 'wId@U@z Kj% 3 +widowhood 'wId@UhUd L@% 3 +widows 'wId@Uz Kj% 2 +width wItT M6% 1 +widths wItTs Mj% 1 +wield wild H0% 16A +wielded 'wildId Hc%,Hd% 26A +wielding 'wildIN Hb% 26A +wields wildz Ha% 16A +wife waIf Ki* 1 +wifelier 'waIflI@R Or$ 3 +wifeliest 'waIflIIst Os$ 3 +wifelike 'waIflaIk OA% 2 +wifely 'waIflI OD% 2 +wig wIg K6% 1 +wigged wIgd OA% 1 +wigging 'wIgIN K6% 2 +wiggings 'wIgINz Kj$ 2 +wiggle 'wIgl J2%,K6% 22A,6A +wiggled 'wIgld Jc%,Jd% 22A,6A +wiggles 'wIglz Ja%,Kj% 22A,6A +wiggling 'wIglIN Jb% 22A,6A +wight waIt K6$ 1 +wights waIts Kj$ 1 +wigs wIgz Kj% 1 +wigwam 'wIgw&m K6% 2 +wigwams 'wIgw&mz Kj% 2 +wild waIld Kj%,OC%,Pu% 1 +wildcat 'waIldk&t Oq% 2 +wildebeest 'wIldIbist K6$ 3 +wildebeests 'wIldIbists Kj$ 3 +wilder 'waIld@R Or% 2 +wilderness 'wIld@n@s K7% 3 +wildernesses 'wIld@n@sIz Kj% 4 +wildest 'waIldIst Os% 2 +wildfire 'waIldfaI@R L@% 2 +wildfowl 'waIldfaUl Kj% 2 +wildly 'waIldlI Pu% 2 +wildness 'waIldnIs L@% 2 +wile waIl K6$ 1 +wiles waIlz Kj% 1 +wilful 'wIlf@l OA% 2 +wilfully 'wIlf@lI Pu% 3 +wilfulness 'wIlf@lnIs L@% 3 +wilier 'waIlI@R Or% 3 +wiliest 'waIlIIst Os% 3 +will wIl G5*,J0%,M6% 12A,5,6A,9,12A,13A,14,15A,17 +will-o'-the-wisp ,wil-@-D@-'wIsp K6% 4 +will-o'-the-wisps ,wil-@-D@-'wIsps Kj$ 4 +willed wIld Jc%,Jd%,Ot% 12A,5,6A,9,12A,13A,14,15A,17 +willful 'wIlf@l OA% 2 +willies 'wIlIz Kj% 2 +willing 'wIlIN Jb%,OA% 22A,5,6A,9,12A,13A,14,15A,17 +willingly 'wIlINlI Pu% 3 +willingness 'wIlINnIs L@% 3 +willow 'wIl@U M6% 2 +willow-pattern 'wIl@U-p&t@n L@% 4 +willow-tree 'wIl@U-tri K6% 3 +willow-trees 'wIl@U-triz Kj% 3 +willows 'wIl@Uz Mj% 2 +willowy 'wIl@UI OA% 3 +willpower 'wIlpaU@R L@% 3 +wills wIlz Ja%,Mj% 12A,5,6A,9,12A,13A,14,15A,17 +willy-nilly ,wIlI-'nIlI Pu% 4 +wilt wIlt He$,J0% 12A,5,6A,9 +wilted 'wIltId Jc%,Jd% 22A,5,6A,9 +wilting 'wIltIN Jb% 22A,5,6A,9 +wilts wIlts Ja% 12A,5,6A,9 +wily 'waIlI OD% 2 +wimple 'wImpl K6$ 2 +wimples 'wImplz Kj$ 2 +win wIn J5%,K6% 12A,6A,12B,13B,15A,15B,17 +wince wIns H2%,K6% 12A,2C +winced wInst Hc%,Hd% 12A,2C +winces 'wInsIz Ha%,Kj% 22A,2C +winceyette ,wInsI'et L@% 3 +winch wIntS H1%,K7% 16A,15B +winched wIntSt Hc%,Hd% 16A,15B +winches 'wIntSIz Ha%,Kj% 26A,15B +winching 'wIntSIN Hb% 26A,15B +wincing 'wInsIN Hb% 22A,2C +wind wInd H0%,M6% 16A +wind waInd J5%,K6% 12A,2B,2C,6A,14,15A,15B +wind-gauge 'wInd-geIdZ K6% 2 +wind-gauges 'wInd-geIdZIz Kj% 3 +wind-tunnel 'wInd-tVn@l K6% 3 +wind-tunnels 'wInd-tVn@lz Kj% 3 +windbag 'wIndb&g K6% 2 +windbags 'wIndb&gz Kj% 2 +windblown 'wIndbl@Un OA% 2 +windbreak 'wIndbreIk K6% 2 +windbreaker 'wIndbreIk@R K6% 3 +windbreakers 'wIndbreIk@z Kj% 3 +windbreaks 'wIndbreIks Kj% 2 +windcheater 'wIndtSit@R K6% 3 +windcheaters 'wIndtSit@z Kj% 3 +winded 'wIndId Hc%,Hd% 26A +windfall 'wIndfOl K6% 2 +windfalls 'wIndfOlz Kj% 2 +windflower 'wIndflaU@R K6% 3 +windflowers 'wIndflaU@z Kj% 3 +windier 'wIndI@R Or% 3 +windiest 'wIndIIst Os% 3 +windily 'wIndIlI Pu% 3 +windiness 'wIndInIs L@$ 3 +winding 'wIndIN Hb% 26A +winding 'waIndIN Jb% 22A,2B,2C,6A,14,15A,15B +winding-sheet 'waIndIN-Sit K6% 3 +winding-sheets 'waIndIN-Sits Kj% 3 +windjammer 'wIndZ&m@R K6% 3 +windjammers 'wIndZ&m@z Kj% 3 +windlass 'wIndl@s K7$ 2 +windlasses 'wIndl@sIz Kj$ 3 +windless 'wIndl@s OA% 2 +windmill 'wIndmIl K6% 2 +windmills 'wIndmIlz Kj% 2 +window 'wInd@U K6% 2 +window-box 'wInd@U-b0ks K7% 3 +window-boxes 'wInd@U-b0ksIz Kj% 4 +window-dressing 'wInd@U-,dresIN L@% 4 +windowpane 'wInd@UpeIn K6% 3 +windowpanes 'wInd@UpeInz Kj% 3 +windows 'wInd@Uz Kj% 2 +windowsill 'wInd@UsIl K6% 3 +windowsills 'wInd@UsIlz Kj% 3 +windpipe 'wIndpaIp K6% 2 +windpipes 'wIndpaIps Kj% 2 +winds wIndz Ha$,Mj% 16A +winds waIndz Ja%,Kj$ 12A,2B,2C,6A,14,15A,15B +windscreen 'wIndskrin K6% 2 +windscreen-wiper 'wIndskrin-,waIp@R K6% 4 +windscreen-wipers 'wIndskrin-,waIp@z Kj% 4 +windscreens 'wIndskrinz Kj% 2 +windshield 'wIndSild K6% 2 +windshields 'wIndSildz Kj% 2 +windsock 'wInds0k K6% 2 +windsocks 'wInds0ks Kj% 2 +windswept 'wIndswept OA% 2 +windward 'wIndw@d L@%,OA% 2 +windy 'wIndI OD% 2 +wine waIn H2%,M6% 1 +wined waInd Hc%,Hd% 1 +wineglass 'waIn-glAs K7% 2 +wineglasses 'waIn-glAsIz Kj% 3 +winepress 'waInpres K7% 2 +winepresses 'waInpresIz Kj% 3 +wines waInz Ha%,Mj% 1 +wineskin 'waInskIn K6% 2 +wineskins 'waInskInz Kj% 2 +wing wIN J0%,K6% 12C,6A,15A +wing-commander 'wIN-k@,mAnd@R K6% 4 +wing-commanders 'wIN-k@,mAnd@z Kj% 4 +wing-nut 'wIN-nVt K6% 2 +wing-nuts 'wIN-nVts Kj% 2 +wing-screw 'wIN-skru K6% 2 +wing-screws 'wIN-skruz Kj% 2 +winged wINd Jc%,Jd%,OA% 12C,6A,15A +winger 'wIN@R K6% 2 +wingers 'wIN@z Kj% 2 +winging 'wININ Jb% 22C,6A,15A +wingless 'wINl@s OA% 2 +wings wINz Ja%,Kj% 12C,6A,15A +wingspan 'wINsp&n K6% 2 +wingspans 'wINsp&nz Kj% 2 +wingspread 'wINspred K6% 2 +wingspreads 'wINspredz Kj% 2 +wining 'waInIN Hb% 2 +wink wINk J0%,K6% 12A,2C,3A,15B +winked wINkt Jc%,Jd% 12A,2C,3A,15B +winking 'wINkIN Jb% 22A,2C,3A,15B +winkle 'wINkl H2%,K6% 215B +winkled 'wINkld Hc%,Hd% 215B +winkles 'wINklz Ha%,Kj% 215B +winkling 'wINklIN Hb% 215B +winks wINks Ja%,Kj% 12A,2C,3A,15B +winner 'wIn@R K6% 2 +winners 'wIn@z Kj% 2 +winning 'wInIN Jb% 22A,6A,12B,13B,15A,15B,17 +winning-post 'wInIN-p@Ust K6% 3 +winning-posts 'wInIN-p@Usts Kj% 3 +winnings 'wInINz Kj% 2 +winnow 'wIn@U H0$ 26A,14,15A,15B +winnowed 'wIn@Ud Hc$,Hd$ 26A,14,15A,15B +winnowing 'wIn@UIN Hb$ 36A,14,15A,15B +winnows 'wIn@Uz Ha$ 26A,14,15A,15B +wins wInz Ja%,Kj% 12A,6A,12B,13B,15A,15B,17 +winsome 'wIns@m OA$ 2 +winsomely 'wIns@mlI Pu$ 3 +winsomeness 'wIns@mnIs L@$ 3 +winter 'wInt@R I0%,M6% 22C +wintered 'wInt@d Ic%,Id% 22C +winterier 'wIntrI@R Or% 3 +winteriest 'wIntrIIst Os% 3 +wintering 'wInt@rIN Ib% 32C +winters 'wInt@z Ia%,Mj% 22C +wintery 'wIntrI OD% 2 +wintrier 'wIntrI@R Or$ 3 +wintriest 'wIntrIIst Os$ 3 +wintry 'wIntrI OD$ 2 +wipe waIp J2%,K6% 16A,15A,15B,22 +wiped waIpt Jc%,Jd% 16A,15A,15B,22 +wiper 'waIp@R K6% 2 +wipers 'waIp@z Kj% 2 +wipes waIps Ja%,Kj% 16A,15A,15B,22 +wiping 'waIpIN Jb% 26A,15A,15B,22 +wire 'waI@R J2%,M6% 16A,11,12A,13A,15A,15B,16A +wire-cutters 'waI@-,kVt@z Kj% 3 +wire-haired ,waI@-'he@d OA% 2 +wired 'waI@d Jc%,Jd% 16A,11,12A,13A,15A,15B,16A +wireless 'waI@lIs M7%,OA% 2 +wirelesses 'waI@lIsIz Mj% 3 +wirepuller 'waI@,pUl@R K6% 3 +wirepullers 'waI@,pUl@z Kj% 3 +wires 'waI@z Ja%,Mj% 16A,11,12A,13A,15A,15B,16A +wireworm 'waI@w3m K6% 2 +wireworms 'waI@w3mz Kj% 2 +wirier 'waI@rI@R Or$ 3 +wiriest 'waI@rIIst Os$ 3 +wiring 'waI@rIN Jb%,L@% 26A,11,12A,13A,15A,15B,16A +wiry 'waI@rI OD% 2 +wisdom 'wIzd@m L@% 2 +wisdom-teeth 'wIzd@m-tiT Kj% 3 +wisdom-tooth 'wIzd@m-tuT Ki% 3 +wise waIz Ki%,OB% 1 +wiseacre 'waIzeIk@R K6% 3 +wiseacres 'waIzeIk@z Kj% 3 +wisecrack 'waIzkr&k I0%,K6% 2 +wisecracked 'waIzkr&kt Ic%,Id% 2 +wisecracking 'waIzkr&kIN Ib% 3 +wisecracks 'waIzkr&ks Ia%,Kj% 2 +wisely 'waIzlI Pu% 2 +wiser 'waIz@R Or% 2 +wisest 'waIzIst Os% 2 +wish wIS J1%,M7% 12A,3A,6A,7A,9,12A,13A,15A,17,22 +wishbone 'wISb@Un K6% 2 +wishbones 'wISb@Unz Kj% 2 +wished wISt Jc%,Jd% 12A,3A,6A,7A,9,12A,13A,15A,17,22 +wishes 'wISIz Ja%,Mj% 22A,3A,6A,7A,9,12A,13A,15A,17,22 +wishful 'wISf@l OA% 2 +wishfully 'wISf@lI Pu% 3 +wishing 'wISIN Jb% 22A,3A,6A,7A,9,12A,13A,15A,17,22 +wishing-cap 'wISIN-k&p K6$ 3 +wishing-caps 'wISIN-k&ps Kj$ 3 +wishy-washy 'wISI-w0SI OA% 4 +wisp wIsp K6% 1 +wispier 'wIspI@R Or% 3 +wispiest 'wIspIIst Os% 3 +wisps wIsps Kj% 1 +wispy 'wIspI OD% 2 +wisteria wI'stI@rI@ M6% 4 +wisterias wI'stI@rI@z Mj$ 4 +wistful 'wIstf@l OA% 2 +wistfully 'wIstf@lI Pu% 3 +wit wIt M6% 1 +witch wItS K7% 1 +witch- wItS- U-$ 1 +witch-doctor 'wItS-d0kt@R K6% 3 +witch-doctors 'wItS-d0kt@z Kj% 3 +witch-elm 'wItS-elm K6$ 2 +witch-elms 'wItS-elmz Kj$ 2 +witch-hazel 'wItS-heIzl M6% 3 +witch-hazels 'wItS-heIzlz Mj$ 3 +witch-hunt 'wItS-hVnt K6% 2 +witch-hunts 'wItS-hVnts Kj% 2 +witchcraft 'wItSkrAft L@% 2 +witchery 'wItS@rI L@% 3 +witches 'wItSIz Kj% 2 +witching 'wItSIN OA% 2 +with wID T-* 1 +withal wID'Ol Pu% 2 +withdraw wID'drO J5% 22A,2C,6A,14 +withdrawal wID'drO@l M6% 3 +withdrawals wID'drO@lz Mj% 3 +withdrawing wID'drOIN Jb% 32A,2C,6A,14 +withdrawn wID'drOn Jd% 22A,2C,6A,14 +withdraws wID'drOz Ja% 22A,2C,6A,14 +withdrew wID'dru Jc% 22A,2C,6A,14 +withe wIT K6$ 1 +wither 'wID@R J0% 22A,2C,6A,15B +withered 'wID@d Jc%,Jd% 22A,2C,6A,15B +withering 'wID@rIN Jb% 32A,2C,6A,15B +witheringly 'wID@rINlI Pu% 4 +withers 'wID@z Ja%,Kj$ 22A,2C,6A,15B +withes wITs Kj$ 1 +withheld wID'held Hc%,Hd% 26A,14 +withhold wID'h@Uld H5% 26A,14 +withholding wID'h@UldIN Hb% 36A,14 +withholds wID'h@Uldz Ha% 26A,14 +withies 'wIDIz Kj$ 2 +within wID'in Pu*,T-* 2 +without wID'aUt Pu*,T-* 2 +withstand wID'st&nd H5% 26A +withstanding wID'st&ndIN Hb% 36A +withstands wID'st&ndz Ha% 26A +withstood wID'stUd Hc%,Hd% 26A +withy 'wIDI K8$ 2 +witless 'wItlIs OA% 2 +witness 'wItn@s J1%,M7% 23A,6A +witness-box 'wItnIs-b0ks K7% 3 +witness-boxes 'wItnIs-b0ksIz Kj$ 4 +witness-stand 'wItnIs-st&nd K6% 3 +witness-stands 'wItnIs-st&ndz Kj$ 3 +witnessed 'wItn@st Jc%,Jd% 23A,6A +witnesses 'wItn@sIz Ja%,Mj% 33A,6A +witnessing 'wItn@sIN Jb% 33A,6A +wits wIts Mj% 1 +witticism 'wItIsIz@m K6% 4 +witticisms 'wItIsIz@mz Kj% 4 +wittier 'wItI@R Or% 3 +wittiest 'wItIIst Os% 3 +wittily 'wItIlI Pu% 3 +wittingly 'wItINlI Pu% 3 +witty 'wItI OD% 2 +wive waIv J2$ 12A,6A +wived waIvd Jc$,Jd$ 12A,6A +wives waIvz Ja$,Kj% 12A,6A +wiving 'waIvIN Jb$ 22A,6A +wizard 'wIz@d K6%,OA% 2 +wizardry 'wIz@drI L@% 3 +wizards 'wIz@dz Kj% 2 +wizened 'wIznd OA% 2 +wk wik Y]% 1 +wo w@U W-$ 1 +woad w@Ud L@$ 1 +wobble 'w0bl J2% 22A,2C,6A +wobbled 'w0bld Jc%,Jd% 22A,2C,6A +wobbler 'w0bl@R K6$ 2 +wobblers 'w0bl@z Kj$ 2 +wobbles 'w0blz Ja% 22A,2C,6A +wobblier 'w0blI@R Or$ 3 +wobbliest 'w0blIIst Os$ 3 +wobbling 'w0blIN Jb% 22A,2C,6A +wobbly 'w0blI OD% 2 +woe w@U M6% 1 +woebegone 'w@UbIg0n OA% 3 +woeful 'w@Uf@l OA% 2 +woefully 'w@Uf@lI Pu% 3 +woes w@Uz Kj% 1 +woke w@Uk Jc% 12A,2C,4B,6A,15B +woken 'w@Uk@n Jd% 22A,2C,4B,6A,15B +wold w@Uld M6$ 1 +wolds w@Uldz Mj$ 1 +wolf wUlf H0%,Ki% 16A,15A +wolf's-bane 'wUlfs-beIn L@% 2 +wolf-cub 'wUlf-kVb K6% 2 +wolf-cubs 'wUlf-kVbz Kj% 2 +wolfed wUlft Hc%,Hd% 16A,15A +wolfhound 'wUlfhaUnd K6% 2 +wolfhounds 'wUlfhaUndz Kj% 2 +wolfing 'wUlfIN Hb% 26A,15A +wolfish 'wUlfIS OA% 2 +wolfram 'wUlfr@m L@$ 2 +wolfs wUlfs Ha% 16A,15A +wolves wUlvz Kj% 1 +woman 'wUm@n Ki* 2 +womanhood 'wUm@nhUd L@% 3 +womanish 'wUm@nIS OA% 3 +womanize 'wUm@naIz I2% 3 +womanized 'wUm@naIzd Ic%,Id% 3 +womanizer 'wUm@naIz@R K6% 4 +womanizers 'wUm@naIz@z Kj% 4 +womanizes 'wUm@naIzIz Ia% 4 +womanizing 'wUm@naIzIN Ib% 4 +womankind 'wUm@nkaInd L@% 3 +womanlier 'wUm@nlI@R Or$ 4 +womanliest 'wUm@nlIIst Os$ 4 +womanlike 'wUm@nlaIk OA$ 3 +womanly 'wUm@nlI OD% 3 +womb wum K6% 1 +wombat 'w0mb&t K6$ 2 +wombats 'w0mb&ts Kj$ 2 +wombs wumz Kj% 1 +women 'wImIn Kj* 2 +womenfolk 'wImInf@Uk Kj% 3 +won wVn Jc%,Jd% 12A,6A,12B,13B,15A,15B,17 +won't w@Unt Gg% 1 +wonder 'wVnd@R J0%,M6% 22A,3A,3B,4B,8,10 +wonder-struck 'wVnd@-strVk OA% 3 +wondered 'wVnd@d Jc%,Jd% 22A,3A,3B,4B,8,10 +wonderful 'wVnd@f@l OA% 3 +wonderfully 'wVnd@f@lI Pu% 4 +wondering 'wVnd@rIN Jb% 32A,3A,3B,4B,8,10 +wonderingly 'wVndrINlI Pu% 3 +wonderland 'wVnd@l&nd K6% 3 +wonderlands 'wVnd@l&ndz Kj$ 3 +wonderment 'wVnd@m@nt L@% 3 +wonders 'wVnd@z Ja%,Mj% 22A,3A,3B,4B,8,10 +wondrous 'wVndr@s OA%,Pu% 2 +wonky 'w0NkI OA% 2 +wont w@Unt L@%,Op% 1 +wonted 'w@UntId Oq% 2 +woo wu H0% 16A +wood wUd M6% 1 +wood-block 'wUd-bl0k K6% 2 +wood-blocks 'wUd-bl0ks Kj% 2 +wood-pulp 'wUd-pVlp L@% 2 +woodbine 'wUdbaIn M6% 2 +woodbines 'wUdbaInz Mj% 2 +woodcock 'wUdk0k K6% 2 +woodcocks 'wUdk0ks Kj% 2 +woodcraft 'wUdkrAft M6% 2 +woodcrafts 'wUdkrAfts Mj$ 2 +woodcut 'wUdkVt K6% 2 +woodcuts 'wUdkVts Kj% 2 +woodcutter 'wUdkVt@R K6% 3 +woodcutters 'wUdkVt@z Kj% 3 +wooded 'wUdId OA% 2 +wooden 'wUdn OA% 2 +woodenheaded ,wUdn'hedId OA% 4 +woodier 'wUdI@R Or% 3 +woodiest 'wUdIIst Os% 3 +woodland 'wUdl@nd M6% 2 +woodlands 'wUdl@ndz Mj% 2 +woodlice 'wUdlaIs Kj% 2 +woodlouse 'wUdlaUs Ki% 2 +woodman 'wUdm@n Ki% 2 +woodmen 'wUdmen Kj% 2 +woodpecker 'wUdpek@R K6% 3 +woodpeckers 'wUdpek@z Kj% 3 +woodpile 'wUdpaIl K6% 2 +woodpiles 'wUdpaIlz Kj% 2 +woods wUdz Mj% 1 +woodshed 'wUdSed K6% 2 +woodsheds 'wUdSedz Kj% 2 +woodsman 'wUdzm@n Ki% 2 +woodsmen 'wUdzmen Kj% 2 +woodwind 'wUdwInd L@% 2 +woodwork 'wUdw3k L@% 2 +woodworm 'wUdw3m L@% 2 +woody 'wUdI OD% 2 +wooed wud Hc%,Hd% 16A +wooer 'wu@R K6% 2 +wooers 'wu@z Kj% 2 +woof wuf K6$ 1 +woofer 'wUf@R K6$ 2 +woofers 'wUf@z Kj$ 2 +woofs wufs Kj$ 1 +wooing 'wuIN Hb% 26A +wool wUl M6% 1 +woolen 'wUl@n OA% 2 +woolens 'wUl@nz Kj% 2 +woolgathering 'wUlg&D@rIN L@%,OA% 4 +woolier 'wUlI@R Or$ 3 +woolies 'wUlIz Kj% 2 +wooliest 'wUlIIst Os$ 3 +woollen 'wUl@n OA% 2 +woollens 'wUl@nz Kj% 2 +woollier 'wUlI@R Or% 3 +woolliest 'wUlIIst Os% 3 +woolly 'wUlI OD% 2 +wools wUlz Mj% 1 +wooly 'wUlI K8$,OD$ 2 +woos wuz Ha% 16A +word w3d H0%,K6* 16A +word-division 'w3d-dIvIZ@n L@% 4 +word-painter 'w3d-peInt@R K6$ 3 +word-painters 'w3d-peInt@z Kj$ 3 +word-perfect ,w3d-'p3fekt OA% 3 +word-picture 'w3d-pIktS@R K6% 3 +word-pictures 'w3d-pIktS@z Kj% 3 +word-splitting 'w3d-splItIN L@% 3 +wordbook 'w3dbUk K6% 2 +wordbooks 'w3dbUks Kj% 2 +worded 'w3dId Hc%,Hd% 26A +wordier 'w3dI@R Or% 3 +wordiest 'w3dIIst Os% 3 +wordily 'w3dIlI Pu% 3 +wordiness 'w3dInIs L@% 3 +wording 'w3dIN Hb%,Ki% 26A +wordless 'w3dl@s OA% 2 +words w3dz Ha%,Kj* 16A +wordy 'w3dI OD% 2 +wore wOR Jc% 12A,2B,2C,2D,6A,15A,15B,22 +work w3k J0*,M6% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +work-in 'w3k-In K6% 2 +work-ins 'w3k-Inz Kj$ 2 +work-out 'w3k-aUt K6% 2 +work-outs 'w3k-aUts Kj$ 2 +work-studies 'w3k-stVdIz Kj% 3 +work-study 'w3k-stVdI K8% 3 +workable 'w3k@bl OA% 3 +workaday 'w3k@deI OA% 3 +workbag 'w3kb&g K6% 2 +workbags 'w3kb&gz Kj% 2 +workbasket 'w3kbAskIt K6% 3 +workbaskets 'w3kbAskIts Kj% 3 +workbench 'w3kbentS K7% 2 +workbenches 'w3kbentSIz Kj% 3 +workbook 'w3kbUk K6% 2 +workbooks 'w3kbUks Kj% 2 +workbox 'w3kb0ks K7% 2 +workboxes 'w3kb0ksIz Kj% 3 +workday 'w3kdeI K6% 2 +workdays 'w3kdeIz Kj% 2 +worked w3kt Jc%,Jd% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +worker 'w3k@R K6% 2 +workers 'w3k@z Kj% 2 +workhouse 'w3khaUs Ki% 2 +workhouses 'w3khaUzIz Kj% 3 +working 'w3kIN Jb%,K6%,OA% 22A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +working-class 'w3kIN-klAs OA% 3 +working-out ,w3kIN-'aUt L@% 3 +workings 'w3kINz Kj% 2 +workman 'w3km@n Ki% 2 +workmanlike 'w3km@nlaIk OA% 3 +workmanship 'w3km@nSIp L@% 3 +workmate 'w3kmeIt K6% 2 +workmates 'w3kmeIts Kj% 2 +workmen 'w3kmen Kj% 2 +workroom 'w3krum K6% 2 +workrooms 'w3krumz Kj% 2 +works w3ks Ja%,Mj% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +workshop 'w3kS0p K6% 2 +workshops 'w3kS0ps Kj% 2 +workshy 'w3kSaI OA% 2 +worktable 'w3kteIbl K6% 3 +worktables 'w3kteIblz Kj% 3 +world w3ld K6* 1 +world-weary 'w3ld-wI@rI OA% 3 +worldlier 'w3ldlI@R Or% 3 +worldliest 'w3ldlIIst Os% 3 +worldliness 'w3ldlInIs L@% 3 +worldly 'w3ldlI OD% 2 +worlds w3ldz Kj% 1 +worldwide 'w3ldwaId OA% 2 +worm w3m H0%,K6% 16A,15A,15B +worm-eaten 'w3m-itn OA% 3 +worm-gear 'w3m-gI@R K6% 2 +worm-gears 'w3m-gI@z Kj% 2 +wormcast 'w3mkAst K6% 2 +wormcasts 'w3mkAsts Kj% 2 +wormed w3md Hc%,Hd% 16A,15A,15B +wormhole 'w3mh@Ul K6% 2 +wormholes 'w3mh@Ulz Kj% 2 +wormier 'w3mI@R Or$ 3 +wormiest 'w3mIIst Os$ 3 +worming 'w3mIN Hb% 26A,15A,15B +worms w3mz Ha%,Kj% 16A,15A,15B +wormwood 'w3mwUd L@% 2 +wormy 'w3mI OD% 2 +worn wOn Jd% 12A,2B,2C,2D,6A,15A,15B,22 +worried 'wVrId Jc%,Jd%,OA% 22A,2B,2C,3A,6A,14,15A,15B,17,22 +worries 'wVrIz Ja%,Mj% 22A,2B,2C,3A,6A,14,15A,15B,17,22 +worrisome 'wVrIs@m OA% 3 +worry 'wVrI J3%,M8% 22A,2B,2C,3A,6A,14,15A,15B,17,22 +worrying 'wVrIIN Jb%,OA% 32A,2B,2C,3A,6A,14,15A,15B,17,22 +worryingly 'wVrIINlI Pu% 4 +worse w3s L@%,Or%,Pu% 1 +worsen 'w3s@n J0% 22A,6A +worsened 'w3s@nd Jc%,Jd% 22A,6A +worsening 'w3s@nIN Jb% 32A,6A +worsens 'w3s@nz Ja% 22A,6A +worship 'w3SIp J4%,L@% 22A,2B,6A +worshipful 'w3SIpf@l OA% 3 +worshipped 'w3SIpt Jc%,Jd% 22A,2B,6A +worshipper 'w3SIp@R K6% 3 +worshippers 'w3SIp@z Kj% 3 +worshipping 'w3SIpIN Jb% 32A,2B,6A +worships 'w3SIps Ja% 22A,2B,6A +worst w3st H0$,L@%,Os%,Pu% 16A +worsted 'w3stId Hc$,Hd$ 26A +worsted 'wUstId L@$ 2 +worsting 'w3stIN Hb$ 26A +worsts w3sts Ha$ 16A +worth w3T L@%,Op% 1 +worthier 'w3DI@R Or% 3 +worthies 'w3DIz Kj% 2 +worthiest 'w3DIIst Os% 3 +worthily 'w3DIlI Pu% 3 +worthiness 'w3DIn@s L@% 3 +worthless 'w3Tl@s OA% 2 +worthlessly 'w3Tl@slI Pu% 3 +worthlessness 'w3Tl@sn@s L@% 3 +worthwhile 'w3TwaIl OA% 2 +worthy 'w3DI K8%,OD% 2 +wot w0t He$ 1 +wotcher 'w0tS@R W-$ 2 +would wUd Gc*,Hc% 15,6A,9 +would-be 'wUd-bI Oq% 2 +wouldn't 'wUdnt Gg% 2 +wouldst wUdst Ge$ 1 +wound waUnd Jc%,Jd% 12A,2B,2C,6A,14,15A,15B +wound wund H0%,K6% 16A +wounded 'wundId Hc%,Hd% 26A +wounding 'wundIN Hb% 26A +wounds wundz Ha%,Kj% 16A +wove w@Uv Jc% 12A,2C,6A,15A,15B +woven 'w@Uv@n Jd% 22A,2C,6A,15A,15B +wow waU M6$,W-$ 1 +wows waUz Mj$ 1 +wpb ,dVblju,pi'bi Y>% 5 +wpm ,dVblju,pi'em Y]% 5 +wrack r&k L@% 1 +wraith reIT K6% 1 +wraiths reITs Kj% 1 +wrangle 'r&Ngl I2%,K6% 22A,3A +wrangled 'r&Ngld Ic%,Id% 22A,3A +wrangles 'r&Nglz Ia%,Kj% 22A,3A +wrangling 'r&NglIN Ib% 22A,3A +wrap r&p J4%,K6% 16A,14,15A,15B +wrapped r&pt Jc%,Jd% 16A,14,15A,15B +wrapper 'r&p@R K6% 2 +wrappers 'r&p@z Kj% 2 +wrapping 'r&pIN Jb%,M6% 26A,14,15A,15B +wrappings 'r&pINz Mj% 2 +wraps r&ps Ja%,Kj% 16A,14,15A,15B +wrath r0T L@% 1 +wrathful 'r0Tf@l OA% 2 +wrathfully 'r0Tf@lI Pu% 3 +wreak rik H0% 16A,14 +wreaked rikt Hc%,Hd% 16A,14 +wreaking 'rikIN Hb% 26A,14 +wreaks riks Ha% 16A,14 +wreath riT K6% 1 +wreathe riD J2% 12A,2C,6A,14 +wreathed riDd Jc%,Jd% 12A,2C,6A,14 +wreathes riDz Ja% 12A,2C,6A,14 +wreathing 'riDIN Jb% 22A,2C,6A,14 +wreaths riDz Kj% 1 +wreck rek H0%,M6% 16A +wreckage 'rekIdZ L@% 2 +wrecked rekt Hc%,Hd% 16A +wrecker 'rek@R K6% 2 +wreckers 'rek@z Kj% 2 +wrecking 'rekIN Hb% 26A +wrecks reks Ha%,Mj% 16A +wren ren K6% 1 +wrench rentS H1%,K7% 16A,15A,22 +wrenched rentSt Hc%,Hd% 16A,15A,22 +wrenches 'rentSIz Ha%,Kj% 26A,15A,22 +wrenching 'rentSIN Hb% 26A,15A,22 +wrens renz Kj% 1 +wrest rest H0$ 114 +wrested 'restId Hc$,Hd$ 214 +wresting 'restIN Hb$ 214 +wrestle 'resl I2%,K6% 22A,2C,3A +wrestled 'resld Ic%,Id% 22A,2C,3A +wrestler 'resl@R K6% 2 +wrestlers 'resl@z Kj% 2 +wrestles 'reslz Ia%,Kj% 22A,2C,3A +wrestling 'reslIN Ib% 22A,2C,3A +wrests rests Ha$ 114 +wretch retS K7% 1 +wretched 'retSId OA% 2 +wretchedly 'retSIdlI Pu% 3 +wretchedness 'retSIdn@s L@% 3 +wretches 'retSIz Kj% 2 +wrick rIk H0$,K6$ 16A +wricked rIkt Hc$,Hd$ 16A +wricking 'rIkIN Hb$ 26A +wricks rIks Ha$,Kj$ 16A +wrier 'raI@R Or$ 2 +wriest 'raIIst Os$ 2 +wriggle 'rIgl J2%,K6% 22A,2C,3A,6A,15B,22 +wriggled 'rIgld Jc%,Jd% 22A,2C,3A,6A,15B,22 +wriggler 'rIgl@R K6% 2 +wrigglers 'rIgl@z Kj% 2 +wriggles 'rIglz Ja%,Kj% 22A,2C,3A,6A,15B,22 +wriggling 'rIglIN Jb% 22A,2C,3A,6A,15B,22 +wright raIt K6$ 1 +wrights raIts Kj$ 1 +wring rIN H5$,K6$ 16A,14,15B +wringer 'rIN@R K6$ 2 +wringers 'rIN@z Kj$ 2 +wringing 'rININ Hb$ 26A,14,15B +wrings rINz Ha$,Kj$ 16A,14,15B +wrinkle 'rINkl J2%,K6% 22A,2C,6A,15B +wrinkled 'rINkld Jc%,Jd% 22A,2C,6A,15B +wrinkles 'rINklz Ja%,Kj% 22A,2C,6A,15B +wrinklier 'rINklI@R Or$ 3 +wrinkliest 'rINklIIst Os$ 3 +wrinkling 'rINklIN Jb% 22A,2C,6A,15B +wrinkly 'rINklI OD% 2 +wrist rIst K6% 1 +wristband 'rIstb&nd K6% 2 +wristbands 'rIstb&ndz Kj% 2 +wristlet 'rIstlIt K6$ 2 +wristlets 'rIstlIts Kj$ 2 +wrists rIsts Kj% 1 +wristwatch 'rIstw0tS K7% 2 +wristwatches 'rIstw0tSIz Kj% 3 +writ rIt K6% 1 +writ large rIt 'lAdZ OA% 2 +write raIt J5% 12A,2B,2C,4A,6A,12A,13A,15B +write-off 'raIt-0f K6% 2 +write-offs 'raIt-0fs Kj% 2 +write-up 'raIt-Vp K6% 2 +write-ups 'raIt-Vps Kj% 2 +writer 'raIt@R K6% 2 +writers 'raIt@z Kj% 2 +writes raIts Ja% 12A,2B,2C,4A,6A,12A,13A,15B +writhe raID I2% 12A,2C +writhed raIDd Ic%,Id% 12A,2C +writhes raIDz Ia% 12A,2C +writhing 'raIDIN Ib% 22A,2C +writing 'raItIN Jb%,M6% 22A,2B,2C,4A,6A,12A,13A,15B +writing-desk 'raItIN-desk K6% 3 +writing-desks 'raItIN-desks Kj% 3 +writing-ink 'raItIN-INk K6% 3 +writing-inks 'raItIN-INks Kj% 3 +writing-paper 'raItIN-peIp@R L@% 4 +writings 'raItINz Mj% 2 +writs rIts Kj$ 1 +written 'rItn Jd% 22A,2B,2C,4A,6A,12A,13A,15B +wrong r0N H0%,M6%,OA%,Pu% 16A +wrong-headed r0n-'hedId OA% 3 +wrong-headedly r0n-'hedIdlI Pu% 4 +wrongdoer 'r0Ndu@R K6% 3 +wrongdoers 'r0Ndu@z Kj% 3 +wrongdoing 'r0NduIN M6% 3 +wrongdoings 'r0NduINz Mj% 3 +wronged r0Nd Hc%,Hd% 16A +wrongful 'r0Nf@l OA% 2 +wrongfully 'r0Nf@lI Pu% 3 +wronging 'r0NIN Hb% 26A +wrongly 'r0NlI Pu% 2 +wrongs r0Nz Ha%,Mj% 16A +wrote r@Ut Jc% 12A,2B,2C,4A,6A,12A,13A,15B +wroth r@UT OA$ 1 +wrought rOt Jc%,Jd% 12A,2B,2C,2D,3A,4A,6A,14,15A,15B,22 +wrung rVN Hc$,Hd$ 16A,14,15B +wry raI OD% 1 +wryly 'raIlI Pu% 2 +wt weIt Y}% 1 +wych- wItS- U-$ 1 +x eks Ki$ 1 +x's 'eksIz Kj$ 2 +xenophobia ,zen@'f@UbI@ L@% 5 +xylophone 'zaIl@f@Un K6% 3 +xylophones 'zaIl@f@Unz Kj% 3 +y waI Ki$ 1 +y's waIz Kj$ 1 +yacht j0t I0$,K6% 12A +yacht-club 'j0t-klVb K6% 2 +yacht-clubs 'j0t-klVbz Kj% 2 +yachted 'j0tId Ic$,Id$ 22A +yachting 'j0tIN Ib$,L@% 22A +yachts j0ts Ia$,Kj% 12A +yachtsman 'j0tsm@n Ki% 2 +yachtsmen 'j0tsm@n Kj% 2 +yah jA W-$ 1 +yahoo jA'hu K6$ 2 +yahoos jA'huz Kj$ 2 +yak j&k K6$ 1 +yaks j&ks Kj$ 1 +yam j&m K6$ 1 +yammer 'j&m@R I0$ 2 +yammered 'j&m@d Ic$,Id$ 2 +yammering 'j&m@rIN Ib$ 3 +yammers 'j&m@z Ia$ 2 +yams j&mz Kj$ 1 +yank j&Nk H0%,K6% 16A,15A,15B +yanked j&Nkt Hc%,Hd% 16A,15A,15B +yanking 'j&NkIN Hb% 26A,15A,15B +yanks j&Nks Ha%,Kj% 16A,15A,15B +yap j&p I4%,K6% 12A +yapped j&pt Ic%,Id% 12A +yapping 'j&pIN Ib% 22A +yaps j&ps Ia%,Kj% 12A +yard jAd K6% 1 +yard-measure 'jAd-meZ@R K6$ 3 +yard-measures 'jAd-meZ@z Kj$ 3 +yardarm 'jAdAm K6% 2 +yardarms 'jAdAmz Kj% 2 +yards jAdz Kj% 1 +yardstick 'jAdstIk K6% 2 +yardsticks 'jAdstIks Kj% 2 +yarn jAn I0$,M6% 12A,2C +yarned jAnd Ic$,Id$ 12A,2C +yarning 'jAnIN Ib$ 22A,2C +yarns jAnz Ia$,Mj% 12A,2C +yarrow 'j&r@U L@$ 2 +yashmak 'j&Sm&k K6$ 2 +yashmaks 'j&Sm&ks Kj$ 2 +yaw jO I0$,K6$ 1 +yawed jOd Ic$,Id$ 1 +yawing 'jOIN Ib$ 2 +yawl jOl K6$ 1 +yawls jOlz Kj$ 1 +yawn jOn I0%,K6% 12A,2C +yawned jOnd Ic%,Id% 12A,2C +yawning 'jOnIN Ib% 22A,2C +yawns jOnz Ia%,Kj% 12A,2C +yaws jOz Ia$,Kj$ 1 +ye ji Qx$,R-$ 1 +yea jeI K6$,Pu$,W-$ 1 +yeah je@ Pu$ 1 +year j3R K6* 1 +yearbook 'j3bUk K6% 2 +yearbooks 'j3bUks Kj% 2 +yearling 'j3lIN K6% 2 +yearlings 'j3lINz Kj% 2 +yearlong 'j3l0N OA% 2 +yearly 'j3lI OA%,Pu% 2 +yearn j3n I0% 13A,4A +yearned j3nd Ic%,Id% 13A,4A +yearning 'j3nIN Ib%,K6% 23A,4A +yearningly 'j3nINlI Pu% 3 +yearnings 'j3nINz Kj% 2 +yearns j3nz Ia% 13A,4A +years j3z Kj* 1 +yeas jeIz Kj$ 1 +yeast jist L@% 1 +yeastier 'jistI@R Or$ 3 +yeastiest 'jistIIst Os$ 3 +yeasty 'jistI OD% 2 +yell jel J0%,K6% 12A,2C,6A,15B +yelled jeld Jc%,Jd% 12A,2C,6A,15B +yelling 'jelIN Jb% 22A,2C,6A,15B +yellow 'jel@U J0$,M6%,OC% 22A,6A +yellow-bellied ,jel@U-'belId OA% 4 +yellow-flag 'jel@U-fl&g K6$ 3 +yellow-flags 'jel@U-fl&gz Kj$ 3 +yellowed 'jel@Ud Jc$,Jd% 22A,6A +yellower 'jel@U@R Or% 3 +yellowest 'jel@UIst Os% 3 +yellowing 'jel@UIN Jb% 32A,6A +yellowish 'jel@UIS OA% 3 +yellowness 'jel@Un@s L@% 3 +yellows 'jel@Uz Ja$,Mj% 22A,6A +yells jelz Ja%,Kj% 12A,2C,6A,15B +yelp jelp I0% 12A +yelped jelpt Ic%,Id% 12A +yelping 'jelpIN Ib% 22A +yelps jelps Ia% 12A +yen jen I4$,K9% 1 +yenned jend Ic$,Id$ 1 +yenning 'jenIN Ib$ 2 +yens jenz Ia$ 1 +yeoman 'j@Um@n Ki% 2 +yeomanries 'j@Um@nrIz Kj$ 3 +yeomanry 'j@Um@nrI K8% 3 +yeomen 'j@Um@n Kj% 2 +yes jes K7%,W-* 1 +yeses 'jesIz Kj$ 2 +yester- 'jest@R- U-% 2 +yesterday 'jest@dI K6%,Pu% 3 +yesterdays 'jest@dIz Kj% 3 +yet jet Pu*,V-* 1 +yeti 'jetI K6$ 2 +yetis 'jetIz Kj$ 2 +yew ju M6% 1 +yew-tree 'ju-tri K6% 2 +yew-trees 'ju-triz Kj% 2 +yews juz Mj% 1 +yield jild J0%,M6% 12A,3A,6A,15A,15B +yielded 'jildId Jc%,Jd% 22A,3A,6A,15A,15B +yielding 'jildIN Jb%,OA% 22A,3A,6A,15A,15B +yieldingly 'jI@ldINlI Pu% 3 +yields jildz Ja%,Mj% 12A,3A,6A,15A,15B +yippee 'jIpI W-$ 2 +yo-heave-ho ,j@U-'hiv-h@U W-$ 3 +yo-yo 'j@U-j@U K6% 2 +yo-yos 'j@U-j@Uz Kj% 2 +yob j0b K6% 1 +yobo 'j0b@U K6$ 2 +yobos 'j0b@Uz Kj$ 2 +yobs j0bz Kj% 1 +yodel 'j@Udl J4%,K6% 2 +yodelled 'j@Udld Jc%,Jd% 2 +yodeller 'j@Udl@R K6% 3 +yodellers 'j@Udl@z Kj% 3 +yodelling 'j@Ud@lIN Jb% 3 +yodels 'j@Udlz Ja%,Kj% 2 +yoga 'j@Ug@ L@% 2 +yoghourt 'j0g@t M6% 2 +yoghourts 'j0g@ts Mj% 2 +yoghurt 'j0g@t M6% 2 +yoghurts 'j0g@ts Mj% 2 +yogi 'j@UgI K6% 2 +yogis 'j@UgIz Kj% 2 +yogurt 'j0g@t M6% 2 +yogurts 'j0g@ts Mj% 2 +yoke j@Uk J2%,K6% 16A,15A +yoked j@Ukt Jc%,Jd% 16A,15A +yokel 'j@Ukl K6% 2 +yokels 'j@Uklz Kj% 2 +yokes j@Uks Ja%,Kj% 16A,15A +yoking 'j@UkIN Jb% 26A,15A +yolk j@Uk M6% 1 +yolks j@Uks Mj% 1 +yon j0n OA$,Pu$ 1 +yonder 'j0nd@R OA%,Pu% 2 +yore jOR L@$ 1 +you ju Qx* 1 +you'd jud Gf% 1 +you'll jul Gf% 1 +you're jU@R Gf% 1 +you've juv Gf% 1 +young jVN L@%,OC* 1 +younger 'jVNg@R Or% 2 +youngest 'jVNgIst Os% 2 +youngish 'jVNIS OA% 2 +youngster 'jVNst@R K6% 2 +youngsters 'jVNst@z Kj% 2 +your jOR OA* 1 +yours jOz Op%,Qx% 1 +yourself jO'self Qx% 2 +yourselves jO'selvz Qx% 2 +youth juT M6% 1 +youthful 'juTf@l OA% 2 +youthfully 'juTf@lI Pu% 3 +youthfulness 'juTf@ln@s L@% 3 +youths juDz Mj% 1 +yowl jaUl I0$ 1 +yowled jaUld Ic$,Id$ 1 +yowling 'jaUlIN Ib$ 2 +yowls jaUlz Ia$ 1 +yr jI@R Y>% 2 +yule jul L@% 1 +yule-log 'jul-l0g K6% 2 +yule-logs 'jul-l0gz Kj% 2 +yuletide 'jultaId M6% 2 +yuletides 'jultaIdz Mj$ 2 +z zed Ki$ 1 +z's zedz Kj$ 1 +zanier 'zeInI@R Or% 3 +zanies 'zeInIz Kj$ 2 +zaniest 'zeInIIst Os% 3 +zany 'zeInI K8$,OD% 2 +zap z&p H4% 16A +zapped z&pt Hc%,Hd% 16A +zapping 'z&pIN Hb% 26A +zaps z&ps Ha% 16A +zeal zil L@% 1 +zealot 'zel@t K6% 2 +zealotry 'zel@trI L@$ 3 +zealots 'zel@ts Kj% 2 +zealous 'zel@s OA% 2 +zealously 'zel@slI Pu% 3 +zebra 'zebr@ K6% 2 +zebras 'zebr@z Kj% 2 +zebu 'zibju K6$ 2 +zebus 'zibjuz Kj$ 2 +zee zi K6$ 1 +zees ziz Kj$ 1 +zenith 'zenIT K6% 2 +zenithal 'zenIT@l OA$ 3 +zeniths 'zenITs Kj$ 2 +zephyr 'zef@R K6% 2 +zephyrs 'zef@z Kj% 2 +zeppelin 'zep@lIn K6% 3 +zeppelins 'zep@lInz Kj% 3 +zero 'zI@r@U I0$,K6% 22C +zeroed 'zI@r@Ud Ic$,Id$ 22C +zeroing 'zI@r@UIN Ib$ 32C +zeros 'zI@r@Uz Ia$,Kj% 22C +zest zest L@% 1 +zestful 'zestf@l OA% 2 +zestfully 'zestf@lI Pu% 3 +zigzag 'zIgz&g I4%,K6%,Pu% 2 +zigzagged 'zIgz&gd Ic%,Id% 2 +zigzagging 'zIgz&gIN Ib% 3 +zigzags 'zIgz&gz Ia%,Kj% 2 +zinc zINk L@% 1 +zing zIN L@% 1 +zinnia 'zInI@ K6$ 3 +zinnias 'zInI@z Kj$ 3 +zip zIp H4%,K6% 16A,15B,22 +zip code 'zIp k@Ud K6% 2 +zip codes 'zIp k@Udz Kj% 2 +zip-fastener 'zIp-f&sn@R K6% 3 +zip-fasteners 'zIp-f&sn@z Kj% 3 +zipped zIpt Hc%,Hd% 16A,15B,22 +zipper 'zIp@R K6% 2 +zippers 'zIp@z Kj% 2 +zipping 'zIpIN Hb% 26A,15B,22 +zips zIps Ha%,Kj% 16A,15B,22 +zither 'zID@R K6% 2 +zithers 'zID@z Kj% 2 +zloty 'zl0tI K6$ 2 +zlotys 'zl0tIz Kj$ 2 +zodiac 'z@UdI&k K6% 3 +zodiacs 'z@UdI&ks Kj$ 3 +zombie 'z0mbI K6% 2 +zombies 'z0mbIz Kj% 2 +zonal 'z@Unl OA% 2 +zone z@Un H2%,K6% 16A +zoned z@Und Hc%,Hd% 16A +zones z@Unz Ha%,Kj% 16A +zoning 'z@UnIN Hb%,L@% 26A +zoo zu K6% 1 +zoological ,zu@'l0dZIkl OA% 5 +zoologist zu'0l@dZIst K6% 4 +zoologists zu'0l@dZIsts Kj% 4 +zoology zu'0l@dZI L@% 4 +zoom zum I0%,L@% 12A,2C +zoomed zumd Ic%,Id% 12A,2C +zooming 'zumIN Ib% 22A,2C +zooms zumz Ia% 12A,2C +zoophyte 'z@U@faIt K6$ 3 +zoophytes 'z@U@faIts Kj$ 3 +zoos zuz Kj% 1 +zoot suit 'zut sut K6$ 2 +zoot suits 'zut suts Kj$ 2 +zucchini zU'kinI M9% 3 +zucchinis zU'kinIz Kj$ 3 +</TEXT></TEI.2>
\ No newline at end of file diff --git a/next-lib/src/parse/oald/src/ascii_0710-2.txt b/next-lib/src/parse/oald/src/ascii_0710-2.txt new file mode 100644 index 000000000..6963c3498 --- /dev/null +++ b/next-lib/src/parse/oald/src/ascii_0710-2.txt @@ -0,0 +1,1662 @@ +<!DOCTYPE tei.2 PUBLIC "-//TEI//DTD TEI Lite 1.0//EN"><TEI.2><TEIHEADER TYPE='TEXT' DATE.CREATED='1998-01-12'><FILEDESC><TITLESTMT><TITLE TYPE="main"> Oxford advanced learner's dictionary of current English : expanded "computer usable" version / compiled by Roger Mitton</TITLE><TITLE TYPE=SUB>A machine readable edition</TITLE><RESPSTMT><RESP>unspecified</RESP><NAME>Hornby, Albert Sydney</NAME></RESPSTMT><RESPSTMT><RESP>unspecified</RESP><NAME>Cowie, Anthony Paul</NAME></RESPSTMT><RESPSTMT><RESP>unspecified</RESP><NAME>Lewis, John Windsor, 1926-</NAME></RESPSTMT><RESPSTMT><RESP>com (Compiler)</RESP><NAME>Mitton, Roger</NAME></RESPSTMT></TITLESTMT><EXTENT><SEG TYPE="designation">Text data</SEG><SEG TYPE=size>greater than 5 Mb</SEG><SEG TYPE=format> Contains markup characters</SEG><SEG TYPE="location">offline</SEG></EXTENT><PUBLICATIONSTMT><authority><!-- Not publicly available --></authority><DISTRIBUTOR><NAME KEY="ota" TYPE="organisation">Oxford Text Archive</NAME><NAME TYPE="place">Oxford</NAME><ADDRESS><ADDRLINE><NAME KEY="oucs" TYPE="organisation">Oxford University Computing Services</NAME></ADDRLINE><ADDRLINE>13 Banbury Road</ADDRLINE><ADDRLINE>Oxford</ADDRLINE><ADDRLINE>OX2 6NN</ADDRLINE><ADDRLINE><NAME TYPE="email">info@ota.ahds.ac.uk</NAME></ADDRLINE></ADDRESS></DISTRIBUTOR><IDNO TYPE="ota">dict0710</IDNO><AVAILABILITY STATUS='FREE'><P>Freely available for non-commercial use provided that this header is included in its entirety with any copy distributed</P></AVAILABILITY></PUBLICATIONSTMT><NOTESSTMT><NOTE TYPE="creationdate">[198-?]</NOTE><NOTE TYPE="general">In English</NOTE><NOTE TYPE="general">Title from title page of source text</NOTE><NOTE TYPE="general">"[Entries have] all inflected forms included in full - but ... no definitions or examples"--Compiler, in OTA records</NOTE><NOTE TYPE="publrel">Publication based on this text: Literary and Linguistic Computing. -- Vol. 1, No. 4, 1986.</NOTE></NOTESSTMT><SOURCEDESC><BIBL> Transcribed from: Oxford advanced learner's dictionary of current English / A.S. Hornby ; with the assistance of A.P. Cowie [and] J. Windsor Lewis. -- 3rd. ed. -- London : Oxford University Press, 1974.</BIBL></SOURCEDESC></FILEDESC><ENCODINGDESC><EDITORIALDECL><P>Editorial practices unknown</P></EDITORIALDECL><REFSDECL><P>Reference system unknown</P></REFSDECL><CLASSDECL><TAXONOMY ID=OTASH><BIBL>Oxford Text Archive Subject Headings</BIBL></TAXONOMY><TAXONOMY ID=LCSH><BIBL>Library of Congress Subject Headings</BIBL></TAXONOMY></CLASSDECL></ENCODINGDESC><PROFILEDESC><CREATION><DATE>Unspecified</DATE></CREATION><LANGUSAGE><LANGUAGE USAGE=100 ID="eng">English</LANGUAGE></LANGUSAGE><TEXTCLASS><KEYWORDS SCHEME="otash"><TERM TYPE="genre">Dictionaries</TERM></KEYWORDS><KEYWORDS SCHEME='LCSH'><TERM TYPE=topical>English language -- Dictionaries</TERM><TERM TYPE=genre>Dictionaries -- 20th century</TERM></KEYWORDS></TEXTCLASS></PROFILEDESC><REVISIONDESC><CHANGE><DATE VALUE='1998-01-14'>14 Jan 1998</DATE><RESPSTMT><NAME>Burnard, Lou</NAME><RESP>cvt (converter)</RESP></RESPSTMT><ITEM>Header auto-generated from TOMES</ITEM></CHANGE><CHANGE><DATE>1990-1991</DATE><RESPSTMT><NAME>Day, Michael</NAME><RESP>edt (Editor)</RESP></RESPSTMT><ITEM>The following information was at the beginning of a MARC record used to to generate this TEI header, and may contain useful information:"computer usable" version</ITEM></CHANGE></REVISIONDESC></TEIHEADER> +<TEXT> + + + + + +A DESCRIPTION OF A COMPUTER-USABLE DICTIONARY FILE BASED ON + +THE OXFORD ADVANCED LEARNER'S DICTIONARY OF CURRENT ENGLISH + + + +Roger Mitton, + +Department of Computer Science, + +Birkbeck College, + +University of London, + +Malet Street, + +London WC1E 7HX + + + +June 1992 (supersedes the versions of March and Nov 1986) + + + + + + In 1985-86 I produced a dictionary file called CUVOALD (Computer + +Usable Version of the Oxford Advanced Learner's Dictionary). This was + +a partial dictionary of English in computer-usable form - "partial" + +because each entry contained only some of the information from the + +original dictionary, and "computer-usable" (rather than merely + +"computer-readable") because it was in a form that made it easy for + +programs to access it. A second file, called CUV2, was produced at + +the same time. This was derived from CUVOALD and was the same except + +that it also contained all inflected forms explicitly, eg it contained + +"added", "adding" and "adds" as well as "add". I have now added some + +information to each entry and some more entries to CUV2, to produce a + +new version of CUV2. This document describes this new file. + + + + These files were derived originally from the Oxford Advanced + +Learner's Dictionary of Current English [1], third edition, published + +by the Oxford University Press, 1974, the machine-readable version of + +which is available to researchers from the Oxford Text Archive. The + +task of deriving them from the machine-readable OALDCE was carried out + +as part of a research project, funded by the Leverhulme Trust, into + +spelling correction. The more recent additions have been carried out + +as part of my research as a lecturer in Computer Science at Birkbeck + +College. + + + +THE FILE FORMAT + + + + CUV2 contains 70646 entries. Each entry occupies one line. + +Samples are given at the end of this document. The longest spelling + +is 23 characters; the longest pronunciation is also 23; the longest + +syntactic-tag field is also (coincidentally) 23; the number of + +syllables is just one character ('1' to '9'), and the longest + +verb-pattern field is 58. The fields are padded with spaces to the + +lengths of the longest, ie 23, 23, 23, 1 and 58, making the record + +length 128. The spelling begins at position 1, the pronunciation at + +position 24, the syntactic-tag field at position 47, the number of + +syllables is character 70, and the verb-pattern field begins at + +position 71. The file is sorted in ASCII sequence; this means, of + +course, that the entries are not in the same order as in the OALDCE. + + + Page 2 + + + + + + + +WHAT THE DICTIONARY CONTAINS + + + + Each entry consists of a spelling, a pronunciation, one or more + +syntactic tags (parts-of-speech) with rarity flags, a syllable count, + +and a set of verb patterns for verbs. + + + + The first file derived from the OALDCE (CUVOALD) contained all + +the headwords and subentries from the original dictionary - subentries + +are words like "abandonment" which comes under the headword "abandon" + +- except for a handful that contained funny characters (such as "Lsd" + +where the "L" was a pound sign). Subentries were not included if they + +consisted of two or three separate words that occurred individually + +elsewhere in the dictionary, such as "division bell" which comes under + +the headword "division", except when the combination formed a + +syntactic unit not immediately predictable from its constituents, eg + +"above board", which is listed as an adverb. To this list of about + +35,000 entries, I added about 2,500 proper names - common forenames, + +British towns with a population of over 5,000, countries, + +nationalities, states, counties and major cities of the world. I + +would like to have added many more proper names, but I didn't have the + +time. + + + + The second version of the file (CUV2) contained all these entries + +plus inflected forms making a total of about 68,000 entries. Since + +1986 I have made a number of corrections, added the rarity flags and + +the syllable counts and inserted about 2,000 new entries. The new + +entries, nearly all of which were derived forms of words already in + +the dictionary, were selected from a list of several thousand words + +that occurred in the LOB Corpus[3] but were not in CUV2. I also made + +changes to existing entries where these were implied by the new + +entries; for example, when adding a plural form of a word whose + +existing tag was "uncountable", it was necessary to change the tag of + +the singular form. I also added about 300 reasonably common + +abbreviations (see note below). + + + + A number of words (ie spellings) have more than one entry in the + +OALDCE, eg "water 1" (noun) and "water 2" (verb). In CUV2, each word + +has only one entry unless it has two different pronunciations, eg + +"abuse" (noun and verb). I have departed from this rule in the case + +of compound adjectives, such as "hard-working", which have a slightly + +different stress pattern depending on whether they are used + +attributively ("she's a hard-working girl") or predicatively ("she's + +very hard-working"). These are entered only once; they generally have + +the attributive stress pattern except when the predicative one seemed + +the more natural. (See also the note below on abbreviations.) I have + +also given only one entry to those words that have strong and weak + +forms of pronunciation, such as "am" (which can be pronounced &m, @m + +or m). Generally it is the strong form that is entered. + + + + As regards the coverage of the dictionary, readers might be + +interested in a paper by Geoffrey Sampson [4] in which he analyses a + +set of words from a sample of the LOB Corpus[3] that were not in CUV2. + +The recent additions should have gone some way to plugging the gaps + +that his study identified. + + + Page 3 + + + + + + + +THE SPELLINGS + + + + The spelling contains the characters "A" to "Z", "a" to "z", + +hyphen, apostrophe, space, umlaut or diaeresis (HEX 22), cedilla (3C), + +circumflex (5E), acute (5F), grave (60) and tilde (7E). These + +diacritic characters precede the letter that they mark, eg "se~nor". + +(There are also the characters "5" and "6" in "MI5" and "MI6".) + + + +THE PRONUNCIATIONS + + + + The pronunciation uses a set of characters very like the one + +adopted by the Alvey Speech Club for representing IPA in ASCII [2]. + +The system is as follows: + + + + i as in bead N as in sing + + I bid T thin + + e bed D then + + & (ampsnd) bad S shed + + A bard Z beige + + 0 (zero) cod tS etch + + O (cap O) cord dZ edge + + U good + + u food p t k b d g + + V bud m n f v s z + + 3 (three) bird r l w h j + + @ "a" in about + + + +eI as in day R-linking (the sounding + +@U go of a /r/ at the end of a + +aI eye word when it is + +aU cow followed by a vowel) + +oI boy is marked R + +I@ beer eg fAR for "far" + +e@ bare (compare "far away" + +U@ tour with "far beyond"). + + + +Primary stress: apostrophe eg @'baUt ("about") + +Secondary stress : comma eg ,&ntI'septIk + +Plus-sign as in "courtship" and "bookclub" + +'kOt+Sip 'bUk+klVb + + + +When the spelling contains a space and/or a + +hyphen, the pronunciation has one also, eg + +above board @,bVv 'bOd air-raid 'e@-reId + + + +THE SYNTACTIC TAGS + + + + Every entry in the dictionary has at least one syntactic tag + +(part-of-speech code). If an entry has more than one (eg "report" + +noun and verb), they are in ASCII order and separated by commas. A + +code consists of three characters, the first two being the syntactic + +tag and the third a frequency class. The first is one of the capital + +letters "G" to "Z" (inclusive), which have the following meanings: + + + + + Page 4 + + + + + +G Anomalous verb + +H Transitive verb + +I Intransitive verb + +J Both transitive and intransitive verb + + + +K Countable noun + +L Uncountable noun + +M Both countable and uncountable noun + +N Proper noun + + + +O Adjective + +P Adverb + +Q Pronoun + +R Definite article + +S Indefinite article + +T Preposition + +U Prefix + +V Conjunction + +W Interjection + +X Particle + +Y Abbreviation + +Z Not classified + + + + Into the M class go nouns used frequently in both ways, such as + +"coffee" ("a pot of coffee", "two coffees please"), and also nouns + +that are predominantly one or the other; they may be mainly + +uncountable with an occasional countable use, such as "waste" and + +"understanding" ("the barren wastes", "reach an understanding"), or + +mainly countable with an occasional uncountable use, like "ceremony" + +and "line" ("too much ceremony", "stand in line"). + + + + The second character in the tag code is either in the group "0" + +(zero) to "9", "@", or "A" to "E", in which case it indicates how to + +form inflexions, or it is one of the characters "a" to "z", "+" or + +"-", in which case it gives some extra information about the word. + +(Abbreviations have the following extra code symbols, not used by + +other entries: ">", ")", "]", "}", ":", "=" and "~".) + + + + The inflexion codes "0" to "5" are for verbs and have the + +following meanings: + + + +0 stem+s, stem+ing, stem+ed (like "work") + +1 stem+es, stem+ing, stem+ed (like "wish") + +2 replace final "e" by es, ing or ed (like "love") + +3 replace final "y" by ies, ying or ied (like "apply") + +4 stem+s; double final letter +ing or +ed (like "abet") + +5 all inflexions are given in full since at least one of them + + is irregular + + + + The inflexion codes "6" to "@" are for nouns: + + + +6 add s to form the plural (like "cat") + +7 add es (like "fox") + +8 replace final y by ies (like "pony") + +9 plural is the same as the singular (like "sheep") + + + Page 5 + + + + + + (if there is another plural form, this is entered + + separately, eg "herring" - "shoals of herring/ + + we'll have the herrings for tea") + +@ no plural + + + + The remaining inflexion codes "A" to "E" are for adjectives: + + + +A No -r or -st form + +B Comp is +r, Sup is +st (like "subtle") + +C +er, +est (like "light") + +D Change final y to ier, iest (like "heavy") + +E Comp or Sup irregular - given in full + + + + The letters "a" to "z" give extra information about the word. + +The letters "a" to "h" follow verbs, with the following meaning: + + + +a 3rd person sing present tense + +b present participle (-ing form) + +c past tense + +d past participle + +e some other part of the verb + + + +f to h follow anomalous verbs only: + + + +f contraction of pronoun with verb + +g contraction of verb with "not" + +h other contraction + + + + The letters "i" to "o" follow nouns: + + + +i singular form (pl is irregular or non-existent) + +j plural form + +k plural in form but behaves like a singular, + + eg "economics" (may be used as a plural also, + + eg "acoustics is a modern science/ the acoustics + + of this hall are dreadful") + + + +l to o follow proper nouns only: + + + +l forenames of people + +m countries, states, counties + +n towns and cities + +o other + + + + The letters "p" to "t" follow adjectives: + + + +p only used predicatively + +q only used attributively + +r comparative + +s superlative + +t can be attached to a preceding word by a hyphen + + + + The remaining small letters (and "+") are as follows: + + + +u adverb (not interrog or relative) + + + Page 6 + + + + + +v interrogative adverb + +w relative adverb + ++ adverbial particle + + + +x pronoun (not interrog or relative) + +y interrogative pronoun + +z relative pronoun + + + + If the first character of the tag code is "R" to "X" or "Z", the + +second character is always "-", ie there is never any extra + +information about words in these classes. + + + + The following characters are used only after "Y" (the + +abbreviation code): + +> singular noun (see notes below) + +) plural noun + +] both sing and plur + +} uncountable noun + +: title + += proper noun + +~ other + + + + Examples of tags are: K7, countable noun that forms its plural + +by adding es; H3, transitive verb that forms its inflexions like + +"apply"; Ic, past tense of an intransitive verb; Qz, relative pronoun; + +T-, preposition. The syntactic tags are presented in tabular form + +later in this document. + + + + There is, intentionally, some redundancy in this coding system. + +With the exception of "-", any given character in the second position + +only occurs with a particular wordclass; a "6", for example, can only + +qualify a noun, an "r" can only qualify an adjective, and so on. This + +makes the programming a bit easier. There is, obviously, no mnemonic + +significance to the codes; it is not intended that people should have + +to read these codes directly. + + + +THE RARITY FLAGS + + + + The third character of the syntactic tag is either "*", "%" or + +"$". This is a marker of word-frequency. "*" means that the word + +occurs in the most frequent 500 words of the LOB Corpus[3], the Brown + +Corpus[5], the Thorndike-Lorge word count[6] and the American Heritage + +Word Frequency Book[7], ie it occurs in the most frequent 500 of all + +four lists. + + + + The "$" code means that the word is, in my opinion, rare, with my + +opinions being combined to some extent with those of two friends of + +mine. I realise that this definition of rarity seems highly + +unscientific, but there is no appreciably better way of doing it. I + +could perhaps have taken the opinions of many more people, but this + +would have been a long job and I doubt if the resulting list would + +have been much different. The problem is that today's + +computer-readable corpora, while certainly large enough to provide + +data about common words, are nowhere near large enough to provide data + +about rare words. A word that fails to appear in a corpus of several + + + Page 7 + + + + + +million words is not necessarily rare; conversely, a word that appears + +several times in one sample might still be rare in general use. My + +spelling corrector needed to know something about the frequency of + +words in its dictionary and, in the absence of hard data, it was + +better for it to have my estimates than none at all. + + + + The third code "%" is by far the commonest in the dictionary and + +denotes words that are neither "*" nor "$". + + + + The rarity codes are attached to tags rather than to words + +because a word can be common in one use but rare in another. "Go", + +for example, is very common as a verb, but less common as a noun. The + +OALDCE lists "aneroid" as adjective and noun. While I am reasonably + +familiar with this word in the phrase "aneroid barometer", I can't + +remember ever coming across it as a noun. + + + +THE VERB PATTERNS + + + + The final string of letters and numbers, separated by commas, is + +for verbs only, and shows the "verb patterns" - the sentence + +structures - in which the verbs can occur. If an entry has more than + +one verb pattern, they are entered in number order and then in letter + +order within numbers. This (fairly complicated) system is taken + +straight from the OALDCE, and is explained in the book's introduction. + + + +THE SYLLABLE COUNTS + + + + The number of syllables was computed for each word by separate + +algorithms applied to the spelling and the pronunciation. If they + +produced the same number, as they did in the great majority of cases, + +this was entered in the dictionary. The remaining three thousand or + +so I did by hand. + + + + For the great majority of words, the number of syllables is + +obvious. There are a few, however, for which this is not the case. + +The problems generally concern the "@" phoneme. + + + + The sounds "I@" ("pier"), "U@" ("tour") and "aI@" ("hire") seem + +sometimes to be one syllable and sometimes two. I find that my own + +feelings - and those of others I have spoken to - are influenced by + +the spelling of the word. Whereas I am happy to count "higher" as + +having two syllables, I am not so sure about "hire". Similarly with + +"sear" (one) and "seer" (two). The sounds that follow the "@" also + +seem to have an effect. While I might be persuaded that "fire" has + +two syllables, I would be not happy about "fire-alarm" having four. + +Similarly, if "acquire" has three, does "acquiring" have four? + + + + The problem is that the "@" is such a small part of the sound + +that it hardly qualifies as a syllable. If, on the one hand, it + +signifies the presence of a morpheme, its status seems raised and I am + +happy to accept it as a syllable. If, on the other hand, it has no + +special status and, furthermore, the adjacent sounds cause it almost + +to disappear, then I can't bring myself to call it a syllable at all. + +If it is in-between, then I am simply not sure. Being forced to make + +a decision, I have generally counted "fire/hire/wire/pier/tour" and + + + Page 8 + + + + + +the like as one syllable, but, on another day, I might easily have + +counted them as two. + + + + There is another continuum of "@" sounds in the middle of words + +like "labelling". Some seem fairly clear, such as "enamelling"; + +others not so, like "gambling" and "peddling" (and are "gambolling" + +and "pedalling" any different?). I suspect my decisions on these have + +been somewhat arbitrary, depending on whether a pronunciation with + +more "@" or less "@" seemed more natural at the time. + + + + One more group of problematic words are those ending "ion" + +pronounced sometimes "I@n" and sometimes "j@n". I can imagine a vicar + +intoning the word "communion" in church so as to give it a full four + +syllables, but then ordering a case of communion wine over the phone + +and giving it only three. "Champion" in "Champion the Wonder Horse" + +had three but in "We are the champions" it has two. Some of these + +have only one regular pronunciation - "companion", for example, + +clearly has three syllables - but, for the others, I suspect my + +decisions depended on which pronunciation came to mind when I was + +considering them. + + + +THE ABBREVIATION ENTRIES + + + + Largely because of the paper by Geoffrey Sampson referred to + +above, I have included many more abbreviations in the 1992 version of + +the dictionary, but I have done so with some reluctance since they do + +not fit easily into the existing scheme. + + + + There were about 50 abbreviations (examples include "eg", "ie", + +"OAP" and "TNT") in the previous version, because they were listed in + +the main body of the OALDCE. They were not given any distinctive tags + +in the 1986 version of CUV2. This was a nuisance since, for example, + +any algorithm attempting to match spelling and pronunciation would be + +puzzled by an entry such as "etc" pronounced It'set@r@. I have now + +added about 300 abbreviations that seemed to me to be reasonably + +common, and given all abbreviations their own tag. + + + + Some abbreviations, such as "amp" and "rev", seem to behave + +pretty much like ordinary words and I have not marked them as + +abbreviations. The rest now have their own tag - "Y". (The Y tag in + +the previous version was used for adverbial particles; these are now + +tagged P+.) + + + + Some abbreviations clearly have their own pronunciation, eg + +UNESCO, and others clearly don't, eg cwt (hundredweight). I have + +given them their own pronunciation when it seemed to me that the + +abbreviation was sometimes pronounced on its own. For example, I can + +imagine someone saying that some event takes place in dZ&n @n feb (Jan + +and Feb), but I can't imagine them saying it takes place in mAr @n &pr + + _ +(Mar and Apr), so "Jan" gets dZn whereas "Apr" gets 'eIprIl. But this + +is often pretty arbitrary. + + + + It is not uncommon for two words to share the same abbreviation, + +eg "Dr" for "Doctor" and "Drive" or "St" for "Saint" and "Street". It + +would have been a possibility to put in two (or sometimes more) + + + Page 9 + + + + + +entries for such items, along the lines of "convert" (noun and verb), + +but I did not feel that 'd0kt@R (or draIv) was the pronunciation of + +"Dr" in the way that 'k0nv3t (or k@n'v3t) was the pronunciation of + +"convert", so I was unwilling to give such abbreviations two or more + +entries, but at the same time I wanted to put something in the + +pronunciation field, so I just put one of the pronunciations in. + + + + There is also an unsatisfactorily arbitrary quality to some of + +the tags. Abbreviations that can go after an article or possessive + +("my PhD", "an FRS", "the MCC") were tagged singular noun ("Y>"), and + +a few can be plural ("GCSEs") ("Y)"). Some, mostly units of + +measurement ("cc", "rpm"), can be both ("Y]"). Uncountable noun + +abbreviations ("LSD", "TB") get "Y}". Titles ("Mr", "Col") get "Y:" + +while proper names ("Mon", "Aug") or abbreviations likely to form part + +of a proper name ("Ave", "Rd") get "Y=". Others ("asap", "viz") get + +"Y~". Oddly, some organization names seem to be proper names ("RADA", + +"UNESCO") while others don't ("the BBC", "the UN"). + + + + In short, then, I am uneasy about many of the decisions I have + +had to make in order to get these abbreviation entries into the same + +form as the rest of the dictionary, but the important thing is that + +they are now in the dictionary, so a piece of software using the + +dictionary will recognize them, and they are distinctively tagged for + +anyone who wants to take them out. + + + +ACKNOWLEDGEMENTS + + + + Most of the work of extracting the required information from the + +machine-readable OALDCE, putting it into a standard form in CUVOALD + +and generating CUV2 was carried out by me between January 1985 and + +March 1986. I added the rarity flags in 1988 and the syllable counts + +in 1990 and inserted the new entries in March-June 1992. Susan Drew + +keyed in the pronunciations of some of the entries, and the file was + +proofread by Philip Baker, Sylvia Davidson, Ann Jones, Ed Hastings, + +Kate Murray and Diana Whitaker. Deepa Dougal, as part of her MSc + +project, carried out the task of looking up all the words from the LOB + +Corpus in CUV2. + + + +COPYRIGHT + + + + I am making the file available to others, via the Oxford Text + +Archive, so that researchers who need a reasonably large + +computer-usable dictionary do not need to spend months, as I did, + +putting one together. Anyone contemplating commercial use of the file + +should contact the Oxford University Press. + + + +REFERENCES + + + +[1] Hornby A.S., Oxford Advanced Learner's Dictionary of + + Current English, Third Edition, Oxford University + + Press, 1974 + + + +[2] Wells J.W., "A standardised machine-readable phonetic + + notation", IEE conference "Speech input/output: + + techniques and applications" London, Easter 1986 + + + Page 10 + + + + + + + +[3] Hofland K, and S. Johansson, Word Frequencies in British + + and American English, Norwegian Computing Centre for the + + Humanities/ Longman, 1982 + + + +[4] Sampson G., "How fully does a machine-usable dictionary + + cover English text?" Literary and Linguistic Computing, + + Vol 4, No 1, 1989, pp 29-35 + + + +[5] Kucera H. and W.N. Francis, Computational Analysis of + + Present-day American English, Brown University Press, + + 1967 + + + +[6] Thorndike E.L. and I. Lorge, The Teacher's Word Book of + + 30,000 Words, Teachers College, Columbia University, + + 1944 + + + +[7] Carroll J.B., P. Davies and B. Richman, Word Frequency + + Book, American Heritage, 1971 + + + Page 11 + + + + + + + +SYNTACTIC TAGS + + + + FIRST CHARACTER SECOND CHARACTER + + + +VERBS: G Anomalous 0 inflects like "work" + + H Transitive 1 "wish" + + I Intransitive 2 "love" + + J Trans & Intrans 3 "apply" + + 4 "abet" + + 5 irregular + + + + a 3rd pers sing pres tense + + b present participle (-ing) + + c past tense + + d past participle + + e other part of verb + + f contraction pronoun+anom vb + + g contraction anom vb+not + + h contraction anom vb, other + + + +NOUNS: K Countable 6 plural like "cat" + + L Uncountable 7 "fox" + + M C & U 8 "pony" + + N Proper noun 9 pl same as sg, like "salmon" + + @ no plural + + + + i sing form + + j plural form + + k pl but acts sg, like "economics" + + l proper, forename eg "Sandra" + + m proper, country etc, eg "Scotland" + + n proper, town eg "Scunthorpe" + + o other, eg "Saturn" + + + +ADJS: O A no -er or -est form + + B +r, +st like "subtle" + + C +er, +est like "light" + + D y to ier, iest like "heavy" + + E irregular comp &/or sup + + + + p predicative + + q attributive + + r comparative form + + s superlative form + + t can be attached by hyphen eg "bellied" + + + +OTHER: P Adverb u not interrog or relative + + v interrogative + + w relative + + + adverbial particle + + + + Q Pronoun x not interrog or relative + + y interrogative + + z relative + + + Page 12 + + + + + + + + R Definite article - + + S Indefinite article - + + T Preposition - + + U Prefix - + + V Conjunction - + + W Interjection - + + X Particle - + + Y Abbreviation > sing noun + + ) plur noun + + ] both sing and plur + + } uncountable noun + + : title + + = proper noun + + ~ other abbreviation + + Z Not classified - + + + Page 13 + + + + + + + +Samples from CUV2 + +First 50 lines, then 10 lines every 10000, then the last 50. + + + + + +Line 1 + +'em @m Qx$ 1 + +'neath niT T-$ 1 + +'shun SVn W-$ 1 + +'twas tw0z Gf$ 1 + +'tween twin Pu$,T-$ 1 + +'tween-decks 'twin-deks Pu$ 2 + +'twere tw3R Gf$ 1 + +'twill twIl Gf$ 1 + +'twixt twIkst T-$ 1 + +'twould twUd Gf$ 1 + +'un @n Qx$ 1 + +A eI Ki$ 1 + +A's eIz Kj$ 1 + +A-bomb 'eI-b0m K6$ 2 + +A-bombs 'eI-b0mz Kj$ 2 + +A-level 'eI-levl K6% 3 + +A-levels 'eI-levlz Kj% 3 + +AA ,eI'eI Y>% 2 + +ABC ,eI,bi'si Y>% 3 + +ABCs ,eI,bi'siz Y)$ 3 + +AD ,eI'di Y~% 2 + +AGM ,eIdZI'em Y>% 2 + +AIDS eIdz Y}% 1 + +AWOL 'eIw0l Y~% 2 + +Aachen 'Ak@n Nn$ 2 + +Aarhus 'Ahus Nn$ 2 + +Abe eIb Nl$ 1 + +Abercarn '&b@kAn Nn$ 3 + +Aberdare ,&b@'de@R Nn$ 3 + +Aberdeen ,&b@'din Nn% 3 + +Abergavenny ,&b@g@'venI Nn% 5 + +Abergele ,&b@'gelI Nn$ 4 + +Abertillery ,&b@tI'le@rI Nn% 5 + +Aberystwyth ,&b@'rIstwIT Nn% 4 + +Abingdon '&bINd@n Nn% 3 + +Abo '&b@U K6$ 2 + +Aborigine ,&b@'rIdZ@nI K6% 5 + +Aborigines ,&b@'rIdZ@nIz Kj% 5 + +Abos '&b@Uz Kj$ 2 + +Abraham 'eIbr@h&m Nl% 3 + +Accra @'krA Nn% 2 + +Accrington '&krINt@n Nn% 3 + +Achilles @'kIliz Nl% 3 + +Ada 'eId@ Nl% 2 + +Adam '&d@m Nl% 2 + +Addis Ababa ,&dIs '&b@b@ Nn% 5 + +Addressograph @'dres@UgrAf K6$ 4 + +Addressographs @'dres@UgrAfs Kj$ 4 + +Adelaide '&d@leId Nn% 3 + + + Page 14 + + + + + +Adrian 'eIdrI@n Nl% 3 + + + +Line 10001 + +boggling 'b0glIN Ib% 22A,3A + +boggy 'b0gI OD% 2 + +bogie 'b@UgI K6$ 2 + +bogies 'b@UgIz Kj$ 2 + +bogs b0gz Ja%,Kj% 12E,15B + +bogus 'b@Ug@s OA% 2 + +bogy 'b@UgI K8$ 2 + +boh b@U W-% 1 + +bohemian b@U'himI@n K6%,OA% 4 + +bohemians b@U'himI@nz Kj% 4 + + + +Line 20001 + +dins dInz Ja$ 12C + +dint dInt K6% 1 + +dints dInts Kj$ 1 + +diocesan daI'0sIsn K6$,OA% 4 + +diocesans daI'0sIsnz Kj$ 4 + +diocese 'daI@sIs K6% 3 + +dioceses 'daI@sIsIz Kj$ 4 + +dioxide daI'0ksaId K6% 3 + +dioxides daI'0ksaIdz Kj% 3 + +dip dIp J4%,M6% 12A,2C,3A,6A,14 + + + +Line 30001 + +half-tracks 'hAf-tr&ks Kj$ 2 + +half-truth 'hAf-truT K6% 2 + +half-truths 'hAf-truDz Kj% 2 + +half-volley hAf-'v0lI K6% 3 + +half-volleys hAf-'v0lIz Kj% 3 + +half-yearly hAf-'j3lI OA%,Pu% 3 + +halfback 'hAfb&k K6% 2 + +halfbacks 'hAfb&ks Kj% 2 + +halfpennies 'heIpnIz Kj% 2 + +halfpenny 'heIpnI K8% 2 + + + +Line 40001 + +misdealt ,mIs'delt Jc$,Jd$ 22A,6A + +misdeed ,mIs'did K6% 2 + +misdeeds ,mIs'didz Kj% 2 + +misdemeanour ,mIsdI'min@R K6% 4 + +misdemeanours ,mIsdI'min@z Kj% 4 + +misdirect ,mIsdI'rekt H0% 36A + +misdirected ,mIsdI'rektId Hc%,Hd% 46A + +misdirecting ,mIsdI'rektIN Hb% 46A + +misdirection ,mIsdI'rekSn K6$ 4 + +misdirections ,mIsdI'rekSnz Kj$ 4 + + + +Line 50001 + +question-master 'kwestS@n-mAst@R K6% 4 + +question-masters 'kwestS@n-mAst@z Kj% 4 + +questionable 'kwestS@n@bl OA% 4 + +questionably 'kwestS@n@blI Pu% 4 + + + Page 15 + + + + + +questioned 'kwestS@nd Hc%,Hd% 26A,10 + +questioner 'kwestS@n@R K6% 3 + +questioners 'kwestS@n@z Kj% 3 + +questioning 'kwestS@nIN Hb% 36A,10 + +questioningly 'kwestS@nINlI Pu% 4 + +questionnaire ,kwestS@'ne@R K6% 3 + + + +Line 60001 + +statuesque ,st&tSU'esk OA% 3 + +statuette ,st&tSU'et K6% 3 + +statuettes ,st&tSU'ets Kj% 3 + +stature 'st&tS@R L@% 2 + +status 'steIt@s L@% 2 + +status quo ,steIt@s 'kw@U Ki% 3 + +statute 'st&tSut K6% 2 + +statute-book 'st&tSut-bUk K6% 3 + +statute-books 'st&tSut-bUks Kj$ 3 + +statutes 'st&tSuts Kj% 2 + + + +Line 70001 + +wolfram 'wUlfr@m L@$ 2 + +wolfs wUlfs Ha% 16A,15A + +wolves wUlvz Kj% 1 + +woman 'wUm@n Ki* 2 + +womanhood 'wUm@nhUd L@% 3 + +womanish 'wUm@nIS OA% 3 + +womanize 'wUm@naIz I2% 3 + +womanized 'wUm@naIzd Ic%,Id% 3 + +womanizer 'wUm@naIz@R K6% 4 + +womanizers 'wUm@naIz@z Kj% 4 + + + +Line 70597 + +zest zest L@% 1 + +zestful 'zestf@l OA% 2 + +zestfully 'zestf@lI Pu% 3 + +zigzag 'zIgz&g I4%,K6%,Pu% 2 + +zigzagged 'zIgz&gd Ic%,Id% 2 + +zigzagging 'zIgz&gIN Ib% 3 + +zigzags 'zIgz&gz Ia%,Kj% 2 + +zinc zINk L@% 1 + +zing zIN L@% 1 + +zinnia 'zInI@ K6$ 3 + +zinnias 'zInI@z Kj$ 3 + +zip zIp H4%,K6% 16A,15B,22 + +zip code 'zIp k@Ud K6% 2 + +zip codes 'zIp k@Udz Kj% 2 + +zip-fastener 'zIp-f&sn@R K6% 3 + +zip-fasteners 'zIp-f&sn@z Kj% 3 + +zipped zIpt Hc%,Hd% 16A,15B,22 + +zipper 'zIp@R K6% 2 + +zippers 'zIp@z Kj% 2 + +zipping 'zIpIN Hb% 26A,15B,22 + +zips zIps Ha%,Kj% 16A,15B,22 + +zither 'zID@R K6% 2 + +zithers 'zID@z Kj% 2 + + + Page 16 + + + + + +zloty 'zl0tI K6$ 2 + +zlotys 'zl0tIz Kj$ 2 + +zodiac 'z@UdI&k K6% 3 + +zodiacs 'z@UdI&ks Kj$ 3 + +zombie 'z0mbI K6% 2 + +zombies 'z0mbIz Kj% 2 + +zonal 'z@Unl OA% 2 + +zone z@Un H2%,K6% 16A + +zoned z@Und Hc%,Hd% 16A + +zones z@Unz Ha%,Kj% 16A + +zoning 'z@UnIN Hb%,L@% 26A + +zoo zu K6% 1 + +zoological ,zu@'l0dZIkl OA% 5 + +zoologist zu'0l@dZIst K6% 4 + +zoologists zu'0l@dZIsts Kj% 4 + +zoology zu'0l@dZI L@% 4 + +zoom zum I0%,L@% 12A,2C + +zoomed zumd Ic%,Id% 12A,2C + +zooming 'zumIN Ib% 22A,2C + +zooms zumz Ia% 12A,2C + +zoophyte 'z@U@faIt K6$ 3 + +zoophytes 'z@U@faIts Kj$ 3 + +zoos zuz Kj% 1 + +zoot suit 'zut sut K6$ 2 + +zoot suits 'zut suts Kj$ 2 + +zucchini zU'kinI M9% 3 + +zucchinis zU'kinIz Kj$ 3 + + + +End of input file after line 70646. + +</TEXT></TEI.2>
\ No newline at end of file diff --git a/next-lib/src/parse/oald/src/lexicon2.pl b/next-lib/src/parse/oald/src/lexicon2.pl new file mode 100644 index 000000000..e31be8520 --- /dev/null +++ b/next-lib/src/parse/oald/src/lexicon2.pl @@ -0,0 +1,42757 @@ +% Prolog lexicon for SHARDS, from OALD machine-readable dictionary +% Produced by asc2lex, Matthew Purver 19/04/2001 +% +% Manually edited for irregulars, CMTs, determiners etc. +% +% As this material is obtained from the OALD, it is freely available +% for RESEARCH PURPOSES ONLY. See the OTA's TEI header in +% ascii_0710-2.txt for more details. + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Morphological interface predicates +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% noun/6 +% noun( ?Stem, ?Word, ?Type, ?Number, ?Gender, ?Case ) +% +% Morphological interface to noun/4 - relates word stem +% Stem to surface word Word. +% Number will be 'sing' or 'plur' +% Gender currently undefined +% Case currently always 'case' (i.e. any) +% Type will be 'mass' or 'count' (both may succeed) +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +noun( Word, Word, Type, sing, _Gender, case ) :- + noun( Word, _Plural, RawType, _SemClass ), + noun_type( RawType, Type ). + +noun( Stem, Word, Type, plur, _Gender, case ) :- + noun( Stem, Word, RawType, _SemClass ), + noun_type( RawType, Type ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% noun_type( +RawType, ?Type ) +% +% Returns type as defined in lexicon, except for 'both' +% which gets converted to 'mass' or 'count' +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +noun_type( Type, Type ) :- + \+ Type = both. +noun_type( both, mass ). +noun_type( both, count ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% verb/5 +% verb( ?Stem, ?Word, ?VForm, ?Number, ?Type ) +% +% Morphological interface to verb/7 - relates word stem +% Stem to surface word Word. +% VForm currently 'inf', 'pres' or 'past' +% Number currently 's3', 'nons3' or 'person' (i.e. undefined) +% Type will be 'intran', 'tran', 'ditran', etc. +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +verb( Word, Word, inf, person, Type ) :- + verb( Word, _, _, _, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +verb( Word, Word, pres, nons3, Type ) :- + verb( Word, _, _, _, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +verb( Stem, Word, pres, s3, Type ) :- + verb( Stem, Word, _, _, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +verb( Stem, Word, past, person, Type ) :- + verb( Stem, _, _, Word, _, Cat, CatList ), + verb_type( Cat, CatList, Type ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% verb_type( +RawType, +CatList, ?Type ) +% +% Type is a verb subcategory type determined from the +% RawType atom and CatList list of numbers defined in +% the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +verb_type( intran, _, intran ). % VP -> V +verb_type( tran, _, tran ). % VP -> V NP +verb_type( _, CatList, ditran ) :- % VP -> V NP NP + memberchk( '12A', CatList ); + memberchk( '12B', CatList ); + memberchk( '12C', CatList ). +verb_type( _, CatList, stran ) :- % VP -> V [question] + memberchk( '10', CatList ). +verb_type( _, CatList, pp_to ) :- % VP -> V PP + memberchk( '3A', CatList ). +verb_type( _, CatList, pp_for ) :- % VP -> V PP + memberchk( '3A', CatList ). +verb_type( _, CatList, subjraise ) :- % VP -> V [to+inf] (subject raising) + memberchk( '4E', CatList ). +verb_type( _, CatList, subjcon ) :- % VP -> V [to+inf] (subject control) + memberchk( '7A', CatList ). +verb_type( _, CatList, aux ) :- % VP -> V [inf] (auxiliary) + memberchk( '5', CatList ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% adj/3 +% adj( ?Stem, ?Word, ?Type ) +% +% Morphological interface to adj/4 - relates word stem +% Stem to surface word Word. +% Type will be 'simple', 'comparative' or 'superlative' +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +adj( Word, Word, simple ) :- + adj( Word, _, _, _ ). + +adj( Stem, Word, comparative ) :- + adj( Stem, Word, _, _ ). + +adj( Stem, Word, superlative ) :- + adj( Stem, _, Word, _ ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% General predicates +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% word( ?Word ) +% +% Succeeds if Word is a word defined in the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +word( Word ) :- + noun( _, Word, _, _, _, _ ); + pron( Word, _, _, _ ); + verb( _, Word, _, _, _ ); + adj( _, Word, _ ); + adv( Word, _ ); + prep( Word, _ ); + conj( Word, _ ); + det( Word, _, _ ); + misc( Word, _, _ ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% open_class_word( ?Word ) +% +% Succeeds if Word is a noun/verb/adj/adv in the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +open_class_word( Word ) :- + noun( _, Word, _, _, _, _ ); + verb( _, Word, _, _, _ ); + adj( _, Word, _ ); + adv( Word, _ ). + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% unknown_word( +Word ) +% +% Succeeds if Word is NOT defined in the lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +unknown_word( Word ) :- + \+ word( Word ). + + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Lexicon +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + +verb( 'hoover', 'hoovers', 'hoovering', 'hoovered', 'hoovered', tran, ['6A'] ). +verb( 'latinize', 'latinizes', 'latinizing', 'latinized', 'latinized', tran, [] ). +verb( 'roneo', 'roneos', 'roneoing', 'roneoed', 'roneoed', tran, [] ). +verb( 'x-ray', 'x-rays', 'x-raying', 'x-rayed', 'x-rayed', tran, ['6A'] ). +verb( 'xerox', 'xeroxes', 'xeroxing', 'xeroxed', 'xeroxed', tran, [] ). +verb( 'abandon', 'abandons', 'abandoning', 'abandoned', 'abandoned', tran, ['6A','14'] ). +verb( 'abase', 'abases', 'abasing', 'abased', 'abased', tran, ['6B'] ). +verb( 'abash', 'abashes', 'abashing', 'abashed', 'abashed', tran, ['6A'] ). +verb( 'abate', 'abates', 'abating', 'abated', 'abated', _, ['2A','6A'] ). +verb( 'abbreviate', 'abbreviates', 'abbreviating', 'abbreviated', 'abbreviated', tran, ['6A','14'] ). +verb( 'abdicate', 'abdicates', 'abdicating', 'abdicated', 'abdicated', _, ['2A','6A'] ). +verb( 'abduct', 'abducts', 'abducting', 'abducted', 'abducted', tran, ['6A'] ). +verb( 'abet', 'abets', 'abetting', 'abetted', 'abetted', tran, ['6A','14'] ). +verb( 'abhor', 'abhors', 'abhorring', 'abhorred', 'abhorred', tran, ['6A'] ). +verb( 'abide', 'abides', 'abiding', 'abided', 'abided', _, ['2C','3A','6A'] ). +verb( 'abjure', 'abjures', 'abjuring', 'abjured', 'abjured', tran, ['6A'] ). +verb( 'abolish', 'abolishes', 'abolishing', 'abolished', 'abolished', tran, ['6A'] ). +verb( 'abominate', 'abominates', 'abominating', 'abominated', 'abominated', tran, ['6A','6C'] ). +verb( 'abort', 'aborts', 'aborting', 'aborted', 'aborted', _, ['2A','6A'] ). +verb( 'abound', 'abounds', 'abounding', 'abounded', 'abounded', intran, ['3A'] ). +verb( 'about-face', 'about-faces', 'about-facing', 'about-faced', 'about-faced', intran, [] ). +verb( 'abrade', 'abrades', 'abrading', 'abraded', 'abraded', tran, ['6A'] ). +verb( 'abridge', 'abridges', 'abridging', 'abridged', 'abridged', tran, ['6A'] ). +verb( 'abrogate', 'abrogates', 'abrogating', 'abrogated', 'abrogated', tran, ['6A'] ). +verb( 'abscond', 'absconds', 'absconding', 'absconded', 'absconded', intran, ['2A','3A'] ). +verb( 'absent', 'absents', 'absenting', 'absented', 'absented', tran, ['6B','14'] ). +verb( 'absolve', 'absolves', 'absolving', 'absolved', 'absolved', tran, ['6A','14'] ). +verb( 'absorb', 'absorbs', 'absorbing', 'absorbed', 'absorbed', tran, ['6A'] ). +verb( 'abstain', 'abstains', 'abstaining', 'abstained', 'abstained', intran, ['2A','3A'] ). +verb( 'abstract', 'abstracts', 'abstracting', 'abstracted', 'abstracted', tran, ['6A','14'] ). +verb( 'abuse', 'abuses', 'abusing', 'abused', 'abused', tran, ['6A'] ). +verb( 'abut', 'abuts', 'abutting', 'abutted', 'abutted', intran, ['3A'] ). +verb( 'accede', 'accedes', 'acceding', 'acceded', 'acceded', intran, ['2A','3A'] ). +verb( 'accelerate', 'accelerates', 'accelerating', 'accelerated', 'accelerated', _, ['2A','6A'] ). +verb( 'accent', 'accents', 'accenting', 'accented', 'accented', tran, ['6A'] ). +verb( 'accentuate', 'accentuates', 'accentuating', 'accentuated', 'accentuated', tran, ['6A'] ). +verb( 'accept', 'accepts', 'accepting', 'accepted', 'accepted', _, ['2A','6A','9','16B'] ). +verb( 'acclaim', 'acclaims', 'acclaiming', 'acclaimed', 'acclaimed', tran, ['6A','16B','23'] ). +verb( 'acclimate', 'acclimates', 'acclimating', 'acclimated', 'acclimated', _, [] ). +verb( 'acclimatize', 'acclimatizes', 'acclimatizing', 'acclimatized', 'acclimatized', _, ['2A','14'] ). +verb( 'accommodate', 'accommodates', 'accommodating', 'accommodated', 'accommodated', tran, ['6A','14'] ). +verb( 'accompany', 'accompanies', 'accompanying', 'accompanied', 'accompanied', tran, ['6A','14'] ). +verb( 'accomplish', 'accomplishes', 'accomplishing', 'accomplished', 'accomplished', tran, ['6A'] ). +verb( 'accord', 'accords', 'according', 'accorded', 'accorded', _, ['2A','2C','3A','12A','13A'] ). +verb( 'accost', 'accosts', 'accosting', 'accosted', 'accosted', tran, ['6A'] ). +verb( 'account', 'accounts', 'accounting', 'accounted', 'accounted', _, ['3A','25'] ). +verb( 'accredit', 'accredits', 'accrediting', 'accredited', 'accredited', tran, ['14'] ). +verb( 'accrue', 'accrues', 'accruing', 'accrued', 'accrued', intran, ['2A','3A'] ). +verb( 'accumulate', 'accumulates', 'accumulating', 'accumulated', 'accumulated', _, ['2A','6A'] ). +verb( 'accuse', 'accuses', 'accusing', 'accused', 'accused', tran, ['6A','14'] ). +verb( 'accustom', 'accustoms', 'accustoming', 'accustomed', 'accustomed', tran, ['14'] ). +verb( 'ache', 'aches', 'aching', 'ached', 'ached', intran, ['2A','3A','4A'] ). +verb( 'achieve', 'achieves', 'achieving', 'achieved', 'achieved', tran, ['6A'] ). +verb( 'acidify', 'acidifies', 'acidifying', 'acidified', 'acidified', _, ['2A','6A'] ). +verb( 'acknowledge', 'acknowledges', 'acknowledging', 'acknowledged', 'acknowledged', tran, ['6A','6C','9','16B','24A','25'] ). +verb( 'acquaint', 'acquaints', 'acquainting', 'acquainted', 'acquainted', tran, ['14'] ). +verb( 'acquiesce', 'acquiesces', 'acquiescing', 'acquiesced', 'acquiesced', intran, ['2A','3A'] ). +verb( 'acquire', 'acquires', 'acquiring', 'acquired', 'acquired', tran, ['6A'] ). +verb( 'acquit', 'acquits', 'acquitting', 'acquitted', 'acquitted', tran, ['6A','14','16B'] ). +verb( 'act', 'acts', 'acting', 'acted', 'acted', _, ['2A','2C','3A','6A','15B'] ). +verb( 'activate', 'activates', 'activating', 'activated', 'activated', tran, ['6A'] ). +verb( 'actuate', 'actuates', 'actuating', 'actuated', 'actuated', tran, ['6A'] ). +verb( 'ad-lib', 'ad-libs', 'ad-libbing', 'ad-libbed', 'ad-libbed', intran, ['2A'] ). +verb( 'adapt', 'adapts', 'adapting', 'adapted', 'adapted', tran, ['6A','14'] ). +verb( 'add', 'adds', 'adding', 'added', 'added', _, ['2C','3A','6A','9','14','15B'] ). +verb( 'addict', 'addicts', 'addicting', 'addicted', 'addicted', tran, [] ). +verb( 'addle', 'addles', 'addling', 'addled', 'addled', _, ['2A','6A'] ). +verb( 'address', 'addresses', 'addressing', 'addressed', 'addressed', tran, ['6A','14','16B'] ). +verb( 'adduce', 'adduces', 'adducing', 'adduced', 'adduced', tran, ['6A'] ). +verb( 'adhere', 'adheres', 'adhering', 'adhered', 'adhered', intran, ['2A','3A'] ). +verb( 'adjoin', 'adjoins', 'adjoining', 'adjoined', 'adjoined', _, ['2A','6A'] ). +verb( 'adjourn', 'adjourns', 'adjourning', 'adjourned', 'adjourned', _, ['2A','2C','6A'] ). +verb( 'adjudge', 'adjudges', 'adjudging', 'adjudged', 'adjudged', tran, ['9','14','25'] ). +verb( 'adjudicate', 'adjudicates', 'adjudicating', 'adjudicated', 'adjudicated', _, ['2A','3A','6A','14','25'] ). +verb( 'adjure', 'adjures', 'adjuring', 'adjured', 'adjured', tran, ['17'] ). +verb( 'adjust', 'adjusts', 'adjusting', 'adjusted', 'adjusted', tran, ['6A','14'] ). +verb( 'administer', 'administers', 'administering', 'administered', 'administered', _, ['6A','14'] ). +verb( 'admire', 'admires', 'admiring', 'admired', 'admired', tran, ['6A'] ). +verb( 'admit', 'admits', 'admitting', 'admitted', 'admitted', _, ['3A','6A','6C','9','14','25'] ). +verb( 'admix', 'admixes', 'admixing', 'admixed', 'admixed', _, ['2A','6A'] ). +verb( 'admonish', 'admonishes', 'admonishing', 'admonished', 'admonished', tran, ['6A','14'] ). +verb( 'adopt', 'adopts', 'adopting', 'adopted', 'adopted', tran, ['6A'] ). +verb( 'adore', 'adores', 'adoring', 'adored', 'adored', tran, ['6A','6C'] ). +verb( 'adorn', 'adorns', 'adorning', 'adorned', 'adorned', tran, ['6A','14'] ). +verb( 'adulterate', 'adulterates', 'adulterating', 'adulterated', 'adulterated', tran, ['6A','14'] ). +verb( 'adumbrate', 'adumbrates', 'adumbrating', 'adumbrated', 'adumbrated', tran, ['6A'] ). +verb( 'advance', 'advances', 'advancing', 'advanced', 'advanced', _, ['2A','2B','3A','6A','12A','13A','14'] ). +verb( 'advantage', 'advantages', 'advantaging', 'advantaged', 'advantaged', tran, ['6A'] ). +verb( 'adventure', 'adventures', 'adventuring', 'adventured', 'adventured', tran, [] ). +verb( 'advert', 'adverts', 'adverting', 'adverted', 'adverted', intran, ['3A'] ). +verb( 'advertise', 'advertises', 'advertising', 'advertised', 'advertised', _, ['2A','3A','6A'] ). +verb( 'advise', 'advises', 'advising', 'advised', 'advised', _, ['3A','6A','6C','14','17','20','21'] ). +verb( 'advocate', 'advocates', 'advocating', 'advocated', 'advocated', tran, ['6A','6C'] ). +verb( 'aerate', 'aerates', 'aerating', 'aerated', 'aerated', tran, ['6A'] ). +verb( 'affect', 'affects', 'affecting', 'affected', 'affected', tran, ['6A','7A'] ). +verb( 'affiance', 'affiances', 'affiancing', 'affianced', 'affianced', tran, ['6A'] ). +verb( 'affiliate', 'affiliates', 'affiliating', 'affiliated', 'affiliated', _, ['2A','6A','14'] ). +verb( 'affirm', 'affirms', 'affirming', 'affirmed', 'affirmed', _, ['2A','6A','9','14'] ). +verb( 'affix', 'affixes', 'affixing', 'affixed', 'affixed', tran, ['6A','14'] ). +verb( 'afflict', 'afflicts', 'afflicting', 'afflicted', 'afflicted', tran, ['6A','14'] ). +verb( 'afford', 'affords', 'affording', 'afforded', 'afforded', tran, ['6A','7A','12A','13A'] ). +verb( 'afforest', 'afforests', 'afforesting', 'afforested', 'afforested', tran, ['6A'] ). +verb( 'affranchise', 'affranchises', 'affranchising', 'affranchised', 'affranchised', tran, ['6A'] ). +verb( 'affront', 'affronts', 'affronting', 'affronted', 'affronted', tran, ['6A'] ). +verb( 'age', 'ages', 'aging', 'aged', 'aged', _, ['2A','6A'] ). +verb( 'agglomerate', 'agglomerates', 'agglomerating', 'agglomerated', 'agglomerated', _, ['2A','6A'] ). +verb( 'agglutinate', 'agglutinates', 'agglutinating', 'agglutinated', 'agglutinated', tran, ['2A','6A'] ). +verb( 'aggrandize', 'aggrandizes', 'aggrandizing', 'aggrandized', 'aggrandized', tran, ['6A'] ). +verb( 'aggravate', 'aggravates', 'aggravating', 'aggravated', 'aggravated', tran, ['6A'] ). +verb( 'aggregate', 'aggregates', 'aggregating', 'aggregated', 'aggregated', _, ['2A','2E','6A'] ). +verb( 'aggrieve', 'aggrieves', 'aggrieving', 'aggrieved', 'aggrieved', tran, [] ). +verb( 'agitate', 'agitates', 'agitating', 'agitated', 'agitated', _, ['3A','6A'] ). +verb( 'agree', 'agrees', 'agreeing', 'agreed', 'agreed', _, ['2A','2C','3A','3B','4C','6A','7A'] ). +verb( 'aid', 'aids', 'aiding', 'aided', 'aided', tran, ['6A','14','17'] ). +verb( 'ail', 'ails', 'ailing', 'ailed', 'ailed', _, ['2A','2B','6A'] ). +verb( 'aim', 'aims', 'aiming', 'aimed', 'aimed', _, ['2A','3A','4A','6A','14'] ). +verb( 'air', 'airs', 'airing', 'aired', 'aired', tran, ['6A'] ). +verb( 'alarm', 'alarms', 'alarming', 'alarmed', 'alarmed', tran, ['6A'] ). +verb( 'alert', 'alerts', 'alerting', 'alerted', 'alerted', tran, ['6A'] ). +verb( 'alienate', 'alienates', 'alienating', 'alienated', 'alienated', tran, ['6A','14'] ). +verb( 'alight', 'alights', 'alighting', 'alighted', 'alighted', intran, ['2A','3A'] ). +verb( 'align', 'aligns', 'aligning', 'aligned', 'aligned', _, ['2A','3A','6A','14'] ). +verb( 'allay', 'allays', 'allaying', 'allayed', 'allayed', tran, ['6A'] ). +verb( 'allege', 'alleges', 'alleging', 'alleged', 'alleged', tran, ['6A','9'] ). +verb( 'alleviate', 'alleviates', 'alleviating', 'alleviated', 'alleviated', tran, ['6A'] ). +verb( 'allocate', 'allocates', 'allocating', 'allocated', 'allocated', tran, ['6A','14'] ). +verb( 'allot', 'allots', 'allotting', 'allotted', 'allotted', tran, ['6A','12A','13A','14'] ). +verb( 'allow', 'allows', 'allowing', 'allowed', 'allowed', _, ['3A','6A','6C','9','12A','13A','14','15B','17','25'] ). +verb( 'alloy', 'alloys', 'alloying', 'alloyed', 'alloyed', tran, ['6A'] ). +verb( 'allude', 'alludes', 'alluding', 'alluded', 'alluded', intran, ['3A'] ). +verb( 'allure', 'allures', 'alluring', 'allured', 'allured', tran, ['6A','14','17'] ). +verb( 'ally', 'allies', 'allying', 'allied', 'allied', tran, ['14'] ). +verb( 'alter', 'alters', 'altering', 'altered', 'altered', _, ['2A','6A'] ). +verb( 'alternate', 'alternates', 'alternating', 'alternated', 'alternated', _, ['3A','6A','14'] ). +verb( 'amalgamate', 'amalgamates', 'amalgamating', 'amalgamated', 'amalgamated', _, ['2A','6A'] ). +verb( 'amass', 'amasses', 'amassing', 'amassed', 'amassed', tran, ['6A'] ). +verb( 'amaze', 'amazes', 'amazing', 'amazed', 'amazed', tran, ['6A'] ). +verb( 'amble', 'ambles', 'ambling', 'ambled', 'ambled', intran, ['2A','2C'] ). +verb( 'ambuscade', 'ambuscades', 'ambuscading', 'ambuscaded', 'ambuscaded', tran, [] ). +verb( 'ambush', 'ambushes', 'ambushing', 'ambushed', 'ambushed', tran, ['6A'] ). +verb( 'ameliorate', 'ameliorates', 'ameliorating', 'ameliorated', 'ameliorated', _, ['2A','6A'] ). +verb( 'amend', 'amends', 'amending', 'amended', 'amended', _, ['2A','6A'] ). +verb( 'amortize', 'amortizes', 'amortizing', 'amortized', 'amortized', tran, ['6A'] ). +verb( 'amount', 'amounts', 'amounting', 'amounted', 'amounted', intran, ['3A'] ). +verb( 'amplify', 'amplifies', 'amplifying', 'amplified', 'amplified', tran, ['6A'] ). +verb( 'amputate', 'amputates', 'amputating', 'amputated', 'amputated', tran, ['6A'] ). +verb( 'amuse', 'amuses', 'amusing', 'amused', 'amused', tran, ['6A'] ). +verb( 'anaesthetize', 'anaesthetizes', 'anaesthetizing', 'anaesthetized', 'anaesthetized', tran, ['6A'] ). +verb( 'analyse', 'analyses', 'analysing', 'analysed', 'analysed', tran, ['6A'] ). +verb( 'analyze', 'analyzes', 'analyzing', 'analyzed', 'analyzed', tran, ['6A'] ). +verb( 'anathematize', 'anathematizes', 'anathematizing', 'anathematized', 'anathematized', _, [] ). +verb( 'anchor', 'anchors', 'anchoring', 'anchored', 'anchored', _, ['2A','6A'] ). +verb( 'anesthetize', 'anesthetizes', 'anesthetizing', 'anesthetized', 'anesthetized', tran, ['6A'] ). +verb( 'anger', 'angers', 'angering', 'angered', 'angered', tran, ['6A'] ). +verb( 'angle', 'angles', 'angling', 'angled', 'angled', _, ['2A','3A','6A'] ). +verb( 'angle-park', 'angle-parks', 'angle-parking', 'angle-parked', 'angle-parked', _, [] ). +verb( 'anglicize', 'anglicizes', 'anglicizing', 'anglicized', 'anglicized', tran, ['6A'] ). +verb( 'animadvert', 'animadverts', 'animadverting', 'animadverted', 'animadverted', intran, ['3A'] ). +verb( 'animate', 'animates', 'animating', 'animated', 'animated', tran, ['6A','14'] ). +verb( 'anneal', 'anneals', 'annealing', 'annealed', 'annealed', tran, ['6A'] ). +verb( 'annex', 'annexes', 'annexing', 'annexed', 'annexed', tran, ['6A','14'] ). +verb( 'annihilate', 'annihilates', 'annihilating', 'annihilated', 'annihilated', tran, ['6A'] ). +verb( 'annotate', 'annotates', 'annotating', 'annotated', 'annotated', tran, ['6A'] ). +verb( 'announce', 'announces', 'announcing', 'announced', 'announced', tran, ['6A','9','14'] ). +verb( 'annoy', 'annoys', 'annoying', 'annoyed', 'annoyed', tran, ['6A'] ). +verb( 'annul', 'annuls', 'annulling', 'annulled', 'annulled', tran, ['6A'] ). +verb( 'annunciate', 'annunciates', 'annunciating', 'annunciated', 'annunciated', tran, ['6A'] ). +verb( 'anoint', 'anoints', 'anointing', 'anointed', 'anointed', tran, ['6A','14','23'] ). +verb( 'answer', 'answers', 'answering', 'answered', 'answered', _, ['2A','2C','3A','6A','9','12A','15B'] ). +verb( 'antagonize', 'antagonizes', 'antagonizing', 'antagonized', 'antagonized', tran, ['6A'] ). +verb( 'antedate', 'antedates', 'antedating', 'antedated', 'antedated', tran, ['6A'] ). +verb( 'anticipate', 'anticipates', 'anticipating', 'anticipated', 'anticipated', tran, ['6A','6C','9'] ). +verb( 'ape', 'apes', 'aping', 'aped', 'aped', tran, [] ). +verb( 'apologize', 'apologizes', 'apologizing', 'apologized', 'apologized', intran, ['2A','3A'] ). +verb( 'apostrophize', 'apostrophizes', 'apostrophizing', 'apostrophized', 'apostrophized', tran, [] ). +verb( 'appal', 'appals', 'appalling', 'appalled', 'appalled', tran, ['6A'] ). +verb( 'apparel', 'apparels', 'apparelling', 'apparelled', 'apparelled', tran, [] ). +verb( 'appeal', 'appeals', 'appealing', 'appealed', 'appealed', intran, ['2A','3A'] ). +verb( 'appear', 'appears', 'appearing', 'appeared', 'appeared', intran, ['2A','2C','4D','4E'] ). +verb( 'appease', 'appeases', 'appeasing', 'appeased', 'appeased', tran, ['6A'] ). +verb( 'append', 'appends', 'appending', 'appended', 'appended', tran, ['6A','14'] ). +verb( 'appertain', 'appertains', 'appertaining', 'appertained', 'appertained', intran, ['3A'] ). +verb( 'applaud', 'applauds', 'applauding', 'applauded', 'applauded', _, ['2A','2B','6A'] ). +verb( 'appliqu_e', 'appliqu_es', 'appliqu_eing', 'appliqu_eed', 'appliqu_eed', tran, [] ). +verb( 'apply', 'applies', 'applying', 'applied', 'applied', _, ['2C','3A','6A','14'] ). +verb( 'appoint', 'appoints', 'appointing', 'appointed', 'appointed', tran, ['6A','9','14','16A','23','25'] ). +verb( 'apportion', 'apportions', 'apportioning', 'apportioned', 'apportioned', tran, ['6A','12B','13B','14'] ). +verb( 'appraise', 'appraises', 'appraising', 'appraised', 'appraised', tran, ['6A'] ). +verb( 'appreciate', 'appreciates', 'appreciating', 'appreciated', 'appreciated', _, ['2B','6A','9','10'] ). +verb( 'apprehend', 'apprehends', 'apprehending', 'apprehended', 'apprehended', tran, ['6A','9'] ). +verb( 'apprentice', 'apprentices', 'apprenticing', 'apprenticed', 'apprenticed', tran, ['6A','14'] ). +verb( 'apprise', 'apprises', 'apprising', 'apprised', 'apprised', tran, ['14'] ). +verb( 'approach', 'approaches', 'approaching', 'approached', 'approached', _, ['2A','6A'] ). +verb( 'appropriate', 'appropriates', 'appropriating', 'appropriated', 'appropriated', tran, ['6A','14'] ). +verb( 'approve', 'approves', 'approving', 'approved', 'approved', _, ['3A','6A'] ). +verb( 'approximate', 'approximates', 'approximating', 'approximated', 'approximated', _, ['3A','6A'] ). +verb( 'aquaplane', 'aquaplanes', 'aquaplaning', 'aquaplaned', 'aquaplaned', intran, [] ). +verb( 'arbitrate', 'arbitrates', 'arbitrating', 'arbitrated', 'arbitrated', _, ['2A','6A'] ). +verb( 'arch', 'arches', 'arching', 'arched', 'arched', _, ['2C','6A'] ). +verb( 'argue', 'argues', 'arguing', 'argued', 'argued', _, ['2A','2C','3A','6A','9','14'] ). +verb( 'arise', 'arises', 'arising', 'arose', 'arisen', intran, ['2A','3A'] ). +verb( 'arm', 'arms', 'arming', 'armed', 'armed', _, ['2A','6A','14'] ). +verb( 'arouse', 'arouses', 'arousing', 'aroused', 'aroused', tran, ['6A','14'] ). +verb( 'arraign', 'arraigns', 'arraigning', 'arraigned', 'arraigned', tran, ['6A','14'] ). +verb( 'arrange', 'arranges', 'arranging', 'arranged', 'arranged', _, ['3A','4C','6A','14','15A'] ). +verb( 'array', 'arrays', 'arraying', 'arrayed', 'arrayed', tran, ['6A','15A'] ). +verb( 'arrest', 'arrests', 'arresting', 'arrested', 'arrested', tran, ['6A'] ). +verb( 'arrive', 'arrives', 'arriving', 'arrived', 'arrived', intran, ['2A','2C','3A'] ). +verb( 'arrogate', 'arrogates', 'arrogating', 'arrogated', 'arrogated', tran, ['14'] ). +verb( 'article', 'articles', 'articling', 'articled', 'articled', tran, [] ). +verb( 'articulate', 'articulates', 'articulating', 'articulated', 'articulated', _, ['2C','6A','15A'] ). +verb( 'ascend', 'ascends', 'ascending', 'ascended', 'ascended', _, ['2A','2C','6A'] ). +verb( 'ascertain', 'ascertains', 'ascertaining', 'ascertained', 'ascertained', tran, ['6A','8','9','10','17'] ). +verb( 'ascribe', 'ascribes', 'ascribing', 'ascribed', 'ascribed', tran, ['14'] ). +verb( 'ask', 'asks', 'asking', 'asked', 'asked', _, ['3A','6A','7A','8','9','10','12C','14','15B','17','20','21'] ). +verb( 'asperse', 'asperses', 'aspersing', 'aspersed', 'aspersed', tran, ['6A'] ). +verb( 'asphalt', 'asphalts', 'asphalting', 'asphalted', 'asphalted', tran, ['6A'] ). +verb( 'asphyxiate', 'asphyxiates', 'asphyxiating', 'asphyxiated', 'asphyxiated', tran, ['6A'] ). +verb( 'aspirate', 'aspirates', 'aspirating', 'aspirated', 'aspirated', tran, [] ). +verb( 'aspire', 'aspires', 'aspiring', 'aspired', 'aspired', intran, ['3A','4A'] ). +verb( 'assail', 'assails', 'assailing', 'assailed', 'assailed', tran, ['6A','14'] ). +verb( 'assassinate', 'assassinates', 'assassinating', 'assassinated', 'assassinated', tran, ['6A'] ). +verb( 'assault', 'assaults', 'assaulting', 'assaulted', 'assaulted', tran, ['6A'] ). +verb( 'assay', 'assays', 'assaying', 'assayed', 'assayed', tran, ['6A','7A'] ). +verb( 'assemble', 'assembles', 'assembling', 'assembled', 'assembled', _, ['2A','6A'] ). +verb( 'assent', 'assents', 'assenting', 'assented', 'assented', intran, ['2A','3A'] ). +verb( 'assert', 'asserts', 'asserting', 'asserted', 'asserted', tran, ['6A','9','25'] ). +verb( 'assess', 'assesses', 'assessing', 'assessed', 'assessed', tran, ['6A','14'] ). +verb( 'asseverate', 'asseverates', 'asseverating', 'asseverated', 'asseverated', tran, ['6A','9'] ). +verb( 'assign', 'assigns', 'assigning', 'assigned', 'assigned', tran, ['12A','13A','13B','14','17'] ). +verb( 'assimilate', 'assimilates', 'assimilating', 'assimilated', 'assimilated', _, ['2A','3A','6A'] ). +verb( 'assist', 'assists', 'assisting', 'assisted', 'assisted', _, ['2A','3A','6A','14','17'] ). +verb( 'associate', 'associates', 'associating', 'associated', 'associated', _, ['3A','14'] ). +verb( 'assuage', 'assuages', 'assuaging', 'assuaged', 'assuaged', tran, ['6A'] ). +verb( 'assume', 'assumes', 'assuming', 'assumed', 'assumed', tran, ['6A','9','25'] ). +verb( 'assure', 'assures', 'assuring', 'assured', 'assured', tran, ['6A','11','14'] ). +verb( 'astonish', 'astonishes', 'astonishing', 'astonished', 'astonished', tran, ['6A'] ). +verb( 'astound', 'astounds', 'astounding', 'astounded', 'astounded', tran, ['6A'] ). +verb( 'atomize', 'atomizes', 'atomizing', 'atomized', 'atomized', tran, [] ). +verb( 'atone', 'atones', 'atoning', 'atoned', 'atoned', intran, ['2A','3A'] ). +verb( 'atrophy', 'atrophies', 'atrophying', 'atrophied', 'atrophied', _, ['2A','2B','6A'] ). +verb( 'attach', 'attaches', 'attaching', 'attached', 'attached', _, ['3A','6A','14'] ). +verb( 'attack', 'attacks', 'attacking', 'attacked', 'attacked', tran, ['6A'] ). +verb( 'attain', 'attains', 'attaining', 'attained', 'attained', _, ['3A','6A'] ). +verb( 'attempt', 'attempts', 'attempting', 'attempted', 'attempted', tran, ['6A','7A'] ). +verb( 'attend', 'attends', 'attending', 'attended', 'attended', _, ['2A','3A','6A'] ). +verb( 'attenuate', 'attenuates', 'attenuating', 'attenuated', 'attenuated', tran, ['6A'] ). +verb( 'attest', 'attests', 'attesting', 'attested', 'attested', _, ['2A','3A','6A'] ). +verb( 'attire', 'attires', 'attiring', 'attired', 'attired', tran, ['6A'] ). +verb( 'attitudinize', 'attitudinizes', 'attitudinizing', 'attitudinized', 'attitudinized', intran, ['2A'] ). +verb( 'attract', 'attracts', 'attracting', 'attracted', 'attracted', tran, ['6A'] ). +verb( 'attribute', 'attributes', 'attributing', 'attributed', 'attributed', tran, ['14'] ). +verb( 'attune', 'attunes', 'attuning', 'attuned', 'attuned', tran, ['14'] ). +verb( 'auction', 'auctions', 'auctioning', 'auctioned', 'auctioned', tran, ['6A','15B'] ). +verb( 'audit', 'audits', 'auditing', 'audited', 'audited', tran, ['6A'] ). +verb( 'audition', 'auditions', 'auditioning', 'auditioned', 'auditioned', tran, ['6A'] ). +verb( 'augment', 'augments', 'augmenting', 'augmented', 'augmented', _, ['2A','6A'] ). +verb( 'augur', 'augurs', 'auguring', 'augured', 'augured', _, ['2A','6A'] ). +verb( 'authenticate', 'authenticates', 'authenticating', 'authenticated', 'authenticated', tran, ['6A'] ). +verb( 'authorize', 'authorizes', 'authorizing', 'authorized', 'authorized', tran, ['6A','17'] ). +verb( 'autograph', 'autographs', 'autographing', 'autographed', 'autographed', tran, ['6A'] ). +verb( 'automate', 'automates', 'automating', 'automated', 'automated', tran, [] ). +verb( 'avail', 'avails', 'availing', 'availed', 'availed', _, ['2A','3A','14'] ). +verb( 'avenge', 'avenges', 'avenging', 'avenged', 'avenged', tran, ['6A','14'] ). +verb( 'aver', 'avers', 'averring', 'averred', 'averred', tran, ['6A','9'] ). +verb( 'average', 'averages', 'averaging', 'averaged', 'averaged', _, ['2B','6A'] ). +verb( 'avert', 'averts', 'averting', 'averted', 'averted', tran, ['6A','14'] ). +verb( 'avoid', 'avoids', 'avoiding', 'avoided', 'avoided', tran, ['6A','6C'] ). +verb( 'avouch', 'avouches', 'avouching', 'avouched', 'avouched', _, ['3A','6A','9'] ). +verb( 'avow', 'avows', 'avowing', 'avowed', 'avowed', tran, ['6A','25'] ). +verb( 'await', 'awaits', 'awaiting', 'awaited', 'awaited', tran, ['6A'] ). +verb( 'awake', 'awakes', 'awaking', 'awoke', 'awoken', intran, ['2A','3A','4B'] ). +verb( 'awaken', 'awakens', 'awakening', 'awakened', 'awakened', tran, ['6A','14'] ). +verb( 'award', 'awards', 'awarding', 'awarded', 'awarded', tran, ['6A','12A','13A'] ). +verb( 'awe', 'awes', 'awing', 'awed', 'awed', tran, ['6A','14'] ). +verb( 'ax', 'axes', 'axing', 'axed', 'axed', tran, ['6A'] ). +verb( 'axe', 'axes', 'axing', 'axed', 'axed', tran, ['6A'] ). +verb( 'baa', 'baas', 'baaing', 'baaed', 'baaed', intran, [] ). +verb( 'babble', 'babbles', 'babbling', 'babbled', 'babbled', _, ['2A','2B','2C','6A','15B'] ). +verb( 'baby', 'babies', 'babying', 'babied', 'babied', tran, ['6A'] ). +verb( 'babysit', 'babysits', 'babysitting', 'babysat', 'babysat', intran, [] ). +verb( 'back', 'backs', 'backing', 'backed', 'backed', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'backbite', 'backbites', 'backbiting', 'backbit', 'backbitten', _, [] ). +verb( 'backdate', 'backdates', 'backdating', 'backdated', 'backdated', tran, [] ). +verb( 'backfire', 'backfires', 'backfiring', 'backfired', 'backfired', intran, [] ). +verb( 'backpedal', 'backpedals', 'backpedalling', 'backpedalled', 'backpedalled', intran, [] ). +verb( 'backslide', 'backslides', 'backsliding', 'backslid', 'backslid', intran, ['2A'] ). +verb( 'backspace', 'backspaces', 'backspacing', 'backspaced', 'backspaced', intran, [] ). +verb( 'badger', 'badgers', 'badgering', 'badgered', 'badgered', tran, ['6A','14','16A'] ). +verb( 'baffle', 'baffles', 'baffling', 'baffled', 'baffled', tran, ['6A'] ). +verb( 'bag', 'bags', 'bagging', 'bagged', 'bagged', _, ['2A','2C','6A','15B'] ). +verb( 'bail', 'bails', 'bailing', 'bailed', 'bailed', _, ['2A','2C','6A','15B'] ). +verb( 'bait', 'baits', 'baiting', 'baited', 'baited', _, ['2A','6A'] ). +verb( 'bake', 'bakes', 'baking', 'baked', 'baked', _, ['2A','2C','6A','22'] ). +verb( 'balance', 'balances', 'balancing', 'balanced', 'balanced', _, ['2A','6A','14','15A'] ). +verb( 'bale', 'bales', 'baling', 'baled', 'baled', tran, ['6A'] ). +verb( 'balk', 'balks', 'balking', 'balked', 'balked', _, ['2A','3A','6A','14'] ). +verb( 'ball', 'balls', 'balling', 'balled', 'balled', _, [] ). +verb( 'ballast', 'ballasts', 'ballasting', 'ballasted', 'ballasted', tran, ['6A'] ). +verb( 'balloon', 'balloons', 'ballooning', 'ballooned', 'ballooned', intran, ['2A','2C'] ). +verb( 'ballot', 'ballots', 'balloting', 'balloted', 'balloted', intran, ['2A','3A'] ). +verb( 'bamboozle', 'bamboozles', 'bamboozling', 'bamboozled', 'bamboozled', tran, ['6A','14'] ). +verb( 'ban', 'bans', 'banning', 'banned', 'banned', tran, ['6A','14'] ). +verb( 'band', 'bands', 'banding', 'banded', 'banded', _, ['2C','6A','14','15B'] ). +verb( 'bandage', 'bandages', 'bandaging', 'bandaged', 'bandaged', tran, ['6A','15B'] ). +verb( 'bandy', 'bandies', 'bandying', 'bandied', 'bandied', tran, ['6A','14','15B'] ). +verb( 'bang', 'bangs', 'banging', 'banged', 'banged', _, ['2A','2C','6A','15B'] ). +verb( 'banish', 'banishes', 'banishing', 'banished', 'banished', tran, ['6A','14'] ). +verb( 'bank', 'banks', 'banking', 'banked', 'banked', _, ['2A','2C','3A','6A','15B'] ). +verb( 'bankrupt', 'bankrupts', 'bankrupting', 'bankrupted', 'bankrupted', tran, ['6A'] ). +verb( 'banquet', 'banquets', 'banqueting', 'banqueted', 'banqueted', _, ['2A','6A'] ). +verb( 'bant', 'bants', 'banting', 'banted', 'banted', intran, ['2A'] ). +verb( 'banter', 'banters', 'bantering', 'bantered', 'bantered', _, ['2A','6A'] ). +verb( 'baptize', 'baptizes', 'baptizing', 'baptized', 'baptized', tran, ['6A','23'] ). +verb( 'bar', 'bars', 'barring', 'barred', 'barred', tran, ['6A','6C','12C','14','15B'] ). +verb( 'barbarize', 'barbarizes', 'barbarizing', 'barbarized', 'barbarized', tran, ['6A'] ). +verb( 'barbecue', 'barbecues', 'barbecuing', 'barbecued', 'barbecued', tran, [] ). +verb( 'bare', 'bares', 'baring', 'bared', 'bared', tran, ['6A'] ). +verb( 'bargain', 'bargains', 'bargaining', 'bargained', 'bargained', _, ['2A','3A','9','15B'] ). +verb( 'barge', 'barges', 'barging', 'barged', 'barged', intran, ['2C','3A'] ). +verb( 'bark', 'barks', 'barking', 'barked', 'barked', _, ['2A','2C','3A','6A','15B'] ). +verb( 'barnstorm', 'barnstorms', 'barnstorming', 'barnstormed', 'barnstormed', intran, [] ). +verb( 'barrack', 'barracks', 'barracking', 'barracked', 'barracked', _, ['2A','6A'] ). +verb( 'barrel', 'barrels', 'barrelling', 'barrelled', 'barrelled', tran, [] ). +verb( 'barricade', 'barricades', 'barricading', 'barricaded', 'barricaded', tran, ['6A','15B'] ). +verb( 'barter', 'barters', 'bartering', 'bartered', 'bartered', _, ['2A','14','15B'] ). +verb( 'base', 'bases', 'basing', 'based', 'based', tran, ['14'] ). +verb( 'bash', 'bashes', 'bashing', 'bashed', 'bashed', tran, ['6A','15A','15B'] ). +verb( 'bask', 'basks', 'basking', 'basked', 'basked', intran, ['2C'] ). +verb( 'bastardize', 'bastardizes', 'bastardizing', 'bastardized', 'bastardized', tran, [] ). +verb( 'baste', 'bastes', 'basting', 'basted', 'basted', tran, ['6A','15B'] ). +verb( 'bastinado', 'bastinados', 'bastinadoing', 'bastinadoed', 'bastinadoed', tran, ['6A'] ). +verb( 'bat', 'bats', 'batting', 'batted', 'batted', _, ['2A','2B','2C','6A'] ). +verb( 'bate', 'bates', 'bating', 'bated', 'bated', tran, [] ). +verb( 'bath', 'baths', 'bathing', 'bathed', 'bathed', _, ['2A','6A'] ). +verb( 'bathe', 'bathes', 'bathing', 'bathed', 'bathed', _, ['2A','6A'] ). +verb( 'batten', 'battens', 'battening', 'battened', 'battened', _, ['3A','6A','15B'] ). +verb( 'batter', 'batters', 'battering', 'battered', 'battered', _, ['2C','6A','15A','15B'] ). +verb( 'battle', 'battles', 'battling', 'battled', 'battled', intran, ['3A'] ). +verb( 'baulk', 'baulks', 'baulking', 'baulked', 'baulked', _, ['2A','3A','6A','14'] ). +verb( 'bawl', 'bawls', 'bawling', 'bawled', 'bawled', _, ['2C','3A','6A','15A'] ). +verb( 'bay', 'bays', 'baying', 'bayed', 'bayed', intran, ['2A'] ). +verb( 'bayonet', 'bayonets', 'bayoneting', 'bayoneted', 'bayoneted', tran, ['6A'] ). +verb( 'be', 'is', 'being', 'was', 'been', unknown, ['1','4F'] ). +verb( 'be', 'is', 'being', 'was', 'been', intran, ['1','4F'] ). +verb( 'beach', 'beaches', 'beaching', 'beached', 'beached', tran, ['6A'] ). +verb( 'beam', 'beams', 'beaming', 'beamed', 'beamed', _, ['2C','6A','15A'] ). +verb( 'bear', 'bears', 'bearing', 'bore', 'borne', _, ['2A','2C','3A','6A','6D','6E','7A','11','12C','14','15B','16B','17'] ). +verb( 'beard', 'beards', 'bearding', 'bearded', 'bearded', tran, ['6A'] ). +verb( 'beat', 'beats', 'beating', 'beat', 'beaten', _, ['2A','2C','6A','14','15A','15B','22'] ). +verb( 'beatify', 'beatifies', 'beatifying', 'beatified', 'beatified', tran, ['6A'] ). +verb( 'beautify', 'beautifies', 'beautifying', 'beautified', 'beautified', tran, ['6A'] ). +verb( 'beaver', 'beavers', 'beavering', 'beavered', 'beavered', intran, ['2A','2C'] ). +verb( 'beckon', 'beckons', 'beckoning', 'beckoned', 'beckoned', _, ['2A','6A','15B','16A'] ). +verb( 'become', 'becomes', 'becoming', 'became', 'become', _, ['2D','3A','6A'] ). +verb( 'bed', 'beds', 'bedding', 'bedded', 'bedded', tran, ['6A','15A','15B'] ). +verb( 'bedevil', 'bedevils', 'bedevilling', 'bedevilled', 'bedevilled', tran, [] ). +verb( 'beef', 'beefs', 'beefing', 'beefed', 'beefed', intran, [] ). +verb( 'beeswax', 'beeswaxes', 'beeswaxing', 'beeswaxed', 'beeswaxed', tran, [] ). +verb( 'beetle', 'beetles', 'beetling', 'beetled', 'beetled', intran, ['2A'] ). +verb( 'befall', 'befalls', 'befalling', 'befell', 'befallen', _, ['6A'] ). +verb( 'befit', 'befits', 'befitting', 'befitted', 'befitted', tran, ['6A'] ). +verb( 'befoul', 'befouls', 'befouling', 'befouled', 'befouled', tran, [] ). +verb( 'befriend', 'befriends', 'befriending', 'befriended', 'befriended', tran, ['6A'] ). +verb( 'beg', 'begs', 'begging', 'begged', 'begged', _, ['2A','2C','3A','6A','7A','9','14','17'] ). +verb( 'beget', 'begets', 'begetting', 'begat', 'begotten', tran, ['6A'] ). +verb( 'beggar', 'beggars', 'beggaring', 'beggared', 'beggared', tran, ['6A'] ). +verb( 'begin', 'begins', 'beginning', 'began', 'begun', _, ['2A','3A','6A','6D','7A'] ). +verb( 'begrudge', 'begrudges', 'begrudging', 'begrudged', 'begrudged', tran, ['6C','12A','13A'] ). +verb( 'beguile', 'beguiles', 'beguiling', 'beguiled', 'beguiled', tran, ['6A','14'] ). +verb( 'behave', 'behaves', 'behaving', 'behaved', 'behaved', intran, ['2A','2C','6B'] ). +verb( 'behead', 'beheads', 'beheading', 'beheaded', 'beheaded', tran, ['6A'] ). +verb( 'behold', 'beholds', 'beholding', 'beheld', 'beheld', tran, ['6A'] ). +verb( 'behove', 'behoves', 'behoving', 'behoved', 'behoved', tran, [] ). +verb( 'belabour', 'belabours', 'belabouring', 'belaboured', 'belaboured', tran, ['6A'] ). +verb( 'belay', 'belays', 'belaying', 'belayed', 'belayed', tran, ['6A'] ). +verb( 'belch', 'belches', 'belching', 'belched', 'belched', _, ['2A','6A','15B'] ). +verb( 'beleaguer', 'beleaguers', 'beleaguering', 'beleaguered', 'beleaguered', tran, ['6A'] ). +verb( 'belie', 'belies', 'belying', 'belied', 'belied', tran, ['6A'] ). +verb( 'believe', 'believes', 'believing', 'believed', 'believed', _, ['3A','6A','9','10','25'] ). +verb( 'belittle', 'belittles', 'belittling', 'belittled', 'belittled', tran, ['6A'] ). +verb( 'bell', 'bells', 'belling', 'belled', 'belled', tran, [] ). +verb( 'bellow', 'bellows', 'bellowing', 'bellowed', 'bellowed', _, ['2A','6A','15B'] ). +verb( 'belly', 'bellies', 'bellying', 'bellied', 'bellied', _, ['2A','2C','6A','15B'] ). +verb( 'bellyache', 'bellyaches', 'bellyaching', 'bellyached', 'bellyached', intran, [] ). +verb( 'bellyland', 'bellylands', 'bellylanding', 'bellylanded', 'bellylanded', intran, [] ). +verb( 'bellylaugh', 'bellylaughs', 'bellylaughing', 'bellylaughed', 'bellylaughed', intran, [] ). +verb( 'belong', 'belongs', 'belonging', 'belonged', 'belonged', intran, ['2C','3A'] ). +verb( 'belt', 'belts', 'belting', 'belted', 'belted', tran, ['2C','3A','6A','15B'] ). +verb( 'bemoan', 'bemoans', 'bemoaning', 'bemoaned', 'bemoaned', tran, ['6A'] ). +verb( 'bend', 'bends', 'bending', 'bended', 'bended', _, ['2A','2C','6A','15A','15B'] ). +verb( 'benefit', 'benefits', 'benefiting', 'benefited', 'benefited', _, ['3A','6A'] ). +verb( 'bequeath', 'bequeaths', 'bequeathing', 'bequeathed', 'bequeathed', tran, ['6A','12A','13A'] ). +verb( 'berate', 'berates', 'berating', 'berated', 'berated', tran, ['6A'] ). +verb( 'bereave', 'bereaves', 'bereaving', 'bereaved', 'bereaved', tran, ['14'] ). +verb( 'berth', 'berths', 'berthing', 'berthed', 'berthed', _, ['2C','6A','15A'] ). +verb( 'beseech', 'beseeches', 'beseeching', 'beseeched', 'beseeched', tran, ['6A','11','13B','17'] ). +verb( 'beseem', 'beseems', 'beseeming', 'beseemed', 'beseemed', tran, [] ). +verb( 'beset', 'besets', 'besetting', 'beset', 'beset', tran, ['6A'] ). +verb( 'beshrew', 'beshrews', 'beshrewing', 'beshrewed', 'beshrewed', tran, [] ). +verb( 'besiege', 'besieges', 'besieging', 'besieged', 'besieged', tran, ['6A','14'] ). +verb( 'besmear', 'besmears', 'besmearing', 'besmeared', 'besmeared', tran, [] ). +verb( 'besmirch', 'besmirches', 'besmirching', 'besmirched', 'besmirched', tran, [] ). +verb( 'bespeak', 'bespeaks', 'bespeaking', 'bespoke', 'bespoken', tran, ['6A','25'] ). +verb( 'best', 'bests', 'besting', 'bested', 'bested', tran, ['6A'] ). +verb( 'bestir', 'bestirs', 'bestirring', 'bestirred', 'bestirred', tran, ['6A','17'] ). +verb( 'bestow', 'bestows', 'bestowing', 'bestowed', 'bestowed', tran, ['6A','14'] ). +verb( 'bestrew', 'bestrews', 'bestrewing', 'bestrewed', 'bestrewed', tran, ['6A','14'] ). +verb( 'bestride', 'bestrides', 'bestriding', 'bestrode', 'bestridden', tran, ['6A'] ). +verb( 'bet', 'bets', 'betting', 'betted', 'betted', _, ['2A','3A','9','11','12C'] ). +verb( 'betake', 'betakes', 'betaking', 'betook', 'betaken', tran, ['14'] ). +verb( 'bethink', 'bethinks', 'bethinking', 'bethought', 'bethought', tran, ['11','14','17','20','21'] ). +verb( 'betide', 'betides', 'betiding', 'betided', 'betided', tran, [] ). +verb( 'betoken', 'betokens', 'betokening', 'betokened', 'betokened', tran, ['6A'] ). +verb( 'betray', 'betrays', 'betraying', 'betrayed', 'betrayed', tran, ['6A','14','25'] ). +verb( 'betroth', 'betroths', 'betrothing', 'betrothed', 'betrothed', tran, ['6A','14'] ). +verb( 'better', 'betters', 'bettering', 'bettered', 'bettered', tran, ['6A'] ). +verb( 'bevel', 'bevels', 'bevelling', 'bevelled', 'bevelled', tran, [] ). +verb( 'bewail', 'bewails', 'bewailing', 'bewailed', 'bewailed', tran, ['6A'] ). +verb( 'beware', '-', '-', '-', '-', _, ['2A','3A','10'] ). +verb( 'bewilder', 'bewilders', 'bewildering', 'bewildered', 'bewildered', tran, ['6A'] ). +verb( 'bewitch', 'bewitches', 'bewitching', 'bewitched', 'bewitched', tran, ['6A'] ). +verb( 'bias', 'biases', 'biasing', 'biased', 'biased', tran, ['6A','14'] ). +verb( 'bib', 'bibs', 'bibbing', 'bibbed', 'bibbed', intran, [] ). +verb( 'bicker', 'bickers', 'bickering', 'bickered', 'bickered', intran, ['2A','2C','3A'] ). +verb( 'bicycle', 'bicycles', 'bicycling', 'bicycled', 'bicycled', intran, ['2A','2C'] ). +verb( 'bid', 'bids', 'bidding', 'bid', 'bid', _, ['2A','3A','6A','12A','13A','14','15B','17','18B'] ). +verb( 'bide', 'bides', 'biding', 'bided', 'bided', tran, [] ). +verb( 'biff', 'biffs', 'biffing', 'biffed', 'biffed', tran, [] ). +verb( 'bifurcate', 'bifurcates', 'bifurcating', 'bifurcated', 'bifurcated', _, ['2A','6A'] ). +verb( 'bike', 'bikes', 'biking', 'biked', 'biked', intran, [] ). +verb( 'bilk', 'bilks', 'bilking', 'bilked', 'bilked', tran, ['6A','14'] ). +verb( 'bill', 'bills', 'billing', 'billed', 'billed', _, ['6A','14'] ). +verb( 'billet', 'billets', 'billeting', 'billeted', 'billeted', tran, ['6A','14'] ). +verb( 'billow', 'billows', 'billowing', 'billowed', 'billowed', intran, ['2C'] ). +verb( 'bind', 'binds', 'binding', 'bound', 'bound', _, ['2A','6A','14','15A','15B','16B','17'] ). +verb( 'birch', 'birches', 'birching', 'birched', 'birched', tran, ['6A'] ). +verb( 'bisect', 'bisects', 'bisecting', 'bisected', 'bisected', tran, ['6A'] ). +verb( 'bitch', 'bitches', 'bitching', 'bitched', 'bitched', intran, ['2A'] ). +verb( 'bite', 'bites', 'biting', 'bit', 'bitten', _, ['2A','3A','6A','15B'] ). +verb( 'bivouac', 'bivouacs', 'bivouacking', 'bivouacked', 'bivouacked', intran, ['2A'] ). +verb( 'blab', 'blabs', 'blabbing', 'blabbed', 'blabbed', _, ['2A','6A','15B'] ). +verb( 'blabber', 'blabbers', 'blabbering', 'blabbered', 'blabbered', _, [] ). +verb( 'black', 'blacks', 'blacking', 'blacked', 'blacked', tran, ['6A'] ). +verb( 'black-lead', 'black-leads', 'black-leading', 'black-leaded', 'black-leaded', tran, [] ). +verb( 'blackball', 'blackballs', 'blackballing', 'blackballed', 'blackballed', tran, [] ). +verb( 'blacken', 'blackens', 'blackening', 'blackened', 'blackened', _, ['2A','6A'] ). +verb( 'blackguard', 'blackguards', 'blackguarding', 'blackguarded', 'blackguarded', tran, [] ). +verb( 'blackleg', 'blacklegs', 'blacklegging', 'blacklegged', 'blacklegged', _, [] ). +verb( 'blacklist', 'blacklists', 'blacklisting', 'blacklisted', 'blacklisted', tran, [] ). +verb( 'blackmail', 'blackmails', 'blackmailing', 'blackmailed', 'blackmailed', tran, [] ). +verb( 'blame', 'blames', 'blaming', 'blamed', 'blamed', tran, ['6A','14'] ). +verb( 'blanch', 'blanches', 'blanching', 'blanched', 'blanched', _, ['2A','6A'] ). +verb( 'blanket', 'blankets', 'blanketing', 'blanketed', 'blanketed', tran, ['6A','14'] ). +verb( 'blare', 'blares', 'blaring', 'blared', 'blared', _, ['2A','2C','15B'] ). +verb( 'blaspheme', 'blasphemes', 'blaspheming', 'blasphemed', 'blasphemed', _, ['2A','6A'] ). +verb( 'blast', 'blasts', 'blasting', 'blasted', 'blasted', tran, ['2A','2C','6A','15B'] ). +verb( 'blather', 'blathers', 'blathering', 'blathered', 'blathered', intran, [] ). +verb( 'blaze', 'blazes', 'blazing', 'blazed', 'blazed', _, ['2A','2C','6A','15B'] ). +verb( 'blazon', 'blazons', 'blazoning', 'blazoned', 'blazoned', tran, [] ). +verb( 'bleach', 'bleaches', 'bleaching', 'bleached', 'bleached', _, ['2A','6A'] ). +verb( 'bleat', 'bleats', 'bleating', 'bleated', 'bleated', _, ['2A','6A','15B'] ). +verb( 'bleed', 'bleeds', 'bleeding', 'bled', 'bled', _, ['2A','2C','3A','6A','14'] ). +verb( 'bleep', 'bleeps', 'bleeping', 'bleeped', 'bleeped', intran, [] ). +verb( 'blemish', 'blemishes', 'blemishing', 'blemished', 'blemished', tran, ['6A'] ). +verb( 'blench', 'blenches', 'blenching', 'blenched', 'blenched', intran, ['2A'] ). +verb( 'blend', 'blends', 'blending', 'blended', 'blended', _, ['2A','3A','6A'] ). +verb( 'bless', 'blesses', 'blessing', 'blessed', 'blessed', tran, ['6A'] ). +verb( 'blether', 'blethers', 'blethering', 'blethered', 'blethered', intran, ['2A','2C'] ). +verb( 'blight', 'blights', 'blighting', 'blighted', 'blighted', tran, ['6A'] ). +verb( 'blind', 'blinds', 'blinding', 'blinded', 'blinded', tran, ['6A','14'] ). +verb( 'blindfold', 'blindfolds', 'blindfolding', 'blindfolded', 'blindfolded', tran, ['6A'] ). +verb( 'blink', 'blinks', 'blinking', 'blinked', 'blinked', _, ['2A','2C','6A','15B'] ). +verb( 'blister', 'blisters', 'blistering', 'blistered', 'blistered', _, ['2A','6A'] ). +verb( 'blitz', 'blitzes', 'blitzing', 'blitzed', 'blitzed', tran, ['6A'] ). +verb( 'block', 'blocks', 'blocking', 'blocked', 'blocked', tran, ['6A','15B'] ). +verb( 'blockade', 'blockades', 'blockading', 'blockaded', 'blockaded', tran, ['6A'] ). +verb( 'blood', 'bloods', 'blooding', 'blooded', 'blooded', tran, ['6A'] ). +verb( 'bloom', 'blooms', 'blooming', 'bloomed', 'bloomed', intran, ['2A','2C'] ). +verb( 'blossom', 'blossoms', 'blossoming', 'blossomed', 'blossomed', intran, ['2A','2C'] ). +verb( 'blot', 'blots', 'blotting', 'blotted', 'blotted', tran, ['6A','15B'] ). +verb( 'blow', 'blows', 'blowing', 'blew', 'blown', _, ['2A','2B','2C','2E','3A','6A','12A','15A','15B'] ). +verb( 'blow-dry', 'blow-dries', 'blow-drying', 'blow-dried', 'blow-dried', tran, ['6A'] ). +verb( 'blubber', 'blubbers', 'blubbering', 'blubbered', 'blubbered', _, ['2A','15B'] ). +verb( 'bludgeon', 'bludgeons', 'bludgeoning', 'bludgeoned', 'bludgeoned', tran, ['6A','14'] ). +verb( 'blue', 'blues', 'bluing', 'blued', 'blued', tran, [] ). +verb( 'blue-pencil', 'blue-pencils', 'blue-pencilling', 'blue-pencilled', 'blue-pencilled', tran, [] ). +verb( 'bluff', 'bluffs', 'bluffing', 'bluffed', 'bluffed', _, ['2A','6A','14','15B'] ). +verb( 'blunder', 'blunders', 'blundering', 'blundered', 'blundered', _, ['2A','2C','3A'] ). +verb( 'blunt', 'blunts', 'blunting', 'blunted', 'blunted', tran, ['6A'] ). +verb( 'blur', 'blurs', 'blurring', 'blurred', 'blurred', _, ['2A','6A'] ). +verb( 'blurt', 'blurts', 'blurting', 'blurted', 'blurted', tran, ['15B'] ). +verb( 'blush', 'blushes', 'blushing', 'blushed', 'blushed', intran, ['2A','2C','3A','4B'] ). +verb( 'bluster', 'blusters', 'blustering', 'blustered', 'blustered', _, ['2A','2C','15B'] ). +verb( 'board', 'boards', 'boarding', 'boarded', 'boarded', _, ['3A','6A','15B'] ). +verb( 'boast', 'boasts', 'boasting', 'boasted', 'boasted', _, ['2A','3A','3B','6A'] ). +verb( 'boat', 'boats', 'boating', 'boated', 'boated', intran, ['2A','2C'] ). +verb( 'bob', 'bobs', 'bobbing', 'bobbed', 'bobbed', _, ['2C','6A'] ). +verb( 'bode', 'bodes', 'boding', 'boded', 'boded', _, ['12B','13B'] ). +verb( 'bog', 'bogs', 'bogging', 'bogged', 'bogged', _, ['2E','15B'] ). +verb( 'boggle', 'boggles', 'boggling', 'boggled', 'boggled', intran, ['2A','3A'] ). +verb( 'boil', 'boils', 'boiling', 'boiled', 'boiled', _, ['2A','2B','2C','2D','6A','15B','22'] ). +verb( 'bolster', 'bolsters', 'bolstering', 'bolstered', 'bolstered', tran, ['6A','15B'] ). +verb( 'bolt', 'bolts', 'bolting', 'bolted', 'bolted', _, ['2A','2C','6A','15B'] ). +verb( 'bomb', 'bombs', 'bombing', 'bombed', 'bombed', _, ['2C','6A','15B'] ). +verb( 'bombard', 'bombards', 'bombarding', 'bombarded', 'bombarded', tran, ['6A','14'] ). +verb( 'bond', 'bonds', 'bonding', 'bonded', 'bonded', tran, ['6A'] ). +verb( 'bone', 'bones', 'boning', 'boned', 'boned', tran, ['6A'] ). +verb( 'boo', 'boos', 'booing', 'booed', 'booed', _, ['2A','6A','15B'] ). +verb( 'boob', 'boobs', 'boobing', 'boobed', 'boobed', intran, [] ). +verb( 'book', 'books', 'booking', 'booked', 'booked', tran, ['6A'] ). +verb( 'boom', 'booms', 'booming', 'boomed', 'boomed', _, ['2A','2C','15B'] ). +verb( 'boost', 'boosts', 'boosting', 'boosted', 'boosted', tran, ['6A'] ). +verb( 'boot', 'boots', 'booting', 'booted', 'booted', tran, ['6A','15A','15B'] ). +verb( 'bootleg', 'bootlegs', 'bootlegging', 'bootlegged', 'bootlegged', tran, [] ). +verb( 'booze', 'boozes', 'boozing', 'boozed', 'boozed', intran, ['2A','2C'] ). +verb( 'border', 'borders', 'bordering', 'bordered', 'bordered', _, ['3A','6A'] ). +verb( 'bore', 'bores', 'boring', 'bored', 'bored', _, ['2A','2C','3A','6A','6D','6E','7A','11','12C','14','15A','15B','16B','17'] ). +verb( 'borrow', 'borrows', 'borrowing', 'borrowed', 'borrowed', tran, ['6A','14'] ). +verb( 'boss', 'bosses', 'bossing', 'bossed', 'bossed', tran, ['6A','15B'] ). +verb( 'botanize', 'botanizes', 'botanizing', 'botanized', 'botanized', intran, [] ). +verb( 'botch', 'botches', 'botching', 'botched', 'botched', tran, ['6A','15B'] ). +verb( 'bother', 'bothers', 'bothering', 'bothered', 'bothered', _, ['2A','3A','4C','6A','14','16A'] ). +verb( 'bottle', 'bottles', 'bottling', 'bottled', 'bottled', tran, ['6A','15B'] ). +verb( 'bottom', 'bottoms', 'bottoming', 'bottomed', 'bottomed', intran, [] ). +verb( 'bounce', 'bounces', 'bouncing', 'bounced', 'bounced', _, ['2A','2C','6A'] ). +verb( 'bound', 'bounds', 'bounding', 'bounded', 'bounded', _, ['2A','2C','4A','6A','14','15A','15B','16B','17'] ). +verb( 'bow', 'bows', 'bowing', 'bowed', 'bowed', tran, [] ). +verb( 'bow', 'bows', 'bowing', 'bowed', 'bowed', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'bowdlerize', 'bowdlerizes', 'bowdlerizing', 'bowdlerized', 'bowdlerized', tran, [] ). +verb( 'bowl', 'bowls', 'bowling', 'bowled', 'bowled', _, ['2A','2C','6A','15B'] ). +verb( 'box', 'boxes', 'boxing', 'boxed', 'boxed', _, ['2A','3A','6A','15B'] ). +verb( 'boycott', 'boycotts', 'boycotting', 'boycotted', 'boycotted', tran, ['6A'] ). +verb( 'brace', 'braces', 'bracing', 'braced', 'braced', _, ['6A','15B','16A'] ). +verb( 'bracket', 'brackets', 'bracketing', 'bracketed', 'bracketed', tran, ['6A','15B'] ). +verb( 'brag', 'brags', 'bragging', 'bragged', 'bragged', intran, ['2A','3A'] ). +verb( 'braid', 'braids', 'braiding', 'braided', 'braided', tran, ['6A'] ). +verb( 'brain', 'brains', 'braining', 'brained', 'brained', tran, ['6A'] ). +verb( 'brainwash', 'brainwashes', 'brainwashing', 'brainwashed', 'brainwashed', tran, ['6A'] ). +verb( 'braise', 'braises', 'braising', 'braised', 'braised', tran, ['6A'] ). +verb( 'brake', 'brakes', 'braking', 'braked', 'braked', _, ['2A','2C','2D','3A','6A','15A','15B','22'] ). +verb( 'branch', 'branches', 'branching', 'branched', 'branched', intran, ['2A','2C'] ). +verb( 'brand', 'brands', 'branding', 'branded', 'branded', tran, ['6A','16B'] ). +verb( 'brandish', 'brandishes', 'brandishing', 'brandished', 'brandished', tran, ['6A'] ). +verb( 'brave', 'braves', 'braving', 'braved', 'braved', tran, ['6A','15B'] ). +verb( 'brawl', 'brawls', 'brawling', 'brawled', 'brawled', intran, ['2A'] ). +verb( 'bray', 'brays', 'braying', 'brayed', 'brayed', tran, ['2A'] ). +verb( 'braze', 'brazes', 'brazing', 'brazed', 'brazed', tran, ['6A'] ). +verb( 'brazen', 'brazens', 'brazening', 'brazened', 'brazened', tran, [] ). +verb( 'breach', 'breaches', 'breaching', 'breached', 'breached', tran, ['6A'] ). +verb( 'break', 'breaks', 'breaking', 'broke', 'broken', _, ['2A','2C','2D','3A','6A','15A','15B','22'] ). +verb( 'breakfast', 'breakfasts', 'breakfasting', 'breakfasted', 'breakfasted', intran, [] ). +verb( 'breast', 'breasts', 'breasting', 'breasted', 'breasted', tran, ['6A'] ). +verb( 'breastfeed', 'breastfeeds', 'breastfeeding', 'breastfed', 'breastfed', _, [] ). +verb( 'breathe', 'breathes', 'breathing', 'breathed', 'breathed', _, ['2A','2C','6A','15B'] ). +verb( 'breed', 'breeds', 'breeding', 'bred', 'bred', _, ['2A','6A'] ). +verb( 'breeze', 'breezes', 'breezing', 'breezed', 'breezed', intran, ['2C'] ). +verb( 'brew', 'brews', 'brewing', 'brewed', 'brewed', _, ['2A','2C','6A'] ). +verb( 'bribe', 'bribes', 'bribing', 'bribed', 'bribed', tran, ['6A','15A','17'] ). +verb( 'brick', 'bricks', 'bricking', 'bricked', 'bricked', tran, ['15B'] ). +verb( 'bridge', 'bridges', 'bridging', 'bridged', 'bridged', tran, ['6A','15B'] ). +verb( 'bridle', 'bridles', 'bridling', 'bridled', 'bridled', _, ['2A','2C','6A'] ). +verb( 'brief', 'briefs', 'briefing', 'briefed', 'briefed', tran, ['6A'] ). +verb( 'brighten', 'brightens', 'brightening', 'brightened', 'brightened', _, ['2A','2C','6A','15B'] ). +verb( 'brim', 'brims', 'brimming', 'brimmed', 'brimmed', intran, ['2A','2C'] ). +verb( 'bring', 'brings', 'bringing', 'brought', 'brought', tran, ['6A','12A','12C','13A','14','15B','17','19B'] ). +verb( 'bristle', 'bristles', 'bristling', 'bristled', 'bristled', intran, ['2A','2C'] ). +verb( 'broach', 'broaches', 'broaching', 'broached', 'broached', _, ['2C','6A','15B'] ). +verb( 'broadcast', 'broadcasts', 'broadcasting', 'broadcasted', 'broadcasted', _, ['2A','6A'] ). +verb( 'broaden', 'broadens', 'broadening', 'broadened', 'broadened', _, ['2A','2C','6A','15B'] ). +verb( 'brocade', 'brocades', 'brocading', 'brocaded', 'brocaded', tran, ['6A'] ). +verb( 'broil', 'broils', 'broiling', 'broiled', 'broiled', _, ['2A','6A'] ). +verb( 'bronze', 'bronzes', 'bronzing', 'bronzed', 'bronzed', _, ['2A','6A'] ). +verb( 'brood', 'broods', 'brooding', 'brooded', 'brooded', intran, ['2A','2C','3A'] ). +verb( 'brook', 'brooks', 'brooking', 'brooked', 'brooked', tran, ['6A','6B'] ). +verb( 'browbeat', 'browbeats', 'browbeating', 'browbeat', 'browbeaten', tran, ['6A','14'] ). +verb( 'brown', 'browns', 'browning', 'browned', 'browned', _, ['2A','6A'] ). +verb( 'browse', 'browses', 'browsing', 'browsed', 'browsed', intran, ['2A','2C'] ). +verb( 'bruise', 'bruises', 'bruising', 'bruised', 'bruised', _, ['2A','6A'] ). +verb( 'bruit', 'bruits', 'bruiting', 'bruited', 'bruited', tran, ['15B'] ). +verb( 'brush', 'brushes', 'brushing', 'brushed', 'brushed', _, ['2A','2C','6A','15B','22'] ). +verb( 'brutalize', 'brutalizes', 'brutalizing', 'brutalized', 'brutalized', tran, ['6A'] ). +verb( 'bubble', 'bubbles', 'bubbling', 'bubbled', 'bubbled', intran, ['2A','2C'] ). +verb( 'buck', 'bucks', 'bucking', 'bucked', 'bucked', _, ['2A','2C','6A','15B'] ). +verb( 'bucket', 'buckets', 'bucketing', 'bucketed', 'bucketed', intran, [] ). +verb( 'buckle', 'buckles', 'buckling', 'buckled', 'buckled', _, ['2A','2C','6A','15B'] ). +verb( 'bud', 'buds', 'budding', 'budded', 'budded', intran, [] ). +verb( 'budge', 'budges', 'budging', 'budged', 'budged', _, ['2A','2C','6A'] ). +verb( 'budget', 'budgets', 'budgeting', 'budgeted', 'budgeted', intran, ['3A'] ). +verb( 'buff', 'buffs', 'buffing', 'buffed', 'buffed', tran, [] ). +verb( 'buffet', 'buffets', 'buffeting', 'buffeted', 'buffeted', _, ['3A','6A'] ). +verb( 'bug', 'bugs', 'bugging', 'bugged', 'bugged', tran, ['6A'] ). +verb( 'bugger', 'buggers', 'buggering', 'buggered', 'buggered', _, ['6A'] ). +verb( 'build', 'builds', 'building', 'built', 'built', _, ['2C','3A','6A','12B','13B','14','15B'] ). +verb( 'bulge', 'bulges', 'bulging', 'bulged', 'bulged', _, ['2A','2C','6A'] ). +verb( 'bulk', 'bulks', 'bulking', 'bulked', 'bulked', intran, [] ). +verb( 'bulldoze', 'bulldozes', 'bulldozing', 'bulldozed', 'bulldozed', tran, ['6A','14'] ). +verb( 'bullshit', 'bullshits', 'bullshitting', 'bullshitted', 'bullshitted', intran, [] ). +verb( 'bully', 'bullies', 'bullying', 'bullied', 'bullied', _, ['2C','6A','14'] ). +verb( 'bum', 'bums', 'bumming', 'bummed', 'bummed', _, ['2C','6A','14'] ). +verb( 'bump', 'bumps', 'bumping', 'bumped', 'bumped', _, ['2C','3A','6A','14','15B'] ). +verb( 'bunch', 'bunches', 'bunching', 'bunched', 'bunched', _, ['2A','2C','15B'] ). +verb( 'bundle', 'bundles', 'bundling', 'bundled', 'bundled', _, ['2C','15A','15B'] ). +verb( 'bung', 'bungs', 'bunging', 'bunged', 'bunged', tran, ['6A','15B'] ). +verb( 'bungle', 'bungles', 'bungling', 'bungled', 'bungled', _, ['2A','6A'] ). +verb( 'bunk', 'bunks', 'bunking', 'bunked', 'bunked', intran, [] ). +verb( 'bunker', 'bunkers', 'bunkering', 'bunkered', 'bunkered', _, ['2A','6A'] ). +verb( 'buoy', 'buoys', 'buoying', 'buoyed', 'buoyed', intran, ['6A','15B'] ). +verb( 'burble', 'burbles', 'burbling', 'burbled', 'burbled', intran, [] ). +verb( 'burden', 'burdens', 'burdening', 'burdened', 'burdened', tran, ['6A','14'] ). +verb( 'burgeon', 'burgeons', 'burgeoning', 'burgeoned', 'burgeoned', intran, [] ). +verb( 'burgle', 'burgles', 'burgling', 'burgled', 'burgled', _, ['2A','6A'] ). +verb( 'burke', 'burkes', 'burking', 'burked', 'burked', tran, ['6A'] ). +verb( 'burlesque', 'burlesques', 'burlesquing', 'burlesqued', 'burlesqued', tran, ['6A'] ). +verb( 'burn', 'burns', 'burning', 'burned', 'burned', _, ['2A','2B','2C','4A','6A','14','15B'] ). +verb( 'burnish', 'burnishes', 'burnishing', 'burnished', 'burnished', _, ['2A','6A'] ). +verb( 'burp', 'burps', 'burping', 'burped', 'burped', _, ['2A','6A'] ). +verb( 'burrow', 'burrows', 'burrowing', 'burrowed', 'burrowed', _, ['2A','2C','6A'] ). +verb( 'burst', 'bursts', 'bursting', 'burst', 'burst', _, ['2A','2C','3A','6A','22'] ). +verb( 'burthen', 'burthens', 'burthening', 'burthened', 'burthened', tran, [] ). +verb( 'bury', 'buries', 'burying', 'buried', 'buried', tran, ['6A','15A','22'] ). +verb( 'bus', 'buses', 'busing', 'bused', 'bused', _, ['2A','6A'] ). +verb( 'bust', 'busts', 'busting', 'busted', 'busted', _, [] ). +verb( 'bustle', 'bustles', 'bustling', 'bustled', 'bustled', _, ['2A','2C','15B'] ). +verb( 'busy', 'busies', 'busying', 'busied', 'busied', tran, ['6A','14'] ). +verb( 'butcher', 'butchers', 'butchering', 'butchered', 'butchered', tran, ['6A'] ). +verb( 'butt', 'butts', 'butting', 'butted', 'butted', _, ['2C','3A','6A','15A'] ). +verb( 'butter', 'butters', 'buttering', 'buttered', 'buttered', tran, ['6A','15B'] ). +verb( 'button', 'buttons', 'buttoning', 'buttoned', 'buttoned', _, ['2A','6A','15B'] ). +verb( 'buttonhole', 'buttonholes', 'buttonholing', 'buttonholed', 'buttonholed', tran, ['6A'] ). +verb( 'buttress', 'buttresses', 'buttressing', 'buttressed', 'buttressed', tran, ['6A','15B'] ). +verb( 'buy', 'buys', 'buying', 'bought', 'bought', _, ['2A','2C','6A','12B','13B','15B'] ). +verb( 'buzz', 'buzzes', 'buzzing', 'buzzed', 'buzzed', _, ['2A','2C','6A'] ). +verb( 'bypass', 'bypasses', 'bypassing', 'bypassed', 'bypassed', tran, ['6A'] ). +verb( 'cable', 'cables', 'cabling', 'cabled', 'cabled', _, ['2A','6A'] ). +verb( 'cache', 'caches', 'caching', 'cached', 'cached', tran, [] ). +verb( 'cackle', 'cackles', 'cackling', 'cackled', 'cackled', intran, [] ). +verb( 'cadge', 'cadges', 'cadging', 'cadged', 'cadged', _, ['2A','6A','14'] ). +verb( 'cage', 'cages', 'caging', 'caged', 'caged', tran, ['6A'] ). +verb( 'cajole', 'cajoles', 'cajoling', 'cajoled', 'cajoled', tran, ['6A','14'] ). +verb( 'cake', 'cakes', 'caking', 'caked', 'caked', _, ['2A','6A'] ). +verb( 'calcify', 'calcifies', 'calcifying', 'calcified', 'calcified', _, ['2A','6A'] ). +verb( 'calcine', 'calcines', 'calcining', 'calcined', 'calcined', _, ['2A','6A'] ). +verb( 'calculate', 'calculates', 'calculating', 'calculated', 'calculated', _, ['2A','3A','6A','8','9','10'] ). +verb( 'calender', 'calenders', 'calendering', 'calendered', 'calendered', tran, ['6A'] ). +verb( 'calibrate', 'calibrates', 'calibrating', 'calibrated', 'calibrated', tran, ['6A'] ). +verb( 'calk', 'calks', 'calking', 'calked', 'calked', tran, [] ). +verb( 'call', 'calls', 'calling', 'called', 'called', _, ['2A','2B','2C','3A','4A','6A','12B','13B','15B','22','23'] ). +verb( 'calm', 'calms', 'calming', 'calmed', 'calmed', _, ['2C','6A','15B'] ). +verb( 'calumniate', 'calumniates', 'calumniating', 'calumniated', 'calumniated', tran, ['6A'] ). +verb( 'calve', 'calves', 'calving', 'calved', 'calved', intran, [] ). +verb( 'camber', 'cambers', 'cambering', 'cambered', 'cambered', _, [] ). +verb( 'camouflage', 'camouflages', 'camouflaging', 'camouflaged', 'camouflaged', tran, ['6A'] ). +verb( 'camp', 'camps', 'camping', 'camped', 'camped', _, ['2A','2C'] ). +verb( 'campaign', 'campaigns', 'campaigning', 'campaigned', 'campaigned', intran, ['2A','3A'] ). +verb( 'can', 'can', '-', 'could', '-', unknown, ['5','6A'] ). +verb( 'can', 'cans', 'canning', 'canned', 'canned', tran, ['5','6A'] ). +verb( 'canalize', 'canalizes', 'canalizing', 'canalized', 'canalized', tran, ['6A','14'] ). +verb( 'cancel', 'cancels', 'cancelling', 'cancelled', 'cancelled', _, ['2C','6A','15B'] ). +verb( 'candy', 'candies', 'candying', 'candied', 'candied', _, ['2A','6A'] ). +verb( 'cane', 'canes', 'caning', 'caned', 'caned', tran, ['6A'] ). +verb( 'canker', 'cankers', 'cankering', 'cankered', 'cankered', tran, [] ). +verb( 'cannibalize', 'cannibalizes', 'cannibalizing', 'cannibalized', 'cannibalized', tran, [] ). +verb( 'canoe', 'canoes', 'canoeing', 'canoed', 'canoed', tran, ['2A','2C'] ). +verb( 'canonize', 'canonizes', 'canonizing', 'canonized', 'canonized', tran, ['6A'] ). +verb( 'cant', 'cants', 'canting', 'canted', 'canted', _, ['2A','2C','6A','15B'] ). +verb( 'canter', 'canters', 'cantering', 'cantered', 'cantered', _, [] ). +verb( 'canvass', 'canvasses', 'canvassing', 'canvassed', 'canvassed', _, ['2A','3A','6A'] ). +verb( 'cap', 'caps', 'capping', 'capped', 'capped', tran, ['6A'] ). +verb( 'caparison', 'caparisons', 'caparisoning', 'caparisoned', 'caparisoned', tran, [] ). +verb( 'caper', 'capers', 'capering', 'capered', 'capered', intran, [] ). +verb( 'capitalize', 'capitalizes', 'capitalizing', 'capitalized', 'capitalized', _, ['3A','6A'] ). +verb( 'capitulate', 'capitulates', 'capitulating', 'capitulated', 'capitulated', tran, ['2A'] ). +verb( 'capsize', 'capsizes', 'capsizing', 'capsized', 'capsized', _, ['2A','6A'] ). +verb( 'captain', 'captains', 'captaining', 'captained', 'captained', tran, ['6A'] ). +verb( 'captivate', 'captivates', 'captivating', 'captivated', 'captivated', tran, ['6A'] ). +verb( 'capture', 'captures', 'capturing', 'captured', 'captured', tran, ['6A'] ). +verb( 'carbonize', 'carbonizes', 'carbonizing', 'carbonized', 'carbonized', tran, ['6A'] ). +verb( 'card', 'cards', 'carding', 'carded', 'carded', tran, [] ). +verb( 'care', 'cares', 'caring', 'cared', 'cared', intran, ['2A','3A','3B','4C'] ). +verb( 'careen', 'careens', 'careening', 'careened', 'careened', _, ['2A','6A'] ). +verb( 'career', 'careers', 'careering', 'careered', 'careered', intran, ['2C','3A'] ). +verb( 'caress', 'caresses', 'caressing', 'caressed', 'caressed', tran, ['6A'] ). +verb( 'caricature', 'caricatures', 'caricaturing', 'caricatured', 'caricatured', tran, ['6A'] ). +verb( 'carol', 'carols', 'carolling', 'carolled', 'carolled', tran, [] ). +verb( 'carouse', 'carouses', 'carousing', 'caroused', 'caroused', tran, ['2A'] ). +verb( 'carp', 'carps', 'carping', 'carped', 'carped', tran, ['2A','3A'] ). +verb( 'carpet', 'carpets', 'carpeting', 'carpeted', 'carpeted', tran, ['6A'] ). +verb( 'carry', 'carries', 'carrying', 'carried', 'carried', _, ['2B','2C','6A','15A','15B','16B'] ). +verb( 'cart', 'carts', 'carting', 'carted', 'carted', tran, ['6A','15B'] ). +verb( 'cartoon', 'cartoons', 'cartooning', 'cartooned', 'cartooned', tran, [] ). +verb( 'carve', 'carves', 'carving', 'carved', 'carved', _, ['6A','14','15A','15B'] ). +verb( 'cascade', 'cascades', 'cascading', 'cascaded', 'cascaded', intran, [] ). +verb( 'case', 'cases', 'casing', 'cased', 'cased', tran, ['6A'] ). +verb( 'cash', 'cashes', 'cashing', 'cashed', 'cashed', _, ['2C','6A','12B','13B'] ). +verb( 'cashier', 'cashiers', 'cashiering', 'cashiered', 'cashiered', tran, ['6A'] ). +verb( 'cast', 'casts', 'casting', 'cast', 'cast', _, ['2C','6A','15A','15B'] ). +verb( 'castigate', 'castigates', 'castigating', 'castigated', 'castigated', tran, ['6A'] ). +verb( 'castle', 'castles', 'castling', 'castled', 'castled', intran, [] ). +verb( 'castrate', 'castrates', 'castrating', 'castrated', 'castrated', tran, ['6A'] ). +verb( 'catalogue', 'catalogues', 'cataloguing', 'catalogued', 'catalogued', tran, ['6A'] ). +verb( 'catapult', 'catapults', 'catapulting', 'catapulted', 'catapulted', tran, [] ). +verb( 'catcall', 'catcalls', 'catcalling', 'catcalled', 'catcalled', intran, [] ). +verb( 'catch', 'catches', 'catching', 'caught', 'caught', _, ['2C','3A','6A','12C','14','15A','15B','19B','22'] ). +verb( 'catechize', 'catechizes', 'catechizing', 'catechized', 'catechized', tran, ['6A'] ). +verb( 'categorize', 'categorizes', 'categorizing', 'categorized', 'categorized', tran, ['6A'] ). +verb( 'cater', 'caters', 'catering', 'catered', 'catered', intran, ['3A'] ). +verb( 'caterwaul', 'caterwauls', 'caterwauling', 'caterwauled', 'caterwauled', intran, [] ). +verb( 'caulk', 'caulks', 'caulking', 'caulked', 'caulked', tran, ['6A'] ). +verb( 'cause', 'causes', 'causing', 'caused', 'caused', tran, ['6A','12A','13A','17'] ). +verb( 'cauterize', 'cauterizes', 'cauterizing', 'cauterized', 'cauterized', tran, ['6A'] ). +verb( 'caution', 'cautions', 'cautioning', 'cautioned', 'cautioned', tran, ['6A','14','17'] ). +verb( 'cave', 'caves', 'caving', 'caved', 'caved', _, ['2C','15B'] ). +verb( 'cavil', 'cavils', 'cavilling', 'cavilled', 'cavilled', intran, ['2A','3A'] ). +verb( 'cavort', 'cavorts', 'cavorting', 'cavorted', 'cavorted', intran, [] ). +verb( 'caw', 'caws', 'cawing', 'cawed', 'cawed', _, ['2A','15B'] ). +verb( 'cease', 'ceases', 'ceasing', 'ceased', 'ceased', _, ['2A','3A','6A','6D','7A'] ). +verb( 'cede', 'cedes', 'ceding', 'ceded', 'ceded', tran, ['6A','14'] ). +verb( 'celebrate', 'celebrates', 'celebrating', 'celebrated', 'celebrated', tran, ['6A'] ). +verb( 'cement', 'cements', 'cementing', 'cemented', 'cemented', tran, ['6A','15B'] ). +verb( 'censor', 'censors', 'censoring', 'censored', 'censored', tran, ['6A'] ). +verb( 'censure', 'censures', 'censuring', 'censured', 'censured', tran, ['6A','14'] ). +verb( 'centralize', 'centralizes', 'centralizing', 'centralized', 'centralized', _, ['2A','6A'] ). +verb( 'centre', 'centres', 'centring', 'centred', 'centred', _, ['3A','6A','14','15A'] ). +verb( 'certificate', 'certificates', 'certificating', 'certificated', 'certificated', tran, [] ). +verb( 'certify', 'certifies', 'certifying', 'certified', 'certified', _, ['3A','6A','9','16B','25'] ). +verb( 'chafe', 'chafes', 'chafing', 'chafed', 'chafed', _, ['2A','3A','6A'] ). +verb( 'chaff', 'chaffs', 'chaffing', 'chaffed', 'chaffed', tran, ['2A','2C','6A','15A'] ). +verb( 'chagrin', 'chagrins', 'chagrining', 'chagrined', 'chagrined', tran, ['6A'] ). +verb( 'chain', 'chains', 'chaining', 'chained', 'chained', tran, ['6A','15A','15B'] ). +verb( 'chair', 'chairs', 'chairing', 'chaired', 'chaired', tran, ['6A'] ). +verb( 'chalk', 'chalks', 'chalking', 'chalked', 'chalked', tran, ['15B'] ). +verb( 'challenge', 'challenges', 'challenging', 'challenged', 'challenged', tran, ['6A','14','17'] ). +verb( 'champ', 'champs', 'champing', 'champed', 'champed', _, ['2A','2C','4A','6A'] ). +verb( 'champion', 'champions', 'championing', 'championed', 'championed', tran, ['6A'] ). +verb( 'chance', 'chances', 'chancing', 'chanced', 'chanced', _, ['2A','3A','4E','6A','6C'] ). +verb( 'change', 'changes', 'changing', 'changed', 'changed', _, ['2A','2C','6A','14'] ). +verb( 'channel', 'channels', 'channelling', 'channelled', 'channelled', tran, ['6A','14'] ). +verb( 'chant', 'chants', 'chanting', 'chanted', 'chanted', _, ['2A','6A'] ). +verb( 'chap', 'chaps', 'chapping', 'chapped', 'chapped', _, ['2A','6A'] ). +verb( 'chaperon', 'chaperons', 'chaperoning', 'chaperoned', 'chaperoned', tran, ['6A'] ). +verb( 'char', 'chars', 'charring', 'charred', 'charred', _, ['2A','6A'] ). +verb( 'characterize', 'characterizes', 'characterizing', 'characterized', 'characterized', tran, ['6A'] ). +verb( 'charge', 'charges', 'charging', 'charged', 'charged', _, ['2A','2B','2C','6A','14','15A','15B','17'] ). +verb( 'charm', 'charms', 'charming', 'charmed', 'charmed', _, ['2A','6A','15A'] ). +verb( 'chart', 'charts', 'charting', 'charted', 'charted', tran, ['6A'] ). +verb( 'charter', 'charters', 'chartering', 'chartered', 'chartered', tran, ['6A'] ). +verb( 'chase', 'chases', 'chasing', 'chased', 'chased', _, ['2C','3A','6A','15A','15B'] ). +verb( 'chasten', 'chastens', 'chastening', 'chastened', 'chastened', tran, ['6A'] ). +verb( 'chastise', 'chastises', 'chastising', 'chastised', 'chastised', tran, ['6A'] ). +verb( 'chat', 'chats', 'chatting', 'chatted', 'chatted', _, ['2A','2C','15B'] ). +verb( 'chatter', 'chatters', 'chattering', 'chattered', 'chattered', intran, ['2A','2C'] ). +verb( 'chaw', 'chaws', 'chawing', 'chawed', 'chawed', tran, [] ). +verb( 'cheapen', 'cheapens', 'cheapening', 'cheapened', 'cheapened', _, ['2A','6A'] ). +verb( 'cheat', 'cheats', 'cheating', 'cheated', 'cheated', _, ['2A','2C','6A','14'] ). +verb( 'check', 'checks', 'checking', 'checked', 'checked', _, ['2C','6A','15B'] ). +verb( 'checker', 'checkers', 'checkering', 'checkered', 'checkered', tran, [] ). +verb( 'checkmate', 'checkmates', 'checkmating', 'checkmated', 'checkmated', tran, ['6A'] ). +verb( 'cheek', 'cheeks', 'cheeking', 'cheeked', 'cheeked', tran, ['6A'] ). +verb( 'cheep', 'cheeps', 'cheeping', 'cheeped', 'cheeped', intran, [] ). +verb( 'cheer', 'cheers', 'cheering', 'cheered', 'cheered', _, ['2A','2C','6A','15B'] ). +verb( 'chequer', 'chequers', 'chequering', 'chequered', 'chequered', tran, [] ). +verb( 'cherish', 'cherishes', 'cherishing', 'cherished', 'cherished', tran, ['6A'] ). +verb( 'chew', 'chews', 'chewing', 'chewed', 'chewed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'chide', 'chides', 'chiding', 'chided', 'chided', _, ['6A','14'] ). +verb( 'chill', 'chills', 'chilling', 'chilled', 'chilled', _, ['2A','2C','6A'] ). +verb( 'chime', 'chimes', 'chiming', 'chimed', 'chimed', _, ['2A','2C','6A','15A'] ). +verb( 'chink', 'chinks', 'chinking', 'chinked', 'chinked', _, ['2A','2C','6A','15B'] ). +verb( 'chip', 'chips', 'chipping', 'chipped', 'chipped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'chirp', 'chirps', 'chirping', 'chirped', 'chirped', _, [] ). +verb( 'chirrup', 'chirrups', 'chirruping', 'chirruped', 'chirruped', _, [] ). +verb( 'chisel', 'chisels', 'chiselling', 'chiselled', 'chiselled', tran, ['6A','14','15B'] ). +verb( 'chivvy', 'chivvies', 'chivvying', 'chivvied', 'chivvied', tran, ['15B'] ). +verb( 'chivy', 'chivies', 'chivying', 'chivied', 'chivied', tran, ['15B'] ). +verb( 'chlorinate', 'chlorinates', 'chlorinating', 'chlorinated', 'chlorinated', tran, [] ). +verb( 'chock', 'chocks', 'chocking', 'chocked', 'chocked', tran, ['6A','15B'] ). +verb( 'choke', 'chokes', 'choking', 'choked', 'choked', _, ['2A','3A','6A','14','15B'] ). +verb( 'choose', 'chooses', 'choosing', 'chose', 'chosen', _, ['2A','2C','3A','6A','7A','16A','16B','23'] ). +verb( 'chop', 'chops', 'chopping', 'chopped', 'chopped', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'chortle', 'chortles', 'chortling', 'chortled', 'chortled', intran, [] ). +verb( 'chorus', 'choruses', 'chorusing', 'chorused', 'chorused', tran, [] ). +verb( 'christen', 'christens', 'christening', 'christened', 'christened', tran, ['6A','23'] ). +verb( 'chronicle', 'chronicles', 'chronicling', 'chronicled', 'chronicled', tran, ['6A'] ). +verb( 'chuck', 'chucks', 'chucking', 'chucked', 'chucked', tran, ['6A','12A','13A','15A','15B'] ). +verb( 'chuckle', 'chuckles', 'chuckling', 'chuckled', 'chuckled', intran, ['2A','2C'] ). +verb( 'chug', 'chugs', 'chugging', 'chugged', 'chugged', intran, ['2C'] ). +verb( 'chum', 'chums', 'chumming', 'chummed', 'chummed', intran, ['2C'] ). +verb( 'churn', 'churns', 'churning', 'churned', 'churned', _, ['2A','2C','6A','15B'] ). +verb( 'cipher', 'ciphers', 'ciphering', 'ciphered', 'ciphered', _, ['2A','6A'] ). +verb( 'circle', 'circles', 'circling', 'circled', 'circled', _, ['2A','2C','6A'] ). +verb( 'circularize', 'circularizes', 'circularizing', 'circularized', 'circularized', tran, ['6A'] ). +verb( 'circulate', 'circulates', 'circulating', 'circulated', 'circulated', _, ['2A','2C','6A'] ). +verb( 'circumcise', 'circumcises', 'circumcising', 'circumcised', 'circumcised', tran, [] ). +verb( 'circumnavigate', 'circumnavigates', 'circumnavigating', 'circumnavigated', 'circumnavigated', tran, ['6A'] ). +verb( 'circumscribe', 'circumscribes', 'circumscribing', 'circumscribed', 'circumscribed', tran, ['6A'] ). +verb( 'circumvent', 'circumvents', 'circumventing', 'circumvented', 'circumvented', tran, ['6A'] ). +verb( 'cite', 'cites', 'citing', 'cited', 'cited', tran, ['6A'] ). +verb( 'civilize', 'civilizes', 'civilizing', 'civilized', 'civilized', tran, ['6A'] ). +verb( 'clack', 'clacks', 'clacking', 'clacked', 'clacked', intran, [] ). +verb( 'claim', 'claims', 'claiming', 'claimed', 'claimed', _, ['2A','4A','7A','9'] ). +verb( 'clam', 'clams', 'clamming', 'clammed', 'clammed', intran, ['2A','2C'] ). +verb( 'clamber', 'clambers', 'clambering', 'clambered', 'clambered', intran, ['2C'] ). +verb( 'clamour', 'clamours', 'clamouring', 'clamoured', 'clamoured', _, ['2A','2C','4A'] ). +verb( 'clamp', 'clamps', 'clamping', 'clamped', 'clamped', _, ['2C','6A','15B'] ). +verb( 'clang', 'clangs', 'clanging', 'clanged', 'clanged', _, [] ). +verb( 'clank', 'clanks', 'clanking', 'clanked', 'clanked', _, [] ). +verb( 'clap', 'claps', 'clapping', 'clapped', 'clapped', _, ['2A','2B','6A','14','15A','15B'] ). +verb( 'clarify', 'clarifies', 'clarifying', 'clarified', 'clarified', _, ['2A','6A'] ). +verb( 'clash', 'clashes', 'clashing', 'clashed', 'clashed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'clasp', 'clasps', 'clasping', 'clasped', 'clasped', _, ['2A','6A','15A'] ). +verb( 'class', 'classes', 'classing', 'classed', 'classed', tran, ['6A','14'] ). +verb( 'classify', 'classifies', 'classifying', 'classified', 'classified', tran, ['6A'] ). +verb( 'clatter', 'clatters', 'clattering', 'clattered', 'clattered', _, ['2A','2C','6A'] ). +verb( 'claw', 'claws', 'clawing', 'clawed', 'clawed', tran, ['3A','6A','15B'] ). +verb( 'clean', 'cleans', 'cleaning', 'cleaned', 'cleaned', _, ['2A','2C','6A','15B'] ). +verb( 'cleanse', 'cleanses', 'cleansing', 'cleansed', 'cleansed', tran, ['6A'] ). +verb( 'clear', 'clears', 'clearing', 'cleared', 'cleared', _, ['2C','6A','14','15B'] ). +verb( 'cleave', 'cleaves', 'cleaving', 'cleaved', 'cleaved', _, ['2A','3A','6A','14','15A','15B','22'] ). +verb( 'clench', 'clenches', 'clenching', 'clenched', 'clenched', tran, ['6A','14'] ). +verb( 'clerk', 'clerks', 'clerking', 'clerked', 'clerked', intran, [] ). +verb( 'clew', 'clews', 'clewing', 'clewed', 'clewed', tran, [] ). +verb( 'click', 'clicks', 'clicking', 'clicked', 'clicked', intran, ['2A'] ). +verb( 'climax', 'climaxes', 'climaxing', 'climaxed', 'climaxed', _, [] ). +verb( 'climb', 'climbs', 'climbing', 'climbed', 'climbed', _, ['2A','2C','6A'] ). +verb( 'clinch', 'clinches', 'clinching', 'clinched', 'clinched', _, ['2A','6A'] ). +verb( 'cling', 'clings', 'clinging', 'clung', 'clung', intran, ['2C','3A'] ). +verb( 'clink', 'clinks', 'clinking', 'clinked', 'clinked', _, [] ). +verb( 'clip', 'clips', 'clipping', 'clipped', 'clipped', tran, ['2C','6A','15A','15B','22'] ). +verb( 'cloak', 'cloaks', 'cloaking', 'cloaked', 'cloaked', tran, ['6A'] ). +verb( 'clobber', 'clobbers', 'clobbering', 'clobbered', 'clobbered', tran, ['6A'] ). +verb( 'clock', 'clocks', 'clocking', 'clocked', 'clocked', _, ['2C','6A','15B'] ). +verb( 'clog', 'clogs', 'clogging', 'clogged', 'clogged', _, ['2A','2C','6A','15B'] ). +verb( 'cloister', 'cloisters', 'cloistering', 'cloistered', 'cloistered', tran, ['6A'] ). +verb( 'close', 'closes', 'closing', 'closed', 'closed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'closet', 'closets', 'closeting', 'closeted', 'closeted', tran, [] ). +verb( 'clot', 'clots', 'clotting', 'clotted', 'clotted', _, ['2A','6A'] ). +verb( 'clothe', 'clothes', 'clothing', 'clothed', 'clothed', tran, ['6A'] ). +verb( 'cloud', 'clouds', 'clouding', 'clouded', 'clouded', _, ['2A','2C','3A','6A'] ). +verb( 'clout', 'clouts', 'clouting', 'clouted', 'clouted', tran, [] ). +verb( 'clown', 'clowns', 'clowning', 'clowned', 'clowned', intran, ['2A'] ). +verb( 'cloy', 'cloys', 'cloying', 'cloyed', 'cloyed', _, ['2A','6A'] ). +verb( 'club', 'clubs', 'clubbing', 'clubbed', 'clubbed', _, ['2C','6A','16A'] ). +verb( 'cluck', 'clucks', 'clucking', 'clucked', 'clucked', intran, [] ). +verb( 'clump', 'clumps', 'clumping', 'clumped', 'clumped', _, ['2A','2C'] ). +verb( 'clunk', 'clunks', 'clunking', 'clunked', 'clunked', intran, [] ). +verb( 'cluster', 'clusters', 'clustering', 'clustered', 'clustered', intran, ['2A','2C','3A'] ). +verb( 'clutch', 'clutches', 'clutching', 'clutched', 'clutched', _, ['2A','3A','15A'] ). +verb( 'clutter', 'clutters', 'cluttering', 'cluttered', 'cluttered', tran, ['6A','15B'] ). +verb( 'co-opt', 'co-opts', 'co-opting', 'co-opted', 'co-opted', tran, ['6A','14'] ). +verb( 'co-star', 'co-stars', 'co-starring', 'co-starred', 'co-starred', _, ['6A','14'] ). +verb( 'coach', 'coaches', 'coaching', 'coached', 'coached', _, ['2A','6A','14'] ). +verb( 'coagulate', 'coagulates', 'coagulating', 'coagulated', 'coagulated', _, ['2A','6A'] ). +verb( 'coal', 'coals', 'coaling', 'coaled', 'coaled', _, ['2A','6A'] ). +verb( 'coalesce', 'coalesces', 'coalescing', 'coalesced', 'coalesced', intran, [] ). +verb( 'coarsen', 'coarsens', 'coarsening', 'coarsened', 'coarsened', _, ['2A','6A'] ). +verb( 'coast', 'coasts', 'coasting', 'coasted', 'coasted', _, ['2A','2C','3A','6A'] ). +verb( 'coat', 'coats', 'coating', 'coated', 'coated', tran, ['6A','14'] ). +verb( 'coax', 'coaxes', 'coaxing', 'coaxed', 'coaxed', _, ['2A','6A','14','15B','17'] ). +verb( 'cobble', 'cobbles', 'cobbling', 'cobbled', 'cobbled', tran, ['6A'] ). +verb( 'cock', 'cocks', 'cocking', 'cocked', 'cocked', tran, ['6A','15B'] ). +verb( 'cocoon', 'cocoons', 'cocooning', 'cocooned', 'cocooned', tran, ['6A'] ). +verb( 'cod', 'cods', 'codding', 'codded', 'codded', _, ['2A','6A'] ). +verb( 'coddle', 'coddles', 'coddling', 'coddled', 'coddled', tran, ['6A'] ). +verb( 'code', 'codes', 'coding', 'coded', 'coded', tran, [] ). +verb( 'codify', 'codifies', 'codifying', 'codified', 'codified', tran, ['6A'] ). +verb( 'coerce', 'coerces', 'coercing', 'coerced', 'coerced', tran, ['6A','14'] ). +verb( 'coexist', 'coexists', 'coexisting', 'coexisted', 'coexisted', intran, ['2A','3A'] ). +verb( 'cogitate', 'cogitates', 'cogitating', 'cogitated', 'cogitated', _, ['2A','3A','6A','14'] ). +verb( 'cohabit', 'cohabits', 'cohabiting', 'cohabited', 'cohabited', intran, [] ). +verb( 'cohere', 'coheres', 'cohering', 'cohered', 'cohered', intran, ['2A'] ). +verb( 'coil', 'coils', 'coiling', 'coiled', 'coiled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'coin', 'coins', 'coining', 'coined', 'coined', tran, ['6A'] ). +verb( 'coincide', 'coincides', 'coinciding', 'coincided', 'coincided', intran, ['2A','3A'] ). +verb( 'coke', 'cokes', 'coking', 'coked', 'coked', tran, [] ). +verb( 'cold-shoulder', 'cold-shoulders', 'cold-shouldering', 'cold-shouldered', 'cold-shouldered', tran, ['6A'] ). +verb( 'collaborate', 'collaborates', 'collaborating', 'collaborated', 'collaborated', intran, ['2A','3A'] ). +verb( 'collapse', 'collapses', 'collapsing', 'collapsed', 'collapsed', intran, ['2A','6A'] ). +verb( 'collar', 'collars', 'collaring', 'collared', 'collared', tran, ['6A'] ). +verb( 'collate', 'collates', 'collating', 'collated', 'collated', tran, ['6A'] ). +verb( 'collect', 'collects', 'collecting', 'collected', 'collected', _, ['2A','2C','6A','15B'] ). +verb( 'collectivize', 'collectivizes', 'collectivizing', 'collectivized', 'collectivized', tran, ['6A'] ). +verb( 'collide', 'collides', 'colliding', 'collided', 'collided', intran, ['2A','2C','3A'] ). +verb( 'collocate', 'collocates', 'collocating', 'collocated', 'collocated', intran, ['2A','3A'] ). +verb( 'colonize', 'colonizes', 'colonizing', 'colonized', 'colonized', tran, ['6A'] ). +verb( 'colour', 'colours', 'colouring', 'coloured', 'coloured', _, ['2A','2C','6A','22'] ). +verb( 'comb', 'combs', 'combing', 'combed', 'combed', _, ['2C','3A','6A','15B'] ). +verb( 'combat', 'combats', 'combating', 'combated', 'combated', _, ['3A','6A'] ). +verb( 'combine', 'combines', 'combining', 'combined', 'combined', _, ['2A','3A','4A','6A','14'] ). +verb( 'come', 'comes', 'coming', 'came', 'come', intran, ['2A','2B','2C','2D','2E','3A','4A'] ). +verb( 'comfort', 'comforts', 'comforting', 'comforted', 'comforted', tran, ['6A'] ). +verb( 'command', 'commands', 'commanding', 'commanded', 'commanded', _, ['2A','6A','9','17'] ). +verb( 'commandeer', 'commandeers', 'commandeering', 'commandeered', 'commandeered', tran, ['6A'] ). +verb( 'commemorate', 'commemorates', 'commemorating', 'commemorated', 'commemorated', tran, ['6A'] ). +verb( 'commence', 'commences', 'commencing', 'commenced', 'commenced', _, ['2A','3A','6A','6C'] ). +verb( 'commend', 'commends', 'commending', 'commended', 'commended', tran, ['6A','14'] ). +verb( 'comment', 'comments', 'commenting', 'commented', 'commented', intran, ['2A','3A'] ). +verb( 'commentate', 'commentates', 'commentating', 'commentated', 'commentated', intran, ['3A'] ). +verb( 'commercialize', 'commercializes', 'commercializing', 'commercialized', 'commercialized', tran, ['6A'] ). +verb( 'commingle', 'commingles', 'commingling', 'commingled', 'commingled', _, ['2A','6A'] ). +verb( 'commiserate', 'commiserates', 'commiserating', 'commiserated', 'commiserated', intran, ['3A'] ). +verb( 'commission', 'commissions', 'commissioning', 'commissioned', 'commissioned', tran, ['6A','17'] ). +verb( 'commit', 'commits', 'committing', 'committed', 'committed', tran, ['6A','14','16A'] ). +verb( 'commune', 'communes', 'communing', 'communed', 'communed', intran, ['2C','3A'] ). +verb( 'communicate', 'communicates', 'communicating', 'communicated', 'communicated', _, ['2A','3A','6A','14'] ). +verb( 'commute', 'commutes', 'commuting', 'commuted', 'commuted', _, ['2A','6A','14'] ). +verb( 'comp`ere', 'comp`eres', 'comp`ering', 'comp`ered', 'comp`ered', tran, [] ). +verb( 'compact', 'compacts', 'compacting', 'compacted', 'compacted', tran, [] ). +verb( 'compare', 'compares', 'comparing', 'compared', 'compared', _, ['3A','6A','14'] ). +verb( 'compartmentalize', 'compartmentalizes', 'compartmentalizing', 'compartmentalized', 'compartmentalized', tran, [] ). +verb( 'compass', 'compasses', 'compassing', 'compassed', 'compassed', tran, [] ). +verb( 'compel', 'compels', 'compelling', 'compelled', 'compelled', tran, ['6A','14','17'] ). +verb( 'compensate', 'compensates', 'compensating', 'compensated', 'compensated', _, ['3A','6A','14'] ). +verb( 'compete', 'competes', 'competing', 'competed', 'competed', intran, ['2A','3A'] ). +verb( 'compile', 'compiles', 'compiling', 'compiled', 'compiled', tran, ['6A'] ). +verb( 'complain', 'complains', 'complaining', 'complained', 'complained', intran, ['2A','3A','3B'] ). +verb( 'complement', 'complements', 'complementing', 'complemented', 'complemented', tran, ['6A'] ). +verb( 'complete', 'completes', 'completing', 'completed', 'completed', tran, ['6A'] ). +verb( 'complicate', 'complicates', 'complicating', 'complicated', 'complicated', tran, ['6A'] ). +verb( 'compliment', 'compliments', 'complimenting', 'complimented', 'complimented', tran, ['6A','14'] ). +verb( 'comply', 'complies', 'complying', 'complied', 'complied', tran, ['2A','3A'] ). +verb( 'comport', 'comports', 'comporting', 'comported', 'comported', _, ['3A','15A'] ). +verb( 'compose', 'composes', 'composing', 'composed', 'composed', _, ['2A','6A','16A'] ). +verb( 'compost', 'composts', 'composting', 'composted', 'composted', tran, ['6A'] ). +verb( 'compound', 'compounds', 'compounding', 'compounded', 'compounded', _, ['2A','3A','6A'] ). +verb( 'comprehend', 'comprehends', 'comprehending', 'comprehended', 'comprehended', tran, ['6A'] ). +verb( 'compress', 'compresses', 'compressing', 'compressed', 'compressed', tran, ['6A','14'] ). +verb( 'comprise', 'comprises', 'comprising', 'comprised', 'comprised', tran, ['6A'] ). +verb( 'compromise', 'compromises', 'compromising', 'compromised', 'compromised', _, ['2A','6A'] ). +verb( 'compute', 'computes', 'computing', 'computed', 'computed', _, ['2A','6A','14'] ). +verb( 'computerize', 'computerizes', 'computerizing', 'computerized', 'computerized', tran, ['6A'] ). +verb( 'con', 'cons', 'conning', 'conned', 'conned', tran, ['6A','14'] ). +verb( 'conceal', 'conceals', 'concealing', 'concealed', 'concealed', tran, ['6A','14'] ). +verb( 'concede', 'concedes', 'conceding', 'conceded', 'conceded', tran, ['6A','9','12A','13A'] ). +verb( 'conceive', 'conceives', 'conceiving', 'conceived', 'conceived', _, ['2A','3A','6A','9','10','14'] ). +verb( 'concentrate', 'concentrates', 'concentrating', 'concentrated', 'concentrated', _, ['2A','3A','6A','14'] ). +verb( 'concern', 'concerns', 'concerning', 'concerned', 'concerned', tran, ['6A','14'] ). +verb( 'concert', 'concerts', 'concerting', 'concerted', 'concerted', tran, [] ). +verb( 'conciliate', 'conciliates', 'conciliating', 'conciliated', 'conciliated', tran, ['6A'] ). +verb( 'conclude', 'concludes', 'concluding', 'concluded', 'concluded', _, ['2A','3A','6A','7A','9','14'] ). +verb( 'concoct', 'concocts', 'concocting', 'concocted', 'concocted', tran, ['6A'] ). +verb( 'concrete', 'concretes', 'concreting', 'concreted', 'concreted', _, ['2A','6A'] ). +verb( 'concur', 'concurs', 'concurring', 'concurred', 'concurred', intran, ['2A','3A','4A'] ). +verb( 'concuss', 'concusses', 'concussing', 'concussed', 'concussed', tran, ['6A'] ). +verb( 'condemn', 'condemns', 'condemning', 'condemned', 'condemned', tran, ['6A','14','16B','17'] ). +verb( 'condense', 'condenses', 'condensing', 'condensed', 'condensed', _, ['2A','3A','6A','14'] ). +verb( 'condescend', 'condescends', 'condescending', 'condescended', 'condescended', intran, ['2A','3A','4A'] ). +verb( 'condition', 'conditions', 'conditioning', 'conditioned', 'conditioned', tran, ['6A'] ). +verb( 'condole', 'condoles', 'condoling', 'condoled', 'condoled', intran, ['3A'] ). +verb( 'condone', 'condones', 'condoning', 'condoned', 'condoned', tran, ['6A','6C'] ). +verb( 'conduce', 'conduces', 'conducing', 'conduced', 'conduced', intran, ['3A'] ). +verb( 'conduct', 'conducts', 'conducting', 'conducted', 'conducted', _, ['2A','6A','14','15A','15B','16A'] ). +verb( 'cone', 'cones', 'coning', 'coned', 'coned', tran, ['15B'] ). +verb( 'confab', 'confabs', 'confabbing', 'confabbed', 'confabbed', intran, [] ). +verb( 'confabulate', 'confabulates', 'confabulating', 'confabulated', 'confabulated', intran, ['2A','3A'] ). +verb( 'confederate', 'confederates', 'confederating', 'confederated', 'confederated', _, ['2A','3A','6A','14'] ). +verb( 'confer', 'confers', 'conferring', 'conferred', 'conferred', _, ['2A','3A','14'] ). +verb( 'confess', 'confesses', 'confessing', 'confessed', 'confessed', _, ['2A','3A','3B','6A','9','14','25'] ). +verb( 'confide', 'confides', 'confiding', 'confided', 'confided', _, ['3A','14'] ). +verb( 'configure', 'configures', 'configuring', 'configured', 'configured', tran, ['6A'] ). +verb( 'confine', 'confines', 'confining', 'confined', 'confined', tran, ['6A','14'] ). +verb( 'confirm', 'confirms', 'confirming', 'confirmed', 'confirmed', tran, ['6A','9'] ). +verb( 'confiscate', 'confiscates', 'confiscating', 'confiscated', 'confiscated', tran, ['6A'] ). +verb( 'conflict', 'conflicts', 'conflicting', 'conflicted', 'conflicted', intran, ['2A','3A'] ). +verb( 'conform', 'conforms', 'conforming', 'conformed', 'conformed', _, ['2A','3A','14'] ). +verb( 'confound', 'confounds', 'confounding', 'confounded', 'confounded', tran, ['6A','14'] ). +verb( 'confront', 'confronts', 'confronting', 'confronted', 'confronted', tran, ['6A','14'] ). +verb( 'confuse', 'confuses', 'confusing', 'confused', 'confused', tran, ['6A','14'] ). +verb( 'confute', 'confutes', 'confuting', 'confuted', 'confuted', tran, ['6A'] ). +verb( 'congeal', 'congeals', 'congealing', 'congealed', 'congealed', _, ['2A','6A'] ). +verb( 'conglomerate', 'conglomerates', 'conglomerating', 'conglomerated', 'conglomerated', _, ['2A','6A'] ). +verb( 'congratulate', 'congratulates', 'congratulating', 'congratulated', 'congratulated', tran, ['6A','14'] ). +verb( 'congregate', 'congregates', 'congregating', 'congregated', 'congregated', _, ['2A','2C','6A'] ). +verb( 'conjecture', 'conjectures', 'conjecturing', 'conjectured', 'conjectured', _, ['2A','6A','9','25'] ). +verb( 'conjoin', 'conjoins', 'conjoining', 'conjoined', 'conjoined', _, ['2A','6A'] ). +verb( 'conjugate', 'conjugates', 'conjugating', 'conjugated', 'conjugated', _, ['2A','6A'] ). +verb( 'conjure', 'conjures', 'conjuring', 'conjured', 'conjured', _, ['2A','15A','15B','17'] ). +verb( 'conk', 'conks', 'conking', 'conked', 'conked', intran, [] ). +verb( 'connect', 'connects', 'connecting', 'connected', 'connected', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'connive', 'connives', 'conniving', 'connived', 'connived', intran, ['3A'] ). +verb( 'connote', 'connotes', 'connoting', 'connoted', 'connoted', tran, ['6A'] ). +verb( 'conquer', 'conquers', 'conquering', 'conquered', 'conquered', tran, ['6A'] ). +verb( 'conscript', 'conscripts', 'conscripting', 'conscripted', 'conscripted', tran, ['6A','14'] ). +verb( 'consecrate', 'consecrates', 'consecrating', 'consecrated', 'consecrated', tran, ['6A','14','23'] ). +verb( 'consent', 'consents', 'consenting', 'consented', 'consented', intran, ['2A','3A','7A'] ). +verb( 'conserve', 'conserves', 'conserving', 'conserved', 'conserved', tran, ['6A'] ). +verb( 'consider', 'considers', 'considering', 'considered', 'considered', tran, ['6A','6C','8','9','10','25'] ). +verb( 'consign', 'consigns', 'consigning', 'consigned', 'consigned', tran, ['6A','14'] ). +verb( 'consist', 'consists', 'consisting', 'consisted', 'consisted', intran, ['3A'] ). +verb( 'console', 'consoles', 'consoling', 'consoled', 'consoled', tran, ['6A','14'] ). +verb( 'consolidate', 'consolidates', 'consolidating', 'consolidated', 'consolidated', _, ['2A','6A'] ). +verb( 'consort', 'consorts', 'consorting', 'consorted', 'consorted', intran, ['2C','3A'] ). +verb( 'conspire', 'conspires', 'conspiring', 'conspired', 'conspired', _, ['2A','3A','4A','6A'] ). +verb( 'constipate', 'constipates', 'constipating', 'constipated', 'constipated', tran, ['6A'] ). +verb( 'constitute', 'constitutes', 'constituting', 'constituted', 'constituted', tran, ['6A','23'] ). +verb( 'constitutionalize', 'constitutionalizes', 'constitutionalizing', 'constitutionalized', 'constitutionalized', tran, [] ). +verb( 'constrain', 'constrains', 'constraining', 'constrained', 'constrained', tran, ['6A','17'] ). +verb( 'constrict', 'constricts', 'constricting', 'constricted', 'constricted', tran, ['6A'] ). +verb( 'construct', 'constructs', 'constructing', 'constructed', 'constructed', tran, ['6A'] ). +verb( 'construe', 'construes', 'construing', 'construed', 'construed', _, ['2A','6A'] ). +verb( 'consult', 'consults', 'consulting', 'consulted', 'consulted', _, ['3A','6A','14'] ). +verb( 'consume', 'consumes', 'consuming', 'consumed', 'consumed', _, ['6A'] ). +verb( 'consummate', 'consummates', 'consummating', 'consummated', 'consummated', tran, ['6A'] ). +verb( 'contact', 'contacts', 'contacting', 'contacted', 'contacted', tran, ['6A'] ). +verb( 'contain', 'contains', 'containing', 'contained', 'contained', tran, ['6A'] ). +verb( 'contaminate', 'contaminates', 'contaminating', 'contaminated', 'contaminated', tran, ['6A'] ). +verb( 'contemn', 'contemns', 'contemning', 'contemned', 'contemned', tran, ['6A'] ). +verb( 'contemplate', 'contemplates', 'contemplating', 'contemplated', 'contemplated', _, ['2A','6A','6C','19C'] ). +verb( 'contend', 'contends', 'contending', 'contended', 'contended', _, ['3A','9'] ). +verb( 'content', 'contents', 'contenting', 'contented', 'contented', tran, ['6A','14'] ). +verb( 'contest', 'contests', 'contesting', 'contested', 'contested', _, ['3A','6A','9'] ). +verb( 'continue', 'continues', 'continuing', 'continued', 'continued', _, ['2A','2B','2D','2E','6A','6D','7A','14'] ). +verb( 'contort', 'contorts', 'contorting', 'contorted', 'contorted', tran, ['6A','14'] ). +verb( 'contour', 'contours', 'contouring', 'contoured', 'contoured', tran, ['6A'] ). +verb( 'contract', 'contracts', 'contracting', 'contracted', 'contracted', _, ['2A','2C','4A','6A','14'] ). +verb( 'contradict', 'contradicts', 'contradicting', 'contradicted', 'contradicted', tran, ['6A'] ). +verb( 'contradistinguish', 'contradistinguishes', 'contradistinguishing', 'contradistinguished', 'contradistinguished', tran, ['14'] ). +verb( 'contrast', 'contrasts', 'contrasting', 'contrasted', 'contrasted', _, ['2C','3A','6A','14'] ). +verb( 'contravene', 'contravenes', 'contravening', 'contravened', 'contravened', tran, ['6A'] ). +verb( 'contribute', 'contributes', 'contributing', 'contributed', 'contributed', _, ['2A','3A','6A','14'] ). +verb( 'contrive', 'contrives', 'contriving', 'contrived', 'contrived', _, ['2A','6A','7A'] ). +verb( 'control', 'controls', 'controlling', 'controlled', 'controlled', tran, ['6A'] ). +verb( 'controvert', 'controverts', 'controverting', 'controverted', 'controverted', tran, ['6A'] ). +verb( 'contuse', 'contuses', 'contusing', 'contused', 'contused', tran, ['6A'] ). +verb( 'convalesce', 'convalesces', 'convalescing', 'convalesced', 'convalesced', intran, ['2A'] ). +verb( 'convene', 'convenes', 'convening', 'convened', 'convened', _, ['2A','6A'] ). +verb( 'converge', 'converges', 'converging', 'converged', 'converged', intran, ['2A','2C','3A'] ). +verb( 'converse', 'converses', 'conversing', 'conversed', 'conversed', intran, ['2A','2C','3A'] ). +verb( 'convert', 'converts', 'converting', 'converted', 'converted', tran, ['6A','14'] ). +verb( 'convey', 'conveys', 'conveying', 'conveyed', 'conveyed', tran, ['6A','14'] ). +verb( 'convict', 'convicts', 'convicting', 'convicted', 'convicted', tran, ['6A','14'] ). +verb( 'convince', 'convinces', 'convincing', 'convinced', 'convinced', tran, ['6A','11','14'] ). +verb( 'convoke', 'convokes', 'convoking', 'convoked', 'convoked', tran, ['6A'] ). +verb( 'convoy', 'convoys', 'convoying', 'convoyed', 'convoyed', tran, ['6A'] ). +verb( 'convulse', 'convulses', 'convulsing', 'convulsed', 'convulsed', tran, ['6A'] ). +verb( 'coo', 'coos', 'cooing', 'cooed', 'cooed', _, [] ). +verb( 'cook', 'cooks', 'cooking', 'cooked', 'cooked', _, ['2A','6A','12B','13B','15B'] ). +verb( 'cool', 'cools', 'cooling', 'cooled', 'cooled', _, ['2A','2C','6A'] ). +verb( 'coop', 'coops', 'cooping', 'cooped', 'cooped', tran, ['6A','15B'] ). +verb( 'cooperate', 'cooperates', 'cooperating', 'cooperated', 'cooperated', intran, ['2A','3A','4A'] ). +verb( 'coordinate', 'coordinates', 'coordinating', 'coordinated', 'coordinated', tran, ['6A'] ). +verb( 'cop', 'cops', 'copping', 'copped', 'copped', _, ['2C'] ). +verb( 'cope', 'copes', 'coping', 'coped', 'coped', intran, ['2A','3A'] ). +verb( 'copper', 'coppers', 'coppering', 'coppered', 'coppered', tran, [] ). +verb( 'copper-bottom', 'copper-bottoms', 'copper-bottoming', 'copper-bottomed', 'copper-bottomed', tran, [] ). +verb( 'copulate', 'copulates', 'copulating', 'copulated', 'copulated', intran, ['2A','3A'] ). +verb( 'copy', 'copies', 'copying', 'copied', 'copied', _, ['2A','6A','15A','15B'] ). +verb( 'copyright', 'copyrights', 'copyrighting', 'copyrighted', 'copyrighted', tran, [] ). +verb( 'cord', 'cords', 'cording', 'corded', 'corded', tran, [] ). +verb( 'cordon', 'cordons', 'cordoning', 'cordoned', 'cordoned', tran, ['15B'] ). +verb( 'core', 'cores', 'coring', 'cored', 'cored', tran, ['6A'] ). +verb( 'cork', 'corks', 'corking', 'corked', 'corked', tran, ['6A','15A'] ). +verb( 'corn', 'corns', 'corning', 'corned', 'corned', tran, [] ). +verb( 'corner', 'corners', 'cornering', 'cornered', 'cornered', _, ['2A','6A'] ). +verb( 'corral', 'corrals', 'corralling', 'corralled', 'corralled', tran, ['6A'] ). +verb( 'correct', 'corrects', 'correcting', 'corrected', 'corrected', tran, ['6A','14'] ). +verb( 'correlate', 'correlates', 'correlating', 'correlated', 'correlated', _, ['2A','3A','6A','14'] ). +verb( 'correspond', 'corresponds', 'corresponding', 'corresponded', 'corresponded', intran, ['2A','3A'] ). +verb( 'corroborate', 'corroborates', 'corroborating', 'corroborated', 'corroborated', tran, ['6A'] ). +verb( 'corrode', 'corrodes', 'corroding', 'corroded', 'corroded', _, ['2A','6A'] ). +verb( 'corrugate', 'corrugates', 'corrugating', 'corrugated', 'corrugated', _, ['2A','6A'] ). +verb( 'corrupt', 'corrupts', 'corrupting', 'corrupted', 'corrupted', _, ['2A','6A'] ). +verb( 'coruscate', 'coruscates', 'coruscating', 'coruscated', 'coruscated', intran, ['2A'] ). +verb( 'cosh', 'coshes', 'coshing', 'coshed', 'coshed', tran, [] ). +verb( 'cosset', 'cossets', 'cosseting', 'cosseted', 'cosseted', tran, [] ). +verb( 'cost', 'costs', 'costing', 'costed', 'costed', _, ['2B','6A'] ). +verb( 'cotton', 'cottons', 'cottoning', 'cottoned', 'cottoned', intran, [] ). +verb( 'couch', 'couches', 'couching', 'couched', 'couched', _, ['2A','6A','14'] ). +verb( 'cough', 'coughs', 'coughing', 'coughed', 'coughed', _, ['2A','15B'] ). +verb( 'counsel', 'counsels', 'counselling', 'counselled', 'counselled', tran, ['6A','6B','17'] ). +verb( 'count', 'counts', 'counting', 'counted', 'counted', _, ['2A','2C','3A','6A','14','16B','25'] ). +verb( 'countenance', 'countenances', 'countenancing', 'countenanced', 'countenanced', tran, ['6A'] ). +verb( 'counter', 'counters', 'countering', 'countered', 'countered', _, ['2A','3A','6A','14'] ). +verb( 'counteract', 'counteracts', 'counteracting', 'counteracted', 'counteracted', tran, ['6A'] ). +verb( 'counterattack', 'counterattacks', 'counterattacking', 'counterattacked', 'counterattacked', _, [] ). +verb( 'counterbalance', 'counterbalances', 'counterbalancing', 'counterbalanced', 'counterbalanced', tran, ['6A'] ). +verb( 'counterfeit', 'counterfeits', 'counterfeiting', 'counterfeited', 'counterfeited', tran, ['6A'] ). +verb( 'countermand', 'countermands', 'countermanding', 'countermanded', 'countermanded', tran, ['6A'] ). +verb( 'countermine', 'countermines', 'countermining', 'countermined', 'countermined', _, [] ). +verb( 'counterplot', 'counterplots', 'counterplotting', 'counterplotted', 'counterplotted', _, [] ). +verb( 'counterpoise', 'counterpoises', 'counterpoising', 'counterpoised', 'counterpoised', tran, [] ). +verb( 'countersign', 'countersigns', 'countersigning', 'countersigned', 'countersigned', tran, ['6A'] ). +verb( 'countersink', 'countersinks', 'countersinking', 'countersunk', 'countersunk', tran, [] ). +verb( 'countervail', 'countervails', 'countervailing', 'countervailed', 'countervailed', _, ['2A','6A'] ). +verb( 'couple', 'couples', 'coupling', 'coupled', 'coupled', _, ['2A','6A','14'] ). +verb( 'course', 'courses', 'coursing', 'coursed', 'coursed', _, ['2A','2C','6A'] ). +verb( 'court', 'courts', 'courting', 'courted', 'courted', _, ['2A','6A'] ). +verb( 'court-martial', 'court-martials', 'court-martialing', 'court-martialed', 'court-martialed', tran, ['6A'] ). +verb( 'covenant', 'covenants', 'covenanting', 'covenanted', 'covenanted', _, ['3A','6A','7A','9','14'] ). +verb( 'cover', 'covers', 'covering', 'covered', 'covered', tran, ['6A','15A','15B'] ). +verb( 'covet', 'covets', 'coveting', 'coveted', 'coveted', tran, ['6A'] ). +verb( 'cow', 'cows', 'cowing', 'cowed', 'cowed', tran, ['6A'] ). +verb( 'cower', 'cowers', 'cowering', 'cowered', 'cowered', intran, ['2A','2C'] ). +verb( 'cox', 'coxes', 'coxing', 'coxed', 'coxed', _, ['2A','6A'] ). +verb( 'cozen', 'cozens', 'cozening', 'cozened', 'cozened', tran, ['6A','14'] ). +verb( 'crab', 'crabs', 'crabbing', 'crabbed', 'crabbed', _, [] ). +verb( 'crack', 'cracks', 'cracking', 'cracked', 'cracked', _, ['2A','2C','6A','14'] ). +verb( 'crackle', 'crackles', 'crackling', 'crackled', 'crackled', intran, ['2A','2C'] ). +verb( 'cradle', 'cradles', 'cradling', 'cradled', 'cradled', tran, ['6A','14'] ). +verb( 'cram', 'crams', 'cramming', 'crammed', 'crammed', _, ['2A','6A','14','15B'] ). +verb( 'cramp', 'cramps', 'cramping', 'cramped', 'cramped', tran, ['6A'] ). +verb( 'crane', 'cranes', 'craning', 'craned', 'craned', _, ['2A','2C','6A','16A'] ). +verb( 'crank', 'cranks', 'cranking', 'cranked', 'cranked', tran, ['6A','15B'] ). +verb( 'crap', 'craps', 'crapping', 'crapped', 'crapped', intran, [] ). +verb( 'crash', 'crashes', 'crashing', 'crashed', 'crashed', _, ['2A','2C','6A'] ). +verb( 'crash-dive', 'crash-dives', 'crash-diving', 'crash-dived', 'crash-dived', intran, [] ). +verb( 'crash-land', 'crash-lands', 'crash-landing', 'crash-landed', 'crash-landed', _, [] ). +verb( 'crate', 'crates', 'crating', 'crated', 'crated', tran, [] ). +verb( 'crave', 'craves', 'craving', 'craved', 'craved', _, ['2A','3A'] ). +verb( 'crawl', 'crawls', 'crawling', 'crawled', 'crawled', intran, ['2A','2C'] ). +verb( 'crayon', 'crayons', 'crayoning', 'crayoned', 'crayoned', tran, [] ). +verb( 'creak', 'creaks', 'creaking', 'creaked', 'creaked', intran, [] ). +verb( 'cream', 'creams', 'creaming', 'creamed', 'creamed', tran, [] ). +verb( 'crease', 'creases', 'creasing', 'creased', 'creased', _, ['2A','6A'] ). +verb( 'create', 'creates', 'creating', 'created', 'created', tran, ['6A','23'] ). +verb( 'credit', 'credits', 'crediting', 'credited', 'credited', tran, ['6A','14'] ). +verb( 'creep', 'creeps', 'creeping', 'crept', 'crept', intran, ['2A','2B','2C'] ). +verb( 'cremate', 'cremates', 'cremating', 'cremated', 'cremated', tran, ['6A'] ). +verb( 'crepitate', 'crepitates', 'crepitating', 'crepitated', 'crepitated', intran, ['2A'] ). +verb( 'crest', 'crests', 'cresting', 'crested', 'crested', _, [] ). +verb( 'crew', 'crews', 'crewing', 'crewed', 'crewed', intran, ['3A','6A'] ). +verb( 'crib', 'cribs', 'cribbing', 'cribbed', 'cribbed', _, [] ). +verb( 'crick', 'cricks', 'cricking', 'cricked', 'cricked', tran, [] ). +verb( 'crime', 'crimes', 'criming', 'crimed', 'crimed', tran, [] ). +verb( 'crimp', 'crimps', 'crimping', 'crimped', 'crimped', tran, [] ). +verb( 'crimson', 'crimsons', 'crimsoning', 'crimsoned', 'crimsoned', _, [] ). +verb( 'cringe', 'cringes', 'cringing', 'cringed', 'cringed', intran, ['2A','2C'] ). +verb( 'crinkle', 'crinkles', 'crinkling', 'crinkled', 'crinkled', _, ['2A','2C','6A','15B'] ). +verb( 'cripple', 'cripples', 'crippling', 'crippled', 'crippled', tran, ['6A'] ). +verb( 'crisp', 'crisps', 'crisping', 'crisped', 'crisped', _, [] ). +verb( 'crisscross', 'crisscrosses', 'crisscrossing', 'crisscrossed', 'crisscrossed', _, [] ). +verb( 'criticize', 'criticizes', 'criticizing', 'criticized', 'criticized', _, ['2A','6A','14'] ). +verb( 'croak', 'croaks', 'croaking', 'croaked', 'croaked', _, ['2A','6A','15B'] ). +verb( 'crochet', 'crochets', 'crocheting', 'crocheted', 'crocheted', _, ['2A','6A'] ). +verb( 'crock', 'crocks', 'crocking', 'crocked', 'crocked', _, ['2C','15B'] ). +verb( 'crook', 'crooks', 'crooking', 'crooked', 'crooked', _, ['2A','6A'] ). +verb( 'croon', 'croons', 'crooning', 'crooned', 'crooned', _, ['2C','6A','13A','15A'] ). +verb( 'crop', 'crops', 'cropping', 'cropped', 'cropped', _, ['2A','2C','6A','14','22'] ). +verb( 'cross', 'crosses', 'crossing', 'crossed', 'crossed', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'cross-examine', 'cross-examines', 'cross-examining', 'cross-examined', 'cross-examined', tran, ['6A'] ). +verb( 'cross-fertilize', 'cross-fertilizes', 'cross-fertilizing', 'cross-fertilized', 'cross-fertilized', tran, [] ). +verb( 'cross-index', 'cross-indexes', 'cross-indexing', 'cross-indexed', 'cross-indexed', tran, [] ). +verb( 'cross-question', 'cross-questions', 'cross-questioning', 'cross-questioned', 'cross-questioned', tran, ['6A'] ). +verb( 'crossbreed', 'crossbreeds', 'crossbreeding', 'crossbred', 'crossbred', tran, ['2A','6A'] ). +verb( 'crosscheck', 'crosschecks', 'crosschecking', 'crosschecked', 'crosschecked', _, ['2A','6A'] ). +verb( 'crouch', 'crouches', 'crouching', 'crouched', 'crouched', intran, ['2A','2C','4A'] ). +verb( 'crow', 'crows', 'crowing', 'crowed', 'crowed', intran, ['3A','6A'] ). +verb( 'crowd', 'crowds', 'crowding', 'crowded', 'crowded', _, ['2B','2C','6A','14','15A','15B'] ). +verb( 'crown', 'crowns', 'crowning', 'crowned', 'crowned', tran, ['6A','14','23'] ). +verb( 'crucify', 'crucifies', 'crucifying', 'crucified', 'crucified', tran, [] ). +verb( 'cruise', 'cruises', 'cruising', 'cruised', 'cruised', intran, ['2A','2C'] ). +verb( 'crumble', 'crumbles', 'crumbling', 'crumbled', 'crumbled', _, ['2A','2C','6A'] ). +verb( 'crumple', 'crumples', 'crumpling', 'crumpled', 'crumpled', _, ['2A','2C','6A','15B'] ). +verb( 'crunch', 'crunches', 'crunching', 'crunched', 'crunched', _, ['2A','2C','6A'] ). +verb( 'crusade', 'crusades', 'crusading', 'crusaded', 'crusaded', intran, ['2A','3A'] ). +verb( 'crush', 'crushes', 'crushing', 'crushed', 'crushed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'crust', 'crusts', 'crusting', 'crusted', 'crusted', _, ['2A','2C','6A'] ). +verb( 'cry', 'cries', 'crying', 'cried', 'cried', _, ['2A','2B','2C','3A','4A','6A','9','14','15A','15B'] ). +verb( 'crystallize', 'crystallizes', 'crystallizing', 'crystallized', 'crystallized', _, ['2A','6A'] ). +verb( 'cube', 'cubes', 'cubing', 'cubed', 'cubed', tran, ['6A'] ). +verb( 'cuckold', 'cuckolds', 'cuckolding', 'cuckolded', 'cuckolded', tran, ['6A'] ). +verb( 'cuddle', 'cuddles', 'cuddling', 'cuddled', 'cuddled', _, ['2C','6A','15B'] ). +verb( 'cudgel', 'cudgels', 'cudgeling', 'cudgeled', 'cudgeled', tran, [] ). +verb( 'cuff', 'cuffs', 'cuffing', 'cuffed', 'cuffed', tran, [] ). +verb( 'cull', 'culls', 'culling', 'culled', 'culled', tran, ['6A'] ). +verb( 'culminate', 'culminates', 'culminating', 'culminated', 'culminated', tran, ['3A'] ). +verb( 'cultivate', 'cultivates', 'cultivating', 'cultivated', 'cultivated', tran, ['6A'] ). +verb( 'cumber', 'cumbers', 'cumbering', 'cumbered', 'cumbered', tran, ['6A','14'] ). +verb( 'cup', 'cups', 'cupping', 'cupped', 'cupped', tran, ['6A'] ). +verb( 'curb', 'curbs', 'curbing', 'curbed', 'curbed', tran, ['6A'] ). +verb( 'curdle', 'curdles', 'curdling', 'curdled', 'curdled', _, ['2A','6A'] ). +verb( 'cure', 'cures', 'curing', 'cured', 'cured', _, ['6A','14'] ). +verb( 'curl', 'curls', 'curling', 'curled', 'curled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'curry', 'curries', 'currying', 'curried', 'curried', tran, ['6A'] ). +verb( 'curse', 'curses', 'cursing', 'cursed', 'cursed', _, ['2A','3A','6A'] ). +verb( 'curtail', 'curtails', 'curtailing', 'curtailed', 'curtailed', tran, ['6A'] ). +verb( 'curtain', 'curtains', 'curtaining', 'curtained', 'curtained', tran, ['6A','15B'] ). +verb( 'curtsey', 'curtseys', 'curtseying', 'curtseyed', 'curtseyed', intran, [] ). +verb( 'curtsy', 'curtsies', 'curtsying', 'curtsied', 'curtsied', intran, [] ). +verb( 'curve', 'curves', 'curving', 'curved', 'curved', _, ['2A','6A'] ). +verb( 'cushion', 'cushions', 'cushioning', 'cushioned', 'cushioned', tran, ['6A','14'] ). +verb( 'cut', 'cuts', 'cutting', 'cut', 'cut', _, ['2A','2C','3A','6A','12B','13B','15A','15B','22'] ). +verb( 'cycle', 'cycles', 'cycling', 'cycled', 'cycled', intran, ['2A','2B','2C'] ). +verb( 'cyclostyle', 'cyclostyles', 'cyclostyling', 'cyclostyled', 'cyclostyled', tran, [] ). +verb( 'cypher', 'cyphers', 'cyphering', 'cyphered', 'cyphered', _, ['2A','6A'] ). +verb( 'dab', 'dabs', 'dabbing', 'dabbed', 'dabbed', _, ['2C','3A','6A','14','15A','15B'] ). +verb( 'dabble', 'dabbles', 'dabbling', 'dabbled', 'dabbled', _, ['2C','3A','6A','15A','15B'] ). +verb( 'dally', 'dallies', 'dallying', 'dallied', 'dallied', intran, ['2A','3A'] ). +verb( 'dam', 'dams', 'damming', 'dammed', 'dammed', tran, ['6A','15B'] ). +verb( 'damage', 'damages', 'damaging', 'damaged', 'damaged', tran, ['6A'] ). +verb( 'damascene', 'damascenes', 'damascening', 'damascened', 'damascened', tran, [] ). +verb( 'damn', 'damns', 'damning', 'damned', 'damned', tran, ['6A'] ). +verb( 'damp', 'damps', 'damping', 'damped', 'damped', _, ['2C','6A','15B'] ). +verb( 'dampen', 'dampens', 'dampening', 'dampened', 'dampened', _, [] ). +verb( 'dance', 'dances', 'dancing', 'danced', 'danced', _, ['2A','2C','6A','15A'] ). +verb( 'dandle', 'dandles', 'dandling', 'dandled', 'dandled', tran, ['6A','15A','15B'] ). +verb( 'dangle', 'dangles', 'dangling', 'dangled', 'dangled', _, ['2A','2C','6A','15A'] ). +verb( 'dapple', 'dapples', 'dappling', 'dappled', 'dappled', tran, ['6A'] ). +verb( 'dare', 'dares', 'daring', 'dared', 'dared', unknown, ['4A','5','6A','17'] ). +verb( 'dare', 'dares', 'daring', 'dared', 'dared', _, ['4A','5','6A','17'] ). +verb( 'darken', 'darkens', 'darkening', 'darkened', 'darkened', _, ['2A','6A'] ). +verb( 'darn', 'darns', 'darning', 'darned', 'darned', _, ['2A','6A'] ). +verb( 'dart', 'darts', 'darting', 'darted', 'darted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'dash', 'dashes', 'dashing', 'dashed', 'dashed', _, ['2C','6A','15A','15B'] ). +verb( 'date', 'dates', 'dating', 'dated', 'dated', _, ['2A','2C','3A','6A'] ). +verb( 'daub', 'daubs', 'daubing', 'daubed', 'daubed', _, ['2A','6A','14','15A','15B'] ). +verb( 'daunt', 'daunts', 'daunting', 'daunted', 'daunted', tran, ['6A'] ). +verb( 'dawdle', 'dawdles', 'dawdling', 'dawdled', 'dawdled', _, ['2A','2C','15B'] ). +verb( 'dawn', 'dawns', 'dawning', 'dawned', 'dawned', intran, ['2A','3A'] ). +verb( 'daydream', 'daydreams', 'daydreaming', 'daydreamed', 'daydreamed', intran, [] ). +verb( 'daze', 'dazes', 'dazing', 'dazed', 'dazed', tran, ['6A'] ). +verb( 'dazzle', 'dazzles', 'dazzling', 'dazzled', 'dazzled', tran, ['6A'] ). +verb( 'de-escalate', 'de-escalates', 'de-escalating', 'de-escalated', 'de-escalated', tran, ['6A'] ). +verb( 'de-ice', 'de-ices', 'de-icing', 'de-iced', 'de-iced', tran, ['6A'] ). +verb( 'deaden', 'deadens', 'deadening', 'deadened', 'deadened', tran, ['6A'] ). +verb( 'deafen', 'deafens', 'deafening', 'deafened', 'deafened', tran, ['6A'] ). +verb( 'deal', 'deals', 'dealing', 'dealt', 'dealt', _, ['2A','3A','6A','12A','13A','15B'] ). +verb( 'debag', 'debags', 'debagging', 'debagged', 'debagged', tran, ['6A'] ). +verb( 'debar', 'debars', 'debarring', 'debarred', 'debarred', tran, ['14'] ). +verb( 'debark', 'debarks', 'debarking', 'debarked', 'debarked', _, [] ). +verb( 'debase', 'debases', 'debasing', 'debased', 'debased', tran, ['6A'] ). +verb( 'debate', 'debates', 'debating', 'debated', 'debated', _, ['2A','2C','6A','8','10'] ). +verb( 'debauch', 'debauches', 'debauching', 'debauched', 'debauched', tran, ['6A'] ). +verb( 'debilitate', 'debilitates', 'debilitating', 'debilitated', 'debilitated', tran, ['6A'] ). +verb( 'debit', 'debits', 'debiting', 'debited', 'debited', tran, ['6A','14'] ). +verb( 'debouch', 'debouches', 'debouching', 'debouched', 'debouched', _, ['2A','6A'] ). +verb( 'debrief', 'debriefs', 'debriefing', 'debriefed', 'debriefed', tran, ['6A'] ). +verb( 'debug', 'debugs', 'debugging', 'debugged', 'debugged', tran, ['6A'] ). +verb( 'debunk', 'debunks', 'debunking', 'debunked', 'debunked', tran, ['6A'] ). +verb( 'decamp', 'decamps', 'decamping', 'decamped', 'decamped', intran, ['2A','3A'] ). +verb( 'decant', 'decants', 'decanting', 'decanted', 'decanted', tran, ['6A'] ). +verb( 'decapitate', 'decapitates', 'decapitating', 'decapitated', 'decapitated', tran, ['6A'] ). +verb( 'decarbonize', 'decarbonizes', 'decarbonizing', 'decarbonized', 'decarbonized', tran, [] ). +verb( 'decay', 'decays', 'decaying', 'decayed', 'decayed', intran, ['2A'] ). +verb( 'decease', 'deceases', 'deceasing', 'deceased', 'deceased', intran, [] ). +verb( 'deceive', 'deceives', 'deceiving', 'deceived', 'deceived', tran, ['6A','14'] ). +verb( 'decelerate', 'decelerates', 'decelerating', 'decelerated', 'decelerated', _, [] ). +verb( 'decentralize', 'decentralizes', 'decentralizing', 'decentralized', 'decentralized', tran, ['6A'] ). +verb( 'decide', 'decides', 'deciding', 'decided', 'decided', _, ['2A','3A','6A','7A','8','9','10','14','17'] ). +verb( 'decimalize', 'decimalizes', 'decimalizing', 'decimalized', 'decimalized', tran, ['6A'] ). +verb( 'decimate', 'decimates', 'decimating', 'decimated', 'decimated', tran, ['6A'] ). +verb( 'decipher', 'deciphers', 'deciphering', 'deciphered', 'deciphered', tran, ['6A'] ). +verb( 'deck', 'decks', 'decking', 'decked', 'decked', tran, ['6A','14','15A'] ). +verb( 'declaim', 'declaims', 'declaiming', 'declaimed', 'declaimed', _, ['2A','3A','6A'] ). +verb( 'declare', 'declares', 'declaring', 'declared', 'declared', _, ['3A','6A','9','14','25'] ). +verb( 'declassify', 'declassifies', 'declassifying', 'declassified', 'declassified', tran, ['6A'] ). +verb( 'decline', 'declines', 'declining', 'declined', 'declined', _, ['2A','2C','6A','7A'] ). +verb( 'declutch', 'declutches', 'declutching', 'declutched', 'declutched', intran, ['2A'] ). +verb( 'decode', 'decodes', 'decoding', 'decoded', 'decoded', tran, ['6A'] ). +verb( 'decoke', 'decokes', 'decoking', 'decoked', 'decoked', tran, [] ). +verb( 'decolonize', 'decolonizes', 'decolonizing', 'decolonized', 'decolonized', tran, ['6A'] ). +verb( 'decompose', 'decomposes', 'decomposing', 'decomposed', 'decomposed', _, ['2A','6A'] ). +verb( 'decompress', 'decompresses', 'decompressing', 'decompressed', 'decompressed', tran, ['6A'] ). +verb( 'decontaminate', 'decontaminates', 'decontaminating', 'decontaminated', 'decontaminated', tran, ['6A'] ). +verb( 'decontrol', 'decontrols', 'decontrolling', 'decontrolled', 'decontrolled', tran, ['6A'] ). +verb( 'decorate', 'decorates', 'decorating', 'decorated', 'decorated', tran, ['6A','14'] ). +verb( 'decoy', 'decoys', 'decoying', 'decoyed', 'decoyed', tran, ['6A','14'] ). +verb( 'decrease', 'decreases', 'decreasing', 'decreased', 'decreased', _, ['2A','6A'] ). +verb( 'decree', 'decrees', 'decreeing', 'decreed', 'decreed', tran, ['6A','9'] ). +verb( 'decry', 'decries', 'decrying', 'decried', 'decried', tran, ['6A'] ). +verb( 'dedicate', 'dedicates', 'dedicating', 'dedicated', 'dedicated', tran, ['6A','14'] ). +verb( 'deduce', 'deduces', 'deducing', 'deduced', 'deduced', tran, ['6A','9','14'] ). +verb( 'deduct', 'deducts', 'deducting', 'deducted', 'deducted', tran, ['6A','14'] ). +verb( 'deem', 'deems', 'deeming', 'deemed', 'deemed', tran, ['9','25'] ). +verb( 'deep-freeze', 'deep-freezes', 'deep-freezing', 'deep-froze', 'deep-frozen', tran, [] ). +verb( 'deepen', 'deepens', 'deepening', 'deepened', 'deepened', _, [] ). +verb( 'deface', 'defaces', 'defacing', 'defaced', 'defaced', tran, ['6A'] ). +verb( 'defame', 'defames', 'defaming', 'defamed', 'defamed', tran, ['6A'] ). +verb( 'default', 'defaults', 'defaulting', 'defaulted', 'defaulted', intran, ['2A'] ). +verb( 'defeat', 'defeats', 'defeating', 'defeated', 'defeated', tran, ['6A'] ). +verb( 'defecate', 'defecates', 'defecating', 'defecated', 'defecated', intran, ['2A'] ). +verb( 'defect', 'defects', 'defecting', 'defected', 'defected', intran, ['2A','2C','3A'] ). +verb( 'defend', 'defends', 'defending', 'defended', 'defended', tran, ['6A','14'] ). +verb( 'defer', 'defers', 'deferring', 'deferred', 'deferred', _, ['3A','6A','6C'] ). +verb( 'defile', 'defiles', 'defiling', 'defiled', 'defiled', _, ['6A'] ). +verb( 'define', 'defines', 'defining', 'defined', 'defined', tran, ['6A'] ). +verb( 'deflate', 'deflates', 'deflating', 'deflated', 'deflated', tran, ['6A'] ). +verb( 'deflect', 'deflects', 'deflecting', 'deflected', 'deflected', _, ['2A','3A','6A','14'] ). +verb( 'deflower', 'deflowers', 'deflowering', 'deflowered', 'deflowered', tran, [] ). +verb( 'defoliate', 'defoliates', 'defoliating', 'defoliated', 'defoliated', tran, ['6A'] ). +verb( 'deforest', 'deforests', 'deforesting', 'deforested', 'deforested', tran, [] ). +verb( 'deform', 'deforms', 'deforming', 'deformed', 'deformed', tran, ['6A'] ). +verb( 'defraud', 'defrauds', 'defrauding', 'defrauded', 'defrauded', tran, ['6A','14'] ). +verb( 'defray', 'defrays', 'defraying', 'defrayed', 'defrayed', tran, ['6A'] ). +verb( 'defrock', 'defrocks', 'defrocking', 'defrocked', 'defrocked', tran, [] ). +verb( 'defrost', 'defrosts', 'defrosting', 'defrosted', 'defrosted', tran, ['6A'] ). +verb( 'defuse', 'defuses', 'defusing', 'defused', 'defused', tran, ['6A'] ). +verb( 'defy', 'defies', 'defying', 'defied', 'defied', tran, ['6A','17'] ). +verb( 'degauss', 'degausses', 'degaussing', 'degaussed', 'degaussed', tran, ['6A'] ). +verb( 'degenerate', 'degenerates', 'degenerating', 'degenerated', 'degenerated', intran, ['2A','3A'] ). +verb( 'degrade', 'degrades', 'degrading', 'degraded', 'degraded', tran, ['6A'] ). +verb( 'dehorn', 'dehorns', 'dehorning', 'dehorned', 'dehorned', tran, ['6A'] ). +verb( 'dehumanize', 'dehumanizes', 'dehumanizing', 'dehumanized', 'dehumanized', tran, ['6A'] ). +verb( 'dehydrate', 'dehydrates', 'dehydrating', 'dehydrated', 'dehydrated', tran, ['6A'] ). +verb( 'deify', 'deifies', 'deifying', 'deified', 'deified', tran, ['6A'] ). +verb( 'deign', 'deigns', 'deigning', 'deigned', 'deigned', intran, ['4A'] ). +verb( 'deject', 'dejects', 'dejecting', 'dejected', 'dejected', tran, [] ). +verb( 'delay', 'delays', 'delaying', 'delayed', 'delayed', _, ['2A','2B','6A','6C'] ). +verb( 'delegate', 'delegates', 'delegating', 'delegated', 'delegated', tran, ['14','17'] ). +verb( 'delete', 'deletes', 'deleting', 'deleted', 'deleted', tran, ['6A','14'] ). +verb( 'deliberate', 'deliberates', 'deliberating', 'deliberated', 'deliberated', _, ['2A','3A','6A','8','10'] ). +verb( 'delight', 'delights', 'delighting', 'delighted', 'delighted', _, ['3A','4C','6A'] ). +verb( 'delimit', 'delimits', 'delimiting', 'delimited', 'delimited', tran, ['6A'] ). +verb( 'delimitate', 'delimitates', 'delimitating', 'delimitated', 'delimitated', tran, ['6A'] ). +verb( 'delineate', 'delineates', 'delineating', 'delineated', 'delineated', tran, ['6A'] ). +verb( 'deliver', 'delivers', 'delivering', 'delivered', 'delivered', tran, ['6A','14','15B'] ). +verb( 'delouse', 'delouses', 'delousing', 'deloused', 'deloused', tran, [] ). +verb( 'delude', 'deludes', 'deluding', 'deluded', 'deluded', tran, ['6A','14'] ). +verb( 'deluge', 'deluges', 'deluging', 'deluged', 'deluged', tran, ['6A','14'] ). +verb( 'delve', 'delves', 'delving', 'delved', 'delved', _, ['2A','3A','6A'] ). +verb( 'demagnetize', 'demagnetizes', 'demagnetizing', 'demagnetized', 'demagnetized', tran, ['6A'] ). +verb( 'demand', 'demands', 'demanding', 'demanded', 'demanded', tran, ['6A','7A','9'] ). +verb( 'demarcate', 'demarcates', 'demarcating', 'demarcated', 'demarcated', tran, ['6A'] ). +verb( 'demean', 'demeans', 'demeaning', 'demeaned', 'demeaned', tran, ['6A'] ). +verb( 'demilitarize', 'demilitarizes', 'demilitarizing', 'demilitarized', 'demilitarized', tran, ['6A'] ). +verb( 'demist', 'demists', 'demisting', 'demisted', 'demisted', tran, [] ). +verb( 'demob', 'demobs', 'demobbing', 'demobbed', 'demobbed', tran, [] ). +verb( 'demobilize', 'demobilizes', 'demobilizing', 'demobilized', 'demobilized', tran, ['6A'] ). +verb( 'democratize', 'democratizes', 'democratizing', 'democratized', 'democratized', tran, ['6A'] ). +verb( 'demolish', 'demolishes', 'demolishing', 'demolished', 'demolished', tran, ['6A'] ). +verb( 'demonetize', 'demonetizes', 'demonetizing', 'demonetized', 'demonetized', tran, [] ). +verb( 'demonstrate', 'demonstrates', 'demonstrating', 'demonstrated', 'demonstrated', _, ['2A','3A','6A','9'] ). +verb( 'demoralize', 'demoralizes', 'demoralizing', 'demoralized', 'demoralized', tran, ['6A'] ). +verb( 'demote', 'demotes', 'demoting', 'demoted', 'demoted', tran, ['6A'] ). +verb( 'demur', 'demurs', 'demurring', 'demurred', 'demurred', intran, ['2A','3A'] ). +verb( 'denationalize', 'denationalizes', 'denationalizing', 'denationalized', 'denationalized', tran, ['6A'] ). +verb( 'denigrate', 'denigrates', 'denigrating', 'denigrated', 'denigrated', tran, ['6A'] ). +verb( 'denominate', 'denominates', 'denominating', 'denominated', 'denominated', tran, ['23'] ). +verb( 'denote', 'denotes', 'denoting', 'denoted', 'denoted', tran, ['6A','9'] ). +verb( 'denounce', 'denounces', 'denouncing', 'denounced', 'denounced', tran, ['6A','16B'] ). +verb( 'dent', 'dents', 'denting', 'dented', 'dented', _, ['2A','6A'] ). +verb( 'denude', 'denudes', 'denuding', 'denuded', 'denuded', tran, ['6A','14'] ). +verb( 'deny', 'denies', 'denying', 'denied', 'denied', tran, ['6A','6C','9','12A','13A','25'] ). +verb( 'deodorize', 'deodorizes', 'deodorizing', 'deodorized', 'deodorized', tran, ['6A'] ). +verb( 'depart', 'departs', 'departing', 'departed', 'departed', intran, ['2A','3A'] ). +verb( 'depend', 'depends', 'depending', 'depended', 'depended', intran, ['3A'] ). +verb( 'depict', 'depicts', 'depicting', 'depicted', 'depicted', tran, ['6A'] ). +verb( 'deplane', 'deplanes', 'deplaning', 'deplaned', 'deplaned', intran, [] ). +verb( 'deplete', 'depletes', 'depleting', 'depleted', 'depleted', tran, ['6A','14'] ). +verb( 'deplore', 'deplores', 'deploring', 'deplored', 'deplored', tran, ['6A'] ). +verb( 'deploy', 'deploys', 'deploying', 'deployed', 'deployed', _, ['2A','6A'] ). +verb( 'depopulate', 'depopulates', 'depopulating', 'depopulated', 'depopulated', tran, ['6A'] ). +verb( 'deport', 'deports', 'deporting', 'deported', 'deported', tran, ['6A','16B'] ). +verb( 'depose', 'deposes', 'deposing', 'deposed', 'deposed', _, ['3A','6A','9'] ). +verb( 'deposit', 'deposits', 'depositing', 'deposited', 'deposited', tran, ['6A'] ). +verb( 'deprave', 'depraves', 'depraving', 'depraved', 'depraved', tran, ['6A'] ). +verb( 'deprecate', 'deprecates', 'deprecating', 'deprecated', 'deprecated', tran, ['6A','6C'] ). +verb( 'depreciate', 'depreciates', 'depreciating', 'depreciated', 'depreciated', _, ['2A','6A'] ). +verb( 'depress', 'depresses', 'depressing', 'depressed', 'depressed', tran, ['6A'] ). +verb( 'deprive', 'deprives', 'depriving', 'deprived', 'deprived', tran, ['14'] ). +verb( 'depute', 'deputes', 'deputing', 'deputed', 'deputed', tran, ['14','17'] ). +verb( 'deputize', 'deputizes', 'deputizing', 'deputized', 'deputized', intran, ['2A','3A'] ). +verb( 'derail', 'derails', 'derailing', 'derailed', 'derailed', tran, ['6A'] ). +verb( 'derange', 'deranges', 'deranging', 'deranged', 'deranged', tran, ['6A'] ). +verb( 'derate', 'derates', 'derating', 'derated', 'derated', tran, ['6A'] ). +verb( 'derequisition', 'derequisitions', 'derequisitioning', 'derequisitioned', 'derequisitioned', tran, ['6A'] ). +verb( 'derestrict', 'derestricts', 'derestricting', 'derestricted', 'derestricted', tran, ['6A'] ). +verb( 'deride', 'derides', 'deriding', 'derided', 'derided', tran, ['6A','16B'] ). +verb( 'derive', 'derives', 'deriving', 'derived', 'derived', _, ['3A','14'] ). +verb( 'derogate', 'derogates', 'derogating', 'derogated', 'derogated', intran, ['3A'] ). +verb( 'desalinate', 'desalinates', 'desalinating', 'desalinated', 'desalinated', tran, ['6A'] ). +verb( 'desalinize', 'desalinizes', 'desalinizing', 'desalinized', 'desalinized', tran, ['6A'] ). +verb( 'desalt', 'desalts', 'desalting', 'desalted', 'desalted', tran, [] ). +verb( 'descale', 'descales', 'descaling', 'descaled', 'descaled', tran, ['6A'] ). +verb( 'descant', 'descants', 'descanting', 'descanted', 'descanted', intran, ['3A'] ). +verb( 'descend', 'descends', 'descending', 'descended', 'descended', _, ['2A','2C','3A','6A'] ). +verb( 'describe', 'describes', 'describing', 'described', 'described', tran, ['6A','10','14','16B'] ). +verb( 'descry', 'descries', 'descrying', 'descried', 'descried', tran, ['6A'] ). +verb( 'desecrate', 'desecrates', 'desecrating', 'desecrated', 'desecrated', tran, ['6A'] ). +verb( 'desegregate', 'desegregates', 'desegregating', 'desegregated', 'desegregated', tran, ['6A'] ). +verb( 'desensitize', 'desensitizes', 'desensitizing', 'desensitized', 'desensitized', tran, ['6A'] ). +verb( 'desert', 'deserts', 'deserting', 'deserted', 'deserted', _, ['2A','6A'] ). +verb( 'deserve', 'deserves', 'deserving', 'deserved', 'deserved', _, ['6A','7A'] ). +verb( 'desiccate', 'desiccates', 'desiccating', 'desiccated', 'desiccated', tran, ['6A'] ). +verb( 'design', 'designs', 'designing', 'designed', 'designed', _, ['2A','2C','6A','14','16A','16B'] ). +verb( 'designate', 'designates', 'designating', 'designated', 'designated', tran, ['6A','16B','17'] ). +verb( 'desire', 'desires', 'desiring', 'desired', 'desired', tran, ['6A','7A','9','17'] ). +verb( 'desist', 'desists', 'desisting', 'desisted', 'desisted', intran, ['2A','3A'] ). +verb( 'desolate', 'desolates', 'desolating', 'desolated', 'desolated', tran, ['6A'] ). +verb( 'despair', 'despairs', 'despairing', 'despaired', 'despaired', intran, ['2A','3A'] ). +verb( 'despatch', 'despatches', 'despatching', 'despatched', 'despatched', tran, ['6A','14'] ). +verb( 'despise', 'despises', 'despising', 'despised', 'despised', tran, ['6A'] ). +verb( 'despoil', 'despoils', 'despoiling', 'despoiled', 'despoiled', tran, ['6A','14'] ). +verb( 'destine', 'destines', 'destining', 'destined', 'destined', tran, ['14','17'] ). +verb( 'destroy', 'destroys', 'destroying', 'destroyed', 'destroyed', tran, ['6A'] ). +verb( 'detach', 'detaches', 'detaching', 'detached', 'detached', tran, ['6A','14','16A'] ). +verb( 'detail', 'details', 'detailing', 'detailed', 'detailed', tran, ['6A','14','16A'] ). +verb( 'detain', 'detains', 'detaining', 'detained', 'detained', tran, ['6A','16A'] ). +verb( 'detect', 'detects', 'detecting', 'detected', 'detected', tran, ['6A'] ). +verb( 'deter', 'deters', 'deterring', 'deterred', 'deterred', tran, ['6A','14'] ). +verb( 'deteriorate', 'deteriorates', 'deteriorating', 'deteriorated', 'deteriorated', _, ['2A','6A'] ). +verb( 'determine', 'determines', 'determining', 'determined', 'determined', _, ['3A','6A','7A','8','9','10','14','17'] ). +verb( 'detest', 'detests', 'detesting', 'detested', 'detested', tran, ['6A','6C'] ). +verb( 'dethrone', 'dethrones', 'dethroning', 'dethroned', 'dethroned', tran, ['6A'] ). +verb( 'detonate', 'detonates', 'detonating', 'detonated', 'detonated', _, ['2A','6A'] ). +verb( 'detour', 'detours', 'detouring', 'detoured', 'detoured', tran, ['6A'] ). +verb( 'detract', 'detracts', 'detracting', 'detracted', 'detracted', intran, ['3A'] ). +verb( 'detrain', 'detrains', 'detraining', 'detrained', 'detrained', _, ['2A','6A'] ). +verb( 'detribalize', 'detribalizes', 'detribalizing', 'detribalized', 'detribalized', tran, ['6A'] ). +verb( 'devaluate', 'devaluates', 'devaluating', 'devaluated', 'devaluated', tran, ['6A'] ). +verb( 'devalue', 'devalues', 'devaluing', 'devalued', 'devalued', tran, ['6A'] ). +verb( 'devastate', 'devastates', 'devastating', 'devastated', 'devastated', tran, ['6A'] ). +verb( 'develop', 'develops', 'developing', 'developed', 'developed', _, ['2A','2C','3A','6A'] ). +verb( 'deviate', 'deviates', 'deviating', 'deviated', 'deviated', intran, ['3A'] ). +verb( 'devil', 'devils', 'devilling', 'devilled', 'devilled', _, ['2A','3A','6A'] ). +verb( 'devise', 'devises', 'devising', 'devised', 'devised', tran, ['6A','8','14'] ). +verb( 'devitalize', 'devitalizes', 'devitalizing', 'devitalized', 'devitalized', tran, ['6A'] ). +verb( 'devolve', 'devolves', 'devolving', 'devolved', 'devolved', _, ['3A','6A','14'] ). +verb( 'devote', 'devotes', 'devoting', 'devoted', 'devoted', tran, ['14'] ). +verb( 'devour', 'devours', 'devouring', 'devoured', 'devoured', tran, ['6A'] ). +verb( 'diagnose', 'diagnoses', 'diagnosing', 'diagnosed', 'diagnosed', tran, ['6A','16B'] ). +verb( 'dial', 'dials', 'dialling', 'dialled', 'dialled', tran, ['6A'] ). +verb( 'dibble', 'dibbles', 'dibbling', 'dibbled', 'dibbled', tran, ['15B'] ). +verb( 'dice', 'dices', 'dicing', 'diced', 'diced', _, ['2A','6A'] ). +verb( 'dicker', 'dickers', 'dickering', 'dickered', 'dickered', intran, ['2A','3A'] ). +verb( 'dictate', 'dictates', 'dictating', 'dictated', 'dictated', _, ['2A','3A','6A','14'] ). +verb( 'diddle', 'diddles', 'diddling', 'diddled', 'diddled', tran, ['6A','14'] ). +verb( 'die', 'dies', 'dying', 'died', 'died', intran, ['2A','2C','2D','3A','4C'] ). +verb( 'diet', 'diets', 'dieting', 'dieted', 'dieted', _, ['2A','6A'] ). +verb( 'differ', 'differs', 'differing', 'differed', 'differed', intran, ['2A','2C','3A'] ). +verb( 'differentiate', 'differentiates', 'differentiating', 'differentiated', 'differentiated', tran, ['3A','6A','14'] ). +verb( 'diffract', 'diffracts', 'diffracting', 'diffracted', 'diffracted', tran, ['6A'] ). +verb( 'diffuse', 'diffuses', 'diffusing', 'diffused', 'diffused', _, ['2A','6A'] ). +verb( 'dig', 'digs', 'digging', 'dug', 'dug', _, ['2C','3A','6A','15B'] ). +verb( 'digest', 'digests', 'digesting', 'digested', 'digested', _, ['2A','6A'] ). +verb( 'dignify', 'dignifies', 'dignifying', 'dignified', 'dignified', tran, ['6A','14'] ). +verb( 'digress', 'digresses', 'digressing', 'digressed', 'digressed', intran, ['2A','3A'] ). +verb( 'dike', 'dikes', 'diking', 'diked', 'diked', _, [] ). +verb( 'dilate', 'dilates', 'dilating', 'dilated', 'dilated', _, ['2A','3A','6A'] ). +verb( 'dilly-dally', 'dilly-dallies', 'dilly-dallying', 'dilly-dallied', 'dilly-dallied', intran, ['2A'] ). +verb( 'dilute', 'dilutes', 'diluting', 'diluted', 'diluted', tran, ['6A','14'] ). +verb( 'dim', 'dims', 'dimming', 'dimmed', 'dimmed', _, ['2A','6A'] ). +verb( 'diminish', 'diminishes', 'diminishing', 'diminished', 'diminished', _, ['2A','6A'] ). +verb( 'dimple', 'dimples', 'dimpling', 'dimpled', 'dimpled', _, ['2A','6A'] ). +verb( 'din', 'dins', 'dinning', 'dinned', 'dinned', _, ['2C'] ). +verb( 'dine', 'dines', 'dining', 'dined', 'dined', _, ['2A','6A'] ). +verb( 'dip', 'dips', 'dipping', 'dipped', 'dipped', _, ['2A','2C','3A','6A','14'] ). +verb( 'direct', 'directs', 'directing', 'directed', 'directed', _, ['2A','6A','9','14','17'] ). +verb( 'dirty', 'dirties', 'dirtying', 'dirtied', 'dirtied', _, ['2A','6A'] ). +verb( 'disable', 'disables', 'disabling', 'disabled', 'disabled', tran, ['6A'] ). +verb( 'disabuse', 'disabuses', 'disabusing', 'disabused', 'disabused', tran, ['6A','14'] ). +verb( 'disafforest', 'disafforests', 'disafforesting', 'disafforested', 'disafforested', tran, [] ). +verb( 'disagree', 'disagrees', 'disagreeing', 'disagreed', 'disagreed', tran, ['2A','3A'] ). +verb( 'disallow', 'disallows', 'disallowing', 'disallowed', 'disallowed', tran, ['6A'] ). +verb( 'disappear', 'disappears', 'disappearing', 'disappeared', 'disappeared', intran, ['2A'] ). +verb( 'disappoint', 'disappoints', 'disappointing', 'disappointed', 'disappointed', tran, ['6A'] ). +verb( 'disapprove', 'disapproves', 'disapproving', 'disapproved', 'disapproved', _, ['2A','3A','6A'] ). +verb( 'disarm', 'disarms', 'disarming', 'disarmed', 'disarmed', _, ['2A','6A'] ). +verb( 'disarrange', 'disarranges', 'disarranging', 'disarranged', 'disarranged', tran, ['6A'] ). +verb( 'disarray', 'disarrays', 'disarraying', 'disarrayed', 'disarrayed', tran, [] ). +verb( 'disassociate', 'disassociates', 'disassociating', 'disassociated', 'disassociated', tran, ['14'] ). +verb( 'disavow', 'disavows', 'disavowing', 'disavowed', 'disavowed', tran, ['6A'] ). +verb( 'disband', 'disbands', 'disbanding', 'disbanded', 'disbanded', _, ['2A','6A'] ). +verb( 'disbelieve', 'disbelieves', 'disbelieving', 'disbelieved', 'disbelieved', _, ['2A','3A','6A'] ). +verb( 'disbud', 'disbuds', 'disbudding', 'disbudded', 'disbudded', tran, ['6A'] ). +verb( 'disburden', 'disburdens', 'disburdening', 'disburdened', 'disburdened', tran, ['6A','14'] ). +verb( 'disburse', 'disburses', 'disbursing', 'disbursed', 'disbursed', _, ['2A','6A'] ). +verb( 'discard', 'discards', 'discarding', 'discarded', 'discarded', tran, ['6A'] ). +verb( 'discern', 'discerns', 'discerning', 'discerned', 'discerned', tran, ['6A'] ). +verb( 'discharge', 'discharges', 'discharging', 'discharged', 'discharged', _, ['6A','14'] ). +verb( 'discipline', 'disciplines', 'disciplining', 'disciplined', 'disciplined', tran, ['6A'] ). +verb( 'disclaim', 'disclaims', 'disclaiming', 'disclaimed', 'disclaimed', tran, ['6A','6C'] ). +verb( 'disclose', 'discloses', 'disclosing', 'disclosed', 'disclosed', tran, ['6A','14'] ). +verb( 'discolour', 'discolours', 'discolouring', 'discoloured', 'discoloured', _, ['2A','6A'] ). +verb( 'discomfit', 'discomfits', 'discomfiting', 'discomfited', 'discomfited', tran, ['6A'] ). +verb( 'discommode', 'discommodes', 'discommoding', 'discommoded', 'discommoded', tran, ['6A'] ). +verb( 'discompose', 'discomposes', 'discomposing', 'discomposed', 'discomposed', tran, ['6A'] ). +verb( 'disconcert', 'disconcerts', 'disconcerting', 'disconcerted', 'disconcerted', tran, ['6A'] ). +verb( 'disconnect', 'disconnects', 'disconnecting', 'disconnected', 'disconnected', tran, ['6A','14'] ). +verb( 'discontent', 'discontents', 'discontenting', 'discontented', 'discontented', tran, ['6A'] ). +verb( 'discontinue', 'discontinues', 'discontinuing', 'discontinued', 'discontinued', _, ['2A','6A','6C'] ). +verb( 'discount', 'discounts', 'discounting', 'discounted', 'discounted', tran, ['6A'] ). +verb( 'discountenance', 'discountenances', 'discountenancing', 'discountenanced', 'discountenanced', tran, ['6A'] ). +verb( 'discourage', 'discourages', 'discouraging', 'discouraged', 'discouraged', tran, ['6A','14'] ). +verb( 'discourse', 'discourses', 'discoursing', 'discoursed', 'discoursed', intran, [] ). +verb( 'discover', 'discovers', 'discovering', 'discovered', 'discovered', tran, ['6A','8','9','10','25'] ). +verb( 'discredit', 'discredits', 'discrediting', 'discredited', 'discredited', tran, ['6A'] ). +verb( 'discriminate', 'discriminates', 'discriminating', 'discriminated', 'discriminated', _, ['2A','3A','14'] ). +verb( 'discuss', 'discusses', 'discussing', 'discussed', 'discussed', tran, ['6A','8','10','14'] ). +verb( 'disdain', 'disdains', 'disdaining', 'disdained', 'disdained', tran, ['6A','6C','7A'] ). +verb( 'disembark', 'disembarks', 'disembarking', 'disembarked', 'disembarked', _, ['2A','2C','6A','14'] ). +verb( 'disembarrass', 'disembarrasses', 'disembarrassing', 'disembarrassed', 'disembarrassed', tran, ['14'] ). +verb( 'disembody', 'disembodies', 'disembodying', 'disembodied', 'disembodied', tran, ['6A'] ). +verb( 'disembowel', 'disembowels', 'disembowelling', 'disembowelled', 'disembowelled', tran, ['6A'] ). +verb( 'disenchant', 'disenchants', 'disenchanting', 'disenchanted', 'disenchanted', tran, ['6A'] ). +verb( 'disencumber', 'disencumbers', 'disencumbering', 'disencumbered', 'disencumbered', tran, ['6A','14'] ). +verb( 'disenfranchise', 'disenfranchises', 'disenfranchising', 'disenfranchised', 'disenfranchised', tran, [] ). +verb( 'disengage', 'disengages', 'disengaging', 'disengaged', 'disengaged', _, ['2A','2C','6A','14'] ). +verb( 'disentangle', 'disentangles', 'disentangling', 'disentangled', 'disentangled', _, ['2A','6A','14'] ). +verb( 'disestablish', 'disestablishes', 'disestablishing', 'disestablished', 'disestablished', tran, ['6A'] ). +verb( 'disfavour', 'disfavours', 'disfavouring', 'disfavoured', 'disfavoured', tran, ['6A'] ). +verb( 'disfigure', 'disfigures', 'disfiguring', 'disfigured', 'disfigured', tran, ['6A'] ). +verb( 'disforest', 'disforests', 'disforesting', 'disforested', 'disforested', tran, ['6A'] ). +verb( 'disfranchise', 'disfranchises', 'disfranchising', 'disfranchised', 'disfranchised', tran, ['6A'] ). +verb( 'disgorge', 'disgorges', 'disgorging', 'disgorged', 'disgorged', tran, ['6A'] ). +verb( 'disgrace', 'disgraces', 'disgracing', 'disgraced', 'disgraced', tran, ['6A'] ). +verb( 'disguise', 'disguises', 'disguising', 'disguised', 'disguised', tran, ['6A','16B'] ). +verb( 'disgust', 'disgusts', 'disgusting', 'disgusted', 'disgusted', tran, ['6A'] ). +verb( 'dish', 'dishes', 'dishing', 'dished', 'dished', tran, ['6A','15B'] ). +verb( 'dishearten', 'disheartens', 'disheartening', 'disheartened', 'disheartened', tran, ['6A'] ). +verb( 'dishonour', 'dishonours', 'dishonouring', 'dishonoured', 'dishonoured', tran, ['6A'] ). +verb( 'disillusion', 'disillusions', 'disillusioning', 'disillusioned', 'disillusioned', tran, ['6A'] ). +verb( 'disincline', 'disinclines', 'disinclining', 'disinclined', 'disinclined', tran, ['14','17'] ). +verb( 'disinfect', 'disinfects', 'disinfecting', 'disinfected', 'disinfected', tran, ['6A'] ). +verb( 'disinfest', 'disinfests', 'disinfesting', 'disinfested', 'disinfested', tran, ['6A'] ). +verb( 'disinherit', 'disinherits', 'disinheriting', 'disinherited', 'disinherited', tran, ['6A'] ). +verb( 'disintegrate', 'disintegrates', 'disintegrating', 'disintegrated', 'disintegrated', _, ['2A','6A'] ). +verb( 'disinter', 'disinters', 'disinterring', 'disinterred', 'disinterred', tran, ['6A'] ). +verb( 'disjoint', 'disjoints', 'disjointing', 'disjointed', 'disjointed', tran, ['6A'] ). +verb( 'dislike', 'dislikes', 'disliking', 'disliked', 'disliked', tran, ['6A','6C'] ). +verb( 'dislocate', 'dislocates', 'dislocating', 'dislocated', 'dislocated', tran, ['6A'] ). +verb( 'dislodge', 'dislodges', 'dislodging', 'dislodged', 'dislodged', tran, ['6A','14'] ). +verb( 'dismantle', 'dismantles', 'dismantling', 'dismantled', 'dismantled', tran, ['6A'] ). +verb( 'dismay', 'dismays', 'dismaying', 'dismayed', 'dismayed', tran, ['6A'] ). +verb( 'dismember', 'dismembers', 'dismembering', 'dismembered', 'dismembered', tran, ['6A'] ). +verb( 'dismiss', 'dismisses', 'dismissing', 'dismissed', 'dismissed', tran, ['6A','14'] ). +verb( 'dismount', 'dismounts', 'dismounting', 'dismounted', 'dismounted', _, ['2A','3A','6A'] ). +verb( 'disobey', 'disobeys', 'disobeying', 'disobeyed', 'disobeyed', tran, ['2A','6A'] ). +verb( 'disoblige', 'disobliges', 'disobliging', 'disobliged', 'disobliged', tran, ['6A'] ). +verb( 'disorder', 'disorders', 'disordering', 'disordered', 'disordered', tran, ['6A'] ). +verb( 'disorganize', 'disorganizes', 'disorganizing', 'disorganized', 'disorganized', tran, ['6A'] ). +verb( 'disorient', 'disorients', 'disorienting', 'disoriented', 'disoriented', tran, ['6A'] ). +verb( 'disorientate', 'disorientates', 'disorientating', 'disorientated', 'disorientated', tran, ['6A'] ). +verb( 'disown', 'disowns', 'disowning', 'disowned', 'disowned', tran, ['6A'] ). +verb( 'disparage', 'disparages', 'disparaging', 'disparaged', 'disparaged', tran, ['6A'] ). +verb( 'dispatch', 'dispatches', 'dispatching', 'dispatched', 'dispatched', tran, ['6A','14'] ). +verb( 'dispel', 'dispels', 'dispelling', 'dispelled', 'dispelled', tran, ['6A'] ). +verb( 'dispense', 'dispenses', 'dispensing', 'dispensed', 'dispensed', _, ['3A','6A','14'] ). +verb( 'disperse', 'disperses', 'dispersing', 'dispersed', 'dispersed', _, ['2A','6A'] ). +verb( 'dispirit', 'dispirits', 'dispiriting', 'dispirited', 'dispirited', tran, ['6A'] ). +verb( 'displace', 'displaces', 'displacing', 'displaced', 'displaced', tran, ['6A'] ). +verb( 'display', 'displays', 'displaying', 'displayed', 'displayed', tran, ['6A'] ). +verb( 'displease', 'displeases', 'displeasing', 'displeased', 'displeased', tran, ['6A'] ). +verb( 'disport', 'disports', 'disporting', 'disported', 'disported', tran, ['6A'] ). +verb( 'dispose', 'disposes', 'disposing', 'disposed', 'disposed', _, ['2A','3A','6A','17'] ). +verb( 'dispossess', 'dispossesses', 'dispossessing', 'dispossessed', 'dispossessed', tran, ['14'] ). +verb( 'disprove', 'disproves', 'disproving', 'disproved', 'disproved', tran, ['6A'] ). +verb( 'dispute', 'disputes', 'disputing', 'disputed', 'disputed', _, ['2A','3A','6A','8','10'] ). +verb( 'disqualify', 'disqualifies', 'disqualifying', 'disqualified', 'disqualified', tran, ['6A','14'] ). +verb( 'disquiet', 'disquiets', 'disquieting', 'disquieted', 'disquieted', tran, ['6A'] ). +verb( 'disregard', 'disregards', 'disregarding', 'disregarded', 'disregarded', tran, ['6A'] ). +verb( 'disrobe', 'disrobes', 'disrobing', 'disrobed', 'disrobed', _, ['2A','6A'] ). +verb( 'disrupt', 'disrupts', 'disrupting', 'disrupted', 'disrupted', tran, ['6A'] ). +verb( 'dissatisfy', 'dissatisfies', 'dissatisfying', 'dissatisfied', 'dissatisfied', tran, ['6A'] ). +verb( 'dissect', 'dissects', 'dissecting', 'dissected', 'dissected', tran, ['6A'] ). +verb( 'dissemble', 'dissembles', 'dissembling', 'dissembled', 'dissembled', _, ['2A','6A'] ). +verb( 'disseminate', 'disseminates', 'disseminating', 'disseminated', 'disseminated', tran, ['6A'] ). +verb( 'dissent', 'dissents', 'dissenting', 'dissented', 'dissented', intran, ['2A','3A'] ). +verb( 'dissever', 'dissevers', 'dissevering', 'dissevered', 'dissevered', tran, ['6A'] ). +verb( 'dissimulate', 'dissimulates', 'dissimulating', 'dissimulated', 'dissimulated', _, ['2A','6A'] ). +verb( 'dissipate', 'dissipates', 'dissipating', 'dissipated', 'dissipated', _, ['2A','6A'] ). +verb( 'dissociate', 'dissociates', 'dissociating', 'dissociated', 'dissociated', tran, ['6A','14'] ). +verb( 'dissolve', 'dissolves', 'dissolving', 'dissolved', 'dissolved', _, ['2A','2C','3A','6A','14'] ). +verb( 'dissuade', 'dissuades', 'dissuading', 'dissuaded', 'dissuaded', tran, ['6A','14'] ). +verb( 'distance', 'distances', 'distancing', 'distanced', 'distanced', tran, ['6A','14'] ). +verb( 'distemper', 'distempers', 'distempering', 'distempered', 'distempered', tran, ['6A','22'] ). +verb( 'distend', 'distends', 'distending', 'distended', 'distended', _, ['2A','6A'] ). +verb( 'distil', 'distils', 'distilling', 'distilled', 'distilled', _, ['2A','6A','14','15B'] ). +verb( 'distinguish', 'distinguishes', 'distinguishing', 'distinguished', 'distinguished', _, ['3A','6A','14'] ). +verb( 'distort', 'distorts', 'distorting', 'distorted', 'distorted', tran, ['6A'] ). +verb( 'distract', 'distracts', 'distracting', 'distracted', 'distracted', tran, ['6A','14'] ). +verb( 'distrain', 'distrains', 'distraining', 'distrained', 'distrained', intran, ['2A','3A'] ). +verb( 'distress', 'distresses', 'distressing', 'distressed', 'distressed', tran, ['6A'] ). +verb( 'distribute', 'distributes', 'distributing', 'distributed', 'distributed', tran, ['6A','14'] ). +verb( 'distrust', 'distrusts', 'distrusting', 'distrusted', 'distrusted', tran, ['6A'] ). +verb( 'disturb', 'disturbs', 'disturbing', 'disturbed', 'disturbed', tran, ['6A'] ). +verb( 'disunite', 'disunites', 'disuniting', 'disunited', 'disunited', _, ['2A','6A'] ). +verb( 'ditch', 'ditches', 'ditching', 'ditched', 'ditched', _, ['2A','6A'] ). +verb( 'dither', 'dithers', 'dithering', 'dithered', 'dithered', intran, ['2A','2C'] ). +verb( 'divagate', 'divagates', 'divagating', 'divagated', 'divagated', intran, ['2A','3A'] ). +verb( 'dive', 'dives', 'diving', 'dived', 'dived', intran, ['2A','2C'] ). +verb( 'dive-bomb', 'dive-bombs', 'dive-bombing', 'dive-bombed', 'dive-bombed', _, [] ). +verb( 'diverge', 'diverges', 'diverging', 'diverged', 'diverged', intran, ['2A','3A'] ). +verb( 'diversify', 'diversifies', 'diversifying', 'diversified', 'diversified', tran, ['6A'] ). +verb( 'divert', 'diverts', 'diverting', 'diverted', 'diverted', tran, ['6A','14'] ). +verb( 'divest', 'divests', 'divesting', 'divested', 'divested', tran, ['14'] ). +verb( 'divide', 'divides', 'dividing', 'divided', 'divided', _, ['2A','2C','6A','14','15B'] ). +verb( 'divine', 'divines', 'divining', 'divined', 'divined', _, ['2A','6A','10'] ). +verb( 'divorce', 'divorces', 'divorcing', 'divorced', 'divorced', tran, ['6A','14'] ). +verb( 'divulge', 'divulges', 'divulging', 'divulged', 'divulged', tran, ['6A','14'] ). +verb( 'dizzy', 'dizzies', 'dizzying', 'dizzied', 'dizzied', tran, [] ). +verb( 'do', 'does', 'doing', 'did', 'done', unknown, ['2A','2B','2C','3A','6A','6C','7B','12B','13B','15A','15B'] ). +verb( 'do', 'does', 'doing', 'did', 'done', _, ['2A','2B','2C','3A','6A','6C','7B','12B','13B','15A','15B'] ). +verb( 'dock', 'docks', 'docking', 'docked', 'docked', _, ['2A','6A','14'] ). +verb( 'docket', 'dockets', 'docketing', 'docketed', 'docketed', tran, ['6A'] ). +verb( 'doctor', 'doctors', 'doctoring', 'doctored', 'doctored', tran, ['6A'] ). +verb( 'document', 'documents', 'documenting', 'documented', 'documented', tran, ['6A'] ). +verb( 'dodder', 'dodders', 'doddering', 'doddered', 'doddered', intran, ['2A','2C'] ). +verb( 'dodge', 'dodges', 'dodging', 'dodged', 'dodged', _, ['2A','3A','6A'] ). +verb( 'doff', 'doffs', 'doffing', 'doffed', 'doffed', tran, ['6A'] ). +verb( 'dog', 'dogs', 'dogging', 'dogged', 'dogged', tran, ['6A'] ). +verb( 'dogmatize', 'dogmatizes', 'dogmatizing', 'dogmatized', 'dogmatized', _, ['2A','6A'] ). +verb( 'dole', 'doles', 'doling', 'doled', 'doled', tran, ['15B'] ). +verb( 'doll', 'dolls', 'dolling', 'dolled', 'dolled', _, ['2C','15B'] ). +verb( 'domesticate', 'domesticates', 'domesticating', 'domesticated', 'domesticated', tran, ['6A'] ). +verb( 'dominate', 'dominates', 'dominating', 'dominated', 'dominated', _, ['2A','3A','6A'] ). +verb( 'domineer', 'domineers', 'domineering', 'domineered', 'domineered', intran, ['2A','3A'] ). +verb( 'don', 'dons', 'donning', 'donned', 'donned', tran, ['6A'] ). +verb( 'donate', 'donates', 'donating', 'donated', 'donated', tran, ['6A','14'] ). +verb( 'doodle', 'doodles', 'doodling', 'doodled', 'doodled', intran, ['2A'] ). +verb( 'doom', 'dooms', 'dooming', 'doomed', 'doomed', tran, ['6A','14','17'] ). +verb( 'dope', 'dopes', 'doping', 'doped', 'doped', tran, ['6A'] ). +verb( 'dose', 'doses', 'dosing', 'dosed', 'dosed', tran, ['6A','14','15B'] ). +verb( 'doss', 'dosses', 'dossing', 'dossed', 'dossed', intran, ['2C'] ). +verb( 'dot', 'dots', 'dotting', 'dotted', 'dotted', tran, [] ). +verb( 'dote', 'dotes', 'doting', 'doted', 'doted', intran, ['3A'] ). +verb( 'double', 'doubles', 'doubling', 'doubled', 'doubled', _, ['2A','2C','6A','15B'] ). +verb( 'double-check', 'double-checks', 'double-checking', 'double-checked', 'double-checked', tran, [] ). +verb( 'double-cross', 'double-crosses', 'double-crossing', 'double-crossed', 'double-crossed', tran, ['6A'] ). +verb( 'double-park', 'double-parks', 'double-parking', 'double-parked', 'double-parked', _, [] ). +verb( 'doubt', 'doubts', 'doubting', 'doubted', 'doubted', tran, ['6A','9','10'] ). +verb( 'douse', 'douses', 'dousing', 'doused', 'doused', tran, ['6A'] ). +verb( 'dovetail', 'dovetails', 'dovetailing', 'dovetailed', 'dovetailed', _, ['2A','3A','6A'] ). +verb( 'dower', 'dowers', 'dowering', 'dowered', 'dowered', tran, [] ). +verb( 'down', 'downs', 'downing', 'downed', 'downed', tran, ['6A'] ). +verb( 'downgrade', 'downgrades', 'downgrading', 'downgraded', 'downgraded', tran, ['6A'] ). +verb( 'dowse', 'dowses', 'dowsing', 'dowsed', 'dowsed', tran, ['6A'] ). +verb( 'doze', 'dozes', 'dozing', 'dozed', 'dozed', intran, ['2A','2C'] ). +verb( 'draft', 'drafts', 'drafting', 'drafted', 'drafted', tran, ['6A'] ). +verb( 'drag', 'drags', 'dragging', 'dragged', 'dragged', _, ['2A','2C','6A','14','15B'] ). +verb( 'dragoon', 'dragoons', 'dragooning', 'dragooned', 'dragooned', tran, ['6A','14'] ). +verb( 'drain', 'drains', 'draining', 'drained', 'drained', _, ['2A','2C','6A','14','15B','22'] ). +verb( 'dramatize', 'dramatizes', 'dramatizing', 'dramatized', 'dramatized', tran, ['6A'] ). +verb( 'drape', 'drapes', 'draping', 'draped', 'draped', tran, ['6A','14'] ). +verb( 'drat', 'drats', 'dratting', 'dratted', 'dratted', tran, [] ). +verb( 'draught', 'draughts', 'draughting', 'draughted', 'draughted', tran, [] ). +verb( 'draw', 'draws', 'drawing', 'drew', 'drawn', _, ['2A','2B','2C','2D','3A','6A','14','15B'] ). +verb( 'drawl', 'drawls', 'drawling', 'drawled', 'drawled', _, ['2A','2C','6A','15B'] ). +verb( 'dread', 'dreads', 'dreading', 'dreaded', 'dreaded', _, ['6A','6C','7A'] ). +verb( 'dream', 'dreams', 'dreaming', 'dreamed', 'dreamed', _, ['2A','3A','6A','8','9','10','15B'] ). +verb( 'dredge', 'dredges', 'dredging', 'dredged', 'dredged', _, ['2A','3A','6A','14','15B'] ). +verb( 'drench', 'drenches', 'drenching', 'drenched', 'drenched', tran, ['6A'] ). +verb( 'dress', 'dresses', 'dressing', 'dressed', 'dressed', _, ['2A','2C','6A','15B'] ). +verb( 'dribble', 'dribbles', 'dribbling', 'dribbled', 'dribbled', _, ['2A','6A'] ). +verb( 'drift', 'drifts', 'drifting', 'drifted', 'drifted', _, ['2A','2C','6A','14','15B'] ). +verb( 'drill', 'drills', 'drilling', 'drilled', 'drilled', _, ['2A','6A','14'] ). +verb( 'drink', 'drinks', 'drinking', 'drank', 'drunk', _, ['2A','3A','6A','15B'] ). +verb( 'drip', 'drips', 'dripping', 'dripped', 'dripped', _, ['2A','2C','6A'] ). +verb( 'drip-dry', 'drip-dries', 'drip-drying', 'drip-dried', 'drip-dried', tran, [] ). +verb( 'drive', 'drives', 'driving', 'drove', 'driven', _, ['2A','2C','3A','6A','14','15B','17','22'] ). +verb( 'drivel', 'drivels', 'drivelling', 'drivelled', 'drivelled', intran, ['2A','2C'] ). +verb( 'drizzle', 'drizzles', 'drizzling', 'drizzled', 'drizzled', intran, ['2A'] ). +verb( 'drone', 'drones', 'droning', 'droned', 'droned', _, ['2C','15B'] ). +verb( 'drool', 'drools', 'drooling', 'drooled', 'drooled', intran, [] ). +verb( 'droop', 'droops', 'drooping', 'drooped', 'drooped', _, ['2A','2C','6A'] ). +verb( 'drop', 'drops', 'dropping', 'dropped', 'dropped', _, ['2A','2C','3B','6A','12A','13A','14','15A','15B'] ). +verb( 'drown', 'drowns', 'drowning', 'drowned', 'drowned', _, ['2A','6A','15B'] ). +verb( 'drowse', 'drowses', 'drowsing', 'drowsed', 'drowsed', _, ['2A','2C','15B'] ). +verb( 'drub', 'drubs', 'drubbing', 'drubbed', 'drubbed', tran, ['6A','14'] ). +verb( 'drudge', 'drudges', 'drudging', 'drudged', 'drudged', intran, ['2A','2C','3A'] ). +verb( 'drug', 'drugs', 'drugging', 'drugged', 'drugged', tran, ['6A'] ). +verb( 'drum', 'drums', 'drumming', 'drummed', 'drummed', _, ['2A','2C','3A','6A','14','15B'] ). +verb( 'dry', 'dries', 'drying', 'dried', 'dried', _, ['2A','2C','6A','15B'] ). +verb( 'dry-clean', 'dry-cleans', 'dry-cleaning', 'dry-cleaned', 'dry-cleaned', tran, [] ). +verb( 'dub', 'dubs', 'dubbing', 'dubbed', 'dubbed', tran, ['6A','22','23'] ). +verb( 'duck', 'ducks', 'ducking', 'ducked', 'ducked', _, ['2A','6A'] ). +verb( 'duel', 'duels', 'duelling', 'duelled', 'duelled', intran, [] ). +verb( 'dull', 'dulls', 'dulling', 'dulled', 'dulled', _, ['2A','6A'] ). +verb( 'dumbfound', 'dumbfounds', 'dumbfounding', 'dumbfounded', 'dumbfounded', tran, ['6A'] ). +verb( 'dump', 'dumps', 'dumping', 'dumped', 'dumped', tran, ['6A','15A'] ). +verb( 'dun', 'duns', 'dunning', 'dunned', 'dunned', tran, [] ). +verb( 'dunk', 'dunks', 'dunking', 'dunked', 'dunked', tran, ['6A','14'] ). +verb( 'dupe', 'dupes', 'duping', 'duped', 'duped', tran, ['6A'] ). +verb( 'duplicate', 'duplicates', 'duplicating', 'duplicated', 'duplicated', tran, ['6A'] ). +verb( 'dust', 'dusts', 'dusting', 'dusted', 'dusted', tran, ['6A'] ). +verb( 'dwarf', 'dwarfs', 'dwarfing', 'dwarfed', 'dwarfed', tran, ['6A'] ). +verb( 'dwell', 'dwells', 'dwelling', 'dwelt', 'dwelt', intran, ['3A'] ). +verb( 'dwindle', 'dwindles', 'dwindling', 'dwindled', 'dwindled', intran, ['2A'] ). +verb( 'dye', 'dyes', 'dying', 'dyed', 'dyed', _, ['2A','6A','22'] ). +verb( 'dyke', 'dykes', 'dyking', 'dyked', 'dyked', _, [] ). +verb( 'dynamite', 'dynamites', 'dynamiting', 'dynamited', 'dynamited', tran, ['6A'] ). +verb( 'earmark', 'earmarks', 'earmarking', 'earmarked', 'earmarked', tran, ['6A','14'] ). +verb( 'earn', 'earns', 'earning', 'earned', 'earned', tran, ['6A','12B','13B'] ). +verb( 'earth', 'earths', 'earthing', 'earthed', 'earthed', tran, ['6A','15B'] ). +verb( 'ease', 'eases', 'easing', 'eased', 'eased', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'eat', 'eats', 'eating', 'ate', 'eaten', _, ['2A','2C','3A','4A','6A','15B'] ). +verb( 'eavesdrop', 'eavesdrops', 'eavesdropping', 'eavesdropped', 'eavesdropped', intran, ['2A','3A'] ). +verb( 'ebb', 'ebbs', 'ebbing', 'ebbed', 'ebbed', intran, ['2A','2C'] ). +verb( 'echo', 'echos', 'echoing', 'echoed', 'echoed', _, ['2A','2C','6A','15B'] ). +verb( 'eclipse', 'eclipses', 'eclipsing', 'eclipsed', 'eclipsed', tran, ['6A'] ). +verb( 'economize', 'economizes', 'economizing', 'economized', 'economized', _, ['2A','3A','6A'] ). +verb( 'eddy', 'eddies', 'eddying', 'eddied', 'eddied', intran, ['2A','2C'] ). +verb( 'edge', 'edges', 'edging', 'edged', 'edged', _, ['2C','6A','14','15A','15B'] ). +verb( 'edify', 'edifies', 'edifying', 'edified', 'edified', tran, ['6A'] ). +verb( 'edit', 'edits', 'editing', 'edited', 'edited', tran, ['6A'] ). +verb( 'educate', 'educates', 'educating', 'educated', 'educated', tran, ['6A','15A','16A'] ). +verb( 'educe', 'educes', 'educing', 'educed', 'educed', tran, ['6A'] ). +verb( 'eff', 'effs', 'effing', 'effed', 'effed', intran, [] ). +verb( 'efface', 'effaces', 'effacing', 'effaced', 'effaced', tran, ['6A'] ). +verb( 'effect', 'effects', 'effecting', 'effected', 'effected', tran, ['6A'] ). +verb( 'effervesce', 'effervesces', 'effervescing', 'effervesced', 'effervesced', intran, ['2A'] ). +verb( 'egg', 'eggs', 'egging', 'egged', 'egged', tran, ['15B'] ). +verb( 'egotrip', 'egotrips', 'egotripping', 'egotripped', 'egotripped', intran, [] ). +verb( 'ejaculate', 'ejaculates', 'ejaculating', 'ejaculated', 'ejaculated', tran, ['6A'] ). +verb( 'eject', 'ejects', 'ejecting', 'ejected', 'ejected', _, ['2A','6A','14'] ). +verb( 'eke', 'ekes', 'eking', 'eked', 'eked', tran, ['15B'] ). +verb( 'elaborate', 'elaborates', 'elaborating', 'elaborated', 'elaborated', tran, ['6A'] ). +verb( 'elapse', 'elapses', 'elapsing', 'elapsed', 'elapsed', intran, ['2A'] ). +verb( 'elate', 'elates', 'elating', 'elated', 'elated', tran, ['6A'] ). +verb( 'elbow', 'elbows', 'elbowing', 'elbowed', 'elbowed', tran, ['6A','14','15B'] ). +verb( 'elect', 'elects', 'electing', 'elected', 'elected', tran, ['6A','7A','14','23','25'] ). +verb( 'electrify', 'electrifies', 'electrifying', 'electrified', 'electrified', tran, ['6A'] ). +verb( 'electrocute', 'electrocutes', 'electrocuting', 'electrocuted', 'electrocuted', tran, ['6A'] ). +verb( 'electroplate', 'electroplates', 'electroplating', 'electroplated', 'electroplated', tran, [] ). +verb( 'elevate', 'elevates', 'elevating', 'elevated', 'elevated', tran, ['6A','14'] ). +verb( 'elicit', 'elicits', 'eliciting', 'elicited', 'elicited', tran, ['6A','14'] ). +verb( 'elide', 'elides', 'eliding', 'elided', 'elided', tran, ['6A'] ). +verb( 'eliminate', 'eliminates', 'eliminating', 'eliminated', 'eliminated', tran, ['6A','14'] ). +verb( 'elongate', 'elongates', 'elongating', 'elongated', 'elongated', _, ['2A','6A'] ). +verb( 'elope', 'elopes', 'eloping', 'eloped', 'eloped', intran, ['2A','2C','3A'] ). +verb( 'elucidate', 'elucidates', 'elucidating', 'elucidated', 'elucidated', tran, ['6A'] ). +verb( 'elude', 'eludes', 'eluding', 'eluded', 'eluded', tran, ['6A'] ). +verb( 'emaciate', 'emaciates', 'emaciating', 'emaciated', 'emaciated', tran, ['6A'] ). +verb( 'emanate', 'emanates', 'emanating', 'emanated', 'emanated', intran, ['3A'] ). +verb( 'emancipate', 'emancipates', 'emancipating', 'emancipated', 'emancipated', tran, ['6A','14'] ). +verb( 'emasculate', 'emasculates', 'emasculating', 'emasculated', 'emasculated', tran, ['6A'] ). +verb( 'embalm', 'embalms', 'embalming', 'embalmed', 'embalmed', tran, ['6A'] ). +verb( 'embargo', 'embargos', 'embargoing', 'embargoed', 'embargoed', tran, ['6A'] ). +verb( 'embark', 'embarks', 'embarking', 'embarked', 'embarked', _, ['2A','2C','3A','6A'] ). +verb( 'embarrass', 'embarrasses', 'embarrassing', 'embarrassed', 'embarrassed', tran, ['6A'] ). +verb( 'embed', 'embeds', 'embedding', 'embedded', 'embedded', tran, ['6A','14'] ). +verb( 'embellish', 'embellishes', 'embellishing', 'embellished', 'embellished', tran, ['6A','14'] ). +verb( 'embezzle', 'embezzles', 'embezzling', 'embezzled', 'embezzled', tran, ['6A'] ). +verb( 'embitter', 'embitters', 'embittering', 'embittered', 'embittered', tran, ['6A'] ). +verb( 'emblazon', 'emblazons', 'emblazoning', 'emblazoned', 'emblazoned', tran, ['6A','14'] ). +verb( 'embody', 'embodies', 'embodying', 'embodied', 'embodied', tran, ['6A','14'] ). +verb( 'embolden', 'emboldens', 'emboldening', 'emboldened', 'emboldened', tran, ['6A','17'] ). +verb( 'emboss', 'embosses', 'embossing', 'embossed', 'embossed', tran, ['6A','14'] ). +verb( 'embrace', 'embraces', 'embracing', 'embraced', 'embraced', _, ['2A','6A'] ). +verb( 'embroider', 'embroiders', 'embroidering', 'embroidered', 'embroidered', _, ['2A','6A'] ). +verb( 'embroil', 'embroils', 'embroiling', 'embroiled', 'embroiled', tran, ['6A','14'] ). +verb( 'emend', 'emends', 'emending', 'emended', 'emended', tran, ['6A'] ). +verb( 'emerge', 'emerges', 'emerging', 'emerged', 'emerged', intran, ['2A','3A'] ). +verb( 'emigrate', 'emigrates', 'emigrating', 'emigrated', 'emigrated', intran, ['2A','3A'] ). +verb( 'emit', 'emits', 'emitting', 'emitted', 'emitted', tran, ['6A'] ). +verb( 'empale', 'empales', 'empaling', 'empaled', 'empaled', tran, [] ). +verb( 'empanel', 'empanels', 'empanelling', 'empanelled', 'empanelled', tran, ['6A'] ). +verb( 'emphasize', 'emphasizes', 'emphasizing', 'emphasized', 'emphasized', tran, ['6A'] ). +verb( 'emplane', 'emplanes', 'emplaning', 'emplaned', 'emplaned', _, ['2A','6A'] ). +verb( 'employ', 'employs', 'employing', 'employed', 'employed', tran, ['6A','14','16B'] ). +verb( 'empower', 'empowers', 'empowering', 'empowered', 'empowered', tran, ['17'] ). +verb( 'empty', 'empties', 'emptying', 'emptied', 'emptied', _, ['2A','2C','3A','6A','15B'] ). +verb( 'emulate', 'emulates', 'emulating', 'emulated', 'emulated', tran, ['6A'] ). +verb( 'emulsify', 'emulsifies', 'emulsifying', 'emulsified', 'emulsified', tran, ['6A'] ). +verb( 'enable', 'enables', 'enabling', 'enabled', 'enabled', tran, ['17'] ). +verb( 'enact', 'enacts', 'enacting', 'enacted', 'enacted', tran, ['6A','9'] ). +verb( 'enamel', 'enamels', 'enamelling', 'enamelled', 'enamelled', tran, [] ). +verb( 'enamour', 'enamours', 'enamouring', 'enamoured', 'enamoured', tran, ['6A'] ). +verb( 'encamp', 'encamps', 'encamping', 'encamped', 'encamped', _, ['2A','6A'] ). +verb( 'encase', 'encases', 'encasing', 'encased', 'encased', tran, ['6A','14'] ). +verb( 'enchain', 'enchains', 'enchaining', 'enchained', 'enchained', tran, ['6A'] ). +verb( 'enchant', 'enchants', 'enchanting', 'enchanted', 'enchanted', tran, ['6A'] ). +verb( 'encircle', 'encircles', 'encircling', 'encircled', 'encircled', tran, ['6A'] ). +verb( 'enclose', 'encloses', 'enclosing', 'enclosed', 'enclosed', tran, ['6A','14'] ). +verb( 'encode', 'encodes', 'encoding', 'encoded', 'encoded', tran, ['6A'] ). +verb( 'encompass', 'encompasses', 'encompassing', 'encompassed', 'encompassed', tran, ['6A'] ). +verb( 'encore', 'encores', 'encoring', 'encored', 'encored', tran, [] ). +verb( 'encounter', 'encounters', 'encountering', 'encountered', 'encountered', tran, ['6A'] ). +verb( 'encourage', 'encourages', 'encouraging', 'encouraged', 'encouraged', tran, ['6A','14','17'] ). +verb( 'encroach', 'encroaches', 'encroaching', 'encroached', 'encroached', intran, ['3A'] ). +verb( 'encrust', 'encrusts', 'encrusting', 'encrusted', 'encrusted', _, ['2A','6A','14'] ). +verb( 'encumber', 'encumbers', 'encumbering', 'encumbered', 'encumbered', tran, ['6A','14'] ). +verb( 'end', 'ends', 'ending', 'ended', 'ended', _, ['2A','2C','3A','6A','15B'] ). +verb( 'endanger', 'endangers', 'endangering', 'endangered', 'endangered', tran, ['6A'] ). +verb( 'endear', 'endears', 'endearing', 'endeared', 'endeared', tran, ['14'] ). +verb( 'endeavour', 'endeavours', 'endeavouring', 'endeavoured', 'endeavoured', intran, ['4A'] ). +verb( 'endorse', 'endorses', 'endorsing', 'endorsed', 'endorsed', tran, ['6A'] ). +verb( 'endow', 'endows', 'endowing', 'endowed', 'endowed', tran, ['6A','14'] ). +verb( 'endue', 'endues', 'enduing', 'endued', 'endued', tran, ['14'] ). +verb( 'endure', 'endures', 'enduring', 'endured', 'endured', _, ['2A','2C','6A','6D','17'] ). +verb( 'enervate', 'enervates', 'enervating', 'enervated', 'enervated', tran, ['6A'] ). +verb( 'enfeeble', 'enfeebles', 'enfeebling', 'enfeebled', 'enfeebled', tran, ['6A'] ). +verb( 'enfold', 'enfolds', 'enfolding', 'enfolded', 'enfolded', tran, ['6A','14'] ). +verb( 'enforce', 'enforces', 'enforcing', 'enforced', 'enforced', tran, ['6A','14'] ). +verb( 'enfranchise', 'enfranchises', 'enfranchising', 'enfranchised', 'enfranchised', tran, ['6A'] ). +verb( 'engage', 'engages', 'engaging', 'engaged', 'engaged', _, ['2A','3A','6A','7A','9','14','16B','17'] ). +verb( 'engender', 'engenders', 'engendering', 'engendered', 'engendered', tran, ['6A'] ). +verb( 'engineer', 'engineers', 'engineering', 'engineered', 'engineered', _, ['2A','6A'] ). +verb( 'engraft', 'engrafts', 'engrafting', 'engrafted', 'engrafted', tran, ['6A','14'] ). +verb( 'engrave', 'engraves', 'engraving', 'engraved', 'engraved', tran, ['6A','14'] ). +verb( 'engross', 'engrosses', 'engrossing', 'engrossed', 'engrossed', tran, ['6A'] ). +verb( 'engulf', 'engulfs', 'engulfing', 'engulfed', 'engulfed', tran, ['6A'] ). +verb( 'enhance', 'enhances', 'enhancing', 'enhanced', 'enhanced', tran, ['6A'] ). +verb( 'enjoin', 'enjoins', 'enjoining', 'enjoined', 'enjoined', tran, ['6A','9','14','17'] ). +verb( 'enjoy', 'enjoys', 'enjoying', 'enjoyed', 'enjoyed', tran, ['6A','6C'] ). +verb( 'enkindle', 'enkindles', 'enkindling', 'enkindled', 'enkindled', tran, ['6A'] ). +verb( 'enlarge', 'enlarges', 'enlarging', 'enlarged', 'enlarged', _, ['2A','3A','6A'] ). +verb( 'enlighten', 'enlightens', 'enlightening', 'enlightened', 'enlightened', tran, ['6A','14'] ). +verb( 'enlist', 'enlists', 'enlisting', 'enlisted', 'enlisted', _, ['2A','2C','6A','14','16B'] ). +verb( 'enliven', 'enlivens', 'enlivening', 'enlivened', 'enlivened', tran, ['6A'] ). +verb( 'enmesh', 'enmeshes', 'enmeshing', 'enmeshed', 'enmeshed', tran, ['6A','14'] ). +verb( 'ennoble', 'ennobles', 'ennobling', 'ennobled', 'ennobled', tran, ['6A'] ). +verb( 'enplane', 'enplanes', 'enplaning', 'enplaned', 'enplaned', _, [] ). +verb( 'enquire', 'enquires', 'enquiring', 'enquired', 'enquired', _, ['2A','3A','6A','8','10','14'] ). +verb( 'enrage', 'enrages', 'enraging', 'enraged', 'enraged', tran, ['6A'] ). +verb( 'enrapture', 'enraptures', 'enrapturing', 'enraptured', 'enraptured', tran, ['6A'] ). +verb( 'enrich', 'enriches', 'enriching', 'enriched', 'enriched', tran, ['6A','14'] ). +verb( 'enrol', 'enrols', 'enroling', 'enroled', 'enroled', _, ['2A','2C','6A','14','16B'] ). +verb( 'enroll', 'enrolls', 'enrolling', 'enrolled', 'enrolled', _, ['2A','2C','6A','14','16B'] ). +verb( 'ensconce', 'ensconces', 'ensconcing', 'ensconced', 'ensconced', tran, ['14'] ). +verb( 'enshrine', 'enshrines', 'enshrining', 'enshrined', 'enshrined', tran, ['6A','14'] ). +verb( 'enshroud', 'enshrouds', 'enshrouding', 'enshrouded', 'enshrouded', tran, ['6A'] ). +verb( 'enslave', 'enslaves', 'enslaving', 'enslaved', 'enslaved', tran, ['6A'] ). +verb( 'ensnare', 'ensnares', 'ensnaring', 'ensnared', 'ensnared', tran, ['6A','14'] ). +verb( 'ensue', 'ensues', 'ensuing', 'ensued', 'ensued', intran, ['2A','3A'] ). +verb( 'ensure', 'ensures', 'ensuring', 'ensured', 'ensured', _, ['3A','9','12A','13A','14'] ). +verb( 'entail', 'entails', 'entailing', 'entailed', 'entailed', tran, ['6A','14'] ). +verb( 'entangle', 'entangles', 'entangling', 'entangled', 'entangled', tran, ['6A','14','15A'] ). +verb( 'enter', 'enters', 'entering', 'entered', 'entered', _, ['2A','3A','6A','14','15B'] ). +verb( 'entertain', 'entertains', 'entertaining', 'entertained', 'entertained', tran, ['2A','6A','14'] ). +verb( 'enthral', 'enthrals', 'enthralling', 'enthralled', 'enthralled', tran, ['6A'] ). +verb( 'enthrall', 'enthralls', 'enthralling', 'enthralled', 'enthralled', tran, ['6A'] ). +verb( 'enthrone', 'enthrones', 'enthroning', 'enthroned', 'enthroned', tran, ['6A'] ). +verb( 'enthuse', 'enthuses', 'enthusing', 'enthused', 'enthused', intran, ['3A'] ). +verb( 'entice', 'entices', 'enticing', 'enticed', 'enticed', tran, ['6A','15A','17'] ). +verb( 'entitle', 'entitles', 'entitling', 'entitled', 'entitled', tran, ['14','17'] ). +verb( 'entomb', 'entombs', 'entombing', 'entombed', 'entombed', tran, ['6A'] ). +verb( 'entrain', 'entrains', 'entraining', 'entrained', 'entrained', _, ['2A','6A'] ). +verb( 'entrance', 'entrances', 'entrancing', 'entranced', 'entranced', tran, ['6A'] ). +verb( 'entrap', 'entraps', 'entrapping', 'entrapped', 'entrapped', tran, ['6A'] ). +verb( 'entreat', 'entreats', 'entreating', 'entreated', 'entreated', tran, ['6A','14','17'] ). +verb( 'entrench', 'entrenches', 'entrenching', 'entrenched', 'entrenched', tran, ['6A'] ). +verb( 'entrust', 'entrusts', 'entrusting', 'entrusted', 'entrusted', tran, ['14'] ). +verb( 'entwine', 'entwines', 'entwining', 'entwined', 'entwined', tran, ['6A','14'] ). +verb( 'enumerate', 'enumerates', 'enumerating', 'enumerated', 'enumerated', tran, ['6A'] ). +verb( 'enunciate', 'enunciates', 'enunciating', 'enunciated', 'enunciated', _, ['2A','6A'] ). +verb( 'envelop', 'envelops', 'enveloping', 'enveloped', 'enveloped', tran, ['6A','14'] ). +verb( 'envenom', 'envenoms', 'envenoming', 'envenomed', 'envenomed', tran, ['6A'] ). +verb( 'environ', 'environs', 'environing', 'environed', 'environed', tran, ['6A'] ). +verb( 'envisage', 'envisages', 'envisaging', 'envisaged', 'envisaged', tran, ['6A'] ). +verb( 'envy', 'envies', 'envying', 'envied', 'envied', tran, ['6A','12C'] ). +verb( 'enwrap', 'enwraps', 'enwrapping', 'enwrapped', 'enwrapped', tran, [] ). +verb( 'epitomize', 'epitomizes', 'epitomizing', 'epitomized', 'epitomized', tran, ['6A'] ). +verb( 'equal', 'equals', 'equalling', 'equalled', 'equalled', tran, ['6A','15A'] ). +verb( 'equalize', 'equalizes', 'equalizing', 'equalized', 'equalized', tran, ['6A'] ). +verb( 'equate', 'equates', 'equating', 'equated', 'equated', tran, ['6A','14'] ). +verb( 'equip', 'equips', 'equipping', 'equipped', 'equipped', tran, ['6A','14'] ). +verb( 'eradicate', 'eradicates', 'eradicating', 'eradicated', 'eradicated', tran, ['6A'] ). +verb( 'erase', 'erases', 'erasing', 'erased', 'erased', tran, ['6A'] ). +verb( 'erect', 'erects', 'erecting', 'erected', 'erected', tran, ['6A'] ). +verb( 'erode', 'erodes', 'eroding', 'eroded', 'eroded', tran, ['6A'] ). +verb( 'err', 'errs', 'erring', 'erred', 'erred', intran, ['2A','2C'] ). +verb( 'erupt', 'erupts', 'erupting', 'erupted', 'erupted', intran, ['2A'] ). +verb( 'escalate', 'escalates', 'escalating', 'escalated', 'escalated', _, ['2A','6A'] ). +verb( 'escape', 'escapes', 'escaping', 'escaped', 'escaped', _, ['2A','3A','6A','6C'] ). +verb( 'eschew', 'eschews', 'eschewing', 'eschewed', 'eschewed', tran, ['6A'] ). +verb( 'escort', 'escorts', 'escorting', 'escorted', 'escorted', tran, ['6A','15B'] ). +verb( 'espouse', 'espouses', 'espousing', 'espoused', 'espoused', tran, ['6A'] ). +verb( 'espy', 'espies', 'espying', 'espied', 'espied', tran, ['6A'] ). +verb( 'essay', 'essays', 'essaying', 'essayed', 'essayed', _, ['4A','6A'] ). +verb( 'establish', 'establishes', 'establishing', 'established', 'established', tran, ['6A','14','16B'] ). +verb( 'esteem', 'esteems', 'esteeming', 'esteemed', 'esteemed', tran, ['6A','25'] ). +verb( 'estimate', 'estimates', 'estimating', 'estimated', 'estimated', _, ['3A','9','14'] ). +verb( 'estrange', 'estranges', 'estranging', 'estranged', 'estranged', tran, ['6A','14'] ). +verb( 'etch', 'etches', 'etching', 'etched', 'etched', _, ['2A','6A'] ). +verb( 'eulogize', 'eulogizes', 'eulogizing', 'eulogized', 'eulogized', tran, ['6A'] ). +verb( 'evacuate', 'evacuates', 'evacuating', 'evacuated', 'evacuated', tran, ['6A','14'] ). +verb( 'evade', 'evades', 'evading', 'evaded', 'evaded', tran, ['6A','6C'] ). +verb( 'evaluate', 'evaluates', 'evaluating', 'evaluated', 'evaluated', tran, ['6A'] ). +verb( 'evaporate', 'evaporates', 'evaporating', 'evaporated', 'evaporated', _, ['2A','6A'] ). +verb( 'even', 'evens', 'evening', 'evened', 'evened', tran, ['6A','15B'] ). +verb( 'evict', 'evicts', 'evicting', 'evicted', 'evicted', tran, ['14'] ). +verb( 'evidence', 'evidences', 'evidencing', 'evidenced', 'evidenced', tran, ['6A'] ). +verb( 'evince', 'evinces', 'evincing', 'evinced', 'evinced', tran, ['6A','9'] ). +verb( 'eviscerate', 'eviscerates', 'eviscerating', 'eviscerated', 'eviscerated', tran, ['6A'] ). +verb( 'evoke', 'evokes', 'evoking', 'evoked', 'evoked', tran, ['6A'] ). +verb( 'evolve', 'evolves', 'evolving', 'evolved', 'evolved', _, ['2A','6A'] ). +verb( 'exacerbate', 'exacerbates', 'exacerbating', 'exacerbated', 'exacerbated', tran, ['6A'] ). +verb( 'exact', 'exacts', 'exacting', 'exacted', 'exacted', tran, ['6A','14'] ). +verb( 'exaggerate', 'exaggerates', 'exaggerating', 'exaggerated', 'exaggerated', _, ['2A','6A'] ). +verb( 'exalt', 'exalts', 'exalting', 'exalted', 'exalted', tran, ['6A'] ). +verb( 'examine', 'examines', 'examining', 'examined', 'examined', tran, ['6A','14'] ). +verb( 'exasperate', 'exasperates', 'exasperating', 'exasperated', 'exasperated', tran, ['6A'] ). +verb( 'excavate', 'excavates', 'excavating', 'excavated', 'excavated', tran, ['6A'] ). +verb( 'exceed', 'exceeds', 'exceeding', 'exceeded', 'exceeded', tran, ['6A'] ). +verb( 'excel', 'excels', 'excelling', 'excelled', 'excelled', _, ['2C','3A','6A','15A'] ). +verb( 'except', 'excepts', 'excepting', 'excepted', 'excepted', tran, ['6A','14'] ). +verb( 'exchange', 'exchanges', 'exchanging', 'exchanged', 'exchanged', tran, ['6A','14'] ). +verb( 'excise', 'excises', 'excising', 'excised', 'excised', tran, ['6A'] ). +verb( 'excite', 'excites', 'exciting', 'excited', 'excited', tran, ['6A','14','17'] ). +verb( 'exclaim', 'exclaims', 'exclaiming', 'exclaimed', 'exclaimed', _, ['2A','9'] ). +verb( 'exclude', 'excludes', 'excluding', 'excluded', 'excluded', tran, ['6A','14'] ). +verb( 'excogitate', 'excogitates', 'excogitating', 'excogitated', 'excogitated', tran, ['6A'] ). +verb( 'excommunicate', 'excommunicates', 'excommunicating', 'excommunicated', 'excommunicated', tran, ['6A'] ). +verb( 'excoriate', 'excoriates', 'excoriating', 'excoriated', 'excoriated', tran, ['6A'] ). +verb( 'excrete', 'excretes', 'excreting', 'excreted', 'excreted', tran, ['6A'] ). +verb( 'exculpate', 'exculpates', 'exculpating', 'exculpated', 'exculpated', tran, ['6A','14'] ). +verb( 'excuse', 'excuses', 'excusing', 'excused', 'excused', tran, ['6A','6C','12B','13B','14','19C'] ). +verb( 'execrate', 'execrates', 'execrating', 'execrated', 'execrated', tran, ['6A'] ). +verb( 'execute', 'executes', 'executing', 'executed', 'executed', tran, ['6A'] ). +verb( 'exemplify', 'exemplifies', 'exemplifying', 'exemplified', 'exemplified', tran, ['6A'] ). +verb( 'exempt', 'exempts', 'exempting', 'exempted', 'exempted', tran, ['6A','14'] ). +verb( 'exercise', 'exercises', 'exercising', 'exercised', 'exercised', _, ['2A','6A','15A'] ). +verb( 'exert', 'exerts', 'exerting', 'exerted', 'exerted', tran, ['6A','14','16A'] ). +verb( 'exhale', 'exhales', 'exhaling', 'exhaled', 'exhaled', _, ['2A','6A'] ). +verb( 'exhaust', 'exhausts', 'exhausting', 'exhausted', 'exhausted', tran, ['6A'] ). +verb( 'exhibit', 'exhibits', 'exhibiting', 'exhibited', 'exhibited', tran, ['2A','6A'] ). +verb( 'exhilarate', 'exhilarates', 'exhilarating', 'exhilarated', 'exhilarated', tran, ['6A'] ). +verb( 'exhort', 'exhorts', 'exhorting', 'exhorted', 'exhorted', tran, ['6A','14','17'] ). +verb( 'exhume', 'exhumes', 'exhuming', 'exhumed', 'exhumed', tran, ['6A'] ). +verb( 'exile', 'exiles', 'exiling', 'exiled', 'exiled', tran, ['6A','15A'] ). +verb( 'exist', 'exists', 'existing', 'existed', 'existed', intran, ['2A','2C','3A'] ). +verb( 'exit', 'exits', 'exiting', 'exited', 'exited', intran, [] ). +verb( 'exonerate', 'exonerates', 'exonerating', 'exonerated', 'exonerated', tran, ['6A','14'] ). +verb( 'exorcize', 'exorcizes', 'exorcizing', 'exorcized', 'exorcized', tran, ['6A','14'] ). +verb( 'expand', 'expands', 'expanding', 'expanded', 'expanded', _, ['2A','2C','6A','14'] ). +verb( 'expatiate', 'expatiates', 'expatiating', 'expatiated', 'expatiated', intran, ['3A'] ). +verb( 'expatriate', 'expatriates', 'expatriating', 'expatriated', 'expatriated', tran, ['6A'] ). +verb( 'expect', 'expects', 'expecting', 'expected', 'expected', tran, ['6A','7A','9','14','17'] ). +verb( 'expectorate', 'expectorates', 'expectorating', 'expectorated', 'expectorated', _, ['2A','6A'] ). +verb( 'expedite', 'expedites', 'expediting', 'expedited', 'expedited', tran, ['6A'] ). +verb( 'expel', 'expels', 'expelling', 'expelled', 'expelled', tran, ['6A','14'] ). +verb( 'expend', 'expends', 'expending', 'expended', 'expended', tran, ['6A','14'] ). +verb( 'experience', 'experiences', 'experiencing', 'experienced', 'experienced', tran, ['6A'] ). +verb( 'experiment', 'experiments', 'experimenting', 'experimented', 'experimented', intran, ['2A','2C','3A'] ). +verb( 'expiate', 'expiates', 'expiating', 'expiated', 'expiated', tran, ['6A'] ). +verb( 'expire', 'expires', 'expiring', 'expired', 'expired', intran, ['2A'] ). +verb( 'explain', 'explains', 'explaining', 'explained', 'explained', tran, ['6A','8','9','10','14','15B'] ). +verb( 'explicate', 'explicates', 'explicating', 'explicated', 'explicated', tran, ['6A'] ). +verb( 'explode', 'explodes', 'exploding', 'exploded', 'exploded', _, ['2A','2C','6A'] ). +verb( 'exploit', 'exploits', 'exploiting', 'exploited', 'exploited', tran, ['6A'] ). +verb( 'explore', 'explores', 'exploring', 'explored', 'explored', tran, ['6A'] ). +verb( 'export', 'exports', 'exporting', 'exported', 'exported', tran, ['6A'] ). +verb( 'expose', 'exposes', 'exposing', 'exposed', 'exposed', tran, ['6A','14','15A'] ). +verb( 'expostulate', 'expostulates', 'expostulating', 'expostulated', 'expostulated', intran, ['2A','3A'] ). +verb( 'expound', 'expounds', 'expounding', 'expounded', 'expounded', tran, ['6A','14'] ). +verb( 'express', 'expresses', 'expressing', 'expressed', 'expressed', tran, ['6A','10','14','15A'] ). +verb( 'expropriate', 'expropriates', 'expropriating', 'expropriated', 'expropriated', tran, ['6A','14'] ). +verb( 'expunge', 'expunges', 'expunging', 'expunged', 'expunged', tran, ['6A','14'] ). +verb( 'expurgate', 'expurgates', 'expurgating', 'expurgated', 'expurgated', tran, ['6A'] ). +verb( 'extemporize', 'extemporize', 'extemporize', 'extemporize', 'extemporize', _, ['2A','6A'] ). +verb( 'extend', 'extends', 'extending', 'extended', 'extended', _, ['2B','2C','6A','14','15A'] ). +verb( 'extenuate', 'extenuates', 'extenuating', 'extenuated', 'extenuated', tran, ['6A'] ). +verb( 'exteriorize', 'exteriorizes', 'exteriorizing', 'exteriorized', 'exteriorized', tran, [] ). +verb( 'exterminate', 'exterminates', 'exterminating', 'exterminated', 'exterminated', tran, ['6A'] ). +verb( 'externalize', 'externalizes', 'externalizing', 'externalized', 'externalized', tran, ['6A'] ). +verb( 'extinguish', 'extinguishes', 'extinguishing', 'extinguished', 'extinguished', tran, ['6A'] ). +verb( 'extirpate', 'extirpates', 'extirpating', 'extirpated', 'extirpated', tran, ['6A'] ). +verb( 'extol', 'extols', 'extolling', 'extolled', 'extolled', tran, ['6A','15A'] ). +verb( 'extort', 'extorts', 'extorting', 'extorted', 'extorted', tran, ['6A','14'] ). +verb( 'extract', 'extracts', 'extracting', 'extracted', 'extracted', tran, ['6A','14'] ). +verb( 'extradite', 'extradites', 'extraditing', 'extradited', 'extradited', tran, ['6A'] ). +verb( 'extrapolate', 'extrapolate', 'extrapolate', 'extrapolate', 'extrapolate', _, ['6A'] ). +verb( 'extricate', 'extricates', 'extricating', 'extricated', 'extricated', tran, ['6A','14'] ). +verb( 'extrude', 'extrudes', 'extruding', 'extruded', 'extruded', tran, ['6A','14'] ). +verb( 'exude', 'exudes', 'exuding', 'exuded', 'exuded', _, ['2A','2C','6A'] ). +verb( 'exult', 'exults', 'exulting', 'exulted', 'exulted', intran, ['2A','3A','4C'] ). +verb( 'eye', 'eyes', 'eying', 'eyed', 'eyed', tran, ['6A','15A'] ). +verb( 'f^ete', 'f^etes', 'f^eting', 'f^eted', 'f^eted', tran, ['6A'] ). +verb( 'fabricate', 'fabricates', 'fabricating', 'fabricated', 'fabricated', tran, ['6A'] ). +verb( 'face', 'faces', 'facing', 'faced', 'faced', _, ['2C','6A','6C','14','15B'] ). +verb( 'facilitate', 'facilitates', 'facilitating', 'facilitated', 'facilitated', tran, ['6A'] ). +verb( 'factorize', 'factorizes', 'factorizing', 'factorized', 'factorized', tran, ['6A'] ). +verb( 'fade', 'fades', 'fading', 'faded', 'faded', _, ['2A','2C','3A','6A','15B'] ). +verb( 'fag', 'fags', 'fagging', 'fagged', 'fagged', _, ['2A','2C','3A','6A','15B'] ). +verb( 'fail', 'fails', 'failing', 'failed', 'failed', _, ['2A','2C','3A','4A','6A'] ). +verb( 'faint', 'faints', 'fainting', 'fainted', 'fainted', intran, ['2A','2C'] ). +verb( 'fake', 'fakes', 'faking', 'faked', 'faked', tran, ['6A','15B'] ). +verb( 'fall', 'falls', 'falling', 'fell', 'fallen', intran, ['2A','2B','2C','2D','3A'] ). +verb( 'falsify', 'falsifies', 'falsifying', 'falsified', 'falsified', tran, ['6A'] ). +verb( 'falter', 'falters', 'faltering', 'faltered', 'faltered', _, ['2A','2C','15B'] ). +verb( 'familiarize', 'familiarizes', 'familiarizing', 'familiarized', 'familiarized', tran, ['6A','14'] ). +verb( 'famish', 'famishes', 'famishing', 'famished', 'famished', _, ['2A','3A','6A'] ). +verb( 'fan', 'fans', 'fanning', 'fanned', 'fanned', _, ['2C','6A'] ). +verb( 'fancy', 'fancies', 'fancying', 'fancied', 'fancied', tran, ['6A','6C','9','16B','19C','25'] ). +verb( 'fare', 'fares', 'faring', 'fared', 'fared', intran, ['2C'] ). +verb( 'farm', 'farms', 'farming', 'farmed', 'farmed', _, ['2A','6A','15B'] ). +verb( 'farrow', 'farrows', 'farrowing', 'farrowed', 'farrowed', intran, [] ). +verb( 'fart', 'farts', 'farting', 'farted', 'farted', intran, [] ). +verb( 'fascinate', 'fascinates', 'fascinating', 'fascinated', 'fascinated', tran, ['6A'] ). +verb( 'fashion', 'fashions', 'fashioning', 'fashioned', 'fashioned', tran, ['6A','15A'] ). +verb( 'fast', 'fasts', 'fasting', 'fasted', 'fasted', intran, ['2A','2B'] ). +verb( 'fasten', 'fastens', 'fastening', 'fastened', 'fastened', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'fat', 'fats', 'fatting', 'fatted', 'fatted', tran, [] ). +verb( 'fate', 'fates', 'fating', 'fated', 'fated', tran, ['17'] ). +verb( 'father', 'fathers', 'fathering', 'fathered', 'fathered', tran, ['6A','14'] ). +verb( 'fathom', 'fathoms', 'fathoming', 'fathomed', 'fathomed', tran, ['6A'] ). +verb( 'fatigue', 'fatigues', 'fatiguing', 'fatigued', 'fatigued', tran, ['6A'] ). +verb( 'fatten', 'fattens', 'fattening', 'fattened', 'fattened', _, ['2A','2C','6A','15B'] ). +verb( 'fault', 'faults', 'faulting', 'faulted', 'faulted', tran, ['6A'] ). +verb( 'favour', 'favours', 'favouring', 'favoured', 'favoured', tran, ['6A','14'] ). +verb( 'fawn', 'fawns', 'fawning', 'fawned', 'fawned', intran, ['2A','3A'] ). +verb( 'fear', 'fears', 'fearing', 'feared', 'feared', _, ['2A','3A','4A','6A','6C','9'] ). +verb( 'feast', 'feasts', 'feasting', 'feasted', 'feasted', _, ['2A','2B','6A','14'] ). +verb( 'feather', 'feathers', 'feathering', 'feathered', 'feathered', tran, ['6A'] ). +verb( 'featherbed', 'featherbeds', 'featherbedding', 'featherbedded', 'featherbedded', tran, [] ). +verb( 'feature', 'features', 'featuring', 'featured', 'featured', tran, ['6A'] ). +verb( 'federate', 'federates', 'federating', 'federated', 'federated', _, ['2A','6A'] ). +verb( 'fee', 'fees', 'feeing', 'feed', 'feed', tran, ['6A'] ). +verb( 'feed', 'feeds', 'feeding', 'fed', 'fed', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'feel', 'feels', 'feeling', 'felt', 'felt', _, ['2A','2C','2D','3A','6A','6C','9','10','15B','18A','19A','25'] ). +verb( 'feign', 'feigns', 'feigning', 'feigned', 'feigned', tran, ['6A','9'] ). +verb( 'feint', 'feints', 'feinting', 'feinted', 'feinted', intran, ['2A','3A'] ). +verb( 'felicitate', 'felicitates', 'felicitating', 'felicitated', 'felicitated', tran, ['6A','14'] ). +verb( 'fell', 'fells', 'felling', 'felled', 'felled', tran, ['2A','2B','2C','2D','3A','6A'] ). +verb( 'fence', 'fences', 'fencing', 'fenced', 'fenced', tran, ['2A','2C','3A','6A','15B'] ). +verb( 'fend', 'fends', 'fending', 'fended', 'fended', _, ['15B'] ). +verb( 'ferment', 'ferments', 'fermenting', 'fermented', 'fermented', _, ['2A','6A'] ). +verb( 'ferret', 'ferrets', 'ferreting', 'ferreted', 'ferreted', _, ['2A','2C','15B'] ). +verb( 'ferry', 'ferries', 'ferrying', 'ferried', 'ferried', _, ['2A','2C','6A','15A','15B'] ). +verb( 'fertilize', 'fertilizes', 'fertilizing', 'fertilized', 'fertilized', tran, ['6A'] ). +verb( 'fester', 'festers', 'festering', 'festered', 'festered', intran, ['2A'] ). +verb( 'festoon', 'festoons', 'festooning', 'festooned', 'festooned', tran, ['6A'] ). +verb( 'fetch', 'fetches', 'fetching', 'fetched', 'fetched', _, ['6A','12B','12C','13B','15A','15B'] ). +verb( 'fetter', 'fetters', 'fettering', 'fettered', 'fettered', tran, ['6A'] ). +verb( 'fib', 'fibs', 'fibbing', 'fibbed', 'fibbed', intran, ['2A'] ). +verb( 'fiddle', 'fiddles', 'fiddling', 'fiddled', 'fiddled', tran, ['2A','2C','6A'] ). +verb( 'fidget', 'fidgets', 'fidgeting', 'fidgeted', 'fidgeted', _, ['2A','2C','6A'] ). +verb( 'field', 'fields', 'fielding', 'fielded', 'fielded', _, ['2A','6A'] ). +verb( 'fight', 'fights', 'fighting', 'fought', 'fought', _, ['2A','2B','2C','3A','4A','6A','15A','15B'] ). +verb( 'figure', 'figures', 'figuring', 'figured', 'figured', _, ['2C','3A','9','15A','15B','25'] ). +verb( 'filch', 'filches', 'filching', 'filched', 'filched', tran, ['6A'] ). +verb( 'file', 'files', 'filing', 'filed', 'filed', _, ['2C','6A','15A','15B','22'] ). +verb( 'filibuster', 'filibusters', 'filibustering', 'filibustered', 'filibustered', intran, [] ). +verb( 'fill', 'fills', 'filling', 'filled', 'filled', _, ['2A','2C','6A','12B','13B','14','15B'] ). +verb( 'fillet', 'fillets', 'filleting', 'filleted', 'filleted', tran, ['6A'] ). +verb( 'film', 'films', 'filming', 'filmed', 'filmed', _, ['2A','2C','6A'] ). +verb( 'filter', 'filters', 'filtering', 'filtered', 'filtered', _, ['2A','2C','6A','14','15B'] ). +verb( 'filtrate', 'filtrates', 'filtrating', 'filtrated', 'filtrated', _, [] ). +verb( 'finalize', 'finalizes', 'finalizing', 'finalized', 'finalized', tran, ['6A'] ). +verb( 'finance', 'finances', 'financing', 'financed', 'financed', tran, ['6A'] ). +verb( 'find', 'finds', 'finding', 'found', 'found', tran, ['6A','8','9','10','12A','12B','13A','13B','15A','15B','19B','22','25'] ). +verb( 'fine', 'fines', 'fining', 'fined', 'fined', tran, ['6A','14'] ). +verb( 'finger', 'fingers', 'fingering', 'fingered', 'fingered', tran, ['6A'] ). +verb( 'finish', 'finishes', 'finishing', 'finished', 'finished', _, ['2A','2C','6A','6C','15B','24B'] ). +verb( 'fire', 'fires', 'firing', 'fired', 'fired', _, ['2A','2C','3A','6A','15B'] ). +verb( 'firm', 'firms', 'firming', 'firmed', 'firmed', _, [] ). +verb( 'fish', 'fishes', 'fishing', 'fished', 'fished', _, ['2A','2C','6A','15A','15B'] ). +verb( 'fit', 'fits', 'fitting', 'fitted', 'fitted', _, ['2A','2C','6A','14','15A','15B','16A'] ). +verb( 'fix', 'fixes', 'fixing', 'fixed', 'fixed', _, ['3A','6A','14','15A','15B'] ). +verb( 'fixate', 'fixates', 'fixating', 'fixated', 'fixated', tran, ['6A'] ). +verb( 'fizz', 'fizzes', 'fizzing', 'fizzed', 'fizzed', intran, ['2A','2C'] ). +verb( 'fizzle', 'fizzles', 'fizzling', 'fizzled', 'fizzled', intran, ['2A','2C'] ). +verb( 'flabbergast', 'flabbergasts', 'flabbergasting', 'flabbergasted', 'flabbergasted', tran, ['6A'] ). +verb( 'flag', 'flags', 'flagging', 'flagged', 'flagged', _, ['2A','6A','15B'] ). +verb( 'flagellate', 'flagellates', 'flagellating', 'flagellated', 'flagellated', tran, ['6A'] ). +verb( 'flail', 'flails', 'flailing', 'flailed', 'flailed', tran, ['6A'] ). +verb( 'flake', 'flakes', 'flaking', 'flaked', 'flaked', intran, ['2A','2C'] ). +verb( 'flame', 'flames', 'flaming', 'flamed', 'flamed', intran, ['2A','2C'] ). +verb( 'flank', 'flanks', 'flanking', 'flanked', 'flanked', tran, ['6A'] ). +verb( 'flap', 'flaps', 'flapping', 'flapped', 'flapped', _, ['2A','2C','6A','15B'] ). +verb( 'flare', 'flares', 'flaring', 'flared', 'flared', _, ['2A','2C','6A'] ). +verb( 'flash', 'flashes', 'flashing', 'flashed', 'flashed', _, ['2A','2C','6A','12C','15A'] ). +verb( 'flatten', 'flattens', 'flattening', 'flattened', 'flattened', _, ['2A','2C','6A','15A','15B'] ). +verb( 'flatter', 'flatters', 'flattering', 'flattered', 'flattered', tran, ['6A'] ). +verb( 'flaunt', 'flaunts', 'flaunting', 'flaunted', 'flaunted', _, ['2A','2C','6A'] ). +verb( 'flavour', 'flavours', 'flavouring', 'flavoured', 'flavoured', tran, ['6A'] ). +verb( 'flay', 'flays', 'flaying', 'flayed', 'flayed', tran, ['6A'] ). +verb( 'fleck', 'flecks', 'flecking', 'flecked', 'flecked', tran, ['6A'] ). +verb( 'flee', 'flees', 'fleeing', 'fled', 'flown', _, ['2A','2C','6A'] ). +verb( 'fleece', 'fleeces', 'fleecing', 'fleeced', 'fleeced', tran, ['6A','14'] ). +verb( 'flex', 'flexes', 'flexing', 'flexed', 'flexed', tran, ['6A'] ). +verb( 'flick', 'flicks', 'flicking', 'flicked', 'flicked', tran, ['6A','15A','15B','22'] ). +verb( 'flicker', 'flickers', 'flickering', 'flickered', 'flickered', intran, ['2A','2C'] ). +verb( 'flight', 'flights', 'flighting', 'flighted', 'flighted', tran, ['6A'] ). +verb( 'flinch', 'flinches', 'flinching', 'flinched', 'flinched', intran, ['2A','3A'] ). +verb( 'fling', 'flings', 'flinging', 'flung', 'flung', _, ['2C','6A','12A','13A','15A','15B','22'] ). +verb( 'flip', 'flips', 'flipping', 'flipped', 'flipped', _, ['6A','15A','15B'] ). +verb( 'flirt', 'flirts', 'flirting', 'flirted', 'flirted', intran, ['2A','3A'] ). +verb( 'flit', 'flits', 'flitting', 'flitted', 'flitted', intran, ['2C'] ). +verb( 'float', 'floats', 'floating', 'floated', 'floated', _, ['2A','2C','6A','15A','15B'] ). +verb( 'flock', 'flocks', 'flocking', 'flocked', 'flocked', intran, ['2C','4A'] ). +verb( 'flog', 'flogs', 'flogging', 'flogged', 'flogged', tran, ['6A'] ). +verb( 'flood', 'floods', 'flooding', 'flooded', 'flooded', _, ['3A','6A','14','15B','16A'] ). +verb( 'floodlight', 'floodlights', 'floodlighting', 'floodlighted', 'floodlighted', tran, [] ). +verb( 'floor', 'floors', 'flooring', 'floored', 'floored', tran, ['6A'] ). +verb( 'flop', 'flops', 'flopping', 'flopped', 'flopped', _, ['2A','2C','15A','15B'] ). +verb( 'flounce', 'flounces', 'flouncing', 'flounced', 'flounced', _, ['2C','6A'] ). +verb( 'flounder', 'flounders', 'floundering', 'floundered', 'floundered', intran, ['2A','2C'] ). +verb( 'flour', 'flours', 'flouring', 'floured', 'floured', tran, ['6A'] ). +verb( 'flourish', 'flourishes', 'flourishing', 'flourished', 'flourished', _, ['2A','6A'] ). +verb( 'flout', 'flouts', 'flouting', 'flouted', 'flouted', tran, ['6A'] ). +verb( 'flow', 'flows', 'flowing', 'flowed', 'flowed', intran, ['2A','2C'] ). +verb( 'flower', 'flowers', 'flowering', 'flowered', 'flowered', intran, ['2A','2C'] ). +verb( 'fluctuate', 'fluctuates', 'fluctuating', 'fluctuated', 'fluctuated', intran, ['2A','2C'] ). +verb( 'fluff', 'fluffs', 'fluffing', 'fluffed', 'fluffed', tran, ['6A','15B'] ). +verb( 'flummox', 'flummoxes', 'flummoxing', 'flummoxed', 'flummoxed', tran, ['6A'] ). +verb( 'flunk', 'flunks', 'flunking', 'flunked', 'flunked', _, ['2A','2C','6A','15B'] ). +verb( 'fluoridate', 'fluoridates', 'fluoridating', 'fluoridated', 'fluoridated', tran, ['6A'] ). +verb( 'fluoridize', 'fluoridizes', 'fluoridizing', 'fluoridized', 'fluoridized', tran, [] ). +verb( 'flurry', 'flurries', 'flurrying', 'flurried', 'flurried', tran, ['6A'] ). +verb( 'flush', 'flushes', 'flushing', 'flushed', 'flushed', _, ['2A','2C','2D','6A','14'] ). +verb( 'fluster', 'flusters', 'flustering', 'flustered', 'flustered', tran, ['6A'] ). +verb( 'flute', 'flutes', 'fluting', 'fluted', 'fluted', _, ['6A'] ). +verb( 'flutter', 'flutters', 'fluttering', 'fluttered', 'fluttered', _, ['2A','2C','6A','15A','15B'] ). +verb( 'fly', 'flies', 'flying', 'flew', 'flew', _, ['2A','2B','2C','2D','4A','6A','15A','15B'] ). +verb( 'fly-fish', 'fly-fishes', 'fly-fishing', 'fly-fished', 'fly-fished', intran, ['2A'] ). +verb( 'foal', 'foals', 'foaling', 'foaled', 'foaled', intran, ['2A'] ). +verb( 'foam', 'foams', 'foaming', 'foamed', 'foamed', intran, ['2A','2C'] ). +verb( 'fob', 'fobs', 'fobbing', 'fobbed', 'fobbed', tran, ['15B'] ). +verb( 'focus', 'focuses', 'focusing', 'focused', 'focused', _, ['2A','2C','6A','14'] ). +verb( 'fog', 'fogs', 'fogging', 'fogged', 'fogged', tran, [] ). +verb( 'foil', 'foils', 'foiling', 'foiled', 'foiled', tran, ['6A'] ). +verb( 'foist', 'foists', 'foisting', 'foisted', 'foisted', tran, ['14','15A'] ). +verb( 'fold', 'folds', 'folding', 'folded', 'folded', _, ['2A','2C','6A','15A','15B'] ). +verb( 'follow', 'follows', 'following', 'followed', 'followed', _, ['2A','2B','2C','6A','15B'] ). +verb( 'foment', 'foments', 'fomenting', 'fomented', 'fomented', tran, ['6A'] ). +verb( 'fondle', 'fondles', 'fondling', 'fondled', 'fondled', tran, ['6A'] ). +verb( 'fool', 'fools', 'fooling', 'fooled', 'fooled', _, ['2A','2C','6A','14','15B'] ). +verb( 'foot', 'foots', 'footing', 'footed', 'footed', _, ['6A'] ). +verb( 'footle', 'footles', 'footling', 'footled', 'footled', _, [] ). +verb( 'footslog', 'footslogs', 'footslogging', 'footslogged', 'footslogged', intran, [] ). +verb( 'forage', 'forages', 'foraging', 'foraged', 'foraged', intran, ['2A','3A'] ). +verb( 'foray', 'forays', 'foraying', 'forayed', 'forayed', intran, ['2A'] ). +verb( 'forbear', 'forbears', 'forbearing', 'forbore', 'forborne', _, ['2A','3A','6C','7A'] ). +verb( 'forbid', 'forbids', 'forbidding', 'forbad', 'forbidden', tran, ['6A','12C','17'] ). +verb( 'force', 'forces', 'forcing', 'forced', 'forced', tran, ['6A','15A','15B','17','22'] ). +verb( 'force-feed', 'force-feeds', 'force-feeding', 'force-fed', 'force-fed', tran, ['6A'] ). +verb( 'force-land', 'force-lands', 'force-landing', 'force-landed', 'force-landed', _, [] ). +verb( 'ford', 'fords', 'fording', 'forded', 'forded', tran, ['6A'] ). +verb( 'forearm', 'forearms', 'forearming', 'forearmed', 'forearmed', tran, ['6A'] ). +verb( 'forebode', 'forebodes', 'foreboding', 'foreboded', 'foreboded', tran, ['6A','9'] ). +verb( 'forecast', 'forecasts', 'forecasting', 'forecasted', 'forecasted', tran, ['6A'] ). +verb( 'foreclose', 'forecloses', 'foreclosing', 'foreclosed', 'foreclosed', _, ['2A','3A','6A'] ). +verb( 'foredoom', 'foredooms', 'foredooming', 'foredoomed', 'foredoomed', tran, ['6A','14'] ). +verb( 'foregather', 'foregathers', 'foregathering', 'foregathered', 'foregathered', intran, ['2A','2C'] ). +verb( 'forego', 'foregoes', 'foregoing', 'forewent', 'foregone', _, [] ). +verb( 'foreknow', 'foreknows', 'foreknowing', 'foreknew', 'foreknown', _, ['2A','3A','6A','8','9','10','17','18B','25'] ). +verb( 'foreordain', 'foreordains', 'foreordaining', 'foreordained', 'foreordained', tran, ['6A','14','17'] ). +verb( 'foresee', 'foresees', 'foreseeing', 'foresaw', 'foreseen', tran, ['6A','9','10'] ). +verb( 'foreshadow', 'foreshadows', 'foreshadowing', 'foreshadowed', 'foreshadowed', tran, ['6A'] ). +verb( 'foreshorten', 'foreshortens', 'foreshortening', 'foreshortened', 'foreshortened', tran, ['6A'] ). +verb( 'forestall', 'forestalls', 'forestalling', 'forestalled', 'forestalled', tran, ['6A'] ). +verb( 'foreswear', 'foreswears', 'foreswearing', 'foreswore', 'foresworn', tran, ['6A'] ). +verb( 'foretell', 'foretells', 'foretelling', 'foretold', 'foretold', tran, ['6A','9','10','12A','13A'] ). +verb( 'forewarn', 'forewarns', 'forewarning', 'forewarned', 'forewarned', tran, ['6A'] ). +verb( 'forfeit', 'forfeits', 'forfeiting', 'forfeited', 'forfeited', tran, ['6A'] ). +verb( 'forgather', 'forgathers', 'forgathering', 'forgathered', 'forgathered', intran, ['2A','2C'] ). +verb( 'forge', 'forges', 'forging', 'forged', 'forged', _, ['2C','6A'] ). +verb( 'forget', 'forgets', 'forgetting', 'forgot', 'forgotten', _, ['2A','3A','6A','6C','6D','7A','8','9','10'] ). +verb( 'forgive', 'forgives', 'forgiving', 'forgave', 'forgiven', _, ['2A','6A','12C','14'] ). +verb( 'forgo', 'forgoes', 'forgoing', 'forwent', 'forgone', tran, [] ). +verb( 'fork', 'forks', 'forking', 'forked', 'forked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'form', 'forms', 'forming', 'formed', 'formed', _, ['2A','2C','6A','14','15A'] ). +verb( 'formalize', 'formalizes', 'formalizing', 'formalized', 'formalized', tran, ['6A'] ). +verb( 'formulate', 'formulates', 'formulating', 'formulated', 'formulated', tran, ['6A'] ). +verb( 'fornicate', 'fornicates', 'fornicating', 'fornicated', 'fornicated', intran, ['21'] ). +verb( 'forsake', 'forsakes', 'forsaking', 'forsook', 'forsaken', tran, ['6A'] ). +verb( 'forswear', 'forswears', 'forswearing', 'forswore', 'forsworn', tran, ['6A'] ). +verb( 'fortify', 'fortifies', 'fortifying', 'fortified', 'fortified', tran, ['6A','14'] ). +verb( 'forward', 'forwards', 'forwarding', 'forwarded', 'forwarded', tran, ['6A','12A','13A','15A'] ). +verb( 'fossilize', 'fossilizes', 'fossilizing', 'fossilized', 'fossilized', _, ['2A','6A'] ). +verb( 'foster', 'fosters', 'fostering', 'fostered', 'fostered', tran, ['6A'] ). +verb( 'foul', 'fouls', 'fouling', 'fouled', 'fouled', _, ['2A','2C','6A'] ). +verb( 'found', 'founds', 'founding', 'founded', 'founded', tran, ['6A','8','9','10','12A','12B','13A','13B','14','15A','15B','19B','22','25'] ). +verb( 'founder', 'founders', 'foundering', 'foundered', 'foundered', _, ['2A','6A'] ). +verb( 'fowl', 'fowls', 'fowling', 'fowled', 'fowled', intran, [] ). +verb( 'fox', 'foxes', 'foxing', 'foxed', 'foxed', tran, ['6A'] ). +verb( 'foxhunt', 'foxhunts', 'foxhunting', 'foxhunted', 'foxhunted', intran, [] ). +verb( 'fracture', 'fractures', 'fracturing', 'fractured', 'fractured', _, ['2A','6A'] ). +verb( 'fragment', 'fragments', 'fragmenting', 'fragmented', 'fragmented', intran, ['2A'] ). +verb( 'frame', 'frames', 'framing', 'framed', 'framed', _, ['2A','2C','6A'] ). +verb( 'frank', 'franks', 'franking', 'franked', 'franked', tran, ['6A'] ). +verb( 'fraternize', 'fraternizes', 'fraternizing', 'fraternized', 'fraternized', intran, ['2A','2C','3A'] ). +verb( 'fray', 'frays', 'fraying', 'frayed', 'frayed', _, ['2A','2C','6A'] ). +verb( 'freak', 'freaks', 'freaking', 'freaked', 'freaked', _, ['2C','15B'] ). +verb( 'freckle', 'freckles', 'freckling', 'freckled', 'freckled', _, ['2A','6A'] ). +verb( 'free', 'frees', 'freeing', 'freed', 'freed', tran, ['6A','14'] ). +verb( 'freelance', 'freelances', 'freelancing', 'freelanced', 'freelanced', intran, [] ). +verb( 'freewheel', 'freewheels', 'freewheeling', 'freewheeled', 'freewheeled', intran, ['2A','2C'] ). +verb( 'freeze', 'freezes', 'freezing', 'froze', 'frozen', _, ['2A','2C','3A','6A','15B'] ). +verb( 'freight', 'freights', 'freighting', 'freighted', 'freighted', tran, ['6A','14'] ). +verb( 'frequent', 'frequents', 'frequenting', 'frequented', 'frequented', tran, ['6A'] ). +verb( 'fresco', 'frescos', 'frescoing', 'frescoed', 'frescoed', tran, [] ). +verb( 'freshen', 'freshens', 'freshening', 'freshened', 'freshened', _, ['2A','2C','6A','15B'] ). +verb( 'fret', 'frets', 'fretting', 'fretted', 'fretted', _, ['2A','2C','3A','6A','15A'] ). +verb( 'fricassee', 'fricassees', 'fricasseeing', 'fricasseed', 'fricasseed', tran, [] ). +verb( 'fright', 'frights', 'frighting', 'frighted', 'frighted', tran, [] ). +verb( 'frighten', 'frightens', 'frightening', 'frightened', 'frightened', tran, ['6A','14','15B'] ). +verb( 'fringe', 'fringes', 'fringing', 'fringed', 'fringed', tran, ['6A'] ). +verb( 'frisk', 'frisks', 'frisking', 'frisked', 'frisked', _, ['2A','2C','6A'] ). +verb( 'fritter', 'fritters', 'frittering', 'frittered', 'frittered', tran, ['15B'] ). +verb( 'frivol', 'frivols', 'frivolling', 'frivolled', 'frivolled', _, ['2A','15B'] ). +verb( 'frizz', 'frizzes', 'frizzing', 'frizzed', 'frizzed', tran, ['6A'] ). +verb( 'frizzle', 'frizzles', 'frizzling', 'frizzled', 'frizzled', _, ['2A','2C','6A','15B'] ). +verb( 'frogmarch', 'frogmarches', 'frogmarching', 'frogmarched', 'frogmarched', tran, ['6A'] ). +verb( 'frolic', 'frolics', 'frolicking', 'frolicked', 'frolicked', intran, ['2A','2C'] ). +verb( 'front', 'fronts', 'fronting', 'fronted', 'fronted', _, ['2A','2C','6A'] ). +verb( 'frost', 'frosts', 'frosting', 'frosted', 'frosted', _, ['2A','2C','6A'] ). +verb( 'froth', 'froths', 'frothing', 'frothed', 'frothed', intran, ['2A','2C'] ). +verb( 'frown', 'frowns', 'frowning', 'frowned', 'frowned', intran, ['2A','3A'] ). +verb( 'fructify', 'fructifies', 'fructifying', 'fructified', 'fructified', _, ['2A','6A'] ). +verb( 'fruit', 'fruits', 'fruiting', 'fruited', 'fruited', intran, [] ). +verb( 'frustrate', 'frustrates', 'frustrating', 'frustrated', 'frustrated', tran, ['6A','15A'] ). +verb( 'fry', 'fries', 'frying', 'fried', 'fried', _, ['2A','6A'] ). +verb( 'fuck', 'fucks', 'fucking', 'fucked', 'fucked', _, ['2A','6A'] ). +verb( 'fuddle', 'fuddles', 'fuddling', 'fuddled', 'fuddled', tran, ['6A','15A'] ). +verb( 'fuel', 'fuels', 'fuelling', 'fuelled', 'fuelled', _, ['2A','6A'] ). +verb( 'fulfil', 'fulfils', 'fulfilling', 'fulfilled', 'fulfilled', tran, ['6A'] ). +verb( 'fulminate', 'fulminates', 'fulminating', 'fulminated', 'fulminated', intran, ['2A','3A'] ). +verb( 'fumble', 'fumbles', 'fumbling', 'fumbled', 'fumbled', _, ['2A','2C','6A'] ). +verb( 'fume', 'fumes', 'fuming', 'fumed', 'fumed', _, ['2A','2C','3A','6A'] ). +verb( 'fumigate', 'fumigates', 'fumigating', 'fumigated', 'fumigated', tran, ['6A'] ). +verb( 'function', 'functions', 'functioning', 'functioned', 'functioned', intran, ['2A','2C'] ). +verb( 'fund', 'funds', 'funding', 'funded', 'funded', tran, ['6A'] ). +verb( 'funk', 'funks', 'funking', 'funked', 'funked', _, ['2A','6A'] ). +verb( 'funnel', 'funnels', 'funnelling', 'funnelled', 'funnelled', _, ['2A','6A'] ). +verb( 'furbish', 'furbishes', 'furbishing', 'furbished', 'furbished', tran, ['6A'] ). +verb( 'furl', 'furls', 'furling', 'furled', 'furled', _, ['2A','6A'] ). +verb( 'furnish', 'furnishes', 'furnishing', 'furnished', 'furnished', tran, ['6A','14'] ). +verb( 'furrow', 'furrows', 'furrowing', 'furrowed', 'furrowed', tran, ['6A'] ). +verb( 'further', 'furthers', 'furthering', 'furthered', 'furthered', tran, ['6A'] ). +verb( 'fuse', 'fuses', 'fusing', 'fused', 'fused', _, ['2A','6A','15A','15B'] ). +verb( 'fuss', 'fusses', 'fussing', 'fussed', 'fussed', _, ['2A','2C','6A'] ). +verb( 'gabble', 'gabbles', 'gabbling', 'gabbled', 'gabbled', _, ['2A','2C','6A','15B'] ). +verb( 'gad', 'gads', 'gadding', 'gadded', 'gadded', intran, ['2C'] ). +verb( 'gag', 'gags', 'gagging', 'gagged', 'gagged', _, ['2A','6A'] ). +verb( 'gage', 'gages', 'gaging', 'gaged', 'gaged', tran, ['6A'] ). +verb( 'gain', 'gains', 'gaining', 'gained', 'gained', _, ['2A','2B','2C','3A','6A','12B','13B','14'] ). +verb( 'gainsay', 'gainsays', 'gainsaying', 'gainsaid', 'gainsaid', tran, ['6A'] ). +verb( 'gall', 'galls', 'galling', 'galled', 'galled', tran, ['6A'] ). +verb( 'gallivant', 'gallivants', 'gallivanting', 'gallivanted', 'gallivanted', intran, ['2C'] ). +verb( 'gallop', 'gallops', 'galloping', 'galloped', 'galloped', _, ['2A','2B','2C','6A'] ). +verb( 'galumph', 'galumphs', 'galumphing', 'galumphed', 'galumphed', intran, [] ). +verb( 'galvanize', 'galvanizes', 'galvanizing', 'galvanized', 'galvanized', tran, ['6A','14'] ). +verb( 'gamble', 'gambles', 'gambling', 'gambled', 'gambled', _, ['2A','2B','2C','15B'] ). +verb( 'gambol', 'gambols', 'gambolling', 'gambolled', 'gambolled', intran, ['2A','2C'] ). +verb( 'game', 'games', 'gaming', 'gamed', 'gamed', _, ['2A','2C','15B'] ). +verb( 'gang', 'gangs', 'ganging', 'ganged', 'ganged', intran, ['2C'] ). +verb( 'gangrene', 'gangrenes', 'gangrening', 'gangrened', 'gangrened', _, ['2A','6A'] ). +verb( 'gaol', 'gaols', 'gaoling', 'gaoled', 'gaoled', tran, ['6A'] ). +verb( 'gape', 'gapes', 'gaping', 'gaped', 'gaped', intran, ['2A','2C'] ). +verb( 'garage', 'garages', 'garaging', 'garaged', 'garaged', tran, ['6A'] ). +verb( 'garb', 'garbs', 'garbing', 'garbed', 'garbed', tran, ['6A'] ). +verb( 'garble', 'garbles', 'garbling', 'garbled', 'garbled', tran, ['6A'] ). +verb( 'garden', 'gardens', 'gardening', 'gardened', 'gardened', intran, ['2A'] ). +verb( 'gargle', 'gargles', 'gargling', 'gargled', 'gargled', _, ['2A','6A'] ). +verb( 'garland', 'garlands', 'garlanding', 'garlanded', 'garlanded', tran, ['6A'] ). +verb( 'garner', 'garners', 'garnering', 'garnered', 'garnered', tran, ['6A','15B'] ). +verb( 'garnish', 'garnishes', 'garnishing', 'garnished', 'garnished', tran, ['6A','14'] ). +verb( 'garotte', 'garottes', 'garotting', 'garotted', 'garotted', tran, ['6A'] ). +verb( 'garrison', 'garrisons', 'garrisoning', 'garrisoned', 'garrisoned', tran, ['6A'] ). +verb( 'garrotte', 'garrottes', 'garrotting', 'garrotted', 'garrotted', tran, ['6A'] ). +verb( 'gas', 'gasses', 'gassing', 'gassed', 'gassed', _, ['2A','2C','6A'] ). +verb( 'gash', 'gashes', 'gashing', 'gashed', 'gashed', tran, ['6A'] ). +verb( 'gasify', 'gasifies', 'gasifying', 'gasified', 'gasified', _, ['2A','6A'] ). +verb( 'gasp', 'gasps', 'gasping', 'gasped', 'gasped', _, ['2A','2C','6A','15B'] ). +verb( 'gate', 'gates', 'gating', 'gated', 'gated', tran, ['6A'] ). +verb( 'gatecrash', 'gatecrashes', 'gatecrashing', 'gatecrashed', 'gatecrashed', tran, ['6A'] ). +verb( 'gather', 'gathers', 'gathering', 'gathered', 'gathered', _, ['2A','2C','6A','9','12B','13B','15A','15B'] ). +verb( 'gauge', 'gauges', 'gauging', 'gauged', 'gauged', tran, ['6A'] ). +verb( 'gawp', 'gawps', 'gawping', 'gawped', 'gawped', intran, ['2A','3A'] ). +verb( 'gaze', 'gazes', 'gazing', 'gazed', 'gazed', intran, ['2A','2C','3A'] ). +verb( 'gazette', 'gazettes', 'gazetting', 'gazetted', 'gazetted', tran, [] ). +verb( 'gazump', 'gazumps', 'gazumping', 'gazumped', 'gazumped', _, ['2A','6A'] ). +verb( 'gear', 'gears', 'gearing', 'geared', 'geared', _, ['2A','2C','3A','14','15A'] ). +verb( 'gel', 'gels', 'gelling', 'gelled', 'gelled', intran, [] ). +verb( 'geld', 'gelds', 'gelding', 'gelded', 'gelded', tran, ['6A'] ). +verb( 'gen', 'gens', 'genning', 'genned', 'genned', tran, ['15B'] ). +verb( 'generalize', 'generalizes', 'generalizing', 'generalized', 'generalized', _, ['2A','3A','6A','14'] ). +verb( 'generate', 'generates', 'generating', 'generated', 'generated', tran, ['6A'] ). +verb( 'genuflect', 'genuflects', 'genuflecting', 'genuflected', 'genuflected', intran, ['2A'] ). +verb( 'germinate', 'germinates', 'germinating', 'germinated', 'germinated', _, ['2A','6A'] ). +verb( 'gerrymander', 'gerrymanders', 'gerrymandering', 'gerrymandered', 'gerrymandered', tran, ['6A'] ). +verb( 'gesticulate', 'gesticulates', 'gesticulating', 'gesticulated', 'gesticulated', intran, ['2A'] ). +verb( 'gesture', 'gestures', 'gesturing', 'gestured', 'gestured', intran, ['2A'] ). +verb( 'get', 'gets', 'getting', 'got', 'got', _, ['2C','2D','2E','3A','4A','6A','7A','7B','12B','13B','14','15A','15B','17','19B','22','24C'] ). +verb( 'ghost', 'ghosts', 'ghosting', 'ghosted', 'ghosted', _, [] ). +verb( 'gibber', 'gibbers', 'gibbering', 'gibbered', 'gibbered', intran, ['2A','2C'] ). +verb( 'gibbet', 'gibbets', 'gibbeting', 'gibbeted', 'gibbeted', tran, [] ). +verb( 'gibe', 'gibes', 'gibing', 'gibed', 'gibed', intran, ['2A','3A'] ). +verb( 'gift', 'gifts', 'gifting', 'gifted', 'gifted', tran, ['6A'] ). +verb( 'giggle', 'giggles', 'giggling', 'giggled', 'giggled', intran, ['2A','6A'] ). +verb( 'gild', 'gilds', 'gilding', 'gilded', 'gilded', tran, ['6A'] ). +verb( 'gin', 'gins', 'ginning', 'ginned', 'ginned', tran, ['6A'] ). +verb( 'ginger', 'gingers', 'gingering', 'gingered', 'gingered', tran, ['6A','15B'] ). +verb( 'gird', 'girds', 'girding', 'girded', 'girded', tran, ['15B'] ). +verb( 'girdle', 'girdles', 'girdling', 'girdled', 'girdled', tran, ['15A','15B'] ). +verb( 'give', 'gives', 'giving', 'gave', 'given', _, ['2A','2C','3A','6A','12A','12B','13A','15B','16A'] ). +verb( 'gladden', 'gladdens', 'gladdening', 'gladdened', 'gladdened', tran, ['6A'] ). +verb( 'glamorize', 'glamorizes', 'glamorizing', 'glamorized', 'glamorized', tran, ['6A'] ). +verb( 'glance', 'glances', 'glancing', 'glanced', 'glanced', _, ['2C','3A','15A'] ). +verb( 'glare', 'glares', 'glaring', 'glared', 'glared', _, ['2A','2C','3A','6A','14'] ). +verb( 'glass', 'glasses', 'glassing', 'glassed', 'glassed', tran, ['6A','15B'] ). +verb( 'glaze', 'glazes', 'glazing', 'glazed', 'glazed', _, ['2A','2C','6A','15B'] ). +verb( 'gleam', 'gleams', 'gleaming', 'gleamed', 'gleamed', intran, ['2A','2C'] ). +verb( 'glean', 'gleans', 'gleaning', 'gleaned', 'gleaned', _, ['2A','6A'] ). +verb( 'glide', 'glides', 'gliding', 'glided', 'glided', intran, ['2A','2C'] ). +verb( 'glimmer', 'glimmers', 'glimmering', 'glimmered', 'glimmered', intran, ['2A','2C'] ). +verb( 'glimpse', 'glimpses', 'glimpsing', 'glimpsed', 'glimpsed', tran, ['6A','19A'] ). +verb( 'glint', 'glints', 'glinting', 'glinted', 'glinted', intran, [] ). +verb( 'glissade', 'glissades', 'glissading', 'glissaded', 'glissaded', intran, [] ). +verb( 'glisten', 'glistens', 'glistening', 'glistened', 'glistened', intran, ['2A','2C'] ). +verb( 'glister', 'glisters', 'glistering', 'glistered', 'glistered', intran, [] ). +verb( 'glitter', 'glitters', 'glittering', 'glittered', 'glittered', intran, ['2A','2C'] ). +verb( 'gloat', 'gloats', 'gloating', 'gloated', 'gloated', intran, ['2A','3A'] ). +verb( 'globetrot', 'globetrots', 'globetrotting', 'globetrotted', 'globetrotted', intran, ['2A'] ). +verb( 'glorify', 'glorifies', 'glorifying', 'glorified', 'glorified', tran, ['6A'] ). +verb( 'glory', 'glories', 'glorying', 'gloried', 'gloried', intran, ['3A'] ). +verb( 'gloss', 'glosses', 'glossing', 'glossed', 'glossed', tran, ['6A','15A'] ). +verb( 'glow', 'glows', 'glowing', 'glowed', 'glowed', intran, ['2A','2C'] ). +verb( 'glower', 'glowers', 'glowering', 'glowered', 'glowered', intran, ['2A','3A'] ). +verb( 'glue', 'glues', 'gluing', 'glued', 'glued', tran, ['6A','15A','15B'] ). +verb( 'glut', 'gluts', 'glutting', 'glutted', 'glutted', tran, ['6A','14'] ). +verb( 'gnash', 'gnashes', 'gnashing', 'gnashed', 'gnashed', _, ['2A','6A'] ). +verb( 'gnaw', 'gnaws', 'gnawing', 'gnawed', 'gnawed', _, ['3A','6A','15B'] ). +verb( 'go', 'goes', 'going', 'went', 'gone', intran, ['2A','2B','2C','2D','2E','3A','4A','6A','15B'] ). +verb( 'goad', 'goads', 'goading', 'goaded', 'goaded', tran, ['6A','14','15B','17'] ). +verb( 'gobble', 'gobbles', 'gobbling', 'gobbled', 'gobbled', _, ['2A','2C','6A','15B'] ). +verb( 'goggle', 'goggles', 'goggling', 'goggled', 'goggled', intran, ['2A','3A'] ). +verb( 'golf', 'golfs', 'golfing', 'golfed', 'golfed', intran, [] ). +verb( 'gong', 'gongs', 'gonging', 'gonged', 'gonged', tran, [] ). +verb( 'goof', 'goofs', 'goofing', 'goofed', 'goofed', _, ['2A','6A'] ). +verb( 'gore', 'gores', 'goring', 'gored', 'gored', tran, ['6A'] ). +verb( 'gorge', 'gorges', 'gorging', 'gorged', 'gorged', _, ['2A','2C','6A','14'] ). +verb( 'gormandize', 'gormandizes', 'gormandizing', 'gormandized', 'gormandized', intran, [] ). +verb( 'gossip', 'gossips', 'gossiping', 'gossiped', 'gossiped', intran, ['2A','2C'] ). +verb( 'gouge', 'gouges', 'gouging', 'gouged', 'gouged', tran, ['6A','15B'] ). +verb( 'govern', 'governs', 'governing', 'governed', 'governed', _, ['2A','6A'] ). +verb( 'gown', 'gowns', 'gowning', 'gowned', 'gowned', tran, [] ). +verb( 'grab', 'grabs', 'grabbing', 'grabbed', 'grabbed', _, ['3A','6A'] ). +verb( 'grace', 'graces', 'gracing', 'graced', 'graced', tran, ['6A'] ). +verb( 'grade', 'grades', 'grading', 'graded', 'graded', tran, ['6A','15B'] ). +verb( 'graduate', 'graduates', 'graduating', 'graduated', 'graduated', _, ['2A','2C','6A'] ). +verb( 'graft', 'grafts', 'grafting', 'grafted', 'grafted', _, ['2A','6A','15A','15B'] ). +verb( 'grant', 'grants', 'granting', 'granted', 'granted', tran, ['6A','9','12A','13A','25'] ). +verb( 'granulate', 'granulates', 'granulating', 'granulated', 'granulated', _, ['2A','6A'] ). +verb( 'grapple', 'grapples', 'grappling', 'grappled', 'grappled', intran, ['2A','2C','3A'] ). +verb( 'grasp', 'grasps', 'grasping', 'grasped', 'grasped', _, ['3A','6A'] ). +verb( 'grass', 'grasses', 'grassing', 'grassed', 'grassed', _, ['2A','3A','6A','15B'] ). +verb( 'grate', 'grates', 'grating', 'grated', 'grated', _, ['2A','3A','6A','15A'] ). +verb( 'gratify', 'gratifies', 'gratifying', 'gratified', 'gratified', tran, ['6A'] ). +verb( 'grave', 'graves', 'graving', 'graved', 'graven', tran, [] ). +verb( 'gravel', 'gravels', 'gravelling', 'gravelled', 'gravelled', tran, ['6A'] ). +verb( 'gravitate', 'gravitates', 'gravitating', 'gravitated', 'gravitated', intran, ['3A'] ). +verb( 'gray', 'grays', 'graying', 'grayed', 'grayed', _, ['2A','6A'] ). +verb( 'graze', 'grazes', 'grazing', 'grazed', 'grazed', _, ['2A','2C','6A'] ). +verb( 'grease', 'greases', 'greasing', 'greased', 'greased', tran, [] ). +verb( 'greet', 'greets', 'greeting', 'greeted', 'greeted', tran, ['6A','14'] ). +verb( 'grey', 'greys', 'greying', 'greyed', 'greyed', _, ['2A','6A'] ). +verb( 'grieve', 'grieves', 'grieving', 'grieved', 'grieved', _, ['2A','2C','6A'] ). +verb( 'grill', 'grills', 'grilling', 'grilled', 'grilled', _, ['2A','2C','6A'] ). +verb( 'grimace', 'grimaces', 'grimacing', 'grimaced', 'grimaced', intran, ['2A'] ). +verb( 'grime', 'grimes', 'griming', 'grimed', 'grimed', tran, ['6A'] ). +verb( 'grin', 'grins', 'grinning', 'grinned', 'grinned', _, ['2A','2C','6A'] ). +verb( 'grind', 'grinds', 'grinding', 'ground', 'ground', _, ['2A','2C','6A','15A','15B'] ). +verb( 'grip', 'grips', 'gripping', 'gripped', 'gripped', _, ['2A','6A'] ). +verb( 'grit', 'grits', 'gritting', 'gritted', 'gritted', tran, [] ). +verb( 'grizzle', 'grizzles', 'grizzling', 'grizzled', 'grizzled', intran, [] ). +verb( 'groan', 'groans', 'groaning', 'groaned', 'groaned', _, ['2A','2C','6A','15B'] ). +verb( 'groin', 'groins', 'groining', 'groined', 'groined', tran, [] ). +verb( 'groom', 'grooms', 'grooming', 'groomed', 'groomed', tran, ['6A'] ). +verb( 'groove', 'grooves', 'grooving', 'grooved', 'grooved', tran, [] ). +verb( 'grope', 'gropes', 'groping', 'groped', 'groped', _, ['2A','2C','3A','15A'] ). +verb( 'gross', 'grosses', 'grossing', 'grossed', 'grossed', tran, ['6A'] ). +verb( 'grouch', 'grouches', 'grouching', 'grouched', 'grouched', intran, [] ). +verb( 'ground', 'grounds', 'grounding', 'grounded', 'grounded', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'group', 'groups', 'grouping', 'grouped', 'grouped', _, ['2C','6A','15A','15B'] ). +verb( 'grouse', 'grouses', 'grousing', 'groused', 'groused', intran, ['2A','2C'] ). +verb( 'grovel', 'grovels', 'grovelling', 'grovelled', 'grovelled', intran, ['2A','2C'] ). +verb( 'grow', 'grows', 'growing', 'grew', 'grown', _, ['2A','2C','2D','3A','4A','6A','12B','13B'] ). +verb( 'growl', 'growls', 'growling', 'growled', 'growled', _, ['2A','2C','6A','15B'] ). +verb( 'grub', 'grubs', 'grubbing', 'grubbed', 'grubbed', _, ['2C','6A','15B'] ). +verb( 'grudge', 'grudges', 'grudging', 'grudged', 'grudged', tran, ['6C','12A','13A'] ). +verb( 'grumble', 'grumbles', 'grumbling', 'grumbled', 'grumbled', _, ['2A','2C','3A','6A','15B'] ). +verb( 'grunt', 'grunts', 'grunting', 'grunted', 'grunted', _, ['2A','6A','15B'] ). +verb( 'guarantee', 'guarantees', 'guaranteeing', 'guaranteed', 'guaranteed', tran, ['6A','7A','9','12A','13A','25'] ). +verb( 'guard', 'guards', 'guarding', 'guarded', 'guarded', _, ['3A','6A','15A'] ). +verb( 'guess', 'guesses', 'guessing', 'guessed', 'guessed', _, ['2A','2C','3A','6A','8','9','10','25'] ). +verb( 'guffaw', 'guffaws', 'guffawing', 'guffawed', 'guffawed', intran, [] ). +verb( 'guide', 'guides', 'guiding', 'guided', 'guided', tran, ['6A','15A','15B'] ). +verb( 'guillotine', 'guillotines', 'guillotining', 'guillotined', 'guillotined', tran, ['6A'] ). +verb( 'gull', 'gulls', 'gulling', 'gulled', 'gulled', tran, ['6A','15A'] ). +verb( 'gulp', 'gulps', 'gulping', 'gulped', 'gulped', _, ['2A','6A','15B'] ). +verb( 'gum', 'gums', 'gumming', 'gummed', 'gummed', tran, ['6A','15A','15B'] ). +verb( 'gun', 'guns', 'gunning', 'gunned', 'gunned', tran, ['6A','15B'] ). +verb( 'gurgle', 'gurgles', 'gurgling', 'gurgled', 'gurgled', intran, [] ). +verb( 'gush', 'gushes', 'gushing', 'gushed', 'gushed', intran, ['2A','2C','3A'] ). +verb( 'gut', 'guts', 'gutting', 'gutted', 'gutted', tran, ['6A'] ). +verb( 'gutter', 'gutters', 'guttering', 'guttered', 'guttered', intran, ['2A'] ). +verb( 'guy', 'guys', 'guying', 'guyed', 'guyed', tran, ['6A'] ). +verb( 'guzzle', 'guzzles', 'guzzling', 'guzzled', 'guzzled', _, ['2A','6A','15B'] ). +verb( 'gybe', 'gybes', 'gybing', 'gybed', 'gybed', _, ['2A','6A'] ). +verb( 'gyp', 'gyps', 'gypping', 'gypped', 'gypped', tran, ['6A'] ). +verb( 'gyrate', 'gyrates', 'gyrating', 'gyrated', 'gyrated', intran, [] ). +verb( 'h\'m', 'h\'ms', 'h\'mming', 'h\'mmed', 'h\'mmed', intran, [] ). +verb( 'habituate', 'habituates', 'habituating', 'habituated', 'habituated', tran, ['14'] ). +verb( 'hack', 'hacks', 'hacking', 'hacked', 'hacked', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'haggle', 'haggles', 'haggling', 'haggled', 'haggled', intran, ['2A','3A'] ). +verb( 'hail', 'hails', 'hailing', 'hailed', 'hailed', _, ['2C','3A','6A','15B','16B','23'] ). +verb( 'halloo', 'halloos', 'hallooing', 'hallooed', 'hallooed', intran, [] ). +verb( 'hallow', 'hallows', 'hallowing', 'hallowed', 'hallowed', tran, ['6A'] ). +verb( 'halt', 'halts', 'halting', 'halted', 'halted', _, ['2A','2C','6A'] ). +verb( 'halve', 'halves', 'halving', 'halved', 'halved', tran, ['6A'] ). +verb( 'ham', 'hams', 'hamming', 'hammed', 'hammed', _, ['2A','6A','15B'] ). +verb( 'hammer', 'hammers', 'hammering', 'hammered', 'hammered', _, ['2A','2C','3A','6A','15B','22'] ). +verb( 'hamper', 'hampers', 'hampering', 'hampered', 'hampered', tran, ['6A'] ). +verb( 'hamstring', 'hamstrings', 'hamstringing', 'hamstrung', 'hamstrung', tran, ['6A'] ). +verb( 'hand', 'hands', 'handing', 'handed', 'handed', tran, ['12A','13A','15A','15B'] ). +verb( 'handcuff', 'handcuffs', 'handcuffing', 'handcuffed', 'handcuffed', tran, [] ). +verb( 'handicap', 'handicaps', 'handicapping', 'handicapped', 'handicapped', tran, ['6A'] ). +verb( 'handle', 'handles', 'handling', 'handled', 'handled', tran, ['6A'] ). +verb( 'hang', 'hangs', 'hanging', 'hanged', 'hanged', _, ['2A','2B','2C','3A','6A','15A','15B'] ). +verb( 'hanker', 'hankers', 'hankering', 'hankered', 'hankered', intran, ['3A'] ). +verb( 'hap', 'haps', 'happing', 'happed', 'happed', intran, [] ). +verb( 'happen', 'happens', 'happening', 'happened', 'happened', intran, ['2A','3A','4E'] ). +verb( 'harangue', 'harangues', 'haranguing', 'harangued', 'harangued', _, ['2A','6A'] ). +verb( 'harass', 'harasses', 'harassing', 'harassed', 'harassed', tran, ['6A'] ). +verb( 'harbour', 'harbours', 'harbouring', 'harboured', 'harboured', _, ['2A','6A'] ). +verb( 'harden', 'hardens', 'hardening', 'hardened', 'hardened', _, ['2A','2C','6A','15B'] ). +verb( 'hare', 'hares', 'haring', 'hared', 'hared', intran, ['2C'] ). +verb( 'hark', 'harks', 'harking', 'harked', 'harked', intran, [] ). +verb( 'harm', 'harms', 'harming', 'harmed', 'harmed', tran, ['6A'] ). +verb( 'harmonize', 'harmonizes', 'harmonizing', 'harmonized', 'harmonized', _, ['2A','2C','6A','14'] ). +verb( 'harness', 'harnesses', 'harnessing', 'harnessed', 'harnessed', tran, ['6A'] ). +verb( 'harp', 'harps', 'harping', 'harped', 'harped', intran, [] ). +verb( 'harpoon', 'harpoons', 'harpooning', 'harpooned', 'harpooned', tran, [] ). +verb( 'harrow', 'harrows', 'harrowing', 'harrowed', 'harrowed', tran, ['6A'] ). +verb( 'harry', 'harries', 'harrying', 'harried', 'harried', tran, ['6A'] ). +verb( 'harvest', 'harvests', 'harvesting', 'harvested', 'harvested', tran, ['6A'] ). +verb( 'hash', 'hashes', 'hashing', 'hashed', 'hashed', tran, ['6A','15B'] ). +verb( 'hassle', 'hassles', 'hassling', 'hassled', 'hassled', _, ['2A','3A','6A'] ). +verb( 'hasten', 'hastens', 'hastening', 'hastened', 'hastened', _, ['2A','2C','4A','6A'] ). +verb( 'hatch', 'hatches', 'hatching', 'hatched', 'hatched', _, ['2A','6A'] ). +verb( 'hate', 'hates', 'hating', 'hated', 'hated', tran, ['6A','6D','7A','17','19C'] ). +verb( 'haul', 'hauls', 'hauling', 'hauled', 'hauled', _, ['2C','3A','6A','15A','15B'] ). +verb( 'haunt', 'haunts', 'haunting', 'haunted', 'haunted', tran, ['6A'] ). +verb( 'have', 'has', 'having', 'had', 'had', unknown, ['6A','6B','7B','15B','18C','19B','24B','24C'] ). +verb( 'have', 'has', 'having', 'had', 'had', _, ['6A','6B','7B','15B','18C','19B','24B','24C'] ). +verb( 'haw', 'haws', 'hawing', 'hawed', 'hawed', intran, [] ). +verb( 'hawk', 'hawks', 'hawking', 'hawked', 'hawked', tran, ['6A','15B'] ). +verb( 'hazard', 'hazards', 'hazarding', 'hazarded', 'hazarded', tran, ['6A'] ). +verb( 'haze', 'hazes', 'hazing', 'hazed', 'hazed', tran, [] ). +verb( 'head', 'heads', 'heading', 'headed', 'headed', _, ['2C','6A','15B'] ). +verb( 'heal', 'heals', 'healing', 'healed', 'healed', _, ['2A','2C','6A'] ). +verb( 'heap', 'heaps', 'heaping', 'heaped', 'heaped', tran, ['6A','14','15A','15B'] ). +verb( 'hear', 'hears', 'hearing', 'heard', 'heard', _, ['2A','3A','6A','9','10','15A','18A','19A','24A'] ). +verb( 'hearken', 'hearkens', 'hearkening', 'hearkened', 'hearkened', intran, [] ). +verb( 'hearten', 'heartens', 'heartening', 'heartened', 'heartened', tran, ['6A'] ). +verb( 'heat', 'heats', 'heating', 'heated', 'heated', _, ['2C','6A','15B'] ). +verb( 'heave', 'heaves', 'heaving', 'heaved', 'heaved', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'heckle', 'heckles', 'heckling', 'heckled', 'heckled', tran, ['6A'] ). +verb( 'hector', 'hectors', 'hectoring', 'hectored', 'hectored', _, [] ). +verb( 'hedge', 'hedges', 'hedging', 'hedged', 'hedged', _, ['2A','6A','15A','15B'] ). +verb( 'hedgehop', 'hedgehops', 'hedgehopping', 'hedgehopped', 'hedgehopped', intran, [] ). +verb( 'heed', 'heeds', 'heeding', 'heeded', 'heeded', tran, ['6A'] ). +verb( 'heel', 'heels', 'heeling', 'heeled', 'heeled', _, ['2A','2C','6A','15B'] ). +verb( 'heighten', 'heightens', 'heightening', 'heightened', 'heightened', _, ['2A','6A'] ). +verb( 'heliograph', 'heliographs', 'heliographing', 'heliographed', 'heliographed', tran, [] ). +verb( 'help', 'helps', 'helping', 'helped', 'helped', _, ['2A','2C','6A','6C','14','15A','15B','17','18B'] ). +verb( 'hem', 'hems', 'hemming', 'hemmed', 'hemmed', _, ['6A','15B'] ). +verb( 'hemstitch', 'hemstitches', 'hemstitching', 'hemstitched', 'hemstitched', tran, [] ). +verb( 'herald', 'heralds', 'heralding', 'heralded', 'heralded', tran, ['6A'] ). +verb( 'herd', 'herds', 'herding', 'herded', 'herded', _, ['2C','15A','15B'] ). +verb( 'hesitate', 'hesitates', 'hesitating', 'hesitated', 'hesitated', intran, ['2A','3A','3B','4C'] ). +verb( 'hew', 'hews', 'hewing', 'hewed', 'hewed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hibernate', 'hibernates', 'hibernating', 'hibernated', 'hibernated', intran, ['2A'] ). +verb( 'hiccough', 'hiccoughs', 'hiccoughing', 'hiccoughed', 'hiccoughed', intran, [] ). +verb( 'hiccup', 'hiccups', 'hiccupping', 'hiccupped', 'hiccupped', intran, [] ). +verb( 'hide', 'hides', 'hiding', 'hid', 'hidden', _, ['2A','6A','14'] ). +verb( 'hie', 'hies', 'hieing', 'hied', 'hied', intran, [] ). +verb( 'highjack', 'highjacks', 'highjacking', 'highjacked', 'highjacked', tran, ['6A'] ). +verb( 'highlight', 'highlights', 'highlighting', 'highlighted', 'highlighted', tran, [] ). +verb( 'hijack', 'hijacks', 'hijacking', 'hijacked', 'hijacked', tran, ['6A'] ). +verb( 'hike', 'hikes', 'hiking', 'hiked', 'hiked', intran, [] ). +verb( 'hinder', 'hinders', 'hindering', 'hindered', 'hindered', tran, ['6A','6C','15A'] ). +verb( 'hinge', 'hinges', 'hinging', 'hinged', 'hinged', _, ['3A','6A'] ). +verb( 'hint', 'hints', 'hinting', 'hinted', 'hinted', _, ['3A','6A','9'] ). +verb( 'hire', 'hires', 'hiring', 'hired', 'hired', tran, ['6A','15B'] ). +verb( 'hiss', 'hisses', 'hissing', 'hissed', 'hissed', _, ['2A','3A','6A','15A'] ). +verb( 'hit', 'hits', 'hitting', 'hit', 'hit', _, ['2C','3A','6A','12C','15A','15B'] ). +verb( 'hitch', 'hitches', 'hitching', 'hitched', 'hitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hitchhike', 'hitchhikes', 'hitchhiking', 'hitchhiked', 'hitchhiked', intran, ['2A'] ). +verb( 'hive', 'hives', 'hiving', 'hived', 'hived', _, ['2C','6A'] ). +verb( 'hoard', 'hoards', 'hoarding', 'hoarded', 'hoarded', _, ['6A','15B'] ). +verb( 'hoax', 'hoaxes', 'hoaxing', 'hoaxed', 'hoaxed', tran, ['6A','14'] ). +verb( 'hobble', 'hobbles', 'hobbling', 'hobbled', 'hobbled', _, ['2A','2C','6A'] ). +verb( 'hobnob', 'hobnobs', 'hobnobbing', 'hobnobbed', 'hobnobbed', intran, ['2A','2C','3A'] ). +verb( 'hock', 'hocks', 'hocking', 'hocked', 'hocked', tran, ['6A'] ). +verb( 'hoe', 'hoes', 'hoeing', 'hoed', 'hoed', _, ['2A','6A','15B'] ). +verb( 'hog', 'hogs', 'hogging', 'hogged', 'hogged', tran, ['6A'] ). +verb( 'hoist', 'hoists', 'hoisting', 'hoisted', 'hoisted', tran, ['6A','15B'] ). +verb( 'hold', 'holds', 'holding', 'held', 'held', _, ['2A','2C','2D','3A','6A','9','14','15A','15B','22','25'] ). +verb( 'hole', 'holes', 'holing', 'holed', 'holed', _, ['2C','6A','15B'] ). +verb( 'holiday', 'holidays', 'holidaying', 'holidayed', 'holidayed', intran, [] ). +verb( 'holler', 'hollers', 'hollering', 'hollered', 'hollered', _, [] ). +verb( 'hollow', 'hollows', 'hollowing', 'hollowed', 'hollowed', tran, ['6A','15A','15B'] ). +verb( 'holystone', 'holystones', 'holystoning', 'holystoned', 'holystoned', tran, [] ). +verb( 'homogenize', 'homogenizes', 'homogenizing', 'homogenized', 'homogenized', tran, ['6A'] ). +verb( 'hone', 'hones', 'honing', 'honed', 'honed', tran, ['6A'] ). +verb( 'honeycomb', 'honeycombs', 'honeycombing', 'honeycombed', 'honeycombed', tran, ['6A'] ). +verb( 'honeymoon', 'honeymoons', 'honeymooning', 'honeymooned', 'honeymooned', intran, [] ). +verb( 'honk', 'honks', 'honking', 'honked', 'honked', intran, [] ). +verb( 'honour', 'honours', 'honouring', 'honoured', 'honoured', tran, ['6A'] ). +verb( 'hood', 'hoods', 'hooding', 'hooded', 'hooded', tran, [] ). +verb( 'hoodoo', 'hoodoos', 'hoodooing', 'hoodooed', 'hoodooed', tran, [] ). +verb( 'hoodwink', 'hoodwinks', 'hoodwinking', 'hoodwinked', 'hoodwinked', tran, ['6A','14'] ). +verb( 'hook', 'hooks', 'hooking', 'hooked', 'hooked', _, ['2C','6A','15A','15B'] ). +verb( 'hoop', 'hoops', 'hooping', 'hooped', 'hooped', tran, [] ). +verb( 'hoot', 'hoots', 'hooting', 'hooted', 'hooted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hop', 'hops', 'hopping', 'hopped', 'hopped', _, ['2A','2C','6A'] ). +verb( 'hope', 'hopes', 'hoping', 'hoped', 'hoped', _, ['2A','3A','7A','9'] ). +verb( 'horn', 'horns', 'horning', 'horned', 'horned', intran, [] ). +verb( 'horrify', 'horrifies', 'horrifying', 'horrified', 'horrified', tran, ['6A'] ). +verb( 'horsewhip', 'horsewhips', 'horsewhipping', 'horsewhipped', 'horsewhipped', tran, [] ). +verb( 'hose', 'hoses', 'hosing', 'hosed', 'hosed', tran, ['6A','15B'] ). +verb( 'hospitalize', 'hospitalizes', 'hospitalizing', 'hospitalized', 'hospitalized', tran, [] ). +verb( 'host', 'hosts', 'hosting', 'hosted', 'hosted', tran, ['6A'] ). +verb( 'hot', 'hots', 'hotting', 'hotted', 'hotted', _, ['2C','15B'] ). +verb( 'hotfoot', 'hotfoots', 'hotfooting', 'hotfooted', 'hotfooted', intran, [] ). +verb( 'hound', 'hounds', 'hounding', 'hounded', 'hounded', tran, ['6A'] ). +verb( 'house', 'houses', 'housing', 'housed', 'housed', tran, ['6A'] ). +verb( 'hover', 'hovers', 'hovering', 'hovered', 'hovered', intran, ['2A','2C'] ). +verb( 'howl', 'howls', 'howling', 'howled', 'howled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'huddle', 'huddles', 'huddling', 'huddled', 'huddled', _, ['2C','15A','15B'] ). +verb( 'huff', 'huffs', 'huffing', 'huffed', 'huffed', intran, [] ). +verb( 'hug', 'hugs', 'hugging', 'hugged', 'hugged', tran, ['6A'] ). +verb( 'hull', 'hulls', 'hulling', 'hulled', 'hulled', tran, [] ). +verb( 'hum', 'hums', 'humming', 'hummed', 'hummed', _, ['2A','2C','6A'] ). +verb( 'humanize', 'humanizes', 'humanizing', 'humanized', 'humanized', _, ['2A','6A'] ). +verb( 'humble', 'humbles', 'humbling', 'humbled', 'humbled', tran, ['6A'] ). +verb( 'humbug', 'humbugs', 'humbugging', 'humbugged', 'humbugged', tran, ['6A','14'] ). +verb( 'humidify', 'humidifies', 'humidifying', 'humidified', 'humidified', tran, [] ). +verb( 'humiliate', 'humiliates', 'humiliating', 'humiliated', 'humiliated', tran, ['6A'] ). +verb( 'humour', 'humours', 'humouring', 'humoured', 'humoured', tran, ['6A'] ). +verb( 'hump', 'humps', 'humping', 'humped', 'humped', tran, ['6A','15B'] ). +verb( 'hunch', 'hunches', 'hunching', 'hunched', 'hunched', tran, ['6A','15B'] ). +verb( 'hunger', 'hungers', 'hungering', 'hungered', 'hungered', intran, ['2A','3A','4C'] ). +verb( 'hunt', 'hunts', 'hunting', 'hunted', 'hunted', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'hurdle', 'hurdles', 'hurdling', 'hurdled', 'hurdled', _, ['2A','15B'] ). +verb( 'hurl', 'hurls', 'hurling', 'hurled', 'hurled', tran, ['6A','15A','15B'] ). +verb( 'hurrah', 'hurrahs', 'hurrahing', 'hurrahed', 'hurrahed', intran, [] ). +verb( 'hurry', 'hurries', 'hurrying', 'hurried', 'hurried', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hurt', 'hurts', 'hurting', 'hurt', 'hurt', _, ['2A','6A','6B'] ). +verb( 'hurtle', 'hurtles', 'hurtling', 'hurtled', 'hurtled', intran, ['2C'] ). +verb( 'husband', 'husbands', 'husbanding', 'husbanded', 'husbanded', tran, ['1','6A'] ). +verb( 'hush', 'hushes', 'hushing', 'hushed', 'hushed', _, ['2A','15A','15B'] ). +verb( 'husk', 'husks', 'husking', 'husked', 'husked', tran, [] ). +verb( 'hustle', 'hustles', 'hustling', 'hustled', 'hustled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'hybridize', 'hybridizes', 'hybridizing', 'hybridized', 'hybridized', _, ['2A','6A'] ). +verb( 'hydrate', 'hydrates', 'hydrating', 'hydrated', 'hydrated', _, [] ). +verb( 'hymn', 'hymns', 'hymning', 'hymned', 'hymned', tran, [] ). +verb( 'hyphen', 'hyphens', 'hyphening', 'hyphened', 'hyphened', tran, [] ). +verb( 'hyphenate', 'hyphenates', 'hyphenating', 'hyphenated', 'hyphenated', tran, [] ). +verb( 'hypnotize', 'hypnotizes', 'hypnotizing', 'hypnotized', 'hypnotized', tran, ['6A'] ). +verb( 'hypothecate', 'hypothecates', 'hypothecating', 'hypothecated', 'hypothecated', tran, [] ). +verb( 'ice', 'ices', 'icing', 'iced', 'iced', _, ['2C','6A','15B'] ). +verb( 'ice-skate', 'ice-skates', 'ice-skating', 'ice-skated', 'ice-skated', intran, [] ). +verb( 'idealize', 'idealizes', 'idealizing', 'idealized', 'idealized', tran, ['6A'] ). +verb( 'identify', 'identifies', 'identifying', 'identified', 'identified', tran, ['3A','6A','14'] ). +verb( 'idle', 'idles', 'idling', 'idled', 'idled', _, ['2A','2C','15B'] ). +verb( 'idolize', 'idolizes', 'idolizing', 'idolized', 'idolized', tran, ['6A'] ). +verb( 'ignite', 'ignites', 'igniting', 'ignited', 'ignited', _, ['2A','6A'] ). +verb( 'ignore', 'ignores', 'ignoring', 'ignored', 'ignored', tran, ['6A'] ). +verb( 'ill-treat', 'ill-treats', 'ill-treating', 'ill-treated', 'ill-treated', tran, [] ). +verb( 'ill-use', 'ill-uses', 'ill-using', 'ill-used', 'ill-used', tran, [] ). +verb( 'illume', 'illumes', 'illuming', 'illumed', 'illumed', tran, [] ). +verb( 'illuminate', 'illuminates', 'illuminating', 'illuminated', 'illuminated', tran, ['6A'] ). +verb( 'illumine', 'illumines', 'illumining', 'illumined', 'illumined', tran, ['6A'] ). +verb( 'illustrate', 'illustrates', 'illustrating', 'illustrated', 'illustrated', tran, ['6A'] ). +verb( 'image', 'images', 'imaging', 'imaged', 'imaged', tran, ['6A'] ). +verb( 'imagine', 'imagines', 'imagining', 'imagined', 'imagined', tran, ['6A','6C','9','10','16B','19A','19C','25'] ). +verb( 'imbed', 'imbeds', 'imbedding', 'imbedded', 'imbedded', tran, [] ). +verb( 'imbibe', 'imbibes', 'imbibing', 'imbibed', 'imbibed', tran, [] ). +verb( 'imbue', 'imbues', 'imbuing', 'imbued', 'imbued', tran, ['14'] ). +verb( 'imitate', 'imitates', 'imitating', 'imitated', 'imitated', tran, ['6A'] ). +verb( 'immerse', 'immerses', 'immersing', 'immersed', 'immersed', tran, ['6A','14'] ). +verb( 'immigrate', 'immigrates', 'immigrating', 'immigrated', 'immigrated', intran, ['2A','3A'] ). +verb( 'immobilize', 'immobilizes', 'immobilizing', 'immobilized', 'immobilized', tran, ['6A'] ). +verb( 'immolate', 'immolates', 'immolating', 'immolated', 'immolated', tran, ['6A','14'] ). +verb( 'immortalize', 'immortalizes', 'immortalizing', 'immortalized', 'immortalized', tran, ['6A'] ). +verb( 'immunize', 'immunizes', 'immunizing', 'immunized', 'immunized', tran, ['6A','14'] ). +verb( 'immure', 'immures', 'immuring', 'immured', 'immured', tran, ['6A'] ). +verb( 'impact', 'impacts', 'impacting', 'impacted', 'impacted', tran, [] ). +verb( 'impair', 'impairs', 'impairing', 'impaired', 'impaired', tran, ['6A'] ). +verb( 'impale', 'impales', 'impaling', 'impaled', 'impaled', tran, ['6A','15A'] ). +verb( 'impanel', 'impanels', 'impanelling', 'impanelled', 'impanelled', tran, ['6A'] ). +verb( 'impart', 'imparts', 'imparting', 'imparted', 'imparted', tran, ['6A','14'] ). +verb( 'impeach', 'impeaches', 'impeaching', 'impeached', 'impeached', tran, ['6A','14'] ). +verb( 'impede', 'impedes', 'impeding', 'impeded', 'impeded', tran, ['6A'] ). +verb( 'impel', 'impels', 'impelling', 'impelled', 'impelled', tran, ['14','17'] ). +verb( 'impend', 'impends', 'impending', 'impended', 'impended', intran, [] ). +verb( 'imperil', 'imperils', 'imperilling', 'imperilled', 'imperilled', tran, ['6A'] ). +verb( 'impersonate', 'impersonates', 'impersonating', 'impersonated', 'impersonated', tran, ['6A'] ). +verb( 'impinge', 'impinges', 'impinging', 'impinged', 'impinged', intran, ['3A'] ). +verb( 'implant', 'implants', 'implanting', 'implanted', 'implanted', tran, ['6A','14'] ). +verb( 'implement', 'implements', 'implementing', 'implemented', 'implemented', tran, ['6A'] ). +verb( 'implicate', 'implicates', 'implicating', 'implicated', 'implicated', tran, ['6A','14'] ). +verb( 'implore', 'implores', 'imploring', 'implored', 'implored', tran, ['6A','14','17'] ). +verb( 'imply', 'implies', 'implying', 'implied', 'implied', tran, ['6A','9'] ). +verb( 'import', 'imports', 'importing', 'imported', 'imported', tran, ['6A','9','14'] ). +verb( 'importune', 'importunes', 'importuning', 'importuned', 'importuned', tran, ['6A','9','14','17'] ). +verb( 'impose', 'imposes', 'imposing', 'imposed', 'imposed', _, ['3A','14'] ). +verb( 'impound', 'impounds', 'impounding', 'impounded', 'impounded', tran, ['6A'] ). +verb( 'impoverish', 'impoverishes', 'impoverishing', 'impoverished', 'impoverished', tran, ['6A'] ). +verb( 'imprecate', 'imprecates', 'imprecating', 'imprecated', 'imprecated', tran, ['14'] ). +verb( 'impregnate', 'impregnates', 'impregnating', 'impregnated', 'impregnated', tran, ['6A','14'] ). +verb( 'impress', 'impresses', 'impressing', 'impressed', 'impressed', tran, ['6A','14'] ). +verb( 'imprint', 'imprints', 'imprinting', 'imprinted', 'imprinted', tran, ['14'] ). +verb( 'imprison', 'imprisons', 'imprisoning', 'imprisoned', 'imprisoned', tran, ['6A'] ). +verb( 'improve', 'improves', 'improving', 'improved', 'improved', _, ['2A','3A','6A'] ). +verb( 'improvise', 'improvises', 'improvising', 'improvised', 'improvised', _, ['2A','6A'] ). +verb( 'impugn', 'impugns', 'impugning', 'impugned', 'impugned', tran, ['6A'] ). +verb( 'impulse-buy', 'impulse-buys', 'impulse-buying', 'impulse-bought', 'impulse-bought', _, [] ). +verb( 'impute', 'imputes', 'imputing', 'imputed', 'imputed', tran, ['14'] ). +verb( 'inactivate', 'inactivates', 'inactivating', 'inactivated', 'inactivated', tran, [] ). +verb( 'inaugurate', 'inaugurates', 'inaugurating', 'inaugurated', 'inaugurated', tran, ['6A'] ). +verb( 'incapacitate', 'incapacitates', 'incapacitating', 'incapacitated', 'incapacitated', tran, ['6A','14'] ). +verb( 'incarcerate', 'incarcerates', 'incarcerating', 'incarcerated', 'incarcerated', tran, ['6A'] ). +verb( 'incarnate', 'incarnates', 'incarnating', 'incarnated', 'incarnated', tran, ['6A'] ). +verb( 'incense', 'incenses', 'incensing', 'incensed', 'incensed', tran, ['6A'] ). +verb( 'inch', 'inches', 'inching', 'inched', 'inched', _, ['2C','15A','15B'] ). +verb( 'incinerate', 'incinerates', 'incinerating', 'incinerated', 'incinerated', tran, ['6A'] ). +verb( 'incise', 'incises', 'incising', 'incised', 'incised', tran, ['6A'] ). +verb( 'incite', 'incites', 'inciting', 'incited', 'incited', tran, ['6A','14','17'] ). +verb( 'incline', 'inclines', 'inclining', 'inclined', 'inclined', _, ['2A','3A','4C','6A','15A','17'] ). +verb( 'inclose', 'incloses', 'inclosing', 'inclosed', 'inclosed', tran, ['6A','14'] ). +verb( 'include', 'includes', 'including', 'included', 'included', tran, ['6A','6C'] ). +verb( 'incommode', 'incommodes', 'incommoding', 'incommoded', 'incommoded', tran, ['6A'] ). +verb( 'inconvenience', 'inconveniences', 'inconveniencing', 'inconvenienced', 'inconvenienced', tran, ['6A'] ). +verb( 'incorporate', 'incorporates', 'incorporating', 'incorporated', 'incorporated', _, ['2A','3A','6A','14','23'] ). +verb( 'increase', 'increases', 'increasing', 'increased', 'increased', _, ['2A','6A'] ). +verb( 'incriminate', 'incriminates', 'incriminating', 'incriminated', 'incriminated', tran, ['6A'] ). +verb( 'incubate', 'incubates', 'incubating', 'incubated', 'incubated', _, ['2A','6A'] ). +verb( 'inculcate', 'inculcates', 'inculcating', 'inculcated', 'inculcated', tran, ['6A','14'] ). +verb( 'inculpate', 'inculpates', 'inculpating', 'inculpated', 'inculpated', tran, ['6A'] ). +verb( 'incur', 'incurs', 'incurring', 'incurred', 'incurred', tran, ['6A'] ). +verb( 'indemnify', 'indemnifies', 'indemnifying', 'indemnified', 'indemnified', tran, ['6A','14'] ). +verb( 'indent', 'indents', 'indenting', 'indented', 'indented', _, ['3A','6A'] ). +verb( 'indenture', 'indentures', 'indenturing', 'indentured', 'indentured', tran, ['6A'] ). +verb( 'index', 'indexes', 'indexing', 'indexed', 'indexed', tran, ['6A'] ). +verb( 'indicate', 'indicates', 'indicating', 'indicated', 'indicated', tran, ['6A','9','14'] ). +verb( 'indict', 'indicts', 'indicting', 'indicted', 'indicted', tran, ['6A','14','16B'] ). +verb( 'indite', 'indites', 'inditing', 'indited', 'indited', tran, ['6A'] ). +verb( 'individualize', 'individualizes', 'individualizing', 'individualized', 'individualized', tran, ['6A'] ). +verb( 'indoctrinate', 'indoctrinates', 'indoctrinating', 'indoctrinated', 'indoctrinated', tran, ['6A','14'] ). +verb( 'indorse', 'indorses', 'indorsing', 'indorsed', 'indorsed', tran, ['6A'] ). +verb( 'induce', 'induces', 'inducing', 'induced', 'induced', tran, ['6A','14','17'] ). +verb( 'induct', 'inducts', 'inducting', 'inducted', 'inducted', tran, ['6A','14','16B'] ). +verb( 'indue', 'indues', 'induing', 'indued', 'indued', tran, ['14'] ). +verb( 'indulge', 'indulges', 'indulging', 'indulged', 'indulged', _, ['3A','6A'] ). +verb( 'inebriate', 'inebriates', 'inebriating', 'inebriated', 'inebriated', tran, ['6A'] ). +verb( 'infatuate', 'infatuates', 'infatuating', 'infatuated', 'infatuated', tran, [] ). +verb( 'infect', 'infects', 'infecting', 'infected', 'infected', tran, ['6A','14'] ). +verb( 'infer', 'infers', 'inferring', 'inferred', 'inferred', tran, ['6A','9','14'] ). +verb( 'infest', 'infests', 'infesting', 'infested', 'infested', tran, ['6A'] ). +verb( 'infiltrate', 'infiltrates', 'infiltrating', 'infiltrated', 'infiltrated', _, ['2A','3A','6A','14'] ). +verb( 'inflame', 'inflames', 'inflaming', 'inflamed', 'inflamed', _, ['2A','6A'] ). +verb( 'inflate', 'inflates', 'inflating', 'inflated', 'inflated', tran, ['6A','14'] ). +verb( 'inflect', 'inflects', 'inflecting', 'inflected', 'inflected', tran, ['6A'] ). +verb( 'inflict', 'inflicts', 'inflicting', 'inflicted', 'inflicted', tran, ['6A','14'] ). +verb( 'influence', 'influences', 'influencing', 'influenced', 'influenced', tran, ['6A'] ). +verb( 'inform', 'informs', 'informing', 'informed', 'informed', _, ['3A','6A','11','14','21'] ). +verb( 'infringe', 'infringes', 'infringing', 'infringed', 'infringed', _, ['3A','6A'] ). +verb( 'infuriate', 'infuriates', 'infuriating', 'infuriated', 'infuriated', tran, ['6A'] ). +verb( 'infuse', 'infuses', 'infusing', 'infused', 'infused', _, ['2A','6A','14'] ). +verb( 'ingest', 'ingests', 'ingesting', 'ingested', 'ingested', tran, ['6A'] ). +verb( 'ingraft', 'ingrafts', 'ingrafting', 'ingrafted', 'ingrafted', tran, ['6A','14'] ). +verb( 'ingratiate', 'ingratiates', 'ingratiating', 'ingratiated', 'ingratiated', tran, ['14'] ). +verb( 'inhabit', 'inhabits', 'inhabiting', 'inhabited', 'inhabited', tran, ['6A'] ). +verb( 'inhale', 'inhales', 'inhaling', 'inhaled', 'inhaled', _, ['2A','6A'] ). +verb( 'inherit', 'inherits', 'inheriting', 'inherited', 'inherited', _, ['2A','6A'] ). +verb( 'inhibit', 'inhibits', 'inhibiting', 'inhibited', 'inhibited', tran, ['6A','14'] ). +verb( 'initial', 'initials', 'initialling', 'initialled', 'initialled', tran, ['6A'] ). +verb( 'initiate', 'initiates', 'initiating', 'initiated', 'initiated', tran, ['6A','14'] ). +verb( 'inject', 'injects', 'injecting', 'injected', 'injected', tran, ['6A','14'] ). +verb( 'injure', 'injures', 'injuring', 'injured', 'injured', tran, ['6A'] ). +verb( 'ink', 'inks', 'inking', 'inked', 'inked', tran, ['6A','15B'] ). +verb( 'inlay', 'inlays', 'inlaying', 'inlaid', 'inlaid', tran, ['6A','14'] ). +verb( 'innovate', 'innovates', 'innovating', 'innovated', 'innovated', intran, ['2A'] ). +verb( 'inoculate', 'inoculates', 'inoculating', 'inoculated', 'inoculated', tran, ['6A','14'] ). +verb( 'inquire', 'inquires', 'inquiring', 'inquired', 'inquired', _, ['2A','3A','6A','8','10','14'] ). +verb( 'inscribe', 'inscribes', 'inscribing', 'inscribed', 'inscribed', tran, ['6A','15A'] ). +verb( 'inseminate', 'inseminates', 'inseminating', 'inseminated', 'inseminated', tran, ['6A'] ). +verb( 'insert', 'inserts', 'inserting', 'inserted', 'inserted', tran, ['6A','15A'] ). +verb( 'inset', 'insets', 'insetting', 'inset', 'inset', tran, [] ). +verb( 'insinuate', 'insinuates', 'insinuating', 'insinuated', 'insinuated', tran, ['6A','9','14'] ). +verb( 'insist', 'insists', 'insisting', 'insisted', 'insisted', _, ['3A','3B'] ). +verb( 'inspan', 'inspans', 'inspanning', 'inspanned', 'inspanned', tran, [] ). +verb( 'inspect', 'inspects', 'inspecting', 'inspected', 'inspected', tran, ['6A'] ). +verb( 'inspire', 'inspires', 'inspiring', 'inspired', 'inspired', tran, ['6A','14','17'] ). +verb( 'install', 'installs', 'installing', 'installed', 'installed', tran, ['6A','14'] ). +verb( 'instance', 'instances', 'instancing', 'instanced', 'instanced', tran, ['6A'] ). +verb( 'instigate', 'instigates', 'instigating', 'instigated', 'instigated', tran, ['6A','17'] ). +verb( 'instil', 'instils', 'instilling', 'instilled', 'instilled', tran, ['6A','14'] ). +verb( 'institute', 'institutes', 'instituting', 'instituted', 'instituted', tran, ['6A','14'] ). +verb( 'institutionalize', 'institutionalizes', 'institutionalizing', 'institutionalized', 'institutionalized', tran, ['6A'] ). +verb( 'instruct', 'instructs', 'instructing', 'instructed', 'instructed', tran, ['6A','11','15A','17','20','21'] ). +verb( 'insulate', 'insulates', 'insulating', 'insulated', 'insulated', tran, ['6A','14'] ). +verb( 'insult', 'insults', 'insulting', 'insulted', 'insulted', tran, ['6A'] ). +verb( 'insure', 'insures', 'insuring', 'insured', 'insured', tran, ['6A','14'] ). +verb( 'integrate', 'integrates', 'integrating', 'integrated', 'integrated', tran, ['2A','6A'] ). +verb( 'intend', 'intends', 'intending', 'intended', 'intended', tran, ['6A','6D','7A','9','14','17'] ). +verb( 'intensify', 'intensifies', 'intensifying', 'intensified', 'intensified', _, ['2A','6A'] ). +verb( 'inter', 'inters', 'interring', 'interred', 'interred', tran, [] ). +verb( 'interact', 'interacts', 'interacting', 'interacted', 'interacted', intran, [] ). +verb( 'interbreed', 'interbreeds', 'interbreeding', 'interbred', 'interbred', _, ['2A','6A'] ). +verb( 'intercede', 'intercedes', 'interceding', 'interceded', 'interceded', intran, ['3A'] ). +verb( 'intercept', 'intercepts', 'intercepting', 'intercepted', 'intercepted', tran, ['6A'] ). +verb( 'interchange', 'interchanges', 'interchanging', 'interchanged', 'interchanged', tran, ['2A','6A'] ). +verb( 'intercommunicate', 'intercommunicates', 'intercommunicating', 'intercommunicated', 'intercommunicated', intran, [] ). +verb( 'interconnect', 'interconnects', 'interconnecting', 'interconnected', 'interconnected', _, ['6A'] ). +verb( 'interdict', 'interdicts', 'interdicting', 'interdicted', 'interdicted', tran, ['6A'] ). +verb( 'interest', 'interests', 'interesting', 'interested', 'interested', tran, ['6A','14'] ). +verb( 'interfere', 'interferes', 'interfering', 'interfered', 'interfered', intran, ['2A','3A'] ). +verb( 'interject', 'interjects', 'interjecting', 'interjected', 'interjected', tran, ['6A'] ). +verb( 'interlace', 'interlaces', 'interlacing', 'interlaced', 'interlaced', _, ['2A','6A','14'] ). +verb( 'interlard', 'interlards', 'interlarding', 'interlarded', 'interlarded', tran, ['14'] ). +verb( 'interleave', 'interleaves', 'interleaving', 'interleaved', 'interleaved', tran, ['6A','14'] ). +verb( 'interlink', 'interlinks', 'interlinking', 'interlinked', 'interlinked', _, ['2A','6A'] ). +verb( 'interlock', 'interlocks', 'interlocking', 'interlocked', 'interlocked', _, ['2A','6A'] ). +verb( 'intermarry', 'intermarries', 'intermarrying', 'intermarried', 'intermarried', intran, ['2A','3A'] ). +verb( 'intermingle', 'intermingles', 'intermingling', 'intermingled', 'intermingled', _, ['6A','14'] ). +verb( 'intermix', 'intermixes', 'intermixing', 'intermixed', 'intermixed', _, [] ). +verb( 'intern', 'interns', 'interning', 'interned', 'interned', tran, ['6A'] ). +verb( 'internalize', 'internalizes', 'internalizing', 'internalized', 'internalized', tran, ['6A'] ). +verb( 'internationalize', 'internationalizes', 'internationalizing', 'internationalized', 'internationalized', tran, ['6A'] ). +verb( 'interpellate', 'interpellates', 'interpellating', 'interpellated', 'interpellated', tran, ['6A'] ). +verb( 'interpolate', 'interpolates', 'interpolating', 'interpolated', 'interpolated', tran, ['6A'] ). +verb( 'interpose', 'interposes', 'interposing', 'interposed', 'interposed', _, ['2A','3A','6A','14'] ). +verb( 'interpret', 'interprets', 'interpreting', 'interpreted', 'interpreted', _, ['2A','6A','16B'] ). +verb( 'interrelate', 'interrelates', 'interrelating', 'interrelated', 'interrelated', _, ['2A','6A'] ). +verb( 'interrogate', 'interrogates', 'interrogating', 'interrogated', 'interrogated', tran, ['6A'] ). +verb( 'interrupt', 'interrupts', 'interrupting', 'interrupted', 'interrupted', _, ['2A','6A'] ). +verb( 'intersect', 'intersects', 'intersecting', 'intersected', 'intersected', _, ['2A','6A'] ). +verb( 'intersperse', 'intersperses', 'interspersing', 'interspersed', 'interspersed', tran, ['14'] ). +verb( 'intertwine', 'intertwines', 'intertwining', 'intertwined', 'intertwined', _, ['2A','6A'] ). +verb( 'intervene', 'intervenes', 'intervening', 'intervened', 'intervened', intran, ['2A','3A'] ). +verb( 'interview', 'interviews', 'interviewing', 'interviewed', 'interviewed', tran, ['6A'] ). +verb( 'interweave', 'interweaves', 'interweaving', 'interwove', 'interwoven', tran, ['6A','14'] ). +verb( 'intimate', 'intimates', 'intimating', 'intimated', 'intimated', tran, ['6A','9','14'] ). +verb( 'intimidate', 'intimidates', 'intimidating', 'intimidated', 'intimidated', tran, ['6A','14'] ). +verb( 'intone', 'intones', 'intoning', 'intoned', 'intoned', _, ['2A','6A'] ). +verb( 'intoxicate', 'intoxicates', 'intoxicating', 'intoxicated', 'intoxicated', tran, ['6A'] ). +verb( 'intrench', 'intrenches', 'intrenching', 'intrenched', 'intrenched', tran, ['6A'] ). +verb( 'intrigue', 'intrigues', 'intriguing', 'intrigued', 'intrigued', _, ['2A','3A','6A'] ). +verb( 'introduce', 'introduces', 'introducing', 'introduced', 'introduced', tran, ['6A','14','15A'] ). +verb( 'introspect', 'introspects', 'introspecting', 'introspected', 'introspected', intran, ['2A'] ). +verb( 'introvert', 'introverts', 'introverting', 'introverted', 'introverted', tran, ['6A'] ). +verb( 'intrude', 'intrudes', 'intruding', 'intruded', 'intruded', _, ['2A','3A','14'] ). +verb( 'intrust', 'intrusts', 'intrusting', 'intrusted', 'intrusted', tran, ['14'] ). +verb( 'intuit', 'intuits', 'intuiting', 'intuited', 'intuited', _, ['2A','6A'] ). +verb( 'inundate', 'inundates', 'inundating', 'inundated', 'inundated', tran, ['6A','14'] ). +verb( 'inure', 'inures', 'inuring', 'inured', 'inured', tran, ['14'] ). +verb( 'invade', 'invades', 'invading', 'invaded', 'invaded', tran, ['6A'] ). +verb( 'invalid', 'invalids', 'invaliding', 'invalided', 'invalided', tran, ['15A'] ). +verb( 'invalidate', 'invalidates', 'invalidating', 'invalidated', 'invalidated', tran, ['6A'] ). +verb( 'inveigh', 'inveighs', 'inveighing', 'inveighed', 'inveighed', intran, ['3A'] ). +verb( 'inveigle', 'inveigles', 'inveigling', 'inveigled', 'inveigled', tran, ['14'] ). +verb( 'invent', 'invents', 'inventing', 'invented', 'invented', tran, ['6A'] ). +verb( 'invert', 'inverts', 'inverting', 'inverted', 'inverted', tran, ['6A'] ). +verb( 'invest', 'invests', 'investing', 'invested', 'invested', _, ['3A','6A','14'] ). +verb( 'investigate', 'investigates', 'investigating', 'investigated', 'investigated', tran, ['6A'] ). +verb( 'invigilate', 'invigilates', 'invigilating', 'invigilated', 'invigilated', intran, ['2A','6A'] ). +verb( 'invigorate', 'invigorates', 'invigorating', 'invigorated', 'invigorated', tran, ['6A'] ). +verb( 'invite', 'invites', 'inviting', 'invited', 'invited', tran, ['6A','15A','15B','17'] ). +verb( 'invoice', 'invoices', 'invoicing', 'invoiced', 'invoiced', tran, [] ). +verb( 'invoke', 'invokes', 'invoking', 'invoked', 'invoked', tran, ['6A','14'] ). +verb( 'involve', 'involves', 'involving', 'involved', 'involved', tran, ['6A','6B','14','19C'] ). +verb( 'ionize', 'ionizes', 'ionizing', 'ionized', 'ionized', _, ['2A','6A'] ). +verb( 'irk', 'irks', 'irking', 'irked', 'irked', tran, [] ). +verb( 'iron', 'irons', 'ironing', 'ironed', 'ironed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'irradiate', 'irradiates', 'irradiating', 'irradiated', 'irradiated', tran, ['6A'] ). +verb( 'irrigate', 'irrigates', 'irrigating', 'irrigated', 'irrigated', tran, ['6A'] ). +verb( 'irritate', 'irritates', 'irritating', 'irritated', 'irritated', tran, ['6A'] ). +verb( 'isolate', 'isolates', 'isolating', 'isolated', 'isolated', tran, ['6A','14'] ). +verb( 'issue', 'issues', 'issuing', 'issued', 'issued', _, ['2A','3A','6A','14'] ). +verb( 'italicize', 'italicizes', 'italicizing', 'italicized', 'italicized', tran, [] ). +verb( 'itch', 'itches', 'itching', 'itched', 'itched', intran, ['2A','3A','4A'] ). +verb( 'itemize', 'itemizes', 'itemizing', 'itemized', 'itemized', tran, ['6A'] ). +verb( 'iterate', 'iterates', 'iterating', 'iterated', 'iterated', tran, ['6A'] ). +verb( 'jab', 'jabs', 'jabbing', 'jabbed', 'jabbed', _, ['3A','14','15B'] ). +verb( 'jabber', 'jabbers', 'jabbering', 'jabbered', 'jabbered', _, ['2A','2C','6A','15B'] ). +verb( 'jack', 'jacks', 'jacking', 'jacked', 'jacked', tran, ['15B'] ). +verb( 'jack-knife', 'jack-knifes', 'jack-knifing', 'jack-knifed', 'jack-knifed', intran, ['2A'] ). +verb( 'jag', 'jags', 'jagging', 'jagged', 'jagged', tran, ['6A'] ). +verb( 'jail', 'jails', 'jailing', 'jailed', 'jailed', tran, ['6A'] ). +verb( 'jam', 'jams', 'jamming', 'jammed', 'jammed', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'jampack', 'jampacks', 'jampacking', 'jampacked', 'jampacked', tran, ['6A'] ). +verb( 'jangle', 'jangles', 'jangling', 'jangled', 'jangled', _, ['2A','6A'] ). +verb( 'japan', 'japans', 'japanning', 'japanned', 'japanned', tran, [] ). +verb( 'jar', 'jars', 'jarring', 'jarred', 'jarred', _, ['2A','3A','6A'] ). +verb( 'jaundice', 'jaundices', 'jaundicing', 'jaundiced', 'jaundiced', tran, [] ). +verb( 'jaunt', 'jaunts', 'jaunting', 'jaunted', 'jaunted', intran, ['2A','2C'] ). +verb( 'jaw', 'jaws', 'jawing', 'jawed', 'jawed', intran, ['2A','2C','3A'] ). +verb( 'jaywalk', 'jaywalks', 'jaywalking', 'jaywalked', 'jaywalked', intran, [] ). +verb( 'jazz', 'jazzes', 'jazzing', 'jazzed', 'jazzed', tran, ['6A','15B'] ). +verb( 'jeer', 'jeers', 'jeering', 'jeered', 'jeered', _, ['2A','3A','6A'] ). +verb( 'jell', 'jells', 'jelling', 'jelled', 'jelled', _, ['2A','6A'] ). +verb( 'jelly', 'jellies', 'jellying', 'jellied', 'jellied', _, ['2A','6A'] ). +verb( 'jeopardize', 'jeopardizes', 'jeopardizing', 'jeopardized', 'jeopardized', tran, ['6A'] ). +verb( 'jerk', 'jerks', 'jerking', 'jerked', 'jerked', _, ['2C','6A','15A','15B'] ). +verb( 'jest', 'jests', 'jesting', 'jested', 'jested', intran, ['2A','3A'] ). +verb( 'jet', 'jets', 'jetting', 'jetted', 'jetted', _, [] ). +verb( 'jettison', 'jettisons', 'jettisoning', 'jettisoned', 'jettisoned', tran, ['6A'] ). +verb( 'jewel', 'jewels', 'jewelling', 'jewelled', 'jewelled', tran, [] ). +verb( 'jib', 'jibs', 'jibbing', 'jibbed', 'jibbed', intran, ['2A','3A'] ). +verb( 'jibe', 'jibes', 'jibing', 'jibed', 'jibed', intran, ['2A','3A'] ). +verb( 'jig', 'jigs', 'jigging', 'jigged', 'jigged', _, ['2A','2C','15B'] ). +verb( 'jiggle', 'jiggles', 'jiggling', 'jiggled', 'jiggled', _, [] ). +verb( 'jilt', 'jilts', 'jilting', 'jilted', 'jilted', tran, ['6A'] ). +verb( 'jingle', 'jingles', 'jingling', 'jingled', 'jingled', _, ['2A','2C','6A','15B'] ). +verb( 'jive', 'jives', 'jiving', 'jived', 'jived', intran, [] ). +verb( 'job', 'jobs', 'jobbing', 'jobbed', 'jobbed', _, ['2A','6A','14'] ). +verb( 'jockey', 'jockeys', 'jockeying', 'jockeyed', 'jockeyed', _, ['3A','15A'] ). +verb( 'jog', 'jogs', 'jogging', 'jogged', 'jogged', _, ['2A','2C','6A','15B'] ). +verb( 'joggle', 'joggles', 'joggling', 'joggled', 'joggled', _, ['2A','6A'] ). +verb( 'join', 'joins', 'joining', 'joined', 'joined', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'joint', 'joints', 'jointing', 'jointed', 'jointed', tran, ['6A'] ). +verb( 'joke', 'jokes', 'joking', 'joked', 'joked', intran, ['2A','2C'] ). +verb( 'jolly', 'jollies', 'jollying', 'jollied', 'jollied', tran, ['6A','15A','15B'] ). +verb( 'jolt', 'jolts', 'jolting', 'jolted', 'jolted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'jostle', 'jostles', 'jostling', 'jostled', 'jostled', _, ['2C','6A'] ). +verb( 'jot', 'jots', 'jotting', 'jotted', 'jotted', tran, ['15B'] ). +verb( 'journey', 'journeys', 'journeying', 'journeyed', 'journeyed', intran, ['2A','2C'] ). +verb( 'joust', 'jousts', 'jousting', 'jousted', 'jousted', intran, [] ). +verb( 'joy', 'joys', 'joying', 'joyed', 'joyed', intran, [] ). +verb( 'judder', 'judders', 'juddering', 'juddered', 'juddered', intran, [] ). +verb( 'judge', 'judges', 'judging', 'judged', 'judged', _, ['2A','3A','6A','9','10','22','25'] ). +verb( 'jug', 'jugs', 'jugging', 'jugged', 'jugged', tran, ['6A'] ). +verb( 'juggle', 'juggles', 'juggling', 'juggled', 'juggled', _, ['2A','3A','6A','16A'] ). +verb( 'jumble', 'jumbles', 'jumbling', 'jumbled', 'jumbled', _, ['2C','15B'] ). +verb( 'jump', 'jumps', 'jumping', 'jumped', 'jumped', _, ['2A','2C','6A'] ). +verb( 'junket', 'junkets', 'junketing', 'junketed', 'junketed', intran, [] ). +verb( 'justify', 'justifies', 'justifying', 'justified', 'justified', tran, ['6A','19C'] ). +verb( 'jut', 'juts', 'jutting', 'jutted', 'jutted', intran, ['2C'] ). +verb( 'juxtapose', 'juxtaposes', 'juxtaposing', 'juxtaposed', 'juxtaposed', tran, ['6A'] ). +verb( 'keel', 'keels', 'keeling', 'keeled', 'keeled', _, ['2C','6A','15B'] ). +verb( 'keen', 'keens', 'keening', 'keened', 'keened', _, [] ). +verb( 'keep', 'keeps', 'keeping', 'kept', 'kept', _, ['2A','2C','2E','3A','6A','14','15A','15B','19B','22'] ). +verb( 'ken', 'kens', 'kenning', 'kenned', 'kenned', tran, ['6A','9'] ). +verb( 'kennel', 'kennels', 'kennelling', 'kennelled', 'kennelled', _, [] ). +verb( 'key', 'keys', 'keying', 'keyed', 'keyed', tran, ['6A'] ). +verb( 'kick', 'kicks', 'kicking', 'kicked', 'kicked', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'kid', 'kids', 'kidding', 'kidded', 'kidded', _, [] ). +verb( 'kidnap', 'kidnaps', 'kidnapping', 'kidnapped', 'kidnapped', tran, [] ). +verb( 'kill', 'kills', 'killing', 'killed', 'killed', _, ['2A','6A','15B'] ). +verb( 'kindle', 'kindles', 'kindling', 'kindled', 'kindled', _, ['2A','6A'] ). +verb( 'kink', 'kinks', 'kinking', 'kinked', 'kinked', _, [] ). +verb( 'kip', 'kips', 'kipping', 'kipped', 'kipped', intran, ['2A','2C'] ). +verb( 'kiss', 'kisses', 'kissing', 'kissed', 'kissed', _, ['2A','6A','15A','15B'] ). +verb( 'kit', 'kits', 'kitting', 'kitted', 'kitted', tran, ['15B'] ). +verb( 'knap', 'knaps', 'knapping', 'knapped', 'knapped', tran, [] ). +verb( 'knead', 'kneads', 'kneading', 'kneaded', 'kneaded', tran, ['6A'] ). +verb( 'kneel', 'kneels', 'kneeling', 'kneeled', 'kneeled', intran, ['2A','2C'] ). +verb( 'knife', 'knifes', 'knifing', 'knifed', 'knifed', tran, ['6A'] ). +verb( 'knight', 'knights', 'knighting', 'knighted', 'knighted', tran, ['6A'] ). +verb( 'knit', 'knits', 'knitting', 'knitted', 'knitted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'knock', 'knocks', 'knocking', 'knocked', 'knocked', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'knot', 'knots', 'knotting', 'knotted', 'knotted', _, ['2A','6A','15B'] ). +verb( 'know', 'knows', 'knowing', 'knew', 'known', _, ['2A','3A','6A','8','9','10','17','18B','25'] ). +verb( 'knuckle', 'knuckles', 'knuckling', 'knuckled', 'knuckled', intran, [] ). +verb( 'kotow', 'kotows', 'kotowing', 'kotowed', 'kotowed', intran, [] ). +verb( 'kowtow', 'kowtows', 'kowtowing', 'kowtowed', 'kowtowed', intran, [] ). +verb( 'label', 'labels', 'labelling', 'labelled', 'labelled', tran, ['6A'] ). +verb( 'labour', 'labours', 'labouring', 'laboured', 'laboured', _, ['2A','2C','3A','4A','6A'] ). +verb( 'lace', 'laces', 'lacing', 'laced', 'laced', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'lacerate', 'lacerates', 'lacerating', 'lacerated', 'lacerated', tran, ['6A'] ). +verb( 'lack', 'lacks', 'lacking', 'lacked', 'lacked', _, ['3A','6B'] ). +verb( 'lacquer', 'lacquers', 'lacquering', 'lacquered', 'lacquered', tran, ['6A'] ). +verb( 'ladder', 'ladders', 'laddering', 'laddered', 'laddered', intran, [] ). +verb( 'lade', 'lades', 'lading', 'laded', 'laden', tran, ['6A'] ). +verb( 'ladle', 'ladles', 'ladling', 'ladled', 'ladled', tran, ['6A','15B'] ). +verb( 'lag', 'lags', 'lagging', 'lagged', 'lagged', _, ['2A','2C','6A','14'] ). +verb( 'laicize', 'laicizes', 'laicizing', 'laicized', 'laicized', tran, ['6A'] ). +verb( 'lam', 'lams', 'lamming', 'lammed', 'lammed', _, ['3A','6A'] ). +verb( 'lamb', 'lambs', 'lambing', 'lambed', 'lambed', intran, [] ). +verb( 'lambaste', 'lambastes', 'lambasting', 'lambasted', 'lambasted', tran, [] ). +verb( 'lame', 'lames', 'laming', 'lamed', 'lamed', tran, [] ). +verb( 'lament', 'laments', 'lamenting', 'lamented', 'lamented', _, ['2A','3A','6A'] ). +verb( 'laminate', 'laminates', 'laminating', 'laminated', 'laminated', _, ['2A','6A'] ). +verb( 'lampoon', 'lampoons', 'lampooning', 'lampooned', 'lampooned', tran, ['6A'] ). +verb( 'lance', 'lances', 'lancing', 'lanced', 'lanced', tran, ['6A'] ). +verb( 'land', 'lands', 'landing', 'landed', 'landed', _, ['2A','2C','6A','12C'] ). +verb( 'landscape', 'landscapes', 'landscaping', 'landscaped', 'landscaped', tran, ['6A'] ). +verb( 'languish', 'languishes', 'languishing', 'languished', 'languished', intran, ['2A','2C'] ). +verb( 'lap', 'laps', 'lapping', 'lapped', 'lapped', _, ['2A','2C','6A','15B'] ). +verb( 'lapse', 'lapses', 'lapsing', 'lapsed', 'lapsed', intran, ['2A','3A'] ). +verb( 'lard', 'lards', 'larding', 'larded', 'larded', tran, ['6A'] ). +verb( 'lark', 'larks', 'larking', 'larked', 'larked', intran, ['2A','2C'] ). +verb( 'larn', 'larns', 'larning', 'larned', 'larned', _, [] ). +verb( 'lash', 'lashes', 'lashing', 'lashed', 'lashed', _, ['2C','6A','14','15A','15B'] ). +verb( 'lasso', 'lassos', 'lassoing', 'lassoed', 'lassoed', tran, [] ). +verb( 'last', 'lasts', 'lasting', 'lasted', 'lasted', intran, ['2A','2B','2C'] ). +verb( 'latch', 'latches', 'latching', 'latched', 'latched', _, ['2A','2C','3A','6A'] ). +verb( 'lather', 'lathers', 'lathering', 'lathered', 'lathered', _, ['2A','6A'] ). +verb( 'laud', 'lauds', 'lauding', 'lauded', 'lauded', tran, ['6A'] ). +verb( 'laugh', 'laughs', 'laughing', 'laughed', 'laughed', _, ['2A','2B','2C','3A','6B','15A','15B','22'] ). +verb( 'launch', 'launches', 'launching', 'launched', 'launched', _, ['2C','3A','6A','15A'] ). +verb( 'launder', 'launders', 'laundering', 'laundered', 'laundered', _, ['2A','6A'] ). +verb( 'lave', 'laves', 'laving', 'laved', 'laved', tran, [] ). +verb( 'lavish', 'lavishes', 'lavishing', 'lavished', 'lavished', tran, ['14'] ). +verb( 'lay', 'lays', 'laying', 'laid', 'laid', _, ['2A','2B','2C','2D','3A','6A','12C','14','15A','15B','22'] ). +verb( 'layer', 'layers', 'layering', 'layered', 'layered', tran, ['6A'] ). +verb( 'laze', 'lazes', 'lazing', 'lazed', 'lazed', _, ['2A','2C','15B'] ). +verb( 'leach', 'leaches', 'leaching', 'leached', 'leached', tran, ['6A','15B'] ). +verb( 'lead', 'leads', 'leading', 'leant', 'leant', _, ['2A','2C','3A','6A','12C','14','15A','15B','17'] ). +verb( 'leaf', 'leafs', 'leafing', 'leafed', 'leafed', intran, [] ). +verb( 'league', 'leagues', 'leaguing', 'leagued', 'leagued', _, ['2C','6A','15A','15B'] ). +verb( 'leak', 'leaks', 'leaking', 'leaked', 'leaked', _, ['2A','2C','6A','14'] ). +verb( 'lean', 'leans', 'leaning', 'leaned', 'leaned', _, ['2A','2C','3A','15A'] ). +verb( 'leap', 'leaps', 'leaping', 'leaped', 'leaped', _, ['2A','2C','3A','6A','15A'] ). +verb( 'leapfrog', 'leapfrogs', 'leapfrogging', 'leapfrogged', 'leapfrogged', tran, [] ). +verb( 'learn', 'learns', 'learning', 'learned', 'learned', _, ['2A','3A','6A','7A','8','9','10','15A','15B'] ). +verb( 'lease', 'leases', 'leasing', 'leased', 'leased', tran, ['6A'] ). +verb( 'leave', 'leaves', 'leavening', 'leavened', 'leavened', _, ['2A','2C','3A','6A','12B','13B','14','15A','15B','16A','19B','22','24B','25'] ). +verb( 'leaven', 'leavens', 'leavening', 'leavened', 'leavened', tran, ['6A'] ). +verb( 'lecture', 'lectures', 'lecturing', 'lectured', 'lectured', _, ['2A','3A','6A','14'] ). +verb( 'leer', 'leers', 'leering', 'leered', 'leered', intran, ['2A','3A'] ). +verb( 'legalize', 'legalizes', 'legalizing', 'legalized', 'legalized', tran, ['6A'] ). +verb( 'legislate', 'legislates', 'legislating', 'legislated', 'legislated', intran, ['2A','3A'] ). +verb( 'legitimatize', 'legitimatizes', 'legitimatizing', 'legitimatized', 'legitimatized', tran, [] ). +verb( 'lend', 'lends', 'lending', 'lent', 'lent', tran, ['6A','12A','13A','14'] ). +verb( 'lengthen', 'lengthens', 'lengthening', 'lengthened', 'lengthened', _, ['2A','6A'] ). +verb( 'lessen', 'lessens', 'lessening', 'lessened', 'lessened', _, ['2A','6A'] ). +verb( 'let', 'lets', 'letting', 'let', 'let', _, ['2C','6A','14','15A','15B','18B','22','24A'] ). +verb( 'levant', 'levants', 'levanting', 'levanted', 'levanted', intran, [] ). +verb( 'level', 'levels', 'levelling', 'levelled', 'levelled', _, ['2C','3A','6A','14','15A','15B'] ). +verb( 'lever', 'levers', 'levering', 'levered', 'levered', tran, ['6A','15B'] ). +verb( 'levitate', 'levitates', 'levitating', 'levitated', 'levitated', _, ['2A','6A'] ). +verb( 'levy', 'levies', 'levying', 'levied', 'levied', _, ['3A','6A','14'] ). +verb( 'liaise', 'liaises', 'liaising', 'liaised', 'liaised', intran, ['2A','3A'] ). +verb( 'libel', 'libels', 'libelling', 'libelled', 'libelled', tran, ['6A'] ). +verb( 'liberalize', 'liberalizes', 'liberalizing', 'liberalized', 'liberalized', tran, [] ). +verb( 'liberate', 'liberates', 'liberating', 'liberated', 'liberated', tran, ['6A','14'] ). +verb( 'licence', 'licences', 'licencing', 'licenced', 'licenced', tran, ['6A','17'] ). +verb( 'license', 'licenses', 'licensing', 'licensed', 'licensed', tran, ['6A','17'] ). +verb( 'lick', 'licks', 'licking', 'licked', 'licked', _, ['2A','6A','15A','15B','22'] ). +verb( 'lie', 'lies', 'lying', 'lay', 'lain', intran, ['2A','2C','2D','3A'] ). +verb( 'lie', 'lies', 'lying', 'lied', 'lied', intran, ['2A','2C','2D','3A'] ). +verb( 'lift', 'lifts', 'lifting', 'lifted', 'lifted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'light', 'lights', 'lighting', 'lighted', 'lighted', _, ['2C','3A','6A','15A','15B'] ). +verb( 'lighten', 'lightens', 'lightening', 'lightened', 'lightened', _, ['2A','6A'] ). +verb( 'lighter', 'lighters', 'lightering', 'lightered', 'lightered', tran, [] ). +verb( 'like', 'likes', 'liking', 'liked', 'liked', tran, ['6A','6D','7A','17','19B','19C','22'] ). +verb( 'liken', 'likens', 'likening', 'likened', 'likened', tran, ['14'] ). +verb( 'lilt', 'lilts', 'lilting', 'lilted', 'lilted', _, [] ). +verb( 'limber', 'limbers', 'limbering', 'limbered', 'limbered', _, ['2C','15B'] ). +verb( 'lime', 'limes', 'liming', 'limed', 'limed', tran, ['6A'] ). +verb( 'limit', 'limits', 'limiting', 'limited', 'limited', tran, ['6A','14'] ). +verb( 'limn', 'limns', 'limning', 'limned', 'limned', tran, [] ). +verb( 'limp', 'limps', 'limping', 'limped', 'limped', intran, ['2A','2C'] ). +verb( 'line', 'lines', 'lining', 'lined', 'lined', _, ['2C','6A','14','15B'] ). +verb( 'linger', 'lingers', 'lingering', 'lingered', 'lingered', intran, ['2A','2C'] ). +verb( 'link', 'links', 'linking', 'linked', 'linked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'lionize', 'lionizes', 'lionizing', 'lionized', 'lionized', tran, ['6A'] ). +verb( 'lip-read', 'lip-reads', 'lip-reading', 'lip-read', 'lip-read', tran, [] ). +verb( 'liquefy', 'liquefies', 'liquefying', 'liquefied', 'liquefied', _, ['2A','6A'] ). +verb( 'liquidate', 'liquidates', 'liquidating', 'liquidated', 'liquidated', _, ['2A','6A'] ). +verb( 'liquidize', 'liquidizes', 'liquidizing', 'liquidized', 'liquidized', tran, ['6A'] ). +verb( 'lisp', 'lisps', 'lisping', 'lisped', 'lisped', _, ['2A','6A','15B'] ). +verb( 'list', 'lists', 'listing', 'listed', 'listed', _, ['2A','2C','6A'] ). +verb( 'listen', 'listens', 'listening', 'listened', 'listened', intran, ['2A','2C','3A'] ). +verb( 'lithograph', 'lithographs', 'lithographing', 'lithographed', 'lithographed', _, [] ). +verb( 'litigate', 'litigates', 'litigating', 'litigated', 'litigated', _, ['2A','6A'] ). +verb( 'litter', 'litters', 'littering', 'littered', 'littered', _, ['2A','6A','14','15A','15B'] ). +verb( 'live', 'lives', 'living', 'lived', 'lived', _, ['2A','2B','2C','2D','3A','4A','6B','15B'] ). +verb( 'liven', 'livens', 'livening', 'livened', 'livened', _, ['2C','15B'] ). +verb( 'load', 'loads', 'loading', 'loaded', 'loaded', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'loaf', 'loafs', 'loafing', 'loafed', 'loafed', _, ['2A','2C','15A','15B'] ). +verb( 'loan', 'loans', 'loaning', 'loaned', 'loaned', tran, ['6A','14'] ). +verb( 'loathe', 'loathes', 'loathing', 'loathed', 'loathed', tran, ['6A','6C'] ). +verb( 'lob', 'lobs', 'lobbing', 'lobbed', 'lobbed', _, ['2C','6A','15A'] ). +verb( 'lobby', 'lobbies', 'lobbying', 'lobbied', 'lobbied', _, ['2A','2C','6A','15A'] ). +verb( 'localize', 'localizes', 'localizing', 'localized', 'localized', tran, ['6A'] ). +verb( 'locate', 'locates', 'locating', 'located', 'located', tran, ['6A','15A'] ). +verb( 'lock', 'locks', 'locking', 'locked', 'locked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'lodge', 'lodges', 'lodging', 'lodged', 'lodged', _, ['3A','6A','14','15A'] ). +verb( 'loft', 'lofts', 'lofting', 'lofted', 'lofted', tran, ['6A'] ). +verb( 'log', 'logs', 'logging', 'logged', 'logged', tran, ['6A'] ). +verb( 'loiter', 'loiters', 'loitering', 'loitered', 'loitered', _, ['2A','2C','15B'] ). +verb( 'loll', 'lolls', 'lolling', 'lolled', 'lolled', _, ['2A','2C','15B'] ). +verb( 'long', 'longs', 'longing', 'longed', 'longed', intran, ['3A','4C'] ). +verb( 'look', 'looks', 'looking', 'looked', 'looked', _, ['2A','2C','2D','3A','4A','4D','6A','8','15B'] ). +verb( 'loom', 'looms', 'looming', 'loomed', 'loomed', intran, ['2C','2D'] ). +verb( 'loop', 'loops', 'looping', 'looped', 'looped', _, ['2A','6A','15B'] ). +verb( 'loose', 'looses', 'loosing', 'loosed', 'loosed', tran, ['6A'] ). +verb( 'loosen', 'loosens', 'loosening', 'loosened', 'loosened', _, ['2A','6A','15B'] ). +verb( 'loot', 'loots', 'looting', 'looted', 'looted', _, ['2A','6A'] ). +verb( 'lop', 'lops', 'lopping', 'lopped', 'lopped', _, ['6A','15B'] ). +verb( 'lope', 'lopes', 'loping', 'loped', 'loped', intran, ['2A','2C'] ). +verb( 'lord', 'lords', 'lording', 'lorded', 'lorded', tran, [] ). +verb( 'lose', 'loses', 'losing', 'lost', 'lost', _, ['2A','2B','3A','6A','12C','15A'] ). +verb( 'lounge', 'lounges', 'lounging', 'lounged', 'lounged', intran, ['2A','2C'] ). +verb( 'lour', 'lours', 'louring', 'loured', 'loured', intran, ['2A','3A'] ). +verb( 'love', 'loves', 'loving', 'loved', 'loved', tran, ['6A','6D','7A','17'] ). +verb( 'low', 'lows', 'lowing', 'lowed', 'lowed', intran, [] ). +verb( 'lower', 'lowers', 'lowering', 'lowered', 'lowered', _, ['2A','6A','15A'] ). +verb( 'lower', 'lowers', 'lowering', 'lowered', 'lowered', intran, ['2A','3A'] ). +verb( 'lubricate', 'lubricates', 'lubricating', 'lubricated', 'lubricated', tran, ['6A'] ). +verb( 'luff', 'luffs', 'luffing', 'luffed', 'luffed', _, [] ). +verb( 'lug', 'lugs', 'lugging', 'lugged', 'lugged', tran, ['6A','15A','15B'] ). +verb( 'lull', 'lulls', 'lulling', 'lulled', 'lulled', _, ['2A','6A','15A'] ). +verb( 'lumber', 'lumbers', 'lumbering', 'lumbered', 'lumbered', _, ['2C','6A','14','15A','15B'] ). +verb( 'lump', 'lumps', 'lumping', 'lumped', 'lumped', tran, ['2A','6A','15B'] ). +verb( 'lunch', 'lunches', 'lunching', 'lunched', 'lunched', _, [] ). +verb( 'lunge', 'lunges', 'lunging', 'lunged', 'lunged', intran, ['2A','2C'] ). +verb( 'lurch', 'lurches', 'lurching', 'lurched', 'lurched', intran, ['2C'] ). +verb( 'lure', 'lures', 'luring', 'lured', 'lured', tran, ['6A','15B'] ). +verb( 'lurk', 'lurks', 'lurking', 'lurked', 'lurked', intran, ['2C'] ). +verb( 'lust', 'lusts', 'lusting', 'lusted', 'lusted', intran, ['3A'] ). +verb( 'luxuriate', 'luxuriates', 'luxuriating', 'luxuriated', 'luxuriated', intran, ['3A'] ). +verb( 'lynch', 'lynches', 'lynching', 'lynched', 'lynched', tran, ['6A'] ). +verb( 'macadamize', 'macadamizes', 'macadamizing', 'macadamized', 'macadamized', tran, [] ). +verb( 'macerate', 'macerates', 'macerating', 'macerated', 'macerated', _, ['2A','6A'] ). +verb( 'machine', 'machines', 'machining', 'machined', 'machined', tran, ['6A'] ). +verb( 'madden', 'maddens', 'maddening', 'maddened', 'maddened', tran, ['6A'] ). +verb( 'maffick', 'mafficks', 'mafficking', 'mafficked', 'mafficked', intran, [] ). +verb( 'magnetize', 'magnetizes', 'magnetizing', 'magnetized', 'magnetized', tran, ['6A'] ). +verb( 'magnify', 'magnifies', 'magnifying', 'magnified', 'magnified', tran, ['6A'] ). +verb( 'mail', 'mails', 'mailing', 'mailed', 'mailed', tran, ['6A'] ). +verb( 'maim', 'maims', 'maiming', 'maimed', 'maimed', tran, ['6A'] ). +verb( 'maintain', 'maintains', 'maintaining', 'maintained', 'maintained', tran, ['6A','9','25'] ). +verb( 'major', 'majors', 'majoring', 'majored', 'majored', intran, ['3A'] ). +verb( 'make', 'makes', 'making', 'made', 'made', _, ['2A','2C','2D','3A','6A','12A','12B','13A','13B','14','15B','16A','18B','22','23','24A','25'] ). +verb( 'malfunction', 'malfunctions', 'malfunctioning', 'malfunctioned', 'malfunctioned', intran, ['2A'] ). +verb( 'malign', 'maligns', 'maligning', 'maligned', 'maligned', tran, ['6A'] ). +verb( 'malinger', 'malingers', 'malingering', 'malingered', 'malingered', intran, ['2A'] ). +verb( 'malt', 'malts', 'malting', 'malted', 'malted', _, ['2A','6A'] ). +verb( 'maltreat', 'maltreats', 'maltreating', 'maltreated', 'maltreated', tran, ['6A'] ). +verb( 'man', 'mans', 'manning', 'manned', 'manned', tran, ['6A'] ). +verb( 'manacle', 'manacles', 'manacling', 'manacled', 'manacled', tran, ['6A'] ). +verb( 'manage', 'manages', 'managing', 'managed', 'managed', _, ['2A','2C','3A','4A','6A'] ). +verb( 'mandate', 'mandates', 'mandating', 'mandated', 'mandated', tran, ['6A'] ). +verb( 'mangle', 'mangles', 'mangling', 'mangled', 'mangled', tran, ['6A'] ). +verb( 'manhandle', 'manhandles', 'manhandling', 'manhandled', 'manhandled', tran, [] ). +verb( 'manicure', 'manicures', 'manicuring', 'manicured', 'manicured', tran, ['6A'] ). +verb( 'manifest', 'manifests', 'manifesting', 'manifested', 'manifested', tran, ['6A'] ). +verb( 'manifold', 'manifolds', 'manifolding', 'manifolded', 'manifolded', tran, ['6A'] ). +verb( 'manipulate', 'manipulates', 'manipulating', 'manipulated', 'manipulated', tran, ['6A'] ). +verb( 'manoeuvre', 'manoeuvres', 'manoeuvring', 'manoeuvred', 'manoeuvred', _, ['2A','2C','6A','15A'] ). +verb( 'mantle', 'mantles', 'mantling', 'mantled', 'mantled', _, ['2C','6A'] ). +verb( 'manufacture', 'manufactures', 'manufacturing', 'manufactured', 'manufactured', tran, ['6A'] ). +verb( 'manumit', 'manumits', 'manumitting', 'manumitted', 'manumitted', tran, [] ). +verb( 'manure', 'manures', 'manuring', 'manured', 'manured', tran, ['6A'] ). +verb( 'map', 'maps', 'mapping', 'mapped', 'mapped', tran, ['6A','15B'] ). +verb( 'mar', 'mars', 'marring', 'marred', 'marred', tran, ['6A'] ). +verb( 'maraud', 'marauds', 'marauding', 'marauded', 'marauded', intran, ['2A'] ). +verb( 'march', 'marches', 'marching', 'marched', 'marched', _, ['2A','2B','2C','3A','15A','15B'] ). +verb( 'marinade', 'marinades', 'marinading', 'marinaded', 'marinaded', tran, [] ). +verb( 'marinate', 'marinates', 'marinating', 'marinated', 'marinated', tran, [] ). +verb( 'mark', 'marks', 'marking', 'marked', 'marked', tran, ['2A','6A','8','10','15A','15B','22'] ). +verb( 'market', 'markets', 'marketing', 'marketed', 'marketed', _, ['2A','6A'] ). +verb( 'maroon', 'maroons', 'marooning', 'marooned', 'marooned', tran, ['6A'] ). +verb( 'marry', 'marries', 'marrying', 'married', 'married', _, ['2A','2D','4A','6A','15B'] ). +verb( 'marshal', 'marshals', 'marshalling', 'marshalled', 'marshalled', tran, ['6A','15A','15B'] ). +verb( 'martyr', 'martyrs', 'martyring', 'martyred', 'martyred', tran, ['6A'] ). +verb( 'marvel', 'marvels', 'marvelling', 'marvelled', 'marvelled', intran, ['3A','3B'] ). +verb( 'mash', 'mashes', 'mashing', 'mashed', 'mashed', tran, ['6A'] ). +verb( 'mask', 'masks', 'masking', 'masked', 'masked', tran, ['6A'] ). +verb( 'masquerade', 'masquerades', 'masquerading', 'masqueraded', 'masqueraded', intran, ['2A','2C'] ). +verb( 'mass', 'masses', 'massing', 'massed', 'massed', _, ['2A','6A'] ). +verb( 'mass-produce', 'mass-produces', 'mass-producing', 'mass-produced', 'mass-produced', tran, [] ). +verb( 'massacre', 'massacres', 'massacring', 'massacred', 'massacred', tran, ['6A'] ). +verb( 'massage', 'massages', 'massaging', 'massaged', 'massaged', tran, ['6A'] ). +verb( 'master', 'masters', 'mastering', 'mastered', 'mastered', tran, ['6A'] ). +verb( 'mastermind', 'masterminds', 'masterminding', 'masterminded', 'masterminded', tran, [] ). +verb( 'masticate', 'masticates', 'masticating', 'masticated', 'masticated', tran, ['6A'] ). +verb( 'masturbate', 'masturbates', 'masturbating', 'masturbated', 'masturbated', _, ['2A','6A'] ). +verb( 'mat', 'mats', 'matting', 'matted', 'matted', _, ['2A','2C','6A','15A'] ). +verb( 'match', 'matches', 'matching', 'matched', 'matched', _, ['2A','6A','12B','13B','14'] ). +verb( 'mate', 'mates', 'mating', 'mated', 'mated', _, ['2A','3A','6A','14'] ). +verb( 'materialize', 'materializes', 'materializing', 'materialized', 'materialized', intran, ['2A','6A'] ). +verb( 'matriculate', 'matriculates', 'matriculating', 'matriculated', 'matriculated', _, ['2A','2C','6A'] ). +verb( 'matter', 'matters', 'mattering', 'mattered', 'mattered', intran, ['2A','2C'] ). +verb( 'maturate', 'maturates', 'maturating', 'maturated', 'maturated', intran, ['2A'] ). +verb( 'mature', 'matures', 'maturing', 'matured', 'matured', _, ['2A','6A'] ). +verb( 'maul', 'mauls', 'mauling', 'mauled', 'mauled', tran, ['6A','15B'] ). +verb( 'maunder', 'maunders', 'maundering', 'maundered', 'maundered', intran, ['2A','2C'] ). +verb( 'maximize', 'maximizes', 'maximizing', 'maximized', 'maximized', tran, ['6A'] ). +verb( 'may', 'may', '-', '-', '-', unknown, ['5'] ). +verb( 'mean', 'means', 'meaning', 'meant', 'meant', tran, ['6A','6A','6C','7A','9','12A','13A','14','16B','17'] ). +verb( 'meander', 'meanders', 'meandering', 'meandered', 'meandered', intran, ['2A','2C'] ). +verb( 'measure', 'measures', 'measuring', 'measured', 'measured', _, ['2A','2B','6A','15A','15B'] ). +verb( 'mechanize', 'mechanizes', 'mechanizing', 'mechanized', 'mechanized', tran, ['6A'] ). +verb( 'meddle', 'meddles', 'meddling', 'meddled', 'meddled', intran, ['2A','3A'] ). +verb( 'mediate', 'mediates', 'mediating', 'mediated', 'mediated', _, ['2A','3A','6A'] ). +verb( 'medicate', 'medicates', 'medicating', 'medicated', 'medicated', tran, ['6A'] ). +verb( 'meditate', 'meditates', 'meditating', 'meditated', 'meditated', _, ['2A','3A','6A'] ). +verb( 'meet', 'meets', 'meeting', 'met', 'met', _, ['2A','2C','6A'] ). +verb( 'meliorate', 'meliorates', 'meliorating', 'meliorated', 'meliorated', _, ['2A','6A'] ). +verb( 'mellow', 'mellows', 'mellowing', 'mellowed', 'mellowed', _, ['2A','6A'] ). +verb( 'melt', 'melts', 'melting', 'melted', 'melted', _, ['2A','2C','6A','15B'] ). +verb( 'memorialize', 'memorializes', 'memorializing', 'memorialized', 'memorialized', tran, ['6A'] ). +verb( 'memorize', 'memorizes', 'memorizing', 'memorized', 'memorized', tran, ['6A'] ). +verb( 'menace', 'menaces', 'menacing', 'menaced', 'menaced', tran, ['6A'] ). +verb( 'mend', 'mends', 'mending', 'mended', 'mended', _, ['2A','6A'] ). +verb( 'menstruate', 'menstruates', 'menstruating', 'menstruated', 'menstruated', intran, ['2A'] ). +verb( 'mention', 'mentions', 'mentioning', 'mentioned', 'mentioned', tran, ['6A','6C','9','13A'] ). +verb( 'mercerize', 'mercerizes', 'mercerizing', 'mercerized', 'mercerized', tran, ['6A'] ). +verb( 'merge', 'merges', 'merging', 'merged', 'merged', _, ['2A','3A','6A','14'] ). +verb( 'merit', 'merits', 'meriting', 'merited', 'merited', tran, ['6A'] ). +verb( 'mesh', 'meshes', 'meshing', 'meshed', 'meshed', _, ['2A','3A','6A'] ). +verb( 'mesmerize', 'mesmerizes', 'mesmerizing', 'mesmerized', 'mesmerized', tran, ['6A'] ). +verb( 'mess', 'messes', 'messing', 'messed', 'messed', _, ['2C','6A','15B'] ). +verb( 'metal', 'metals', 'metalling', 'metalled', 'metalled', tran, ['6A'] ). +verb( 'metamorphose', 'metamorphoses', 'metamorphosing', 'metamorphosed', 'metamorphosed', _, ['3A','6A','14'] ). +verb( 'mete', 'metes', 'meting', 'meted', 'meted', tran, ['15B'] ). +verb( 'metricize', 'metricizes', 'metricizing', 'metricized', 'metricized', tran, [] ). +verb( 'mew', 'mews', 'mewing', 'mewed', 'mewed', intran, ['2A'] ). +verb( 'miaou', 'miaous', 'miaouing', 'miaoued', 'miaoued', intran, [] ). +verb( 'miaow', 'miaows', 'miaowing', 'miaowed', 'miaowed', intran, ['2A'] ). +verb( 'microfilm', 'microfilms', 'microfilming', 'microfilmed', 'microfilmed', tran, ['6A'] ). +verb( 'migrate', 'migrates', 'migrating', 'migrated', 'migrated', intran, ['2A','3A'] ). +verb( 'mildew', 'mildews', 'mildewing', 'mildewed', 'mildewed', _, ['2A','6A'] ). +verb( 'militate', 'militates', 'militating', 'militated', 'militated', intran, ['3A'] ). +verb( 'milk', 'milks', 'milking', 'milked', 'milked', _, ['2A','6A'] ). +verb( 'mill', 'mills', 'milling', 'milled', 'milled', _, ['2C','6A'] ). +verb( 'mime', 'mimes', 'miming', 'mimed', 'mimed', _, ['2A','6A'] ). +verb( 'mimeograph', 'mimeographs', 'mimeographing', 'mimeographed', 'mimeographed', tran, ['6A'] ). +verb( 'mimic', 'mimics', 'mimicking', 'mimicked', 'mimicked', tran, ['6A'] ). +verb( 'mince', 'minces', 'mincing', 'minced', 'minced', _, ['2A','6A'] ). +verb( 'mind', 'minds', 'minding', 'minded', 'minded', _, ['2A','6A','6C','9','19C'] ). +verb( 'mine', 'mines', 'mining', 'mined', 'mined', _, ['2A','3A','6A'] ). +verb( 'mingle', 'mingles', 'mingling', 'mingled', 'mingled', _, ['2A','2C','6A','14'] ). +verb( 'miniaturize', 'miniaturizes', 'miniaturizing', 'miniaturized', 'miniaturized', tran, ['6A'] ). +verb( 'minimize', 'minimizes', 'minimizing', 'minimized', 'minimized', tran, ['6A'] ). +verb( 'minister', 'ministers', 'ministering', 'ministered', 'ministered', intran, ['3A'] ). +verb( 'mint', 'mints', 'minting', 'minted', 'minted', tran, ['6A'] ). +verb( 'minute', 'minutes', 'minuting', 'minuted', 'minuted', tran, ['6A'] ). +verb( 'mire', 'mires', 'miring', 'mired', 'mired', _, ['2A','6A'] ). +verb( 'mirror', 'mirrors', 'mirroring', 'mirrored', 'mirrored', tran, ['6A'] ). +verb( 'misadvise', 'misadvises', 'misadvising', 'misadvised', 'misadvised', tran, ['6A'] ). +verb( 'misapply', 'misapplies', 'misapplying', 'misapplied', 'misapplied', tran, ['6A'] ). +verb( 'misapprehend', 'misapprehends', 'misapprehending', 'misapprehended', 'misapprehended', tran, ['6A'] ). +verb( 'misappropriate', 'misappropriates', 'misappropriating', 'misappropriated', 'misappropriated', tran, ['6A'] ). +verb( 'misbehave', 'misbehaves', 'misbehaving', 'misbehaved', 'misbehaved', _, ['2A','6B'] ). +verb( 'miscalculate', 'miscalculates', 'miscalculating', 'miscalculated', 'miscalculated', _, [] ). +verb( 'miscall', 'miscalls', 'miscalling', 'miscalled', 'miscalled', tran, [] ). +verb( 'miscarry', 'miscarries', 'miscarrying', 'miscarried', 'miscarried', tran, ['2A'] ). +verb( 'miscast', 'miscasts', 'miscasting', 'miscast', 'miscast', tran, ['6A'] ). +verb( 'misconceive', 'misconceives', 'misconceiving', 'misconceived', 'misconceived', _, ['3A','6A'] ). +verb( 'misconduct', 'misconducts', 'misconducting', 'misconducted', 'misconducted', tran, ['6A','6B','14'] ). +verb( 'misconstrue', 'misconstrues', 'misconstruing', 'misconstrued', 'misconstrued', tran, ['6A'] ). +verb( 'miscount', 'miscounts', 'miscounting', 'miscounted', 'miscounted', _, ['2A','6A'] ). +verb( 'misdate', 'misdates', 'misdating', 'misdated', 'misdated', tran, ['6A'] ). +verb( 'misdeal', 'misdeals', 'misdealing', 'misdealt', 'misdealt', _, ['2A','6A'] ). +verb( 'misdirect', 'misdirects', 'misdirecting', 'misdirected', 'misdirected', tran, ['6A'] ). +verb( 'misfire', 'misfires', 'misfiring', 'misfired', 'misfired', intran, ['2A'] ). +verb( 'misgive', 'misgives', 'misgiving', 'misgave', 'misgiven', tran, [] ). +verb( 'misgovern', 'misgoverns', 'misgoverning', 'misgoverned', 'misgoverned', tran, ['6A'] ). +verb( 'misguide', 'misguides', 'misguiding', 'misguided', 'misguided', tran, ['6A','14'] ). +verb( 'mishandle', 'mishandles', 'mishandling', 'mishandled', 'mishandled', tran, [] ). +verb( 'misinform', 'misinforms', 'misinforming', 'misinformed', 'misinformed', tran, ['6A'] ). +verb( 'misinterpret', 'misinterprets', 'misinterpreting', 'misinterpreted', 'misinterpreted', tran, ['6A'] ). +verb( 'misjudge', 'misjudges', 'misjudging', 'misjudged', 'misjudged', _, ['2A','6A'] ). +verb( 'mislay', 'mislays', 'mislaying', 'mislaid', 'mislaid', tran, ['6A'] ). +verb( 'mislead', 'misleads', 'misleading', 'misled', 'misled', tran, ['6A'] ). +verb( 'mismanage', 'mismanages', 'mismanaging', 'mismanaged', 'mismanaged', tran, ['6A'] ). +verb( 'misname', 'misnames', 'misnaming', 'misnamed', 'misnamed', tran, ['6A'] ). +verb( 'misplace', 'misplaces', 'misplacing', 'misplaced', 'misplaced', tran, ['6A'] ). +verb( 'misprint', 'misprints', 'misprinting', 'misprinted', 'misprinted', tran, ['6A'] ). +verb( 'mispronounce', 'mispronounces', 'mispronouncing', 'mispronounced', 'mispronounced', tran, ['6A'] ). +verb( 'misquote', 'misquotes', 'misquoting', 'misquoted', 'misquoted', tran, ['6A'] ). +verb( 'misread', 'misreads', 'misreading', 'misread', 'misread', tran, ['6A'] ). +verb( 'misrepresent', 'misrepresents', 'misrepresenting', 'misrepresented', 'misrepresented', tran, [] ). +verb( 'miss', 'misses', 'missing', 'missed', 'missed', _, ['2A','2C','6A','6B','6C','15B'] ). +verb( 'misspell', 'misspells', 'misspelling', 'misspelled', 'misspelled', tran, ['6A'] ). +verb( 'misspend', 'misspends', 'misspending', 'misspent', 'misspent', tran, ['6A'] ). +verb( 'misstate', 'misstates', 'misstating', 'misstated', 'misstated', tran, ['6A'] ). +verb( 'mist', 'mists', 'misting', 'misted', 'misted', _, ['2C','6A'] ). +verb( 'mistake', 'mistakes', 'mistaking', 'mistook', 'mistaken', _, ['6A','10','14'] ). +verb( 'mistime', 'mistimes', 'mistiming', 'mistimed', 'mistimed', tran, [] ). +verb( 'mistranslate', 'mistranslates', 'mistranslating', 'mistranslated', 'mistranslated', tran, ['6A'] ). +verb( 'mistrust', 'mistrusts', 'mistrusting', 'mistrusted', 'mistrusted', tran, ['6A'] ). +verb( 'misunderstand', 'misunderstands', 'misunderstanding', 'misunderstood', 'misunderstood', tran, ['6A'] ). +verb( 'misuse', 'misuses', 'misusing', 'misused', 'misused', tran, ['6A'] ). +verb( 'mitigate', 'mitigates', 'mitigating', 'mitigated', 'mitigated', tran, ['6A'] ). +verb( 'mix', 'mixes', 'mixing', 'mixed', 'mixed', _, ['2A','2C','3A','6A','12B','13B','14','15B'] ). +verb( 'mizzle', 'mizzles', 'mizzling', 'mizzled', 'mizzled', intran, ['2A'] ). +verb( 'moan', 'moans', 'moaning', 'moaned', 'moaned', _, ['2A','2C','15B'] ). +verb( 'mob', 'mobs', 'mobbing', 'mobbed', 'mobbed', tran, ['6A'] ). +verb( 'mobilize', 'mobilizes', 'mobilizing', 'mobilized', 'mobilized', _, ['2A','6A'] ). +verb( 'mock', 'mocks', 'mocking', 'mocked', 'mocked', _, ['3A','6A'] ). +verb( 'model', 'models', 'modelling', 'modelled', 'modelled', _, ['2A','6A','14','15A'] ). +verb( 'moderate', 'moderates', 'moderating', 'moderated', 'moderated', _, ['2A','6A'] ). +verb( 'modernize', 'modernizes', 'modernizing', 'modernized', 'modernized', tran, ['6A'] ). +verb( 'modify', 'modifies', 'modifying', 'modified', 'modified', tran, ['6A'] ). +verb( 'modulate', 'modulates', 'modulating', 'modulated', 'modulated', _, ['2C','6A'] ). +verb( 'moil', 'moils', 'moiling', 'moiled', 'moiled', intran, [] ). +verb( 'moisten', 'moistens', 'moistening', 'moistened', 'moistened', _, ['2A','6A'] ). +verb( 'molest', 'molests', 'molesting', 'molested', 'molested', tran, ['6A'] ). +verb( 'mollify', 'mollifies', 'mollifying', 'mollified', 'mollified', tran, ['6A'] ). +verb( 'mollycoddle', 'mollycoddles', 'mollycoddling', 'mollycoddled', 'mollycoddled', tran, ['6A'] ). +verb( 'monetize', 'monetizes', 'monetizing', 'monetized', 'monetized', tran, ['6A'] ). +verb( 'monitor', 'monitors', 'monitoring', 'monitored', 'monitored', _, [] ). +verb( 'monkey', 'monkeys', 'monkeying', 'monkeyed', 'monkeyed', intran, ['2C'] ). +verb( 'monopolize', 'monopolizes', 'monopolizing', 'monopolized', 'monopolized', tran, ['6A'] ). +verb( 'moo', 'moos', 'mooing', 'mooed', 'mooed', intran, [] ). +verb( 'mooch', 'mooches', 'mooching', 'mooched', 'mooched', intran, ['2C'] ). +verb( 'moon', 'moons', 'mooning', 'mooned', 'mooned', _, ['2C','15B'] ). +verb( 'moor', 'moors', 'mooring', 'moored', 'moored', tran, ['6A','15A'] ). +verb( 'moot', 'moots', 'mooting', 'mooted', 'mooted', tran, ['6A'] ). +verb( 'mop', 'mops', 'mopping', 'mopped', 'mopped', _, ['6A','15B'] ). +verb( 'mope', 'mopes', 'moping', 'moped', 'moped', intran, ['2A','2C'] ). +verb( 'moralize', 'moralizes', 'moralizing', 'moralized', 'moralized', _, ['2A','3A','6A'] ). +verb( 'mortar', 'mortars', 'mortaring', 'mortared', 'mortared', tran, ['6A'] ). +verb( 'mortgage', 'mortgages', 'mortgaging', 'mortgaged', 'mortgaged', tran, ['6A','14'] ). +verb( 'mortice', 'mortices', 'morticing', 'morticed', 'morticed', tran, ['15A','15B'] ). +verb( 'mortify', 'mortifies', 'mortifying', 'mortified', 'mortified', _, ['2A','6A'] ). +verb( 'mortise', 'mortises', 'mortising', 'mortised', 'mortised', tran, ['15A','15B'] ). +verb( 'mosey', 'moseys', 'moseying', 'moseyed', 'moseyed', intran, ['2A','2C'] ). +verb( 'mother', 'mothers', 'mothering', 'mothered', 'mothered', tran, ['6A'] ). +verb( 'mothproof', 'mothproofs', 'mothproofing', 'mothproofed', 'mothproofed', tran, [] ). +verb( 'motion', 'motions', 'motioning', 'motioned', 'motioned', _, ['3A','15A','15B','17'] ). +verb( 'motivate', 'motivates', 'motivating', 'motivated', 'motivated', tran, ['6A'] ). +verb( 'motor', 'motors', 'motoring', 'motored', 'motored', intran, ['2A','2C'] ). +verb( 'motorize', 'motorizes', 'motorizing', 'motorized', 'motorized', tran, ['6A'] ). +verb( 'mottle', 'mottles', 'mottling', 'mottled', 'mottled', tran, ['6A'] ). +verb( 'mould', 'moulds', 'moulding', 'moulded', 'moulded', _, ['2A','6A','14'] ). +verb( 'moulder', 'moulders', 'mouldering', 'mouldered', 'mouldered', intran, ['2A','2C'] ). +verb( 'moult', 'moults', 'moulting', 'moulted', 'moulted', _, ['2A','6A'] ). +verb( 'mount', 'mounts', 'mounting', 'mounted', 'mounted', _, ['2A','2C','6A'] ). +verb( 'mourn', 'mourns', 'mourning', 'mourned', 'mourned', _, ['3A','6A'] ). +verb( 'mouse', 'mouses', 'mousing', 'moused', 'moused', intran, ['2A'] ). +verb( 'mouth', 'mouths', 'mouthing', 'mouthed', 'mouthed', _, ['2A','6A'] ). +verb( 'move', 'moves', 'moving', 'moved', 'moved', _, ['2A','2C','3A','6A','9','15A','15B','17'] ). +verb( 'mow', 'mows', 'mowing', 'mowed', 'mowed', tran, ['2A','6A','15B'] ). +verb( 'mow', 'mows', 'mowing', 'mowed', 'mowed', intran, [] ). +verb( 'muck', 'mucks', 'mucking', 'mucked', 'mucked', _, ['2C','6A','15B'] ). +verb( 'mud', 'muds', 'mudding', 'mudded', 'mudded', tran, ['6A'] ). +verb( 'muddle', 'muddles', 'muddling', 'muddled', 'muddled', _, ['2C','6A','15B'] ). +verb( 'muddy', 'muddies', 'muddying', 'muddied', 'muddied', tran, ['6A'] ). +verb( 'muff', 'muffs', 'muffing', 'muffed', 'muffed', tran, ['6A'] ). +verb( 'muffle', 'muffles', 'muffling', 'muffled', 'muffled', tran, ['6A','15B'] ). +verb( 'mug', 'mugs', 'mugging', 'mugged', 'mugged', tran, ['6A','15B'] ). +verb( 'mulch', 'mulches', 'mulching', 'mulched', 'mulched', tran, [] ). +verb( 'mulct', 'mulcts', 'mulcting', 'mulcted', 'mulcted', tran, ['12C','14'] ). +verb( 'mull', 'mulls', 'mulling', 'mulled', 'mulled', tran, ['6A','15A'] ). +verb( 'multiply', 'multiplies', 'multiplying', 'multiplied', 'multiplied', _, ['2A','6A','14'] ). +verb( 'mumble', 'mumbles', 'mumbling', 'mumbled', 'mumbled', _, ['2A','2C','6A'] ). +verb( 'mummify', 'mummifies', 'mummifying', 'mummified', 'mummified', tran, ['6A'] ). +verb( 'munch', 'munches', 'munching', 'munched', 'munched', _, ['2A','2C','6A'] ). +verb( 'munition', 'munitions', 'munitioning', 'munitioned', 'munitioned', tran, ['6A'] ). +verb( 'murder', 'murders', 'murdering', 'murdered', 'murdered', tran, ['6A'] ). +verb( 'murmur', 'murmurs', 'murmuring', 'murmured', 'murmured', _, ['2A','2C','3A','6A'] ). +verb( 'muscle', 'muscles', 'muscling', 'muscled', 'muscled', intran, ['2C'] ). +verb( 'muse', 'muses', 'musing', 'mused', 'mused', intran, ['2A','3A'] ). +verb( 'mushroom', 'mushrooms', 'mushrooming', 'mushroomed', 'mushroomed', intran, ['2C'] ). +verb( 'muss', 'musses', 'mussing', 'mussed', 'mussed', tran, ['6A','15B'] ). +verb( 'must', 'must', '-', '-', '-', unknown, ['5'] ). +verb( 'muster', 'musters', 'mustering', 'mustered', 'mustered', _, ['2A','6A','15B'] ). +verb( 'mute', 'mutes', 'muting', 'muted', 'muted', tran, ['6A'] ). +verb( 'mutilate', 'mutilates', 'mutilating', 'mutilated', 'mutilated', tran, ['6A'] ). +verb( 'mutiny', 'mutinies', 'mutinying', 'mutinied', 'mutinied', intran, ['2A','3A'] ). +verb( 'mutter', 'mutters', 'muttering', 'muttered', 'muttered', _, ['2A','2C','6A','14'] ). +verb( 'muzzle', 'muzzles', 'muzzling', 'muzzled', 'muzzled', tran, ['6A'] ). +verb( 'mystify', 'mystifies', 'mystifying', 'mystified', 'mystified', tran, ['6A'] ). +verb( 'nab', 'nabs', 'nabbing', 'nabbed', 'nabbed', tran, [] ). +verb( 'nag', 'nags', 'nagging', 'nagged', 'nagged', _, ['2A','2C','3A','6A'] ). +verb( 'nail', 'nails', 'nailing', 'nailed', 'nailed', tran, ['15A','15B'] ). +verb( 'name', 'names', 'naming', 'named', 'named', tran, ['6A','14','23'] ). +verb( 'name-drop', 'name-drops', 'name-dropping', 'name-dropped', 'name-dropped', intran, ['2A'] ). +verb( 'nap', 'naps', 'napping', 'napped', 'napped', intran, [] ). +verb( 'nark', 'narks', 'narking', 'narked', 'narked', tran, [] ). +verb( 'narrate', 'narrates', 'narrating', 'narrated', 'narrated', tran, ['6A'] ). +verb( 'narrow', 'narrows', 'narrowing', 'narrowed', 'narrowed', _, ['2A','6A'] ). +verb( 'nasalize', 'nasalizes', 'nasalizing', 'nasalized', 'nasalized', tran, ['6A'] ). +verb( 'nationalize', 'nationalizes', 'nationalizing', 'nationalized', 'nationalized', tran, ['6A'] ). +verb( 'natter', 'natters', 'nattering', 'nattered', 'nattered', intran, ['2A','2C'] ). +verb( 'naturalize', 'naturalizes', 'naturalizing', 'naturalized', 'naturalized', _, ['2A','6A'] ). +verb( 'nauseate', 'nauseates', 'nauseating', 'nauseated', 'nauseated', tran, ['6A'] ). +verb( 'navigate', 'navigates', 'navigating', 'navigated', 'navigated', _, ['2A','6A'] ). +verb( 'near', 'nears', 'nearing', 'neared', 'neared', _, ['2A','6A'] ). +verb( 'necessitate', 'necessitates', 'necessitating', 'necessitated', 'necessitated', tran, ['6A','6C'] ). +verb( 'neck', 'necks', 'necking', 'necked', 'necked', intran, [] ). +verb( 'need', 'needs', 'needing', 'needed', 'needed', unknown, ['5','6A','6E','7A'] ). +verb( 'need', 'needs', 'needing', 'needed', 'needed', tran, ['5','6A','6E','7A'] ). +verb( 'needle', 'needles', 'needling', 'needled', 'needled', tran, ['6A','15A'] ). +verb( 'negate', 'negates', 'negating', 'negated', 'negated', tran, ['6A'] ). +verb( 'negative', 'negatives', 'negativing', 'negatived', 'negatived', tran, ['6A'] ). +verb( 'neglect', 'neglects', 'neglecting', 'neglected', 'neglected', tran, ['6A','6C','7A'] ). +verb( 'negotiate', 'negotiates', 'negotiating', 'negotiated', 'negotiated', _, ['2A','3A','6A','14'] ). +verb( 'neigh', 'neighs', 'neighing', 'neighed', 'neighed', intran, [] ). +verb( 'neighbour', 'neighbours', 'neighbouring', 'neighboured', 'neighboured', _, ['3A','6A'] ). +verb( 'nerve', 'nerves', 'nerving', 'nerved', 'nerved', tran, ['6A','14','16A'] ). +verb( 'nest', 'nests', 'nesting', 'nested', 'nested', intran, ['2A','2C'] ). +verb( 'nestle', 'nestles', 'nestling', 'nestled', 'nestled', _, ['2C','15A'] ). +verb( 'net', 'nets', 'netting', 'netted', 'netted', tran, ['6A'] ). +verb( 'nett', 'netts', 'netting', 'netted', 'netted', tran, ['6A'] ). +verb( 'nettle', 'nettles', 'nettling', 'nettled', 'nettled', tran, ['6A'] ). +verb( 'neuter', 'neuters', 'neutering', 'neutered', 'neutered', tran, [] ). +verb( 'neutralize', 'neutralizes', 'neutralizing', 'neutralized', 'neutralized', tran, ['6A'] ). +verb( 'nibble', 'nibbles', 'nibbling', 'nibbled', 'nibbled', _, ['2A','3A','6A'] ). +verb( 'nick', 'nicks', 'nicking', 'nicked', 'nicked', tran, [] ). +verb( 'nickel', 'nickels', 'nickelling', 'nickelled', 'nickelled', tran, [] ). +verb( 'nickname', 'nicknames', 'nicknaming', 'nicknamed', 'nicknamed', tran, ['6A','23'] ). +verb( 'niggle', 'niggles', 'niggling', 'niggled', 'niggled', intran, [] ). +verb( 'nip', 'nips', 'nipping', 'nipped', 'nipped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'nobble', 'nobbles', 'nobbling', 'nobbled', 'nobbled', tran, ['6A'] ). +verb( 'nod', 'nods', 'nodding', 'nodded', 'nodded', _, ['2A','2C','3A','4A','6A','12A','13A'] ). +verb( 'noise', 'noises', 'noising', 'noised', 'noised', tran, [] ). +verb( 'nominate', 'nominates', 'nominating', 'nominated', 'nominated', tran, ['6A','14','23'] ). +verb( 'nonplus', 'nonplusses', 'nonplussing', 'nonplussed', 'nonplussed', tran, ['6A'] ). +verb( 'noose', 'nooses', 'noosing', 'noosed', 'noosed', tran, [] ). +verb( 'normalize', 'normalizes', 'normalizing', 'normalized', 'normalized', tran, [] ). +verb( 'nose', 'noses', 'nosing', 'nosed', 'nosed', _, ['2C','3A','15A','15B'] ). +verb( 'nosedive', 'nosedives', 'nosediving', 'nosedived', 'nosedived', intran, [] ). +verb( 'nosh', 'noshes', 'noshing', 'noshed', 'noshed', intran, [] ). +verb( 'notch', 'notches', 'notching', 'notched', 'notched', tran, ['6A','15B'] ). +verb( 'note', 'notes', 'noting', 'noted', 'noted', tran, ['6A','8','9','10','15B'] ). +verb( 'notice', 'notices', 'noticing', 'noticed', 'noticed', _, ['2A','6A','8','9','10','18A','19A'] ). +verb( 'notify', 'notifies', 'notifying', 'notified', 'notified', tran, ['6A','11','14'] ). +verb( 'nourish', 'nourishes', 'nourishing', 'nourished', 'nourished', tran, ['6A'] ). +verb( 'nudge', 'nudges', 'nudging', 'nudged', 'nudged', tran, ['6A'] ). +verb( 'nullify', 'nullifies', 'nullifying', 'nullified', 'nullified', tran, ['6A'] ). +verb( 'numb', 'numbs', 'numbing', 'numbed', 'numbed', tran, ['6A'] ). +verb( 'number', 'numbers', 'numbering', 'numbered', 'numbered', tran, ['2C','6A','14'] ). +verb( 'nurse', 'nurses', 'nursing', 'nursed', 'nursed', tran, ['6A'] ). +verb( 'nurture', 'nurtures', 'nurturing', 'nurtured', 'nurtured', tran, [] ). +verb( 'nut', 'nuts', 'nutting', 'nutted', 'nutted', intran, [] ). +verb( 'nuzzle', 'nuzzles', 'nuzzling', 'nuzzled', 'nuzzled', _, ['2C','6A'] ). +verb( 'obey', 'obeys', 'obeying', 'obeyed', 'obeyed', _, ['2A','6A'] ). +verb( 'obfuscate', 'obfuscates', 'obfuscating', 'obfuscated', 'obfuscated', tran, ['6A'] ). +verb( 'object', 'objects', 'objecting', 'objected', 'objected', _, ['2A','3A','9'] ). +verb( 'objurgate', 'objurgates', 'objurgating', 'objurgated', 'objurgated', tran, ['6A'] ). +verb( 'obligate', 'obligates', 'obligating', 'obligated', 'obligated', tran, ['17'] ). +verb( 'oblige', 'obliges', 'obliging', 'obliged', 'obliged', tran, ['6A','14','17'] ). +verb( 'obliterate', 'obliterates', 'obliterating', 'obliterated', 'obliterated', tran, ['6A'] ). +verb( 'obscure', 'obscures', 'obscuring', 'obscured', 'obscured', tran, ['6A'] ). +verb( 'observe', 'observes', 'observing', 'observed', 'observed', _, ['2A','6A','8','9','10','18A','19A','25'] ). +verb( 'obsess', 'obsesses', 'obsessing', 'obsessed', 'obsessed', tran, ['6A'] ). +verb( 'obstruct', 'obstructs', 'obstructing', 'obstructed', 'obstructed', tran, ['6A'] ). +verb( 'obtain', 'obtains', 'obtaining', 'obtained', 'obtained', _, ['2A','6A'] ). +verb( 'obtrude', 'obtrudes', 'obtruding', 'obtruded', 'obtruded', _, ['2A','14'] ). +verb( 'obviate', 'obviates', 'obviating', 'obviated', 'obviated', tran, ['6A'] ). +verb( 'occasion', 'occasions', 'occasioning', 'occasioned', 'occasioned', tran, ['6A','12A','13A'] ). +verb( 'occupy', 'occupies', 'occupying', 'occupied', 'occupied', tran, ['6A'] ). +verb( 'occur', 'occurs', 'occurring', 'occurred', 'occurred', intran, ['2A','2C','3A'] ). +verb( 'offend', 'offends', 'offending', 'offended', 'offended', _, ['3A','6A'] ). +verb( 'offer', 'offers', 'offering', 'offered', 'offered', _, ['2A','6A','7A','12A','13A','14','15B'] ). +verb( 'officiate', 'officiates', 'officiating', 'officiated', 'officiated', intran, ['2A','2C','3A'] ). +verb( 'offset', 'offsets', 'offsetting', 'offset', 'offset', tran, ['6A','14'] ). +verb( 'ogle', 'ogles', 'ogling', 'ogled', 'ogled', _, ['3A','6A'] ). +verb( 'oil', 'oils', 'oiling', 'oiled', 'oiled', tran, ['6A'] ). +verb( 'okay', 'okays', 'okaying', 'okayed', 'okayed', tran, ['6A'] ). +verb( 'omen', 'omens', 'omening', 'omened', 'omened', tran, ['6A'] ). +verb( 'omit', 'omits', 'omitting', 'omitted', 'omitted', tran, ['6A','6C','7A'] ). +verb( 'ooze', 'oozes', 'oozing', 'oozed', 'oozed', _, ['2C','6A'] ). +verb( 'open', 'opens', 'opening', 'opened', 'opened', _, ['2A','2C','3A','6A','12C','14','15A','15B','16A'] ). +verb( 'operate', 'operates', 'operating', 'operated', 'operated', _, ['2A','2C','3A','4A','6A'] ). +verb( 'opine', 'opines', 'opining', 'opined', 'opined', tran, ['9'] ). +verb( 'oppose', 'opposes', 'opposing', 'opposed', 'opposed', tran, ['6A','14'] ). +verb( 'oppress', 'oppresses', 'oppressing', 'oppressed', 'oppressed', tran, ['6A'] ). +verb( 'oppugn', 'oppugns', 'oppugning', 'oppugned', 'oppugned', tran, ['6A'] ). +verb( 'opt', 'opts', 'opting', 'opted', 'opted', intran, ['3A'] ). +verb( 'orate', 'orates', 'orating', 'orated', 'orated', intran, ['2A'] ). +verb( 'orbit', 'orbits', 'orbiting', 'orbited', 'orbited', _, ['2A','2C','6A'] ). +verb( 'orchestrate', 'orchestrates', 'orchestrating', 'orchestrated', 'orchestrated', tran, ['6A'] ). +verb( 'ordain', 'ordains', 'ordaining', 'ordained', 'ordained', tran, ['6A','9','23'] ). +verb( 'order', 'orders', 'ordering', 'ordered', 'ordered', tran, ['6A','9','12B','13B','15A','15B','17'] ). +verb( 'organize', 'organizes', 'organizing', 'organized', 'organized', tran, ['6A'] ). +verb( 'orient', 'orients', 'orienting', 'oriented', 'oriented', tran, [] ). +verb( 'orientate', 'orientates', 'orientating', 'orientated', 'orientated', tran, ['6A'] ). +verb( 'originate', 'originates', 'originating', 'originated', 'originated', _, ['2C','3A','6A'] ). +verb( 'ornament', 'ornaments', 'ornamenting', 'ornamented', 'ornamented', tran, ['6A','14'] ). +verb( 'orphan', 'orphans', 'orphaning', 'orphaned', 'orphaned', tran, ['6A'] ). +verb( 'oscillate', 'oscillates', 'oscillating', 'oscillated', 'oscillated', _, ['2A','6A'] ). +verb( 'ossify', 'ossifies', 'ossifying', 'ossified', 'ossified', _, ['2A','6A'] ). +verb( 'ostracize', 'ostracizes', 'ostracizing', 'ostracized', 'ostracized', tran, ['6A'] ). +verb( 'ought', 'ought', '-', '-', '-', unknown, ['7B'] ). +verb( 'oust', 'ousts', 'ousting', 'ousted', 'ousted', tran, ['6A','14'] ). +verb( 'out', 'outs', 'outing', 'outed', 'outed', tran, [] ). +verb( 'out-herod', 'out-herods', 'out-heroding', 'out-heroded', 'out-heroded', tran, ['6A'] ). +verb( 'outbalance', 'outbalances', 'outbalancing', 'outbalanced', 'outbalanced', tran, ['6A'] ). +verb( 'outbid', 'outbids', 'outbidding', 'outbid', 'outbid', tran, ['6A'] ). +verb( 'outbrave', 'outbraves', 'outbraving', 'outbraved', 'outbraved', tran, ['6A'] ). +verb( 'outclass', 'outclasses', 'outclassing', 'outclassed', 'outclassed', tran, ['6A'] ). +verb( 'outdistance', 'outdistances', 'outdistancing', 'outdistanced', 'outdistanced', tran, ['6A'] ). +verb( 'outdo', 'outdoes', 'outdoing', 'outdid', 'outdone', tran, ['6A'] ). +verb( 'outface', 'outfaces', 'outfacing', 'outfaced', 'outfaced', tran, ['6A'] ). +verb( 'outfight', 'outfights', 'outfighting', 'outfought', 'outfought', tran, ['6A'] ). +verb( 'outfit', 'outfits', 'outfitting', 'outfitted', 'outfitted', tran, [] ). +verb( 'outflank', 'outflanks', 'outflanking', 'outflanked', 'outflanked', tran, ['6A'] ). +verb( 'outfox', 'outfoxes', 'outfoxing', 'outfoxed', 'outfoxed', tran, ['6A'] ). +verb( 'outgo', 'outgoes', 'outgoing', 'outwent', 'outgone', intran, [] ). +verb( 'outgrow', 'outgrows', 'outgrowing', 'outgrew', 'outgrown', tran, ['6A'] ). +verb( 'outlast', 'outlasts', 'outlasting', 'outlasted', 'outlasted', tran, ['6A'] ). +verb( 'outlaw', 'outlaws', 'outlawing', 'outlawed', 'outlawed', tran, ['6A'] ). +verb( 'outline', 'outlines', 'outlining', 'outlined', 'outlined', tran, ['6A'] ). +verb( 'outlive', 'outlives', 'outliving', 'outlived', 'outlived', tran, ['6A'] ). +verb( 'outmanoeuvre', 'outmanoeuvres', 'outmanoeuvring', 'outmanoeuvred', 'outmanoeuvred', tran, ['6A'] ). +verb( 'outmarch', 'outmarches', 'outmarching', 'outmarched', 'outmarched', tran, ['6A'] ). +verb( 'outmatch', 'outmatches', 'outmatching', 'outmatched', 'outmatched', tran, ['6A'] ). +verb( 'outnumber', 'outnumbers', 'outnumbering', 'outnumbered', 'outnumbered', tran, ['6A'] ). +verb( 'outplay', 'outplays', 'outplaying', 'outplayed', 'outplayed', tran, ['6A'] ). +verb( 'outpoint', 'outpoints', 'outpointing', 'outpointed', 'outpointed', tran, ['6A'] ). +verb( 'outrage', 'outrages', 'outraging', 'outraged', 'outraged', tran, ['6A'] ). +verb( 'outrange', 'outranges', 'outranging', 'outranged', 'outranged', tran, ['6A'] ). +verb( 'outrank', 'outranks', 'outranking', 'outranked', 'outranked', tran, ['6A'] ). +verb( 'outride', 'outrides', 'outriding', 'outrode', 'outridden', tran, ['6A'] ). +verb( 'outrival', 'outrivals', 'outrivalling', 'outrivalled', 'outrivalled', tran, ['6A'] ). +verb( 'outrun', 'outruns', 'outrunning', 'outran', 'outrun', tran, ['6A'] ). +verb( 'outsail', 'outsails', 'outsailing', 'outsailed', 'outsailed', tran, ['6A'] ). +verb( 'outshine', 'outshines', 'outshining', 'outshone', 'outshone', tran, ['6A'] ). +verb( 'outsmart', 'outsmarts', 'outsmarting', 'outsmarted', 'outsmarted', tran, ['6A'] ). +verb( 'outspan', 'outspans', 'outspanning', 'outspanned', 'outspanned', _, ['2A','6A'] ). +verb( 'outstay', 'outstays', 'outstaying', 'outstayed', 'outstayed', tran, ['6A'] ). +verb( 'outstrip', 'outstrips', 'outstripping', 'outstripped', 'outstripped', tran, ['6A'] ). +verb( 'outvie', 'outvies', 'outvying', 'outvied', 'outvied', tran, ['6A'] ). +verb( 'outvote', 'outvotes', 'outvoting', 'outvoted', 'outvoted', tran, ['6A'] ). +verb( 'outwear', 'outwears', 'outwearing', 'outwore', 'outworn', tran, ['6A'] ). +verb( 'outweigh', 'outweighs', 'outweighing', 'outweighed', 'outweighed', tran, ['6A'] ). +verb( 'outwit', 'outwits', 'outwitting', 'outwitted', 'outwitted', tran, ['6A'] ). +verb( 'overact', 'overacts', 'overacting', 'overacted', 'overacted', _, ['2A','6A'] ). +verb( 'overarch', 'overarches', 'overarching', 'overarched', 'overarched', _, ['2A','6A'] ). +verb( 'overawe', 'overawes', 'overawing', 'overawed', 'overawed', tran, ['6A'] ). +verb( 'overbalance', 'overbalances', 'overbalancing', 'overbalanced', 'overbalanced', _, ['2A','6A'] ). +verb( 'overbear', 'overbears', 'overbearing', 'overbore', 'overborne', tran, ['6A'] ). +verb( 'overbid', 'overbids', 'overbidding', 'overbid', 'overbid', _, ['2A','6A'] ). +verb( 'overburden', 'overburdens', 'overburdening', 'overburdened', 'overburdened', tran, ['6A'] ). +verb( 'overcall', 'overcalls', 'overcalling', 'overcalled', 'overcalled', _, [] ). +verb( 'overcapitalize', 'overcapitalizes', 'overcapitalizing', 'overcapitalized', 'overcapitalized', tran, [] ). +verb( 'overcharge', 'overcharges', 'overcharging', 'overcharged', 'overcharged', _, ['2A','6A'] ). +verb( 'overclothe', 'overclothes', 'overclothing', 'overclothed', 'overclothed', tran, ['6A'] ). +verb( 'overcloud', 'overclouds', 'overclouding', 'overclouded', 'overclouded', _, ['2A','6A'] ). +verb( 'overcome', 'overcomes', 'overcoming', 'overcame', 'overcome', tran, ['6A'] ). +verb( 'overcook', 'overcooks', 'overcooking', 'overcooked', 'overcooked', tran, [] ). +verb( 'overcrop', 'overcrops', 'overcropping', 'overcropped', 'overcropped', tran, ['6A'] ). +verb( 'overcrowd', 'overcrowds', 'overcrowding', 'overcrowded', 'overcrowded', tran, ['6A'] ). +verb( 'overdo', 'overdoes', 'overdoing', 'overdid', 'overdone', tran, ['6A'] ). +verb( 'overdraw', 'overdraws', 'overdrawing', 'overdrew', 'overdrawn', _, ['2A','6A'] ). +verb( 'overdress', 'overdresses', 'overdressing', 'overdressed', 'overdressed', _, ['2A','6A'] ). +verb( 'overeat', 'overeats', 'overeating', 'overate', 'overeaten', intran, [] ). +verb( 'overemphasize', 'overemphasizes', 'overemphasizing', 'overemphasized', 'overemphasized', tran, [] ). +verb( 'overestimate', 'overestimates', 'overestimating', 'overestimated', 'overestimated', tran, [] ). +verb( 'overexert', 'overexerts', 'overexerting', 'overexerted', 'overexerted', tran, [] ). +verb( 'overexpose', 'overexposes', 'overexposing', 'overexposed', 'overexposed', tran, [] ). +verb( 'overfeed', 'overfeeds', 'overfeeding', 'overfeeded', 'overfeeded', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'overflow', 'overflows', 'overflowing', 'overflowed', 'overflowed', _, ['2A','3A','6A'] ). +verb( 'overfly', 'overflies', 'overflying', 'overflew', 'overflown', tran, ['2A','2B','2C','2D','4A','6A','15A','15B'] ). +verb( 'overhang', 'overhangs', 'overhanging', 'overhung', 'overhung', _, ['2A','6A'] ). +verb( 'overhaul', 'overhauls', 'overhauling', 'overhauled', 'overhauled', tran, ['6A'] ). +verb( 'overhear', 'overhears', 'overhearing', 'overheard', 'overheard', tran, ['6A','18A','19A'] ). +verb( 'overheat', 'overheats', 'overheating', 'overheated', 'overheated', tran, [] ). +verb( 'overindulge', 'overindulges', 'overindulging', 'overindulged', 'overindulged', _, [] ). +verb( 'overlap', 'overlaps', 'overlapping', 'overlapped', 'overlapped', _, ['2A','6A'] ). +verb( 'overlay', 'overlays', 'overlaying', 'overlaid', 'overlain', tran, [] ). +verb( 'overleap', 'overleaps', 'overleaping', 'overleaped', 'overleaped', tran, ['6A'] ). +verb( 'overlie', 'overlies', 'overlying', 'overlaid', 'overlaid', intran, ['2A','2C','2D','3A'] ). +verb( 'overload', 'overloads', 'overloading', 'overloaded', 'overloaded', tran, ['6A'] ). +verb( 'overlook', 'overlooks', 'overlooking', 'overlooked', 'overlooked', tran, ['6A'] ). +verb( 'overmaster', 'overmasters', 'overmastering', 'overmastered', 'overmastered', tran, ['6A'] ). +verb( 'overpay', 'overpays', 'overpaying', 'overpaid', 'overpaid', tran, ['6A','14'] ). +verb( 'overplay', 'overplays', 'overplaying', 'overplayed', 'overplayed', tran, [] ). +verb( 'overpower', 'overpowers', 'overpowering', 'overpowered', 'overpowered', tran, ['6A'] ). +verb( 'overpraise', 'overpraises', 'overpraising', 'overpraised', 'overpraised', tran, [] ). +verb( 'overprint', 'overprints', 'overprinting', 'overprinted', 'overprinted', tran, ['6A'] ). +verb( 'overproduce', 'overproduces', 'overproducing', 'overproduced', 'overproduced', _, [] ). +verb( 'overrate', 'overrates', 'overrating', 'overrated', 'overrated', tran, ['6A'] ). +verb( 'overreach', 'overreaches', 'overreaching', 'overreached', 'overreached', tran, ['6A'] ). +verb( 'override', 'overrides', 'overriding', 'overrode', 'overridden', tran, ['6A'] ). +verb( 'overrule', 'overrules', 'overruling', 'overruled', 'overruled', tran, ['6A'] ). +verb( 'overrun', 'overruns', 'overrunning', 'overran', 'overrun', tran, ['6A'] ). +verb( 'oversee', 'oversees', 'overseeing', 'oversaw', 'overseen', tran, ['6A'] ). +verb( 'oversew', 'oversews', 'oversewing', 'oversewed', 'oversewn', tran, ['2A','2B','2C','6A','15B'] ). +verb( 'overshadow', 'overshadows', 'overshadowing', 'overshadowed', 'overshadowed', tran, ['6A'] ). +verb( 'overshoot', 'overshoots', 'overshooting', 'overshot', 'overshot', tran, ['6A'] ). +verb( 'oversimplify', 'oversimplifies', 'oversimplifying', 'oversimplified', 'oversimplified', tran, [] ). +verb( 'oversleep', 'oversleeps', 'oversleeping', 'overslept', 'overslept', intran, ['2A'] ). +verb( 'overspend', 'overspends', 'overspending', 'overspent', 'overspent', _, ['2A','6A','14','19B'] ). +verb( 'overstate', 'overstates', 'overstating', 'overstated', 'overstated', tran, ['6A'] ). +verb( 'overstay', 'overstays', 'overstaying', 'overstayed', 'overstayed', tran, ['6A'] ). +verb( 'overstep', 'oversteps', 'overstepping', 'overstepped', 'overstepped', tran, ['6A'] ). +verb( 'overstock', 'overstocks', 'overstocking', 'overstocked', 'overstocked', tran, ['6A'] ). +verb( 'overstrain', 'overstrains', 'overstraining', 'overstrained', 'overstrained', tran, [] ). +verb( 'overtake', 'overtakes', 'overtaking', 'overtook', 'overtaken', tran, ['6A'] ). +verb( 'overtax', 'overtaxes', 'overtaxing', 'overtaxed', 'overtaxed', tran, ['6A'] ). +verb( 'overthrow', 'overthrows', 'overthrowing', 'overthrew', 'overthrown', tran, ['6A'] ). +verb( 'overtop', 'overtops', 'overtopping', 'overtopped', 'overtopped', tran, ['6A'] ). +verb( 'overtrump', 'overtrumps', 'overtrumping', 'overtrumped', 'overtrumped', tran, ['6A'] ). +verb( 'overturn', 'overturns', 'overturning', 'overturned', 'overturned', _, ['2A','6A'] ). +verb( 'overvalue', 'overvalues', 'overvaluing', 'overvalued', 'overvalued', tran, [] ). +verb( 'overwhelm', 'overwhelms', 'overwhelming', 'overwhelmed', 'overwhelmed', tran, ['6A'] ). +verb( 'overwork', 'overworks', 'overworking', 'overworked', 'overworked', _, ['2A','6A'] ). +verb( 'owe', 'owes', 'owing', 'owed', 'owed', _, ['2A','3A','6A','12A','13A','14'] ). +verb( 'own', 'owns', 'owning', 'owned', 'owned', _, ['2C','3B','6A','9'] ). +verb( 'oxidize', 'oxidizes', 'oxidizing', 'oxidized', 'oxidized', _, ['2A','6A'] ). +verb( 'oxygenate', 'oxygenates', 'oxygenating', 'oxygenated', 'oxygenated', tran, [] ). +verb( 'oxygenize', 'oxygenizes', 'oxygenizing', 'oxygenized', 'oxygenized', tran, [] ). +verb( 'pace', 'paces', 'pacing', 'paced', 'paced', _, ['2A','2C','6A','15B'] ). +verb( 'pacify', 'pacifies', 'pacifying', 'pacified', 'pacified', tran, ['6A'] ). +verb( 'pack', 'packs', 'packing', 'packed', 'packed', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'package', 'packages', 'packaging', 'packaged', 'packaged', tran, [] ). +verb( 'pad', 'pads', 'padding', 'padded', 'padded', _, ['2A','2C','6A','15B'] ). +verb( 'paddle', 'paddles', 'paddling', 'paddled', 'paddled', _, ['2A','6A'] ). +verb( 'padlock', 'padlocks', 'padlocking', 'padlocked', 'padlocked', tran, ['6A'] ). +verb( 'page', 'pages', 'paging', 'paged', 'paged', tran, ['6A'] ). +verb( 'pain', 'pains', 'paining', 'pained', 'pained', tran, ['6A'] ). +verb( 'paint', 'paints', 'painting', 'painted', 'painted', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'pair', 'pairs', 'pairing', 'paired', 'paired', _, ['2A','2C','6A','15B'] ). +verb( 'pal', 'pals', 'palling', 'palled', 'palled', intran, [] ). +verb( 'palaver', 'palavers', 'palavering', 'palavered', 'palavered', intran, ['2A'] ). +verb( 'pale', 'pales', 'paling', 'paled', 'paled', intran, ['2A','2C'] ). +verb( 'palisade', 'palisades', 'palisading', 'palisaded', 'palisaded', tran, ['6A'] ). +verb( 'pall', 'palls', 'palling', 'palled', 'palled', intran, ['2A','3A'] ). +verb( 'palliate', 'palliates', 'palliating', 'palliated', 'palliated', tran, ['6A'] ). +verb( 'palm', 'palms', 'palming', 'palmed', 'palmed', tran, ['6A','15B'] ). +verb( 'palpitate', 'palpitates', 'palpitating', 'palpitated', 'palpitated', intran, ['2A','2C'] ). +verb( 'palsy', 'palsies', 'palsying', 'palsied', 'palsied', tran, [] ). +verb( 'palter', 'palters', 'paltering', 'paltered', 'paltered', intran, ['3A'] ). +verb( 'pamper', 'pampers', 'pampering', 'pampered', 'pampered', tran, ['6A'] ). +verb( 'pan', 'pans', 'panning', 'panned', 'panned', _, ['2C','3A','6A','15B'] ). +verb( 'pander', 'panders', 'pandering', 'pandered', 'pandered', intran, ['3A'] ). +verb( 'panel', 'panels', 'panelling', 'panelled', 'panelled', tran, [] ). +verb( 'panhandle', 'panhandles', 'panhandling', 'panhandled', 'panhandled', intran, [] ). +verb( 'panic', 'panics', 'panicking', 'panicked', 'panicked', intran, [] ). +verb( 'pant', 'pants', 'panting', 'panted', 'panted', _, ['2A','2C','3A','6A','15B'] ). +verb( 'paper', 'papers', 'papering', 'papered', 'papered', tran, ['6A','15B'] ). +verb( 'parachute', 'parachutes', 'parachuting', 'parachuted', 'parachuted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'parade', 'parades', 'parading', 'paraded', 'paraded', _, ['2A','6A'] ). +verb( 'paragraph', 'paragraphs', 'paragraphing', 'paragraphed', 'paragraphed', tran, [] ). +verb( 'parallel', 'parallels', 'parallelling', 'parallelled', 'parallelled', tran, ['6A'] ). +verb( 'paralyse', 'paralyses', 'paralysing', 'paralysed', 'paralysed', tran, ['6A'] ). +verb( 'paralyze', 'paralyzes', 'paralyzing', 'paralyzed', 'paralyzed', tran, ['6A'] ). +verb( 'paraphrase', 'paraphrases', 'paraphrasing', 'paraphrased', 'paraphrased', tran, ['6A'] ). +verb( 'parboil', 'parboils', 'parboiling', 'parboiled', 'parboiled', tran, ['6A'] ). +verb( 'parcel', 'parcels', 'parcelling', 'parcelled', 'parcelled', tran, ['6A','15B'] ). +verb( 'parch', 'parches', 'parching', 'parched', 'parched', tran, ['6A'] ). +verb( 'pardon', 'pardons', 'pardoning', 'pardoned', 'pardoned', tran, ['6A','12B','13B'] ). +verb( 'pare', 'pares', 'paring', 'pared', 'pared', tran, ['6A','15B'] ). +verb( 'park', 'parks', 'parking', 'parked', 'parked', _, ['2A','6A','15A'] ). +verb( 'parley', 'parleys', 'parleying', 'parleyed', 'parleyed', intran, ['2A','3A'] ). +verb( 'parody', 'parodies', 'parodying', 'parodied', 'parodied', tran, ['6A'] ). +verb( 'parole', 'paroles', 'paroling', 'paroled', 'paroled', tran, ['6A'] ). +verb( 'parry', 'parries', 'parrying', 'parried', 'parried', tran, ['6A'] ). +verb( 'parse', 'parses', 'parsing', 'parsed', 'parsed', tran, ['6A'] ). +verb( 'part', 'parts', 'parting', 'parted', 'parted', _, ['2A','2D','3A','6A'] ). +verb( 'partake', 'partakes', 'partaking', 'partook', 'partaken', _, ['3A'] ). +verb( 'participate', 'participates', 'participating', 'participated', 'participated', intran, ['2A','3A'] ). +verb( 'particularize', 'particularizes', 'particularizing', 'particularized', 'particularized', _, ['2A','6A'] ). +verb( 'partition', 'partitions', 'partitioning', 'partitioned', 'partitioned', tran, ['6A','15B'] ). +verb( 'partner', 'partners', 'partnering', 'partnered', 'partnered', tran, ['6A','15A'] ). +verb( 'pass', 'passes', 'passing', 'passed', 'passed', _, ['2A','2C','3A','6A','12A','13A','14','15A','15B'] ). +verb( 'paste', 'pastes', 'pasting', 'pasted', 'pasted', tran, ['6A','15A','15B'] ). +verb( 'pasteurize', 'pasteurizes', 'pasteurizing', 'pasteurized', 'pasteurized', tran, ['6A'] ). +verb( 'pasture', 'pastures', 'pasturing', 'pastured', 'pastured', _, ['2A','6A'] ). +verb( 'pat', 'pats', 'patting', 'patted', 'patted', _, ['2A','6A','15A'] ). +verb( 'patch', 'patches', 'patching', 'patched', 'patched', tran, ['6A','15B'] ). +verb( 'patent', 'patents', 'patenting', 'patented', 'patented', tran, ['6A'] ). +verb( 'patrol', 'patrols', 'patrolling', 'patrolled', 'patrolled', _, ['2A','6A'] ). +verb( 'patronize', 'patronizes', 'patronizing', 'patronized', 'patronized', tran, ['6A'] ). +verb( 'patter', 'patters', 'pattering', 'pattered', 'pattered', _, ['2A','2C','6A'] ). +verb( 'pattern', 'patterns', 'patterning', 'patterned', 'patterned', tran, ['14'] ). +verb( 'pauperize', 'pauperizes', 'pauperizing', 'pauperized', 'pauperized', tran, ['6A'] ). +verb( 'pause', 'pauses', 'pausing', 'paused', 'paused', intran, ['2A','4A'] ). +verb( 'pave', 'paves', 'paving', 'paved', 'paved', tran, ['6A'] ). +verb( 'paw', 'paws', 'pawing', 'pawed', 'pawed', tran, ['6A','15B'] ). +verb( 'pawn', 'pawns', 'pawning', 'pawned', 'pawned', tran, ['6A'] ). +verb( 'pay', 'pays', 'paying', 'paid', 'paid', _, ['2A','3A','6A','12A','12B','13A','13B','14','15B'] ). +verb( 'peach', 'peaches', 'peaching', 'peached', 'peached', _, ['2A','3A','6A'] ). +verb( 'peak', 'peaks', 'peaking', 'peaked', 'peaked', intran, ['2A'] ). +verb( 'peal', 'peals', 'pealing', 'pealed', 'pealed', _, ['2A','2C','6A'] ). +verb( 'pearl', 'pearls', 'pearling', 'pearled', 'pearled', intran, [] ). +verb( 'peck', 'pecks', 'pecking', 'pecked', 'pecked', _, ['2A','2C','3A','6A'] ). +verb( 'peculate', 'peculates', 'peculating', 'peculated', 'peculated', _, [] ). +verb( 'pedal', 'pedals', 'pedalling', 'pedalled', 'pedalled', _, ['2A','2C','6A'] ). +verb( 'peddle', 'peddles', 'peddling', 'peddled', 'peddled', _, ['2A','6A'] ). +verb( 'pee', 'pees', 'peeing', 'peed', 'peed', intran, ['2A'] ). +verb( 'peek', 'peeks', 'peeking', 'peeked', 'peeked', intran, [] ). +verb( 'peel', 'peels', 'peeling', 'peeled', 'peeled', _, ['2A','2C','6A','15B'] ). +verb( 'peep', 'peeps', 'peeping', 'peeped', 'peeped', intran, ['2A','2C'] ). +verb( 'peer', 'peers', 'peering', 'peered', 'peered', intran, ['2A','3A'] ). +verb( 'peeve', 'peeves', 'peeving', 'peeved', 'peeved', tran, [] ). +verb( 'peg', 'pegs', 'pegging', 'pegged', 'pegged', _, ['2C','6A','15B'] ). +verb( 'pelt', 'pelts', 'pelting', 'pelted', 'pelted', _, ['2C','6A','14'] ). +verb( 'pen', 'pens', 'penning', 'penned', 'penned', tran, ['15A','15B'] ). +verb( 'penalize', 'penalizes', 'penalizing', 'penalized', 'penalized', tran, ['6A','14'] ). +verb( 'pencil', 'pencils', 'pencilling', 'pencilled', 'pencilled', tran, ['6A'] ). +verb( 'penetrate', 'penetrates', 'penetrating', 'penetrated', 'penetrated', _, ['3A','6A'] ). +verb( 'pension', 'pensions', 'pensioning', 'pensioned', 'pensioned', tran, ['15B'] ). +verb( 'people', 'peoples', 'peopling', 'peopled', 'peopled', tran, ['6A'] ). +verb( 'pep', 'peps', 'pepping', 'pepped', 'pepped', tran, ['15B'] ). +verb( 'pepper', 'peppers', 'peppering', 'peppered', 'peppered', tran, ['6A'] ). +verb( 'perambulate', 'perambulates', 'perambulating', 'perambulated', 'perambulated', _, ['2A','6A'] ). +verb( 'perceive', 'perceives', 'perceiving', 'perceived', 'perceived', tran, ['6A','8','9','10','18A','19A','25'] ). +verb( 'perch', 'perches', 'perching', 'perched', 'perched', _, ['2C'] ). +verb( 'percolate', 'percolates', 'percolating', 'percolated', 'percolated', _, ['2A','3A','6A'] ). +verb( 'perfect', 'perfects', 'perfecting', 'perfected', 'perfected', tran, ['6A'] ). +verb( 'perforate', 'perforates', 'perforating', 'perforated', 'perforated', tran, ['6A'] ). +verb( 'perform', 'performs', 'performing', 'performed', 'performed', _, ['2A','6A'] ). +verb( 'perfume', 'perfumes', 'perfuming', 'perfumed', 'perfumed', tran, ['6A'] ). +verb( 'peril', 'perils', 'perilling', 'perilled', 'perilled', tran, [] ). +verb( 'perish', 'perishes', 'perishing', 'perished', 'perished', _, ['2A','2C','6A'] ). +verb( 'perjure', 'perjures', 'perjuring', 'perjured', 'perjured', tran, ['6A'] ). +verb( 'perk', 'perks', 'perking', 'perked', 'perked', _, ['2C','15B'] ). +verb( 'perm', 'perms', 'perming', 'permed', 'permed', tran, [] ). +verb( 'permeate', 'permeates', 'permeating', 'permeated', 'permeated', _, ['3A','6A'] ). +verb( 'permit', 'permits', 'permitting', 'permitted', 'permitted', _, ['3A','6A','6C','17','19C'] ). +verb( 'permute', 'permutes', 'permuting', 'permuted', 'permuted', tran, ['6A'] ). +verb( 'perpetrate', 'perpetrates', 'perpetrating', 'perpetrated', 'perpetrated', tran, ['6A'] ). +verb( 'perpetuate', 'perpetuates', 'perpetuating', 'perpetuated', 'perpetuated', tran, ['6A'] ). +verb( 'perplex', 'perplexes', 'perplexing', 'perplexed', 'perplexed', tran, ['6A','14'] ). +verb( 'persecute', 'persecutes', 'persecuting', 'persecuted', 'persecuted', tran, ['6A'] ). +verb( 'persevere', 'perseveres', 'persevering', 'persevered', 'persevered', intran, ['2A','3A'] ). +verb( 'persist', 'persists', 'persisting', 'persisted', 'persisted', intran, ['2A','3A'] ). +verb( 'personalize', 'personalizes', 'personalizing', 'personalized', 'personalized', tran, ['6A'] ). +verb( 'personate', 'personates', 'personating', 'personated', 'personated', tran, ['6A'] ). +verb( 'personify', 'personifies', 'personifying', 'personified', 'personified', tran, ['6A'] ). +verb( 'perspire', 'perspires', 'perspiring', 'perspired', 'perspired', intran, ['2A'] ). +verb( 'persuade', 'persuades', 'persuading', 'persuaded', 'persuaded', tran, ['11','14','17'] ). +verb( 'pertain', 'pertains', 'pertaining', 'pertained', 'pertained', intran, ['3A'] ). +verb( 'perturb', 'perturbs', 'perturbing', 'perturbed', 'perturbed', tran, ['6A'] ). +verb( 'peruse', 'peruses', 'perusing', 'perused', 'perused', tran, ['6A'] ). +verb( 'pervade', 'pervades', 'pervading', 'pervaded', 'pervaded', tran, ['6A'] ). +verb( 'pervert', 'perverts', 'perverting', 'perverted', 'perverted', tran, ['6A'] ). +verb( 'pester', 'pesters', 'pestering', 'pestered', 'pestered', tran, ['6A','14','17'] ). +verb( 'pestle', 'pestles', 'pestling', 'pestled', 'pestled', tran, [] ). +verb( 'pet', 'pets', 'petting', 'petted', 'petted', tran, [] ). +verb( 'peter', 'peters', 'petering', 'petered', 'petered', intran, ['2C'] ). +verb( 'petition', 'petitions', 'petitioning', 'petitioned', 'petitioned', _, ['3A','6A','11','14','17'] ). +verb( 'petrify', 'petrifies', 'petrifying', 'petrified', 'petrified', _, ['2A','6A'] ). +verb( 'phase', 'phases', 'phasing', 'phased', 'phased', tran, ['6A','15B'] ). +verb( 'philander', 'philanders', 'philandering', 'philandered', 'philandered', intran, ['2A'] ). +verb( 'philosophize', 'philosophizes', 'philosophizing', 'philosophized', 'philosophized', intran, ['2A'] ). +verb( 'phone', 'phones', 'phoning', 'phoned', 'phoned', _, ['2A','4A','6A','11','12A','13A'] ). +verb( 'photocopy', 'photocopies', 'photocopying', 'photocopied', 'photocopied', tran, ['6A'] ). +verb( 'photograph', 'photographs', 'photographing', 'photographed', 'photographed', tran, ['6A'] ). +verb( 'photosensitize', 'photosensitizes', 'photosensitizing', 'photosensitized', 'photosensitized', tran, [] ). +verb( 'photostat', 'photostats', 'photostatting', 'photostatted', 'photostatted', tran, [] ). +verb( 'phrase', 'phrases', 'phrasing', 'phrased', 'phrased', tran, ['6A'] ). +verb( 'pick', 'picks', 'picking', 'picked', 'picked', _, ['3A','6A','15B'] ). +verb( 'picket', 'pickets', 'picketing', 'picketed', 'picketed', _, ['2A','6A'] ). +verb( 'pickle', 'pickles', 'pickling', 'pickled', 'pickled', tran, ['6A'] ). +verb( 'picnic', 'picnics', 'picnicking', 'picnicked', 'picnicked', intran, [] ). +verb( 'picture', 'pictures', 'picturing', 'pictured', 'pictured', tran, ['6A','14'] ). +verb( 'piddle', 'piddles', 'piddling', 'piddled', 'piddled', intran, [] ). +verb( 'piece', 'pieces', 'piecing', 'pieced', 'pieced', tran, ['6A','15A','15B'] ). +verb( 'pierce', 'pierces', 'piercing', 'pierced', 'pierced', _, ['2C','6A'] ). +verb( 'piffle', 'piffles', 'piffling', 'piffled', 'piffled', intran, [] ). +verb( 'pig', 'pigs', 'pigging', 'pigged', 'pigged', intran, [] ). +verb( 'pigeonhole', 'pigeonholes', 'pigeonholing', 'pigeonholed', 'pigeonholed', tran, [] ). +verb( 'pile', 'piles', 'piling', 'piled', 'piled', _, ['2C','6A','15A','15B'] ). +verb( 'pilfer', 'pilfers', 'pilfering', 'pilfered', 'pilfered', _, ['2A','6A'] ). +verb( 'pillage', 'pillages', 'pillaging', 'pillaged', 'pillaged', tran, [] ). +verb( 'pillow', 'pillows', 'pillowing', 'pillowed', 'pillowed', tran, ['6A'] ). +verb( 'pilot', 'pilots', 'piloting', 'piloted', 'piloted', tran, ['6A','15A'] ). +verb( 'pimp', 'pimps', 'pimping', 'pimped', 'pimped', intran, ['2A','3A'] ). +verb( 'pin', 'pins', 'pinning', 'pinned', 'pinned', tran, ['15A','15B'] ). +verb( 'pinch', 'pinches', 'pinching', 'pinched', 'pinched', _, ['2A','6A','15A','15B'] ). +verb( 'pine', 'pines', 'pining', 'pined', 'pined', intran, ['2A','2C','3A','4C'] ). +verb( 'ping', 'pings', 'pinging', 'pinged', 'pinged', intran, [] ). +verb( 'pinion', 'pinions', 'pinioning', 'pinioned', 'pinioned', tran, ['6A','15A','15B'] ). +verb( 'pink', 'pinks', 'pinking', 'pinked', 'pinked', _, ['6A','15B'] ). +verb( 'pinnacle', 'pinnacles', 'pinnacling', 'pinnacled', 'pinnacled', tran, [] ). +verb( 'pinpoint', 'pinpoints', 'pinpointing', 'pinpointed', 'pinpointed', tran, [] ). +verb( 'pioneer', 'pioneers', 'pioneering', 'pioneered', 'pioneered', _, ['2A','6A'] ). +verb( 'pip', 'pips', 'pipping', 'pipped', 'pipped', tran, ['6A'] ). +verb( 'pipe', 'pipes', 'piping', 'piped', 'piped', _, ['2A','2C','6A','15A'] ). +verb( 'pique', 'piques', 'piquing', 'piqued', 'piqued', tran, ['6A'] ). +verb( 'pirate', 'pirates', 'pirating', 'pirated', 'pirated', tran, ['6A'] ). +verb( 'pirouette', 'pirouettes', 'pirouetting', 'pirouetted', 'pirouetted', intran, [] ). +verb( 'piss', 'pisses', 'pissing', 'pissed', 'pissed', _, [] ). +verb( 'pit', 'pits', 'pitting', 'pitted', 'pitted', tran, ['6A','14'] ). +verb( 'pitch', 'pitches', 'pitching', 'pitched', 'pitched', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'pitchfork', 'pitchforks', 'pitchforking', 'pitchforked', 'pitchforked', tran, [] ). +verb( 'pity', 'pities', 'pitying', 'pitied', 'pitied', tran, ['6A'] ). +verb( 'pivot', 'pivots', 'pivoting', 'pivoted', 'pivoted', _, ['3A','6A'] ). +verb( 'placard', 'placards', 'placarding', 'placarded', 'placarded', tran, ['6A'] ). +verb( 'placate', 'placates', 'placating', 'placated', 'placated', tran, ['6A'] ). +verb( 'place', 'places', 'placing', 'placed', 'placed', tran, ['6A','15A','15B'] ). +verb( 'plagiarize', 'plagiarizes', 'plagiarizing', 'plagiarized', 'plagiarized', tran, ['6A'] ). +verb( 'plague', 'plagues', 'plaguing', 'plagued', 'plagued', tran, ['6A','14'] ). +verb( 'plain', 'plains', 'plaining', 'plained', 'plained', _, [] ). +verb( 'plait', 'plaits', 'plaiting', 'plaited', 'plaited', tran, ['6A'] ). +verb( 'plan', 'plans', 'planning', 'planned', 'planned', tran, ['6A','7A','15B'] ). +verb( 'plane', 'planes', 'planing', 'planed', 'planed', _, ['2A','2D','15B','22'] ). +verb( 'plank', 'planks', 'planking', 'planked', 'planked', tran, ['6A','15B'] ). +verb( 'plant', 'plants', 'planting', 'planted', 'planted', tran, ['6A','15A','15B'] ). +verb( 'plash', 'plashes', 'plashing', 'plashed', 'plashed', _, ['6A'] ). +verb( 'plaster', 'plasters', 'plastering', 'plastered', 'plastered', tran, ['6A','14'] ). +verb( 'plate', 'plates', 'plating', 'plated', 'plated', tran, ['6A','14'] ). +verb( 'play', 'plays', 'playing', 'played', 'played', _, ['2A','2B','2C','3A','6A','12B','12C','13B','14','15A','15B','16B'] ). +verb( 'pleach', 'pleaches', 'pleaching', 'pleached', 'pleached', tran, ['6A'] ). +verb( 'plead', 'pleads', 'pleading', 'pleaded', 'pleaded', _, ['3A','6A'] ). +verb( 'please', 'pleases', 'pleasing', 'pleased', 'pleased', _, ['2A','6A'] ). +verb( 'pleat', 'pleats', 'pleating', 'pleated', 'pleated', tran, ['6A'] ). +verb( 'pledge', 'pledges', 'pledging', 'pledged', 'pledged', tran, ['6A'] ). +verb( 'plight', 'plights', 'plighting', 'plighted', 'plighted', tran, ['6A'] ). +verb( 'plod', 'plods', 'plodding', 'plodded', 'plodded', _, ['2C'] ). +verb( 'plonk', 'plonks', 'plonking', 'plonked', 'plonked', intran, [] ). +verb( 'plop', 'plops', 'plopping', 'plopped', 'plopped', intran, [] ). +verb( 'plot', 'plots', 'plotting', 'plotted', 'plotted', _, ['2A','3A','4A','6A','8','10','15B'] ). +verb( 'plough', 'ploughs', 'ploughing', 'ploughed', 'ploughed', _, ['3A','6A','15B'] ). +verb( 'pluck', 'plucks', 'plucking', 'plucked', 'plucked', _, ['3A','6A','15B'] ). +verb( 'plug', 'plugs', 'plugging', 'plugged', 'plugged', _, ['2C','6A','15B'] ). +verb( 'plumb', 'plumbs', 'plumbing', 'plumbed', 'plumbed', tran, ['6A'] ). +verb( 'plume', 'plumes', 'pluming', 'plumed', 'plumed', tran, ['6A'] ). +verb( 'plummet', 'plummets', 'plummetting', 'plummetted', 'plummetted', intran, ['2A'] ). +verb( 'plump', 'plumps', 'plumping', 'plumped', 'plumped', _, ['2A','2C','3A','6A','15B'] ). +verb( 'plunder', 'plunders', 'plundering', 'plundered', 'plundered', _, ['2A','6A','14'] ). +verb( 'plunge', 'plunges', 'plunging', 'plunged', 'plunged', _, ['2A','2C','6A','14'] ). +verb( 'ply', 'plies', 'plying', 'plied', 'plied', _, ['2C','6A'] ). +verb( 'poach', 'poaches', 'poaching', 'poached', 'poached', _, ['2A','3A','6A'] ). +verb( 'pocket', 'pockets', 'pocketing', 'pocketed', 'pocketed', tran, ['6A'] ). +verb( 'pod', 'pods', 'podding', 'podded', 'podded', _, ['2A','2C','6A'] ). +verb( 'point', 'points', 'pointing', 'pointed', 'pointed', _, ['2A','3A','6A','14','15B'] ). +verb( 'poise', 'poises', 'poising', 'poised', 'poised', _, ['2C','6A','15A'] ). +verb( 'poison', 'poisons', 'poisoning', 'poisoned', 'poisoned', tran, ['6A'] ). +verb( 'poke', 'pokes', 'poking', 'poked', 'poked', _, ['2C','6A','15A','15B'] ). +verb( 'polarize', 'polarizes', 'polarizing', 'polarized', 'polarized', tran, ['6A'] ). +verb( 'poleax', 'poleaxes', 'poleaxing', 'poleaxed', 'poleaxed', tran, ['6A'] ). +verb( 'poleaxe', 'poleaxes', 'poleaxing', 'poleaxed', 'poleaxed', tran, ['6A'] ). +verb( 'police', 'polices', 'policing', 'policed', 'policed', tran, ['6A'] ). +verb( 'polish', 'polishes', 'polishing', 'polished', 'polished', _, ['2A','6A','15B'] ). +verb( 'politicize', 'politicizes', 'politicizing', 'politicized', 'politicized', _, ['2A','6A'] ). +verb( 'politick', 'politicks', 'politicking', 'politicked', 'politicked', intran, ['2A'] ). +verb( 'poll', 'polls', 'polling', 'polled', 'polled', _, ['2A','2C','6A'] ). +verb( 'pollard', 'pollards', 'pollarding', 'pollarded', 'pollarded', tran, ['6A'] ). +verb( 'pollinate', 'pollinates', 'pollinating', 'pollinated', 'pollinated', tran, ['6A'] ). +verb( 'pollute', 'pollutes', 'polluting', 'polluted', 'polluted', tran, ['6A'] ). +verb( 'pomade', 'pomades', 'pomading', 'pomaded', 'pomaded', tran, [] ). +verb( 'pommel', 'pommels', 'pommelling', 'pommelled', 'pommelled', tran, [] ). +verb( 'ponder', 'ponders', 'pondering', 'pondered', 'pondered', _, ['2A','3A','6A','8','10'] ). +verb( 'poniard', 'poniards', 'poniarding', 'poniarded', 'poniarded', tran, ['6A'] ). +verb( 'pontificate', 'pontificates', 'pontificating', 'pontificated', 'pontificated', intran, ['2A'] ). +verb( 'pooh-pooh', 'pooh-poohs', 'pooh-poohing', 'pooh-poohed', 'pooh-poohed', tran, ['6A'] ). +verb( 'pool', 'pools', 'pooling', 'pooled', 'pooled', tran, ['6A'] ). +verb( 'pop', 'pops', 'popping', 'popped', 'popped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'popularize', 'popularizes', 'popularizing', 'popularized', 'popularized', tran, ['6A'] ). +verb( 'populate', 'populates', 'populating', 'populated', 'populated', tran, ['6A'] ). +verb( 'pore', 'pores', 'poring', 'pored', 'pored', intran, ['3A'] ). +verb( 'port', 'ports', 'porting', 'ported', 'ported', tran, ['6A'] ). +verb( 'portend', 'portends', 'portending', 'portended', 'portended', tran, ['6A'] ). +verb( 'portion', 'portions', 'portioning', 'portioned', 'portioned', tran, ['14','15B'] ). +verb( 'portray', 'portrays', 'portraying', 'portrayed', 'portrayed', tran, ['6A'] ). +verb( 'pose', 'poses', 'posing', 'posed', 'posed', _, ['2A','2C','3A','6A'] ). +verb( 'posh', 'poshes', 'poshing', 'poshed', 'poshed', tran, ['15B'] ). +verb( 'posit', 'posits', 'positing', 'posited', 'posited', tran, ['6A'] ). +verb( 'position', 'positions', 'positioning', 'positioned', 'positioned', tran, ['6A'] ). +verb( 'possess', 'possesses', 'possessing', 'possessed', 'possessed', tran, ['6A'] ). +verb( 'post', 'posts', 'posting', 'posted', 'posted', _, ['3A','6A','15A','15B'] ). +verb( 'postdate', 'postdates', 'postdating', 'postdated', 'postdated', tran, ['6A'] ). +verb( 'postmark', 'postmarks', 'postmarking', 'postmarked', 'postmarked', tran, [] ). +verb( 'postpone', 'postpones', 'postponing', 'postponed', 'postponed', tran, ['6A','6C'] ). +verb( 'postulate', 'postulates', 'postulating', 'postulated', 'postulated', tran, ['6A'] ). +verb( 'posture', 'postures', 'posturing', 'postured', 'postured', _, ['2A','6A'] ). +verb( 'pot', 'pots', 'potting', 'potted', 'potted', _, ['3A','6A','15B'] ). +verb( 'potter', 'potters', 'pottering', 'pottered', 'pottered', intran, ['2A','2C'] ). +verb( 'pouch', 'pouches', 'pouching', 'pouched', 'pouched', tran, ['2A','6A'] ). +verb( 'poultice', 'poultices', 'poulticing', 'poulticed', 'poulticed', tran, ['6A'] ). +verb( 'pounce', 'pounces', 'pouncing', 'pounced', 'pounced', intran, ['3A'] ). +verb( 'pound', 'pounds', 'pounding', 'pounded', 'pounded', _, ['2C','3A','6A','15A'] ). +verb( 'pour', 'pours', 'pouring', 'poured', 'poured', _, ['2C','6A','12B','13B','14','15A','15B'] ). +verb( 'pout', 'pouts', 'pouting', 'pouted', 'pouted', _, ['2A','6A'] ). +verb( 'powder', 'powders', 'powdering', 'powdered', 'powdered', _, ['2A','6A'] ). +verb( 'power', 'powers', 'powering', 'powered', 'powered', tran, ['6A'] ). +verb( 'power-dive', 'power-dives', 'power-diving', 'power-dived', 'power-dived', tran, [] ). +verb( 'powwow', 'powwows', 'powwowing', 'powwowed', 'powwowed', intran, [] ). +verb( 'pr_ecis', 'pr_ecises', 'pr_ecising', 'pr_ecised', 'pr_ecised', tran, [] ). +verb( 'practise', 'practises', 'practising', 'practised', 'practised', _, ['2A','2B','3A','4A','6A','6C'] ). +verb( 'praise', 'praises', 'praising', 'praised', 'praised', tran, ['6A'] ). +verb( 'prance', 'prances', 'prancing', 'pranced', 'pranced', intran, ['2A','2C'] ). +verb( 'prate', 'prates', 'prating', 'prated', 'prated', intran, ['2A','2C'] ). +verb( 'prattle', 'prattles', 'prattling', 'prattled', 'prattled', intran, ['2A','2C'] ). +verb( 'prawn', 'prawns', 'prawning', 'prawned', 'prawned', intran, [] ). +verb( 'pray', 'prays', 'praying', 'prayed', 'prayed', _, ['2A','3A','11','14','17'] ). +verb( 'pre-empt', 'pre-empts', 'pre-empting', 'pre-empted', 'pre-empted', tran, ['6A'] ). +verb( 'pre-exist', 'pre-exists', 'pre-existing', 'pre-existed', 'pre-existed', intran, ['2A'] ). +verb( 'preach', 'preaches', 'preaching', 'preached', 'preached', _, ['2A','2B','2C','3A','6A','12A','13A'] ). +verb( 'preachify', 'preachifies', 'preachifying', 'preachified', 'preachified', intran, [] ). +verb( 'prearrange', 'prearranges', 'prearranging', 'prearranged', 'prearranged', tran, [] ). +verb( 'precede', 'precedes', 'preceding', 'preceded', 'preceded', _, ['2A','6A'] ). +verb( 'precipitate', 'precipitates', 'precipitating', 'precipitated', 'precipitated', tran, ['6A','14'] ). +verb( 'preclude', 'precludes', 'precluding', 'precluded', 'precluded', tran, ['6A','6C','14'] ). +verb( 'preconceive', 'preconceives', 'preconceiving', 'preconceived', 'preconceived', tran, ['6A'] ). +verb( 'predecease', 'predeceases', 'predeceasing', 'predeceased', 'predeceased', tran, [] ). +verb( 'predestinate', 'predestinates', 'predestinating', 'predestinated', 'predestinated', tran, [] ). +verb( 'predestine', 'predestines', 'predestining', 'predestined', 'predestined', tran, ['14','17'] ). +verb( 'predetermine', 'predetermines', 'predetermining', 'predetermined', 'predetermined', tran, ['6A','17'] ). +verb( 'predicate', 'predicates', 'predicating', 'predicated', 'predicated', tran, ['6A','9','17'] ). +verb( 'predict', 'predicts', 'predicting', 'predicted', 'predicted', tran, ['6A','9','10'] ). +verb( 'predigest', 'predigests', 'predigesting', 'predigested', 'predigested', tran, [] ). +verb( 'predispose', 'predisposes', 'predisposing', 'predisposed', 'predisposed', tran, ['14','17'] ). +verb( 'predominate', 'predominates', 'predominating', 'predominated', 'predominated', intran, ['2A','3A'] ). +verb( 'preen', 'preens', 'preening', 'preened', 'preened', tran, ['6A','14'] ). +verb( 'prefabricate', 'prefabricates', 'prefabricating', 'prefabricated', 'prefabricated', tran, ['6A'] ). +verb( 'preface', 'prefaces', 'prefacing', 'prefaced', 'prefaced', tran, ['14'] ). +verb( 'prefer', 'prefers', 'preferring', 'preferred', 'preferred', tran, ['6A','6D','7A','9','14','17'] ). +verb( 'prefigure', 'prefigures', 'prefiguring', 'prefigured', 'prefigured', tran, ['6A','9','10'] ). +verb( 'prefix', 'prefixes', 'prefixing', 'prefixed', 'prefixed', tran, ['6A','14'] ). +verb( 'preheat', 'preheats', 'preheating', 'preheated', 'preheated', tran, ['6A'] ). +verb( 'prejudge', 'prejudges', 'prejudging', 'prejudged', 'prejudged', tran, ['6A'] ). +verb( 'prejudice', 'prejudices', 'prejudicing', 'prejudiced', 'prejudiced', tran, ['6A','15A'] ). +verb( 'prelude', 'preludes', 'preluding', 'preluded', 'preluded', tran, ['6A'] ). +verb( 'premeditate', 'premeditates', 'premeditating', 'premeditated', 'premeditated', tran, ['6A'] ). +verb( 'premise', 'premises', 'premising', 'premised', 'premised', tran, ['6A','9'] ). +verb( 'premiss', 'premisses', 'premissing', 'premissed', 'premissed', tran, ['6A','9'] ). +verb( 'preoccupy', 'preoccupies', 'preoccupying', 'preoccupied', 'preoccupied', tran, ['6A'] ). +verb( 'preordain', 'preordains', 'preordaining', 'preordained', 'preordained', tran, ['6A','9'] ). +verb( 'prepare', 'prepares', 'preparing', 'prepared', 'prepared', _, ['3A','6A','7A','14'] ). +verb( 'prepay', 'prepays', 'prepaying', 'prepaid', 'prepaid', tran, ['6A'] ). +verb( 'preponderate', 'preponderates', 'preponderating', 'preponderated', 'preponderated', intran, ['2A','2C'] ). +verb( 'prepossess', 'prepossesses', 'prepossessing', 'prepossessed', 'prepossessed', tran, ['6A','15A'] ). +verb( 'prerecord', 'prerecords', 'prerecording', 'prerecorded', 'prerecorded', tran, ['6A'] ). +verb( 'presage', 'presages', 'presaging', 'presaged', 'presaged', tran, ['6A'] ). +verb( 'prescribe', 'prescribes', 'prescribing', 'prescribed', 'prescribed', _, ['2A','3A','6A','8','10','14','21'] ). +verb( 'present', 'presents', 'presenting', 'presented', 'presented', tran, ['6A','14','15A'] ). +verb( 'preserve', 'preserves', 'preserving', 'preserved', 'preserved', tran, ['6A','14'] ). +verb( 'preside', 'presides', 'presiding', 'presided', 'presided', intran, ['2A','2C','3A'] ). +verb( 'press', 'presses', 'pressing', 'pressed', 'pressed', _, ['2A','2C','3A','4A','6A','14','15A','15B','17','22'] ). +verb( 'presume', 'presumes', 'presuming', 'presumed', 'presumed', _, ['3A','6A','7A','9','25'] ). +verb( 'presuppose', 'presupposes', 'presupposing', 'presupposed', 'presupposed', tran, ['6A','9'] ). +verb( 'pretend', 'pretends', 'pretending', 'pretended', 'pretended', _, ['3A','6A','7A','9'] ). +verb( 'prettify', 'prettifies', 'prettifying', 'prettified', 'prettified', tran, ['6A'] ). +verb( 'prevail', 'prevails', 'prevailing', 'prevailed', 'prevailed', intran, ['2A','3A'] ). +verb( 'prevaricate', 'prevaricates', 'prevaricating', 'prevaricated', 'prevaricated', intran, ['2A'] ). +verb( 'prevent', 'prevents', 'preventing', 'prevented', 'prevented', tran, ['6A','14','19C'] ). +verb( 'preview', 'previews', 'previewing', 'previewed', 'previewed', tran, [] ). +verb( 'prey', 'preys', 'preying', 'preyed', 'preyed', intran, ['3A'] ). +verb( 'price', 'prices', 'pricing', 'priced', 'priced', tran, ['6A'] ). +verb( 'prick', 'pricks', 'pricking', 'pricked', 'pricked', _, ['2A','6A','15B'] ). +verb( 'prickle', 'prickles', 'prickling', 'prickled', 'prickled', _, [] ). +verb( 'pride', 'prides', 'priding', 'prided', 'prided', tran, [] ). +verb( 'prim', 'prims', 'primming', 'primmed', 'primmed', tran, [] ). +verb( 'prime', 'primes', 'priming', 'primed', 'primed', tran, ['6A'] ). +verb( 'primp', 'primps', 'primping', 'primped', 'primped', tran, [] ). +verb( 'prink', 'prinks', 'prinking', 'prinked', 'prinked', tran, [] ). +verb( 'print', 'prints', 'printing', 'printed', 'printed', _, ['2A','6A','15B'] ). +verb( 'prise', 'prises', 'prising', 'prised', 'prised', tran, ['15A','15B'] ). +verb( 'prize', 'prizes', 'prizing', 'prized', 'prized', tran, ['15A','15B'] ). +verb( 'probate', 'probates', 'probating', 'probated', 'probated', tran, [] ). +verb( 'probe', 'probes', 'probing', 'probed', 'probed', tran, ['6A'] ). +verb( 'proceed', 'proceeds', 'proceeding', 'proceeded', 'proceeded', intran, ['2A','3A','4C'] ). +verb( 'process', 'processes', 'processing', 'processed', 'processed', tran, ['6A'] ). +verb( 'process', 'processes', 'processing', 'processed', 'processed', intran, [] ). +verb( 'proclaim', 'proclaims', 'proclaiming', 'proclaimed', 'proclaimed', tran, ['6A','9','23','25'] ). +verb( 'procrastinate', 'procrastinates', 'procrastinating', 'procrastinated', 'procrastinated', intran, ['2A'] ). +verb( 'procreate', 'procreates', 'procreating', 'procreated', 'procreated', tran, ['6A'] ). +verb( 'procure', 'procures', 'procuring', 'procured', 'procured', tran, ['6A','12B','13B'] ). +verb( 'prod', 'prods', 'prodding', 'prodded', 'prodded', _, ['3A','6A'] ). +verb( 'produce', 'produces', 'producing', 'produced', 'produced', _, ['2A','6A'] ). +verb( 'profane', 'profanes', 'profaning', 'profaned', 'profaned', tran, ['6A'] ). +verb( 'profess', 'professes', 'professing', 'professed', 'professed', _, ['6A','7A','9','25'] ). +verb( 'proffer', 'proffers', 'proffering', 'proffered', 'proffered', tran, ['6A','7A'] ). +verb( 'profile', 'profiles', 'profiling', 'profiled', 'profiled', tran, [] ). +verb( 'profit', 'profits', 'profiting', 'profited', 'profited', _, ['3A','6A','13A'] ). +verb( 'profiteer', 'profiteers', 'profiteering', 'profiteered', 'profiteered', intran, ['2A'] ). +verb( 'prognosticate', 'prognosticates', 'prognosticating', 'prognosticated', 'prognosticated', tran, ['6A','9'] ). +verb( 'program', 'programs', 'programming', 'programmed', 'programmed', tran, ['6A'] ). +verb( 'programme', 'programmes', 'programming', 'programmed', 'programmed', tran, ['6A'] ). +verb( 'progress', 'progresses', 'progressing', 'progressed', 'progressed', intran, ['2A','2C'] ). +verb( 'prohibit', 'prohibits', 'prohibiting', 'prohibited', 'prohibited', tran, ['6A','14'] ). +verb( 'project', 'projects', 'projecting', 'projected', 'projected', _, ['2A','2C','6A','14','15A'] ). +verb( 'prolapse', 'prolapses', 'prolapsing', 'prolapsed', 'prolapsed', intran, [] ). +verb( 'proliferate', 'proliferates', 'proliferating', 'proliferated', 'proliferated', _, ['2A','6A'] ). +verb( 'prolong', 'prolongs', 'prolonging', 'prolonged', 'prolonged', tran, ['6A'] ). +verb( 'promenade', 'promenades', 'promenading', 'promenaded', 'promenaded', _, ['2A','2C','6A','15A'] ). +verb( 'promise', 'promises', 'promising', 'promised', 'promised', _, ['2A','6A','7A','9','11','12A','13A','17'] ). +verb( 'promote', 'promotes', 'promoting', 'promoted', 'promoted', tran, ['6A','14'] ). +verb( 'prompt', 'prompts', 'prompting', 'prompted', 'prompted', tran, ['6A','17'] ). +verb( 'promulgate', 'promulgates', 'promulgating', 'promulgated', 'promulgated', tran, ['6A'] ). +verb( 'pronounce', 'pronounces', 'pronouncing', 'pronounced', 'pronounced', _, ['2A','3A','6A','9','22','25'] ). +verb( 'proof', 'proofs', 'proofing', 'proofed', 'proofed', tran, ['6A'] ). +verb( 'proofread', 'proofreads', 'proofreading', 'proofread', 'proofread', _, ['2A','6A'] ). +verb( 'prop', 'props', 'propping', 'propped', 'propped', tran, ['6A','15A','15B','22'] ). +verb( 'propagandize', 'propagandizes', 'propagandizing', 'propagandized', 'propagandized', intran, [] ). +verb( 'propagate', 'propagates', 'propagating', 'propagated', 'propagated', _, ['2A','6A'] ). +verb( 'propel', 'propels', 'propelling', 'propelled', 'propelled', tran, ['6A','15A'] ). +verb( 'prophesy', 'prophesies', 'prophesying', 'prophesied', 'prophesied', _, ['2A','2C','6A','9','10'] ). +verb( 'propitiate', 'propitiates', 'propitiating', 'propitiated', 'propitiated', tran, ['6A'] ). +verb( 'proportion', 'proportions', 'proportioning', 'proportioned', 'proportioned', tran, ['6A','14'] ). +verb( 'propose', 'proposes', 'proposing', 'proposed', 'proposed', _, ['2A','6A','6D','7A','9','14'] ). +verb( 'proposition', 'propositions', 'propositioning', 'propositioned', 'propositioned', tran, ['6A'] ). +verb( 'propound', 'propounds', 'propounding', 'propounded', 'propounded', tran, ['6A'] ). +verb( 'prorogue', 'prorogues', 'proroguing', 'prorogued', 'prorogued', tran, ['6A'] ). +verb( 'proscribe', 'proscribes', 'proscribing', 'proscribed', 'proscribed', tran, ['6A'] ). +verb( 'prosecute', 'prosecutes', 'prosecuting', 'prosecuted', 'prosecuted', tran, ['6A','14'] ). +verb( 'proselytize', 'proselytizes', 'proselytizing', 'proselytized', 'proselytized', _, ['2A','6A'] ). +verb( 'prospect', 'prospects', 'prospecting', 'prospected', 'prospected', intran, ['2A','3A'] ). +verb( 'prosper', 'prospers', 'prospering', 'prospered', 'prospered', _, ['2A','6A'] ). +verb( 'prostitute', 'prostitutes', 'prostituting', 'prostituted', 'prostituted', tran, ['6A'] ). +verb( 'prostrate', 'prostrates', 'prostrating', 'prostrated', 'prostrated', tran, ['6A'] ). +verb( 'protect', 'protects', 'protecting', 'protected', 'protected', tran, ['6A','14'] ). +verb( 'protest', 'protests', 'protesting', 'protested', 'protested', _, ['2A','3A','6A','9'] ). +verb( 'protract', 'protracts', 'protracting', 'protracted', 'protracted', tran, ['6A'] ). +verb( 'protrude', 'protrudes', 'protruding', 'protruded', 'protruded', _, ['2A','6A'] ). +verb( 'prove', 'proves', 'proving', 'proved', 'proved', _, ['4D','6A','9','14','25'] ). +verb( 'provide', 'provides', 'providing', 'provided', 'provided', _, ['3A','6A','9','14'] ). +verb( 'provision', 'provisions', 'provisioning', 'provisioned', 'provisioned', tran, ['6A'] ). +verb( 'provoke', 'provokes', 'provoking', 'provoked', 'provoked', tran, ['6A','14','17'] ). +verb( 'prowl', 'prowls', 'prowling', 'prowled', 'prowled', _, ['2A','2C','6A'] ). +verb( 'prune', 'prunes', 'pruning', 'pruned', 'pruned', tran, ['6A','14','15B'] ). +verb( 'pry', 'pries', 'prying', 'pried', 'pried', _, ['2A','2C','3A','15A','15B','22'] ). +verb( 'psychoanalyse', 'psychoanalyses', 'psychoanalysing', 'psychoanalysed', 'psychoanalysed', tran, [] ). +verb( 'psychoanalyze', 'psychoanalyzes', 'psychoanalyzing', 'psychoanalyzed', 'psychoanalyzed', tran, [] ). +verb( 'pub-crawl', 'pub-crawls', 'pub-crawling', 'pub-crawled', 'pub-crawled', intran, [] ). +verb( 'publicize', 'publicizes', 'publicizing', 'publicized', 'publicized', tran, ['6A'] ). +verb( 'publish', 'publishes', 'publishing', 'published', 'published', tran, ['6A'] ). +verb( 'pucker', 'puckers', 'puckering', 'puckered', 'puckered', _, ['2A','2C','6A','15B'] ). +verb( 'puddle', 'puddles', 'puddling', 'puddled', 'puddled', tran, [] ). +verb( 'puff', 'puffs', 'puffing', 'puffed', 'puffed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'puke', 'pukes', 'puking', 'puked', 'puked', _, [] ). +verb( 'pule', 'pules', 'puling', 'puled', 'puled', intran, ['2A'] ). +verb( 'pull', 'pulls', 'pulling', 'pulled', 'pulled', _, ['2A','2C','3A','6A','15A','15B','22'] ). +verb( 'pullulate', 'pullulates', 'pullulating', 'pullulated', 'pullulated', intran, [] ). +verb( 'pulp', 'pulps', 'pulping', 'pulped', 'pulped', _, ['2A','6A'] ). +verb( 'pulsate', 'pulsates', 'pulsating', 'pulsated', 'pulsated', _, ['2A','6A'] ). +verb( 'pulse', 'pulses', 'pulsing', 'pulsed', 'pulsed', intran, ['2C'] ). +verb( 'pulverize', 'pulverizes', 'pulverizing', 'pulverized', 'pulverized', _, ['2A','6A'] ). +verb( 'pummel', 'pummels', 'pummelling', 'pummelled', 'pummelled', tran, ['6A','15B'] ). +verb( 'pump', 'pumps', 'pumping', 'pumped', 'pumped', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'pun', 'puns', 'punning', 'punned', 'punned', intran, ['2A','3A'] ). +verb( 'punch', 'punches', 'punching', 'punched', 'punched', tran, ['6A','15A','15B'] ). +verb( 'punctuate', 'punctuates', 'punctuating', 'punctuated', 'punctuated', tran, ['6A','15A'] ). +verb( 'puncture', 'punctures', 'puncturing', 'punctured', 'punctured', _, ['2A','6A'] ). +verb( 'punish', 'punishes', 'punishing', 'punished', 'punished', tran, ['6A','14'] ). +verb( 'punt', 'punts', 'punting', 'punted', 'punted', _, ['2A','6A'] ). +verb( 'purchase', 'purchases', 'purchasing', 'purchased', 'purchased', tran, ['6A'] ). +verb( 'purge', 'purges', 'purging', 'purged', 'purged', tran, ['6A','14','15A','15B'] ). +verb( 'purify', 'purifies', 'purifying', 'purified', 'purified', tran, ['6A','14'] ). +verb( 'purl', 'purls', 'purling', 'purled', 'purled', _, [] ). +verb( 'purloin', 'purloins', 'purloining', 'purloined', 'purloined', tran, ['6A'] ). +verb( 'purport', 'purports', 'purporting', 'purported', 'purported', tran, ['6A','7A','9'] ). +verb( 'purpose', 'purposes', 'purposing', 'purposed', 'purposed', tran, ['6A','6D','7A','9'] ). +verb( 'purr', 'purrs', 'purring', 'purred', 'purred', _, ['2A','2C','6A'] ). +verb( 'purse', 'purses', 'pursing', 'pursed', 'pursed', tran, ['6A','15B'] ). +verb( 'pursue', 'pursues', 'pursuing', 'pursued', 'pursued', tran, ['6A'] ). +verb( 'purvey', 'purveys', 'purveying', 'purveyed', 'purveyed', _, ['3A','6A','14'] ). +verb( 'push', 'pushes', 'pushing', 'pushed', 'pushed', _, ['2A','2C','3A','6A','14','15A','15B','17','22'] ). +verb( 'pussyfoot', 'pussyfoots', 'pussyfooting', 'pussyfooted', 'pussyfooted', intran, ['2A','2C'] ). +verb( 'put', 'puts', 'putting', 'put', 'put', _, ['2C','6A','14','15A','15B','22'] ). +verb( 'put', 'puts', 'putting', 'putted', 'putted', _, [] ). +verb( 'putrefy', 'putrefies', 'putrefying', 'putrefied', 'putrefied', _, ['2A','6A'] ). +verb( 'putt', 'putts', 'putting', 'putted', 'putted', _, ['2A','6A'] ). +verb( 'putter', 'putters', 'puttering', 'puttered', 'puttered', _, [] ). +verb( 'putty', 'putties', 'puttying', 'puttied', 'puttied', tran, ['6A','15B'] ). +verb( 'puzzle', 'puzzles', 'puzzling', 'puzzled', 'puzzled', _, ['3A','6A','15B'] ). +verb( 'quack', 'quacks', 'quacking', 'quacked', 'quacked', intran, [] ). +verb( 'quadruple', 'quadruples', 'quadrupling', 'quadrupled', 'quadrupled', _, ['2A','6A'] ). +verb( 'quadruplicate', 'quadruplicates', 'quadruplicating', 'quadruplicated', 'quadruplicated', tran, ['6A'] ). +verb( 'quaff', 'quaffs', 'quaffing', 'quaffed', 'quaffed', _, ['2A','6A','15B'] ). +verb( 'quail', 'quails', 'quailing', 'quailed', 'quailed', intran, ['2A','3A'] ). +verb( 'quake', 'quakes', 'quaking', 'quaked', 'quaked', intran, ['2A','2C'] ). +verb( 'qualify', 'qualifies', 'qualifying', 'qualified', 'qualified', _, ['2C','3A','4A','6A','14','16B','17'] ). +verb( 'quantify', 'quantifies', 'quantifying', 'quantified', 'quantified', tran, ['6A'] ). +verb( 'quarantine', 'quarantines', 'quarantining', 'quarantined', 'quarantined', tran, ['6A'] ). +verb( 'quarrel', 'quarrels', 'quarrelling', 'quarrelled', 'quarrelled', intran, ['2A','2C','3A'] ). +verb( 'quarry', 'quarries', 'quarrying', 'quarried', 'quarried', _, ['2A','2C','6A','15A','15B'] ). +verb( 'quarter', 'quarters', 'quartering', 'quartered', 'quartered', tran, ['6A','15A'] ). +verb( 'quash', 'quashes', 'quashing', 'quashed', 'quashed', tran, ['6A'] ). +verb( 'quaver', 'quavers', 'quavering', 'quavered', 'quavered', _, ['2A','6A','15B'] ). +verb( 'queen', 'queens', 'queening', 'queened', 'queened', tran, [] ). +verb( 'queer', 'queers', 'queering', 'queered', 'queered', tran, ['6A'] ). +verb( 'quell', 'quells', 'quelling', 'quelled', 'quelled', tran, ['6A'] ). +verb( 'quench', 'quenches', 'quenching', 'quenched', 'quenched', tran, ['6A'] ). +verb( 'query', 'queries', 'querying', 'queried', 'queried', tran, ['6A','10'] ). +verb( 'quest', 'quests', 'questing', 'quested', 'quested', intran, ['3A'] ). +verb( 'question', 'questions', 'questioning', 'questioned', 'questioned', tran, ['6A','10'] ). +verb( 'queue', 'queues', 'queueing', 'queued', 'queued', intran, ['2A','2C','3A'] ). +verb( 'quibble', 'quibbles', 'quibbling', 'quibbled', 'quibbled', intran, [] ). +verb( 'quick-freeze', 'quick-freezes', 'quick-freezing', 'quick-froze', 'quick-frozen', tran, [] ). +verb( 'quicken', 'quickens', 'quickening', 'quickened', 'quickened', _, ['2A','6A'] ). +verb( 'quiet', 'quiets', 'quieting', 'quieted', 'quieted', _, [] ). +verb( 'quieten', 'quietens', 'quietening', 'quietened', 'quietened', _, ['2C','6A','15B'] ). +verb( 'quilt', 'quilts', 'quilting', 'quilted', 'quilted', tran, [] ). +verb( 'quip', 'quips', 'quipping', 'quipped', 'quipped', intran, [] ). +verb( 'quit', 'quits', 'quitting', 'quitted', 'quitted', tran, ['2A','6A','6D'] ). +verb( 'quiver', 'quivers', 'quivering', 'quivered', 'quivered', _, ['2A','6A'] ). +verb( 'quiz', 'quizzes', 'quizzing', 'quizzed', 'quizzed', tran, ['6A'] ). +verb( 'quote', 'quotes', 'quoting', 'quoted', 'quoted', tran, ['6A','13A','14'] ). +verb( 'rabbit', 'rabbits', 'rabbiting', 'rabbited', 'rabbited', intran, [] ). +verb( 'race', 'races', 'racing', 'raced', 'raced', _, ['2A','2C','3A','4A','6A','15A'] ). +verb( 'rack', 'racks', 'racking', 'racked', 'racked', tran, ['6A','15A'] ). +verb( 'racket', 'rackets', 'racketing', 'racketed', 'racketed', intran, ['2A','2C'] ). +verb( 'radiate', 'radiates', 'radiating', 'radiated', 'radiated', _, ['2A','3A','6A'] ). +verb( 'raffle', 'raffles', 'raffling', 'raffled', 'raffled', tran, ['6A','15B'] ). +verb( 'raft', 'rafts', 'rafting', 'rafted', 'rafted', _, ['2C','6A','15A','15B'] ). +verb( 'rag', 'rags', 'ragging', 'ragged', 'ragged', tran, ['6A'] ). +verb( 'rage', 'rages', 'raging', 'raged', 'raged', intran, ['2A','2C'] ). +verb( 'raid', 'raids', 'raiding', 'raided', 'raided', _, ['2A','6A'] ). +verb( 'rail', 'rails', 'railing', 'railed', 'railed', _, ['2A','3A','6A','15B'] ). +verb( 'railroad', 'railroads', 'railroading', 'railroaded', 'railroaded', tran, ['15A','15B'] ). +verb( 'rain', 'rains', 'raining', 'rained', 'rained', _, ['2C','14'] ). +verb( 'raise', 'raises', 'raising', 'raised', 'raised', tran, ['6A','15A','15B'] ). +verb( 'rake', 'rakes', 'raking', 'raked', 'raked', _, ['2A','2C','3A','6A','14','15A','15B','22'] ). +verb( 'rally', 'rallies', 'rallying', 'rallied', 'rallied', _, ['2A','2C','6A','15A'] ). +verb( 'ram', 'rams', 'ramming', 'rammed', 'rammed', tran, ['6A','15A','15B'] ). +verb( 'ramble', 'rambles', 'rambling', 'rambled', 'rambled', intran, ['2A','2C'] ). +verb( 'ramify', 'ramifies', 'ramifying', 'ramified', 'ramified', _, ['2A','6A'] ). +verb( 'ramp', 'ramps', 'ramping', 'ramped', 'ramped', tran, ['2C'] ). +verb( 'rampage', 'rampages', 'rampaging', 'rampaged', 'rampaged', intran, ['2A'] ). +verb( 'range', 'ranges', 'ranging', 'ranged', 'ranged', _, ['2C','3A','6A','15A'] ). +verb( 'rank', 'ranks', 'ranking', 'ranked', 'ranked', _, ['3A','6A','15A','16B'] ). +verb( 'rankle', 'rankles', 'rankling', 'rankled', 'rankled', intran, ['2A'] ). +verb( 'ransack', 'ransacks', 'ransacking', 'ransacked', 'ransacked', tran, ['6A','14','16A'] ). +verb( 'ransom', 'ransoms', 'ransoming', 'ransomed', 'ransomed', tran, ['6A'] ). +verb( 'rant', 'rants', 'ranting', 'ranted', 'ranted', _, ['2A','6A'] ). +verb( 'rap', 'raps', 'rapping', 'rapped', 'rapped', _, ['2A','2C','6A','15B'] ). +verb( 'rape', 'rapes', 'raping', 'raped', 'raped', tran, ['6A'] ). +verb( 'rarefy', 'rarefies', 'rarefying', 'rarefied', 'rarefied', _, ['2A','6A'] ). +verb( 'rase', 'rases', 'rasing', 'rased', 'rased', tran, ['6A'] ). +verb( 'rasp', 'rasps', 'rasping', 'rasped', 'rasped', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'rat', 'rats', 'ratting', 'ratted', 'ratted', tran, ['2A','3A'] ). +verb( 'rate', 'rates', 'rating', 'rated', 'rated', _, ['2C','2D','6A','14','15A','16B'] ). +verb( 'ratify', 'ratifies', 'ratifying', 'ratified', 'ratified', tran, ['6A'] ). +verb( 'ration', 'rations', 'rationing', 'rationed', 'rationed', tran, ['6A','15B'] ). +verb( 'rationalize', 'rationalizes', 'rationalizing', 'rationalized', 'rationalized', tran, ['6A'] ). +verb( 'rattle', 'rattles', 'rattling', 'rattled', 'rattled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'ravage', 'ravages', 'ravaging', 'ravaged', 'ravaged', _, ['6A'] ). +verb( 'rave', 'raves', 'raving', 'raved', 'raved', intran, ['2A','2C','3A','15B'] ). +verb( 'ravel', 'ravels', 'ravelling', 'ravelled', 'ravelled', _, ['2A','2C','6A','15B'] ). +verb( 'ravish', 'ravishes', 'ravishing', 'ravished', 'ravished', tran, ['6A'] ). +verb( 'ray', 'rays', 'raying', 'rayed', 'rayed', _, [] ). +verb( 'raze', 'razes', 'razing', 'razed', 'razed', tran, ['6A'] ). +verb( 'razor', 'razors', 'razoring', 'razored', 'razored', tran, [] ). +verb( 're-address', 're-addresses', 're-addressing', 're-addressed', 're-addressed', tran, ['6A'] ). +verb( 're-afforest', 're-afforests', 're-afforesting', 're-afforested', 're-afforested', tran, [] ). +verb( 're-count', 're-counts', 're-counting', 're-counted', 're-counted', tran, ['6A'] ). +verb( 're-cover', 're-covers', 're-covering', 're-covered', 're-covered', tran, ['6A'] ). +verb( 're-echo', 're-echos', 're-echoing', 're-echoed', 're-echoed', intran, ['2A'] ). +verb( 're-form', 're-forms', 're-forming', 're-formed', 're-formed', _, [] ). +verb( 're-join', 're-joins', 're-joining', 're-joined', 're-joined', tran, ['6A'] ). +verb( 'reach', 'reaches', 'reaching', 'reached', 'reached', _, ['2C','3A','6A','12B','13B','15B'] ). +verb( 'react', 'reacts', 'reacting', 'reacted', 'reacted', intran, ['2A','3A'] ). +verb( 'read', 'reads', 'reading', 'read', 'read', _, ['2A','2B','2C','6A','12A','13A','15A','15B','16B'] ). +verb( 'readjust', 'readjusts', 'readjusting', 'readjusted', 'readjusted', tran, ['3A','6A','15A'] ). +verb( 'readmit', 'readmits', 'readmitting', 'readmitted', 'readmitted', tran, ['3A','6A','6C','9','14','25'] ). +verb( 'reaffirm', 'reaffirms', 'reaffirming', 'reaffirmed', 'reaffirmed', tran, ['6A','9'] ). +verb( 'realize', 'realizes', 'realizing', 'realized', 'realized', tran, ['6A','9','10','14'] ). +verb( 'reanimate', 'reanimates', 'reanimating', 'reanimated', 'reanimated', tran, ['6A'] ). +verb( 'reap', 'reaps', 'reaping', 'reaped', 'reaped', _, ['2A','6A'] ). +verb( 'reappear', 'reappears', 'reappearing', 'reappeared', 'reappeared', intran, ['2A'] ). +verb( 'rear', 'rears', 'rearing', 'reared', 'reared', _, ['2A','2C','6A','15B'] ). +verb( 'rearm', 'rearms', 'rearming', 'rearmed', 'rearmed', _, ['2A','6A'] ). +verb( 'rearrange', 'rearranges', 'rearranging', 'rearranged', 'rearranged', tran, ['3A','4C','6A','14','15A'] ). +verb( 'reason', 'reasons', 'reasoning', 'reasoned', 'reasoned', _, ['2A','3A','6A','9','14'] ). +verb( 'reassemble', 'reassembles', 'reassembling', 'reassembled', 'reassembled', _, ['2A','6A'] ). +verb( 'reassess', 'reassesses', 'reassessing', 'reassessed', 'reassessed', tran, ['6A','14'] ). +verb( 'reassure', 'reassures', 'reassuring', 'reassured', 'reassured', tran, ['6A'] ). +verb( 'reattribute', 'reattributes', 'reattributing', 'reattributed', 'reattributed', tran, ['14'] ). +verb( 'rebel', 'rebels', 'rebelling', 'rebelled', 'rebelled', intran, ['2A','3A'] ). +verb( 'rebind', 'rebinds', 'rebinding', 'rebound', 'rebound', tran, ['6A'] ). +verb( 'rebound', 'rebounds', 'rebounding', 'rebounded', 'rebounded', intran, ['2A','3A'] ). +verb( 'rebuff', 'rebuffs', 'rebuffing', 'rebuffed', 'rebuffed', tran, ['6A'] ). +verb( 'rebuild', 'rebuilds', 'rebuilding', 'rebuilt', 'rebuilt', tran, ['6A'] ). +verb( 'rebuke', 'rebukes', 'rebuking', 'rebuked', 'rebuked', tran, ['6A','14'] ). +verb( 'rebut', 'rebuts', 'rebutting', 'rebutted', 'rebutted', tran, ['6A'] ). +verb( 'recall', 'recalls', 'recalling', 'recalled', 'recalled', tran, ['6A','6C','8','9','10','14','19C'] ). +verb( 'recant', 'recants', 'recanting', 'recanted', 'recanted', _, ['2A','6A'] ). +verb( 'recap', 'recaps', 'recapping', 'recapped', 'recapped', _, [] ). +verb( 'recap', 'recaps', 'recapping', 'recapped', 'recapped', tran, [] ). +verb( 'recapitulate', 'recapitulates', 'recapitulating', 'recapitulated', 'recapitulated', _, ['2A','6A'] ). +verb( 'recapture', 'recaptures', 'recapturing', 'recaptured', 'recaptured', tran, ['6A'] ). +verb( 'recast', 'recasts', 'recasting', 'recast', 'recast', tran, ['6A'] ). +verb( 'recede', 'recedes', 'receding', 'receded', 'receded', intran, ['2A','3A'] ). +verb( 'receipt', 'receipts', 'receipting', 'receipted', 'receipted', tran, ['6A'] ). +verb( 'receive', 'receives', 'receiving', 'received', 'received', _, ['2A','6A'] ). +verb( 'recess', 'recesses', 'recessing', 'recessed', 'recessed', tran, ['6A'] ). +verb( 'reciprocate', 'reciprocates', 'reciprocating', 'reciprocated', 'reciprocated', _, ['2A','6A'] ). +verb( 'recite', 'recites', 'reciting', 'recited', 'recited', _, ['2A','6A','15A'] ). +verb( 'reckon', 'reckons', 'reckoning', 'reckoned', 'reckoned', _, ['2A','6A','7A','9','15B','16B','25'] ). +verb( 'reclaim', 'reclaims', 'reclaiming', 'reclaimed', 'reclaimed', tran, ['6A'] ). +verb( 'recline', 'reclines', 'reclining', 'reclined', 'reclined', _, ['2A','2C','15A'] ). +verb( 'recognize', 'recognizes', 'recognizing', 'recognized', 'recognized', tran, ['6A','9','16A','25'] ). +verb( 'recoil', 'recoils', 'recoiling', 'recoiled', 'recoiled', intran, ['2A','3A'] ). +verb( 'recollect', 'recollects', 'recollecting', 'recollected', 'recollected', _, ['2A','6A','6C','8','9','10'] ). +verb( 'recommend', 'recommends', 'recommending', 'recommended', 'recommended', tran, ['6A','6C','9','12A','13A','14','16A','17'] ). +verb( 'recommit', 'recommits', 'recommitting', 'recommitted', 'recommitted', tran, ['6A','14','16A'] ). +verb( 'recompense', 'recompenses', 'recompensing', 'recompensed', 'recompensed', tran, ['6A','14'] ). +verb( 'reconcile', 'reconciles', 'reconciling', 'reconciled', 'reconciled', tran, ['6A','14'] ). +verb( 'recondition', 'reconditions', 'reconditioning', 'reconditioned', 'reconditioned', tran, ['6A'] ). +verb( 'reconnoitre', 'reconnoitres', 'reconnoitring', 'reconnoitred', 'reconnoitred', _, ['2A','6A'] ). +verb( 'reconsecrate', 'reconsecrates', 'reconsecrating', 'reconsecrated', 'reconsecrated', tran, ['6A','14','23'] ). +verb( 'reconsider', 'reconsiders', 'reconsidering', 'reconsidered', 'reconsidered', tran, ['6A','6C','8','9','10','25'] ). +verb( 'reconstruct', 'reconstructs', 'reconstructing', 'reconstructed', 'reconstructed', tran, ['6A'] ). +verb( 'reconvict', 'reconvicts', 'reconvicting', 'reconvicted', 'reconvicted', tran, ['6A','14'] ). +verb( 'record', 'records', 'recording', 'recorded', 'recorded', tran, ['6A'] ). +verb( 'recount', 'recounts', 'recounting', 'recounted', 'recounted', tran, ['6A'] ). +verb( 'recoup', 'recoups', 'recouping', 'recouped', 'recouped', tran, ['6A','14'] ). +verb( 'recover', 'recovers', 'recovering', 'recovered', 'recovered', _, ['2A','3A','6A'] ). +verb( 'recreate', 'recreates', 'recreating', 'recreated', 'recreated', tran, ['6A','23'] ). +verb( 'recriminate', 'recriminates', 'recriminating', 'recriminated', 'recriminated', intran, ['2A','3A'] ). +verb( 'recruit', 'recruits', 'recruiting', 'recruited', 'recruited', _, ['6A'] ). +verb( 'rectify', 'rectifies', 'rectifying', 'rectified', 'rectified', tran, ['6A'] ). +verb( 'recuperate', 'recuperates', 'recuperating', 'recuperated', 'recuperated', _, ['2A','6A'] ). +verb( 'recur', 'recurs', 'recurring', 'recurred', 'recurred', intran, ['2A','3A'] ). +verb( 'recurve', 'recurves', 'recurving', 'recurved', 'recurved', _, [] ). +verb( 'recycle', 'recycles', 'recycling', 'recycled', 'recycled', tran, ['6A'] ). +verb( 'redact', 'redacts', 'redacting', 'redacted', 'redacted', tran, ['6A'] ). +verb( 'redden', 'reddens', 'reddening', 'reddened', 'reddened', _, ['2A','6A'] ). +verb( 'redecorate', 'redecorates', 'redecorating', 'redecorated', 'redecorated', tran, ['6A','14'] ). +verb( 'redeem', 'redeems', 'redeeming', 'redeemed', 'redeemed', tran, ['6A','14'] ). +verb( 'redefine', 'redefines', 'redefining', 'redefined', 'redefined', tran, ['6A'] ). +verb( 'redeploy', 'redeploys', 'redeploying', 'redeployed', 'redeployed', tran, ['6A'] ). +verb( 'redesign', 'redesigns', 'redesigning', 'redesigned', 'redesigned', tran, ['2A','2C','6A','14','16A','16B'] ). +verb( 'redevelop', 'redevelops', 'redeveloping', 'redeveloped', 'redeveloped', tran, ['2A','2C','3A','6A'] ). +verb( 'rediscover', 'rediscovers', 'rediscovering', 'rediscovered', 'rediscovered', tran, ['6A','8','9','10','25'] ). +verb( 'redistribute', 'redistributes', 'redistributing', 'redistributed', 'redistributed', tran, ['6A','14'] ). +verb( 'redo', 'redoes', 'redoing', 'redid', 'redone', tran, ['6A'] ). +verb( 'redouble', 'redoubles', 'redoubling', 'redoubled', 'redoubled', _, ['2A','6A'] ). +verb( 'redound', 'redounds', 'redounding', 'redounded', 'redounded', intran, ['3A'] ). +verb( 'redress', 'redresses', 'redressing', 'redressed', 'redressed', tran, ['6A'] ). +verb( 'reduce', 'reduces', 'reducing', 'reduced', 'reduced', _, ['2A','2B','6A','14'] ). +verb( 'reduplicate', 'reduplicates', 'reduplicating', 'reduplicated', 'reduplicated', tran, ['6A'] ). +verb( 'reef', 'reefs', 'reefing', 'reefed', 'reefed', tran, ['6A'] ). +verb( 'reek', 'reeks', 'reeking', 'reeked', 'reeked', intran, ['3A'] ). +verb( 'reel', 'reels', 'reeling', 'reeled', 'reeled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'reface', 'refaces', 'refacing', 'refaced', 'refaced', tran, [] ). +verb( 'refashion', 'refashions', 'refashioning', 'refashioned', 'refashioned', tran, ['6A','15A'] ). +verb( 'refer', 'refers', 'referring', 'referred', 'referred', _, ['3A','14','15B'] ). +verb( 'referee', 'referees', 'refereeing', 'refereed', 'refereed', _, ['2A','6A'] ). +verb( 'refill', 'refills', 'refilling', 'refilled', 'refilled', tran, [] ). +verb( 'refine', 'refines', 'refining', 'refined', 'refined', _, ['2A','6A'] ). +verb( 'refit', 'refits', 'refitting', 'refitted', 'refitted', _, ['2A','6A'] ). +verb( 'reflate', 'reflates', 'reflating', 'reflated', 'reflated', tran, ['6A'] ). +verb( 'reflect', 'reflects', 'reflecting', 'reflected', 'reflected', _, ['2A','3A','6A','8','9','10','14'] ). +verb( 'refloat', 'refloats', 'refloating', 'refloated', 'refloated', _, ['2A','6A'] ). +verb( 'reforest', 'reforests', 'reforesting', 'reforested', 'reforested', tran, [] ). +verb( 'reform', 'reforms', 'reforming', 'reformed', 'reformed', _, ['2A','6A'] ). +verb( 'refract', 'refracts', 'refracting', 'refracted', 'refracted', tran, ['6A'] ). +verb( 'refrain', 'refrains', 'refraining', 'refrained', 'refrained', intran, ['2A','3A'] ). +verb( 'refresh', 'refreshes', 'refreshing', 'refreshed', 'refreshed', tran, ['6A'] ). +verb( 'refrigerate', 'refrigerates', 'refrigerating', 'refrigerated', 'refrigerated', tran, ['6A'] ). +verb( 'refuel', 'refuels', 'refuelling', 'refuelled', 'refuelled', _, ['2A','6A'] ). +verb( 'refund', 'refunds', 'refunding', 'refunded', 'refunded', tran, ['6A'] ). +verb( 'refurbish', 'refurbishes', 'refurbishing', 'refurbished', 'refurbished', tran, ['6A'] ). +verb( 'refurnish', 'refurnishes', 'refurnishing', 'refurnished', 'refurnished', tran, ['6A','14'] ). +verb( 'refuse', 'refuses', 'refusing', 'refused', 'refused', _, ['2A','6A','7A','12C'] ). +verb( 'refute', 'refutes', 'refuting', 'refuted', 'refuted', tran, ['6A'] ). +verb( 'regain', 'regains', 'regaining', 'regained', 'regained', tran, ['6A'] ). +verb( 'regale', 'regales', 'regaling', 'regaled', 'regaled', tran, ['6A','14'] ). +verb( 'regard', 'regards', 'regarding', 'regarded', 'regarded', tran, ['6A','14','16B'] ). +verb( 'regenerate', 'regenerates', 'regenerating', 'regenerated', 'regenerated', _, ['2A','6A'] ). +verb( 'regiment', 'regiments', 'regimenting', 'regimented', 'regimented', tran, ['6A'] ). +verb( 'register', 'registers', 'registering', 'registered', 'registered', _, ['2A','3A','6A','14'] ). +verb( 'regress', 'regresses', 'regressing', 'regressed', 'regressed', intran, ['2A'] ). +verb( 'regret', 'regrets', 'regretting', 'regretted', 'regretted', tran, ['6A','6D','7A','9'] ). +verb( 'regroup', 'regroups', 'regrouping', 'regrouped', 'regrouped', _, ['2A','6A'] ). +verb( 'regularize', 'regularizes', 'regularizing', 'regularized', 'regularized', tran, ['6A'] ). +verb( 'regulate', 'regulates', 'regulating', 'regulated', 'regulated', tran, ['6A'] ). +verb( 'regurgitate', 'regurgitates', 'regurgitating', 'regurgitated', 'regurgitated', _, ['2A','6A'] ). +verb( 'rehabilitate', 'rehabilitates', 'rehabilitating', 'rehabilitated', 'rehabilitated', tran, ['6A'] ). +verb( 'rehash', 'rehashes', 'rehashing', 'rehashed', 'rehashed', tran, [] ). +verb( 'rehear', 'rehears', 'rehearing', 'reheard', 'reheard', tran, ['6A'] ). +verb( 'rehearse', 'rehearses', 'rehearsing', 'rehearsed', 'rehearsed', _, ['2A','6A'] ). +verb( 'rehouse', 'rehouses', 'rehousing', 'rehoused', 'rehoused', tran, ['6A'] ). +verb( 'reign', 'reigns', 'reigning', 'reigned', 'reigned', intran, ['2A','3A'] ). +verb( 'reimburse', 'reimburses', 'reimbursing', 'reimbursed', 'reimbursed', tran, ['6A','12A','13A','14'] ). +verb( 'rein', 'reins', 'reining', 'reined', 'reined', tran, ['6A','15B'] ). +verb( 'reincarnate', 'reincarnates', 'reincarnating', 'reincarnated', 'reincarnated', tran, [] ). +verb( 'reinforce', 'reinforces', 'reinforcing', 'reinforced', 'reinforced', tran, ['6A'] ). +verb( 'reinstate', 'reinstates', 'reinstating', 'reinstated', 'reinstated', tran, ['6A','14'] ). +verb( 'reinsure', 'reinsures', 'reinsuring', 'reinsured', 'reinsured', tran, ['6A'] ). +verb( 'reintegrate', 'reintegrates', 'reintegrating', 'reintegrated', 'reintegrated', tran, ['2A','6A'] ). +verb( 'reinterpret', 'reinterprets', 'reinterpreting', 'reinterpreted', 'reinterpreted', tran, ['2A','6A','16B'] ). +verb( 'reissue', 'reissues', 'reissuing', 'reissued', 'reissued', tran, ['6A'] ). +verb( 'reiterate', 'reiterates', 'reiterating', 'reiterated', 'reiterated', tran, ['6A'] ). +verb( 'reject', 'rejects', 'rejecting', 'rejected', 'rejected', tran, ['6A'] ). +verb( 'rejig', 'rejigs', 'rejigging', 'rejigged', 'rejigged', tran, ['6A'] ). +verb( 'rejoice', 'rejoices', 'rejoicing', 'rejoiced', 'rejoiced', _, ['2A','2C','3B','4C','6A'] ). +verb( 'rejoin', 'rejoins', 'rejoining', 'rejoined', 'rejoined', tran, ['6A'] ). +verb( 'rejoin', 'rejoins', 'rejoining', 'rejoined', 'rejoined', _, ['2A','6A'] ). +verb( 'rejuvenate', 'rejuvenates', 'rejuvenating', 'rejuvenated', 'rejuvenated', _, ['2A','6A'] ). +verb( 'rekindle', 'rekindles', 'rekindling', 'rekindled', 'rekindled', _, ['2A','6A'] ). +verb( 'relapse', 'relapses', 'relapsing', 'relapsed', 'relapsed', intran, ['2A','3A'] ). +verb( 'relate', 'relates', 'relating', 'related', 'related', _, ['3A','6A','14'] ). +verb( 'relax', 'relaxes', 'relaxing', 'relaxed', 'relaxed', _, ['2A','2C','6A'] ). +verb( 'relay', 'relays', 'relaying', 'relayed', 'relayed', tran, [] ). +verb( 'relay', 'relays', 'relaying', 'relayed', 'relayed', tran, [] ). +verb( 'release', 'releases', 'releasing', 'released', 'released', tran, ['6A','14'] ). +verb( 'relegate', 'relegates', 'relegating', 'relegated', 'relegated', tran, ['14'] ). +verb( 'relent', 'relents', 'relenting', 'relented', 'relented', intran, ['2A'] ). +verb( 'relieve', 'relieves', 'relieving', 'relieved', 'relieved', tran, ['6A'] ). +verb( 'reline', 'relines', 'relining', 'relined', 'relined', tran, [] ). +verb( 'relinquish', 'relinquishes', 'relinquishing', 'relinquished', 'relinquished', tran, ['6A','14'] ). +verb( 'relish', 'relishes', 'relishing', 'relished', 'relished', tran, ['6A','6D'] ). +verb( 'relive', 'relives', 'reliving', 'relived', 'relived', tran, [] ). +verb( 'relocate', 'relocates', 'relocating', 'relocated', 'relocated', _, [] ). +verb( 'rely', 'relies', 'relying', 'relied', 'relied', intran, ['3A'] ). +verb( 'remain', 'remains', 'remaining', 'remained', 'remained', intran, ['2A','2B','2C','4A'] ). +verb( 'remake', 'remakes', 'remaking', 'remade', 'remade', tran, [] ). +verb( 'remand', 'remands', 'remanding', 'remanded', 'remanded', tran, ['6A'] ). +verb( 'remark', 'remarks', 'remarking', 'remarked', 'remarked', _, ['3A','6A','9','10'] ). +verb( 'remarry', 'remarries', 'remarrying', 'remarried', 'remarried', _, [] ). +verb( 'remedy', 'remedies', 'remedying', 'remedied', 'remedied', tran, ['6A'] ). +verb( 'remember', 'remembers', 'remembering', 'remembered', 'remembered', _, ['6A','6C','7A','8','9','10','14','16B','19C'] ). +verb( 'remilitarize', 'remilitarizes', 'remilitarizing', 'remilitarized', 'remilitarized', tran, ['6A'] ). +verb( 'remind', 'reminds', 'reminding', 'reminded', 'reminded', tran, ['6A','11','14','17','20','21'] ). +verb( 'reminisce', 'reminisces', 'reminiscing', 'reminisced', 'reminisced', intran, ['2A','3A'] ). +verb( 'remit', 'remits', 'remitting', 'remitted', 'remitted', _, ['2C','6A','12A','13A','14'] ). +verb( 'remodel', 'remodels', 'remodelling', 'remodelled', 'remodelled', tran, ['2A','6A','14','15A'] ). +verb( 'remonstrate', 'remonstrates', 'remonstrating', 'remonstrated', 'remonstrated', intran, ['2A','3A'] ). +verb( 'remould', 'remoulds', 'remoulding', 'remoulded', 'remoulded', tran, ['2A','6A','14'] ). +verb( 'remount', 'remounts', 'remounting', 'remounted', 'remounted', _, ['2A','6A'] ). +verb( 'remove', 'removes', 'removing', 'removed', 'removed', _, ['2A','2C','6A','14'] ). +verb( 'remunerate', 'remunerates', 'remunerating', 'remunerated', 'remunerated', tran, ['6A','14'] ). +verb( 'rename', 'renames', 'renaming', 'renamed', 'renamed', tran, ['6A'] ). +verb( 'rend', 'rends', 'rending', 'rent', 'rent', tran, ['6A','14','15A'] ). +verb( 'render', 'renders', 'rendering', 'rendered', 'rendered', tran, ['6A','12A','13A','14','15A','15B','22'] ). +verb( 'rendezvous', 'rendezvous', 'rendezvouing', 'rendezvoued', 'rendezvoued', intran, ['2A','2C'] ). +verb( 'renegade', 'renegades', 'renegading', 'renegaded', 'renegaded', intran, [] ). +verb( 'renege', 'reneges', 'reneging', 'reneged', 'reneged', intran, ['3A'] ). +verb( 'renegue', 'renegues', 'reneguing', 'renegued', 'renegued', intran, ['3A'] ). +verb( 'renew', 'renews', 'renewing', 'renewed', 'renewed', tran, ['6A'] ). +verb( 'renounce', 'renounces', 'renouncing', 'renounced', 'renounced', tran, ['6A'] ). +verb( 'renovate', 'renovates', 'renovating', 'renovated', 'renovated', tran, ['6A'] ). +verb( 'rent', 'rents', 'renting', 'rented', 'rented', _, ['2A','2C','6A','14','15A'] ). +verb( 'reopen', 'reopens', 'reopening', 'reopened', 'reopened', _, ['2A','6A'] ). +verb( 'reorganize', 'reorganizes', 'reorganizing', 'reorganized', 'reorganized', _, [] ). +verb( 'reorient', 'reorients', 'reorienting', 'reoriented', 'reoriented', _, [] ). +verb( 'reorientate', 'reorientates', 'reorientating', 'reorientated', 'reorientated', _, [] ). +verb( 'repaint', 'repaints', 'repainting', 'repainted', 'repainted', tran, ['2A','2C','6A','15A','15B','22'] ). +verb( 'repair', 'repairs', 'repairing', 'repaired', 'repaired', _, ['3A','6A'] ). +verb( 'repatriate', 'repatriates', 'repatriating', 'repatriated', 'repatriated', tran, ['6A'] ). +verb( 'repay', 'repays', 'repaying', 'repaid', 'repaid', _, ['2A','6A','14'] ). +verb( 'repeal', 'repeals', 'repealing', 'repealed', 'repealed', tran, ['6A'] ). +verb( 'repeat', 'repeats', 'repeating', 'repeated', 'repeated', _, ['2A','6A','9'] ). +verb( 'repel', 'repels', 'repelling', 'repelled', 'repelled', tran, ['6A'] ). +verb( 'repent', 'repents', 'repenting', 'repented', 'repented', _, ['2A','3A','6A','6D'] ). +verb( 'repine', 'repines', 'repining', 'repined', 'repined', intran, ['2A','3A'] ). +verb( 'replace', 'replaces', 'replacing', 'replaced', 'replaced', tran, ['6A','14','15A'] ). +verb( 'replant', 'replants', 'replanting', 'replanted', 'replanted', tran, ['6A','15A','15B'] ). +verb( 'replay', 'replays', 'replaying', 'replayed', 'replayed', tran, ['6A'] ). +verb( 'replenish', 'replenishes', 'replenishing', 'replenished', 'replenished', tran, ['6A','14'] ). +verb( 'reply', 'replies', 'replying', 'replied', 'replied', _, ['2A','3A','3B'] ). +verb( 'repoint', 'repoints', 'repointing', 'repointed', 'repointed', tran, ['6A'] ). +verb( 'report', 'reports', 'reporting', 'reported', 'reported', _, ['2A','3A','6A','6D','9','14','15A','15B','25'] ). +verb( 'repose', 'reposes', 'reposing', 'reposed', 'reposed', _, ['2A','2C','3A','6A','14','15A'] ). +verb( 'repot', 'repots', 'repotting', 'repotted', 'repotted', tran, [] ). +verb( 'reprehend', 'reprehends', 'reprehending', 'reprehended', 'reprehended', tran, ['6A'] ). +verb( 'represent', 'represents', 'representing', 'represented', 'represented', tran, ['6A','9','14','16A','25'] ). +verb( 'represent', 'represents', 'representing', 'represented', 'represented', tran, [] ). +verb( 'repress', 'represses', 'repressing', 'repressed', 'repressed', tran, ['6A'] ). +verb( 'reprieve', 'reprieves', 'reprieving', 'reprieved', 'reprieved', tran, ['6A'] ). +verb( 'reprimand', 'reprimands', 'reprimanding', 'reprimanded', 'reprimanded', tran, ['6A'] ). +verb( 'reprint', 'reprints', 'reprinting', 'reprinted', 'reprinted', tran, ['6A'] ). +verb( 'reproach', 'reproaches', 'reproaching', 'reproached', 'reproached', tran, ['6A','14'] ). +verb( 'reprobate', 'reprobates', 'reprobating', 'reprobated', 'reprobated', tran, ['6A'] ). +verb( 'reproduce', 'reproduces', 'reproducing', 'reproduced', 'reproduced', _, ['2A','6A'] ). +verb( 'reproof', 'reproofs', 'reproofing', 'reproofed', 'reproofed', tran, ['6A'] ). +verb( 'reprove', 'reproves', 'reproving', 'reproved', 'reproved', tran, ['6A','14'] ). +verb( 'repudiate', 'repudiates', 'repudiating', 'repudiated', 'repudiated', tran, ['6A'] ). +verb( 'repulse', 'repulses', 'repulsing', 'repulsed', 'repulsed', tran, ['6A'] ). +verb( 'repute', 'reputes', 'reputing', 'reputed', 'reputed', tran, ['25'] ). +verb( 'request', 'requests', 'requesting', 'requested', 'requested', tran, ['6A','9','17'] ). +verb( 'require', 'requires', 'requiring', 'required', 'required', tran, ['6A','6D','9','14','17'] ). +verb( 'requisition', 'requisitions', 'requisitioning', 'requisitioned', 'requisitioned', tran, ['6A','14'] ). +verb( 'requite', 'requites', 'requiting', 'requited', 'requited', tran, ['6A','14'] ). +verb( 'reread', 'rereads', 'rereading', 'reread', 'reread', tran, ['2A','2B','2C','6A','12A','13A','15A','15B','16B'] ). +verb( 'rerun', 'reruns', 'rerunning', 'reran', 'rerun', tran, [] ). +verb( 'rescind', 'rescinds', 'rescinding', 'rescinded', 'rescinded', tran, ['6A'] ). +verb( 'rescue', 'rescues', 'rescuing', 'rescued', 'rescued', tran, ['6A','14'] ). +verb( 'research', 'researches', 'researching', 'researched', 'researched', intran, ['2A','3A'] ). +verb( 'reseat', 'reseats', 'reseating', 'reseated', 'reseated', tran, ['6A'] ). +verb( 'reseed', 'reseeds', 'reseeding', 'reseeded', 'reseeded', tran, ['2A','6A'] ). +verb( 'resell', 'resells', 'reselling', 'resold', 'resold', tran, ['2A','2C','6A','12A','13A','15B'] ). +verb( 'resemble', 'resembles', 'resembling', 'resembled', 'resembled', tran, ['6B'] ). +verb( 'resent', 'resents', 'resenting', 'resented', 'resented', tran, ['6A','6C','19C'] ). +verb( 'reserve', 'reserves', 'reserving', 'reserved', 'reserved', tran, ['6A','14'] ). +verb( 'reset', 'resets', 'resetting', 'reset', 'reset', tran, ['6A'] ). +verb( 'resettle', 'resettles', 'resettling', 'resettled', 'resettled', _, ['2A','6A'] ). +verb( 'reshape', 'reshapes', 'reshaping', 'reshaped', 'reshaped', tran, ['2A','2C','6A','15A'] ). +verb( 'reshuffle', 'reshuffles', 'reshuffling', 'reshuffled', 'reshuffled', tran, ['6A'] ). +verb( 'reside', 'resides', 'residing', 'resided', 'resided', intran, ['2C','3A'] ). +verb( 'resign', 'resigns', 'resigning', 'resigned', 'resigned', _, ['2A','3A','6A','14'] ). +verb( 'resist', 'resists', 'resisting', 'resisted', 'resisted', _, ['2A','6A','6C'] ). +verb( 'resole', 'resoles', 'resoling', 'resoled', 'resoled', tran, ['6A'] ). +verb( 'resolve', 'resolves', 'resolving', 'resolved', 'resolved', _, ['3A','6A','7A','9','14'] ). +verb( 'resonate', 'resonates', 'resonating', 'resonated', 'resonated', _, [] ). +verb( 'resort', 'resorts', 'resorting', 'resorted', 'resorted', intran, ['3A'] ). +verb( 'resound', 'resounds', 'resounding', 'resounded', 'resounded', _, ['2A','2C','3A'] ). +verb( 'respect', 'respects', 'respecting', 'respected', 'respected', tran, ['6A'] ). +verb( 'respire', 'respires', 'respiring', 'respired', 'respired', intran, ['2A'] ). +verb( 'respite', 'respites', 'respiting', 'respited', 'respited', tran, ['6A'] ). +verb( 'respond', 'responds', 'responding', 'responded', 'responded', intran, ['2A','2C','3A','3B'] ). +verb( 'rest', 'rests', 'resting', 'rested', 'rested', _, ['2A','2B','2C','2D','3A','6A','14'] ). +verb( 'restart', 'restarts', 'restarting', 'restarted', 'restarted', _, ['2A','2C','3A','6A','6D','7A','15A','19B'] ). +verb( 'restate', 'restates', 'restating', 'restated', 'restated', tran, ['6A'] ). +verb( 'restock', 'restocks', 'restocking', 'restocked', 'restocked', tran, ['6A'] ). +verb( 'restore', 'restores', 'restoring', 'restored', 'restored', tran, ['6A','14'] ). +verb( 'restrain', 'restrains', 'restraining', 'restrained', 'restrained', tran, ['6A','14'] ). +verb( 'restrict', 'restricts', 'restricting', 'restricted', 'restricted', tran, ['6A','14'] ). +verb( 'restructure', 'restructures', 'restructuring', 'restructured', 'restructured', tran, ['6A'] ). +verb( 'result', 'results', 'resulting', 'resulted', 'resulted', intran, ['2A','3A'] ). +verb( 'resume', 'resumes', 'resuming', 'resumed', 'resumed', tran, ['6A','6D'] ). +verb( 'resurface', 'resurfaces', 'resurfacing', 'resurfaced', 'resurfaced', _, ['2A','6A'] ). +verb( 'resurrect', 'resurrects', 'resurrecting', 'resurrected', 'resurrected', _, ['2A','6A'] ). +verb( 'resuscitate', 'resuscitates', 'resuscitating', 'resuscitated', 'resuscitated', _, ['2A','6A'] ). +verb( 'ret', 'rets', 'retting', 'retted', 'retted', tran, ['6A'] ). +verb( 'retail', 'retails', 'retailing', 'retailed', 'retailed', _, ['3A','6A'] ). +verb( 'retain', 'retains', 'retaining', 'retained', 'retained', tran, ['6A'] ). +verb( 'retake', 'retakes', 'retaking', 'retook', 'retaken', tran, ['6A'] ). +verb( 'retaliate', 'retaliates', 'retaliating', 'retaliated', 'retaliated', intran, ['2A','3A'] ). +verb( 'retard', 'retards', 'retarding', 'retarded', 'retarded', tran, ['6A'] ). +verb( 'retch', 'retches', 'retching', 'retched', 'retched', intran, ['2A'] ). +verb( 'retell', 'retells', 'retelling', 'retold', 'retold', tran, ['6A'] ). +verb( 'rethink', 'rethinks', 'rethinking', 'rethought', 'rethought', _, ['2A','6A'] ). +verb( 'reticulate', 'reticulates', 'reticulating', 'reticulated', 'reticulated', _, ['2A','6A'] ). +verb( 'retire', 'retires', 'retiring', 'retired', 'retired', _, ['2A','2C','3A','6A'] ). +verb( 'retool', 'retools', 'retooling', 'retooled', 'retooled', tran, ['6A'] ). +verb( 'retort', 'retorts', 'retorting', 'retorted', 'retorted', _, ['2A','6A','9','14'] ). +verb( 'retouch', 'retouches', 'retouching', 'retouched', 'retouched', tran, ['6A'] ). +verb( 'retrace', 'retraces', 'retracing', 'retraced', 'retraced', tran, ['6A'] ). +verb( 'retract', 'retracts', 'retracting', 'retracted', 'retracted', _, ['2A','6A'] ). +verb( 'retransmit', 'retransmits', 'retransmitting', 'retransmitted', 'retransmitted', tran, ['6A','14'] ). +verb( 'retread', 'retreads', 'retreading', 'retreaded', 'retreaded', tran, [] ). +verb( 'retreat', 'retreats', 'retreating', 'retreated', 'retreated', intran, ['2A','2C','3A'] ). +verb( 'retrench', 'retrenches', 'retrenching', 'retrenched', 'retrenched', _, ['2A','6A'] ). +verb( 'retrieve', 'retrieves', 'retrieving', 'retrieved', 'retrieved', _, ['2A','6A','14'] ). +verb( 'retrograde', 'retrogrades', 'retrograding', 'retrograded', 'retrograded', intran, ['2A'] ). +verb( 'retrogress', 'retrogresses', 'retrogressing', 'retrogressed', 'retrogressed', intran, ['2A'] ). +verb( 'return', 'returns', 'returning', 'returned', 'returned', _, ['2A','2C','3A','4A','6A','12A','13A','15A','16A'] ). +verb( 'reunite', 'reunites', 'reuniting', 'reunited', 'reunited', _, ['2A','6A'] ). +verb( 'rev', 'revs', 'revving', 'revved', 'revved', _, ['2A','2C','6A','15B'] ). +verb( 'revalue', 'revalues', 'revaluing', 'revalued', 'revalued', tran, ['6A'] ). +verb( 'revamp', 'revamps', 'revamping', 'revamped', 'revamped', tran, ['6A'] ). +verb( 'reveal', 'reveals', 'revealing', 'revealed', 'revealed', tran, ['6A','9','14','25'] ). +verb( 'revel', 'revels', 'revelling', 'revelled', 'revelled', intran, ['2A','2B','2C','3A','15B'] ). +verb( 'revenge', 'revenges', 'revenging', 'revenged', 'revenged', tran, ['6A'] ). +verb( 'reverberate', 'reverberates', 'reverberating', 'reverberated', 'reverberated', _, ['2A','6A'] ). +verb( 'revere', 'reveres', 'revering', 'revered', 'revered', tran, ['6A'] ). +verb( 'reverence', 'reverences', 'reverencing', 'reverenced', 'reverenced', tran, ['6A'] ). +verb( 'reverse', 'reverses', 'reversing', 'reversed', 'reversed', _, ['2A','6A'] ). +verb( 'revert', 'reverts', 'reverting', 'reverted', 'reverted', intran, ['2A','3A'] ). +verb( 'review', 'reviews', 'reviewing', 'reviewed', 'reviewed', _, ['2A','2C','6A'] ). +verb( 'revile', 'reviles', 'reviling', 'reviled', 'reviled', _, ['3A','6A'] ). +verb( 'revise', 'revises', 'revising', 'revised', 'revised', tran, ['6A'] ). +verb( 'revisit', 'revisits', 'revisiting', 'revisited', 'revisited', tran, ['2C','3A','6A','14'] ). +verb( 'revitalize', 'revitalizes', 'revitalizing', 'revitalized', 'revitalized', tran, [] ). +verb( 'revive', 'revives', 'reviving', 'revived', 'revived', _, ['2A','6A'] ). +verb( 'revivify', 'revivifies', 'revivifying', 'revivified', 'revivified', tran, [] ). +verb( 'revoke', 'revokes', 'revoking', 'revoked', 'revoked', _, ['2A','6A'] ). +verb( 'revolt', 'revolts', 'revolting', 'revolted', 'revolted', _, ['2A','3A','6A'] ). +verb( 'revolutionize', 'revolutionizes', 'revolutionizing', 'revolutionized', 'revolutionized', tran, ['6A'] ). +verb( 'revolve', 'revolves', 'revolving', 'revolved', 'revolved', _, ['2A','3A','6A'] ). +verb( 'reward', 'rewards', 'rewarding', 'rewarded', 'rewarded', tran, ['6A','14'] ). +verb( 'rewire', 'rewires', 'rewiring', 'rewired', 'rewired', tran, [] ). +verb( 'reword', 'rewords', 'rewording', 'reworded', 'reworded', tran, ['6A'] ). +verb( 'rewrite', 'rewrites', 'rewriting', 'rewrote', 'rewritten', tran, ['6A'] ). +verb( 'rhapsodize', 'rhapsodizes', 'rhapsodizing', 'rhapsodized', 'rhapsodized', intran, ['2A','3A'] ). +verb( 'rhyme', 'rhymes', 'rhyming', 'rhymed', 'rhymed', _, ['2A','3A','6A'] ). +verb( 'rib', 'ribs', 'ribbing', 'ribbed', 'ribbed', tran, ['6A'] ). +verb( 'rick', 'ricks', 'ricking', 'ricked', 'ricked', tran, ['6A'] ). +verb( 'ricochet', 'ricochets', 'ricocheting', 'ricocheted', 'ricocheted', _, ['2A','6A'] ). +verb( 'rid', 'rids', 'riding', 'rid', 'rid', tran, ['14'] ). +verb( 'riddle', 'riddles', 'riddling', 'riddled', 'riddled', tran, ['6A','14'] ). +verb( 'ride', 'rides', 'riding', 'rode', 'ridden', _, ['2A','2B','2C','2D','3A','4A','6A','15A'] ). +verb( 'ridge', 'ridges', 'ridging', 'ridged', 'ridged', tran, ['6A'] ). +verb( 'ridicule', 'ridicules', 'ridiculing', 'ridiculed', 'ridiculed', tran, [] ). +verb( 'riffle', 'riffles', 'riffling', 'riffled', 'riffled', _, ['3A','6A'] ). +verb( 'rifle', 'rifles', 'rifling', 'rifled', 'rifled', tran, ['6A'] ). +verb( 'rig', 'rigs', 'rigging', 'rigged', 'rigged', _, ['2A','2C','6A','14','15B'] ). +verb( 'right', 'rights', 'righting', 'righted', 'righted', tran, ['6A'] ). +verb( 'rile', 'riles', 'riling', 'riled', 'riled', tran, ['6A'] ). +verb( 'rim', 'rims', 'rimming', 'rimmed', 'rimmed', tran, ['6A'] ). +verb( 'rime', 'rimes', 'riming', 'rimed', 'rimed', tran, ['6A'] ). +verb( 'ring', 'rings', 'ringing', 'ringed', 'ringed', _, ['2A','2B','2C','2D','3A','6A','15A','15B'] ). +verb( 'ring', 'rings', 'ringing', 'rang', 'rung', _, ['2A','2B','2C','2D','3A','6A','15A','15B'] ). +verb( 'rinse', 'rinses', 'rinsing', 'rinsed', 'rinsed', tran, ['6A','15A','15B'] ). +verb( 'riot', 'riots', 'rioting', 'rioted', 'rioted', intran, ['2A','2B','2C','3A'] ). +verb( 'rip', 'rips', 'ripping', 'ripped', 'ripped', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'ripen', 'ripens', 'ripening', 'ripened', 'ripened', _, ['2A','6A'] ). +verb( 'riposte', 'ripostes', 'riposting', 'riposted', 'riposted', intran, [] ). +verb( 'ripple', 'ripples', 'rippling', 'rippled', 'rippled', _, ['2A','6A'] ). +verb( 'rise', 'rises', 'rising', 'rose', 'risen', intran, ['2A','2B','2C','3A','4A'] ). +verb( 'risk', 'risks', 'risking', 'risked', 'risked', tran, ['6A','6D'] ). +verb( 'rival', 'rivals', 'rivalling', 'rivalled', 'rivalled', tran, ['6A','14'] ). +verb( 'rive', 'rives', 'riving', 'rived', 'rived', _, ['6A','15A','15B'] ). +verb( 'rivet', 'rivets', 'riveting', 'riveted', 'riveted', tran, ['6A','15A','15B'] ). +verb( 'roam', 'roams', 'roaming', 'roamed', 'roamed', _, ['2A','2C','6A'] ). +verb( 'roar', 'roars', 'roaring', 'roared', 'roared', _, ['2A','2C','3A','6A','15B','22'] ). +verb( 'roast', 'roasts', 'roasting', 'roasted', 'roasted', _, ['2A','6A'] ). +verb( 'rob', 'robs', 'robbing', 'robbed', 'robbed', tran, ['6A','14'] ). +verb( 'robe', 'robes', 'robing', 'robed', 'robed', _, ['2A','6A','14'] ). +verb( 'rock', 'rocks', 'rocking', 'rocked', 'rocked', _, ['2A','6A','15A'] ). +verb( 'rocket', 'rockets', 'rocketing', 'rocketed', 'rocketed', intran, ['2A'] ). +verb( 'roll', 'rolls', 'rolling', 'rolled', 'rolled', _, ['2A','2B','2C','6A','12B','13B','14','15A','15B','22'] ). +verb( 'romance', 'romances', 'romancing', 'romanced', 'romanced', intran, ['2A'] ). +verb( 'romanticize', 'romanticizes', 'romanticizing', 'romanticized', 'romanticized', _, ['2A','6A'] ). +verb( 'romp', 'romps', 'romping', 'romped', 'romped', intran, ['2A','2C'] ). +verb( 'roof', 'roofs', 'roofing', 'roofed', 'roofed', tran, ['6A','15A','15B'] ). +verb( 'rook', 'rooks', 'rooking', 'rooked', 'rooked', tran, ['6A'] ). +verb( 'room', 'rooms', 'rooming', 'roomed', 'roomed', intran, ['2C'] ). +verb( 'roost', 'roosts', 'roosting', 'roosted', 'roosted', intran, ['2A'] ). +verb( 'root', 'roots', 'rooting', 'rooted', 'rooted', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'rootle', 'rootles', 'rootling', 'rootled', 'rootled', intran, ['2C'] ). +verb( 'rope', 'ropes', 'roping', 'roped', 'roped', tran, ['15A','15B'] ). +verb( 'rosin', 'rosins', 'rosinning', 'rosinned', 'rosinned', tran, ['6A'] ). +verb( 'rot', 'rots', 'rotting', 'rotted', 'rotted', _, ['2A','2C','6A'] ). +verb( 'rotate', 'rotates', 'rotating', 'rotated', 'rotated', _, ['2A','6A'] ). +verb( 'rouge', 'rouges', 'rouging', 'rouged', 'rouged', _, ['2A','6A'] ). +verb( 'rough', 'roughs', 'roughing', 'roughed', 'roughed', tran, ['6A','15B'] ). +verb( 'rough-dry', 'rough-dries', 'rough-drying', 'rough-dried', 'rough-dried', tran, [] ). +verb( 'rough-house', 'rough-houses', 'rough-housing', 'rough-housed', 'rough-housed', _, ['2A','6A'] ). +verb( 'roughcast', 'roughcasts', 'roughcasting', 'roughcast', 'roughcast', tran, [] ). +verb( 'roughen', 'roughens', 'roughening', 'roughened', 'roughened', _, [] ). +verb( 'round', 'rounds', 'rounding', 'rounded', 'rounded', _, ['2C','3A','6A','15B'] ). +verb( 'rouse', 'rouses', 'rousing', 'roused', 'roused', _, ['2A','6A','15A'] ). +verb( 'rout', 'routs', 'routing', 'routed', 'routed', tran, ['6A','15B'] ). +verb( 'route', 'routes', 'routing', 'routed', 'routed', tran, [] ). +verb( 'rove', 'roves', 'roving', 'roved', 'roved', _, ['2A','2C','6A'] ). +verb( 'row', 'rows', 'rowing', 'rowed', 'rowed', _, ['2A','2B','2C','6A','15A','15B'] ). +verb( 'row', 'rows', 'rowing', 'rowed', 'rowed', _, ['2A','3A','6A'] ). +verb( 'rub', 'rubs', 'rubbing', 'rubbed', 'rubbed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'rubber', 'rubbers', 'rubbering', 'rubbered', 'rubbered', tran, ['6A'] ). +verb( 'rubber-stamp', 'rubber-stamps', 'rubber-stamping', 'rubber-stamped', 'rubber-stamped', tran, [] ). +verb( 'rubberize', 'rubberizes', 'rubberizing', 'rubberized', 'rubberized', tran, ['6A'] ). +verb( 'rubberneck', 'rubbernecks', 'rubbernecking', 'rubbernecked', 'rubbernecked', intran, [] ). +verb( 'rubbish', 'rubbishes', 'rubbishing', 'rubbished', 'rubbished', tran, ['6A'] ). +verb( 'ruck', 'rucks', 'rucking', 'rucked', 'rucked', _, ['2A','2C','6A','15B'] ). +verb( 'ruddle', 'ruddles', 'ruddling', 'ruddled', 'ruddled', tran, [] ). +verb( 'rue', 'rues', 'ruing', 'rued', 'rued', tran, ['6A'] ). +verb( 'ruff', 'ruffs', 'ruffing', 'ruffed', 'ruffed', _, [] ). +verb( 'ruffle', 'ruffles', 'ruffling', 'ruffled', 'ruffled', _, ['2A','6A','15B'] ). +verb( 'ruin', 'ruins', 'ruining', 'ruined', 'ruined', tran, ['6A'] ). +verb( 'rule', 'rules', 'ruling', 'ruled', 'ruled', _, ['2A','2B','2C','3A','6A','9','15A','15B','25'] ). +verb( 'rumble', 'rumbles', 'rumbling', 'rumbled', 'rumbled', _, ['2A','2C','15B'] ). +verb( 'ruminate', 'ruminates', 'ruminating', 'ruminated', 'ruminated', intran, ['2A','2B','2C'] ). +verb( 'rummage', 'rummages', 'rummaging', 'rummaged', 'rummaged', _, ['2A','2B','2C','3A','6A','15B'] ). +verb( 'rumour', 'rumours', 'rumouring', 'rumoured', 'rumoured', tran, [] ). +verb( 'rumple', 'rumples', 'rumpling', 'rumpled', 'rumpled', tran, ['6A'] ). +verb( 'run', 'runs', 'running', 'ran', 'run', _, ['2A','2B','2C','2D','2E','3A','4A','6A','14','15A','15B'] ). +verb( 'rupture', 'ruptures', 'rupturing', 'ruptured', 'ruptured', _, ['2A','6A'] ). +verb( 'rush', 'rushes', 'rushing', 'rushed', 'rushed', _, ['2A','2C','4A','6A','15A','15B'] ). +verb( 'rust', 'rusts', 'rusting', 'rusted', 'rusted', _, ['2A','2C','6A'] ). +verb( 'rusticate', 'rusticates', 'rusticating', 'rusticated', 'rusticated', _, ['2A','6A'] ). +verb( 'rustle', 'rustles', 'rustling', 'rustled', 'rustled', _, ['2A','2C','6A','15B'] ). +verb( 'rut', 'ruts', 'rutting', 'rutted', 'rutted', tran, ['2A'] ). +verb( 'sabotage', 'sabotages', 'sabotaging', 'sabotaged', 'sabotaged', tran, ['6A'] ). +verb( 'sabre', 'sabres', 'sabring', 'sabred', 'sabred', tran, [] ). +verb( 'sack', 'sacks', 'sacking', 'sacked', 'sacked', tran, ['6A'] ). +verb( 'sacrifice', 'sacrifices', 'sacrificing', 'sacrificed', 'sacrificed', _, ['3A','6A','14','16A'] ). +verb( 'sadden', 'saddens', 'saddening', 'saddened', 'saddened', _, ['2A','6A'] ). +verb( 'saddle', 'saddles', 'saddling', 'saddled', 'saddled', tran, ['6A','14'] ). +verb( 'safeguard', 'safeguards', 'safeguarding', 'safeguarded', 'safeguarded', tran, ['6A','14'] ). +verb( 'sag', 'sags', 'sagging', 'sagged', 'sagged', intran, ['2A'] ). +verb( 'sail', 'sails', 'sailing', 'sailed', 'sailed', _, ['2A','2B','2C','3A','6A'] ). +verb( 'salaam', 'salaams', 'salaaming', 'salaamed', 'salaamed', intran, [] ). +verb( 'salivate', 'salivates', 'salivating', 'salivated', 'salivated', intran, [] ). +verb( 'sallow', 'sallows', 'sallowing', 'sallowed', 'sallowed', _, [] ). +verb( 'sally', 'sallies', 'sallying', 'sallied', 'sallied', intran, ['2A','2C'] ). +verb( 'salt', 'salts', 'salting', 'salted', 'salted', tran, ['6A','15B'] ). +verb( 'salute', 'salutes', 'saluting', 'saluted', 'saluted', _, ['2A','6A'] ). +verb( 'salvage', 'salvages', 'salvaging', 'salvaged', 'salvaged', tran, ['6A'] ). +verb( 'salve', 'salves', 'salving', 'salved', 'salved', tran, ['6A'] ). +verb( 'sample', 'samples', 'sampling', 'sampled', 'sampled', tran, ['6A'] ). +verb( 'sanctify', 'sanctifies', 'sanctifying', 'sanctified', 'sanctified', tran, ['6A'] ). +verb( 'sanction', 'sanctions', 'sanctioning', 'sanctioned', 'sanctioned', tran, ['6A'] ). +verb( 'sand', 'sands', 'sanding', 'sanded', 'sanded', tran, ['6A'] ). +verb( 'sandblast', 'sandblasts', 'sandblasting', 'sandblasted', 'sandblasted', tran, ['6A'] ). +verb( 'sandpaper', 'sandpapers', 'sandpapering', 'sandpapered', 'sandpapered', tran, ['6A'] ). +verb( 'sandwich', 'sandwiches', 'sandwiching', 'sandwiched', 'sandwiched', tran, ['6A','14'] ). +verb( 'sap', 'saps', 'sapping', 'sapped', 'sapped', _, ['2A','6A'] ). +verb( 'sate', 'sates', 'sating', 'sated', 'sated', tran, ['6A'] ). +verb( 'satiate', 'satiates', 'satiating', 'satiated', 'satiated', tran, ['6A'] ). +verb( 'satirize', 'satirizes', 'satirizing', 'satirized', 'satirized', tran, ['6A'] ). +verb( 'satisfy', 'satisfies', 'satisfying', 'satisfied', 'satisfied', _, ['2A','6A','11','14'] ). +verb( 'saturate', 'saturates', 'saturating', 'saturated', 'saturated', tran, ['6A','14'] ). +verb( 'sauce', 'sauces', 'saucing', 'sauced', 'sauced', tran, ['6A'] ). +verb( 'saunter', 'saunters', 'sauntering', 'sauntered', 'sauntered', intran, ['2A','2C'] ). +verb( 'saut_e', 'saut_es', 'saut_eing', 'saut_eed', 'saut_eed', tran, [] ). +verb( 'savage', 'savages', 'savaging', 'savaged', 'savaged', tran, ['6A'] ). +verb( 'save', 'saves', 'saving', 'saved', 'saved', _, ['2A','2C','3A','6A','6D','12B','12C','13B','14','15B'] ). +verb( 'savour', 'savours', 'savouring', 'savoured', 'savoured', _, ['3A','6A'] ). +verb( 'savvy', 'savvies', 'savvying', 'savvyed', 'savvyed', intran, [] ). +verb( 'saw', 'saws', 'sawing', 'sawed', 'sawed', _, ['2A','2B','2C','4A','6A','8','9','10','15A','15B','16B','18A','19A','22','24A'] ). +verb( 'say', 'says', 'saying', 'said', 'said', _, ['6A','9','10','14'] ). +verb( 'scald', 'scalds', 'scalding', 'scalded', 'scalded', tran, ['6A'] ). +verb( 'scale', 'scales', 'scaling', 'scaled', 'scaled', _, ['2B','2C','6A','15A','15B'] ). +verb( 'scallop', 'scallops', 'scalloping', 'scalloped', 'scalloped', tran, ['6A'] ). +verb( 'scalp', 'scalps', 'scalping', 'scalped', 'scalped', tran, ['6A'] ). +verb( 'scamp', 'scamps', 'scamping', 'scamped', 'scamped', tran, ['6A'] ). +verb( 'scamper', 'scampers', 'scampering', 'scampered', 'scampered', intran, ['2A','2C'] ). +verb( 'scan', 'scans', 'scanning', 'scanned', 'scanned', _, ['2A','6A'] ). +verb( 'scandalize', 'scandalizes', 'scandalizing', 'scandalized', 'scandalized', tran, ['6A'] ). +verb( 'scant', 'scants', 'scanting', 'scanted', 'scanted', tran, ['6A'] ). +verb( 'scar', 'scars', 'scarring', 'scarred', 'scarred', _, ['2C','6A'] ). +verb( 'scare', 'scares', 'scaring', 'scared', 'scared', _, ['2A','6A','15A','15B'] ). +verb( 'scarify', 'scarifies', 'scarifying', 'scarified', 'scarified', tran, ['6A'] ). +verb( 'scarper', 'scarpers', 'scarpering', 'scarpered', 'scarpered', intran, ['2A'] ). +verb( 'scatter', 'scatters', 'scattering', 'scattered', 'scattered', _, ['2A','2C','6A','15A','15B'] ). +verb( 'scavenge', 'scavenges', 'scavenging', 'scavenged', 'scavenged', intran, ['2A','3A'] ). +verb( 'scent', 'scents', 'scenting', 'scented', 'scented', tran, ['6A'] ). +verb( 'schedule', 'schedules', 'scheduling', 'scheduled', 'scheduled', tran, ['6A','7A','14'] ). +verb( 'scheme', 'schemes', 'scheming', 'schemed', 'schemed', _, ['2A','3A','4A','6A'] ). +verb( 'school', 'schools', 'schooling', 'schooled', 'schooled', tran, ['6A','15A'] ). +verb( 'scintillate', 'scintillates', 'scintillating', 'scintillated', 'scintillated', intran, ['2A'] ). +verb( 'scoff', 'scoffs', 'scoffing', 'scoffed', 'scoffed', _, ['2A','3A'] ). +verb( 'scold', 'scolds', 'scolding', 'scolded', 'scolded', _, ['2A','6A','14'] ). +verb( 'scollop', 'scollops', 'scolloping', 'scolloped', 'scolloped', tran, [] ). +verb( 'scoop', 'scoops', 'scooping', 'scooped', 'scooped', tran, ['6A','15B'] ). +verb( 'scoot', 'scoots', 'scooting', 'scooted', 'scooted', intran, [] ). +verb( 'scorch', 'scorches', 'scorching', 'scorched', 'scorched', _, ['2A','2C','6A'] ). +verb( 'score', 'scores', 'scoring', 'scored', 'scored', _, ['2A','3A','6A','15A','15B'] ). +verb( 'scorn', 'scorns', 'scorning', 'scorned', 'scorned', tran, ['6A','6D','7A'] ). +verb( 'scotch', 'scotches', 'scotching', 'scotched', 'scotched', tran, ['6A'] ). +verb( 'scour', 'scours', 'scouring', 'scoured', 'scoured', _, ['2C','6A','15A','15B'] ). +verb( 'scourge', 'scourges', 'scourging', 'scourged', 'scourged', tran, ['6A'] ). +verb( 'scout', 'scouts', 'scouting', 'scouted', 'scouted', _, ['2C','6A'] ). +verb( 'scowl', 'scowls', 'scowling', 'scowled', 'scowled', intran, ['2A','3A'] ). +verb( 'scrabble', 'scrabbles', 'scrabbling', 'scrabbled', 'scrabbled', intran, ['2A','2C'] ). +verb( 'scrag', 'scrags', 'scragging', 'scragged', 'scragged', tran, [] ). +verb( 'scram', 'scrams', 'scramming', 'scrammed', 'scrammed', intran, [] ). +verb( 'scramble', 'scrambles', 'scrambling', 'scrambled', 'scrambled', _, ['2A','2C','3A','4A','6A'] ). +verb( 'scrap', 'scraps', 'scrapping', 'scrapped', 'scrapped', tran, ['6A'] ). +verb( 'scrape', 'scrapes', 'scraping', 'scraped', 'scraped', _, ['2C','3A','6A','14','15A','15B','22'] ). +verb( 'scratch', 'scratches', 'scratching', 'scratched', 'scratched', _, ['2A','2C','6A','15B'] ). +verb( 'scrawl', 'scrawls', 'scrawling', 'scrawled', 'scrawled', _, ['2A','2C','6A'] ). +verb( 'scream', 'screams', 'screaming', 'screamed', 'screamed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'screech', 'screeches', 'screeching', 'screeched', 'screeched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'screen', 'screens', 'screening', 'screened', 'screened', _, ['2C','6A','14','15A','15B'] ). +verb( 'screw', 'screws', 'screwing', 'screwed', 'screwed', _, ['2A','6A','15A','15B'] ). +verb( 'scribble', 'scribbles', 'scribbling', 'scribbled', 'scribbled', _, ['2A','6A'] ). +verb( 'scrimmage', 'scrimmages', 'scrimmaging', 'scrimmaged', 'scrimmaged', _, [] ). +verb( 'scrimp', 'scrimps', 'scrimping', 'scrimped', 'scrimped', _, [] ). +verb( 'scrimshank', 'scrimshanks', 'scrimshanking', 'scrimshanked', 'scrimshanked', intran, [] ). +verb( 'scrounge', 'scrounges', 'scrounging', 'scrounged', 'scrounged', _, ['2A','6A'] ). +verb( 'scrub', 'scrubs', 'scrubbing', 'scrubbed', 'scrubbed', _, ['2A','2C','6A','15B','22'] ). +verb( 'scrunch', 'scrunches', 'scrunching', 'scrunched', 'scrunched', tran, [] ). +verb( 'scruple', 'scruples', 'scrupling', 'scrupled', 'scrupled', intran, ['4C'] ). +verb( 'scrutinize', 'scrutinizes', 'scrutinizing', 'scrutinized', 'scrutinized', tran, ['6A'] ). +verb( 'scud', 'scuds', 'scudding', 'scudded', 'scudded', intran, ['2A','2C'] ). +verb( 'scuff', 'scuffs', 'scuffing', 'scuffed', 'scuffed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'scuffle', 'scuffles', 'scuffling', 'scuffled', 'scuffled', intran, ['2A','2C'] ). +verb( 'scull', 'sculls', 'sculling', 'sculled', 'sculled', _, ['2A','6A'] ). +verb( 'sculpt', 'sculpts', 'sculpting', 'sculpted', 'sculpted', _, [] ). +verb( 'sculpture', 'sculptures', 'sculpturing', 'sculptured', 'sculptured', _, ['2A','6A'] ). +verb( 'scupper', 'scuppers', 'scuppering', 'scuppered', 'scuppered', tran, [] ). +verb( 'scurry', 'scurries', 'scurrying', 'scurried', 'scurried', intran, ['2A','2C','3A'] ). +verb( 'scuttle', 'scuttles', 'scuttling', 'scuttled', 'scuttled', _, ['2A','2C','6A'] ). +verb( 'scythe', 'scythes', 'scything', 'scythed', 'scythed', tran, ['6A','15A'] ). +verb( 'seal', 'seals', 'sealing', 'sealed', 'sealed', _, ['2A','6A','15A','15B'] ). +verb( 'seam', 'seams', 'seaming', 'seamed', 'seamed', tran, [] ). +verb( 'sear', 'sears', 'searing', 'seared', 'seared', tran, ['6A'] ). +verb( 'search', 'searches', 'searching', 'searched', 'searched', _, ['2A','3A','6A','14','15A','15B'] ). +verb( 'season', 'seasons', 'seasoning', 'seasoned', 'seasoned', _, ['2A','6A','14'] ). +verb( 'seat', 'seats', 'seating', 'seated', 'seated', tran, ['6A'] ). +verb( 'secede', 'secedes', 'seceding', 'seceded', 'seceded', intran, ['2A','3A'] ). +verb( 'seclude', 'secludes', 'secluding', 'secluded', 'secluded', tran, ['6A','14','15A'] ). +verb( 'second', 'seconds', 'seconding', 'seconded', 'seconded', tran, ['6A'] ). +verb( 'second', 'seconds', 'seconding', 'seconded', 'seconded', tran, ['6A','15A'] ). +verb( 'secrete', 'secretes', 'secreting', 'secreted', 'secreted', tran, ['6A'] ). +verb( 'secularize', 'secularizes', 'secularizing', 'secularized', 'secularized', tran, ['6A'] ). +verb( 'secure', 'secures', 'securing', 'secured', 'secured', tran, ['6A','12B','13B','14'] ). +verb( 'sedate', 'sedates', 'sedating', 'sedated', 'sedated', tran, ['6A'] ). +verb( 'seduce', 'seduces', 'seducing', 'seduced', 'seduced', tran, ['6A','14'] ). +verb( 'see', 'sees', 'seeing', 'saw', 'seen', _, ['2A','2B','2C','4A','6A','8','9','10','15A','16B','18A','19A','22','24A'] ). +verb( 'seed', 'seeds', 'seeding', 'seeded', 'seeded', _, ['2A','6A'] ). +verb( 'seek', 'seeks', 'seeking', 'sought', 'sought', tran, ['2A','3A','6A','7A','15A'] ). +verb( 'seem', 'seems', 'seeming', 'seemed', 'seemed', intran, ['2A','4D','4E'] ). +verb( 'seep', 'seeps', 'seeping', 'seeped', 'seeped', intran, ['2C'] ). +verb( 'seesaw', 'seesaws', 'seesawing', 'seesawed', 'seesawed', intran, [] ). +verb( 'seethe', 'seethes', 'seething', 'seethed', 'seethed', _, ['2A','3A','6A'] ). +verb( 'segment', 'segments', 'segmenting', 'segmented', 'segmented', _, [] ). +verb( 'segregate', 'segregates', 'segregating', 'segregated', 'segregated', tran, ['6A'] ). +verb( 'seine', 'seines', 'seining', 'seined', 'seined', _, [] ). +verb( 'seize', 'seizes', 'seizing', 'seized', 'seized', _, ['2A','2C','3A','6A','15A'] ). +verb( 'select', 'selects', 'selecting', 'selected', 'selected', tran, ['6A','15A','16A'] ). +verb( 'sell', 'sells', 'selling', 'sold', 'sold', _, ['2A','2C','6A','12A','13A','15B'] ). +verb( 'semaphore', 'semaphores', 'semaphoring', 'semaphored', 'semaphored', _, ['2A','6A'] ). +verb( 'send', 'sends', 'sending', 'sent', 'sent', _, ['2C','3A','6A','12A','13A','15A','15B','19B','22'] ). +verb( 'sense', 'senses', 'sensing', 'sensed', 'sensed', tran, ['6A','9'] ). +verb( 'sensitize', 'sensitizes', 'sensitizing', 'sensitized', 'sensitized', tran, ['6A'] ). +verb( 'sentence', 'sentences', 'sentencing', 'sentenced', 'sentenced', tran, ['6A','14','17'] ). +verb( 'sentimentalize', 'sentimentalizes', 'sentimentalizing', 'sentimentalized', 'sentimentalized', _, ['2A','6A'] ). +verb( 'separate', 'separates', 'separating', 'separated', 'separated', _, ['2A','6A','14','15B'] ). +verb( 'sequester', 'sequesters', 'sequestering', 'sequestered', 'sequestered', tran, ['6A'] ). +verb( 'sequestrate', 'sequestrates', 'sequestrating', 'sequestrated', 'sequestrated', tran, ['6A'] ). +verb( 'serenade', 'serenades', 'serenading', 'serenaded', 'serenaded', tran, ['6A'] ). +verb( 'serialize', 'serializes', 'serializing', 'serialized', 'serialized', tran, ['6A'] ). +verb( 'sermonize', 'sermonizes', 'sermonizing', 'sermonized', 'sermonized', _, ['2A','6A'] ). +verb( 'serve', 'serves', 'serving', 'served', 'served', _, ['2A','2B','2C','3A','4A','6A','14','15A','15B'] ). +verb( 'service', 'services', 'servicing', 'serviced', 'serviced', tran, ['6A'] ). +verb( 'set', 'sets', 'setting', 'set', 'set', _, ['2A','2C','3A','6A','12C','14','15A','16A','17','19B','22'] ). +verb( 'settle', 'settles', 'settling', 'settled', 'settled', _, ['2A','2C','3A','6A','7A','8','10','14','15A','15B'] ). +verb( 'sever', 'severs', 'severing', 'severed', 'severed', _, ['2A','6A','15A'] ). +verb( 'sew', 'sews', 'sewing', 'sewed', 'sewn', _, ['2A','2B','2C','6A','15B'] ). +verb( 'sex', 'sexes', 'sexing', 'sexed', 'sexed', tran, ['6A'] ). +verb( 'shack', 'shacks', 'shacking', 'shacked', 'shacked', intran, ['2C'] ). +verb( 'shackle', 'shackles', 'shackling', 'shackled', 'shackled', tran, ['6A'] ). +verb( 'shade', 'shades', 'shading', 'shaded', 'shaded', _, ['2C','6A','15A'] ). +verb( 'shadow', 'shadows', 'shadowing', 'shadowed', 'shadowed', tran, ['6A'] ). +verb( 'shag', 'shags', 'shagging', 'shagged', 'shagged', _, ['6A'] ). +verb( 'shake', 'shakes', 'shaking', 'shook', 'shaken', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'shall', 'shall', '-', '-', '-', unknown, [] ). +verb( 'shallow', 'shallows', 'shallowing', 'shallowed', 'shallowed', intran, [] ). +verb( 'sham', 'shams', 'shamming', 'shammed', 'shammed', _, ['2A','2D','6A'] ). +verb( 'shamble', 'shambles', 'shambling', 'shambled', 'shambled', intran, ['2A','2C'] ). +verb( 'shame', 'shames', 'shaming', 'shamed', 'shamed', tran, ['6A','14'] ). +verb( 'shampoo', 'shampoos', 'shampooing', 'shampooed', 'shampooed', tran, ['6A'] ). +verb( 'shanghai', 'shanghais', 'shanghaiing', 'shanghaied', 'shanghaied', tran, [] ). +verb( 'shape', 'shapes', 'shaping', 'shaped', 'shaped', _, ['2A','2C','6A','15A'] ). +verb( 'share', 'shares', 'sharing', 'shared', 'shared', _, ['3A','6A','14','15B'] ). +verb( 'sharpen', 'sharpens', 'sharpening', 'sharpened', 'sharpened', _, ['2A','6A'] ). +verb( 'shatter', 'shatters', 'shattering', 'shattered', 'shattered', _, ['2A','6A'] ). +verb( 'shave', 'shaves', 'shaving', 'shaved', 'shaved', _, ['2A','6A','15A','15B'] ). +verb( 'shear', 'shears', 'shearing', 'sheared', 'sheared', tran, ['6A'] ). +verb( 'sheathe', 'sheathes', 'sheathing', 'sheathed', 'sheathed', tran, ['6A'] ). +verb( 'shed', 'sheds', 'shedding', 'shed', 'shed', tran, ['6A'] ). +verb( 'sheer', 'sheers', 'sheering', 'sheered', 'sheered', intran, ['2C'] ). +verb( 'shell', 'shells', 'shelling', 'shelled', 'shelled', _, ['2C','6A','15B'] ). +verb( 'shellac', 'shellacs', 'shellacking', 'shellacked', 'shellacked', tran, [] ). +verb( 'shelter', 'shelters', 'sheltering', 'sheltered', 'sheltered', _, ['2A','2C','6A','14'] ). +verb( 'shelve', 'shelves', 'shelving', 'shelved', 'shelved', _, ['2A','2C','6A'] ). +verb( 'shepherd', 'shepherds', 'shepherding', 'shepherded', 'shepherded', tran, ['6A','15A'] ). +verb( 'shew', 'shews', 'shewing', 'shewed', 'shewed', _, ['2A','2C','6A','9','10','12A','13A','14','15A','15B','19B','20','21','24A','25'] ). +verb( 'shield', 'shields', 'shielding', 'shielded', 'shielded', tran, ['6A','15A'] ). +verb( 'shift', 'shifts', 'shifting', 'shifted', 'shifted', _, ['2A','2C','6A','14','15A'] ). +verb( 'shillyshally', 'shillyshallies', 'shillyshallying', 'shillyshallied', 'shillyshallied', intran, ['2A'] ). +verb( 'shimmer', 'shimmers', 'shimmering', 'shimmered', 'shimmered', intran, ['2A','2C'] ). +verb( 'shin', 'shins', 'shinning', 'shinned', 'shinned', intran, ['3A'] ). +verb( 'shine', 'shines', 'shining', 'shone', 'shone', _, ['2A','2C','6A'] ). +verb( 'shingle', 'shingles', 'shingling', 'shingled', 'shingled', tran, ['6A'] ). +verb( 'ship', 'ships', 'shipping', 'shipped', 'shipped', _, ['2C','6A','15A','15B'] ). +verb( 'shipwreck', 'shipwrecks', 'shipwrecking', 'shipwrecked', 'shipwrecked', intran, [] ). +verb( 'shirk', 'shirks', 'shirking', 'shirked', 'shirked', _, ['2A','6A','6D'] ). +verb( 'shit', 'shits', 'shitting', 'shitted', 'shitted', intran, ['2A','3A'] ). +verb( 'shiver', 'shivers', 'shivering', 'shivered', 'shivered', _, ['2A','2C','15A'] ). +verb( 'shoal', 'shoals', 'shoaling', 'shoaled', 'shoaled', intran, ['2A'] ). +verb( 'shock', 'shocks', 'shocking', 'shocked', 'shocked', tran, ['6A'] ). +verb( 'shoe', 'shoes', 'shoeing', 'shod', 'shod', tran, ['6A'] ). +verb( 'shoo', 'shoos', 'shooing', 'shooed', 'shooed', _, ['15B'] ). +verb( 'shoot', 'shoots', 'shooting', 'shot', 'shot', _, ['2A','2C','4A','6A','15A','15B'] ). +verb( 'shop', 'shops', 'shopping', 'shopped', 'shopped', intran, ['2A','2C'] ). +verb( 'shoplift', 'shoplifts', 'shoplifting', 'shoplifted', 'shoplifted', _, ['2A','6A'] ). +verb( 'shore', 'shores', 'shoring', 'shored', 'shored', tran, ['15B'] ). +verb( 'short', 'shorts', 'shorting', 'shorted', 'shorted', _, [] ). +verb( 'short-change', 'short-changes', 'short-changing', 'short-changed', 'short-changed', tran, [] ). +verb( 'short-circuit', 'short-circuits', 'short-circuiting', 'short-circuited', 'short-circuited', _, [] ). +verb( 'shorten', 'shortens', 'shortening', 'shortened', 'shortened', _, ['2A','6A'] ). +verb( 'shortlist', 'shortlists', 'shortlisting', 'shortlisted', 'shortlisted', tran, [] ). +verb( 'should', 'should', '-', '-', '-', unknown, [] ). +verb( 'shoulder', 'shoulders', 'shouldering', 'shouldered', 'shouldered', tran, ['6A','15A'] ). +verb( 'shout', 'shouts', 'shouting', 'shouted', 'shouted', _, ['2A','2B','2C','3A','4B','6A','15A','15B','22'] ). +verb( 'shove', 'shoves', 'shoving', 'shoved', 'shoved', _, ['2A','2C','6A','15A','15B'] ). +verb( 'shovel', 'shovels', 'shovelling', 'shovelled', 'shovelled', tran, ['6A','15A','15B'] ). +verb( 'show', 'shows', 'showing', 'showed', 'showed', _, ['2A','2C','6A','9','10','12A','13A','14','15A','15B','19B','20','21','24A','25'] ). +verb( 'shower', 'showers', 'showering', 'showered', 'showered', _, ['2C','14'] ). +verb( 'shred', 'shreds', 'shredding', 'shredded', 'shredded', tran, ['6A'] ). +verb( 'shriek', 'shrieks', 'shrieking', 'shrieked', 'shrieked', _, ['2A','2C','6A','15B'] ). +verb( 'shrill', 'shrills', 'shrilling', 'shrilled', 'shrilled', _, [] ). +verb( 'shrimp', 'shrimps', 'shrimping', 'shrimped', 'shrimped', intran, [] ). +verb( 'shrine', 'shrines', 'shrining', 'shrined', 'shrined', tran, [] ). +verb( 'shrink', 'shrinks', 'shrinking', 'shrank', 'shrunk', _, ['2A','2C','3A','6A'] ). +verb( 'shrive', 'shrives', 'shriving', 'shrived', 'shrived', tran, ['6A'] ). +verb( 'shrivel', 'shrivels', 'shrivelling', 'shrivelled', 'shrivelled', _, ['2A','2C','6A','15B'] ). +verb( 'shroud', 'shrouds', 'shrouding', 'shrouded', 'shrouded', tran, ['6A','15A'] ). +verb( 'shrug', 'shrugs', 'shrugging', 'shrugged', 'shrugged', tran, ['6A','15B'] ). +verb( 'shuck', 'shucks', 'shucking', 'shucked', 'shucked', tran, ['6A'] ). +verb( 'shudder', 'shudders', 'shuddering', 'shuddered', 'shuddered', intran, ['2A','2C','4C'] ). +verb( 'shuffle', 'shuffles', 'shuffling', 'shuffled', 'shuffled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'shun', 'shuns', 'shunning', 'shunned', 'shunned', tran, ['6A','6D'] ). +verb( 'shunt', 'shunts', 'shunting', 'shunted', 'shunted', _, ['2A','6A','15A','15B'] ). +verb( 'shush', 'shushes', 'shushing', 'shushed', 'shushed', _, [] ). +verb( 'shut', 'shuts', 'shutting', 'shut', 'shut', _, ['2A','2C','6A','15A','15B'] ). +verb( 'shutter', 'shutters', 'shuttering', 'shuttered', 'shuttered', tran, ['6A'] ). +verb( 'shuttle', 'shuttles', 'shuttling', 'shuttled', 'shuttled', _, ['2C','6A','15A'] ). +verb( 'shy', 'shies', 'shying', 'shied', 'shied', _, ['2A','3A','6A','15A'] ). +verb( 'sick', 'sicks', 'sicking', 'sicked', 'sicked', tran, [] ). +verb( 'sicken', 'sickens', 'sickening', 'sickened', 'sickened', _, ['2A','3A','4C','6A'] ). +verb( 'side', 'sides', 'siding', 'sided', 'sided', intran, ['3A'] ). +verb( 'side-slip', 'side-slips', 'side-slipping', 'side-slipped', 'side-slipped', intran, [] ). +verb( 'sidestep', 'sidesteps', 'sidestepping', 'sidestepped', 'sidestepped', _, ['2A','6A'] ). +verb( 'sidetrack', 'sidetracks', 'sidetracking', 'sidetracked', 'sidetracked', tran, ['6A'] ). +verb( 'sidle', 'sidles', 'sidling', 'sidled', 'sidled', intran, ['2C'] ). +verb( 'sieve', 'sieves', 'sieving', 'sieved', 'sieved', tran, ['6A'] ). +verb( 'sift', 'sifts', 'sifting', 'sifted', 'sifted', _, ['2C','6A','14','15A','15B'] ). +verb( 'sigh', 'sighs', 'sighing', 'sighed', 'sighed', _, ['2A','3A','6A','15B'] ). +verb( 'sight', 'sights', 'sighting', 'sighted', 'sighted', tran, ['6A'] ). +verb( 'sign', 'signs', 'signing', 'signed', 'signed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'signal', 'signals', 'signalling', 'signalled', 'signalled', _, ['2A','2C','6A','9','17'] ). +verb( 'signalize', 'signalizes', 'signalizing', 'signalized', 'signalized', tran, ['6A'] ). +verb( 'signify', 'signifies', 'signifying', 'signified', 'signified', _, ['2A','2C','6A','9','15A'] ). +verb( 'signpost', 'signposts', 'signposting', 'signposted', 'signposted', tran, [] ). +verb( 'silence', 'silences', 'silencing', 'silenced', 'silenced', tran, ['6A'] ). +verb( 'silhouette', 'silhouettes', 'silhouetting', 'silhouetted', 'silhouetted', tran, [] ). +verb( 'silt', 'silts', 'silting', 'silted', 'silted', _, ['2C','15B'] ). +verb( 'silver', 'silvers', 'silvering', 'silvered', 'silvered', _, ['2A','6A'] ). +verb( 'simmer', 'simmers', 'simmering', 'simmered', 'simmered', _, ['2A','2B','2C','6A','15A'] ). +verb( 'simper', 'simpers', 'simpering', 'simpered', 'simpered', intran, ['2A'] ). +verb( 'simplify', 'simplifies', 'simplifying', 'simplified', 'simplified', tran, ['6A'] ). +verb( 'simulate', 'simulates', 'simulating', 'simulated', 'simulated', tran, ['6A'] ). +verb( 'sin', 'sins', 'sinning', 'sinned', 'sinned', intran, ['2A','3A'] ). +verb( 'sing', 'sings', 'singing', 'sang', 'sung', _, ['2A','2C','3A','6A','12B','13B','15A'] ). +verb( 'singe', 'singes', 'singeing', 'singed', 'singed', _, ['2A','6A'] ). +verb( 'single', 'singles', 'singling', 'singled', 'singled', tran, ['15B'] ). +verb( 'singularize', 'singularizes', 'singularizing', 'singularized', 'singularized', tran, [] ). +verb( 'sink', 'sinks', 'sinking', 'sank', 'sunk', _, ['2A','2C','3A','6A','14','15A'] ). +verb( 'sip', 'sips', 'sipping', 'sipped', 'sipped', _, ['2A','6A','15B'] ). +verb( 'siphon', 'siphons', 'siphoning', 'siphoned', 'siphoned', _, ['15B'] ). +verb( 'sire', 'sires', 'siring', 'sired', 'sired', tran, ['6A'] ). +verb( 'sit', 'sits', 'siting', 'sat', 'sat', _, ['2A','2C','3A','6A','15B'] ). +verb( 'site', 'sites', 'siting', 'sited', 'sited', intran, ['6A'] ). +verb( 'size', 'sizes', 'sizing', 'sized', 'sized', tran, ['6A','15B'] ). +verb( 'sizzle', 'sizzles', 'sizzling', 'sizzled', 'sizzled', intran, ['6A'] ). +verb( 'skate', 'skates', 'skating', 'skated', 'skated', intran, ['2A','2C'] ). +verb( 'skedaddle', 'skedaddles', 'skedaddling', 'skedaddled', 'skedaddled', intran, ['2A'] ). +verb( 'sketch', 'sketches', 'sketching', 'sketched', 'sketched', _, ['2A','6A','15B'] ). +verb( 'skewer', 'skewers', 'skewering', 'skewered', 'skewered', tran, ['6A'] ). +verb( 'ski', 'skis', 'skiing', 'ski\'d', 'ski\'d', intran, [] ). +verb( 'skid', 'skids', 'skidding', 'skidded', 'skidded', intran, ['2A'] ). +verb( 'skim', 'skims', 'skimming', 'skimmed', 'skimmed', _, ['2C','3A','6A','14','15A','15B'] ). +verb( 'skimp', 'skimps', 'skimping', 'skimped', 'skimped', _, ['2A','6A'] ). +verb( 'skin', 'skins', 'skinning', 'skinned', 'skinned', _, ['2C','6A','14'] ). +verb( 'skip', 'skips', 'skipping', 'skipped', 'skipped', _, ['2A','2C','6A'] ). +verb( 'skipper', 'skippers', 'skippering', 'skippered', 'skippered', tran, [] ). +verb( 'skirmish', 'skirmishes', 'skirmishing', 'skirmished', 'skirmished', intran, ['2A','2C'] ). +verb( 'skirt', 'skirts', 'skirting', 'skirted', 'skirted', _, ['2C','6A'] ). +verb( 'skitter', 'skitters', 'skittering', 'skittered', 'skittered', intran, ['2A'] ). +verb( 'skittle', 'skittles', 'skittling', 'skittled', 'skittled', tran, ['15B'] ). +verb( 'skulk', 'skulks', 'skulking', 'skulked', 'skulked', intran, ['2A','2C'] ). +verb( 'sky', 'skies', 'skying', 'skied', 'skied', tran, [] ). +verb( 'skylark', 'skylarks', 'skylarking', 'skylarked', 'skylarked', intran, [] ). +verb( 'skyrocket', 'skyrockets', 'skyrocketing', 'skyrocketed', 'skyrocketed', intran, [] ). +verb( 'slack', 'slacks', 'slacking', 'slacked', 'slacked', intran, ['2A','2C'] ). +verb( 'slacken', 'slackens', 'slackening', 'slackened', 'slackened', _, ['2A','6A'] ). +verb( 'slake', 'slakes', 'slaking', 'slaked', 'slaked', tran, ['6A'] ). +verb( 'slam', 'slams', 'slamming', 'slammed', 'slammed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'slander', 'slanders', 'slandering', 'slandered', 'slandered', tran, ['6A'] ). +verb( 'slang', 'slangs', 'slanging', 'slanged', 'slanged', tran, ['6A'] ). +verb( 'slant', 'slants', 'slanting', 'slanted', 'slanted', _, ['2A','2C','6A'] ). +verb( 'slap', 'slaps', 'slapping', 'slapped', 'slapped', tran, ['6A','15A','15B'] ). +verb( 'slash', 'slashes', 'slashing', 'slashed', 'slashed', _, ['2C','6A'] ). +verb( 'slate', 'slates', 'slating', 'slated', 'slated', tran, ['6A'] ). +verb( 'slaughter', 'slaughters', 'slaughtering', 'slaughtered', 'slaughtered', tran, ['6A'] ). +verb( 'slave', 'slaves', 'slaving', 'slaved', 'slaved', intran, ['2A','2B','2C','3A'] ). +verb( 'slaver', 'slavers', 'slavering', 'slavered', 'slavered', intran, ['2A','2C'] ). +verb( 'slay', 'slays', 'slaying', 'slew', 'slain', tran, ['6A'] ). +verb( 'sledge', 'sledges', 'sledging', 'sledged', 'sledged', _, [] ). +verb( 'sleek', 'sleeks', 'sleeking', 'sleeked', 'sleeked', tran, ['6A'] ). +verb( 'sleep', 'sleeps', 'sleeping', 'slept', 'slept', _, ['2A','2B','2C','6A'] ). +verb( 'sleet', 'sleets', 'sleeting', 'sleeted', 'sleeted', intran, ['2A'] ). +verb( 'sleigh', 'sleighs', 'sleighing', 'sleighed', 'sleighed', _, ['2A','6A'] ). +verb( 'slenderize', 'slenderizes', 'slenderizing', 'slenderized', 'slenderized', _, ['6A'] ). +verb( 'slew', 'slews', 'slewing', 'slewed', 'slewed', _, ['2C','6A','15B'] ). +verb( 'slice', 'slices', 'slicing', 'sliced', 'sliced', _, ['3A','6A','15A','15B','22'] ). +verb( 'slide', 'slides', 'sliding', 'slid', 'slid', _, ['2A','2C','3A','6A','15A'] ). +verb( 'slight', 'slights', 'slighting', 'slighted', 'slighted', tran, ['6A'] ). +verb( 'slim', 'slims', 'slimming', 'slimmed', 'slimmed', intran, [] ). +verb( 'sling', 'slings', 'slinging', 'slung', 'slung', _, ['6A','15A','15B'] ). +verb( 'slink', 'slinks', 'slinking', 'slunk', 'slunk', intran, ['2C'] ). +verb( 'slip', 'slips', 'slipping', 'slipped', 'slipped', _, ['2A','2C','6A','15A','15B'] ). +verb( 'slit', 'slits', 'slitting', 'slit', 'slit', tran, ['2A','2C','6A','15A','22'] ). +verb( 'slither', 'slithers', 'slithering', 'slithered', 'slithered', intran, ['2A','2C'] ). +verb( 'sliver', 'slivers', 'slivering', 'slivered', 'slivered', _, ['2A','6A'] ). +verb( 'slobber', 'slobbers', 'slobbering', 'slobbered', 'slobbered', _, ['2A','3A','6A'] ). +verb( 'slog', 'slogs', 'slogging', 'slogged', 'slogged', _, ['2C','3A','6A'] ). +verb( 'slop', 'slops', 'slopping', 'slopped', 'slopped', _, ['2A','2C','6A','15A'] ). +verb( 'slope', 'slopes', 'sloping', 'sloped', 'sloped', _, ['2A','2C','6A'] ). +verb( 'slosh', 'sloshes', 'sloshing', 'sloshed', 'sloshed', _, ['3A','6A','15A','15B'] ). +verb( 'slot', 'slots', 'slotting', 'slotted', 'slotted', tran, ['6A','15A'] ). +verb( 'slouch', 'slouches', 'slouching', 'slouched', 'slouched', intran, ['2A','2C'] ). +verb( 'slough', 'sloughs', 'sloughing', 'sloughed', 'sloughed', _, ['2A','6A','15B'] ). +verb( 'slow', 'slows', 'slowing', 'slowed', 'slowed', _, ['2C','15B'] ). +verb( 'slug', 'slugs', 'slugging', 'slugged', 'slugged', _, [] ). +verb( 'sluice', 'sluices', 'sluicing', 'sluiced', 'sluiced', _, ['3A','6A','15B'] ). +verb( 'slum', 'slums', 'slumming', 'slummed', 'slummed', intran, [] ). +verb( 'slumber', 'slumbers', 'slumbering', 'slumbered', 'slumbered', _, ['2A','15B'] ). +verb( 'slump', 'slumps', 'slumping', 'slumped', 'slumped', intran, ['2A','2C'] ). +verb( 'slur', 'slurs', 'slurring', 'slurred', 'slurred', _, ['3A','6A'] ). +verb( 'smack', 'smacks', 'smacking', 'smacked', 'smacked', _, ['3A','6A'] ). +verb( 'smart', 'smarts', 'smarting', 'smarted', 'smarted', intran, ['2A','2C','3A'] ). +verb( 'smarten', 'smartens', 'smartening', 'smartened', 'smartened', _, ['2C','6A','15B'] ). +verb( 'smash', 'smashes', 'smashing', 'smashed', 'smashed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'smear', 'smears', 'smearing', 'smeared', 'smeared', _, ['2A','6A','14'] ). +verb( 'smell', 'smells', 'smelling', 'smelled', 'smelled', _, ['2A','2C','2D','3A','6A','15B','19A'] ). +verb( 'smelt', 'smelts', 'smelting', 'smelted', 'smelted', tran, ['2A','2C','2D','3A','6A','15B','19A'] ). +verb( 'smile', 'smiles', 'smiling', 'smiled', 'smiled', _, ['2A','2B','3A','4B','6B'] ). +verb( 'smirch', 'smirches', 'smirching', 'smirched', 'smirched', tran, ['6A'] ). +verb( 'smirk', 'smirks', 'smirking', 'smirked', 'smirked', intran, ['2A'] ). +verb( 'smite', 'smites', 'smiting', 'smote', 'smitten', _, ['2A','2C','6A'] ). +verb( 'smoke', 'smokes', 'smoking', 'smoked', 'smoked', _, ['2A','2C','6A','15B','22'] ). +verb( 'smooth', 'smooths', 'smoothing', 'smoothed', 'smoothed', _, ['2C','6A','15B'] ). +verb( 'smother', 'smothers', 'smothering', 'smothered', 'smothered', tran, ['6A','14','15B'] ). +verb( 'smoulder', 'smoulders', 'smouldering', 'smouldered', 'smouldered', intran, ['2A','2C'] ). +verb( 'smudge', 'smudges', 'smudging', 'smudged', 'smudged', _, ['2A','6A'] ). +verb( 'smuggle', 'smuggles', 'smuggling', 'smuggled', 'smuggled', tran, ['6A','14','15A','15B'] ). +verb( 'smut', 'smuts', 'smutting', 'smutted', 'smutted', tran, ['6A'] ). +verb( 'snaffle', 'snaffles', 'snaffling', 'snaffled', 'snaffled', tran, ['6A'] ). +verb( 'snag', 'snags', 'snagging', 'snagged', 'snagged', tran, [] ). +verb( 'snake', 'snakes', 'snaking', 'snaked', 'snaked', intran, ['2C'] ). +verb( 'snap', 'snaps', 'snapping', 'snapped', 'snapped', _, ['2A','2C','3A','6A','14','15A','15B','22'] ). +verb( 'snare', 'snares', 'snaring', 'snared', 'snared', tran, ['6A'] ). +verb( 'snarl', 'snarls', 'snarling', 'snarled', 'snarled', _, ['2A','2C','3A','6A','15B'] ). +verb( 'snatch', 'snatches', 'snatching', 'snatched', 'snatched', _, ['2A','6A','15A','15B'] ). +verb( 'sneak', 'sneaks', 'sneaking', 'sneaked', 'sneaked', _, ['2A','3A','6A'] ). +verb( 'sneer', 'sneers', 'sneering', 'sneered', 'sneered', intran, ['2A','3A'] ). +verb( 'sneeze', 'sneezes', 'sneezing', 'sneezed', 'sneezed', intran, ['2A'] ). +verb( 'snick', 'snicks', 'snicking', 'snicked', 'snicked', _, [] ). +verb( 'snicker', 'snickers', 'snickering', 'snickered', 'snickered', intran, [] ). +verb( 'sniff', 'sniffs', 'sniffing', 'sniffed', 'sniffed', _, ['2A','3A','6A','15B'] ). +verb( 'sniffle', 'sniffles', 'sniffling', 'sniffled', 'sniffled', intran, [] ). +verb( 'snigger', 'sniggers', 'sniggering', 'sniggered', 'sniggered', intran, ['2A','2C'] ). +verb( 'snip', 'snips', 'snipping', 'snipped', 'snipped', _, ['3A','6A','15B'] ). +verb( 'snipe', 'snipes', 'sniping', 'sniped', 'sniped', _, ['2A','3A','6A'] ). +verb( 'snitch', 'snitches', 'snitching', 'snitched', 'snitched', _, ['2A','3A','6A'] ). +verb( 'snivel', 'snivels', 'snivelling', 'snivelled', 'snivelled', intran, ['2A'] ). +verb( 'snog', 'snogs', 'snogging', 'snogged', 'snogged', intran, ['2A'] ). +verb( 'snoop', 'snoops', 'snooping', 'snooped', 'snooped', intran, ['2A','2C','3A'] ). +verb( 'snooze', 'snoozes', 'snoozing', 'snoozed', 'snoozed', intran, ['2A'] ). +verb( 'snore', 'snores', 'snoring', 'snored', 'snored', intran, ['2A','2C'] ). +verb( 'snort', 'snorts', 'snorting', 'snorted', 'snorted', _, ['2A','2C','6A','15B'] ). +verb( 'snow', 'snows', 'snowing', 'snowed', 'snowed', _, ['2A','2B','2C'] ). +verb( 'snowball', 'snowballs', 'snowballing', 'snowballed', 'snowballed', _, [] ). +verb( 'snub', 'snubs', 'snubbing', 'snubbed', 'snubbed', tran, ['6A'] ). +verb( 'snuff', 'snuffs', 'snuffing', 'snuffed', 'snuffed', _, ['2C','6A','15B'] ). +verb( 'snuffle', 'snuffles', 'snuffling', 'snuffled', 'snuffled', intran, ['2A'] ). +verb( 'snuggle', 'snuggles', 'snuggling', 'snuggled', 'snuggled', _, ['2C','14'] ). +verb( 'soak', 'soaks', 'soaking', 'soaked', 'soaked', _, ['2A','3A','6A','14','15A','15B'] ). +verb( 'soap', 'soaps', 'soaping', 'soaped', 'soaped', tran, ['6A','15B'] ). +verb( 'soar', 'soars', 'soaring', 'soared', 'soared', intran, ['2A','2C'] ). +verb( 'sob', 'sobs', 'sobbing', 'sobbed', 'sobbed', _, ['2A','2C','15A','15B'] ). +verb( 'sober', 'sobers', 'sobering', 'sobered', 'sobered', _, ['2C','6A','15B'] ). +verb( 'socialize', 'socializes', 'socializing', 'socialized', 'socialized', tran, ['6A'] ). +verb( 'sock', 'socks', 'socking', 'socked', 'socked', tran, ['6A','15A'] ). +verb( 'sod', 'sods', 'sodding', 'sodded', 'sodded', intran, [] ). +verb( 'soft-pedal', 'soft-pedals', 'soft-pedalling', 'soft-pedalled', 'soft-pedalled', _, [] ). +verb( 'soft-soap', 'soft-soaps', 'soft-soaping', 'soft-soaped', 'soft-soaped', tran, [] ). +verb( 'soft-solder', 'soft-solders', 'soft-soldering', 'soft-soldered', 'soft-soldered', tran, [] ). +verb( 'soften', 'softens', 'softening', 'softened', 'softened', _, ['2A','6A'] ). +verb( 'softland', 'softlands', 'softlanding', 'softlanded', 'softlanded', intran, [] ). +verb( 'soil', 'soils', 'soiling', 'soiled', 'soiled', _, ['2A','2C','6A'] ). +verb( 'sojourn', 'sojourns', 'sojourning', 'sojourned', 'sojourned', intran, ['2C'] ). +verb( 'solace', 'solaces', 'solacing', 'solaced', 'solaced', tran, ['6A','15A'] ). +verb( 'solder', 'solders', 'soldering', 'soldered', 'soldered', tran, ['6A','15A','15B'] ). +verb( 'soldier', 'soldiers', 'soldiering', 'soldiered', 'soldiered', intran, ['2A'] ). +verb( 'sole', 'soles', 'soling', 'soled', 'soled', tran, ['6A'] ). +verb( 'solemnize', 'solemnizes', 'solemnizing', 'solemnized', 'solemnized', tran, ['6A'] ). +verb( 'solicit', 'solicits', 'soliciting', 'solicited', 'solicited', _, ['2A','6A','14'] ). +verb( 'solidify', 'solidifies', 'solidifying', 'solidified', 'solidified', _, ['2A','6A'] ). +verb( 'soliloquize', 'soliloquizes', 'soliloquizing', 'soliloquized', 'soliloquized', intran, ['2A'] ). +verb( 'solve', 'solves', 'solving', 'solved', 'solved', tran, ['6A'] ). +verb( 'somersault', 'somersaults', 'somersaulting', 'somersaulted', 'somersaulted', intran, ['2A'] ). +verb( 'soot', 'soots', 'sooting', 'sooted', 'sooted', tran, [] ). +verb( 'soothe', 'soothes', 'soothing', 'soothed', 'soothed', tran, ['6A'] ). +verb( 'sop', 'sops', 'sopping', 'sopped', 'sopped', tran, ['6A','15B'] ). +verb( 'sorrow', 'sorrows', 'sorrowing', 'sorrowed', 'sorrowed', intran, ['2A','2C'] ). +verb( 'sort', 'sorts', 'sorting', 'sorted', 'sorted', _, ['6A','15B'] ). +verb( 'sough', 'soughs', 'soughing', 'soughed', 'soughed', intran, ['2A'] ). +verb( 'sound', 'sounds', 'sounding', 'sounded', 'sounded', _, ['2A','2C','2D','6A','15A','15B'] ). +verb( 'soundproof', 'soundproofs', 'soundproofing', 'soundproofed', 'soundproofed', tran, ['6A'] ). +verb( 'soup', 'soups', 'souping', 'souped', 'souped', tran, ['15B'] ). +verb( 'sour', 'sours', 'souring', 'soured', 'soured', _, ['2A','6A'] ). +verb( 'souse', 'souses', 'sousing', 'soused', 'soused', tran, ['6A'] ). +verb( 'sovietize', 'sovietizes', 'sovietizing', 'sovietized', 'sovietized', tran, [] ). +verb( 'sow', 'sows', 'sowing', 'sowed', 'sowed', _, ['2A','6A','15A'] ). +verb( 'space', 'spaces', 'spacing', 'spaced', 'spaced', tran, ['6A','15B'] ). +verb( 'spade', 'spades', 'spading', 'spaded', 'spaded', tran, ['6A','15B'] ). +verb( 'span', 'spans', 'spanning', 'spanned', 'spanned', tran, ['2A','2C','6A','14','15B'] ). +verb( 'spangle', 'spangles', 'spangling', 'spangled', 'spangled', tran, [] ). +verb( 'spank', 'spanks', 'spanking', 'spanked', 'spanked', _, ['2C','6A'] ). +verb( 'spar', 'spars', 'sparring', 'sparred', 'sparred', intran, ['2A','2C'] ). +verb( 'spare', 'spares', 'sparing', 'spared', 'spared', _, ['6A','12A','12B','13A','13B'] ). +verb( 'spark', 'sparks', 'sparking', 'sparked', 'sparked', _, ['2A','15B'] ). +verb( 'sparkle', 'sparkles', 'sparkling', 'sparkled', 'sparkled', intran, ['2A','2C'] ). +verb( 'spat', 'spats', 'spatting', 'spatted', 'spatted', _, ['2A','2C','3A','6A','15B'] ). +verb( 'spatchcock', 'spatchcocks', 'spatchcocking', 'spatchcocked', 'spatchcocked', tran, ['6A','14'] ). +verb( 'spatter', 'spatters', 'spattering', 'spattered', 'spattered', _, ['2C','6A','14'] ). +verb( 'spawn', 'spawns', 'spawning', 'spawned', 'spawned', _, ['2A','6A'] ). +verb( 'spay', 'spays', 'spaying', 'spayed', 'spayed', tran, ['6A'] ). +verb( 'speak', 'speaks', 'speaking', 'spoke', 'spoken', _, ['2A','2B','2C','3A','6A','15A'] ). +verb( 'spear', 'spears', 'spearing', 'speared', 'speared', tran, ['6A'] ). +verb( 'specialize', 'specializes', 'specializing', 'specialized', 'specialized', _, ['2A','3A'] ). +verb( 'specify', 'specifies', 'specifying', 'specified', 'specified', tran, ['6A','9'] ). +verb( 'speculate', 'speculates', 'speculating', 'speculated', 'speculated', intran, ['2A','2C'] ). +verb( 'speechify', 'speechifies', 'speechifying', 'speechified', 'speechified', intran, [] ). +verb( 'speed', 'speeds', 'speeding', 'speeded', 'speeded', _, ['2A','2C','6A','14','15B'] ). +verb( 'spell', 'spells', 'spelling', 'spelled', 'spelled', _, ['2A','6A','15B'] ). +verb( 'spend', 'spends', 'spending', 'spent', 'spent', _, ['2A','6A','14','19B'] ). +verb( 'spew', 'spews', 'spewing', 'spewed', 'spewed', _, ['2A','6A','15B'] ). +verb( 'spice', 'spices', 'spicing', 'spiced', 'spiced', tran, ['6A'] ). +verb( 'spiel', 'spiels', 'spieling', 'spieled', 'spieled', _, [] ). +verb( 'spike', 'spikes', 'spiking', 'spiked', 'spiked', tran, ['6A'] ). +verb( 'spill', 'spills', 'spilling', 'spilled', 'spilled', _, ['2A','2C','6A'] ). +verb( 'spin', 'spins', 'spinning', 'span', 'spun', _, ['2A','2C','6A','14','15B'] ). +verb( 'spin-dry', 'spin-dries', 'spin-drying', 'spin-dried', 'spin-dried', tran, [] ). +verb( 'spiral', 'spirals', 'spiralling', 'spiralled', 'spiralled', intran, ['2A','2C'] ). +verb( 'spirit', 'spirits', 'spiriting', 'spirited', 'spirited', tran, ['15B'] ). +verb( 'spiritualize', 'spiritualizes', 'spiritualizing', 'spiritualized', 'spiritualized', tran, ['6A'] ). +verb( 'spirt', 'spirts', 'spirting', 'spirted', 'spirted', intran, ['2A','2C'] ). +verb( 'spit', 'spits', 'spitting', 'spat', 'spat', _, ['2A','2C','3A','6A','15B'] ). +verb( 'spite', 'spites', 'spiting', 'spited', 'spited', tran, ['6A'] ). +verb( 'splash', 'splashes', 'splashing', 'splashed', 'splashed', _, ['2A','2C','6A','14','15B'] ). +verb( 'splay', 'splays', 'splaying', 'splayed', 'splayed', _, [] ). +verb( 'splice', 'splices', 'splicing', 'spliced', 'spliced', tran, ['6A'] ). +verb( 'splinter', 'splinters', 'splintering', 'splintered', 'splintered', _, ['2C','15B'] ). +verb( 'split', 'splits', 'splitting', 'split', 'split', _, ['2A','2C','2D','3A','6A','14','15A','15B','22'] ). +verb( 'splosh', 'sploshes', 'sploshing', 'sploshed', 'sploshed', tran, [] ). +verb( 'splurge', 'splurges', 'splurging', 'splurged', 'splurged', intran, [] ). +verb( 'splutter', 'splutters', 'spluttering', 'spluttered', 'spluttered', _, ['2A','2C','6A','15B'] ). +verb( 'spoil', 'spoils', 'spoiling', 'spoiled', 'spoiled', _, ['2A','6A','14'] ). +verb( 'sponge', 'sponges', 'sponging', 'sponged', 'sponged', _, ['3A','6A','14','15B'] ). +verb( 'sponsor', 'sponsors', 'sponsoring', 'sponsored', 'sponsored', tran, ['6A'] ). +verb( 'spoof', 'spoofs', 'spoofing', 'spoofed', 'spoofed', tran, [] ). +verb( 'spoon', 'spoons', 'spooning', 'spooned', 'spooned', _, ['2A','15B'] ). +verb( 'spoonfeed', 'spoonfeeds', 'spoonfeeding', 'spoonfed', 'spoonfed', tran, [] ). +verb( 'sport', 'sports', 'sporting', 'sported', 'sported', _, ['2C','6A'] ). +verb( 'spot', 'spots', 'spotting', 'spotted', 'spotted', _, ['2A','6A'] ). +verb( 'spotlight', 'spotlights', 'spotlighting', 'spotlighted', 'spotlighted', tran, ['6A'] ). +verb( 'spout', 'spouts', 'spouting', 'spouted', 'spouted', _, ['2A','2C','6A'] ). +verb( 'sprain', 'sprains', 'spraining', 'sprained', 'sprained', tran, ['6A'] ). +verb( 'sprawl', 'sprawls', 'sprawling', 'sprawled', 'sprawled', intran, ['2A','2C'] ). +verb( 'spray', 'sprays', 'spraying', 'sprayed', 'sprayed', tran, ['6A','14'] ). +verb( 'spread', 'spreads', 'spreading', 'spread', 'spread', _, ['2A','2B','2C','6A','14','15A','15B'] ). +verb( 'spreadeagle', 'spreadeagles', 'spreadeagling', 'spreadeagled', 'spreadeagled', tran, [] ). +verb( 'spring', 'springs', 'springing', 'sprang', 'sprung', _, ['2A','2C','3A','6A','14'] ). +verb( 'spring-clean', 'spring-cleans', 'spring-cleaning', 'spring-cleaned', 'spring-cleaned', tran, [] ). +verb( 'sprinkle', 'sprinkles', 'sprinkling', 'sprinkled', 'sprinkled', tran, ['6A','14'] ). +verb( 'sprint', 'sprints', 'sprinting', 'sprinted', 'sprinted', intran, ['2A','2C'] ). +verb( 'sprout', 'sprouts', 'sprouting', 'sprouted', 'sprouted', _, ['2A','2C','6A'] ). +verb( 'spruce', 'spruces', 'sprucing', 'spruced', 'spruced', _, ['2C','6A','15B'] ). +verb( 'spue', 'spues', 'spuing', 'spued', 'spued', _, [] ). +verb( 'spur', 'spurs', 'spurring', 'spurred', 'spurred', _, ['2C','6A','15B'] ). +verb( 'spurn', 'spurns', 'spurning', 'spurned', 'spurned', tran, ['6A'] ). +verb( 'spurt', 'spurts', 'spurting', 'spurted', 'spurted', intran, ['2A','2C','3A'] ). +verb( 'sputter', 'sputters', 'sputtering', 'sputtered', 'sputtered', _, ['2A','2C'] ). +verb( 'spy', 'spies', 'spying', 'spied', 'spied', _, ['2A','3A','6A','15B','19A'] ). +verb( 'squabble', 'squabbles', 'squabbling', 'squabbled', 'squabbled', intran, ['2C'] ). +verb( 'squall', 'squalls', 'squalling', 'squalled', 'squalled', intran, ['2A'] ). +verb( 'squander', 'squanders', 'squandering', 'squandered', 'squandered', tran, ['6A'] ). +verb( 'square', 'squares', 'squaring', 'squared', 'squared', _, ['2C','3A','6A','14','15B'] ). +verb( 'squash', 'squashes', 'squashing', 'squashed', 'squashed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'squat', 'squats', 'squatting', 'squatted', 'squatted', intran, ['2A','2C','6A','15B'] ). +verb( 'squawk', 'squawks', 'squawking', 'squawked', 'squawked', intran, ['2A','2C'] ). +verb( 'squeak', 'squeaks', 'squeaking', 'squeaked', 'squeaked', _, ['2A','2C','6A','15B'] ). +verb( 'squeal', 'squeals', 'squealing', 'squealed', 'squealed', _, ['2A','2C','6A','15B'] ). +verb( 'squeegee', 'squeegees', 'squeegeeing', 'squeegeed', 'squeegeed', tran, ['6A'] ). +verb( 'squeeze', 'squeezes', 'squeezing', 'squeezed', 'squeezed', _, ['2A','2C','6A','14','15A','15B','22'] ). +verb( 'squelch', 'squelches', 'squelching', 'squelched', 'squelched', _, ['2A','2C'] ). +verb( 'squint', 'squints', 'squinting', 'squinted', 'squinted', intran, ['2A','3A'] ). +verb( 'squire', 'squires', 'squiring', 'squired', 'squired', tran, ['6A','15A'] ). +verb( 'squirm', 'squirms', 'squirming', 'squirmed', 'squirmed', intran, ['2A','2C'] ). +verb( 'squirt', 'squirts', 'squirting', 'squirted', 'squirted', _, ['2A','2C','6A','15A','15B'] ). +verb( 'stab', 'stabs', 'stabbing', 'stabbed', 'stabbed', _, ['2A','3A','6A','15A'] ). +verb( 'stabilize', 'stabilizes', 'stabilizing', 'stabilized', 'stabilized', tran, ['6A'] ). +verb( 'stable', 'stables', 'stabling', 'stabled', 'stabled', tran, [] ). +verb( 'stack', 'stacks', 'stacking', 'stacked', 'stacked', tran, ['6A','15B'] ). +verb( 'staff', 'staffs', 'staffing', 'staffed', 'staffed', tran, ['6A'] ). +verb( 'stage', 'stages', 'staging', 'staged', 'staged', _, ['2C','6A'] ). +verb( 'stagger', 'staggers', 'staggering', 'staggered', 'staggered', _, ['2A','2C','6A'] ). +verb( 'stagnate', 'stagnates', 'stagnating', 'stagnated', 'stagnated', intran, ['2A'] ). +verb( 'stain', 'stains', 'staining', 'stained', 'stained', _, ['2A','6A','22'] ). +verb( 'stake', 'stakes', 'staking', 'staked', 'staked', tran, ['6A','14','15B'] ). +verb( 'stale', 'stales', 'staling', 'staled', 'staled', intran, ['2A'] ). +verb( 'stalemate', 'stalemates', 'stalemating', 'stalemated', 'stalemated', tran, ['6A'] ). +verb( 'stalk', 'stalks', 'stalking', 'stalked', 'stalked', _, ['2C','6A'] ). +verb( 'stall', 'stalls', 'stalling', 'stalled', 'stalled', _, ['2A','6A'] ). +verb( 'stammer', 'stammers', 'stammering', 'stammered', 'stammered', _, ['2A','6A','15B'] ). +verb( 'stamp', 'stamps', 'stamping', 'stamped', 'stamped', _, ['2C','3A','6A','14','15A','15B','16B','22'] ). +verb( 'stampede', 'stampedes', 'stampeding', 'stampeded', 'stampeded', _, ['2A','6A','14'] ). +verb( 'stand', 'stands', 'standing', 'stood', 'stood', _, ['2A','2B','2C','3A','4A','6A','6C','12A','15A','15B'] ). +verb( 'standardize', 'standardizes', 'standardizing', 'standardized', 'standardized', tran, ['6A'] ). +verb( 'staple', 'staples', 'stapling', 'stapled', 'stapled', tran, ['6A'] ). +verb( 'star', 'stars', 'starring', 'starred', 'starred', _, ['3A','6A','14'] ). +verb( 'starboard', 'starboards', 'starboarding', 'starboarded', 'starboarded', tran, [] ). +verb( 'starch', 'starches', 'starching', 'starched', 'starched', tran, ['6A'] ). +verb( 'stare', 'stares', 'staring', 'stared', 'stared', _, ['2A','2B','2C','3A','15B'] ). +verb( 'start', 'starts', 'starting', 'started', 'started', _, ['2A','2C','3A','6A','6D','7A','15A','19B'] ). +verb( 'startle', 'startles', 'startling', 'startled', 'startled', tran, ['6A','15A'] ). +verb( 'starve', 'starves', 'starving', 'starved', 'starved', _, ['2A','2C','6A','15A'] ). +verb( 'stash', 'stashes', 'stashing', 'stashed', 'stashed', tran, ['15B'] ). +verb( 'state', 'states', 'stating', 'stated', 'stated', tran, ['6A','9'] ). +verb( 'station', 'stations', 'stationing', 'stationed', 'stationed', tran, ['6A','15A'] ). +verb( 'staunch', 'staunches', 'staunching', 'staunched', 'staunched', tran, ['6A'] ). +verb( 'stave', 'staves', 'staving', 'staved', 'staved', _, ['3A','15B'] ). +verb( 'stay', 'stays', 'staying', 'stayed', 'stayed', _, ['2A','2B','2C','4A','6A','15B'] ). +verb( 'steady', 'steadies', 'steadying', 'steadied', 'steadied', _, ['2A','6A'] ). +verb( 'steal', 'steals', 'stealing', 'stole', 'stolen', _, ['2A','2C','6A','14','15A'] ). +verb( 'steam', 'steams', 'steaming', 'steamed', 'steamed', _, ['2A','2C','6A','22'] ). +verb( 'steam-heat', 'steam-heats', 'steam-heating', 'steam-heated', 'steam-heated', tran, [] ). +verb( 'steamroller', 'steamrollers', 'steamrollering', 'steamrollered', 'steamrollered', tran, ['6A'] ). +verb( 'steel', 'steels', 'steeling', 'steeled', 'steeled', tran, ['6A','15A','16A'] ). +verb( 'steep', 'steeps', 'steeping', 'steeped', 'steeped', _, ['2A','6A','14'] ). +verb( 'steepen', 'steepens', 'steepening', 'steepened', 'steepened', _, ['2A','6A'] ). +verb( 'steer', 'steers', 'steering', 'steered', 'steered', _, ['2A','2C','6A'] ). +verb( 'stem', 'stems', 'stemming', 'stemmed', 'stemmed', _, ['3A','6A'] ). +verb( 'stencil', 'stencils', 'stencilling', 'stencilled', 'stencilled', tran, ['6A'] ). +verb( 'step', 'steps', 'stepping', 'stepped', 'stepped', _, ['2C','15B'] ). +verb( 'stereotype', 'stereotypes', 'stereotyping', 'stereotyped', 'stereotyped', tran, ['6A'] ). +verb( 'sterilize', 'sterilizes', 'sterilizing', 'sterilized', 'sterilized', tran, ['6A'] ). +verb( 'stew', 'stews', 'stewing', 'stewed', 'stewed', _, ['2A','2C','6A','15A'] ). +verb( 'stick', 'sticks', 'sticking', 'sticked', 'sticked', tran, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'stick', 'sticks', 'sticking', 'stuck', 'stuck', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'stiffen', 'stiffens', 'stiffening', 'stiffened', 'stiffened', _, ['2A','6A'] ). +verb( 'stifle', 'stifles', 'stifling', 'stifled', 'stifled', _, ['2A','6A'] ). +verb( 'stigmatize', 'stigmatizes', 'stigmatizing', 'stigmatized', 'stigmatized', tran, ['16B'] ). +verb( 'still', 'stills', 'stilling', 'stilled', 'stilled', tran, ['6A'] ). +verb( 'stimulate', 'stimulates', 'stimulating', 'stimulated', 'stimulated', tran, ['6A','14','17'] ). +verb( 'sting', 'stings', 'stinging', 'stang', 'stung', _, ['2A','6A','14','15A'] ). +verb( 'stink', 'stinks', 'stinking', 'stank', 'stunk', _, ['2A','3A','15B'] ). +verb( 'stint', 'stints', 'stinting', 'stinted', 'stinted', _, ['6A','14'] ). +verb( 'stipple', 'stipples', 'stippling', 'stippled', 'stippled', tran, ['6A'] ). +verb( 'stipulate', 'stipulates', 'stipulating', 'stipulated', 'stipulated', _, ['3A','6A','9'] ). +verb( 'stir', 'stirs', 'stirring', 'stirred', 'stirred', _, ['2A','2C','6A','14','15B'] ). +verb( 'stitch', 'stitches', 'stitching', 'stitched', 'stitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'stock', 'stocks', 'stocking', 'stocked', 'stocked', tran, ['6A','14'] ). +verb( 'stockade', 'stockades', 'stockading', 'stockaded', 'stockaded', tran, [] ). +verb( 'stoke', 'stokes', 'stoking', 'stoked', 'stoked', _, ['2A','2C','6A','15B'] ). +verb( 'stomach', 'stomachs', 'stomaching', 'stomached', 'stomached', tran, ['6A'] ). +verb( 'stomp', 'stomps', 'stomping', 'stomped', 'stomped', intran, ['2C'] ). +verb( 'stone', 'stones', 'stoning', 'stoned', 'stoned', tran, ['6A','15A'] ). +verb( 'stonewall', 'stonewalls', 'stonewalling', 'stonewalled', 'stonewalled', tran, [] ). +verb( 'stooge', 'stooges', 'stooging', 'stooged', 'stooged', intran, [] ). +verb( 'stoop', 'stoops', 'stooping', 'stooped', 'stooped', _, ['2A','2C','3A','4A','6A'] ). +verb( 'stop', 'stops', 'stopping', 'stopped', 'stopped', _, ['2A','2B','2C','3A','4A','6A','6B','6C','14','15A','15B'] ). +verb( 'store', 'stores', 'storing', 'stored', 'stored', tran, ['6A','15B'] ). +verb( 'storm', 'storms', 'storming', 'stormed', 'stormed', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'stow', 'stows', 'stowing', 'stowed', 'stowed', tran, ['6A','15A','15B'] ). +verb( 'straddle', 'straddles', 'straddling', 'straddled', 'straddled', _, ['2A','6A'] ). +verb( 'strafe', 'strafes', 'strafing', 'strafed', 'strafed', tran, ['6A'] ). +verb( 'straggle', 'straggles', 'straggling', 'straggled', 'straggled', intran, ['2A','2C'] ). +verb( 'straighten', 'straightens', 'straightening', 'straightened', 'straightened', _, ['2A','2C','6A','15B'] ). +verb( 'strain', 'strains', 'straining', 'strained', 'strained', _, ['2A','3A','6A','15A','15B','16A'] ). +verb( 'straiten', 'straitens', 'straitening', 'straitened', 'straitened', tran, [] ). +verb( 'strand', 'strands', 'stranding', 'stranded', 'stranded', _, ['2A','6A'] ). +verb( 'strangle', 'strangles', 'strangling', 'strangled', 'strangled', tran, ['6A'] ). +verb( 'strap', 'straps', 'strapping', 'strapped', 'strapped', tran, ['6A','15B'] ). +verb( 'stratify', 'stratifies', 'stratifying', 'stratified', 'stratified', _, ['2A','6A'] ). +verb( 'straw', 'straws', 'strawing', 'strawed', 'strawed', tran, [] ). +verb( 'stray', 'strays', 'straying', 'strayed', 'strayed', intran, ['2A','2C'] ). +verb( 'streak', 'streaks', 'streaking', 'streaked', 'streaked', _, ['2C','6A','15A'] ). +verb( 'stream', 'streams', 'streaming', 'streamed', 'streamed', intran, ['2A','2C','6A'] ). +verb( 'streamline', 'streamlines', 'streamlining', 'streamlined', 'streamlined', tran, [] ). +verb( 'strengthen', 'strengthens', 'strengthening', 'strengthened', 'strengthened', _, ['2A','6A'] ). +verb( 'stress', 'stresses', 'stressing', 'stressed', 'stressed', tran, ['6A'] ). +verb( 'stretch', 'stretches', 'stretching', 'stretched', 'stretched', _, ['2A','2B','2C','6A','15A','15B','16A','22'] ). +verb( 'strew', 'strews', 'strewing', 'strewed', 'strewed', tran, ['6A','14'] ). +verb( 'stride', 'strides', 'striding', 'strode', 'stridden', _, ['2C','6A'] ). +verb( 'stridulate', 'stridulates', 'stridulating', 'stridulated', 'stridulated', intran, ['2A'] ). +verb( 'strike', 'strikes', 'striking', 'struck', 'struck', _, ['2A','2C','2D','3A','6A','12C','14','15B','16A','22'] ). +verb( 'string', 'strings', 'stringing', 'strang', 'strung', _, ['2C','6A','15A','15B'] ). +verb( 'strip', 'strips', 'stripping', 'stripped', 'stripped', _, ['2A','2C','6A','14','15B','22'] ). +verb( 'strive', 'strives', 'striving', 'strove', 'striven', intran, ['2A','3A','4A'] ). +verb( 'stroke', 'strokes', 'stroking', 'stroked', 'stroked', tran, ['6A','15B'] ). +verb( 'stroll', 'strolls', 'strolling', 'strolled', 'strolled', intran, ['2A','2C'] ). +verb( 'strop', 'strops', 'stropping', 'stropped', 'stropped', tran, ['6A'] ). +verb( 'struggle', 'struggles', 'struggling', 'struggled', 'struggled', intran, ['2A','2B','3A','4A'] ). +verb( 'strum', 'strums', 'strumming', 'strummed', 'strummed', _, ['2A','2B','2C','3A','6A'] ). +verb( 'strut', 'struts', 'strutting', 'strutted', 'strutted', intran, ['2A','2C'] ). +verb( 'stub', 'stubs', 'stubbing', 'stubbed', 'stubbed', tran, ['6A','15B'] ). +verb( 'stucco', 'stuccos', 'stuccoing', 'stuccoed', 'stuccoed', tran, [] ). +verb( 'stud', 'studs', 'studding', 'studded', 'studded', tran, [] ). +verb( 'study', 'studies', 'studying', 'studied', 'studied', _, ['2A','2B','4A','6A','8','15A'] ). +verb( 'stuff', 'stuffs', 'stuffing', 'stuffed', 'stuffed', tran, ['2A','6A','14','15B'] ). +verb( 'stultify', 'stultifies', 'stultifying', 'stultified', 'stultified', tran, ['6A'] ). +verb( 'stumble', 'stumbles', 'stumbling', 'stumbled', 'stumbled', intran, ['2A','2C','3A'] ). +verb( 'stump', 'stumps', 'stumping', 'stumped', 'stumped', _, ['2C','6A','15B'] ). +verb( 'stun', 'stuns', 'stunning', 'stunned', 'stunned', tran, ['6A'] ). +verb( 'stunt', 'stunts', 'stunting', 'stunted', 'stunted', tran, ['6A'] ). +verb( 'stupefy', 'stupefies', 'stupefying', 'stupefied', 'stupefied', tran, ['6A'] ). +verb( 'stupify', 'stupifies', 'stupifying', 'stupified', 'stupified', tran, ['6A'] ). +verb( 'stutter', 'stutters', 'stuttering', 'stuttered', 'stuttered', _, [] ). +verb( 'style', 'styles', 'styling', 'styled', 'styled', tran, ['6A'] ). +verb( 'stylize', 'stylizes', 'stylizing', 'stylized', 'stylized', tran, [] ). +verb( 'stymie', 'stymies', 'stymying', 'stymied', 'stymied', tran, ['6A'] ). +verb( 'sub', 'subs', 'subbing', 'subbed', 'subbed', _, ['2A','3A','6A'] ). +verb( 'subcontract', 'subcontracts', 'subcontracting', 'subcontracted', 'subcontracted', _, ['2A','6A'] ). +verb( 'subdivide', 'subdivides', 'subdividing', 'subdivided', 'subdivided', _, ['2A','6A'] ). +verb( 'subdue', 'subdues', 'subduing', 'subdued', 'subdued', tran, ['6A'] ). +verb( 'subedit', 'subedits', 'subediting', 'subedited', 'subedited', tran, [] ). +verb( 'subject', 'subjects', 'subjecting', 'subjected', 'subjected', tran, ['14'] ). +verb( 'subjoin', 'subjoins', 'subjoining', 'subjoined', 'subjoined', tran, ['6A'] ). +verb( 'subjugate', 'subjugates', 'subjugating', 'subjugated', 'subjugated', tran, ['6A'] ). +verb( 'sublease', 'subleases', 'subleasing', 'subleased', 'subleased', _, ['2A','6A'] ). +verb( 'sublet', 'sublets', 'subletting', 'sublet', 'sublet', _, ['2A','6A'] ). +verb( 'sublimate', 'sublimates', 'sublimating', 'sublimated', 'sublimated', tran, ['6A'] ). +verb( 'submerge', 'submerges', 'submerging', 'submerged', 'submerged', _, ['2A','6A'] ). +verb( 'submit', 'submits', 'submitting', 'submitted', 'submitted', _, ['3A','6A','9','14'] ). +verb( 'subordinate', 'subordinates', 'subordinating', 'subordinated', 'subordinated', tran, ['6A','14'] ). +verb( 'suborn', 'suborns', 'suborning', 'suborned', 'suborned', tran, ['6A'] ). +verb( 'subpoena', 'subpoenas', 'subpoenaing', 'subpoenaed', 'subpoenaed', tran, ['6A'] ). +verb( 'subscribe', 'subscribes', 'subscribing', 'subscribed', 'subscribed', _, ['2A','3A','6A','14'] ). +verb( 'subserve', 'subserves', 'subserving', 'subserved', 'subserved', tran, ['6A'] ). +verb( 'subside', 'subsides', 'subsiding', 'subsided', 'subsided', intran, ['2A'] ). +verb( 'subsidize', 'subsidizes', 'subsidizing', 'subsidized', 'subsidized', tran, ['6A'] ). +verb( 'subsist', 'subsists', 'subsisting', 'subsisted', 'subsisted', intran, ['2A','3A'] ). +verb( 'substantiate', 'substantiates', 'substantiating', 'substantiated', 'substantiated', tran, ['6A'] ). +verb( 'substitute', 'substitutes', 'substituting', 'substituted', 'substituted', _, ['3A','6A','14'] ). +verb( 'subsume', 'subsumes', 'subsuming', 'subsumed', 'subsumed', tran, ['6A','14'] ). +verb( 'subtend', 'subtends', 'subtending', 'subtended', 'subtended', tran, [] ). +verb( 'subtract', 'subtracts', 'subtracting', 'subtracted', 'subtracted', tran, ['6A','14'] ). +verb( 'subvert', 'subverts', 'subverting', 'subverted', 'subverted', tran, ['6A'] ). +verb( 'succeed', 'succeeds', 'succeeding', 'succeeded', 'succeeded', _, ['2A','3A','6A','16B'] ). +verb( 'succour', 'succours', 'succouring', 'succoured', 'succoured', tran, ['6A'] ). +verb( 'succumb', 'succumbs', 'succumbing', 'succumbed', 'succumbed', intran, ['2A','3A'] ). +verb( 'suck', 'sucks', 'sucking', 'sucked', 'sucked', _, ['2C','6A','15A','15B','22'] ). +verb( 'suckle', 'suckles', 'suckling', 'suckled', 'suckled', tran, ['6A'] ). +verb( 'sue', 'sues', 'suing', 'sued', 'sued', _, ['3A','6A','14'] ). +verb( 'suffer', 'suffers', 'suffering', 'suffered', 'suffered', _, ['2A','3A','6A','17'] ). +verb( 'suffice', 'suffices', 'sufficing', 'sufficed', 'sufficed', _, ['2A','3A','6A'] ). +verb( 'suffocate', 'suffocates', 'suffocating', 'suffocated', 'suffocated', _, ['2A','2C','6A'] ). +verb( 'suffuse', 'suffuses', 'suffusing', 'suffused', 'suffused', tran, ['6A'] ). +verb( 'sugar', 'sugars', 'sugaring', 'sugared', 'sugared', tran, ['6A'] ). +verb( 'suggest', 'suggests', 'suggesting', 'suggested', 'suggested', tran, ['6A','6C','9','10','14'] ). +verb( 'suit', 'suits', 'suiting', 'suited', 'suited', _, ['2A','6A','6B'] ). +verb( 'sulk', 'sulks', 'sulking', 'sulked', 'sulked', intran, ['2A','2C'] ). +verb( 'sully', 'sullies', 'sullying', 'sullied', 'sullied', tran, ['6A'] ). +verb( 'sum', 'sums', 'summing', 'summed', 'summed', _, ['2C','15B'] ). +verb( 'summarize', 'summarizes', 'summarizing', 'summarized', 'summarized', tran, ['6A'] ). +verb( 'summer', 'summers', 'summering', 'summered', 'summered', intran, ['2C'] ). +verb( 'summon', 'summons', 'summoning', 'summoned', 'summoned', tran, ['6A','14','15B','17'] ). +verb( 'summons', 'summonses', 'summonsing', 'summonsed', 'summonsed', tran, ['6A','14','15B','17'] ). +verb( 'sun', 'suns', 'sunning', 'sunned', 'sunned', tran, ['6A'] ). +verb( 'sunbathe', 'sunbathes', 'sunbathing', 'sunbathed', 'sunbathed', intran, [] ). +verb( 'sunder', 'sunders', 'sundering', 'sundered', 'sundered', tran, ['6A'] ). +verb( 'sup', 'sups', 'supping', 'supped', 'supped', _, ['2A','2C','3A','6A','15B'] ). +verb( 'superannuate', 'superannuates', 'superannuating', 'superannuated', 'superannuated', tran, ['6A'] ). +verb( 'superimpose', 'superimposes', 'superimposing', 'superimposed', 'superimposed', tran, ['6A','14'] ). +verb( 'superintend', 'superintends', 'superintending', 'superintended', 'superintended', _, ['2A','6A'] ). +verb( 'supersede', 'supersedes', 'superseding', 'superseded', 'superseded', tran, ['6A'] ). +verb( 'supervene', 'supervenes', 'supervening', 'supervened', 'supervened', intran, ['2A'] ). +verb( 'supervise', 'supervises', 'supervising', 'supervised', 'supervised', _, ['2A','6A'] ). +verb( 'supplant', 'supplants', 'supplanting', 'supplanted', 'supplanted', tran, ['6A'] ). +verb( 'supplement', 'supplements', 'supplementing', 'supplemented', 'supplemented', tran, ['6A','15A'] ). +verb( 'supplicate', 'supplicates', 'supplicating', 'supplicated', 'supplicated', _, ['2C','6A','14','17'] ). +verb( 'supply', 'supplies', 'supplying', 'supplied', 'supplied', tran, ['6A','14'] ). +verb( 'support', 'supports', 'supporting', 'supported', 'supported', tran, ['6A'] ). +verb( 'suppose', 'supposes', 'supposing', 'supposed', 'supposed', tran, ['6A','9','25'] ). +verb( 'suppress', 'suppresses', 'suppressing', 'suppressed', 'suppressed', tran, ['6A'] ). +verb( 'suppurate', 'suppurates', 'suppurating', 'suppurated', 'suppurated', intran, ['2A'] ). +verb( 'surcharge', 'surcharges', 'surcharging', 'surcharged', 'surcharged', tran, ['6A','15A'] ). +verb( 'surface', 'surfaces', 'surfacing', 'surfaced', 'surfaced', _, ['2A','6A'] ). +verb( 'surfeit', 'surfeits', 'surfeiting', 'surfeited', 'surfeited', tran, ['6A','14'] ). +verb( 'surge', 'surges', 'surging', 'surged', 'surged', intran, ['2C'] ). +verb( 'surmise', 'surmises', 'surmising', 'surmised', 'surmised', _, ['2A','6A','9'] ). +verb( 'surmount', 'surmounts', 'surmounting', 'surmounted', 'surmounted', tran, ['6A'] ). +verb( 'surpass', 'surpasses', 'surpassing', 'surpassed', 'surpassed', tran, ['6A','15A'] ). +verb( 'surprise', 'surprises', 'surprising', 'surprised', 'surprised', tran, ['6A'] ). +verb( 'surrender', 'surrenders', 'surrendering', 'surrendered', 'surrendered', _, ['2A','6A','14'] ). +verb( 'surround', 'surrounds', 'surrounding', 'surrounded', 'surrounded', tran, ['6A'] ). +verb( 'surtax', 'surtaxes', 'surtaxing', 'surtaxed', 'surtaxed', tran, [] ). +verb( 'survey', 'surveys', 'surveying', 'surveyed', 'surveyed', tran, ['6A'] ). +verb( 'survive', 'survives', 'surviving', 'survived', 'survived', _, ['2A','6A'] ). +verb( 'suspect', 'suspects', 'suspecting', 'suspected', 'suspected', tran, ['6A','9','14','25'] ). +verb( 'suspend', 'suspends', 'suspending', 'suspended', 'suspended', tran, ['6A','14'] ). +verb( 'suss', 'susses', 'sussing', 'sussed', 'sussed', tran, ['15B'] ). +verb( 'sustain', 'sustains', 'sustaining', 'sustained', 'sustained', tran, ['6A'] ). +verb( 'swab', 'swabs', 'swabbing', 'swabbed', 'swabbed', tran, ['6A','15B'] ). +verb( 'swaddle', 'swaddles', 'swaddling', 'swaddled', 'swaddled', tran, ['6A'] ). +verb( 'swagger', 'swaggers', 'swaggering', 'swaggered', 'swaggered', intran, ['2A','2C'] ). +verb( 'swallow', 'swallows', 'swallowing', 'swallowed', 'swallowed', _, ['2C','6A','15B'] ). +verb( 'swamp', 'swamps', 'swamping', 'swamped', 'swamped', tran, ['6A','14'] ). +verb( 'swan', 'swans', 'swanning', 'swanned', 'swanned', intran, ['2C'] ). +verb( 'swank', 'swanks', 'swanking', 'swanked', 'swanked', intran, ['2A','2C'] ). +verb( 'swap', 'swaps', 'swapping', 'swapped', 'swapped', _, ['2A','6A','15A'] ). +verb( 'swarm', 'swarms', 'swarming', 'swarmed', 'swarmed', _, ['2A','2C','3A','6A','15B'] ). +verb( 'swat', 'swats', 'swatting', 'swatted', 'swatted', tran, [] ). +verb( 'swathe', 'swathes', 'swathing', 'swathed', 'swathed', tran, ['6A','15A'] ). +verb( 'sway', 'sways', 'swaying', 'swayed', 'swayed', _, ['2A','2C','6A','15A'] ). +verb( 'swear', 'swears', 'swearing', 'swore', 'sworn', _, ['2A','2B','2C','3A','6A','7A','9','14','15A','15B','22'] ). +verb( 'sweat', 'sweats', 'sweating', 'sweated', 'sweated', _, ['2A','2C','6A','15B'] ). +verb( 'sweep', 'sweeps', 'sweeping', 'swept', 'swept', _, ['2A','2C','6A','12A','15A','15B','22'] ). +verb( 'sweeten', 'sweetens', 'sweetening', 'sweetened', 'sweetened', _, ['2A','6A'] ). +verb( 'swell', 'swells', 'swelling', 'swelled', 'swelled', _, ['2A','2C','6A','14','15B'] ). +verb( 'swelter', 'swelters', 'sweltering', 'sweltered', 'sweltered', intran, ['2A'] ). +verb( 'swerve', 'swerves', 'swerving', 'swerved', 'swerved', _, ['2A','2C','4A','6A'] ). +verb( 'swig', 'swigs', 'swigging', 'swigged', 'swigged', _, ['2A','2C','6A','15B'] ). +verb( 'swill', 'swills', 'swilling', 'swilled', 'swilled', _, ['6A','15B'] ). +verb( 'swim', 'swims', 'swimming', 'swam', 'swum', _, ['2A','2B','2C','3A','6A'] ). +verb( 'swindle', 'swindles', 'swindling', 'swindled', 'swindled', _, ['6A','14'] ). +verb( 'swing', 'swings', 'swinging', 'swang', 'swung', _, ['2A','2B','2C','6A','6C','15A','15B','22'] ). +verb( 'swinge', 'swinges', 'swinging', 'swinged', 'swinged', tran, [] ). +verb( 'swipe', 'swipes', 'swiping', 'swiped', 'swiped', tran, ['3A','6A','15A'] ). +verb( 'swirl', 'swirls', 'swirling', 'swirled', 'swirled', _, ['2C','15B'] ). +verb( 'swish', 'swishes', 'swishing', 'swished', 'swished', _, ['2A','6A','15B'] ). +verb( 'switch', 'switches', 'switching', 'switched', 'switched', _, ['6A','15A','15B'] ). +verb( 'swivel', 'swivels', 'swivelling', 'swivelled', 'swivelled', _, ['2A','2C','6A','15B'] ). +verb( 'swob', 'swobs', 'swobbing', 'swobbed', 'swobbed', tran, [] ). +verb( 'swoon', 'swoons', 'swooning', 'swooned', 'swooned', intran, ['2A'] ). +verb( 'swoop', 'swoops', 'swooping', 'swooped', 'swooped', _, ['2A','2C','15B'] ). +verb( 'swop', 'swops', 'swopping', 'swopped', 'swopped', _, ['2A','6A','15A'] ). +verb( 'swot', 'swots', 'swotting', 'swotted', 'swotted', _, ['2A','2C','3A','15B'] ). +verb( 'syllabicate', 'syllabicates', 'syllabicating', 'syllabicated', 'syllabicated', tran, [] ). +verb( 'syllabify', 'syllabifies', 'syllabifying', 'syllabified', 'syllabified', tran, [] ). +verb( 'syllabize', 'syllabizes', 'syllabizing', 'syllabized', 'syllabized', tran, [] ). +verb( 'symbolize', 'symbolizes', 'symbolizing', 'symbolized', 'symbolized', tran, ['6A'] ). +verb( 'sympathize', 'sympathizes', 'sympathizing', 'sympathized', 'sympathized', intran, ['2A','3A'] ). +verb( 'synchronize', 'synchronizes', 'synchronizing', 'synchronized', 'synchronized', _, ['2A','6A'] ). +verb( 'syncopate', 'syncopates', 'syncopating', 'syncopated', 'syncopated', tran, ['6A'] ). +verb( 'syndicate', 'syndicates', 'syndicating', 'syndicated', 'syndicated', tran, ['6A'] ). +verb( 'synthesize', 'synthesizes', 'synthesizing', 'synthesized', 'synthesized', tran, ['6A'] ). +verb( 'syphon', 'syphons', 'syphoning', 'syphoned', 'syphoned', _, ['15B'] ). +verb( 'syringe', 'syringes', 'syringing', 'syringed', 'syringed', tran, ['6A','15B'] ). +verb( 'systematize', 'systematizes', 'systematizing', 'systematized', 'systematized', tran, ['6A'] ). +verb( 'table', 'tables', 'tabling', 'tabled', 'tabled', tran, ['6A'] ). +verb( 'taboo', 'taboos', 'tabooing', 'tabooed', 'tabooed', tran, ['6A'] ). +verb( 'tabulate', 'tabulates', 'tabulating', 'tabulated', 'tabulated', tran, ['6A'] ). +verb( 'tack', 'tacks', 'tacking', 'tacked', 'tacked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'tackle', 'tackles', 'tackling', 'tackled', 'tackled', _, ['2A','6A','14'] ). +verb( 'tag', 'tags', 'tagging', 'tagged', 'tagged', _, ['2C','6A','14','15A','15B'] ). +verb( 'tail', 'tails', 'tailing', 'tailed', 'tailed', _, ['2C','3A','6A'] ). +verb( 'tailor', 'tailors', 'tailoring', 'tailored', 'tailored', tran, ['6A','15A'] ). +verb( 'taint', 'taints', 'tainting', 'tainted', 'tainted', _, ['2A','6A'] ). +verb( 'take', 'takes', 'taking', 'took', 'taken', _, ['2A','2B','2C','3A','6A','6B','12A','13A','14','15A','15B','16B','19B','22'] ). +verb( 'talk', 'talks', 'talking', 'talked', 'talked', _, ['2A','2B','2C','3A','6A','14','15B','22'] ). +verb( 'tally', 'tallies', 'tallying', 'tallied', 'tallied', intran, ['2A','3A'] ). +verb( 'tame', 'tames', 'taming', 'tamed', 'tamed', tran, ['6A'] ). +verb( 'tamp', 'tamps', 'tamping', 'tamped', 'tamped', tran, ['15B'] ). +verb( 'tamper', 'tampers', 'tampering', 'tampered', 'tampered', intran, ['3A'] ). +verb( 'tan', 'tans', 'tanning', 'tanned', 'tanned', _, ['2A','6A'] ). +verb( 'tangle', 'tangles', 'tangling', 'tangled', 'tangled', _, ['2A','2C','3A','6A','15B'] ). +verb( 'tank', 'tanks', 'tanking', 'tanked', 'tanked', intran, [] ). +verb( 'tantalize', 'tantalizes', 'tantalizing', 'tantalized', 'tantalized', tran, ['6A'] ). +verb( 'tap', 'taps', 'tapping', 'tapped', 'tapped', _, ['2A','2C','6A','14','15A','15B'] ). +verb( 'tape', 'tapes', 'taping', 'taped', 'taped', tran, ['6A'] ). +verb( 'taper', 'tapers', 'tapering', 'tapered', 'tapered', _, ['2A','2C','6A','15B'] ). +verb( 'tar', 'tars', 'tarring', 'tarred', 'tarred', tran, ['6A'] ). +verb( 'tarmac', 'tarmacs', 'tarmacking', 'tarmacked', 'tarmacked', tran, [] ). +verb( 'tarnish', 'tarnishes', 'tarnishing', 'tarnished', 'tarnished', _, ['2A','6A'] ). +verb( 'tarry', 'tarries', 'tarrying', 'tarried', 'tarried', intran, ['2A','2B','2C'] ). +verb( 'tart', 'tarts', 'tarting', 'tarted', 'tarted', tran, ['15B'] ). +verb( 'task', 'tasks', 'tasking', 'tasked', 'tasked', tran, ['6A'] ). +verb( 'taste', 'tastes', 'tasting', 'tasted', 'tasted', _, ['2A','2D','3A','6A'] ). +verb( 'tat', 'tats', 'tatting', 'tatted', 'tatted', _, [] ). +verb( 'tattle', 'tattles', 'tattling', 'tattled', 'tattled', _, ['2A'] ). +verb( 'tattoo', 'tattoos', 'tattooing', 'tattooed', 'tattooed', tran, ['6A'] ). +verb( 'taunt', 'taunts', 'taunting', 'taunted', 'taunted', tran, ['6A','14'] ). +verb( 'tax', 'taxes', 'taxing', 'taxed', 'taxed', tran, ['6A','14'] ). +verb( 'taxi', 'taxis', 'taxiing', 'taxied', 'taxied', _, ['2C','15A'] ). +verb( 'teach', 'teaches', 'teaching', 'taught', 'taught', _, ['2A','2B','2C','6A','11','12A','13A','17','20','21'] ). +verb( 'team', 'teams', 'teaming', 'teamed', 'teamed', intran, ['2C'] ). +verb( 'tear', 'tears', 'tearing', 'tore', 'torn', _, ['2A','2C','3A','6A','15A','15B','22'] ). +verb( 'tease', 'teases', 'teasing', 'teased', 'teased', tran, ['6A','15A','15B'] ). +verb( 'tee', 'tees', 'teeing', 'teed', 'teed', _, ['2A','2C','15B'] ). +verb( 'teem', 'teems', 'teeming', 'teemed', 'teemed', intran, ['2A','2C','3A'] ). +verb( 'teeter', 'teeters', 'teetering', 'teetered', 'teetered', intran, ['2C'] ). +verb( 'teethe', 'teethes', 'teething', 'teethed', 'teethed', intran, ['2A'] ). +verb( 'telecast', 'telecasts', 'telecasting', 'telecast', 'telecast', tran, [] ). +verb( 'telegraph', 'telegraphs', 'telegraphing', 'telegraphed', 'telegraphed', _, ['2A','6A','11','12A','13A'] ). +verb( 'telephone', 'telephones', 'telephoning', 'telephoned', 'telephoned', _, ['2A','4A','6A','11','12A','13A'] ). +verb( 'telescope', 'telescopes', 'telescoping', 'telescoped', 'telescoped', _, ['2A','6A'] ). +verb( 'televise', 'televises', 'televising', 'televised', 'televised', tran, ['6A'] ). +verb( 'tell', 'tells', 'telling', 'told', 'told', _, ['2A','3A','6A','8','10','11','12A','13A','14','15A','15B','17','20','21'] ). +verb( 'temper', 'tempers', 'tempering', 'tempered', 'tempered', _, ['2A','6A','15A'] ). +verb( 'temporize', 'temporizes', 'temporizing', 'temporized', 'temporized', intran, ['2A'] ). +verb( 'tempt', 'tempts', 'tempting', 'tempted', 'tempted', tran, ['6A','14','17'] ). +verb( 'tenant', 'tenants', 'tenanting', 'tenanted', 'tenanted', tran, [] ). +verb( 'tend', 'tends', 'tending', 'tended', 'tended', _, ['2C','4A','6A'] ). +verb( 'tender', 'tenders', 'tendering', 'tendered', 'tendered', _, ['2A','3A','6A','12A','13A'] ). +verb( 'tense', 'tenses', 'tensing', 'tensed', 'tensed', _, ['2A','6A'] ). +verb( 'tergiversate', 'tergiversates', 'tergiversating', 'tergiversated', 'tergiversated', intran, [] ). +verb( 'term', 'terms', 'terming', 'termed', 'termed', tran, ['23'] ). +verb( 'terminate', 'terminates', 'terminating', 'terminated', 'terminated', _, ['2A','6A','15A'] ). +verb( 'terrace', 'terraces', 'terracing', 'terraced', 'terraced', tran, ['6A'] ). +verb( 'terrify', 'terrifies', 'terrifying', 'terrified', 'terrified', tran, ['6A','15A'] ). +verb( 'terrorize', 'terrorizes', 'terrorizing', 'terrorized', 'terrorized', tran, ['6A'] ). +verb( 'test', 'tests', 'testing', 'tested', 'tested', tran, ['6A','15A'] ). +verb( 'test-drive', 'test-drives', 'test-driving', 'test-drove', 'test-driven', tran, [] ). +verb( 'testify', 'testifies', 'testifying', 'testified', 'testified', _, ['2A','3A','6A','9'] ). +verb( 'tether', 'tethers', 'tethering', 'tethered', 'tethered', tran, ['6A','15A'] ). +verb( 'thank', 'thanks', 'thanking', 'thanked', 'thanked', tran, ['6A','11','14','17'] ). +verb( 'thatch', 'thatches', 'thatching', 'thatched', 'thatched', tran, ['6A'] ). +verb( 'thaw', 'thaws', 'thawing', 'thawed', 'thawed', _, ['2A','2C','6A','15B'] ). +verb( 'theorize', 'theorizes', 'theorizing', 'theorized', 'theorized', intran, ['2A','3A'] ). +verb( 'thicken', 'thickens', 'thickening', 'thickened', 'thickened', _, [] ). +verb( 'thieve', 'thieves', 'thieving', 'thieved', 'thieved', _, ['2A','6A'] ). +verb( 'thin', 'thins', 'thinning', 'thinned', 'thinned', _, ['2A','2C','6A','15B'] ). +verb( 'think', 'thinks', 'thinking', 'thought', 'thought', _, ['2A','2B','2C','3A','6A','7A','8','9','10','15B','22','25'] ). +verb( 'thirst', 'thirsts', 'thirsting', 'thirsted', 'thirsted', tran, ['2A','3A'] ). +verb( 'thrash', 'thrashes', 'thrashing', 'thrashed', 'thrashed', _, ['2C','6A','15A','15B'] ). +verb( 'thread', 'threads', 'threading', 'threaded', 'threaded', tran, ['6A','15A'] ). +verb( 'threaten', 'threatens', 'threatening', 'threatened', 'threatened', _, ['2A','6A','14','17'] ). +verb( 'thresh', 'threshes', 'threshing', 'threshed', 'threshed', _, ['2A','6A','15A'] ). +verb( 'thrill', 'thrills', 'thrilling', 'thrilled', 'thrilled', _, ['2A','2C','6A'] ). +verb( 'thrive', 'thrives', 'thriving', 'thrived', 'thrived', intran, ['2A','3A'] ). +verb( 'throb', 'throbs', 'throbbing', 'throbbed', 'throbbed', intran, ['2A','2C'] ). +verb( 'throng', 'throngs', 'thronging', 'thronged', 'thronged', _, ['2C','4A','6A'] ). +verb( 'throttle', 'throttles', 'throttling', 'throttled', 'throttled', _, ['2C','6A','15B'] ). +verb( 'throw', 'throws', 'throwing', 'threw', 'thrown', _, ['2A','6A','12A','13A','15A','15B','22'] ). +verb( 'thrum', 'thrums', 'thrumming', 'thrummed', 'thrummed', _, ['3A','6A'] ). +verb( 'thrust', 'thrusts', 'thrusting', 'thrust', 'thrust', _, ['2A','2C','6A','15A','15B'] ). +verb( 'thud', 'thuds', 'thudding', 'thudded', 'thudded', intran, ['2C'] ). +verb( 'thumb', 'thumbs', 'thumbing', 'thumbed', 'thumbed', tran, ['6A'] ). +verb( 'thump', 'thumps', 'thumping', 'thumped', 'thumped', _, ['2A','2C','3A','6A','15A','22'] ). +verb( 'thunder', 'thunders', 'thundering', 'thundered', 'thundered', _, ['2A','2C','3A','15B'] ). +verb( 'thwack', 'thwacks', 'thwacking', 'thwacked', 'thwacked', tran, [] ). +verb( 'thwart', 'thwarts', 'thwarting', 'thwarted', 'thwarted', tran, ['6A'] ). +verb( 'tick', 'ticks', 'ticking', 'ticked', 'ticked', _, ['2A','2C','6A','10','15B'] ). +verb( 'ticket', 'tickets', 'ticketing', 'ticketed', 'ticketed', tran, ['6A'] ). +verb( 'tickle', 'tickles', 'tickling', 'tickled', 'tickled', _, ['2A','6A'] ). +verb( 'tide', 'tides', 'tiding', 'tided', 'tided', tran, ['14','15B'] ). +verb( 'tidy', 'tidies', 'tidying', 'tidied', 'tidied', _, ['2A','2C','6A','15B'] ). +verb( 'tie', 'ties', 'tying', 'tied', 'tied', _, ['2A','3A','6A','15A','15B'] ). +verb( 'tighten', 'tightens', 'tightening', 'tightened', 'tightened', _, ['2A','2C','6A','15B'] ). +verb( 'tile', 'tiles', 'tiling', 'tiled', 'tiled', tran, ['6A'] ). +verb( 'till', 'tills', 'tilling', 'tilled', 'tilled', tran, ['6A'] ). +verb( 'tilt', 'tilts', 'tilting', 'tilted', 'tilted', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'time', 'times', 'timing', 'timed', 'timed', tran, ['6A','15A'] ). +verb( 'tin', 'tins', 'tinning', 'tinned', 'tinned', tran, ['6A'] ). +verb( 'tincture', 'tinctures', 'tincturing', 'tinctured', 'tinctured', tran, [] ). +verb( 'ting', 'tings', 'tinging', 'tinged', 'tinged', _, [] ). +verb( 'tinge', 'tinges', 'tinging', 'tinged', 'tinged', tran, ['6A','14'] ). +verb( 'tingle', 'tingles', 'tingling', 'tingled', 'tingled', intran, ['2A','2C'] ). +verb( 'tinker', 'tinkers', 'tinkering', 'tinkered', 'tinkered', intran, ['2A','2C','3A'] ). +verb( 'tinkle', 'tinkles', 'tinkling', 'tinkled', 'tinkled', _, ['2A','2C','6A'] ). +verb( 'tinsel', 'tinsels', 'tinselling', 'tinselled', 'tinselled', tran, [] ). +verb( 'tint', 'tints', 'tinting', 'tinted', 'tinted', tran, ['6A','22'] ). +verb( 'tip', 'tips', 'tipping', 'tipped', 'tipped', _, ['2A','2C','6A','12C','15A','15B'] ). +verb( 'tipple', 'tipples', 'tippling', 'tippled', 'tippled', _, ['2A','6A'] ). +verb( 'tiptoe', 'tiptoes', 'tiptoeing', 'tiptoed', 'tiptoed', intran, ['2A','2C'] ). +verb( 'tire', 'tires', 'tiring', 'tired', 'tired', _, ['2A','3A','6A','15B'] ). +verb( 'titillate', 'titillates', 'titillating', 'titillated', 'titillated', tran, ['6A'] ). +verb( 'titivate', 'titivates', 'titivating', 'titivated', 'titivated', _, ['2A','6A'] ). +verb( 'titter', 'titters', 'tittering', 'tittered', 'tittered', intran, ['2A'] ). +verb( 'tittivate', 'tittivates', 'tittivating', 'tittivated', 'tittivated', _, ['2A','6A'] ). +verb( 'tittle-tattle', 'tittle-tattles', 'tittle-tattling', 'tittle-tattled', 'tittle-tattled', intran, [] ). +verb( 'toady', 'toadies', 'toadying', 'toadied', 'toadied', intran, ['2A','3A'] ). +verb( 'toast', 'toasts', 'toasting', 'toasted', 'toasted', _, ['2A','6A'] ). +verb( 'toboggan', 'toboggans', 'tobogganing', 'tobogganed', 'tobogganed', intran, ['2A','2C'] ). +verb( 'toddle', 'toddles', 'toddling', 'toddled', 'toddled', intran, ['2A','2C'] ). +verb( 'toe', 'toes', 'toeing', 'toed', 'toed', tran, ['6A'] ). +verb( 'tog', 'togs', 'togging', 'togged', 'togged', tran, ['15B'] ). +verb( 'toil', 'toils', 'toiling', 'toiled', 'toiled', intran, ['2A','2B','2C','3A','4A'] ). +verb( 'tolerate', 'tolerates', 'tolerating', 'tolerated', 'tolerated', tran, ['6A','6C'] ). +verb( 'toll', 'tolls', 'tolling', 'tolled', 'tolled', _, ['2A','6A'] ). +verb( 'tomahawk', 'tomahawks', 'tomahawking', 'tomahawked', 'tomahawked', tran, [] ). +verb( 'ton', 'tons', 'tonning', 'tonned', 'tonned', intran, ['2C'] ). +verb( 'tone', 'tones', 'toning', 'toned', 'toned', _, ['2C','6A','15B'] ). +verb( 'tonsure', 'tonsures', 'tonsuring', 'tonsured', 'tonsured', tran, [] ). +verb( 'tool', 'tools', 'tooling', 'tooled', 'tooled', tran, ['2C','6A'] ). +verb( 'toot', 'toots', 'tooting', 'tooted', 'tooted', _, ['2A','6A'] ). +verb( 'tootle', 'tootles', 'tootling', 'tootled', 'tootled', intran, [] ). +verb( 'top', 'tops', 'topping', 'topped', 'topped', tran, ['6A'] ). +verb( 'top-dress', 'top-dresses', 'top-dressing', 'top-dressed', 'top-dressed', tran, [] ). +verb( 'tope', 'topes', 'toping', 'toped', 'toped', _, ['2A','6A'] ). +verb( 'topple', 'topples', 'toppling', 'toppled', 'toppled', _, ['2A','2C','6A','15B'] ). +verb( 'torment', 'torments', 'tormenting', 'tormented', 'tormented', tran, ['6A','15A'] ). +verb( 'torpedo', 'torpedos', 'torpedoing', 'torpedoed', 'torpedoed', tran, ['6A'] ). +verb( 'torture', 'tortures', 'torturing', 'tortured', 'tortured', tran, ['6A','16A'] ). +verb( 'toss', 'tosses', 'tossing', 'tossed', 'tossed', _, ['2C','6A','12A','13A','15A','15B'] ). +verb( 'tot', 'tots', 'totting', 'totted', 'totted', _, ['2C','15B'] ). +verb( 'total', 'totals', 'totalling', 'totalled', 'totalled', _, ['2C','6A'] ). +verb( 'tote', 'totes', 'toting', 'toted', 'toted', tran, ['6A'] ). +verb( 'totter', 'totters', 'tottering', 'tottered', 'tottered', intran, ['2A','2C'] ). +verb( 'touch', 'touches', 'touching', 'touched', 'touched', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'touch-type', 'touch-types', 'touch-typing', 'touch-typed', 'touch-typed', intran, ['2A'] ). +verb( 'toughen', 'toughens', 'toughening', 'toughened', 'toughened', _, [] ). +verb( 'tour', 'tours', 'touring', 'toured', 'toured', _, ['2A','2C','6A'] ). +verb( 'tousle', 'tousles', 'tousling', 'tousled', 'tousled', tran, ['6A'] ). +verb( 'tout', 'touts', 'touting', 'touted', 'touted', intran, ['2A','3A'] ). +verb( 'tow', 'tows', 'towing', 'towed', 'towed', tran, ['6A','15A','15B'] ). +verb( 'towel', 'towels', 'towelling', 'towelled', 'towelled', tran, [] ). +verb( 'tower', 'towers', 'towering', 'towered', 'towered', intran, ['2C'] ). +verb( 'toy', 'toys', 'toying', 'toyed', 'toyed', intran, ['3A'] ). +verb( 'trace', 'traces', 'tracing', 'traced', 'traced', _, ['6A','15A','15B'] ). +verb( 'track', 'tracks', 'tracking', 'tracked', 'tracked', tran, ['6A','15A','15B'] ). +verb( 'trade', 'trades', 'trading', 'traded', 'traded', _, ['2A','2C','3A','14','15B'] ). +verb( 'traduce', 'traduces', 'traducing', 'traduced', 'traduced', tran, ['6A'] ). +verb( 'traffic', 'traffics', 'trafficking', 'trafficked', 'trafficked', intran, ['3A'] ). +verb( 'trail', 'trails', 'trailing', 'trailed', 'trailed', _, ['2A','2C','6A','15A','15B'] ). +verb( 'train', 'trains', 'training', 'trained', 'trained', _, ['2C','3A','6A','14','15A','17'] ). +verb( 'traipse', 'traipses', 'traipsing', 'traipsed', 'traipsed', intran, ['2A','2B','2C'] ). +verb( 'trammel', 'trammels', 'trammelling', 'trammelled', 'trammelled', tran, ['6A'] ). +verb( 'tramp', 'tramps', 'tramping', 'tramped', 'tramped', _, ['2A','2B','2C','6A'] ). +verb( 'trample', 'tramples', 'trampling', 'trampled', 'trampled', _, ['2C','3A','6A','15B'] ). +verb( 'tranquilize', 'tranquilizes', 'tranquilizing', 'tranquilized', 'tranquilized', tran, ['6A'] ). +verb( 'tranquillize', 'tranquillizes', 'tranquillizing', 'tranquillized', 'tranquillized', tran, ['6A'] ). +verb( 'transact', 'transacts', 'transacting', 'transacted', 'transacted', tran, ['6A','14'] ). +verb( 'transcend', 'transcends', 'transcending', 'transcended', 'transcended', tran, ['6A'] ). +verb( 'transcribe', 'transcribes', 'transcribing', 'transcribed', 'transcribed', tran, ['6A'] ). +verb( 'transfer', 'transfers', 'transferring', 'transferred', 'transferred', _, ['3A','6A','14'] ). +verb( 'transfigure', 'transfigures', 'transfiguring', 'transfigured', 'transfigured', tran, ['6A'] ). +verb( 'transfix', 'transfixes', 'transfixing', 'transfixed', 'transfixed', tran, ['6A'] ). +verb( 'transform', 'transforms', 'transforming', 'transformed', 'transformed', tran, ['6A','14'] ). +verb( 'transfuse', 'transfuses', 'transfusing', 'transfused', 'transfused', tran, ['6A'] ). +verb( 'transgress', 'transgresses', 'transgressing', 'transgressed', 'transgressed', _, ['2A','6A'] ). +verb( 'translate', 'translates', 'translating', 'translated', 'translated', tran, ['6A','14'] ). +verb( 'transliterate', 'transliterates', 'transliterating', 'transliterated', 'transliterated', tran, ['6A','14'] ). +verb( 'transmit', 'transmits', 'transmitting', 'transmitted', 'transmitted', tran, ['6A','14'] ). +verb( 'transmogrify', 'transmogrifies', 'transmogrifying', 'transmogrified', 'transmogrified', tran, ['6A'] ). +verb( 'transmute', 'transmutes', 'transmuting', 'transmuted', 'transmuted', tran, ['6A','14'] ). +verb( 'transpire', 'transpires', 'transpiring', 'transpired', 'transpired', _, ['2A','6A'] ). +verb( 'transplant', 'transplants', 'transplanting', 'transplanted', 'transplanted', _, ['2A','6A'] ). +verb( 'transport', 'transports', 'transporting', 'transported', 'transported', tran, ['6A','15A'] ). +verb( 'transpose', 'transposes', 'transposing', 'transposed', 'transposed', tran, ['6A','14'] ). +verb( 'transship', 'transships', 'transshipping', 'transshipped', 'transshipped', tran, ['6A'] ). +verb( 'trap', 'traps', 'trapping', 'trapped', 'trapped', tran, ['6A','15A'] ). +verb( 'travel', 'travels', 'travelling', 'travelled', 'travelled', _, ['2A','2B','2C','3A','4A'] ). +verb( 'traverse', 'traverses', 'traversing', 'traversed', 'traversed', tran, ['6A'] ). +verb( 'travesty', 'travesties', 'travestying', 'travestied', 'travestied', tran, ['6A'] ). +verb( 'trawl', 'trawls', 'trawling', 'trawled', 'trawled', _, ['2A','6A'] ). +verb( 'tread', 'treads', 'treading', 'trod', 'trodden', _, ['2C','3A','6A','15A','15B'] ). +verb( 'treadle', 'treadles', 'treadling', 'treadled', 'treadled', intran, ['2A'] ). +verb( 'treasure', 'treasures', 'treasuring', 'treasured', 'treasured', tran, ['6A','15B'] ). +verb( 'treat', 'treats', 'treating', 'treated', 'treated', _, ['3A','6A','14','15A','16B'] ). +verb( 'treble', 'trebles', 'trebling', 'trebled', 'trebled', _, ['2A','6A'] ). +verb( 'tree', 'trees', 'treeing', 'treed', 'treed', tran, ['6A'] ). +verb( 'trek', 'treks', 'trekking', 'trekked', 'trekked', intran, ['2A','2B','2C'] ). +verb( 'trellis', 'trellises', 'trellising', 'trellised', 'trellised', tran, ['6A'] ). +verb( 'tremble', 'trembles', 'trembling', 'trembled', 'trembled', intran, ['2A','2B','2C','4B'] ). +verb( 'trench', 'trenches', 'trenching', 'trenched', 'trenched', tran, ['6A'] ). +verb( 'trend', 'trends', 'trending', 'trended', 'trended', intran, ['2C'] ). +verb( 'trepan', 'trepans', 'trepanning', 'trepanned', 'trepanned', tran, [] ). +verb( 'trephine', 'trephines', 'trephining', 'trephined', 'trephined', tran, ['6A'] ). +verb( 'trespass', 'trespasses', 'trespassing', 'trespassed', 'trespassed', intran, ['2A','3A'] ). +verb( 'trice', 'trices', 'tricing', 'triced', 'triced', tran, ['15B'] ). +verb( 'trick', 'tricks', 'tricking', 'tricked', 'tricked', tran, ['6A','14','15B'] ). +verb( 'trickle', 'trickles', 'trickling', 'trickled', 'trickled', _, ['2A','2C','15A'] ). +verb( 'trifle', 'trifles', 'trifling', 'trifled', 'trifled', _, ['3A','15B'] ). +verb( 'trigger', 'triggers', 'triggering', 'triggered', 'triggered', tran, ['15B'] ). +verb( 'trill', 'trills', 'trilling', 'trilled', 'trilled', _, ['2A','2C','6A'] ). +verb( 'trim', 'trims', 'trimming', 'trimmed', 'trimmed', _, ['2A','6A','14','15A','22'] ). +verb( 'trip', 'trips', 'tripping', 'tripped', 'tripped', _, ['2A','2C','3A','15B'] ). +verb( 'triple', 'triples', 'tripling', 'tripled', 'tripled', _, ['2A','6A'] ). +verb( 'triplicate', 'triplicates', 'triplicating', 'triplicated', 'triplicated', tran, ['6A'] ). +verb( 'trisect', 'trisects', 'trisecting', 'trisected', 'trisected', tran, ['6A'] ). +verb( 'triumph', 'triumphs', 'triumphing', 'triumphed', 'triumphed', intran, ['2A','3A'] ). +verb( 'trivialize', 'trivializes', 'trivializing', 'trivialized', 'trivialized', tran, ['6A'] ). +verb( 'troll', 'trolls', 'trolling', 'trolled', 'trolled', _, ['2A','2C'] ). +verb( 'troop', 'troops', 'trooping', 'trooped', 'trooped', _, ['2C'] ). +verb( 'trot', 'trots', 'trotting', 'trotted', 'trotted', _, ['2A','2B','2C','15A','15B'] ). +verb( 'trouble', 'troubles', 'troubling', 'troubled', 'troubled', _, ['2A','2C','4A','6A','14','17'] ). +verb( 'trounce', 'trounces', 'trouncing', 'trounced', 'trounced', tran, ['6A'] ). +verb( 'truckle', 'truckles', 'truckling', 'truckled', 'truckled', intran, ['3A'] ). +verb( 'trudge', 'trudges', 'trudging', 'trudged', 'trudged', intran, ['2A','2B','2C'] ). +verb( 'true', 'trues', 'truing', 'trued', 'trued', tran, ['15B'] ). +verb( 'trump', 'trumps', 'trumping', 'trumped', 'trumped', _, ['2A','6A','15B'] ). +verb( 'trumpet', 'trumpets', 'trumpeting', 'trumpeted', 'trumpeted', _, ['2A','2C','6A','15B'] ). +verb( 'truncate', 'truncates', 'truncating', 'truncated', 'truncated', tran, ['6A'] ). +verb( 'trundle', 'trundles', 'trundling', 'trundled', 'trundled', _, ['2C','6A','15A','15B'] ). +verb( 'truss', 'trusses', 'trussing', 'trussed', 'trussed', tran, ['6A','15B'] ). +verb( 'trust', 'trusts', 'trusting', 'trusted', 'trusted', _, ['3A','6A','7A','9','14','15A','15B','17'] ). +verb( 'try', 'tries', 'trying', 'tried', 'tried', _, ['2A','2B','3A','6A','6B','6C','7A','10','15A','15B'] ). +verb( 'tuck', 'tucks', 'tucking', 'tucked', 'tucked', _, ['2C','3A','15A','15B'] ). +verb( 'tug', 'tugs', 'tugging', 'tugged', 'tugged', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'tumble', 'tumbles', 'tumbling', 'tumbled', 'tumbled', _, ['2A','2C','3A','6A','15A','15B'] ). +verb( 'tune', 'tunes', 'tuning', 'tuned', 'tuned', _, ['2C','6A'] ). +verb( 'tunnel', 'tunnels', 'tunnelling', 'tunnelled', 'tunnelled', _, ['2A','2C','3A','6A'] ). +verb( 'turf', 'turfs', 'turfing', 'turfed', 'turfed', tran, ['6A','15B'] ). +verb( 'turn', 'turns', 'turning', 'turned', 'turned', _, ['2A','2C','3A','4A','6A','14','15A','15B'] ). +verb( 'tussle', 'tussles', 'tussling', 'tussled', 'tussled', intran, [] ). +verb( 'tut', 'tuts', 'tutting', 'tutted', 'tutted', tran, ['6A'] ). +verb( 'tutor', 'tutors', 'tutoring', 'tutored', 'tutored', tran, ['6A','15A','16A'] ). +verb( 'twaddle', 'twaddles', 'twaddling', 'twaddled', 'twaddled', intran, ['2A'] ). +verb( 'twang', 'twangs', 'twanging', 'twanged', 'twanged', _, ['2A','6A'] ). +verb( 'tweak', 'tweaks', 'tweaking', 'tweaked', 'tweaked', tran, ['6A'] ). +verb( 'tweet', 'tweets', 'tweeting', 'tweeted', 'tweeted', intran, [] ). +verb( 'twiddle', 'twiddles', 'twiddling', 'twiddled', 'twiddled', _, ['3A','6A'] ). +verb( 'twig', 'twigs', 'twigging', 'twigged', 'twigged', _, ['2A','6A'] ). +verb( 'twin', 'twins', 'twinning', 'twinned', 'twinned', tran, ['6A','14'] ). +verb( 'twine', 'twines', 'twining', 'twined', 'twined', _, ['2A','2C','15A','15B'] ). +verb( 'twinkle', 'twinkles', 'twinkling', 'twinkled', 'twinkled', intran, ['2A','2C'] ). +verb( 'twirl', 'twirls', 'twirling', 'twirled', 'twirled', _, ['2A','2C','6A','15B','16A'] ). +verb( 'twist', 'twists', 'twisting', 'twisted', 'twisted', _, ['2A','2C','6A','15A','15B','16A'] ). +verb( 'twit', 'twits', 'twitting', 'twitted', 'twitted', tran, ['6A','14'] ). +verb( 'twitch', 'twitches', 'twitching', 'twitched', 'twitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'twitter', 'twitters', 'twittering', 'twittered', 'twittered', intran, ['15A','15B'] ). +verb( 'type', 'types', 'typing', 'typed', 'typed', _, ['2A','6A'] ). +verb( 'typecast', 'typecasts', 'typecasting', 'typecast', 'typecast', tran, ['6A'] ). +verb( 'typify', 'typifies', 'typifying', 'typified', 'typified', tran, ['6A'] ). +verb( 'tyrannize', 'tyrannizes', 'tyrannizing', 'tyrannized', 'tyrannized', _, ['3A','6A'] ). +verb( 'uglify', 'uglifies', 'uglifying', 'uglified', 'uglified', tran, [] ). +verb( 'ulcerate', 'ulcerates', 'ulcerating', 'ulcerated', 'ulcerated', _, ['2A','6A'] ). +verb( 'ululate', 'ululates', 'ululating', 'ululated', 'ululated', intran, ['2A'] ). +verb( 'umpire', 'umpires', 'umpiring', 'umpired', 'umpired', _, ['2A','6A'] ). +verb( 'unbalance', 'unbalances', 'unbalancing', 'unbalanced', 'unbalanced', tran, ['6A'] ). +verb( 'unbar', 'unbars', 'unbarring', 'unbarred', 'unbarred', tran, [] ). +verb( 'unbend', 'unbends', 'unbending', 'unbended', 'unbended', _, ['2A','6A'] ). +verb( 'unbind', 'unbinds', 'unbinding', 'unbound', 'unbound', tran, ['6A'] ). +verb( 'unblock', 'unblocks', 'unblocking', 'unblocked', 'unblocked', tran, ['6A','15B'] ). +verb( 'unbolt', 'unbolts', 'unbolting', 'unbolted', 'unbolted', _, ['2A','2C','6A','15B'] ). +verb( 'unbosom', 'unbosoms', 'unbosoming', 'unbosomed', 'unbosomed', tran, ['6A','14'] ). +verb( 'unbuckle', 'unbuckles', 'unbuckling', 'unbuckled', 'unbuckled', tran, ['6A'] ). +verb( 'unburden', 'unburdens', 'unburdening', 'unburdened', 'unburdened', tran, ['6A','15A'] ). +verb( 'unbutton', 'unbuttons', 'unbuttoning', 'unbuttoned', 'unbuttoned', tran, ['6A'] ). +verb( 'unchain', 'unchains', 'unchaining', 'unchained', 'unchained', tran, ['6A','15A','15B'] ). +verb( 'uncork', 'uncorks', 'uncorking', 'uncorked', 'uncorked', tran, ['6A'] ). +verb( 'uncouple', 'uncouples', 'uncoupling', 'uncoupled', 'uncoupled', tran, ['6A'] ). +verb( 'uncover', 'uncovers', 'uncovering', 'uncovered', 'uncovered', tran, ['2A','6A'] ). +verb( 'uncross', 'uncrosses', 'uncrossing', 'uncrossed', 'uncrossed', tran, ['6A'] ). +verb( 'uncurl', 'uncurls', 'uncurling', 'uncurled', 'uncurled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'undeceive', 'undeceives', 'undeceiving', 'undeceived', 'undeceived', tran, ['6A'] ). +verb( 'underact', 'underacts', 'underacting', 'underacted', 'underacted', _, ['2A','6A'] ). +verb( 'underbid', 'underbids', 'underbidding', 'underbid', 'underbid', tran, [] ). +verb( 'undercharge', 'undercharges', 'undercharging', 'undercharged', 'undercharged', tran, ['6A'] ). +verb( 'undercut', 'undercuts', 'undercutting', 'undercut', 'undercut', tran, ['6A'] ). +verb( 'underestimate', 'underestimates', 'underestimating', 'underestimated', 'underestimated', tran, ['6A'] ). +verb( 'underexpose', 'underexposes', 'underexposing', 'underexposed', 'underexposed', tran, ['6A'] ). +verb( 'undergo', 'undergoes', 'undergoing', 'underwent', 'undergone', tran, ['6A'] ). +verb( 'underlie', 'underlies', 'underlying', 'underlay', 'underlain', tran, ['6A'] ). +verb( 'underline', 'underlines', 'underlining', 'underlined', 'underlined', tran, ['6A'] ). +verb( 'undermine', 'undermines', 'undermining', 'undermined', 'undermined', tran, ['6A'] ). +verb( 'underpay', 'underpays', 'underpaying', 'underpaid', 'underpaid', tran, ['6A'] ). +verb( 'underpin', 'underpins', 'underpinning', 'underpinned', 'underpinned', tran, [] ). +verb( 'underquote', 'underquotes', 'underquoting', 'underquoted', 'underquoted', tran, ['6A'] ). +verb( 'underrate', 'underrates', 'underrating', 'underrated', 'underrated', tran, ['6A'] ). +verb( 'underscore', 'underscores', 'underscoring', 'underscored', 'underscored', tran, ['6A'] ). +verb( 'undersell', 'undersells', 'underselling', 'undersold', 'undersold', tran, ['6A'] ). +verb( 'undershoot', 'undershoots', 'undershooting', 'undershot', 'undershot', tran, [] ). +verb( 'undersign', 'undersigns', 'undersigning', 'undersigned', 'undersigned', tran, ['6A'] ). +verb( 'underspend', 'underspends', 'underspending', 'underspent', 'underspent', _, ['2A','6A','14','19B'] ). +verb( 'understand', 'understands', 'understanding', 'understood', 'understood', _, ['2A','6A','6C','8','9','10','17','19C'] ). +verb( 'understate', 'understates', 'understating', 'understated', 'understated', tran, ['6A'] ). +verb( 'understock', 'understocks', 'understocking', 'understocked', 'understocked', tran, ['6A'] ). +verb( 'understudy', 'understudies', 'understudying', 'understudied', 'understudied', tran, ['6A'] ). +verb( 'undertake', 'undertakes', 'undertaking', 'undertook', 'undertaken', tran, ['6A','7A','9'] ). +verb( 'undervalue', 'undervalues', 'undervaluing', 'undervalued', 'undervalued', tran, ['6A'] ). +verb( 'underwrite', 'underwrites', 'underwriting', 'underwrote', 'underwritten', tran, ['6A'] ). +verb( 'undo', 'undoes', 'undoing', 'undid', 'undone', tran, ['6A'] ). +verb( 'undock', 'undocks', 'undocking', 'undocked', 'undocked', _, ['2A','6A'] ). +verb( 'undress', 'undresses', 'undressing', 'undressed', 'undressed', _, ['2A','6A'] ). +verb( 'undulate', 'undulates', 'undulating', 'undulated', 'undulated', intran, ['2A','2C'] ). +verb( 'unearth', 'unearths', 'unearthing', 'unearthed', 'unearthed', tran, ['6A'] ). +verb( 'unfasten', 'unfastens', 'unfastening', 'unfastened', 'unfastened', _, ['2A','2C','3A','6A','14','15A','15B'] ). +verb( 'unfit', 'unfits', 'unfitting', 'unfitted', 'unfitted', tran, ['14'] ). +verb( 'unfold', 'unfolds', 'unfolding', 'unfolded', 'unfolded', _, ['2A','2C','6A'] ). +verb( 'unfrock', 'unfrocks', 'unfrocking', 'unfrocked', 'unfrocked', tran, ['6A'] ). +verb( 'unfurl', 'unfurls', 'unfurling', 'unfurled', 'unfurled', _, ['2A','6A'] ). +verb( 'unhand', 'unhands', 'unhanding', 'unhanded', 'unhanded', tran, ['6A'] ). +verb( 'unhinge', 'unhinges', 'unhinging', 'unhinged', 'unhinged', tran, ['6A'] ). +verb( 'unhitch', 'unhitches', 'unhitching', 'unhitched', 'unhitched', _, ['2A','2C','6A','15A','15B'] ). +verb( 'unhook', 'unhooks', 'unhooking', 'unhooked', 'unhooked', tran, ['6A'] ). +verb( 'unhorse', 'unhorses', 'unhorsing', 'unhorsed', 'unhorsed', tran, ['6A'] ). +verb( 'unify', 'unifies', 'unifying', 'unified', 'unified', tran, ['6A'] ). +verb( 'unite', 'unites', 'uniting', 'united', 'united', _, ['2A','3A','4A','6A'] ). +verb( 'unlearn', 'unlearns', 'unlearning', 'unlearned', 'unlearned', tran, ['6A'] ). +verb( 'unleash', 'unleashes', 'unleashing', 'unleashed', 'unleashed', tran, ['6A'] ). +verb( 'unload', 'unloads', 'unloading', 'unloaded', 'unloaded', _, ['2A','6A','14'] ). +verb( 'unlock', 'unlocks', 'unlocking', 'unlocked', 'unlocked', _, ['2A','2C','6A','15A','15B'] ). +verb( 'unloose', 'unlooses', 'unloosing', 'unloosed', 'unloosed', tran, ['6A'] ). +verb( 'unman', 'unmans', 'unmanning', 'unmanned', 'unmanned', tran, ['6A'] ). +verb( 'unmask', 'unmasks', 'unmasking', 'unmasked', 'unmasked', _, ['2A','6A'] ). +verb( 'unnerve', 'unnerves', 'unnerving', 'unnerved', 'unnerved', tran, ['6A'] ). +verb( 'unpack', 'unpacks', 'unpacking', 'unpacked', 'unpacked', _, ['2A','6A'] ). +verb( 'unpick', 'unpicks', 'unpicking', 'unpicked', 'unpicked', _, ['3A','6A','15B'] ). +verb( 'unplug', 'unplugs', 'unplugging', 'unplugged', 'unplugged', _, ['2C','6A','15B'] ). +verb( 'unravel', 'unravels', 'unravelling', 'unravelled', 'unravelled', _, ['2A','6A'] ). +verb( 'unroll', 'unrolls', 'unrolling', 'unrolled', 'unrolled', _, ['2A','6A'] ). +verb( 'unsaddle', 'unsaddles', 'unsaddling', 'unsaddled', 'unsaddled', tran, ['6A'] ). +verb( 'unsay', 'unsays', 'unsaying', 'unsaid', 'unsaid', tran, ['6A'] ). +verb( 'unscramble', 'unscrambles', 'unscrambling', 'unscrambled', 'unscrambled', tran, [] ). +verb( 'unscrew', 'unscrews', 'unscrewing', 'unscrewed', 'unscrewed', _, ['2A','6A','15A','15B'] ). +verb( 'unseat', 'unseats', 'unseating', 'unseated', 'unseated', tran, ['6A'] ). +verb( 'unsettle', 'unsettles', 'unsettling', 'unsettled', 'unsettled', tran, ['6A'] ). +verb( 'unsex', 'unsexes', 'unsexing', 'unsexed', 'unsexed', tran, ['6A'] ). +verb( 'unsheathe', 'unsheathes', 'unsheathing', 'unsheathed', 'unsheathed', tran, ['6A'] ). +verb( 'untie', 'unties', 'untying', 'untied', 'untied', _, ['2A','3A','6A','15A','15B'] ). +verb( 'unveil', 'unveils', 'unveiling', 'unveiled', 'unveiled', _, ['2A','6A'] ). +verb( 'unwind', 'unwinds', 'unwinding', 'unwound', 'unwound', _, ['2A','6A','21'] ). +verb( 'unwrap', 'unwraps', 'unwrapping', 'unwrapped', 'unwrapped', _, ['6A','14','15A','15B'] ). +verb( 'unzip', 'unzips', 'unzipping', 'unzipped', 'unzipped', tran, [] ). +verb( 'up', 'ups', 'upping', 'upped', 'upped', _, ['2A','6A'] ). +verb( 'upbraid', 'upbraids', 'upbraiding', 'upbraided', 'upbraided', tran, ['6A','14'] ). +verb( 'update', 'updates', 'updating', 'updated', 'updated', tran, ['6A'] ). +verb( 'upgrade', 'upgrades', 'upgrading', 'upgraded', 'upgraded', tran, ['6A'] ). +verb( 'uphold', 'upholds', 'upholding', 'upheld', 'upheld', tran, ['6A'] ). +verb( 'upholster', 'upholsters', 'upholstering', 'upholstered', 'upholstered', tran, ['6A'] ). +verb( 'uplift', 'uplifts', 'uplifting', 'uplifted', 'uplifted', tran, ['6A'] ). +verb( 'uproot', 'uproots', 'uprooting', 'uprooted', 'uprooted', tran, ['6A'] ). +verb( 'upset', 'upsets', 'upsetting', 'upset', 'upset', _, ['2A','6A'] ). +verb( 'upstage', 'upstages', 'upstaging', 'upstaged', 'upstaged', tran, ['6A'] ). +verb( 'urbanize', 'urbanizes', 'urbanizing', 'urbanized', 'urbanized', tran, ['6A'] ). +verb( 'urge', 'urges', 'urging', 'urged', 'urged', tran, ['6A','6D','9','14','15B','17','19C'] ). +verb( 'urinate', 'urinates', 'urinating', 'urinated', 'urinated', intran, [] ). +verb( 'use', 'uses', 'using', 'used', 'used', tran, ['6A','14','15A','15B','16A'] ). +verb( 'usher', 'ushers', 'ushering', 'ushered', 'ushered', tran, ['14','15B'] ). +verb( 'usurp', 'usurps', 'usurping', 'usurped', 'usurped', tran, ['6A'] ). +verb( 'utilize', 'utilizes', 'utilizing', 'utilized', 'utilized', tran, ['6A'] ). +verb( 'utter', 'utters', 'uttering', 'uttered', 'uttered', tran, ['6A'] ). +verb( 'vacate', 'vacates', 'vacating', 'vacated', 'vacated', tran, ['6A'] ). +verb( 'vacation', 'vacations', 'vacationing', 'vacationed', 'vacationed', intran, ['3A'] ). +verb( 'vaccinate', 'vaccinates', 'vaccinating', 'vaccinated', 'vaccinated', tran, ['6A','14'] ). +verb( 'vacillate', 'vacillates', 'vacillating', 'vacillated', 'vacillated', intran, ['2A','3A'] ). +verb( 'valet', 'valets', 'valeting', 'valeted', 'valeted', tran, ['6A'] ). +verb( 'validate', 'validates', 'validating', 'validated', 'validated', tran, ['6A'] ). +verb( 'value', 'values', 'valuing', 'valued', 'valued', tran, ['6A','15A','16B'] ). +verb( 'vamoose', 'vamooses', 'vamoosing', 'vamoosed', 'vamoosed', intran, [] ). +verb( 'vamp', 'vamps', 'vamping', 'vamped', 'vamped', _, ['2A','6A','15B'] ). +verb( 'vanish', 'vanishes', 'vanishing', 'vanished', 'vanished', intran, ['2A'] ). +verb( 'vanquish', 'vanquishes', 'vanquishing', 'vanquished', 'vanquished', tran, ['6A'] ). +verb( 'vaporize', 'vaporizes', 'vaporizing', 'vaporized', 'vaporized', _, ['2A','6A'] ). +verb( 'varnish', 'varnishes', 'varnishing', 'varnished', 'varnished', tran, ['6A'] ). +verb( 'vary', 'varies', 'varying', 'varied', 'varied', _, ['2A','6A'] ). +verb( 'vault', 'vaults', 'vaulting', 'vaulted', 'vaulted', _, ['2A','2B','2C','6A'] ). +verb( 'vaunt', 'vaunts', 'vaunting', 'vaunted', 'vaunted', _, [] ). +verb( 'veer', 'veers', 'veering', 'veered', 'veered', intran, ['2A','2C'] ). +verb( 'vegetate', 'vegetates', 'vegetating', 'vegetated', 'vegetated', intran, ['2A'] ). +verb( 'veil', 'veils', 'veiling', 'veiled', 'veiled', tran, ['6A'] ). +verb( 'vend', 'vends', 'vending', 'vended', 'vended', tran, ['6A'] ). +verb( 'veneer', 'veneers', 'veneering', 'veneered', 'veneered', tran, ['6A'] ). +verb( 'venerate', 'venerates', 'venerating', 'venerated', 'venerated', tran, ['6A'] ). +verb( 'vent', 'vents', 'venting', 'vented', 'vented', tran, ['6A','14'] ). +verb( 'ventilate', 'ventilates', 'ventilating', 'ventilated', 'ventilated', tran, ['6A'] ). +verb( 'venture', 'ventures', 'venturing', 'ventured', 'ventured', _, ['3A','6A','7A','15A','16A'] ). +verb( 'verbalize', 'verbalizes', 'verbalizing', 'verbalized', 'verbalized', tran, [] ). +verb( 'verge', 'verges', 'verging', 'verged', 'verged', intran, ['3A'] ). +verb( 'verify', 'verifies', 'verifying', 'verified', 'verified', tran, ['6A'] ). +verb( 'versify', 'versifies', 'versifying', 'versified', 'versified', _, ['2A','6A'] ). +verb( 'vest', 'vests', 'vesting', 'vested', 'vested', _, ['3A','6A','14'] ). +verb( 'vesture', 'vestures', 'vesturing', 'vestured', 'vestured', tran, [] ). +verb( 'vet', 'vets', 'vetting', 'vetted', 'vetted', tran, ['6A'] ). +verb( 'veto', 'vetos', 'vetoing', 'vetoed', 'vetoed', tran, ['6A'] ). +verb( 'vex', 'vexes', 'vexing', 'vexed', 'vexed', tran, ['6A'] ). +verb( 'vibrate', 'vibrates', 'vibrating', 'vibrated', 'vibrated', _, ['2A','2C','6A'] ). +verb( 'victimize', 'victimizes', 'victimizing', 'victimized', 'victimized', tran, ['6A'] ). +verb( 'victual', 'victuals', 'victualling', 'victualled', 'victualled', _, ['2A','6A'] ). +verb( 'videotape', 'videotapes', 'videotaping', 'videotaped', 'videotaped', tran, ['6A'] ). +verb( 'vie', 'vies', 'vying', 'vied', 'vied', intran, ['3A'] ). +verb( 'view', 'views', 'viewing', 'viewed', 'viewed', tran, ['6A'] ). +verb( 'vilify', 'vilifies', 'vilifying', 'vilified', 'vilified', tran, ['6A'] ). +verb( 'vindicate', 'vindicates', 'vindicating', 'vindicated', 'vindicated', tran, ['6A'] ). +verb( 'violate', 'violates', 'violating', 'violated', 'violated', tran, ['6A'] ). +verb( 'visa', 'visas', 'visaing', 'visaed', 'visaed', tran, ['6A'] ). +verb( 'visit', 'visits', 'visiting', 'visited', 'visited', _, ['2C','3A','6A','14'] ). +verb( 'visualize', 'visualizes', 'visualizing', 'visualized', 'visualized', tran, ['6A'] ). +verb( 'vitalize', 'vitalizes', 'vitalizing', 'vitalized', 'vitalized', tran, ['6A'] ). +verb( 'vitiate', 'vitiates', 'vitiating', 'vitiated', 'vitiated', tran, ['6A'] ). +verb( 'vitrify', 'vitrifies', 'vitrifying', 'vitrified', 'vitrified', _, ['2A','6A'] ). +verb( 'vituperate', 'vituperates', 'vituperating', 'vituperated', 'vituperated', tran, ['6A'] ). +verb( 'vivisect', 'vivisects', 'vivisecting', 'vivisected', 'vivisected', tran, ['6A'] ). +verb( 'vocalize', 'vocalizes', 'vocalizing', 'vocalized', 'vocalized', tran, [] ). +verb( 'vociferate', 'vociferates', 'vociferating', 'vociferated', 'vociferated', _, ['2A','6A'] ). +verb( 'voice', 'voices', 'voicing', 'voiced', 'voiced', tran, ['6A'] ). +verb( 'void', 'voids', 'voiding', 'voided', 'voided', tran, ['6A'] ). +verb( 'volley', 'volleys', 'volleying', 'volleyed', 'volleyed', _, ['2A','2C','6A'] ). +verb( 'volunteer', 'volunteers', 'volunteering', 'volunteered', 'volunteered', _, ['2A','3A','6A','7A'] ). +verb( 'vomit', 'vomits', 'vomiting', 'vomited', 'vomited', _, ['2A','6A','15B'] ). +verb( 'vote', 'votes', 'voting', 'voted', 'voted', _, ['3A','6A','9','12B','13B','15B','25'] ). +verb( 'vouch', 'vouches', 'vouching', 'vouched', 'vouched', intran, [] ). +verb( 'vouchsafe', 'vouchsafes', 'vouchsafing', 'vouchsafed', 'vouchsafed', tran, ['6A','7A','12C'] ). +verb( 'vow', 'vows', 'vowing', 'vowed', 'vowed', tran, ['6A','7A','9'] ). +verb( 'voyage', 'voyages', 'voyaging', 'voyaged', 'voyaged', intran, ['2A','2C'] ). +verb( 'vulcanize', 'vulcanizes', 'vulcanizing', 'vulcanized', 'vulcanized', tran, ['6A'] ). +verb( 'vulgarize', 'vulgarizes', 'vulgarizing', 'vulgarized', 'vulgarized', tran, ['6A'] ). +verb( 'wad', 'wads', 'wadding', 'wadded', 'wadded', tran, [] ). +verb( 'waddle', 'waddles', 'waddling', 'waddled', 'waddled', intran, ['2A','2C'] ). +verb( 'wade', 'wades', 'wading', 'waded', 'waded', _, ['2A','2C','6A'] ). +verb( 'waffle', 'waffles', 'waffling', 'waffled', 'waffled', intran, ['2A','2C'] ). +verb( 'waft', 'wafts', 'wafting', 'wafted', 'wafted', tran, ['6A'] ). +verb( 'wag', 'wags', 'wagging', 'wagged', 'wagged', _, ['2A','2C','6A'] ). +verb( 'wage', 'wages', 'waging', 'waged', 'waged', tran, ['6A'] ). +verb( 'wager', 'wagers', 'wagering', 'wagered', 'wagered', _, ['2A','6A','11','12C','14'] ). +verb( 'waggle', 'waggles', 'waggling', 'waggled', 'waggled', _, [] ). +verb( 'wail', 'wails', 'wailing', 'wailed', 'wailed', _, ['2A','2B','2C','6A'] ). +verb( 'wait', 'waits', 'waiting', 'waited', 'waited', _, ['2A','2B','2C','3A','4A','6A','14'] ). +verb( 'waive', 'waives', 'waiving', 'waived', 'waived', tran, ['6A'] ). +verb( 'wake', 'wakes', 'waking', 'waked', 'waked', _, ['2A','2C','4B','6A','15B'] ). +verb( 'waken', 'wakens', 'wakening', 'wakened', 'wakened', _, ['2A','6A'] ). +verb( 'walk', 'walks', 'walking', 'walked', 'walked', _, ['2A','2B','2C','6A','15A','15B'] ). +verb( 'wall', 'walls', 'walling', 'walled', 'walled', tran, ['15B'] ). +verb( 'wallop', 'wallops', 'walloping', 'walloped', 'walloped', tran, [] ). +verb( 'wallow', 'wallows', 'wallowing', 'wallowed', 'wallowed', intran, ['2A','2C'] ). +verb( 'waltz', 'waltzes', 'waltzing', 'waltzed', 'waltzed', _, ['2A','2C','15A'] ). +verb( 'wander', 'wanders', 'wandering', 'wandered', 'wandered', _, ['2A','2B','2C','6A'] ). +verb( 'wane', 'wanes', 'waning', 'waned', 'waned', intran, ['2A'] ). +verb( 'wangle', 'wangles', 'wangling', 'wangled', 'wangled', tran, ['6A'] ). +verb( 'wank', 'wanks', 'wanking', 'wanked', 'wanked', intran, ['2A'] ). +verb( 'want', 'wants', 'wanting', 'wanted', 'wanted', _, ['2A','3A','6A','6E','7A','17','19B','24A'] ). +verb( 'wanton', 'wantons', 'wantoning', 'wantoned', 'wantoned', intran, ['2A','2C'] ). +verb( 'war', 'wars', 'warring', 'warred', 'warred', intran, [] ). +verb( 'warble', 'warbles', 'warbling', 'warbled', 'warbled', _, ['2A','2C','6A'] ). +verb( 'ward', 'wards', 'warding', 'warded', 'warded', tran, ['15B'] ). +verb( 'ware', 'wares', 'waring', 'wared', 'wared', tran, ['6A'] ). +verb( 'warm', 'warms', 'warming', 'warmed', 'warmed', _, ['2A','2C','6A','15B'] ). +verb( 'warn', 'warns', 'warning', 'warned', 'warned', tran, ['6A','11','14','15B','17'] ). +verb( 'warp', 'warps', 'warping', 'warped', 'warped', _, ['2A','6A'] ). +verb( 'warrant', 'warrants', 'warranting', 'warranted', 'warranted', tran, ['6A','9','25'] ). +verb( 'wash', 'washes', 'washing', 'washed', 'washed', _, ['2A','2C','6A','15A','15B','22'] ). +verb( 'waste', 'wastes', 'wasting', 'wasted', 'wasted', _, ['2A','2C','6A','14'] ). +verb( 'watch', 'watches', 'watching', 'watched', 'watched', _, ['2A','2B','2C','3A','4A','6A','8','10','15A','18A','19A'] ). +verb( 'water', 'waters', 'watering', 'watered', 'watered', _, ['2A','6A','15B'] ). +verb( 'waterproof', 'waterproofs', 'waterproofing', 'waterproofed', 'waterproofed', tran, [] ). +verb( 'wave', 'waves', 'waving', 'waved', 'waved', _, ['2A','3A','6A','12A','13A','15A','15B','16A'] ). +verb( 'waver', 'wavers', 'wavering', 'wavered', 'wavered', intran, ['2A','2C'] ). +verb( 'wax', 'waxes', 'waxing', 'waxed', 'waxed', _, ['2A','2D','6A'] ). +verb( 'waylay', 'waylays', 'waylaying', 'waylaid', 'waylaid', tran, ['6A'] ). +verb( 'weaken', 'weakens', 'weakening', 'weakened', 'weakened', _, ['2A','6A'] ). +verb( 'wean', 'weans', 'weaning', 'weaned', 'weaned', tran, ['6A','14'] ). +verb( 'wear', 'wears', 'wearing', 'wore', 'worn', _, ['2A','2B','2C','2D','6A','15A','15B','22'] ). +verb( 'weary', 'wearies', 'wearying', 'wearied', 'wearied', _, ['2A','3A','6A','14'] ). +verb( 'weather', 'weathers', 'weathering', 'weathered', 'weathered', _, ['2A','6A'] ). +verb( 'weave', 'weaves', 'weaving', 'wove', 'woven', _, ['2A','2C','6A','15A','15B'] ). +verb( 'wed', 'weds', 'wedding', 'wedded', 'wedded', _, ['2A','6A','14'] ). +verb( 'wedge', 'wedges', 'wedging', 'wedged', 'wedged', tran, ['6A','15A','22'] ). +verb( 'wee', 'wees', 'weeing', 'weed', 'weed', intran, [] ). +verb( 'weed', 'weeds', 'weeding', 'weeded', 'weeded', _, ['2A','6A','15B'] ). +verb( 'weekend', 'weekends', 'weekending', 'weekended', 'weekended', intran, [] ). +verb( 'weep', 'weeps', 'weeping', 'wept', 'wept', _, ['2A','2B','2C','3A','4B','6A'] ). +verb( 'weigh', 'weighs', 'weighing', 'weighed', 'weighed', _, ['2B','2C','3A','6A','14','15B'] ). +verb( 'weight', 'weights', 'weighting', 'weighted', 'weighted', tran, ['6A'] ). +verb( 'welcome', 'welcomes', 'welcoming', 'welcomed', 'welcomed', tran, ['6A','15A'] ). +verb( 'weld', 'welds', 'welding', 'welded', 'welded', _, ['2A','6A','15A','15B'] ). +verb( 'well', 'wells', 'welling', 'welled', 'welled', intran, ['2C'] ). +verb( 'welsh', 'welshes', 'welshing', 'welshed', 'welshed', intran, ['3A'] ). +verb( 'welter', 'welters', 'weltering', 'weltered', 'weltered', intran, ['2C'] ). +verb( 'wench', 'wenches', 'wenching', 'wenched', 'wenched', intran, ['2A'] ). +verb( 'wend', 'wends', 'wending', 'wended', 'wended', tran, [] ). +verb( 'westernize', 'westernizes', 'westernizing', 'westernized', 'westernized', tran, ['6A'] ). +verb( 'wet', 'wets', 'wetting', 'wetted', 'wetted', tran, ['6A'] ). +verb( 'whack', 'whacks', 'whacking', 'whacked', 'whacked', tran, ['6A'] ). +verb( 'whale', 'whales', 'whaling', 'whaled', 'whaled', intran, ['2A'] ). +verb( 'whang', 'whangs', 'whanging', 'whanged', 'whanged', tran, [] ). +verb( 'wheedle', 'wheedles', 'wheedling', 'wheedled', 'wheedled', tran, ['6A','14'] ). +verb( 'wheel', 'wheels', 'wheeling', 'wheeled', 'wheeled', _, ['2A','2C','6A','15A','15B'] ). +verb( 'wheeze', 'wheezes', 'wheezing', 'wheezed', 'wheezed', _, ['2A','2B','2C','15B'] ). +verb( 'whelp', 'whelps', 'whelping', 'whelped', 'whelped', intran, [] ). +verb( 'whet', 'whets', 'whetting', 'whetted', 'whetted', tran, ['6A'] ). +verb( 'while', 'whiles', 'whiling', 'whiled', 'whiled', tran, ['15B'] ). +verb( 'whimper', 'whimpers', 'whimpering', 'whimpered', 'whimpered', _, ['2A','6A'] ). +verb( 'whine', 'whines', 'whining', 'whined', 'whined', _, ['2A','2C','4A','6A','15B'] ). +verb( 'whinny', 'whinnies', 'whinnying', 'whinnied', 'whinnied', intran, [] ). +verb( 'whip', 'whips', 'whipping', 'whipped', 'whipped', _, ['2C','6A','15A','15B'] ). +verb( 'whir', 'whirs', 'whirring', 'whirred', 'whirred', intran, ['2A','2C'] ). +verb( 'whirl', 'whirls', 'whirling', 'whirled', 'whirled', _, ['2A','2C','15A','15B'] ). +verb( 'whirr', 'whirrs', 'whirring', 'whirred', 'whirred', intran, ['2A','2C'] ). +verb( 'whisk', 'whisks', 'whisking', 'whisked', 'whisked', _, ['6A','15B'] ). +verb( 'whisper', 'whispers', 'whispering', 'whispered', 'whispered', _, ['2A','2C','3A','6A','14','15B'] ). +verb( 'whistle', 'whistles', 'whistling', 'whistled', 'whistled', _, ['2A','2C','6A','15B','16A'] ). +verb( 'whiten', 'whitens', 'whitening', 'whitened', 'whitened', _, ['2A','6A'] ). +verb( 'whitewash', 'whitewashes', 'whitewashing', 'whitewashed', 'whitewashed', tran, [] ). +verb( 'whittle', 'whittles', 'whittling', 'whittled', 'whittled', _, ['2C','3A','6A','15A','15B'] ). +verb( 'whiz', 'whizzes', 'whizzing', 'whizzed', 'whizzed', intran, ['2C'] ). +verb( 'whoop', 'whoops', 'whooping', 'whooped', 'whooped', _, [] ). +verb( 'whop', 'whops', 'whopping', 'whopped', 'whopped', tran, ['6A'] ). +verb( 'widen', 'widens', 'widening', 'widened', 'widened', _, ['2A','6A'] ). +verb( 'wield', 'wields', 'wielding', 'wielded', 'wielded', tran, ['6A'] ). +verb( 'wiggle', 'wiggles', 'wiggling', 'wiggled', 'wiggled', _, ['2A','6A'] ). +verb( 'will', 'will', '-', '-', '-', unknown, ['2A','5','6A','9','12A','13A','14','15A','17'] ). +verb( 'will', 'wills', 'willing', 'willed', 'willed', _, ['2A','5','6A','9','12A','13A','14','15A','17'] ). +verb( 'wilt', 'wilts', 'wilting', 'wilted', 'wilted', _, ['2A','5','6A','9'] ). +verb( 'win', 'wins', 'winning', 'won', 'won', _, ['2A','6A','12B','13B','15A','15B','17'] ). +verb( 'wince', 'winces', 'wincing', 'winced', 'winced', tran, ['2A','2C'] ). +verb( 'winch', 'winches', 'winching', 'winched', 'winched', tran, ['6A','15B'] ). +verb( 'wind', 'winds', 'winding', 'winded', 'winded', tran, ['6A'] ). +verb( 'wind', 'winds', 'winding', 'wound', 'wound', _, ['2A','2B','2C','6A','14','15A','15B'] ). +verb( 'wine', 'wines', 'wining', 'wined', 'wined', tran, [] ). +verb( 'wing', 'wings', 'winging', 'winged', 'winged', _, ['2C','6A','15A'] ). +verb( 'wink', 'winks', 'winking', 'winked', 'winked', _, ['2A','2C','3A','15B'] ). +verb( 'winkle', 'winkles', 'winkling', 'winkled', 'winkled', tran, ['15B'] ). +verb( 'winnow', 'winnows', 'winnowing', 'winnowed', 'winnowed', tran, ['6A','14','15A','15B'] ). +verb( 'winter', 'winters', 'wintering', 'wintered', 'wintered', intran, ['2C'] ). +verb( 'wipe', 'wipes', 'wiping', 'wiped', 'wiped', _, ['6A','15A','15B','22'] ). +verb( 'wire', 'wires', 'wiring', 'wired', 'wired', _, ['6A','11','12A','13A','15A','15B','16A'] ). +verb( 'wisecrack', 'wisecracks', 'wisecracking', 'wisecracked', 'wisecracked', intran, [] ). +verb( 'wish', 'wishes', 'wishing', 'wished', 'wished', _, ['2A','3A','6A','7A','9','12A','13A','15A','17','22'] ). +verb( 'withdraw', 'withdraws', 'withdrawing', 'withdrew', 'withdrawn', _, ['2A','2C','6A','14'] ). +verb( 'wither', 'withers', 'withering', 'withered', 'withered', _, ['2A','2C','6A','15B'] ). +verb( 'withhold', 'withholds', 'withholding', 'withheld', 'withheld', tran, ['6A','14'] ). +verb( 'withstand', 'withstands', 'withstanding', 'withstood', 'withstood', tran, ['6A'] ). +verb( 'witness', 'witnesses', 'witnessing', 'witnessed', 'witnessed', _, ['3A','6A'] ). +verb( 'wive', 'wives', 'wiving', 'wived', 'wived', _, ['2A','6A'] ). +verb( 'wobble', 'wobbles', 'wobbling', 'wobbled', 'wobbled', _, ['2A','2C','6A'] ). +verb( 'wolf', 'wolfs', 'wolfing', 'wolfed', 'wolfed', tran, ['6A','15A'] ). +verb( 'womanize', 'womanizes', 'womanizing', 'womanized', 'womanized', intran, [] ). +verb( 'wonder', 'wonders', 'wondering', 'wondered', 'wondered', _, ['2A','3A','3B','4B','8','10'] ). +verb( 'woo', 'woos', 'wooing', 'wooed', 'wooed', tran, ['6A'] ). +verb( 'word', 'words', 'wording', 'worded', 'worded', tran, ['6A'] ). +verb( 'work', 'works', 'working', 'worked', 'worked', _, ['2A','2B','2C','2D','3A','4A','6A','14','15A','15B','22'] ). +verb( 'worm', 'worms', 'worming', 'wormed', 'wormed', tran, ['6A','15A','15B'] ). +verb( 'worry', 'worries', 'worrying', 'worried', 'worried', _, ['2A','2B','2C','3A','6A','14','15A','15B','17','22'] ). +verb( 'worsen', 'worsens', 'worsening', 'worsened', 'worsened', _, ['2A','6A'] ). +verb( 'worship', 'worships', 'worshipping', 'worshipped', 'worshipped', _, ['2A','2B','6A'] ). +verb( 'worst', 'worsts', 'worsting', 'worsted', 'worsted', tran, ['6A'] ). +verb( 'wound', 'wounds', 'wounding', 'wounded', 'wounded', tran, ['6A'] ). +verb( 'wrangle', 'wrangles', 'wrangling', 'wrangled', 'wrangled', intran, ['2A','3A'] ). +verb( 'wrap', 'wraps', 'wrapping', 'wrapped', 'wrapped', _, ['6A','14','15A','15B'] ). +verb( 'wreak', 'wreaks', 'wreaking', 'wreaked', 'wreaked', tran, ['6A','14'] ). +verb( 'wreathe', 'wreathes', 'wreathing', 'wreathed', 'wreathed', _, ['2A','2C','6A','14'] ). +verb( 'wreck', 'wrecks', 'wrecking', 'wrecked', 'wrecked', tran, ['6A'] ). +verb( 'wrench', 'wrenches', 'wrenching', 'wrenched', 'wrenched', tran, ['6A','15A','22'] ). +verb( 'wrest', 'wrests', 'wresting', 'wrested', 'wrested', tran, ['14'] ). +verb( 'wrestle', 'wrestles', 'wrestling', 'wrestled', 'wrestled', intran, ['2A','2C','3A'] ). +verb( 'wrick', 'wricks', 'wricking', 'wricked', 'wricked', tran, ['6A'] ). +verb( 'wriggle', 'wriggles', 'wriggling', 'wriggled', 'wriggled', _, ['2A','2C','3A','6A','15B','22'] ). +verb( 'wring', 'wrings', 'wringing', 'wrung', 'wrung', tran, ['6A','14','15B'] ). +verb( 'wrinkle', 'wrinkles', 'wrinkling', 'wrinkled', 'wrinkled', _, ['2A','2C','6A','15B'] ). +verb( 'write', 'writes', 'writing', 'wrote', 'written', _, ['2A','2B','2C','4A','6A','12A','13A','15B'] ). +verb( 'writhe', 'writhes', 'writhing', 'writhed', 'writhed', intran, ['2A','2C'] ). +verb( 'wrong', 'wrongs', 'wronging', 'wronged', 'wronged', tran, ['6A'] ). +verb( 'yacht', 'yachts', 'yachting', 'yachted', 'yachted', intran, ['2A'] ). +verb( 'yammer', 'yammers', 'yammering', 'yammered', 'yammered', intran, [] ). +verb( 'yank', 'yanks', 'yanking', 'yanked', 'yanked', tran, ['6A','15A','15B'] ). +verb( 'yap', 'yaps', 'yapping', 'yapped', 'yapped', intran, ['2A'] ). +verb( 'yarn', 'yarns', 'yarning', 'yarned', 'yarned', intran, ['2A','2C'] ). +verb( 'yaw', 'yaws', 'yawing', 'yawed', 'yawed', intran, [] ). +verb( 'yawn', 'yawns', 'yawning', 'yawned', 'yawned', intran, ['2A','2C'] ). +verb( 'yearn', 'yearns', 'yearning', 'yearned', 'yearned', intran, ['3A','4A'] ). +verb( 'yell', 'yells', 'yelling', 'yelled', 'yelled', _, ['2A','2C','6A','15B'] ). +verb( 'yellow', 'yellows', 'yellowing', 'yellowed', 'yellowed', _, ['2A','6A'] ). +verb( 'yelp', 'yelps', 'yelping', 'yelped', 'yelped', intran, ['2A'] ). +verb( 'yen', 'yens', 'yenning', 'yenned', 'yenned', intran, [] ). +verb( 'yield', 'yields', 'yielding', 'yielded', 'yielded', _, ['2A','3A','6A','15A','15B'] ). +verb( 'yodel', 'yodels', 'yodelling', 'yodelled', 'yodelled', _, [] ). +verb( 'yoke', 'yokes', 'yoking', 'yoked', 'yoked', _, ['6A','15A'] ). +verb( 'yowl', 'yowls', 'yowling', 'yowled', 'yowled', intran, [] ). +verb( 'zap', 'zaps', 'zapping', 'zapped', 'zapped', tran, ['6A'] ). +verb( 'zero', 'zeros', 'zeroing', 'zeroed', 'zeroed', intran, ['2C'] ). +verb( 'zigzag', 'zigzags', 'zigzagging', 'zigzagged', 'zigzagged', intran, [] ). +verb( 'zip', 'zips', 'zipping', 'zipped', 'zipped', tran, ['6A','15B','22'] ). +verb( 'zone', 'zones', 'zoning', 'zoned', 'zoned', tran, ['6A'] ). +verb( 'zoom', 'zooms', 'zooming', 'zoomed', 'zoomed', intran, ['2A','2C'] ). + +noun( 'a-bomb', 'a-bombs', count, _ ). +noun( 'a-level', 'a-levels', count, _ ). +noun( 'aa', '-', count, _ ). +noun( 'abc', '-', count, _ ). +noun( '-', 'abcs', count, _ ). +noun( 'ad', '-', proper, _ ). +noun( 'agm', '-', count, _ ). +noun( 'aids', '-', mass, _ ). +noun( 'awol', '-', proper, _ ). +noun( 'aachen', '-', proper, loc ). +noun( 'aarhus', '-', proper, loc ). +noun( 'abe', '-', proper, per ). +noun( 'abercarn', '-', proper, loc ). +noun( 'aberdare', '-', proper, loc ). +noun( 'aberdeen', '-', proper, loc ). +noun( 'abergavenny', '-', proper, loc ). +noun( 'abergele', '-', proper, loc ). +noun( 'abertillery', '-', proper, loc ). +noun( 'aberystwyth', '-', proper, loc ). +noun( 'abingdon', '-', proper, loc ). +noun( 'abo', 'abos', count, _ ). +noun( 'aborigine', 'aborigines', count, _ ). +noun( 'abraham', '-', proper, per ). +noun( 'accra', '-', proper, loc ). +noun( 'accrington', '-', proper, loc ). +noun( 'achilles', '-', proper, per ). +noun( 'ada', '-', proper, per ). +noun( 'adam', '-', proper, per ). +noun( 'addis ababa', '-', proper, loc ). +noun( 'addressograph', 'addressographs', count, _ ). +noun( 'adelaide', '-', proper, loc ). +noun( 'adrian', '-', proper, per ). +noun( 'adventist', 'adventists', count, _ ). +noun( 'afghan', 'afghans', both, _ ). +noun( 'afghanistan', '-', proper, loc ). +noun( 'afghanistani', 'afghanistanis', count, _ ). +noun( 'africa', '-', proper, loc ). +noun( 'african', 'africans', count, _ ). +noun( 'afrikaans', '-', mass, _ ). +noun( 'afrikaner', 'afrikaners', count, _ ). +noun( 'afro-american', 'afro-americans', count, _ ). +noun( 'afro-wig', 'afro-wigs', count, _ ). +noun( 'agatha', '-', proper, per ). +noun( 'aggie', '-', proper, per ). +noun( 'agnes', '-', proper, per ). +noun( 'agra', '-', proper, loc ). +noun( 'ahmedabad', '-', proper, loc ). +noun( 'airdrie', '-', proper, loc ). +noun( 'aireborough', '-', proper, loc ). +noun( 'airedale', 'airedales', count, _ ). +noun( 'akron', '-', proper, loc ). +noun( 'al', '-', proper, per ). +noun( 'alabama', '-', proper, loc ). +noun( 'alan', '-', proper, per ). +noun( 'alaska', '-', proper, loc ). +noun( 'albania', '-', proper, loc ). +noun( 'albanian', 'albanians', both, _ ). +noun( 'albert', '-', proper, per ). +noun( 'alberta', '-', proper, loc ). +noun( 'aldershot', '-', proper, loc ). +noun( 'aleppo', '-', proper, loc ). +noun( 'alessandria', '-', proper, loc ). +noun( 'alex', '-', proper, per ). +noun( 'alexander', '-', proper, per ). +noun( 'alexandra', '-', proper, per ). +noun( 'alexandria', '-', proper, loc ). +noun( 'alf', '-', proper, per ). +noun( 'alfred', '-', proper, per ). +noun( 'alfreton', '-', proper, loc ). +noun( 'alger', '-', proper, loc ). +noun( 'algeria', '-', proper, loc ). +noun( 'algerian', 'algerians', count, _ ). +noun( 'ali', '-', proper, per ). +noun( 'alicante', '-', proper, loc ). +noun( 'alice', '-', proper, per ). +noun( 'alison', '-', proper, per ). +noun( 'allah', '-', proper, _ ). +noun( 'allahabad', '-', proper, loc ). +noun( 'allan', '-', proper, per ). +noun( 'allen', '-', proper, per ). +noun( 'alloa', '-', proper, loc ). +noun( 'alma mater', 'alma maters', count, _ ). +noun( 'alma-ata', '-', proper, loc ). +noun( 'almeria', '-', proper, loc ). +noun( 'alnwick', '-', proper, loc ). +noun( 'alsatian', 'alsatians', count, _ ). +noun( 'alton', '-', proper, loc ). +noun( 'altrincham', '-', proper, loc ). +noun( 'alvechurch', '-', proper, loc ). +noun( 'amanda', '-', proper, per ). +noun( 'amazon', 'amazons', count, _ ). +noun( 'america', '-', proper, loc ). +noun( 'american', 'americans', count, _ ). +noun( 'americanism', 'americanisms', both, _ ). +noun( 'amesbury', '-', proper, loc ). +noun( 'amharic', '-', mass, _ ). +noun( 'amiens', '-', proper, loc ). +noun( 'ammanford', '-', proper, loc ). +noun( 'amsterdam', '-', proper, loc ). +noun( 'amy', '-', proper, per ). +noun( 'ancona', '-', proper, loc ). +noun( 'andorra', '-', proper, loc ). +noun( 'andorran', 'andorrans', count, _ ). +noun( 'andover', '-', proper, loc ). +noun( 'andrew', '-', proper, per ). +noun( 'andy', '-', proper, per ). +noun( 'angela', '-', proper, per ). +noun( 'angers', '-', proper, loc ). +noun( 'angie', '-', proper, per ). +noun( 'anglican', 'anglicans', count, _ ). +noun( 'anglo-catholic', 'anglo-catholics', count, _ ). +noun( 'anglo-indian', 'anglo-indians', count, _ ). +noun( 'anglo-saxon', 'anglo-saxons', count, _ ). +noun( 'anglomania', '-', mass, _ ). +noun( 'anglophil', 'anglophils', count, _ ). +noun( 'anglophile', 'anglophiles', count, _ ). +noun( 'anglophobe', 'anglophobes', count, _ ). +noun( 'anglophobia', '-', mass, _ ). +noun( 'angola', '-', proper, loc ). +noun( 'angolan', 'angolans', count, _ ). +noun( 'anguilla', '-', proper, loc ). +noun( 'anguillan', 'anguillans', count, _ ). +noun( 'angus', '-', proper, per ). +noun( 'anita', '-', proper, per ). +noun( 'ankara', '-', proper, loc ). +noun( 'ann', '-', proper, per ). +noun( 'annabel', '-', proper, per ). +noun( 'annan', '-', proper, loc ). +noun( 'anne', '-', proper, per ). +noun( 'annfield', '-', proper, loc ). +noun( 'annfield plain', '-', proper, loc ). +noun( 'annie', '-', proper, per ). +noun( 'anon', '-', proper, _ ). +noun( 'anshan', '-', proper, loc ). +noun( 'anthea', '-', proper, per ). +noun( 'anthony', '-', proper, per ). +noun( 'antigua', '-', proper, loc ). +noun( 'antiguan', 'antiguans', count, _ ). +noun( 'antony', '-', proper, per ). +noun( 'antrim', '-', proper, loc ). +noun( 'antwerp', '-', proper, loc ). +noun( 'apeldoorn', '-', proper, loc ). +noun( 'apocrypha', 'apocrypha', mass, _ ). +noun( 'apr', '-', proper, _ ). +noun( 'april', 'aprils', count, _ ). +noun( 'april', '-', proper, per ). +noun( 'aquarius', '-', proper, _ ). +noun( 'arab', 'arabs', count, _ ). +noun( 'arabian', 'arabians', count, _ ). +noun( 'arabic', '-', mass, _ ). +noun( 'arabist', 'arabists', count, _ ). +noun( 'arbroath', '-', proper, loc ). +noun( 'arcadian', 'arcadians', count, _ ). +noun( 'ardrossan', '-', proper, loc ). +noun( 'argentina', '-', proper, loc ). +noun( 'argentine', '-', proper, loc ). +noun( 'argentinian', 'argentinians', count, _ ). +noun( 'argonaut', 'argonauts', count, _ ). +noun( 'argus', 'arguses', count, _ ). +noun( 'aries', '-', proper, _ ). +noun( 'arizona', '-', proper, loc ). +noun( 'arkansas', '-', proper, loc ). +noun( 'armadale', '-', proper, loc ). +noun( 'armageddon', '-', proper, _ ). +noun( 'armagh', '-', proper, loc ). +noun( 'arnhem', '-', proper, loc ). +noun( 'arnold', '-', proper, per ). +noun( 'art', '-', proper, per ). +noun( 'arthur', '-', proper, per ). +noun( 'artie', '-', proper, per ). +noun( 'aryan', 'aryans', count, _ ). +noun( 'ascot', '-', proper, loc ). +noun( 'ashbourne', '-', proper, loc ). +noun( 'ashby', '-', proper, loc ). +noun( 'ashby woulds', '-', proper, loc ). +noun( 'ashby de la zouch', '-', proper, loc ). +noun( 'ashford', '-', proper, loc ). +noun( 'ashington', '-', proper, loc ). +noun( 'ashton-in-makerfield', '-', proper, loc ). +noun( 'ashton-under-lyne', '-', proper, loc ). +noun( 'asian', 'asians', count, _ ). +noun( 'asiatic', 'asiatics', count, _ ). +noun( 'askern', '-', proper, loc ). +noun( 'aspull', '-', proper, loc ). +noun( 'aston', '-', proper, loc ). +noun( 'athenian', 'athenians', count, _ ). +noun( 'athens', '-', proper, loc ). +noun( 'atherstone', '-', proper, loc ). +noun( 'athlone', '-', proper, loc ). +noun( 'atlanta', '-', proper, loc ). +noun( 'atlantic', '-', proper, _ ). +noun( 'auckland', '-', proper, loc ). +noun( 'audley', '-', proper, loc ). +noun( 'audrey', '-', proper, per ). +noun( 'aug', '-', proper, _ ). +noun( 'augsburg', '-', proper, loc ). +noun( 'august', 'augusts', count, _ ). +noun( 'august', '-', proper, _ ). +noun( 'aussie', 'aussies', count, _ ). +noun( 'australia', '-', proper, loc ). +noun( 'australian', 'australians', count, _ ). +noun( 'austria', '-', proper, loc ). +noun( 'austrian', 'austrians', count, _ ). +noun( 'ave', '-', proper, _ ). +noun( 'aveley', '-', proper, loc ). +noun( 'avignon', '-', proper, loc ). +noun( 'avon', '-', proper, loc ). +noun( 'aycliffe', '-', proper, loc ). +noun( 'aylesbury', '-', proper, loc ). +noun( 'aylesford', '-', proper, loc ). +noun( 'ayr', '-', proper, loc ). +noun( 'b ed', '-', count, _ ). +noun( 'ba', '-', count, _ ). +noun( 'bbc', '-', count, _ ). +noun( 'bc', '-', proper, _ ). +noun( 'bma', '-', count, _ ). +noun( 'bmus', '-', count, _ ). +noun( 'bst', '-', proper, _ ). +noun( 'bsc', '-', count, _ ). +noun( 'bvm', '-', count, _ ). +noun( 'babs', '-', proper, per ). +noun( 'backworth', '-', proper, loc ). +noun( 'bacup', '-', proper, loc ). +noun( 'badajoz', '-', proper, loc ). +noun( 'badalona', '-', proper, loc ). +noun( 'baghdad', '-', proper, loc ). +noun( 'bahamas', '-', proper, loc ). +noun( 'bahamian', 'bahamians', count, _ ). +noun( 'bahasa', '-', mass, _ ). +noun( 'bahrain', '-', proper, loc ). +noun( 'bahraini', 'bahrainis', count, _ ). +noun( 'bailey', '-', proper, _ ). +noun( 'baku', '-', proper, loc ). +noun( 'baldock', '-', proper, loc ). +noun( 'baltimore', '-', proper, loc ). +noun( 'banbury', '-', proper, loc ). +noun( 'bandung', '-', proper, loc ). +noun( 'bangalore', '-', proper, loc ). +noun( 'bangkok', '-', proper, loc ). +noun( 'bangladesh', '-', proper, loc ). +noun( 'bangladeshi', 'bangladeshis', count, _ ). +noun( 'bangor', '-', proper, loc ). +noun( 'bannockburn', '-', proper, loc ). +noun( 'bantry', '-', proper, loc ). +noun( 'bantu', 'bantu', count, _ ). +noun( 'baptist', 'baptists', count, _ ). +noun( 'baracaldo', '-', proper, loc ). +noun( 'barbadian', 'barbadians', count, _ ). +noun( 'barbados', '-', proper, loc ). +noun( 'barbara', '-', proper, per ). +noun( 'barcelona', '-', proper, loc ). +noun( 'bargoed', '-', proper, loc ). +noun( 'bari', '-', proper, loc ). +noun( 'barking', '-', proper, loc ). +noun( 'barnard castle', '-', proper, loc ). +noun( 'barnet', '-', proper, loc ). +noun( 'barnoldswick', '-', proper, loc ). +noun( 'barnsley', '-', proper, loc ). +noun( 'barnstaple', '-', proper, loc ). +noun( 'barranquilla', '-', proper, loc ). +noun( 'barrhead', '-', proper, loc ). +noun( 'barrow-in-furness', '-', proper, loc ). +noun( 'barry', '-', proper, per ). +noun( 'bart', '-', proper, per ). +noun( 'bart', '-', proper, per ). +noun( 'bartholomew', '-', proper, per ). +noun( 'barton-upon-humber', '-', proper, loc ). +noun( 'basel', '-', proper, loc ). +noun( 'basil', '-', proper, per ). +noun( 'basildon', '-', proper, loc ). +noun( 'basingstoke', '-', proper, loc ). +noun( 'bass', '-', mass, _ ). +noun( 'bath', '-', proper, loc ). +noun( 'bath-chair', 'bath-chairs', count, _ ). +noun( 'bathgate', '-', proper, loc ). +noun( 'batley', '-', proper, loc ). +noun( 'beaconsfield', '-', proper, loc ). +noun( 'bearsden', '-', proper, loc ). +noun( 'beatrice', '-', proper, per ). +noun( 'beaujolais', '-', mass, _ ). +noun( 'beaumaris', '-', proper, loc ). +noun( 'bebington', '-', proper, loc ). +noun( 'beccles', '-', proper, loc ). +noun( 'beddau', '-', proper, loc ). +noun( 'bedford', '-', proper, loc ). +noun( 'bedfordshire', '-', proper, loc ). +noun( 'bedlington', '-', proper, loc ). +noun( 'bedouin', 'bedouin', count, _ ). +noun( 'beduin', 'beduin', count, _ ). +noun( 'bedwas', '-', proper, loc ). +noun( 'beirut', '-', proper, loc ). +noun( 'beith', '-', proper, loc ). +noun( 'belem', '-', proper, loc ). +noun( 'belfast', '-', proper, loc ). +noun( 'belgian', 'belgians', count, _ ). +noun( 'belgium', '-', proper, loc ). +noun( 'belgrade', '-', proper, loc ). +noun( 'belinda', '-', proper, per ). +noun( 'bella', '-', proper, per ). +noun( 'belle', '-', proper, per ). +noun( 'bellshill', '-', proper, loc ). +noun( 'belo horizonte', '-', proper, loc ). +noun( 'belper', '-', proper, loc ). +noun( 'ben', '-', proper, per ). +noun( 'benedictine', 'benedictines', both, _ ). +noun( 'bengali', 'bengalis', both, _ ). +noun( 'benin', '-', proper, loc ). +noun( 'beninese', 'beninese', count, _ ). +noun( 'benjamin', '-', proper, per ). +noun( 'benny', '-', proper, per ). +noun( 'benzedrine', 'benzedrines', count, _ ). +noun( 'beograd', '-', proper, loc ). +noun( 'bergamo', '-', proper, loc ). +noun( 'bergen', '-', proper, loc ). +noun( 'berkhamsted', '-', proper, loc ). +noun( 'berkshire', '-', proper, loc ). +noun( 'berlin', '-', proper, loc ). +noun( 'bermuda', '-', proper, loc ). +noun( 'bermudan', 'bermudans', count, _ ). +noun( 'bern', '-', proper, loc ). +noun( 'bernard', '-', proper, per ). +noun( 'bernie', '-', proper, per ). +noun( 'bert', '-', proper, per ). +noun( 'bertha', '-', proper, per ). +noun( 'bertie', '-', proper, per ). +noun( 'berwick-upon-tweed', '-', proper, loc ). +noun( 'beryl', '-', proper, per ). +noun( 'bess', '-', proper, per ). +noun( 'bessie', '-', proper, per ). +noun( 'bethune', '-', proper, loc ). +noun( 'betsy', '-', proper, per ). +noun( 'betty', '-', proper, per ). +noun( 'beverley', '-', proper, loc ). +noun( 'bewdley', '-', proper, loc ). +noun( 'bexhill', '-', proper, loc ). +noun( 'bexley', '-', proper, loc ). +noun( 'bhutan', '-', proper, loc ). +noun( 'bhutani', 'bhutanis', count, _ ). +noun( 'bible', 'bibles', count, _ ). +noun( 'bicester', '-', proper, loc ). +noun( 'biddulph', '-', proper, loc ). +noun( 'bideford', '-', proper, loc ). +noun( 'bielefeld', '-', proper, loc ). +noun( 'biggleswade', '-', proper, loc ). +noun( 'bilbao', '-', proper, loc ). +noun( 'bill', '-', proper, per ). +noun( 'billericay', '-', proper, loc ). +noun( 'billington', '-', proper, loc ). +noun( 'billy', '-', proper, per ). +noun( 'bingley', '-', proper, loc ). +noun( 'birkenhead', '-', proper, loc ). +noun( 'birstall', '-', proper, loc ). +noun( 'birtley', '-', proper, loc ). +noun( 'bishop auckland', '-', proper, loc ). +noun( 'bishop\'s cleeve', '-', proper, loc ). +noun( 'bishop\'s stortford', '-', proper, loc ). +noun( 'bishopbriggs', '-', proper, loc ). +noun( 'blackburn', '-', proper, loc ). +noun( 'blackhall', '-', proper, loc ). +noun( 'blackpool', '-', proper, loc ). +noun( 'blackshirt', 'blackshirts', count, _ ). +noun( 'blackwood', '-', proper, loc ). +noun( 'blaenau-ffestiniog', '-', proper, loc ). +noun( 'blaenavon', '-', proper, loc ). +noun( 'blaengwrach', '-', proper, loc ). +noun( 'blaina', '-', proper, loc ). +noun( 'blairgowrie', '-', proper, loc ). +noun( 'blantyre', '-', proper, loc ). +noun( 'bldg', '-', proper, _ ). +noun( 'bldgs', '-', proper, _ ). +noun( 'bletchley', '-', proper, loc ). +noun( 'blidworth', '-', proper, loc ). +noun( 'blighty', '-', count, _ ). +noun( 'blvd', '-', count, _ ). +noun( 'blyth', '-', proper, loc ). +noun( 'bo\'ness', '-', proper, loc ). +noun( 'bob', '-', proper, per ). +noun( 'bobby', '-', proper, per ). +noun( 'bochum', '-', proper, loc ). +noun( 'bodmin', '-', proper, loc ). +noun( 'boer', 'boers', count, _ ). +noun( 'bognor', '-', proper, loc ). +noun( 'bognor regis', '-', proper, loc ). +noun( 'bogota', '-', proper, loc ). +noun( 'boldon', '-', proper, loc ). +noun( 'bolivia', '-', proper, loc ). +noun( 'bolivian', 'bolivians', count, _ ). +noun( 'bollington', '-', proper, loc ). +noun( 'bologna', '-', proper, loc ). +noun( 'bolshevik', 'bolsheviks', count, _ ). +noun( 'bolsover', '-', proper, loc ). +noun( 'bolton', '-', proper, loc ). +noun( 'bolton-le-sands', '-', proper, loc ). +noun( 'bolzano', '-', proper, loc ). +noun( 'bombay', '-', proper, loc ). +noun( 'bonn', '-', proper, loc ). +noun( 'bonnybridge', '-', proper, loc ). +noun( 'bonnyrigg', '-', proper, loc ). +noun( 'bootle', '-', proper, loc ). +noun( 'bordeaux', '-', mass, _ ). +noun( 'bordeaux', '-', proper, loc ). +noun( 'borders', '-', proper, loc ). +noun( 'bordon', '-', proper, loc ). +noun( 'boris', '-', proper, per ). +noun( 'boston', '-', proper, loc ). +noun( 'botswana', '-', proper, loc ). +noun( 'bottrop', '-', proper, loc ). +noun( 'bourne', '-', proper, loc ). +noun( 'bournemouth', '-', proper, loc ). +noun( 'bowburn', '-', proper, loc ). +noun( 'boxing day', 'boxing days', count, _ ). +noun( 'boxing day', '-', proper, _ ). +noun( 'bracknell', '-', proper, loc ). +noun( 'bradford', '-', proper, loc ). +noun( 'bradford-on-avon', '-', proper, loc ). +noun( 'brahmin', 'brahmins', count, _ ). +noun( 'braintree', '-', proper, loc ). +noun( 'branderburgh', '-', proper, loc ). +noun( 'brasilia', '-', proper, loc ). +noun( 'bratislava', '-', proper, loc ). +noun( 'braunschweig', '-', proper, loc ). +noun( 'braunton', '-', proper, loc ). +noun( 'brazil', '-', proper, loc ). +noun( 'brazilian', 'brazilians', count, _ ). +noun( 'breaston', '-', proper, loc ). +noun( 'brecknock', '-', proper, loc ). +noun( 'breda', '-', proper, loc ). +noun( 'breedsall', '-', proper, loc ). +noun( 'bremen', '-', proper, loc ). +noun( 'bremerhaven', '-', proper, loc ). +noun( 'bren', 'brens', count, _ ). +noun( 'bren-gun', 'bren-guns', count, _ ). +noun( 'brenda', '-', proper, per ). +noun( 'brent', '-', proper, loc ). +noun( 'brentwood', '-', proper, loc ). +noun( 'brescia', '-', proper, loc ). +noun( 'brest', '-', proper, loc ). +noun( 'brian', '-', proper, per ). +noun( 'bricket wood', '-', proper, loc ). +noun( 'bridgend', '-', proper, loc ). +noun( 'bridget', '-', proper, per ). +noun( 'bridgnorth', '-', proper, loc ). +noun( 'bridgwater', '-', proper, loc ). +noun( 'bridlington', '-', proper, loc ). +noun( 'bridport', '-', proper, loc ). +noun( 'brig', '-', proper, per ). +noun( 'brigadier', 'brigadiers', count, _ ). +noun( 'brighouse', '-', proper, loc ). +noun( 'brightlingsea', '-', proper, loc ). +noun( 'brighton', '-', proper, loc ). +noun( 'brisbane', '-', proper, loc ). +noun( 'bristol', '-', proper, loc ). +noun( 'brit', 'brits', count, _ ). +noun( 'britain', '-', proper, loc ). +noun( 'britisher', 'britishers', count, _ ). +noun( 'briton', 'britons', count, _ ). +noun( 'brixham', '-', proper, loc ). +noun( 'brno', '-', proper, loc ). +noun( 'bromley', '-', proper, loc ). +noun( 'bromsgrove', '-', proper, loc ). +noun( 'bros', '-', proper, _ ). +noun( 'broughton', '-', proper, loc ). +noun( 'broxburn', '-', proper, loc ). +noun( 'bruce', '-', proper, per ). +noun( 'bruges', '-', proper, loc ). +noun( 'brunei', '-', proper, loc ). +noun( 'bruneian', 'bruneians', count, _ ). +noun( 'brunswick', '-', proper, loc ). +noun( 'brussels', '-', proper, loc ). +noun( 'bryan', '-', proper, per ). +noun( 'bt', '-', proper, per ). +noun( 'bucarest', '-', proper, loc ). +noun( 'buckhaven', '-', proper, loc ). +noun( 'buckie', '-', proper, loc ). +noun( 'buckingham', '-', proper, loc ). +noun( 'buckinghamshire', '-', proper, loc ). +noun( 'buckley', '-', proper, loc ). +noun( 'bucksburn', '-', proper, loc ). +noun( 'budapest', '-', proper, loc ). +noun( 'buddhism', '-', mass, _ ). +noun( 'buddhist', 'buddhists', count, _ ). +noun( 'buenos aires', '-', proper, loc ). +noun( 'buffalo', '-', proper, loc ). +noun( 'bulgaria', '-', proper, loc ). +noun( 'bulgarian', 'bulgarians', count, _ ). +noun( 'bulkington', '-', proper, loc ). +noun( 'bunsen', 'bunsens', count, _ ). +noun( 'burberry', 'burberries', count, _ ). +noun( 'burgess', '-', proper, loc ). +noun( 'burgos', '-', proper, loc ). +noun( 'burgundy', '-', mass, _ ). +noun( 'burley', '-', proper, loc ). +noun( 'burma', '-', proper, loc ). +noun( 'burmese', 'burmese', both, _ ). +noun( 'burnham-on-sea', '-', proper, loc ). +noun( 'burnley', '-', proper, loc ). +noun( 'burntisland', '-', proper, loc ). +noun( 'burntwood', '-', proper, loc ). +noun( 'burry port', '-', proper, loc ). +noun( 'burscough', '-', proper, loc ). +noun( 'burton-upon-trent', '-', proper, loc ). +noun( 'burundi', '-', proper, loc ). +noun( 'burundian', 'burundians', count, _ ). +noun( 'bury', '-', proper, loc ). +noun( 'bury st. edmunds', '-', proper, loc ). +noun( 'bushman', 'bushmen', count, _ ). +noun( 'buxton', '-', proper, loc ). +noun( 'c of e', '-', count, _ ). +noun( 'c-in-c', '-', proper, per ). +noun( 'cbi', '-', count, _ ). +noun( 'cd', '-', count, _ ). +noun( 'cia', '-', count, _ ). +noun( 'cid', '-', count, _ ). +noun( 'co', '-', count, _ ). +noun( 'cod', '-', proper, _ ). +noun( 'cadiz', '-', proper, loc ). +noun( 'caen', '-', proper, loc ). +noun( 'caerleon', '-', proper, loc ). +noun( 'caernarfon', '-', proper, loc ). +noun( 'caerphilly', '-', proper, loc ). +noun( 'caesar', 'caesars', count, _ ). +noun( 'cagliari', '-', proper, loc ). +noun( 'cairo', '-', proper, loc ). +noun( 'calcutta', '-', proper, loc ). +noun( 'caldicot', '-', proper, loc ). +noun( 'cali', '-', proper, loc ). +noun( 'california', '-', proper, loc ). +noun( 'californian', 'californians', count, _ ). +noun( 'calne', '-', proper, loc ). +noun( 'calor', '-', proper, _ ). +noun( 'calvary', 'calvaries', count, _ ). +noun( 'calverton', '-', proper, loc ). +noun( 'calvinism', '-', mass, _ ). +noun( 'calvinist', 'calvinists', count, _ ). +noun( 'cambodia', '-', proper, loc ). +noun( 'cambodian', 'cambodians', count, _ ). +noun( 'cambourne', '-', proper, loc ). +noun( 'cambridge', '-', proper, loc ). +noun( 'cambridgeshire', '-', proper, loc ). +noun( 'cambuslang', '-', proper, loc ). +noun( 'camden', '-', proper, loc ). +noun( 'camembert', 'camemberts', count, _ ). +noun( 'cameroon', '-', proper, loc ). +noun( 'cameroonian', 'cameroonians', count, _ ). +noun( 'campbeltown', '-', proper, loc ). +noun( 'canada', '-', proper, loc ). +noun( 'canadian', 'canadians', count, _ ). +noun( 'canberra', '-', proper, loc ). +noun( 'cancer', '-', proper, _ ). +noun( 'cannes', '-', proper, loc ). +noun( 'cannock', '-', proper, loc ). +noun( 'cantab', '-', proper, _ ). +noun( 'canterbury', '-', proper, loc ). +noun( 'canton', '-', proper, loc ). +noun( 'canuck', 'canucks', count, _ ). +noun( 'canvey', '-', proper, loc ). +noun( 'canvey island', '-', proper, loc ). +noun( 'cape town', '-', proper, loc ). +noun( 'capitol', 'capitols', count, _ ). +noun( 'capricorn', '-', proper, _ ). +noun( 'capt', '-', proper, per ). +noun( 'caracas', '-', proper, loc ). +noun( 'cardenden', '-', proper, loc ). +noun( 'cardiff', '-', proper, loc ). +noun( 'cardigan', '-', proper, loc ). +noun( 'carl', '-', proper, per ). +noun( 'carlisle', '-', proper, loc ). +noun( 'carlow', '-', proper, loc ). +noun( 'carluke', '-', proper, loc ). +noun( 'carmarthen', '-', proper, loc ). +noun( 'carmelite', 'carmelites', count, _ ). +noun( 'carnforth', '-', proper, loc ). +noun( 'carnoustie', '-', proper, loc ). +noun( 'carol', '-', proper, per ). +noun( 'carole', '-', proper, per ). +noun( 'carolina', '-', proper, loc ). +noun( 'caroline', '-', proper, per ). +noun( 'carolyn', '-', proper, per ). +noun( 'carrie', '-', proper, per ). +noun( 'carron', '-', proper, loc ). +noun( 'cartagena', '-', proper, loc ). +noun( 'casablanca', '-', proper, loc ). +noun( 'castleford', '-', proper, loc ). +noun( 'catalan', '-', mass, _ ). +noun( 'catania', '-', proper, loc ). +noun( 'cath', '-', proper, per ). +noun( 'catherine', '-', proper, per ). +noun( 'catholic', 'catholics', count, _ ). +noun( 'catholicism', '-', mass, _ ). +noun( 'cathy', '-', proper, per ). +noun( 'caucasian', 'caucasians', count, _ ). +noun( 'cavan', '-', proper, loc ). +noun( 'cdr', '-', proper, per ). +noun( 'cdre', '-', proper, per ). +noun( 'cecil', '-', proper, per ). +noun( 'cecilia', '-', proper, per ). +noun( 'cecily', '-', proper, per ). +noun( 'cedric', '-', proper, per ). +noun( 'cefn-mawr', '-', proper, loc ). +noun( 'celia', '-', proper, per ). +noun( 'celt', 'celts', count, _ ). +noun( 'celtic', 'celtics', count, _ ). +noun( 'ceylon', '-', proper, loc ). +noun( 'chad', '-', proper, loc ). +noun( 'chadian', 'chadians', count, _ ). +noun( 'chalfont', '-', proper, loc ). +noun( 'chalfont st giles', '-', proper, loc ). +noun( 'chalfont st peter', '-', proper, loc ). +noun( 'changchun', '-', proper, loc ). +noun( 'changsha', '-', proper, loc ). +noun( 'chard', '-', proper, loc ). +noun( 'charles', '-', proper, per ). +noun( 'charleston', 'charlestons', count, _ ). +noun( 'charlie', '-', proper, per ). +noun( 'charlotte', '-', proper, per ). +noun( 'chartism', '-', mass, _ ). +noun( 'chartist', 'chartists', count, _ ). +noun( 'charybdis', '-', proper, _ ). +noun( 'chas', '-', proper, per ). +noun( 'chatham', '-', proper, loc ). +noun( 'cheadle', '-', proper, loc ). +noun( 'cheddar', '-', mass, _ ). +noun( 'chelmsford', '-', proper, loc ). +noun( 'chelsea', '-', proper, loc ). +noun( 'cheltenham', '-', proper, loc ). +noun( 'chelyabinsk', '-', proper, loc ). +noun( 'chengchow', '-', proper, loc ). +noun( 'chengtu', '-', proper, loc ). +noun( 'chepstow', '-', proper, loc ). +noun( 'chesham', '-', proper, loc ). +noun( 'cheshire', '-', proper, loc ). +noun( 'chester', '-', proper, loc ). +noun( 'chester-le-street', '-', proper, loc ). +noun( 'chesterfield', '-', proper, loc ). +noun( 'chianti', '-', mass, _ ). +noun( 'chicago', '-', proper, loc ). +noun( 'chichester', '-', proper, loc ). +noun( 'chile', '-', proper, loc ). +noun( 'chilean', 'chileans', count, _ ). +noun( 'china', '-', proper, loc ). +noun( 'chinchow', '-', proper, loc ). +noun( 'chinese', 'chinese', both, _ ). +noun( 'chippendale', 'chippendales', count, _ ). +noun( 'chippenham', '-', proper, loc ). +noun( 'chloe', '-', proper, per ). +noun( 'chopwell', '-', proper, loc ). +noun( 'chorley', '-', proper, loc ). +noun( 'chris', '-', proper, per ). +noun( 'chrissie', '-', proper, per ). +noun( 'chrissy', '-', proper, per ). +noun( 'christ', '-', proper, _ ). +noun( 'christchurch', '-', proper, loc ). +noun( 'christendom', 'christendoms', count, _ ). +noun( 'christian', 'christians', count, _ ). +noun( 'christian', '-', proper, per ). +noun( 'christianity', '-', mass, _ ). +noun( 'christina', '-', proper, per ). +noun( 'christine', '-', proper, per ). +noun( 'christmas', 'christmases', count, _ ). +noun( 'christmas', '-', proper, _ ). +noun( 'christmas-box', 'christmas-boxes', count, _ ). +noun( 'christmas-tree', 'christmas-trees', count, _ ). +noun( 'christmastide', 'christmastides', count, _ ). +noun( 'christmastime', 'christmastimes', count, _ ). +noun( 'christopher', '-', proper, per ). +noun( 'chungking', '-', proper, loc ). +noun( 'cincinnati', '-', proper, loc ). +noun( 'cinderella', 'cinderellas', count, _ ). +noun( 'cinderford', '-', proper, loc ). +noun( 'cirencester', '-', proper, loc ). +noun( 'civvy street', '-', proper, _ ). +noun( 'clackmannon', '-', proper, loc ). +noun( 'clacton', '-', proper, loc ). +noun( 'clare', '-', proper, per ). +noun( 'clarkston', '-', proper, loc ). +noun( 'clarrie', '-', proper, per ). +noun( 'classics', 'classics', mass, _ ). +noun( 'claud', '-', proper, per ). +noun( 'claude', '-', proper, per ). +noun( 'clay cross', '-', proper, loc ). +noun( 'cleator moor', '-', proper, loc ). +noun( 'cleethorpes', '-', proper, loc ). +noun( 'clem', '-', proper, per ). +noun( 'clement', '-', proper, per ). +noun( 'clermont-ferrand', '-', proper, loc ). +noun( 'clevedon', '-', proper, loc ). +noun( 'cleveland', '-', proper, loc ). +noun( 'cliff', '-', proper, per ). +noun( 'clifford', '-', proper, per ). +noun( 'clitheroe', '-', proper, loc ). +noun( 'clive', '-', proper, per ). +noun( 'clowne', '-', proper, loc ). +noun( 'clwyd', '-', proper, loc ). +noun( 'clydach', '-', proper, loc ). +noun( 'clydebank', '-', proper, loc ). +noun( 'co', '-', count, _ ). +noun( 'co-op', '-', count, _ ). +noun( 'coalville', '-', proper, loc ). +noun( 'coatbridge', '-', proper, loc ). +noun( 'cobham', '-', proper, loc ). +noun( 'coca-cola', 'coca-colas', both, _ ). +noun( 'cockermouth', '-', proper, loc ). +noun( 'codsall', '-', proper, loc ). +noun( 'coimbatore', '-', proper, loc ). +noun( 'col', '-', proper, per ). +noun( 'colchester', '-', proper, loc ). +noun( 'coleshill', '-', proper, loc ). +noun( 'colin', '-', proper, per ). +noun( 'coll', '-', proper, _ ). +noun( 'colne', '-', proper, loc ). +noun( 'cologne', '-', proper, loc ). +noun( 'colombia', '-', proper, loc ). +noun( 'colombian', 'colombians', count, _ ). +noun( 'colombo', '-', proper, loc ). +noun( 'colorado', '-', proper, loc ). +noun( 'columbia', '-', proper, loc ). +noun( 'columbus', '-', proper, loc ). +noun( 'colwyn bay', '-', proper, loc ). +noun( 'confucian', 'confucians', count, _ ). +noun( 'congleton', '-', proper, loc ). +noun( 'congo', '-', proper, loc ). +noun( 'congolese', 'congolese', count, _ ). +noun( 'connah\'s quay', '-', proper, loc ). +noun( 'connaught', '-', proper, loc ). +noun( 'connecticut', '-', proper, loc ). +noun( 'connie', '-', proper, per ). +noun( 'cons', '-', proper, _ ). +noun( 'consett', '-', proper, loc ). +noun( 'constance', '-', proper, per ). +noun( 'conwy', '-', proper, loc ). +noun( 'cookham', '-', proper, loc ). +noun( 'copenhagen', '-', proper, loc ). +noun( 'coppull', '-', proper, loc ). +noun( 'copt', 'copts', count, _ ). +noun( 'coptic', 'coptics', count, _ ). +noun( 'corby', '-', proper, loc ). +noun( 'cordoba', '-', proper, loc ). +noun( 'corinthian', 'corinthians', count, _ ). +noun( 'cork', '-', proper, loc ). +noun( 'cornwall', '-', proper, loc ). +noun( 'corp', '-', proper, _ ). +noun( 'corps diplomatique', '-', count, _ ). +noun( 'corsham', '-', proper, loc ). +noun( 'corunna', '-', proper, loc ). +noun( 'cosenza', '-', proper, loc ). +noun( 'costa rica', '-', proper, loc ). +noun( 'costa rican', 'costa ricans', count, _ ). +noun( 'coventry', '-', proper, loc ). +noun( 'cowdenbeath', '-', proper, loc ). +noun( 'cowes', '-', proper, loc ). +noun( 'cpl', '-', proper, per ). +noun( 'cramlington', '-', proper, loc ). +noun( 'crawley', '-', proper, loc ). +noun( 'creole', 'creoles', both, _ ). +noun( 'cres', '-', proper, _ ). +noun( 'creswell', '-', proper, loc ). +noun( 'crewe', '-', proper, loc ). +noun( 'crieff', '-', proper, loc ). +noun( 'croesus', '-', proper, per ). +noun( 'cromer', '-', proper, loc ). +noun( 'crook', '-', proper, loc ). +noun( 'crosby', '-', proper, loc ). +noun( 'crowborough', '-', proper, loc ). +noun( 'crowthorne', '-', proper, loc ). +noun( 'croydon', '-', proper, loc ). +noun( 'cuba', '-', proper, loc ). +noun( 'cuban', 'cubans', count, _ ). +noun( 'cudworth', '-', proper, loc ). +noun( 'cuffley', '-', proper, loc ). +noun( 'culcheth', '-', proper, loc ). +noun( 'cumberland', '-', proper, loc ). +noun( 'cumbernauld', '-', proper, loc ). +noun( 'cumbria', '-', proper, loc ). +noun( 'cumnock', '-', proper, loc ). +noun( 'cupar', '-', proper, loc ). +noun( 'cupid', '-', proper, per ). +noun( 'curitiba', '-', proper, loc ). +noun( 'currie', '-', proper, loc ). +noun( 'cwmbran', '-', proper, loc ). +noun( 'cynthia', '-', proper, per ). +noun( 'cypriot', 'cypriots', count, _ ). +noun( 'cyprus', '-', proper, loc ). +noun( 'cyril', '-', proper, per ). +noun( 'czech', 'czechs', both, _ ). +noun( 'czechoslovak', 'czechoslovaks', count, _ ). +noun( 'czechoslovakia', '-', proper, loc ). +noun( 'czechoslovakian', 'czechoslovakians', count, _ ). +noun( 'd-day', '-', proper, _ ). +noun( 'ddt', '-', mass, _ ). +noun( 'des', '-', count, _ ). +noun( 'dg', '-', proper, per ). +noun( 'diy', '-', mass, _ ). +noun( 'dj', '-', count, _ ). +noun( '-', 'djs', count, _ ). +noun( 'dlitt', '-', count, _ ). +noun( 'dm', 'dm', count, _ ). +noun( 'dna', '-', mass, _ ). +noun( 'dphil', '-', count, _ ). +noun( 'dss', '-', count, _ ). +noun( 'dsc', '-', count, _ ). +noun( 'dti', '-', count, _ ). +noun( '-', 'dts', count, _ ). +noun( 'dacca', '-', proper, loc ). +noun( 'dail eireann', '-', count, _ ). +noun( 'daisy', '-', proper, per ). +noun( 'dakar', '-', proper, loc ). +noun( 'dakota', '-', proper, loc ). +noun( 'dalkeith', '-', proper, loc ). +noun( 'dallas', '-', proper, loc ). +noun( 'dalry', '-', proper, loc ). +noun( 'dalton', '-', proper, loc ). +noun( 'damascus', '-', proper, loc ). +noun( 'damocles', '-', proper, per ). +noun( 'dan', '-', proper, per ). +noun( 'dane', 'danes', count, _ ). +noun( 'daniel', 'daniels', count, _ ). +noun( 'daniel', '-', proper, per ). +noun( 'danish', '-', mass, _ ). +noun( 'danny', '-', proper, per ). +noun( 'daphne', '-', proper, per ). +noun( 'darby', '-', proper, per ). +noun( 'darenth', '-', proper, loc ). +noun( 'darfield', '-', proper, loc ). +noun( 'darkey', 'darkeys', count, _ ). +noun( 'darkie', 'darkies', count, _ ). +noun( 'darky', 'darkies', count, _ ). +noun( 'darlington', '-', proper, loc ). +noun( 'darmstadt', '-', proper, loc ). +noun( 'dartford', '-', proper, loc ). +noun( 'dartmouth', '-', proper, loc ). +noun( 'darwen', '-', proper, loc ). +noun( 'dave', '-', proper, per ). +noun( 'daventry', '-', proper, loc ). +noun( 'davey', '-', proper, per ). +noun( 'david', '-', proper, per ). +noun( 'dawley', '-', proper, loc ). +noun( 'dawlish', '-', proper, loc ). +noun( 'dawn', '-', proper, per ). +noun( 'dayton', '-', proper, loc ). +noun( 'deal', '-', proper, loc ). +noun( 'dean', '-', proper, per ). +noun( 'debbie', '-', proper, per ). +noun( 'debby', '-', proper, per ). +noun( 'deborah', '-', proper, per ). +noun( 'dec', '-', proper, _ ). +noun( 'decalogue', 'decalogues', count, _ ). +noun( 'december', 'decembers', count, _ ). +noun( 'december', '-', proper, _ ). +noun( 'deirdre', '-', proper, per ). +noun( 'delaware', '-', proper, loc ). +noun( 'delhi', '-', proper, loc ). +noun( 'denain', '-', proper, loc ). +noun( 'denbigh', '-', proper, loc ). +noun( 'denis', '-', proper, per ). +noun( 'denise', '-', proper, per ). +noun( 'denmark', '-', proper, loc ). +noun( 'dennis', '-', proper, per ). +noun( 'denny', '-', proper, loc ). +noun( 'denver', '-', proper, loc ). +noun( 'dept', '-', proper, _ ). +noun( 'derby', '-', proper, loc ). +noun( 'derbyshire', '-', proper, loc ). +noun( 'dereham', '-', proper, loc ). +noun( 'derek', '-', proper, per ). +noun( 'des', '-', proper, per ). +noun( 'desmond', '-', proper, per ). +noun( 'dessau', '-', proper, loc ). +noun( 'detroit', '-', proper, loc ). +noun( 'deutschmark', 'deutschmarks', count, _ ). +noun( 'devizes', '-', proper, loc ). +noun( 'devon', '-', proper, loc ). +noun( 'dewsbury', '-', proper, loc ). +noun( 'di', '-', proper, per ). +noun( 'diana', '-', proper, per ). +noun( 'diaspora', 'diasporas', count, _ ). +noun( 'dick', '-', proper, per ). +noun( 'dicky', '-', proper, per ). +noun( 'dictaphone', 'dictaphones', count, _ ). +noun( 'didcot', '-', proper, loc ). +noun( 'dijon', '-', proper, loc ). +noun( 'dingle', '-', proper, loc ). +noun( 'dinnington', '-', proper, loc ). +noun( 'dip', '-', count, _ ). +noun( 'dip ed', '-', count, _ ). +noun( 'dir', '-', count, _ ). +noun( 'dives', '-', proper, per ). +noun( 'djibouti', '-', proper, loc ). +noun( 'djiboutian', 'djiboutians', count, _ ). +noun( 'dnepropetrovsk', '-', proper, loc ). +noun( 'doe', '-', count, _ ). +noun( 'dolly', '-', proper, per ). +noun( 'domesday', '-', proper, _ ). +noun( 'dominic', '-', proper, per ). +noun( 'dominica', '-', proper, loc ). +noun( 'dominican', 'dominicans', count, _ ). +noun( 'don', '-', proper, per ). +noun( 'donald', '-', proper, per ). +noun( 'doncaster', '-', proper, loc ). +noun( 'donegal', '-', proper, loc ). +noun( 'donetsk', '-', proper, loc ). +noun( 'doomsday', '-', proper, _ ). +noun( 'dora', '-', proper, per ). +noun( 'dorchester', '-', proper, loc ). +noun( 'dordrecht', '-', proper, loc ). +noun( 'doreen', '-', proper, per ). +noun( 'doris', '-', proper, per ). +noun( 'dorking', '-', proper, loc ). +noun( 'dorothy', '-', proper, per ). +noun( 'dorset', '-', proper, loc ). +noun( 'dortmund', '-', proper, loc ). +noun( 'douai', '-', proper, loc ). +noun( 'doug', '-', proper, per ). +noun( 'douglas', '-', proper, per ). +noun( 'dover', '-', proper, loc ). +noun( 'down', '-', proper, loc ). +noun( 'downing street', '-', proper, _ ). +noun( 'dr', '-', proper, per ). +noun( 'drayton', '-', proper, loc ). +noun( 'dresden', '-', proper, loc ). +noun( 'driffield', '-', proper, loc ). +noun( 'drogheda', '-', proper, loc ). +noun( 'droitwich', '-', proper, loc ). +noun( 'dronfield', '-', proper, loc ). +noun( 'druid', 'druids', count, _ ). +noun( 'dublin', '-', proper, loc ). +noun( 'dubliner', 'dubliners', count, _ ). +noun( 'duce', '-', count, _ ). +noun( 'dudley', '-', proper, loc ). +noun( 'duisburg', '-', proper, loc ). +noun( 'dukinfield', '-', proper, loc ). +noun( 'dumbarton', '-', proper, loc ). +noun( 'dumfries', '-', proper, loc ). +noun( 'dun laoghaire', '-', proper, loc ). +noun( 'duncan', '-', proper, per ). +noun( 'dundalk', '-', proper, loc ). +noun( 'dundee', '-', proper, loc ). +noun( 'dunfermline', '-', proper, loc ). +noun( 'dunkirk', '-', proper, loc ). +noun( 'dunoon', '-', proper, loc ). +noun( 'dunstable', '-', proper, loc ). +noun( 'durban', '-', proper, loc ). +noun( 'durham', '-', proper, loc ). +noun( 'durrington', '-', proper, loc ). +noun( 'dursley', '-', proper, loc ). +noun( 'dusseldorf', '-', proper, loc ). +noun( 'dutch', '-', mass, _ ). +noun( 'dutchman', 'dutchmen', count, _ ). +noun( 'dyfed', '-', proper, loc ). +noun( 'ec', '-', count, _ ). +noun( 'edp', '-', mass, _ ). +noun( 'eec', '-', count, _ ). +noun( 'eeg', '-', count, _ ). +noun( 'efta', '-', count, _ ). +noun( 'esp', '-', mass, _ ). +noun( 'eaglescliffe', '-', proper, loc ). +noun( 'ealing', '-', proper, loc ). +noun( 'earl shilton', '-', proper, loc ). +noun( 'easington', '-', proper, loc ). +noun( 'east dereham', '-', proper, loc ). +noun( 'east grinstead', '-', proper, loc ). +noun( 'east kilbride', '-', proper, loc ). +noun( 'east retford', '-', proper, loc ). +noun( 'eastbourne', '-', proper, loc ). +noun( 'easter', 'easters', count, _ ). +noun( 'easter', '-', proper, _ ). +noun( 'eastleigh', '-', proper, loc ). +noun( 'ebbw vale', '-', proper, loc ). +noun( 'eccles', '-', proper, loc ). +noun( 'ecuador', '-', proper, loc ). +noun( 'ecuadorian', 'ecuadorians', count, _ ). +noun( 'ed', '-', proper, per ). +noun( 'eddie', '-', proper, per ). +noun( 'eddy', '-', proper, per ). +noun( 'eden', '-', proper, _ ). +noun( 'edenbridge', '-', proper, loc ). +noun( 'edgar', '-', proper, per ). +noun( 'edinburgh', '-', proper, loc ). +noun( 'edith', '-', proper, per ). +noun( 'edmund', '-', proper, per ). +noun( 'edward', '-', proper, per ). +noun( 'edwardian', 'edwardians', count, _ ). +noun( 'egremont', '-', proper, loc ). +noun( 'egypt', '-', proper, loc ). +noun( 'egyptian', 'egyptians', count, _ ). +noun( 'eiche', '-', proper, loc ). +noun( 'eileen', '-', proper, per ). +noun( 'eindhoven', '-', proper, loc ). +noun( 'el dorado', '-', count, _ ). +noun( 'el salvador', '-', proper, loc ). +noun( 'elaine', '-', proper, per ). +noun( 'elastoplast', '-', mass, _ ). +noun( 'elderslie', '-', proper, loc ). +noun( 'eleanor', '-', proper, per ). +noun( 'elgin', '-', proper, loc ). +noun( 'eliza', '-', proper, per ). +noun( 'elizabeth', '-', proper, per ). +noun( 'elizabethan', 'elizabethans', count, _ ). +noun( 'elland', '-', proper, loc ). +noun( 'ellen', '-', proper, per ). +noun( 'ellesmere', '-', proper, loc ). +noun( 'ellesmere port', '-', proper, loc ). +noun( 'ellie', '-', proper, per ). +noun( 'elloughton', '-', proper, loc ). +noun( 'elsie', '-', proper, per ). +noun( 'elstree', '-', proper, loc ). +noun( 'ely', '-', proper, loc ). +noun( 'elysium', '-', proper, _ ). +noun( 'emily', '-', proper, per ). +noun( 'emma', '-', proper, per ). +noun( 'emsworth', '-', proper, loc ). +noun( 'enfield', '-', proper, loc ). +noun( 'england', '-', proper, loc ). +noun( 'english', '-', mass, _ ). +noun( 'englishman', 'englishmen', count, _ ). +noun( 'englishwoman', 'englishwomen', count, _ ). +noun( 'enoch', '-', proper, per ). +noun( 'enschede', '-', proper, loc ). +noun( 'epiphany', '-', proper, _ ). +noun( 'epping', '-', proper, loc ). +noun( 'epsom', '-', proper, loc ). +noun( 'erfurt', '-', proper, loc ). +noun( 'eric', '-', proper, per ). +noun( 'erica', '-', proper, per ). +noun( 'erin', '-', proper, loc ). +noun( 'eritrea', '-', proper, loc ). +noun( 'eritrean', 'eritreans', count, _ ). +noun( 'erlangen', '-', proper, loc ). +noun( 'ernest', '-', proper, per ). +noun( 'ernie', '-', proper, per ). +noun( 'erse', '-', mass, _ ). +noun( 'esfahan', '-', proper, loc ). +noun( 'eskimo', 'eskimos', count, _ ). +noun( 'esperanto', '-', mass, _ ). +noun( 'esq', '-', proper, per ). +noun( 'esquire', 'esquires', count, _ ). +noun( 'essen', '-', proper, loc ). +noun( 'essex', '-', proper, loc ). +noun( 'esther', '-', proper, per ). +noun( 'ethel', '-', proper, per ). +noun( 'ethiopia', '-', proper, loc ). +noun( 'ethiopian', 'ethiopians', count, _ ). +noun( 'eucharist', 'eucharists', count, _ ). +noun( 'eugene', '-', proper, per ). +noun( 'eunice', '-', proper, per ). +noun( 'eurasia', '-', proper, loc ). +noun( 'eurasian', 'eurasians', count, _ ). +noun( 'eurodollar', 'eurodollars', count, _ ). +noun( 'europe', '-', proper, loc ). +noun( 'european', 'europeans', count, _ ). +noun( 'eurovision', '-', proper, _ ). +noun( 'eva', '-', proper, per ). +noun( 'eve', '-', proper, per ). +noun( 'evelyn', '-', proper, per ). +noun( 'evesham', '-', proper, loc ). +noun( 'ewell', '-', proper, loc ). +noun( 'excellency', 'excellencies', count, _ ). +noun( 'exeter', '-', proper, loc ). +noun( 'exmouth', '-', proper, loc ). +noun( 'fa', '-', count, _ ). +noun( 'fao', '-', count, _ ). +noun( 'fbi', '-', count, _ ). +noun( 'fm', '-', mass, _ ). +noun( 'fo', '-', count, _ ). +noun( 'frs', '-', count, _ ). +noun( 'fabian', 'fabians', count, _ ). +noun( 'falkirk', '-', proper, loc ). +noun( 'falmouth', '-', proper, loc ). +noun( 'fanny', '-', proper, per ). +noun( 'farnham', '-', proper, loc ). +noun( 'farnworth', '-', proper, loc ). +noun( 'farsi', '-', mass, _ ). +noun( 'fauldhouse', '-', proper, loc ). +noun( 'faversham', '-', proper, loc ). +noun( 'fawley', '-', proper, loc ). +noun( 'featherstone', '-', proper, loc ). +noun( 'feb', '-', proper, _ ). +noun( 'february', 'februaries', count, _ ). +noun( 'february', '-', proper, _ ). +noun( 'fed', '-', count, _ ). +noun( 'felicity', '-', proper, per ). +noun( 'felix', '-', proper, per ). +noun( 'felixstowe', '-', proper, loc ). +noun( 'fermanagh', '-', proper, loc ). +noun( 'ferrara', '-', proper, loc ). +noun( 'ferryhill', '-', proper, loc ). +noun( 'fife', '-', proper, loc ). +noun( 'fiji', '-', proper, loc ). +noun( 'fijian', 'fijians', count, _ ). +noun( 'filipino', 'filipinos', count, _ ). +noun( 'finland', '-', proper, loc ). +noun( 'finn', 'finns', count, _ ). +noun( 'finnish', '-', mass, _ ). +noun( 'fiona', '-', proper, per ). +noun( 'firenze', '-', proper, loc ). +noun( 'fleet', '-', proper, loc ). +noun( 'fleet street', '-', proper, _ ). +noun( 'fleetwood', '-', proper, loc ). +noun( 'flemish', '-', mass, _ ). +noun( 'flint', '-', proper, loc ). +noun( 'flora', '-', proper, per ). +noun( 'florence', '-', proper, per ). +noun( 'florida', '-', proper, loc ). +noun( 'florrie', '-', proper, per ). +noun( 'foggia', '-', proper, loc ). +noun( 'folkestone', '-', proper, loc ). +noun( 'foochow', '-', proper, loc ). +noun( 'forfar', '-', proper, loc ). +noun( 'forli', '-', proper, loc ). +noun( 'formby', '-', proper, loc ). +noun( 'formica', '-', mass, _ ). +noun( 'formosa', '-', proper, loc ). +noun( 'fort lauderdale', '-', proper, loc ). +noun( 'fort william', '-', proper, loc ). +noun( 'fort worth', '-', proper, loc ). +noun( 'fortaleza', '-', proper, loc ). +noun( 'fowey', '-', proper, loc ). +noun( 'fr', '-', proper, per ). +noun( 'fr\"aulein', 'fr\"auleins', count, _ ). +noun( 'frampton cotterell', '-', proper, loc ). +noun( 'fran', '-', proper, per ). +noun( 'france', '-', proper, loc ). +noun( 'frances', '-', proper, per ). +noun( 'francis', '-', proper, per ). +noun( 'franciscan', 'franciscans', count, _ ). +noun( 'frank', 'franks', count, _ ). +noun( 'frank', '-', proper, per ). +noun( 'frankfurt', '-', proper, loc ). +noun( 'frankie', '-', proper, per ). +noun( 'fraserburgh', '-', proper, loc ). +noun( 'frau', 'frauen', count, _ ). +noun( 'freckleton', '-', proper, loc ). +noun( 'fred', '-', proper, per ). +noun( 'freda', '-', proper, per ). +noun( 'freddie', '-', proper, per ). +noun( 'freddy', '-', proper, per ). +noun( 'frederick', '-', proper, per ). +noun( 'frederiksberg', '-', proper, loc ). +noun( 'freemason', 'freemasons', count, _ ). +noun( 'freemasonry', '-', mass, _ ). +noun( 'freiburg', '-', proper, loc ). +noun( 'french', '-', mass, _ ). +noun( 'frenchman', 'frenchmen', count, _ ). +noun( 'frenchwoman', 'frenchwomen', count, _ ). +noun( 'freshwater', '-', proper, loc ). +noun( 'fri', '-', proper, _ ). +noun( 'friday', 'fridays', count, _ ). +noun( 'friday', '-', proper, _ ). +noun( 'frinton', '-', proper, loc ). +noun( 'frodsham', '-', proper, loc ). +noun( 'frome', '-', proper, loc ). +noun( 'furth', '-', proper, loc ). +noun( 'fushun', '-', proper, loc ). +noun( 'g-man', 'g-men', count, _ ). +noun( 'gatt', '-', count, _ ). +noun( 'gb', '-', proper, _ ). +noun( 'gcse', '-', count, _ ). +noun( '-', 'gcses', count, _ ). +noun( 'ghq', '-', proper, _ ). +noun( 'gi', '-', count, _ ). +noun( '-', 'gis', count, _ ). +noun( 'gmt', '-', proper, _ ). +noun( 'gnp', '-', count, _ ). +noun( 'gp', '-', count, _ ). +noun( '-', 'gp\'s', count, _ ). +noun( 'gabon', '-', proper, loc ). +noun( 'gabonese', 'gabonese', count, _ ). +noun( 'gael', 'gaels', count, _ ). +noun( 'gaelic', 'gaelics', count, _ ). +noun( 'gainsborough', 'gainsboroughs', count, _ ). +noun( 'gainsborough', '-', proper, loc ). +noun( 'galashiels', '-', proper, loc ). +noun( 'galloway', '-', proper, loc ). +noun( 'gallup', '-', proper, _ ). +noun( 'galway', '-', proper, loc ). +noun( 'gambia', '-', proper, loc ). +noun( 'gambian', 'gambians', count, _ ). +noun( 'gareth', '-', proper, per ). +noun( 'garforth', '-', proper, loc ). +noun( 'garrowhill', '-', proper, loc ). +noun( 'gary', '-', proper, per ). +noun( 'gateshead', '-', proper, loc ). +noun( 'gaul', 'gauls', count, _ ). +noun( 'gavin', '-', proper, per ). +noun( 'gdansk', '-', proper, loc ). +noun( 'gdn', '-', proper, _ ). +noun( 'gdns', '-', proper, _ ). +noun( 'geiger', 'geigers', count, _ ). +noun( 'gelligaer', '-', proper, loc ). +noun( 'gelsenkirchen', '-', proper, loc ). +noun( 'gemini', '-', proper, _ ). +noun( 'gen', '-', proper, per ). +noun( 'gene', '-', proper, per ). +noun( 'geneva', '-', proper, loc ). +noun( 'genoa', '-', proper, loc ). +noun( 'genova', '-', proper, loc ). +noun( 'geoff', '-', proper, per ). +noun( 'geoffrey', '-', proper, per ). +noun( 'george', '-', proper, per ). +noun( 'georgia', '-', proper, loc ). +noun( 'georgian', 'georgians', count, _ ). +noun( 'georgie', '-', proper, per ). +noun( 'gerald', '-', proper, per ). +noun( 'geraldine', '-', proper, per ). +noun( 'gerard', '-', proper, per ). +noun( 'german', 'germans', both, _ ). +noun( 'germany', '-', proper, loc ). +noun( 'gerry', '-', proper, per ). +noun( 'gertie', '-', proper, per ). +noun( 'gertrude', '-', proper, per ). +noun( 'gestapo', 'gestapos', count, _ ). +noun( 'ghana', '-', proper, loc ). +noun( 'ghanaian', 'ghanaians', count, _ ). +noun( 'ghent', '-', proper, loc ). +noun( 'gibraltar', '-', proper, loc ). +noun( 'gibraltarian', 'gibraltarians', count, _ ). +noun( 'giffnock', '-', proper, loc ). +noun( 'gilbert', '-', proper, per ). +noun( 'giles', '-', proper, per ). +noun( 'gilfach goch', '-', proper, loc ). +noun( 'gill', '-', proper, per ). +noun( 'gillian', '-', proper, per ). +noun( 'gillingham', '-', proper, loc ). +noun( 'gina', '-', proper, per ). +noun( 'girvan', '-', proper, loc ). +noun( 'gladys', '-', proper, per ). +noun( 'glamorgan', '-', proper, loc ). +noun( 'glasgow', '-', proper, loc ). +noun( 'glastonbury', '-', proper, loc ). +noun( 'glaswegian', 'glaswegians', count, _ ). +noun( 'glen', '-', proper, per ). +noun( 'glengarry', 'glengarries', count, _ ). +noun( 'glenrothes', '-', proper, loc ). +noun( 'gloria', '-', proper, per ). +noun( 'glossop', '-', proper, loc ). +noun( 'gloucester', '-', proper, loc ). +noun( 'gloucestershire', '-', proper, loc ). +noun( 'glusburn', '-', proper, loc ). +noun( 'god', '-', proper, _ ). +noun( 'godalming', '-', proper, loc ). +noun( 'godfrey', '-', proper, per ). +noun( 'godmanchester', '-', proper, loc ). +noun( 'goffs oak', '-', proper, loc ). +noun( 'golbourne', '-', proper, loc ). +noun( 'goliath', 'goliaths', count, _ ). +noun( 'goole', '-', proper, loc ). +noun( 'gordon', '-', proper, per ). +noun( 'gorgon', 'gorgons', count, _ ). +noun( 'gorgonzola', '-', mass, _ ). +noun( 'gorky', '-', proper, loc ). +noun( 'gorseinon', '-', proper, loc ). +noun( 'gosport', '-', proper, loc ). +noun( 'goteborg', '-', proper, loc ). +noun( 'goth', 'goths', count, _ ). +noun( 'gothenburg', '-', proper, loc ). +noun( 'gothic', '-', mass, _ ). +noun( 'gottingen', '-', proper, loc ). +noun( 'gourock', '-', proper, loc ). +noun( 'gov', '-', proper, per ). +noun( 'governor-general', 'governor-generals', count, _ ). +noun( 'grampian', '-', proper, loc ). +noun( 'granada', '-', proper, loc ). +noun( 'grand prix', 'grands prix', count, _ ). +noun( 'grangemouth', '-', proper, loc ). +noun( 'grantham', '-', proper, loc ). +noun( 'gravenhage', '-', proper, loc ). +noun( 'gravesend', '-', proper, loc ). +noun( 'graz', '-', proper, loc ). +noun( 'great harwood', '-', proper, loc ). +noun( 'great malvern', '-', proper, loc ). +noun( 'great shelford', '-', proper, loc ). +noun( 'great yarmouth', '-', proper, loc ). +noun( 'greece', '-', proper, loc ). +noun( 'greek', 'greeks', both, _ ). +noun( 'greenock', '-', proper, loc ). +noun( 'greenwich', '-', proper, loc ). +noun( 'greg', '-', proper, per ). +noun( 'gregory', '-', proper, per ). +noun( 'grenada', '-', proper, loc ). +noun( 'grenadian', 'grenadians', count, _ ). +noun( 'grimethorpe', '-', proper, loc ). +noun( 'grimsby', '-', proper, loc ). +noun( 'grinstead', '-', proper, loc ). +noun( 'groningen', '-', proper, loc ). +noun( 'grundyism', '-', mass, _ ). +noun( 'guadalajara', '-', proper, loc ). +noun( 'guatemala', '-', proper, loc ). +noun( 'guatemala city', '-', proper, loc ). +noun( 'guatemalan', 'guatemalans', count, _ ). +noun( 'guayaquil', '-', proper, loc ). +noun( 'guild-hall', 'guild-halls', count, _ ). +noun( 'guildford', '-', proper, loc ). +noun( 'guildhall', 'guildhalls', count, _ ). +noun( 'guinea', '-', proper, loc ). +noun( 'guinean', 'guineans', count, _ ). +noun( 'guinness', 'guinnesses', count, _ ). +noun( 'guisborough', '-', proper, loc ). +noun( 'gurkha', 'gurkhas', count, _ ). +noun( 'guy', '-', proper, per ). +noun( 'guy\'s', '-', proper, _ ). +noun( 'guyana', '-', proper, loc ). +noun( 'guyanese', 'guyanese', count, _ ). +noun( 'gwen', '-', proper, per ). +noun( 'gwendoline', '-', proper, per ). +noun( 'gwent', '-', proper, loc ). +noun( 'gwersyllt', '-', proper, loc ). +noun( 'gwynedd', '-', proper, loc ). +noun( 'gypsy', 'gypsies', count, _ ). +noun( 'h-bomb', 'h-bombs', count, _ ). +noun( 'hm', '-', proper, per ). +noun( 'hmso', '-', proper, _ ). +noun( 'hp', '-', mass, _ ). +noun( 'hq', '-', proper, _ ). +noun( 'hrh', '-', proper, per ). +noun( 'haarlem', '-', proper, loc ). +noun( 'hackney', '-', proper, loc ). +noun( 'haddington', '-', proper, loc ). +noun( 'hades', '-', proper, _ ). +noun( 'hadji', 'hadjis', count, _ ). +noun( 'hagen', '-', proper, loc ). +noun( 'hagley', '-', proper, loc ). +noun( 'hailsham', '-', proper, loc ). +noun( 'haiphong', '-', proper, loc ). +noun( 'haiti', '-', proper, loc ). +noun( 'haitian', 'haitians', count, _ ). +noun( 'hal', '-', proper, per ). +noun( 'halesowen', '-', proper, loc ). +noun( 'halifax', '-', proper, loc ). +noun( 'halle', '-', proper, loc ). +noun( 'hallowe\'en', 'hallowe\'ens', count, _ ). +noun( 'hallowe\'en', '-', proper, _ ). +noun( 'halstead', '-', proper, loc ). +noun( 'hamburg', '-', proper, loc ). +noun( 'hamhung', '-', proper, loc ). +noun( 'hamilton', '-', proper, loc ). +noun( 'hammersmith', '-', proper, loc ). +noun( 'hampreston', '-', proper, loc ). +noun( 'hampshire', '-', proper, loc ). +noun( 'hangchon', '-', proper, loc ). +noun( 'hanoi', '-', proper, loc ). +noun( 'hanover', '-', proper, loc ). +noun( 'hansard', 'hansards', count, _ ). +noun( 'harbin', '-', proper, loc ). +noun( 'haringey', '-', proper, loc ). +noun( 'harley street', '-', proper, _ ). +noun( 'harlow', '-', proper, loc ). +noun( 'harold', '-', proper, per ). +noun( 'harpenden', '-', proper, loc ). +noun( 'harriet', '-', proper, per ). +noun( 'harrogate', '-', proper, loc ). +noun( 'harrow', '-', proper, loc ). +noun( 'harry', '-', proper, per ). +noun( 'hartlepool', '-', proper, loc ). +noun( 'hartley', '-', proper, loc ). +noun( 'harvey', '-', proper, per ). +noun( 'harwich', '-', proper, loc ). +noun( 'harwood', '-', proper, loc ). +noun( 'harworth', '-', proper, loc ). +noun( 'haslemere', '-', proper, loc ). +noun( 'haslingden', '-', proper, loc ). +noun( 'hastings', '-', proper, loc ). +noun( 'hatfield', '-', proper, loc ). +noun( 'havana', 'havanas', count, _ ). +noun( 'havana', '-', proper, loc ). +noun( 'haverfordwest', '-', proper, loc ). +noun( 'haverhill', '-', proper, loc ). +noun( 'havering', '-', proper, loc ). +noun( 'hawaii', '-', proper, loc ). +noun( 'hawick', '-', proper, loc ). +noun( 'hawke\'s bay', '-', proper, loc ). +noun( 'hayling', '-', proper, loc ). +noun( 'haywards heath', '-', proper, loc ). +noun( 'hazel', '-', proper, per ). +noun( 'heanor', '-', proper, loc ). +noun( 'heather', '-', proper, per ). +noun( 'heaviside', '-', proper, _ ). +noun( 'hebden royal', '-', proper, loc ). +noun( 'hebrew', 'hebrews', both, _ ). +noun( 'hedge end', '-', proper, loc ). +noun( 'hegira', 'hegiras', count, _ ). +noun( 'heidelburg', '-', proper, loc ). +noun( 'hejira', 'hejiras', count, _ ). +noun( 'helen', '-', proper, per ). +noun( 'helensburgh', '-', proper, loc ). +noun( 'hellene', 'hellenes', count, _ ). +noun( 'helsinki', '-', proper, loc ). +noun( 'helston', '-', proper, loc ). +noun( 'hemel hempstead', '-', proper, loc ). +noun( 'hemsworth', '-', proper, loc ). +noun( 'henley-on-thames', '-', proper, loc ). +noun( 'henry', '-', proper, per ). +noun( 'herb', '-', proper, per ). +noun( 'herbert', '-', proper, per ). +noun( 'hereford', '-', proper, loc ). +noun( 'herne', '-', proper, loc ). +noun( 'herne bay', '-', proper, loc ). +noun( 'herr', 'herren', count, _ ). +noun( 'hertford', '-', proper, loc ). +noun( 'hertfordshire', '-', proper, loc ). +noun( 'hetton', '-', proper, loc ). +noun( 'hexham', '-', proper, loc ). +noun( 'heysham', '-', proper, loc ). +noun( 'heywood', '-', proper, loc ). +noun( 'high spen', '-', proper, loc ). +noun( 'high wycombe', '-', proper, loc ). +noun( 'highland', '-', proper, loc ). +noun( 'highlander', 'highlanders', count, _ ). +noun( 'hilary', '-', proper, per ). +noun( 'hilda', '-', proper, per ). +noun( 'hillingdon', '-', proper, loc ). +noun( 'hinckley', '-', proper, loc ). +noun( 'hindi', '-', mass, _ ). +noun( 'hindu', 'hindus', count, _ ). +noun( 'hinduism', '-', mass, _ ). +noun( 'hindustani', 'hindustanis', count, _ ). +noun( 'hiroshima', '-', proper, loc ). +noun( 'hitchin', '-', proper, loc ). +noun( 'hobson', '-', proper, _ ). +noun( 'hockley', '-', proper, loc ). +noun( 'hoddesdon', '-', proper, loc ). +noun( 'hofei', '-', proper, loc ). +noun( 'hogmanay', 'hogmanays', count, _ ). +noun( 'hogmanay', '-', proper, _ ). +noun( 'holland', '-', proper, loc ). +noun( 'hollander', 'hollanders', count, _ ). +noun( 'hollywood', '-', proper, _ ). +noun( 'holmfirth', '-', proper, loc ). +noun( 'holyhead', '-', proper, loc ). +noun( 'hon', '-', proper, per ). +noun( 'honduran', 'hondurans', count, _ ). +noun( 'honduras', '-', proper, loc ). +noun( 'hong kong', '-', proper, loc ). +noun( 'honiton', '-', proper, loc ). +noun( 'hoo', '-', proper, loc ). +noun( 'hoover', 'hoovers', count, _ ). +noun( 'hope', '-', proper, loc ). +noun( 'horace', '-', proper, per ). +noun( 'horley', '-', proper, loc ). +noun( 'hornsea', '-', proper, loc ). +noun( 'horsham', '-', proper, loc ). +noun( 'horsley', '-', proper, loc ). +noun( 'horwich', '-', proper, loc ). +noun( 'hosp', '-', proper, _ ). +noun( 'host', '-', count, _ ). +noun( 'houghton', '-', proper, loc ). +noun( 'hounslow', '-', proper, loc ). +noun( 'houston', '-', proper, loc ). +noun( 'hove', '-', proper, loc ). +noun( 'howard', '-', proper, per ). +noun( 'hoylake', '-', proper, loc ). +noun( 'hoyland nether', '-', proper, loc ). +noun( 'hubert', '-', proper, per ). +noun( 'hucknall', '-', proper, loc ). +noun( 'huddersfield', '-', proper, loc ). +noun( 'hugh', '-', proper, per ). +noun( 'hughie', '-', proper, per ). +noun( 'huguenot', 'huguenots', count, _ ). +noun( 'huhehot', '-', proper, loc ). +noun( 'humberside', '-', proper, loc ). +noun( 'humberston', '-', proper, loc ). +noun( 'humphrey', '-', proper, per ). +noun( 'hun', 'huns', count, _ ). +noun( 'hungarian', 'hungarians', both, _ ). +noun( 'hungary', '-', proper, loc ). +noun( 'huntingdon', '-', proper, loc ). +noun( 'hurstpierpoint', '-', proper, loc ). +noun( 'hwainan', '-', proper, loc ). +noun( 'hyde', '-', proper, loc ). +noun( 'hyderabad', '-', proper, loc ). +noun( 'hythe', '-', proper, loc ). +noun( 'iba', '-', count, _ ). +noun( 'icbm', '-', count, _ ). +noun( 'ilo', '-', count, _ ). +noun( 'imf', '-', count, _ ). +noun( 'iou', '-', count, _ ). +noun( '-', 'ious', count, _ ). +noun( 'iq', '-', mass, _ ). +noun( 'ira', '-', count, _ ). +noun( 'itv', '-', count, _ ). +noun( 'iud', '-', count, _ ). +noun( 'ian', '-', proper, per ). +noun( 'ibadan', '-', proper, loc ). +noun( 'iceland', '-', proper, loc ). +noun( 'icelander', 'icelanders', count, _ ). +noun( 'icelandic', '-', mass, _ ). +noun( 'ida', '-', proper, per ). +noun( 'idaho', '-', proper, loc ). +noun( 'ilfracombe', '-', proper, loc ). +noun( 'ilkeston', '-', proper, loc ). +noun( 'ilkley', '-', proper, loc ). +noun( 'illinois', '-', proper, loc ). +noun( 'immingham', '-', proper, loc ). +noun( 'inc', '-', proper, _ ). +noun( 'inchon', '-', proper, loc ). +noun( 'india', '-', proper, loc ). +noun( 'india-rubber', 'india-rubbers', both, _ ). +noun( 'indiaman', 'indiamen', count, _ ). +noun( 'indian', 'indians', count, _ ). +noun( 'indiana', '-', proper, loc ). +noun( 'indianapolis', '-', proper, loc ). +noun( 'indies', '-', proper, loc ). +noun( 'indonesia', '-', proper, loc ). +noun( 'indonesian', 'indonesians', both, _ ). +noun( 'indore', '-', proper, loc ). +noun( 'ingatestone', '-', proper, loc ). +noun( 'ingrid', '-', proper, per ). +noun( 'innsbruck', '-', proper, loc ). +noun( 'inst', '-', proper, _ ). +noun( 'interpol', '-', proper, _ ). +noun( 'inverkeithing', '-', proper, loc ). +noun( 'inverness', '-', proper, loc ). +noun( 'inverurie', '-', proper, loc ). +noun( 'iowa', '-', proper, loc ). +noun( 'ipswich', '-', proper, loc ). +noun( 'iran', '-', proper, loc ). +noun( 'iranian', 'iranians', both, _ ). +noun( 'iraq', '-', proper, loc ). +noun( 'iraqi', 'iraqis', count, _ ). +noun( 'ireland', '-', proper, loc ). +noun( 'irene', '-', proper, per ). +noun( 'iris', '-', proper, per ). +noun( 'irish', '-', mass, _ ). +noun( 'irishman', 'irishmen', count, _ ). +noun( 'irishwoman', 'irishwomen', count, _ ). +noun( 'irthlingborough', '-', proper, loc ). +noun( 'irvine', '-', proper, loc ). +noun( 'isaac', '-', proper, per ). +noun( 'isabel', '-', proper, per ). +noun( 'isabella', '-', proper, per ). +noun( 'islam', '-', mass, _ ). +noun( 'islington', '-', proper, loc ). +noun( 'isobel', '-', proper, per ). +noun( 'israel', '-', proper, loc ). +noun( 'israeli', 'israelis', count, _ ). +noun( 'istanbul', '-', proper, loc ). +noun( 'italian', 'italians', both, _ ). +noun( 'italy', '-', proper, loc ). +noun( 'ivan', '-', proper, per ). +noun( 'iver', '-', proper, loc ). +noun( 'ivor', '-', proper, per ). +noun( 'ivy', '-', proper, per ). +noun( 'izmir', '-', proper, loc ). +noun( 'jc', '-', proper, _ ). +noun( 'jp', '-', count, _ ). +noun( 'jabalpur', '-', proper, loc ). +noun( 'jack', '-', proper, per ). +noun( 'jackie', '-', proper, per ). +noun( 'jacksonville', '-', proper, loc ). +noun( 'jacob', '-', proper, per ). +noun( 'jacobin', 'jacobins', count, _ ). +noun( 'jacobinism', '-', mass, _ ). +noun( 'jacobite', 'jacobites', count, _ ). +noun( 'jacqueline', '-', proper, per ). +noun( 'jaipur', '-', proper, loc ). +noun( 'jakarta', '-', proper, loc ). +noun( 'jake', '-', proper, per ). +noun( 'jamaica', '-', proper, loc ). +noun( 'jamaican', 'jamaicans', count, _ ). +noun( 'james', '-', proper, per ). +noun( 'jan', '-', proper, per ). +noun( 'jan', '-', proper, _ ). +noun( 'jane', '-', proper, per ). +noun( 'janet', '-', proper, per ). +noun( 'janice', '-', proper, per ). +noun( 'janie', '-', proper, per ). +noun( 'january', 'januaries', count, _ ). +noun( 'january', '-', proper, _ ). +noun( 'janus', '-', proper, _ ). +noun( 'japan', '-', proper, loc ). +noun( 'japanese', 'japanese', both, _ ). +noun( 'jarrow', '-', proper, loc ). +noun( 'jason', '-', proper, per ). +noun( 'java', '-', proper, loc ). +noun( 'javanese', 'javanese', count, _ ). +noun( 'jean', '-', proper, per ). +noun( 'jeanie', '-', proper, per ). +noun( 'jedburgh', '-', proper, loc ). +noun( 'jeff', '-', proper, per ). +noun( 'jeffrey', '-', proper, per ). +noun( 'jehovah', '-', proper, _ ). +noun( 'jekyll-and-hyde', '-', proper, _ ). +noun( 'jennifer', '-', proper, per ). +noun( 'jenny', '-', proper, per ). +noun( 'jeremy', '-', proper, per ). +noun( 'jerome', '-', proper, per ). +noun( 'jerry', '-', proper, per ). +noun( 'jersey', '-', proper, loc ). +noun( 'jess', '-', proper, per ). +noun( 'jessica', '-', proper, per ). +noun( 'jessie', '-', proper, per ). +noun( 'jesuit', 'jesuits', count, _ ). +noun( 'jesus', '-', proper, per ). +noun( 'jew', 'jews', count, _ ). +noun( 'jewess', 'jewesses', count, _ ). +noun( 'jezebel', 'jezebels', count, _ ). +noun( 'jill', '-', proper, per ). +noun( 'jim', '-', proper, per ). +noun( 'jim crow', '-', count, _ ). +noun( 'jimmy', '-', proper, per ). +noun( 'jnr', '-', proper, _ ). +noun( 'jo', '-', proper, per ). +noun( 'joan', '-', proper, per ). +noun( 'joanie', '-', proper, per ). +noun( 'joann', '-', proper, per ). +noun( 'joanna', '-', proper, per ). +noun( 'joanne', '-', proper, per ). +noun( 'job', '-', proper, per ). +noun( 'jocelyn', '-', proper, per ). +noun( 'joe', '-', proper, per ). +noun( 'joey', '-', proper, per ). +noun( 'johannesburg', '-', proper, loc ). +noun( 'john', '-', proper, per ). +noun( 'john bull', '-', count, _ ). +noun( 'johnny', '-', proper, per ). +noun( 'johnstone', '-', proper, loc ). +noun( 'jonah', '-', proper, per ). +noun( 'jonathan', '-', proper, per ). +noun( 'jordan', '-', proper, loc ). +noun( 'jordanian', 'jordanians', count, _ ). +noun( 'joseph', '-', proper, per ). +noun( 'josephine', '-', proper, per ). +noun( 'josh', '-', proper, per ). +noun( 'joshua', '-', proper, per ). +noun( 'jove', '-', proper, _ ). +noun( 'joy', '-', proper, per ). +noun( 'joyce', '-', proper, per ). +noun( 'judaism', '-', mass, _ ). +noun( 'judas', 'judases', count, _ ). +noun( 'judas', '-', proper, per ). +noun( 'judith', '-', proper, per ). +noun( 'judy', '-', proper, per ). +noun( 'jul', '-', proper, _ ). +noun( 'julia', '-', proper, per ). +noun( 'julian', '-', proper, per ). +noun( 'julie', '-', proper, per ). +noun( 'juliet', '-', proper, per ). +noun( 'july', '-', count, _ ). +noun( 'jun', '-', proper, _ ). +noun( 'june', 'junes', count, _ ). +noun( 'june', '-', proper, per ). +noun( 'jupiter', '-', proper, _ ). +noun( 'justin', '-', proper, per ). +noun( 'kgb', '-', count, _ ). +noun( 'ko', '-', count, _ ). +noun( 'kaiser', 'kaisers', count, _ ). +noun( 'kalgan', '-', proper, loc ). +noun( 'kampuchea', '-', proper, loc ). +noun( 'kampuchean', 'kampucheans', count, _ ). +noun( 'kanpur', '-', proper, loc ). +noun( 'kansas', '-', proper, loc ). +noun( 'kansas city', '-', proper, loc ). +noun( 'kaohsiung', '-', proper, loc ). +noun( 'karachi', '-', proper, loc ). +noun( 'karaganda', '-', proper, loc ). +noun( 'karen', '-', proper, per ). +noun( 'karlsruhe', '-', proper, loc ). +noun( 'kashmir', '-', proper, loc ). +noun( 'kashmiri', 'kashmiris', count, _ ). +noun( 'kassel', '-', proper, loc ). +noun( 'kate', '-', proper, per ). +noun( 'kath', '-', proper, per ). +noun( 'katherine', '-', proper, per ). +noun( 'kathy', '-', proper, per ). +noun( 'katie', '-', proper, per ). +noun( 'katowice', '-', proper, loc ). +noun( 'kay', '-', proper, per ). +noun( 'kazan', '-', proper, loc ). +noun( 'keighley', '-', proper, loc ). +noun( 'keith', '-', proper, per ). +noun( 'kelso', '-', proper, loc ). +noun( 'kelt', 'kelts', count, _ ). +noun( 'kelty', '-', proper, loc ). +noun( 'kemsing', '-', proper, loc ). +noun( 'ken', '-', proper, per ). +noun( 'kendal', '-', proper, loc ). +noun( 'kenilworth', '-', proper, loc ). +noun( 'kenneth', '-', proper, per ). +noun( 'kenny', '-', proper, per ). +noun( 'kensington', '-', proper, loc ). +noun( 'kent', '-', proper, loc ). +noun( 'kentucky', '-', proper, loc ). +noun( 'kenya', '-', proper, loc ). +noun( 'kenyan', 'kenyans', count, _ ). +noun( 'kerry', '-', proper, loc ). +noun( 'kettering', '-', proper, loc ). +noun( 'kevin', '-', proper, per ). +noun( 'keynsham', '-', proper, loc ). +noun( 'keyworth', '-', proper, loc ). +noun( 'khalka', '-', mass, _ ). +noun( 'kharkov', '-', proper, loc ). +noun( 'khartoum', '-', proper, loc ). +noun( 'khmer', '-', mass, _ ). +noun( 'kidderminster', '-', proper, loc ). +noun( 'kidlington', '-', proper, loc ). +noun( 'kidsgrove', '-', proper, loc ). +noun( 'kiev', '-', proper, loc ). +noun( 'kilbirnie', '-', proper, loc ). +noun( 'kildare', '-', proper, loc ). +noun( 'kilkenny', '-', proper, loc ). +noun( 'killarney', '-', proper, loc ). +noun( 'kilmarnock', '-', proper, loc ). +noun( 'kilsyth', '-', proper, loc ). +noun( 'kilwinning', '-', proper, loc ). +noun( 'kimberley', '-', proper, loc ). +noun( 'king\'s lynn', '-', proper, loc ). +noun( 'kingsbury', '-', proper, loc ). +noun( 'kingsteignton', '-', proper, loc ). +noun( 'kingston', '-', proper, loc ). +noun( 'kingston upon hull', '-', proper, loc ). +noun( 'kingston upon thames', '-', proper, loc ). +noun( 'kinshasa', '-', proper, loc ). +noun( 'kippax', '-', proper, loc ). +noun( 'kirin', '-', proper, loc ). +noun( 'kirkby', '-', proper, loc ). +noun( 'kirkby in ashfield', '-', proper, loc ). +noun( 'kirkcaldy', '-', proper, loc ). +noun( 'kirkham', '-', proper, loc ). +noun( 'kirkintilloch', '-', proper, loc ). +noun( 'kirkwall', '-', proper, loc ). +noun( 'kitakyushu', '-', proper, loc ). +noun( 'kitty', '-', proper, per ). +noun( 'knaresborough', '-', proper, loc ). +noun( 'knesset', 'knessets', count, _ ). +noun( 'knottingley', '-', proper, loc ). +noun( 'knutsford', '-', proper, loc ). +noun( 'kobe', '-', proper, loc ). +noun( 'koblenz', '-', proper, loc ). +noun( 'koln', '-', proper, loc ). +noun( 'koran', 'korans', count, _ ). +noun( 'korea', '-', proper, loc ). +noun( 'korean', 'koreans', both, _ ). +noun( 'krakow', '-', proper, loc ). +noun( 'krasnoyarsk', '-', proper, loc ). +noun( 'krefeld', '-', proper, loc ). +noun( 'kremlin', 'kremlins', count, _ ). +noun( 'krivoi rog', '-', proper, loc ). +noun( 'kunming', '-', proper, loc ). +noun( 'kuwait', '-', proper, loc ). +noun( 'kuwait city', '-', proper, loc ). +noun( 'kuwaiti', 'kuwaitis', count, _ ). +noun( 'kuybyshev', '-', proper, loc ). +noun( 'kweiyang', '-', proper, loc ). +noun( 'kyoto', '-', proper, loc ). +noun( 'l-plate', 'l-plates', count, _ ). +noun( 'la', '-', proper, _ ). +noun( 'lea', '-', count, _ ). +noun( 'llb', '-', count, _ ). +noun( 'lp', '-', count, _ ). +noun( '-', 'lps', count, _ ). +noun( 'lsd', '-', mass, _ ). +noun( 'la habana', '-', proper, loc ). +noun( 'la paz', '-', proper, loc ). +noun( 'la plata', '-', proper, loc ). +noun( 'la spezia', '-', proper, loc ). +noun( 'lab', '-', proper, _ ). +noun( 'labourite', 'labourites', count, _ ). +noun( 'labrador', '-', proper, loc ). +noun( 'lady-chapel', 'lady-chapels', count, _ ). +noun( 'lagos', '-', proper, loc ). +noun( 'lahore', '-', proper, loc ). +noun( 'lakenheath', '-', proper, loc ). +noun( 'lambeth', '-', proper, loc ). +noun( 'lammas', 'lammases', count, _ ). +noun( 'lammas', '-', proper, _ ). +noun( 'lanark', '-', proper, loc ). +noun( 'lancashire', '-', proper, loc ). +noun( 'lancaster', '-', proper, loc ). +noun( 'lancastrian', 'lancastrians', count, _ ). +noun( 'lanchow', '-', proper, loc ). +noun( 'lancing', '-', proper, loc ). +noun( 'landrover', 'landrovers', count, _ ). +noun( 'lao', '-', mass, _ ). +noun( 'laos', '-', proper, loc ). +noun( 'laotian', 'laotians', both, _ ). +noun( 'largs', '-', proper, loc ). +noun( 'larkhall', '-', proper, loc ). +noun( 'larne', '-', proper, loc ). +noun( 'larry', '-', proper, per ). +noun( 'las palmas', '-', proper, loc ). +noun( 'latin', 'latins', count, _ ). +noun( 'latinist', 'latinists', count, _ ). +noun( 'laura', '-', proper, per ). +noun( 'laurence', '-', proper, per ). +noun( 'lausanne', '-', proper, loc ). +noun( 'lawrence', '-', proper, per ). +noun( 'lazarus', '-', count, _ ). +noun( 'lazarus', '-', proper, per ). +noun( 'le havre', '-', proper, loc ). +noun( 'le mans', '-', proper, loc ). +noun( 'leamington spa', '-', proper, loc ). +noun( 'leatherhead', '-', proper, loc ). +noun( 'lebanese', 'lebanese', count, _ ). +noun( 'lebanon', '-', proper, loc ). +noun( 'leeds', '-', proper, loc ). +noun( 'leek', '-', proper, loc ). +noun( 'leicester', '-', proper, loc ). +noun( 'leicestershire', '-', proper, loc ). +noun( 'leiden', '-', proper, loc ). +noun( 'leigh', '-', proper, loc ). +noun( 'leighton-linslade', '-', proper, loc ). +noun( 'leinster', '-', proper, loc ). +noun( 'leipzig', '-', proper, loc ). +noun( 'leitrim', '-', proper, loc ). +noun( 'leix', '-', proper, loc ). +noun( 'len', '-', proper, per ). +noun( 'leningrad', '-', proper, loc ). +noun( 'lenny', '-', proper, per ). +noun( 'lens', '-', proper, loc ). +noun( 'lent', 'lents', count, _ ). +noun( 'lent', '-', proper, _ ). +noun( 'leo', '-', proper, per ). +noun( 'leominster', '-', proper, loc ). +noun( 'leon', '-', proper, loc ). +noun( 'leonard', '-', proper, per ). +noun( 'lerwick', '-', proper, loc ). +noun( 'les', '-', proper, per ). +noun( 'lesley', '-', proper, per ). +noun( 'leslie', '-', proper, per ). +noun( 'lesotho', '-', proper, loc ). +noun( 'letchworth', '-', proper, loc ). +noun( 'lethe', '-', proper, _ ). +noun( 'levant', '-', proper, _ ). +noun( 'levantine', 'levantines', count, _ ). +noun( 'leven', '-', proper, loc ). +noun( 'leverkusen', '-', proper, loc ). +noun( 'lewes', '-', proper, loc ). +noun( 'lewis', '-', proper, per ). +noun( 'lewisham', '-', proper, loc ). +noun( 'leyland', '-', proper, loc ). +noun( 'lib', '-', proper, _ ). +noun( 'liberia', '-', proper, loc ). +noun( 'liberian', 'liberians', count, _ ). +noun( 'libra', '-', proper, _ ). +noun( 'libya', '-', proper, loc ). +noun( 'libyan', 'libyans', count, _ ). +noun( 'lichfield', '-', proper, loc ). +noun( 'liechtenstein', '-', proper, loc ). +noun( 'liechtensteiner', 'liechtensteiners', count, _ ). +noun( 'liege', '-', proper, loc ). +noun( 'lilian', '-', proper, per ). +noun( 'lille', '-', proper, loc ). +noun( 'lilliputian', 'lilliputians', count, _ ). +noun( 'lily', '-', proper, per ). +noun( 'lima', '-', proper, loc ). +noun( 'limerick', '-', proper, loc ). +noun( 'limoges', '-', proper, loc ). +noun( 'lincoln', '-', proper, loc ). +noun( 'lincolnshire', '-', proper, loc ). +noun( 'linda', '-', proper, per ). +noun( 'linlithgow', '-', proper, loc ). +noun( 'linwood', '-', proper, loc ). +noun( 'linz', '-', proper, loc ). +noun( 'lionel', '-', proper, per ). +noun( 'lisa', '-', proper, per ). +noun( 'lisbon', '-', proper, loc ). +noun( 'liskeard', '-', proper, loc ). +noun( 'littlehampton', '-', proper, loc ). +noun( 'liverpool', '-', proper, loc ). +noun( 'liverpudlian', 'liverpudlians', count, _ ). +noun( 'livingston', '-', proper, loc ). +noun( 'livorno', '-', proper, loc ). +noun( 'liz', '-', proper, per ). +noun( 'liza', '-', proper, per ). +noun( 'lizzy', '-', proper, per ). +noun( 'ljubljana', '-', proper, loc ). +noun( 'llandudno', '-', proper, loc ). +noun( 'llanelli', '-', proper, loc ). +noun( 'llangollen', '-', proper, loc ). +noun( 'llantrisant', '-', proper, loc ). +noun( 'llantwit major', '-', proper, loc ). +noun( 'lloyd\'s', '-', proper, _ ). +noun( 'loanhead', '-', proper, loc ). +noun( 'lochgelly', '-', proper, loc ). +noun( 'lodz', '-', proper, loc ). +noun( 'loftus', '-', proper, loc ). +noun( 'lois', '-', proper, per ). +noun( 'london', '-', proper, loc ). +noun( 'londonderry', '-', proper, loc ). +noun( 'londoner', 'londoners', count, _ ). +noun( 'long eaton', '-', proper, loc ). +noun( 'longridge', '-', proper, loc ). +noun( 'longton', '-', proper, loc ). +noun( 'lorna', '-', proper, per ). +noun( 'los angeles', '-', proper, loc ). +noun( 'lossiemouth', '-', proper, loc ). +noun( 'lothian', '-', proper, loc ). +noun( 'loughborough', '-', proper, loc ). +noun( 'louis', '-', proper, per ). +noun( 'louise', '-', proper, per ). +noun( 'louisiana', '-', proper, loc ). +noun( 'louisville', '-', proper, loc ). +noun( 'louth', '-', proper, loc ). +noun( 'lowestoft', '-', proper, loc ). +noun( 'loyang', '-', proper, loc ). +noun( 'lt', '-', proper, per ). +noun( 'ltd', '-', proper, _ ). +noun( 'lubeck', '-', proper, loc ). +noun( 'lucifer', 'lucifers', count, _ ). +noun( 'lucknow', '-', proper, loc ). +noun( 'lucy', '-', proper, per ). +noun( 'luddite', 'luddites', count, _ ). +noun( 'ludlow', '-', proper, loc ). +noun( 'ludwigshafen', '-', proper, loc ). +noun( 'luke', '-', proper, per ). +noun( 'luta', '-', proper, loc ). +noun( 'lutheran', 'lutherans', count, _ ). +noun( 'luton', '-', proper, loc ). +noun( 'luxembourg', '-', proper, loc ). +noun( 'luxemburg', '-', proper, loc ). +noun( 'luxemburger', 'luxemburgers', count, _ ). +noun( 'lvov', '-', proper, loc ). +noun( 'lyallpur', '-', proper, loc ). +noun( 'lydia', '-', proper, per ). +noun( 'lydney', '-', proper, loc ). +noun( 'lymington', '-', proper, loc ). +noun( 'lymm', '-', proper, loc ). +noun( 'lynn', '-', proper, per ). +noun( 'lynne', '-', proper, per ). +noun( 'lyons', '-', proper, loc ). +noun( 'lytham', '-', proper, loc ). +noun( 'lytham st annes', '-', proper, loc ). +noun( 'ma', '-', count, _ ). +noun( 'mb', '-', count, _ ). +noun( 'mc', '-', count, _ ). +noun( 'mcc', '-', count, _ ). +noun( 'md', '-', count, _ ). +noun( 'mi5', '-', proper, _ ). +noun( 'mi6', '-', proper, _ ). +noun( 'mp', '-', count, _ ). +noun( '-', 'mp\'s', count, _ ). +noun( 'ms', '-', count, _ ). +noun( 'msc', '-', count, _ ). +noun( 'maastricht', '-', proper, loc ). +noun( 'mabel', '-', proper, per ). +noun( 'macclesfield', '-', proper, loc ). +noun( 'macedonian', 'macedonians', both, _ ). +noun( 'mach', '-', proper, _ ). +noun( 'madagascan', 'madagascans', count, _ ). +noun( 'madagascar', '-', proper, loc ). +noun( 'madame', 'madames', count, _ ). +noun( 'maddy', '-', proper, per ). +noun( 'madeira', 'madeiras', count, _ ). +noun( 'madeleine', '-', proper, per ). +noun( 'mademoiselle', 'mademoiselles', count, _ ). +noun( 'madge', '-', proper, per ). +noun( 'madonna', 'madonnas', count, _ ). +noun( 'madras', '-', proper, loc ). +noun( 'madrid', '-', proper, loc ). +noun( 'madurai', '-', proper, loc ). +noun( 'maecenas', '-', proper, _ ). +noun( 'maesteg', '-', proper, loc ). +noun( 'mafia', 'mafias', count, _ ). +noun( 'magdeburg', '-', proper, loc ). +noun( 'maggie', '-', proper, per ). +noun( 'maghull', '-', proper, loc ). +noun( 'magnificat', 'magnificats', count, _ ). +noun( 'magyar', 'magyars', both, _ ). +noun( 'maharaja', 'maharajas', count, _ ). +noun( 'maharajah', 'maharajahs', count, _ ). +noun( 'maharanee', 'maharanees', count, _ ). +noun( 'mahatma', 'mahatmas', count, _ ). +noun( 'maidenhead', '-', proper, loc ). +noun( 'maidstone', '-', proper, loc ). +noun( 'maine', '-', proper, loc ). +noun( 'mainz', '-', proper, loc ). +noun( 'maj', '-', proper, per ). +noun( 'malaga', '-', proper, loc ). +noun( 'malawi', '-', proper, loc ). +noun( 'malawian', 'malawians', count, _ ). +noun( 'malay', 'malays', both, _ ). +noun( 'malaya', '-', proper, loc ). +noun( 'malayan', 'malayans', count, _ ). +noun( 'malaysia', '-', proper, loc ). +noun( 'malaysian', 'malaysians', count, _ ). +noun( 'malcolm', '-', proper, per ). +noun( 'maldon', '-', proper, loc ). +noun( 'mali', '-', proper, loc ). +noun( 'malian', 'malians', count, _ ). +noun( 'mallow', '-', proper, loc ). +noun( 'malmo', '-', proper, loc ). +noun( 'malta', '-', proper, loc ). +noun( 'maltby', '-', proper, loc ). +noun( 'maltese', 'maltese', both, _ ). +noun( 'malvern', '-', proper, loc ). +noun( 'mamie', '-', proper, per ). +noun( 'manchester', '-', proper, loc ). +noun( 'mancunian', 'mancunians', count, _ ). +noun( 'mandy', '-', proper, per ). +noun( 'manila', '-', proper, loc ). +noun( 'manilla', 'manillas', count, _ ). +noun( 'manitoba', '-', proper, loc ). +noun( 'mannheim', '-', proper, loc ). +noun( 'mansfield', '-', proper, loc ). +noun( 'manx', '-', mass, _ ). +noun( 'maoism', '-', mass, _ ). +noun( 'maoist', 'maoists', count, _ ). +noun( 'maori', 'maoris', count, _ ). +noun( 'mar', '-', proper, _ ). +noun( 'maracaibo', '-', proper, loc ). +noun( 'march', 'marches', count, _ ). +noun( 'march', '-', proper, loc ). +noun( 'mardi gras', 'mardi gras', count, _ ). +noun( 'margaret', '-', proper, per ). +noun( 'margate', '-', proper, loc ). +noun( 'marge', '-', proper, per ). +noun( 'margery', '-', proper, per ). +noun( 'margie', '-', proper, per ). +noun( 'margrave', 'margraves', count, _ ). +noun( 'maria', '-', proper, per ). +noun( 'marian', '-', proper, per ). +noun( 'marie', '-', proper, per ). +noun( 'marilyn', '-', proper, per ). +noun( 'marion', '-', proper, per ). +noun( 'marjorie', '-', proper, per ). +noun( 'mark', '-', proper, per ). +noun( 'market drayton', '-', proper, loc ). +noun( 'market harborough', '-', proper, loc ). +noun( 'marlborough', '-', proper, loc ). +noun( 'marlene', '-', proper, per ). +noun( 'marlow', '-', proper, loc ). +noun( 'marple', '-', proper, loc ). +noun( 'mars', '-', proper, _ ). +noun( 'marsala', '-', mass, _ ). +noun( 'marseillaise', 'marseillaises', count, _ ). +noun( 'marseilles', '-', proper, loc ). +noun( 'marske', '-', proper, loc ). +noun( 'martha', '-', proper, per ). +noun( 'martian', 'martians', count, _ ). +noun( 'martin', '-', proper, per ). +noun( 'marxism', '-', mass, _ ). +noun( 'marxist', 'marxists', count, _ ). +noun( 'mary', '-', proper, per ). +noun( 'maryland', '-', proper, loc ). +noun( 'maryport', '-', proper, loc ). +noun( 'mason-dixon', '-', proper, _ ). +noun( 'mass', 'masses', both, _ ). +noun( 'massachusetts', '-', proper, loc ). +noun( 'matlock', '-', proper, loc ). +noun( 'matt', '-', proper, per ). +noun( 'matthew', '-', proper, per ). +noun( 'maud', '-', proper, per ). +noun( 'maudie', '-', proper, per ). +noun( 'maundy thursday', 'maundy thursdays', count, _ ). +noun( 'maundy thursday', '-', proper, _ ). +noun( 'maureen', '-', proper, per ). +noun( 'maurice', '-', proper, per ). +noun( 'mauritania', '-', proper, loc ). +noun( 'mauritanian', 'mauritanians', count, _ ). +noun( 'mauritian', 'mauritians', count, _ ). +noun( 'mauritius', '-', proper, loc ). +noun( 'mavis', '-', proper, per ). +noun( 'max', '-', proper, per ). +noun( 'maxine', '-', proper, per ). +noun( 'may', 'mays', count, _ ). +noun( 'may', '-', proper, per ). +noun( 'mayfair', '-', proper, _ ). +noun( 'mayfield', '-', proper, loc ). +noun( 'mayo', '-', proper, loc ). +noun( 'mccarthyism', '-', mass, _ ). +noun( 'meath', '-', proper, loc ). +noun( 'mecca', '-', proper, loc ). +noun( 'med', '-', count, _ ). +noun( 'medan', '-', proper, loc ). +noun( 'medellin', '-', proper, loc ). +noun( 'medicare', '-', mass, _ ). +noun( 'meg', '-', proper, per ). +noun( 'melbourne', '-', proper, loc ). +noun( 'melcombe', '-', proper, loc ). +noun( 'melcombe regis', '-', proper, loc ). +noun( 'melksham', '-', proper, loc ). +noun( 'meltham', '-', proper, loc ). +noun( 'melton mowbray', '-', proper, loc ). +noun( 'memphis', '-', proper, loc ). +noun( 'meopham', '-', proper, loc ). +noun( 'mercator', '-', proper, _ ). +noun( 'mercury', '-', proper, _ ). +noun( 'merthyr tydfil', '-', proper, loc ). +noun( 'merton', '-', proper, loc ). +noun( 'messiah', 'messiahs', count, _ ). +noun( 'messina', '-', proper, loc ). +noun( 'met', '-', proper, _ ). +noun( 'methodism', '-', mass, _ ). +noun( 'methodist', 'methodists', count, _ ). +noun( 'methuselah', '-', proper, _ ). +noun( 'metro', 'metros', count, _ ). +noun( 'metz', '-', proper, loc ). +noun( 'mexican', 'mexicans', count, _ ). +noun( 'mexico', '-', proper, loc ). +noun( 'mexico city', '-', proper, loc ). +noun( 'mgr', '-', proper, per ). +noun( 'miami', '-', proper, loc ). +noun( 'michael', '-', proper, per ). +noun( 'michaelmas', 'michaelmases', count, _ ). +noun( 'michaelmas', '-', proper, _ ). +noun( 'michelle', '-', proper, per ). +noun( 'michigan', '-', proper, loc ). +noun( 'mick', '-', proper, per ). +noun( 'mickey', '-', proper, per ). +noun( 'middlesex', '-', proper, loc ). +noun( 'middleton', '-', proper, loc ). +noun( 'middlewich', '-', proper, loc ). +noun( 'midlands', '-', proper, loc ). +noun( 'midwest', '-', proper, _ ). +noun( 'mike', '-', proper, per ). +noun( 'milan', '-', proper, loc ). +noun( 'milano', '-', proper, loc ). +noun( 'mildenhall', '-', proper, loc ). +noun( 'mildred', '-', proper, per ). +noun( 'miles', '-', proper, per ). +noun( 'milford', '-', proper, loc ). +noun( 'milford haven', '-', proper, loc ). +noun( 'millicent', '-', proper, per ). +noun( 'millie', '-', proper, per ). +noun( 'millom', '-', proper, loc ). +noun( 'milly', '-', proper, per ). +noun( 'milngavie', '-', proper, loc ). +noun( 'milnrow', '-', proper, loc ). +noun( 'milton keynes', '-', proper, loc ). +noun( 'milwaukee', '-', proper, loc ). +noun( 'minehead', '-', proper, loc ). +noun( 'minneapolis', '-', proper, loc ). +noun( 'minnesota', '-', proper, loc ). +noun( 'minotaur', 'minotaurs', count, _ ). +noun( 'minsk', '-', proper, loc ). +noun( 'minster-in-sheppey', '-', proper, loc ). +noun( 'miranda', '-', proper, per ). +noun( 'miriam', '-', proper, per ). +noun( 'miss', 'misses', count, _ ). +noun( 'mississippi', '-', proper, loc ). +noun( 'missouri', '-', proper, loc ). +noun( 'mlle', '-', proper, per ). +noun( 'mme', '-', proper, per ). +noun( 'mo', '-', proper, per ). +noun( 'mod', 'mods', count, _ ). +noun( 'modena', '-', proper, loc ). +noun( 'mohammedan', 'mohammedans', count, _ ). +noun( 'moira', '-', proper, per ). +noun( 'mold', '-', proper, loc ). +noun( 'molly', '-', proper, per ). +noun( 'moloch', '-', proper, _ ). +noun( 'mon', '-', proper, _ ). +noun( 'monaco', '-', proper, loc ). +noun( 'monaghan', '-', proper, loc ). +noun( 'monchengladbach', '-', proper, loc ). +noun( 'monday', 'mondays', count, _ ). +noun( 'monday', '-', proper, _ ). +noun( 'monegasque', 'monegasques', count, _ ). +noun( 'mongol', 'mongols', both, _ ). +noun( 'mongolia', '-', proper, loc ). +noun( 'mongolian', 'mongolians', both, _ ). +noun( 'monica', '-', proper, per ). +noun( 'monifieth', '-', proper, loc ). +noun( 'monmouth', '-', proper, loc ). +noun( 'monsieur', 'messieurs', count, _ ). +noun( 'monsignor', 'monsignors', count, _ ). +noun( 'montana', '-', proper, loc ). +noun( 'monterrey', '-', proper, loc ). +noun( 'montevideo', '-', proper, loc ). +noun( 'montreal', '-', proper, loc ). +noun( 'montrose', '-', proper, loc ). +noun( 'montserrat', '-', proper, loc ). +noun( 'montserratian', 'montserratians', count, _ ). +noun( 'monza', '-', proper, loc ). +noun( 'moor', 'moors', count, _ ). +noun( 'morecambe', '-', proper, loc ). +noun( 'morley', '-', proper, loc ). +noun( 'mormon', 'mormons', count, _ ). +noun( 'mormonism', '-', mass, _ ). +noun( 'moroccan', 'moroccans', count, _ ). +noun( 'morocco', '-', proper, loc ). +noun( 'morpeth', '-', proper, loc ). +noun( 'morpheus', '-', proper, _ ). +noun( 'morse', '-', mass, _ ). +noun( 'moscow', '-', proper, loc ). +noun( 'moslem', 'moslems', count, _ ). +noun( 'mossley', '-', proper, loc ). +noun( 'motherwell', '-', proper, loc ). +noun( 'mountain ash', '-', proper, loc ). +noun( 'mountie', 'mounties', count, _ ). +noun( 'mozambican', 'mozambicans', count, _ ). +noun( 'mozambique', '-', proper, loc ). +noun( 'mr', '-', proper, per ). +noun( 'mrs', '-', proper, per ). +noun( 'ms', '-', proper, per ). +noun( 'mt', '-', proper, _ ). +noun( 'muhammad', '-', proper, _ ). +noun( 'muhammadan', 'muhammadans', count, _ ). +noun( 'muhammadanism', '-', mass, _ ). +noun( 'mukden', '-', proper, loc ). +noun( 'mulheim', '-', proper, loc ). +noun( 'mulhouse', '-', proper, loc ). +noun( 'multan', '-', proper, loc ). +noun( 'munich', '-', proper, loc ). +noun( 'munster', '-', proper, loc ). +noun( 'muriel', '-', proper, per ). +noun( 'murton', '-', proper, loc ). +noun( 'muscovite', 'muscovites', count, _ ). +noun( 'muscovy', 'muscovies', count, _ ). +noun( 'muslim', 'muslims', count, _ ). +noun( 'musselburgh', '-', proper, loc ). +noun( 'myra', '-', proper, per ). +noun( 'naafi', '-', count, _ ). +noun( 'nasa', '-', proper, _ ). +noun( 'nato', '-', proper, _ ). +noun( 'nb', '-', proper, _ ). +noun( 'nco', '-', count, _ ). +noun( 'nhs', '-', count, _ ). +noun( 'nspcc', '-', count, _ ). +noun( 'nt', '-', count, _ ). +noun( 'nagoya', '-', proper, loc ). +noun( 'nagpur', '-', proper, loc ). +noun( 'nailsea', '-', proper, loc ). +noun( 'nairn', '-', proper, loc ). +noun( 'nairobi', '-', proper, loc ). +noun( 'namibia', '-', proper, loc ). +noun( 'namibian', 'namibians', count, _ ). +noun( 'nanchang', '-', proper, loc ). +noun( 'nancy', '-', proper, per ). +noun( 'nanking', '-', proper, loc ). +noun( 'nanning', '-', proper, loc ). +noun( 'nantwich', '-', proper, loc ). +noun( 'naomi', '-', proper, per ). +noun( 'naples', '-', proper, loc ). +noun( 'napoli', '-', proper, loc ). +noun( 'narborough', '-', proper, loc ). +noun( 'nat', '-', proper, per ). +noun( 'natalie', '-', proper, per ). +noun( 'nathaniel', '-', proper, per ). +noun( 'nauru', '-', proper, loc ). +noun( 'nauruan', 'nauruans', both, _ ). +noun( 'nazi', 'nazis', count, _ ). +noun( 'nazism', '-', mass, _ ). +noun( 'neapolitan', 'neapolitans', count, _ ). +noun( 'neath', '-', proper, loc ). +noun( 'nebraska', '-', proper, loc ). +noun( 'ned', '-', proper, per ). +noun( 'neddy', '-', proper, per ). +noun( 'negress', 'negresses', count, _ ). +noun( 'negro', 'negroes', count, _ ). +noun( 'negroid', 'negroids', count, _ ). +noun( 'negus', 'neguses', count, _ ). +noun( 'neil', '-', proper, per ). +noun( 'nell', '-', proper, per ). +noun( 'nelly', '-', count, _ ). +noun( 'nelly', '-', proper, per ). +noun( 'nelson', '-', proper, loc ). +noun( 'nepal', '-', proper, loc ). +noun( 'nepalese', 'nepalese', count, _ ). +noun( 'nepali', 'nepalis', both, _ ). +noun( 'neptune', '-', proper, _ ). +noun( 'neston', '-', proper, loc ). +noun( 'nestor', '-', proper, _ ). +noun( 'netherlander', 'netherlanders', count, _ ). +noun( 'netherlands', '-', proper, loc ). +noun( 'netley', '-', proper, loc ). +noun( 'neuss', '-', proper, loc ). +noun( 'nevada', '-', proper, loc ). +noun( 'neville', '-', proper, per ). +noun( 'new cumnock', '-', proper, loc ). +noun( 'new mills', '-', proper, loc ). +noun( 'new orleans', '-', proper, loc ). +noun( 'new tredegar', '-', proper, loc ). +noun( 'new windsor', '-', proper, loc ). +noun( 'new york', '-', proper, loc ). +noun( 'newark', '-', proper, loc ). +noun( 'newarthill', '-', proper, loc ). +noun( 'newbiggin', '-', proper, loc ). +noun( 'newbury', '-', proper, loc ). +noun( 'newcastle', '-', proper, loc ). +noun( 'newcastle upon tyne', '-', proper, loc ). +noun( 'newcastle-under-lyme', '-', proper, loc ). +noun( 'newfoundland', '-', proper, loc ). +noun( 'newham', '-', proper, loc ). +noun( 'newhaven', '-', proper, loc ). +noun( 'newmains', '-', proper, loc ). +noun( 'newmarket', '-', mass, _ ). +noun( 'newmarket', '-', proper, loc ). +noun( 'newport', '-', proper, loc ). +noun( 'newport pagnell', '-', proper, loc ). +noun( 'newquay', '-', proper, loc ). +noun( 'newry', '-', proper, loc ). +noun( 'newton abbot', '-', proper, loc ). +noun( 'newton aycliffe', '-', proper, loc ). +noun( 'newton mearns', '-', proper, loc ). +noun( 'newton-le-willows', '-', proper, loc ). +noun( 'newtonian', 'newtonians', count, _ ). +noun( 'newtown', '-', proper, loc ). +noun( 'nicaragua', '-', proper, loc ). +noun( 'nicaraguan', 'nicaraguans', count, _ ). +noun( 'nice', '-', proper, loc ). +noun( 'nicholas', '-', proper, per ). +noun( 'nick', '-', proper, per ). +noun( 'nicola', '-', proper, per ). +noun( 'nicole', '-', proper, per ). +noun( 'nigel', '-', proper, per ). +noun( 'niger', '-', proper, loc ). +noun( 'nigeria', '-', proper, loc ). +noun( 'nigerian', 'nigerians', count, _ ). +noun( 'nigerien', 'nigeriens', count, _ ). +noun( 'nijmegen', '-', proper, loc ). +noun( 'nimrod', '-', proper, _ ). +noun( 'niobe', '-', proper, _ ). +noun( 'nissen', '-', proper, _ ). +noun( 'noah', '-', proper, _ ). +noun( 'nobel', '-', proper, _ ). +noun( 'noel', 'noels', count, _ ). +noun( 'noel', '-', proper, per ). +noun( 'nora', '-', proper, per ). +noun( 'nordic', 'nordics', count, _ ). +noun( 'norfolk', '-', proper, loc ). +noun( 'norman', 'normans', count, _ ). +noun( 'norman', '-', proper, per ). +noun( 'normanton', '-', proper, loc ). +noun( 'normantown', '-', proper, loc ). +noun( 'norse', '-', mass, _ ). +noun( 'north walsham', '-', proper, loc ). +noun( 'northallerton', '-', proper, loc ). +noun( 'northam', '-', proper, loc ). +noun( 'northampton', '-', proper, loc ). +noun( 'northamptonshire', '-', proper, loc ). +noun( 'northman', 'northmen', count, _ ). +noun( 'northumberland', '-', proper, loc ). +noun( 'northwich', '-', proper, loc ). +noun( 'norton', '-', proper, loc ). +noun( 'norway', '-', proper, loc ). +noun( 'norwegian', 'norwegians', both, _ ). +noun( 'norwich', '-', proper, loc ). +noun( 'nottingham', '-', proper, loc ). +noun( 'nottinghamshire', '-', proper, loc ). +noun( 'nov', '-', proper, _ ). +noun( 'nova scotia', '-', proper, loc ). +noun( 'novara', '-', proper, loc ). +noun( 'november', 'novembers', count, _ ). +noun( 'november', '-', proper, _ ). +noun( 'novokuznetsk', '-', proper, loc ). +noun( 'novosibirsk', '-', proper, loc ). +noun( 'nuneaton', '-', proper, loc ). +noun( 'nurenburg', '-', proper, loc ). +noun( 'o-level', 'o-levels', count, _ ). +noun( 'oap', '-', count, _ ). +noun( '-', 'oap\'s', count, _ ). +noun( 'oau', '-', count, _ ). +noun( 'oecd', '-', count, _ ). +noun( 'oed', '-', count, _ ). +noun( 'opec', '-', proper, _ ). +noun( 'ot', '-', count, _ ). +noun( 'oakengates', '-', proper, loc ). +noun( 'oban', '-', proper, loc ). +noun( 'oberhausen', '-', proper, loc ). +noun( 'occident', '-', proper, _ ). +noun( 'occidental', 'occidentals', count, _ ). +noun( 'ockbrook', '-', proper, loc ). +noun( 'ockendon', '-', proper, loc ). +noun( 'oct', '-', proper, _ ). +noun( 'october', 'octobers', count, _ ). +noun( 'october', '-', proper, _ ). +noun( 'odessa', '-', proper, loc ). +noun( 'oedipus', '-', proper, _ ). +noun( 'offaly', '-', proper, loc ). +noun( 'offenbach', '-', proper, loc ). +noun( 'ogmore valley', '-', proper, loc ). +noun( 'ohio', '-', proper, loc ). +noun( 'oklahoma', '-', proper, loc ). +noun( 'oklahoma city', '-', proper, loc ). +noun( 'old windsor', '-', proper, loc ). +noun( 'oldenburg', '-', proper, loc ). +noun( 'oldham', '-', proper, loc ). +noun( 'oldland', '-', proper, loc ). +noun( 'olive', '-', proper, per ). +noun( 'oliver', '-', proper, per ). +noun( 'olivia', '-', proper, per ). +noun( 'ollerton', '-', proper, loc ). +noun( 'ollie', '-', proper, per ). +noun( 'olympiad', 'olympiads', count, _ ). +noun( 'olympian', 'olympians', count, _ ). +noun( 'olympics', '-', proper, _ ). +noun( 'oman', '-', proper, loc ). +noun( 'omani', 'omanis', count, _ ). +noun( 'omsk', '-', proper, loc ). +noun( 'ongar', '-', proper, loc ). +noun( 'ontario', '-', proper, loc ). +noun( 'orangeman', 'orangemen', count, _ ). +noun( 'oregon', '-', proper, loc ). +noun( 'orkney', '-', proper, loc ). +noun( 'orleans', '-', proper, loc ). +noun( 'ormskirk', '-', proper, loc ). +noun( 'osaka', '-', proper, loc ). +noun( 'oscar', 'oscars', count, _ ). +noun( 'oscar', '-', proper, per ). +noun( 'oslo', '-', proper, loc ). +noun( 'osnabruck', '-', proper, loc ). +noun( 'ossett', '-', proper, loc ). +noun( 'oswald', '-', proper, per ). +noun( 'oswestry', '-', proper, loc ). +noun( 'otago', '-', proper, loc ). +noun( 'otley', '-', proper, loc ). +noun( 'ottawa', '-', proper, loc ). +noun( 'oviedo', '-', proper, loc ). +noun( 'oxbridge', '-', proper, _ ). +noun( 'oxford', '-', proper, loc ). +noun( 'oxfordshire', '-', proper, loc ). +noun( 'oxon', '-', proper, _ ). +noun( 'oxonian', 'oxonians', count, _ ). +noun( 'oxted', '-', proper, loc ). +noun( 'ozzie', '-', proper, per ). +noun( 'pa', '-', count, _ ). +noun( 'paye', '-', proper, _ ). +noun( 'pc', '-', proper, per ). +noun( 'pdsa', '-', count, _ ). +noun( 'pe', '-', mass, _ ). +noun( 'plc', '-', proper, _ ). +noun( 'pm', '-', count, _ ). +noun( 'po', '-', count, _ ). +noun( 'pow', '-', count, _ ). +noun( 'pr', '-', mass, _ ). +noun( 'pt', '-', mass, _ ). +noun( 'pta', '-', count, _ ). +noun( 'pto', '-', proper, _ ). +noun( 'pacific', '-', proper, _ ). +noun( 'paddy', 'paddies', count, _ ). +noun( 'paddy', '-', proper, per ). +noun( 'paddy-wagon', 'paddy-wagons', count, _ ). +noun( 'padova', '-', proper, loc ). +noun( 'padua', '-', proper, loc ). +noun( 'paisley', '-', proper, loc ). +noun( 'pakistan', '-', proper, loc ). +noun( 'pakistani', 'pakistanis', count, _ ). +noun( 'palembang', '-', proper, loc ). +noun( 'palermo', '-', proper, loc ). +noun( 'palestine', '-', proper, loc ). +noun( 'palestinian', 'palestinians', count, _ ). +noun( 'pam', '-', proper, per ). +noun( 'pamela', '-', proper, per ). +noun( 'pamplona', '-', proper, loc ). +noun( 'panama', '-', proper, loc ). +noun( 'panamanian', 'panamanians', count, _ ). +noun( 'paotow', '-', proper, loc ). +noun( 'papua', '-', proper, loc ). +noun( 'papuan', 'papuans', count, _ ). +noun( 'paraguay', '-', proper, loc ). +noun( 'paraguayan', 'paraguayans', count, _ ). +noun( 'paris', '-', proper, loc ). +noun( 'parisian', 'parisians', count, _ ). +noun( 'parma', '-', proper, loc ). +noun( 'parmesan', '-', mass, _ ). +noun( 'parsee', 'parsees', count, _ ). +noun( 'pashto', '-', mass, _ ). +noun( 'passover', 'passovers', count, _ ). +noun( 'pat', '-', proper, per ). +noun( 'patience', '-', proper, per ). +noun( 'patrai', '-', proper, loc ). +noun( 'patricia', '-', proper, per ). +noun( 'patrick', '-', proper, per ). +noun( 'patty', '-', proper, per ). +noun( 'paul', '-', proper, per ). +noun( 'paula', '-', proper, per ). +noun( 'pauline', '-', proper, per ). +noun( 'pax romana', '-', count, _ ). +noun( 'peacehaven', '-', proper, loc ). +noun( 'pearl', '-', proper, per ). +noun( 'peebles', '-', proper, loc ). +noun( 'peg', '-', proper, per ). +noun( 'peggy', '-', proper, per ). +noun( 'peking', '-', proper, loc ). +noun( 'pelton', '-', proper, loc ). +noun( 'pembroke', '-', proper, loc ). +noun( 'penarth', '-', proper, loc ). +noun( 'pendlebury', '-', proper, loc ). +noun( 'penelope', '-', proper, per ). +noun( 'penicuik', '-', proper, loc ). +noun( 'penki', '-', proper, loc ). +noun( 'pennsylvania', '-', proper, loc ). +noun( 'penny', '-', proper, per ). +noun( 'penrhyn', '-', proper, loc ). +noun( 'penrith', '-', proper, loc ). +noun( 'penryn', '-', proper, loc ). +noun( 'pentateuch', 'pentateuchs', count, _ ). +noun( 'pentecost', '-', mass, _ ). +noun( 'penzance', '-', proper, loc ). +noun( 'percy', '-', proper, per ). +noun( 'perm', '-', proper, loc ). +noun( 'pershore', '-', proper, loc ). +noun( 'persia', '-', proper, loc ). +noun( 'persian', 'persians', count, _ ). +noun( 'perth', '-', proper, loc ). +noun( 'peru', '-', proper, loc ). +noun( 'perugia', '-', proper, loc ). +noun( 'peruvian', 'peruvians', count, _ ). +noun( 'pescara', '-', proper, loc ). +noun( 'pete', '-', proper, per ). +noun( 'peter', '-', proper, per ). +noun( 'peterborough', '-', proper, loc ). +noun( 'peterhead', '-', proper, loc ). +noun( 'peterlee', '-', proper, loc ). +noun( 'petersfield', '-', proper, loc ). +noun( 'phd', '-', count, _ ). +noun( 'pharaoh', 'pharaohs', count, _ ). +noun( 'pharisee', 'pharisees', count, _ ). +noun( 'phil', '-', proper, per ). +noun( 'philadelphia', '-', proper, loc ). +noun( 'philip', '-', proper, per ). +noun( 'philippa', '-', proper, per ). +noun( 'philippine', 'philippines', count, _ ). +noun( 'philippines', '-', proper, loc ). +noun( 'philistine', 'philistines', count, _ ). +noun( 'philistinism', '-', mass, _ ). +noun( 'phnom-penh', '-', proper, loc ). +noun( 'phoebe', '-', proper, per ). +noun( 'phoenix', '-', proper, loc ). +noun( 'phyllis', '-', proper, per ). +noun( 'piacenza', '-', proper, loc ). +noun( 'pill', '-', proper, loc ). +noun( 'piraeus', '-', proper, loc ). +noun( 'pisa', '-', proper, loc ). +noun( 'pisces', '-', proper, _ ). +noun( 'pittsburgh', '-', proper, loc ). +noun( 'plimsoll', 'plimsolls', count, _ ). +noun( 'pluto', '-', proper, _ ). +noun( 'plymouth', '-', proper, loc ). +noun( 'poland', '-', proper, loc ). +noun( 'polaris', '-', count, _ ). +noun( 'polaroid', '-', mass, _ ). +noun( 'pole', 'poles', count, _ ). +noun( 'polish', '-', mass, _ ). +noun( 'polly', '-', proper, per ). +noun( 'pont-llan-fraith', '-', proper, loc ). +noun( 'pontardawe', '-', proper, loc ). +noun( 'pontardulais', '-', proper, loc ). +noun( 'pontefract', '-', proper, loc ). +noun( 'pontycymmer', '-', proper, loc ). +noun( 'pontypool', '-', proper, loc ). +noun( 'poole', '-', proper, loc ). +noun( 'poona', '-', proper, loc ). +noun( 'pope', 'popes', count, _ ). +noun( 'port glasgow', '-', proper, loc ). +noun( 'port talbot', '-', proper, loc ). +noun( 'porthcawl', '-', proper, loc ). +noun( 'porthmadog', '-', proper, loc ). +noun( 'portishead', '-', proper, loc ). +noun( 'portland', '-', proper, loc ). +noun( 'porto alegre', '-', proper, loc ). +noun( 'portsmouth', '-', proper, loc ). +noun( 'portugal', '-', proper, loc ). +noun( 'portuguese', 'portuguese', both, _ ). +noun( 'potsdam', '-', proper, loc ). +noun( 'potters bar', '-', proper, loc ). +noun( 'powys', '-', proper, loc ). +noun( 'poynton', '-', proper, loc ). +noun( 'poznan', '-', proper, loc ). +noun( 'prague', '-', proper, loc ). +noun( 'prato', '-', proper, loc ). +noun( 'pre-raphaelite', 'pre-raphaelites', count, _ ). +noun( 'pres', '-', count, _ ). +noun( 'presbyterian', 'presbyterians', count, _ ). +noun( 'presbyterianism', '-', mass, _ ). +noun( 'prescot', '-', proper, loc ). +noun( 'prestatyn', '-', proper, loc ). +noun( 'preston', '-', proper, loc ). +noun( 'prestonpans', '-', proper, loc ). +noun( 'prestwich', '-', proper, loc ). +noun( 'prestwick', '-', proper, loc ). +noun( 'pretoria', '-', proper, loc ). +noun( 'princes risborough', '-', proper, loc ). +noun( 'priscilla', '-', proper, per ). +noun( 'prof', '-', proper, per ). +noun( 'protestant', 'protestants', count, _ ). +noun( 'protestantism', '-', mass, _ ). +noun( 'providence', '-', proper, loc ). +noun( 'pru', '-', proper, per ). +noun( 'prudence', '-', proper, per ). +noun( 'prudhoe', '-', proper, loc ). +noun( 'prussian', 'prussians', count, _ ). +noun( 'pte', '-', proper, per ). +noun( 'pty', '-', proper, _ ). +noun( 'pudsey', '-', proper, loc ). +noun( 'pullman', 'pullmans', count, _ ). +noun( 'punch', 'punches', count, _ ). +noun( 'pusan', '-', proper, loc ). +noun( 'pwllheli', '-', proper, loc ). +noun( 'pyle', '-', proper, loc ). +noun( 'pyongyang', '-', proper, loc ). +noun( 'qc', '-', count, _ ). +noun( 'qed', '-', proper, _ ). +noun( 'qatar', '-', proper, loc ). +noun( 'qatari', 'qataris', count, _ ). +noun( 'quai d\'orsay', '-', count, _ ). +noun( 'quaker', 'quakers', count, _ ). +noun( 'quebec', '-', proper, loc ). +noun( 'queenborough-in-sheppey', '-', proper, loc ). +noun( 'queensbury', '-', proper, loc ). +noun( 'queensferry', '-', proper, loc ). +noun( 'queensland', '-', proper, loc ). +noun( 'quentin', '-', proper, per ). +noun( 'quinquagesima', 'quinquagesimas', count, _ ). +noun( 'quinquagesima', '-', proper, _ ). +noun( 'quito', '-', proper, loc ). +noun( 'quonset', 'quonsets', count, _ ). +noun( 'r\"ontgen', 'r\"ontgens', count, _ ). +noun( 'ra', '-', count, _ ). +noun( 'rada', '-', proper, _ ). +noun( 'raf', '-', count, _ ). +noun( 'rc', '-', proper, _ ). +noun( 'rip', '-', proper, _ ). +noun( 'rm', '-', count, _ ). +noun( 'rn', '-', count, _ ). +noun( 'rspca', '-', count, _ ). +noun( 'rsvp', '-', proper, _ ). +noun( 'rachel', '-', proper, per ). +noun( 'radcliffe', '-', proper, loc ). +noun( 'radcliffe on trent', '-', proper, loc ). +noun( 'radlett', '-', proper, loc ). +noun( 'radstock', '-', proper, loc ). +noun( 'rainford', '-', proper, loc ). +noun( 'ralph', '-', proper, per ). +noun( 'ramadan', 'ramadans', count, _ ). +noun( 'ramadan', '-', proper, _ ). +noun( 'ramsbottom', '-', proper, loc ). +noun( 'ramsgate', '-', proper, loc ). +noun( 'randolph', '-', proper, per ). +noun( 'rangoon', '-', proper, loc ). +noun( 'ravenna', '-', proper, loc ). +noun( 'rawtenstall', '-', proper, loc ). +noun( 'ray', '-', proper, per ). +noun( 'raymond', '-', proper, per ). +noun( 'rd', '-', proper, _ ). +noun( 'reading', '-', proper, loc ). +noun( 'realtor', 'realtors', count, _ ). +noun( 'rebecca', '-', proper, per ). +noun( 'recife', '-', proper, loc ). +noun( 'recklinghausen', '-', proper, loc ). +noun( 'redbridge', '-', proper, loc ). +noun( 'redditch', '-', proper, loc ). +noun( 'redruth', '-', proper, loc ). +noun( 'reg', '-', proper, per ). +noun( 'regensburg', '-', proper, loc ). +noun( 'regina', '-', proper, _ ). +noun( 'reginald', '-', proper, per ). +noun( 'reich', 'reichs', count, _ ). +noun( 'reigate', '-', proper, loc ). +noun( 'remscheid', '-', proper, loc ). +noun( 'renfrew', '-', proper, loc ). +noun( 'rennes', '-', proper, loc ). +noun( 'retford', '-', proper, loc ). +noun( 'rev', '-', proper, per ). +noun( 'revd', '-', proper, per ). +noun( 'rex', '-', proper, per ). +noun( 'reykjavik', '-', proper, loc ). +noun( 'rheims', '-', proper, loc ). +noun( 'rheydt', '-', proper, loc ). +noun( 'rhine', '-', proper, _ ). +noun( 'rhinestone', 'rhinestones', count, _ ). +noun( 'rhode', '-', proper, loc ). +noun( 'rhondda', '-', proper, loc ). +noun( 'rhosllanerchrugog', '-', proper, loc ). +noun( 'rhyl', '-', proper, loc ). +noun( 'rhymney', '-', proper, loc ). +noun( 'richard', '-', proper, per ). +noun( 'richmond', '-', proper, loc ). +noun( 'richmond upon thames', '-', proper, loc ). +noun( 'rick', '-', proper, per ). +noun( 'rickmansworth', '-', proper, loc ). +noun( 'ricky', '-', proper, per ). +noun( 'riesling', 'rieslings', count, _ ). +noun( 'riga', '-', proper, loc ). +noun( 'rijeka', '-', proper, loc ). +noun( 'rimini', '-', proper, loc ). +noun( 'ringwood', '-', proper, loc ). +noun( 'rio de janeiro', '-', proper, loc ). +noun( 'ripley', '-', proper, loc ). +noun( 'ripon', '-', proper, loc ). +noun( 'risborough', '-', proper, loc ). +noun( 'risca', '-', proper, loc ). +noun( 'rishton', '-', proper, loc ). +noun( 'rita', '-', proper, per ). +noun( 'riviera', '-', proper, _ ). +noun( 'rob', '-', proper, per ). +noun( 'robert', '-', proper, per ). +noun( 'robin', '-', proper, per ). +noun( 'rochdale', '-', proper, loc ). +noun( 'rochester', '-', proper, loc ). +noun( 'rod', '-', proper, per ). +noun( 'rodney', '-', proper, per ). +noun( 'roentgen', 'roentgens', count, _ ). +noun( 'roger', '-', proper, per ). +noun( 'romaic', '-', mass, _ ). +noun( 'roman', 'romans', count, _ ). +noun( 'romanesque', '-', mass, _ ). +noun( 'romania', '-', proper, loc ). +noun( 'romanian', 'romanians', both, _ ). +noun( 'romany', 'romanies', both, _ ). +noun( 'rome', '-', proper, loc ). +noun( 'romsey', '-', proper, loc ). +noun( 'ron', '-', proper, per ). +noun( 'ronald', '-', proper, per ). +noun( 'roneo', 'roneos', count, _ ). +noun( 'ronnie', '-', proper, per ). +noun( 'roquefort', '-', mass, _ ). +noun( 'rosalie', '-', proper, per ). +noun( 'rosalind', '-', proper, per ). +noun( 'rosamund', '-', proper, per ). +noun( 'rosario', '-', proper, loc ). +noun( 'roscommon', '-', proper, loc ). +noun( 'rose', '-', proper, per ). +noun( 'rosemary', '-', proper, per ). +noun( 'rosie', '-', proper, per ). +noun( 'roslyn', '-', proper, per ). +noun( 'ross-on-wye', '-', proper, loc ). +noun( 'rossington', '-', proper, loc ). +noun( 'rosslare', '-', proper, loc ). +noun( 'rostock', '-', proper, loc ). +noun( 'rostov-na-donu', '-', proper, loc ). +noun( 'rotarian', 'rotarians', count, _ ). +noun( 'rotherham', '-', proper, loc ). +noun( 'rothesay', '-', proper, loc ). +noun( 'rothwell', '-', proper, loc ). +noun( 'rotterdam', '-', proper, loc ). +noun( 'roubaix', '-', proper, loc ). +noun( 'rouen', '-', proper, loc ). +noun( 'roundhead', 'roundheads', count, _ ). +noun( 'rowlands gill', '-', proper, loc ). +noun( 'roy', '-', proper, per ). +noun( 'royston', '-', proper, loc ). +noun( 'rt hon', '-', proper, _ ). +noun( 'rubicon', 'rubicons', count, _ ). +noun( 'ruddington', '-', proper, loc ). +noun( 'rudolf', '-', proper, per ). +noun( 'rudy', '-', proper, per ). +noun( 'rugby', '-', proper, loc ). +noun( 'rugeley', '-', proper, loc ). +noun( 'runcorn', '-', proper, loc ). +noun( 'rupert', '-', proper, per ). +noun( 'russia', '-', proper, loc ). +noun( 'russian', 'russians', both, _ ). +noun( 'ruth', '-', proper, per ). +noun( 'rutherglen', '-', proper, loc ). +noun( 'rutland', '-', proper, loc ). +noun( 'rwanda', '-', proper, loc ). +noun( 'rwandan', 'rwandans', count, _ ). +noun( 'ryde', '-', proper, loc ). +noun( 'ryehill', '-', proper, loc ). +noun( 'salt', '-', proper, _ ). +noun( 'sos', '-', count, _ ). +noun( '-', 'soss', count, _ ). +noun( 'srn', '-', count, _ ). +noun( 'ss', '-', count, _ ). +noun( 'std', '-', proper, _ ). +noun( 'saarbrucken', '-', proper, loc ). +noun( 'sabadeli', '-', proper, loc ). +noun( 'sabah', '-', proper, loc ). +noun( 'sabahan', 'sabahans', count, _ ). +noun( 'sabbath', 'sabbaths', count, _ ). +noun( 'sacramento', '-', proper, loc ). +noun( 'saffron walden', '-', proper, loc ). +noun( 'sagittarius', '-', proper, _ ). +noun( 'saigon', '-', proper, loc ). +noun( 'salamanca', '-', proper, loc ). +noun( 'sale', '-', proper, loc ). +noun( 'salerno', '-', proper, loc ). +noun( 'salford', '-', proper, loc ). +noun( 'salisbury', '-', proper, loc ). +noun( 'sally', '-', proper, per ). +noun( 'saltash', '-', proper, loc ). +noun( 'saltburn', '-', proper, loc ). +noun( 'saltcoats', '-', proper, loc ). +noun( 'salvador', '-', proper, loc ). +noun( 'salvadorean', 'salvadoreans', count, _ ). +noun( 'salzburg', '-', proper, loc ). +noun( 'sam', '-', proper, per ). +noun( 'samantha', '-', proper, per ). +noun( 'samaritan', 'samaritans', count, _ ). +noun( 'sammy', '-', proper, per ). +noun( 'samoa', '-', proper, loc ). +noun( 'samoan', 'samoans', count, _ ). +noun( 'samuel', '-', proper, per ). +noun( 'san antonio', '-', proper, loc ). +noun( 'san bernardino', '-', proper, loc ). +noun( 'san diego', '-', proper, loc ). +noun( 'san francisco', '-', proper, loc ). +noun( 'san jose', '-', proper, loc ). +noun( 'san juan', '-', proper, loc ). +noun( 'san marinese', 'san marinese', count, _ ). +noun( 'san marino', '-', proper, loc ). +noun( 'san sebastian', '-', proper, loc ). +noun( 'sandbach', '-', proper, loc ). +noun( 'sandown', '-', proper, loc ). +noun( 'sandra', '-', proper, per ). +noun( 'sandy', '-', proper, per ). +noun( 'sango', '-', mass, _ ). +noun( 'sanskrit', '-', mass, _ ). +noun( 'santa claus', 'santa clauses', count, _ ). +noun( 'santa claus', '-', proper, _ ). +noun( 'santander', '-', proper, loc ). +noun( 'santiago', '-', proper, loc ). +noun( 'santo domingo', '-', proper, loc ). +noun( 'santos', '-', proper, loc ). +noun( 'sao paolo', '-', proper, loc ). +noun( 'sapporo', '-', proper, loc ). +noun( 'sara', '-', proper, per ). +noun( 'saracen', 'saracens', count, _ ). +noun( 'sarah', '-', proper, per ). +noun( 'sarajevo', '-', proper, loc ). +noun( 'saratov', '-', proper, loc ). +noun( 'sarawak', '-', proper, loc ). +noun( 'sarawakian', 'sarawakians', count, _ ). +noun( 'sarisbury', '-', proper, loc ). +noun( 'saskatchewan', '-', proper, loc ). +noun( 'sassari', '-', proper, loc ). +noun( 'sassenach', 'sassenachs', count, _ ). +noun( 'sat', '-', proper, _ ). +noun( 'satan', 'satans', count, _ ). +noun( 'saturday', 'saturdays', count, _ ). +noun( 'saturday', '-', proper, _ ). +noun( 'saturn', '-', proper, _ ). +noun( 'sauchie', '-', proper, loc ). +noun( 'saudi arabia', '-', proper, loc ). +noun( 'saudi arabian', 'saudi arabians', count, _ ). +noun( 'sawbridgeworth', '-', proper, loc ). +noun( 'saxon', 'saxons', count, _ ). +noun( 'scandinavian', 'scandinavians', count, _ ). +noun( 'scarborough', '-', proper, loc ). +noun( 'schwerin', '-', proper, loc ). +noun( 'sci fi', '-', mass, _ ). +noun( 'scorpio', '-', proper, _ ). +noun( 'scot', 'scots', count, _ ). +noun( 'scotch', 'scotches', both, _ ). +noun( 'scotchman', 'scotchmen', count, _ ). +noun( 'scotchwoman', 'scotchwomen', count, _ ). +noun( 'scotland', '-', proper, loc ). +noun( 'scotland yard', '-', proper, _ ). +noun( 'scotsman', 'scotsmen', count, _ ). +noun( 'scotswoman', 'scotswomen', count, _ ). +noun( 'scrooge', 'scrooges', count, _ ). +noun( 'scunthorpe', '-', proper, loc ). +noun( 'scylla', 'scyllas', count, _ ). +noun( 'seaford', '-', proper, loc ). +noun( 'seaham', '-', proper, loc ). +noun( 'sealyham', 'sealyhams', count, _ ). +noun( 'seamus', '-', proper, per ). +noun( 'sean', '-', proper, per ). +noun( 'seaton burn', '-', proper, loc ). +noun( 'seaton delaval', '-', proper, loc ). +noun( 'seattle', '-', proper, loc ). +noun( 'secretary-general', 'secretary-generals', count, _ ). +noun( 'securicor', '-', proper, _ ). +noun( 'selby', '-', proper, loc ). +noun( 'selkirk', '-', proper, loc ). +noun( 'selsey', '-', proper, loc ). +noun( 'selston', '-', proper, loc ). +noun( 'semarang', '-', proper, loc ). +noun( 'semite', 'semites', count, _ ). +noun( 'senegal', '-', proper, loc ). +noun( 'senegalese', 'senegalese', count, _ ). +noun( 'seoul', '-', proper, loc ). +noun( 'sept', '-', proper, _ ). +noun( 'september', 'septembers', count, _ ). +noun( 'september', '-', proper, _ ). +noun( 'septuagint', 'septuagints', count, _ ). +noun( 'serbo-croat', '-', mass, _ ). +noun( 'serjeant-at-arms', 'serjeants-at-arms', count, _ ). +noun( 'sesotho', '-', mass, _ ). +noun( 'setswana', '-', mass, _ ). +noun( 'seven sisters', '-', proper, loc ). +noun( 'sevenoaks', '-', proper, loc ). +noun( 'sevilla', '-', proper, loc ). +noun( 'seville', '-', proper, loc ). +noun( 'seychelles', '-', proper, loc ). +noun( 'seychellois', 'seychellois', count, _ ). +noun( 'sgt', '-', proper, per ). +noun( 'shanghai', '-', proper, loc ). +noun( 'shanklin', '-', proper, loc ). +noun( 'sharon', '-', proper, per ). +noun( 'shavian', 'shavians', count, _ ). +noun( 'sheerness', '-', proper, loc ). +noun( 'sheffield', '-', proper, loc ). +noun( 'sheila', '-', proper, per ). +noun( 'shelford', '-', proper, loc ). +noun( 'shepshed', '-', proper, loc ). +noun( 'shepton mallet', '-', proper, loc ). +noun( 'sheraton', '-', mass, _ ). +noun( 'sherbourne', '-', proper, loc ). +noun( 'sheringham', '-', proper, loc ). +noun( 'shetland', '-', proper, loc ). +noun( 'shevington', '-', proper, loc ). +noun( 'shihkiachwang', '-', proper, loc ). +noun( 'shildon', '-', proper, loc ). +noun( 'shirebrook', '-', proper, loc ). +noun( 'shiremoor', '-', proper, loc ). +noun( 'shirley', '-', proper, per ). +noun( 'shotton', '-', proper, loc ). +noun( 'shotts', '-', proper, loc ). +noun( 'shrewsbury', '-', proper, loc ). +noun( 'shropshire', '-', proper, loc ). +noun( 'shrove tuesday', 'shrove tuesdays', count, _ ). +noun( 'shrove tuesday', '-', proper, _ ). +noun( 'siam', '-', proper, loc ). +noun( 'siamese', 'siamese', count, _ ). +noun( 'sian', '-', proper, loc ). +noun( 'sicilian', 'sicilians', count, _ ). +noun( 'sid', '-', proper, per ). +noun( 'sidmouth', '-', proper, loc ). +noun( 'sidney', '-', proper, per ). +noun( 'sierra leone', '-', proper, loc ). +noun( 'sierra leonian', 'sierra leonians', count, _ ). +noun( 'sikh', 'sikhs', count, _ ). +noun( 'sileby', '-', proper, loc ). +noun( 'silsden', '-', proper, loc ). +noun( 'silvia', '-', proper, per ). +noun( 'simon', '-', proper, per ). +noun( 'singapore', '-', proper, loc ). +noun( 'singaporean', 'singaporeans', count, _ ). +noun( 'sinhala', '-', mass, _ ). +noun( 'sinhalese', 'sinhalese', count, _ ). +noun( 'sining', '-', proper, loc ). +noun( 'sinn fein', '-', proper, _ ). +noun( 'sinologist', 'sinologists', count, _ ). +noun( 'sinology', '-', mass, _ ). +noun( 'sioux', 'sioux', count, _ ). +noun( 'sir roger de coverley', '-', count, _ ). +noun( 'siracusa', '-', proper, loc ). +noun( 'siswati', '-', mass, _ ). +noun( 'sittingbourne', '-', proper, loc ). +noun( 'skegness', '-', proper, loc ). +noun( 'skelmanthorpe', '-', proper, loc ). +noun( 'skelmersdale', '-', proper, loc ). +noun( 'skewen', '-', proper, loc ). +noun( 'skipton', '-', proper, loc ). +noun( 'skopje', '-', proper, loc ). +noun( 'slav', 'slavs', count, _ ). +noun( 'sleaford', '-', proper, loc ). +noun( 'sligo', '-', proper, loc ). +noun( 'slough', '-', proper, loc ). +noun( 'slovak', '-', mass, _ ). +noun( 'slovenian', 'slovenians', both, _ ). +noun( 'snr', '-', proper, _ ). +noun( 'soc', '-', count, _ ). +noun( 'sofia', '-', proper, loc ). +noun( 'soho', '-', proper, _ ). +noun( 'sol', '-', proper, _ ). +noun( 'solicitor-general', 'solicitor-generals', count, _ ). +noun( 'solihull', '-', proper, loc ). +noun( 'solingen', '-', proper, loc ). +noun( 'solon', '-', proper, _ ). +noun( 'somali', 'somalis', both, _ ). +noun( 'somalia', '-', proper, loc ). +noun( 'somalian', 'somalians', count, _ ). +noun( 'somercotes', '-', proper, loc ). +noun( 'somerset', '-', proper, loc ). +noun( 'sonia', '-', proper, per ). +noun( 'soochow', '-', proper, loc ). +noun( 'sophia', '-', proper, per ). +noun( 'sophie', '-', proper, per ). +noun( 'sotho', 'sothos', both, _ ). +noun( 'south kirkby', '-', proper, loc ). +noun( 'south normantown', '-', proper, loc ). +noun( 'south ockendon', '-', proper, loc ). +noun( 'south shields', '-', proper, loc ). +noun( 'southampton', '-', proper, loc ). +noun( 'southend-on-sea', '-', proper, loc ). +noun( 'southport', '-', proper, loc ). +noun( 'southwark', '-', proper, loc ). +noun( 'soviet', 'soviets', count, _ ). +noun( 'spain', '-', proper, loc ). +noun( 'spalding', '-', proper, loc ). +noun( 'spaniard', 'spaniards', count, _ ). +noun( 'spanish', '-', mass, _ ). +noun( 'spartan', 'spartans', count, _ ). +noun( 'spenborough', '-', proper, loc ). +noun( 'spennymoor', '-', proper, loc ). +noun( 'split', '-', proper, loc ). +noun( 'spode', '-', mass, _ ). +noun( 'springfield', '-', proper, loc ). +noun( 'sq', '-', proper, _ ). +noun( 'sr', '-', proper, per ). +noun( 'sri lanka', '-', proper, loc ). +noun( 'sri lankan', 'sri lankans', count, _ ). +noun( 'st', '-', proper, _ ). +noun( 'st albans', '-', proper, loc ). +noun( 'st andrews', '-', proper, loc ). +noun( 'st andrews major', '-', proper, loc ). +noun( 'st austell', '-', proper, loc ). +noun( 'st blazey', '-', proper, loc ). +noun( 'st helens', '-', proper, loc ). +noun( 'st ives', '-', proper, loc ). +noun( 'st louis', '-', proper, loc ). +noun( 'st neots', '-', proper, loc ). +noun( 'st paul', '-', proper, loc ). +noun( 'st petersburg', '-', proper, loc ). +noun( 'st stephen', '-', proper, loc ). +noun( 'sta', '-', proper, _ ). +noun( 'stafford', '-', proper, loc ). +noun( 'staffordshire', '-', proper, loc ). +noun( 'stakeford', '-', proper, loc ). +noun( 'stalybridge', '-', proper, loc ). +noun( 'stamford', '-', proper, loc ). +noun( 'stan', '-', proper, per ). +noun( 'stanford', '-', proper, loc ). +noun( 'stanley', '-', proper, per ). +noun( 'statehouse', 'statehouses', count, _ ). +noun( 'stella', '-', proper, per ). +noun( 'sten', '-', proper, _ ). +noun( 'stephanie', '-', proper, per ). +noun( 'stephen', '-', proper, per ). +noun( 'steve', '-', proper, per ). +noun( 'steven', '-', proper, per ). +noun( 'stevenage', '-', proper, loc ). +noun( 'stevenston', '-', proper, loc ). +noun( 'stewart', '-', proper, per ). +noun( 'steyning', '-', proper, loc ). +noun( 'stilton', 'stiltons', both, _ ). +noun( 'stirling', '-', proper, loc ). +noun( 'stockholm', '-', proper, loc ). +noun( 'stockport', '-', proper, loc ). +noun( 'stocksbridge', '-', proper, loc ). +noun( 'stoke-on-trent', '-', proper, loc ). +noun( 'stone', '-', proper, loc ). +noun( 'stonehouse', '-', proper, loc ). +noun( 'stornoway', '-', proper, loc ). +noun( 'stotfold', '-', proper, loc ). +noun( 'stourbridge', '-', proper, loc ). +noun( 'stourport-on-severn', '-', proper, loc ). +noun( 'stowmarket', '-', proper, loc ). +noun( 'stranraer', '-', proper, loc ). +noun( 'strasbourg', '-', proper, loc ). +noun( 'stratford-on-avon', '-', proper, loc ). +noun( 'strathaven', '-', proper, loc ). +noun( 'strathclyde', '-', proper, loc ). +noun( 'street', '-', proper, loc ). +noun( 'stretford', '-', proper, loc ). +noun( 'stroud', '-', proper, loc ). +noun( 'stuart', '-', proper, per ). +noun( 'studley', '-', proper, loc ). +noun( 'stuttgart', '-', proper, loc ). +noun( 'styx', '-', proper, _ ). +noun( 'suchow', '-', proper, loc ). +noun( 'sudan', '-', proper, loc ). +noun( 'sudanese', 'sudanese', count, _ ). +noun( 'sudbury', '-', proper, loc ). +noun( 'sue', '-', proper, per ). +noun( 'suffolk', '-', proper, loc ). +noun( 'sumatra', '-', proper, loc ). +noun( 'sumatran', 'sumatrans', count, _ ). +noun( 'sun', '-', proper, _ ). +noun( 'sunday', 'sundays', count, _ ). +noun( 'sunday', '-', proper, _ ). +noun( 'sunderland', '-', proper, loc ). +noun( 'supt', '-', proper, per ). +noun( 'surabaja', '-', proper, loc ). +noun( 'surrey', '-', proper, loc ). +noun( 'susan', '-', proper, per ). +noun( 'susanna', '-', proper, per ). +noun( 'susie', '-', proper, per ). +noun( 'sussex', '-', proper, loc ). +noun( 'sutton', '-', proper, loc ). +noun( 'sutton coldfield', '-', proper, loc ). +noun( 'sutton in ashfield', '-', proper, loc ). +noun( 'sutton-at-hone', '-', proper, loc ). +noun( 'suzanne', '-', proper, per ). +noun( 'sverdlovsk', '-', proper, loc ). +noun( 'swadlincote', '-', proper, loc ). +noun( 'swahili', '-', mass, _ ). +noun( 'swanage', '-', proper, loc ). +noun( 'swanley', '-', proper, loc ). +noun( 'swansea', '-', proper, loc ). +noun( 'swazi', 'swazis', both, _ ). +noun( 'swaziland', '-', proper, loc ). +noun( 'swede', 'swedes', count, _ ). +noun( 'sweden', '-', proper, loc ). +noun( 'swedish', '-', mass, _ ). +noun( 'swindon', '-', proper, loc ). +noun( 'swinton', '-', proper, loc ). +noun( 'swiss', 'swiss', count, _ ). +noun( 'switzerland', '-', proper, loc ). +noun( 'sydney', '-', proper, loc ). +noun( 'sylvia', '-', proper, per ). +noun( 'syracuse', '-', proper, loc ). +noun( 'syria', '-', proper, loc ). +noun( 'syrian', 'syrians', count, _ ). +noun( 'syston', '-', proper, loc ). +noun( 't-junction', 't-junctions', count, _ ). +noun( 't-shirt', 't-shirts', count, _ ). +noun( 't-square', 't-squares', count, _ ). +noun( 'tb', '-', mass, _ ). +noun( 'tnt', '-', mass, _ ). +noun( 'tuc', '-', count, _ ). +noun( 'tv', '-', count, _ ). +noun( '-', 'tvs', count, _ ). +noun( 'tadley', '-', proper, loc ). +noun( 'taegu', '-', proper, loc ). +noun( 'taffy', 'taffies', count, _ ). +noun( 'tahiti', '-', proper, loc ). +noun( 'tahitian', 'tahitians', count, _ ). +noun( 'taipei', '-', proper, loc ). +noun( 'taiwan', '-', proper, loc ). +noun( 'taiwanese', 'taiwanese', count, _ ). +noun( 'taiyuan', '-', proper, loc ). +noun( 'talmud', 'talmuds', count, _ ). +noun( 'tamil', 'tamils', both, _ ). +noun( 'tammany', '-', count, _ ). +noun( 'tampere', '-', proper, loc ). +noun( 'tamworth', '-', proper, loc ). +noun( 'tangshan', '-', proper, loc ). +noun( 'tanzania', '-', proper, loc ). +noun( 'tanzanian', 'tanzanians', count, _ ). +noun( 'taranaki', '-', proper, loc ). +noun( 'taranto', '-', proper, loc ). +noun( 'tarrasa', '-', proper, loc ). +noun( 'tashkent', '-', proper, loc ). +noun( 'tasmania', '-', proper, loc ). +noun( 'taunton', '-', proper, loc ). +noun( 'taurus', '-', proper, _ ). +noun( 'taverham', '-', proper, loc ). +noun( 'tavistock', '-', proper, loc ). +noun( 'tayside', '-', proper, loc ). +noun( 'tbilisi', '-', proper, loc ). +noun( 'te deum', 'te deums', count, _ ). +noun( 'tech', '-', count, _ ). +noun( 'technicolor', '-', mass, _ ). +noun( 'ted', 'teds', count, _ ). +noun( 'ted', '-', proper, per ). +noun( 'teddy', '-', proper, per ). +noun( 'teddy boy', 'teddy boys', count, _ ). +noun( 'teesside', '-', proper, loc ). +noun( 'teheran', '-', proper, loc ). +noun( 'teignmouth', '-', proper, loc ). +noun( 'tel-aviv', '-', proper, loc ). +noun( 'telford', '-', proper, loc ). +noun( 'telstar', '-', proper, _ ). +noun( 'tenby', '-', proper, loc ). +noun( 'tennessee', '-', proper, loc ). +noun( 'tenterden', '-', proper, loc ). +noun( 'terence', '-', proper, per ). +noun( 'teresa', '-', proper, per ). +noun( 'termi', '-', proper, loc ). +noun( 'terr', '-', proper, _ ). +noun( 'terry', '-', proper, per ). +noun( 'tess', '-', proper, per ). +noun( 'tessa', '-', proper, per ). +noun( 'teuton', 'teutons', count, _ ). +noun( 'tewkesbury', '-', proper, loc ). +noun( 'texan', 'texans', count, _ ). +noun( 'texas', '-', proper, loc ). +noun( 'thai', 'thais', both, _ ). +noun( 'thailand', '-', proper, loc ). +noun( 'thame', '-', proper, loc ). +noun( 'thanksgiving', 'thanksgivings', count, _ ). +noun( 'thatcham', '-', proper, loc ). +noun( 'theo', '-', proper, per ). +noun( 'theodore', '-', proper, per ). +noun( 'theresa', '-', proper, per ). +noun( 'thespian', 'thespians', count, _ ). +noun( 'thessaloniki', '-', proper, loc ). +noun( 'thetford', '-', proper, loc ). +noun( 'thionville', '-', proper, loc ). +noun( 'thirsk', '-', proper, loc ). +noun( 'thomas', '-', proper, per ). +noun( 'thornbury', '-', proper, loc ). +noun( 'thorne', '-', proper, loc ). +noun( 'thurcroft', '-', proper, loc ). +noun( 'thurmaston', '-', proper, loc ). +noun( 'thurrock', '-', proper, loc ). +noun( 'thurs', '-', proper, _ ). +noun( 'thursday', 'thursdays', count, _ ). +noun( 'thursday', '-', proper, _ ). +noun( 'thurso', '-', proper, loc ). +noun( 'tibet', '-', proper, loc ). +noun( 'tibetan', 'tibetans', both, _ ). +noun( 'tidworth', '-', proper, loc ). +noun( 'tientsin', '-', proper, loc ). +noun( 'tilburg', '-', proper, loc ). +noun( 'tilbury', '-', proper, loc ). +noun( 'tim', '-', proper, per ). +noun( 'timmy', '-', proper, per ). +noun( 'timothy', '-', proper, per ). +noun( 'tina', '-', proper, per ). +noun( 'tipperary', '-', proper, loc ). +noun( 'tiverton', '-', proper, loc ). +noun( 'tobago', '-', proper, loc ). +noun( 'tobagonian', 'tobagonians', count, _ ). +noun( 'toby', '-', proper, per ). +noun( 'todmorden', '-', proper, loc ). +noun( 'togo', '-', proper, loc ). +noun( 'togolese', 'togolese', count, _ ). +noun( 'tokay', '-', mass, _ ). +noun( 'tokyo', '-', proper, loc ). +noun( 'tom', '-', proper, per ). +noun( 'tommy', '-', proper, per ). +noun( 'tonbridge', '-', proper, loc ). +noun( 'tonga', '-', proper, loc ). +noun( 'tongan', 'tongans', both, _ ). +noun( 'tony', '-', proper, per ). +noun( 'tonyrefail', '-', proper, loc ). +noun( 'torbay', '-', proper, loc ). +noun( 'torino', '-', proper, loc ). +noun( 'toronto', '-', proper, loc ). +noun( 'tory', 'tories', count, _ ). +noun( 'totnes', '-', proper, loc ). +noun( 'toulon', '-', proper, loc ). +noun( 'toulouse', '-', proper, loc ). +noun( 'tours', '-', proper, loc ). +noun( 'tower hamlets', '-', proper, loc ). +noun( 'tracy', '-', proper, per ). +noun( 'tralee', '-', proper, loc ). +noun( 'tranent', '-', proper, loc ). +noun( 'trappist', 'trappists', count, _ ). +noun( 'tredegar', '-', proper, loc ). +noun( 'trevor', '-', proper, per ). +noun( 'trieste', '-', proper, loc ). +noun( 'tring', '-', proper, loc ). +noun( 'trinidad', '-', proper, loc ). +noun( 'trinidadian', 'trinidadians', count, _ ). +noun( 'trojan', 'trojans', count, _ ). +noun( 'troon', '-', proper, loc ). +noun( 'trowbridge', '-', proper, loc ). +noun( 'truro', '-', proper, loc ). +noun( 'tsar', 'tsars', count, _ ). +noun( 'tsarina', 'tsarinas', count, _ ). +noun( 'tsinan', '-', proper, loc ). +noun( 'tsingtao', '-', proper, loc ). +noun( 'tsitsihar', '-', proper, loc ). +noun( 'tswana', 'tswanas', both, _ ). +noun( 'tues', '-', proper, _ ). +noun( 'tuesday', 'tuesdays', count, _ ). +noun( 'tuesday', '-', proper, _ ). +noun( 'tullibody', '-', proper, loc ). +noun( 'tunbridge wells', '-', proper, loc ). +noun( 'tunis', '-', proper, loc ). +noun( 'tunisia', '-', proper, loc ). +noun( 'tunisian', 'tunisians', count, _ ). +noun( 'turin', '-', proper, loc ). +noun( 'turk', 'turks', count, _ ). +noun( 'turkey', '-', proper, loc ). +noun( 'turkish', '-', mass, _ ). +noun( 'turku', '-', proper, loc ). +noun( 'twelfth-night', 'twelfth-nights', count, _ ). +noun( 'twelfth-night', '-', proper, _ ). +noun( 'tyne', '-', proper, loc ). +noun( 'tynemouth', '-', proper, loc ). +noun( 'tyrone', '-', proper, loc ). +noun( 'tzupo', '-', proper, loc ). +noun( 'u-boat', 'u-boats', count, _ ). +noun( 'u-turn', 'u-turns', count, _ ). +noun( 'udi', '-', proper, _ ). +noun( 'ufo', '-', count, _ ). +noun( '-', 'ufo\'s', count, _ ). +noun( 'uk', '-', count, _ ). +noun( 'un', '-', count, _ ). +noun( 'unesco', '-', proper, _ ). +noun( 'unicef', '-', proper, _ ). +noun( 'us', '-', count, _ ). +noun( 'usa', '-', count, _ ). +noun( 'usaf', '-', count, _ ). +noun( 'usn', '-', count, _ ). +noun( 'uss', '-', count, _ ). +noun( 'ussr', '-', count, _ ). +noun( 'uddingston', '-', proper, loc ). +noun( 'udine', '-', proper, loc ). +noun( 'ufa', '-', proper, loc ). +noun( 'uganda', '-', proper, loc ). +noun( 'ugandan', 'ugandans', count, _ ). +noun( 'ulster', '-', proper, loc ). +noun( 'ulverston', '-', proper, loc ). +noun( 'unitarian', 'unitarians', count, _ ). +noun( 'unitarianism', '-', mass, _ ). +noun( 'univ', '-', proper, _ ). +noun( 'up holland', '-', proper, loc ). +noun( 'upton', '-', proper, loc ). +noun( 'uranus', '-', proper, _ ). +noun( 'urdu', '-', mass, _ ). +noun( 'ursula', '-', proper, per ). +noun( 'uruguay', '-', proper, loc ). +noun( 'uruguayan', 'uruguayans', count, _ ). +noun( 'urumchi', '-', proper, loc ). +noun( 'ushaw moor', '-', proper, loc ). +noun( 'utah', '-', proper, loc ). +noun( 'utopia', 'utopias', count, _ ). +noun( 'utrecht', '-', proper, loc ). +noun( 'uttoxeter', '-', proper, loc ). +noun( 'v and a', '-', count, _ ). +noun( 'vat', '-', mass, _ ). +noun( 'vc', '-', count, _ ). +noun( 'vd', '-', mass, _ ). +noun( 'vhf', '-', proper, _ ). +noun( 'vip', '-', count, _ ). +noun( '-', 'vips', count, _ ). +noun( 'vp', '-', count, _ ). +noun( 'vso', '-', proper, _ ). +noun( 'valencia', '-', proper, loc ). +noun( 'valenciennes', '-', proper, loc ). +noun( 'valladolid', '-', proper, loc ). +noun( 'vancouver', '-', proper, loc ). +noun( 'vandal', 'vandals', count, _ ). +noun( 'vanessa', '-', proper, per ). +noun( 'varanasi', '-', proper, loc ). +noun( 'vasteras', '-', proper, loc ). +noun( 'vatican', 'vaticans', count, _ ). +noun( 'venezia', '-', proper, loc ). +noun( 'venezuela', '-', proper, loc ). +noun( 'venezuelan', 'venezuelans', count, _ ). +noun( 'venice', '-', proper, loc ). +noun( 'ventnor', '-', proper, loc ). +noun( 'venus', '-', proper, _ ). +noun( 'vera', '-', proper, per ). +noun( 'vermont', '-', proper, loc ). +noun( 'vernon', '-', proper, per ). +noun( 'verona', '-', proper, loc ). +noun( 'veronica', '-', proper, per ). +noun( 'vic', '-', proper, per ). +noun( 'vicenza', '-', proper, loc ). +noun( 'vicky', '-', proper, per ). +noun( 'victor', '-', proper, per ). +noun( 'victoria', '-', proper, per ). +noun( 'victorian', 'victorians', count, _ ). +noun( 'victoriana', '-', mass, _ ). +noun( 'vienna', '-', proper, loc ). +noun( 'vietnam', '-', proper, loc ). +noun( 'vietnamese', 'vietnamese', both, _ ). +noun( 'viewpark', '-', proper, loc ). +noun( 'vigo', '-', proper, loc ). +noun( 'viking', 'vikings', count, _ ). +noun( 'vince', '-', proper, per ). +noun( 'vincent', '-', proper, per ). +noun( 'viola', '-', proper, per ). +noun( 'violet', '-', proper, per ). +noun( 'virginia', '-', mass, _ ). +noun( 'virginia', '-', proper, per ). +noun( 'virginia water', '-', proper, loc ). +noun( 'virgo', '-', proper, _ ). +noun( 'vitoria', '-', proper, loc ). +noun( 'viv', '-', proper, per ). +noun( 'vivian', '-', proper, per ). +noun( 'vivien', '-', proper, per ). +noun( 'vivienne', '-', proper, per ). +noun( 'volgograd', '-', proper, loc ). +noun( 'voronezh', '-', proper, loc ). +noun( 'vulgate', 'vulgates', count, _ ). +noun( 'wc', '-', count, _ ). +noun( '-', 'wcs', count, _ ). +noun( 'who', '-', count, _ ). +noun( 'wi', '-', count, _ ). +noun( 'wrac', '-', count, _ ). +noun( 'wraf', '-', count, _ ). +noun( 'wrns', '-', count, _ ). +noun( 'wakefield', '-', proper, loc ). +noun( 'wales', '-', proper, loc ). +noun( 'wall street', '-', proper, _ ). +noun( 'wallace', '-', proper, per ). +noun( 'wallasey', '-', proper, loc ). +noun( 'wallingford', '-', proper, loc ). +noun( 'wallsend', '-', proper, loc ). +noun( 'wally', '-', proper, per ). +noun( 'walsall', '-', proper, loc ). +noun( 'walsham', '-', proper, loc ). +noun( 'walter', '-', proper, per ). +noun( 'waltham forest', '-', proper, loc ). +noun( 'walton', '-', proper, loc ). +noun( 'wandsworth', '-', proper, loc ). +noun( 'wantage', '-', proper, loc ). +noun( 'ware', '-', proper, loc ). +noun( 'warley', '-', proper, loc ). +noun( 'warminster', '-', proper, loc ). +noun( 'warrington', '-', proper, loc ). +noun( 'warsaw', '-', proper, loc ). +noun( 'warsop', '-', proper, loc ). +noun( 'warwick', '-', proper, loc ). +noun( 'warwickshire', '-', proper, loc ). +noun( 'washington', '-', proper, loc ). +noun( 'washington dc', '-', proper, loc ). +noun( 'waterford', '-', proper, loc ). +noun( 'waterloo', '-', proper, _ ). +noun( 'watford', '-', proper, loc ). +noun( 'wayne', '-', proper, per ). +noun( 'wear', '-', proper, loc ). +noun( 'wed', '-', proper, _ ). +noun( 'wednesday', 'wednesdays', count, _ ). +noun( 'wednesday', '-', proper, _ ). +noun( 'wellingborough', '-', proper, loc ). +noun( 'wellington', '-', proper, loc ). +noun( 'wells', '-', proper, loc ). +noun( 'welsh', '-', mass, _ ). +noun( 'welshman', 'welshmen', count, _ ). +noun( 'welshpool', '-', proper, loc ). +noun( 'welwyn', '-', proper, loc ). +noun( 'welwyn garden city', '-', proper, loc ). +noun( 'wendover', '-', proper, loc ). +noun( 'wendy', '-', proper, per ). +noun( 'wesleyan', 'wesleyans', count, _ ). +noun( 'west bromwich', '-', proper, loc ). +noun( 'westbury', '-', proper, loc ). +noun( 'westhoughton', '-', proper, loc ). +noun( 'westmeath', '-', proper, loc ). +noun( 'westminster', '-', proper, loc ). +noun( 'westmoreland', '-', proper, loc ). +noun( 'weston-super-mare', '-', proper, loc ). +noun( 'wetherby', '-', proper, loc ). +noun( 'wexford', '-', proper, loc ). +noun( 'weymouth', '-', proper, loc ). +noun( 'whaley bridge', '-', proper, loc ). +noun( 'wheatley hill', '-', proper, loc ). +noun( 'whig', 'whigs', count, _ ). +noun( 'whit', 'whits', count, _ ). +noun( 'whitburn', '-', proper, loc ). +noun( 'whitby', '-', proper, loc ). +noun( 'whitchurch', '-', proper, loc ). +noun( 'whitehall', '-', proper, _ ). +noun( 'whitehaven', '-', proper, loc ). +noun( 'whitley bay', '-', proper, loc ). +noun( 'whitstable', '-', proper, loc ). +noun( 'whitsun', 'whitsuns', count, _ ). +noun( 'whitsun', '-', proper, _ ). +noun( 'whitsuntide', 'whitsuntides', count, _ ). +noun( 'whitsuntide', '-', proper, _ ). +noun( 'whittle-le-woods', '-', proper, loc ). +noun( 'whittlesey', '-', proper, loc ). +noun( 'whitworth', '-', proper, loc ). +noun( 'wick', '-', proper, loc ). +noun( 'wickford', '-', proper, loc ). +noun( 'wicklow', '-', proper, loc ). +noun( 'widnes', '-', proper, loc ). +noun( 'wiesbaden', '-', proper, loc ). +noun( 'wigan', '-', proper, loc ). +noun( 'wight', '-', proper, loc ). +noun( 'wilf', '-', proper, per ). +noun( 'wilfrid', '-', proper, per ). +noun( 'wilhelmshaven', '-', proper, loc ). +noun( 'will', '-', proper, per ). +noun( 'william', '-', proper, per ). +noun( 'willie', '-', proper, per ). +noun( 'willington', '-', proper, loc ). +noun( 'willy', '-', proper, per ). +noun( 'wilmslow', '-', proper, loc ). +noun( 'wilton', 'wiltons', count, _ ). +noun( 'wiltshire', '-', proper, loc ). +noun( 'wimbourne', '-', proper, loc ). +noun( 'wimbourne minster', '-', proper, loc ). +noun( 'winchester', '-', proper, loc ). +noun( 'windermere', '-', proper, loc ). +noun( 'windsor', '-', proper, loc ). +noun( 'wingate', '-', proper, loc ). +noun( 'winifred', '-', proper, per ). +noun( 'winnie', '-', proper, per ). +noun( 'winnipeg', '-', proper, loc ). +noun( 'winsford', '-', proper, loc ). +noun( 'wisbech', '-', proper, loc ). +noun( 'wisconsin', '-', proper, loc ). +noun( 'witham', '-', proper, loc ). +noun( 'withernsea', '-', proper, loc ). +noun( 'witney', '-', proper, loc ). +noun( 'woburn', '-', proper, loc ). +noun( 'wokingham', '-', proper, loc ). +noun( 'wolverhampton', '-', proper, loc ). +noun( 'wolverton', '-', proper, loc ). +noun( 'wombourne', '-', proper, loc ). +noun( 'woodbridge', '-', proper, loc ). +noun( 'wootton bassett', '-', proper, loc ). +noun( 'worcester', '-', proper, loc ). +noun( 'workington', '-', proper, loc ). +noun( 'worksop', '-', proper, loc ). +noun( 'worthing', '-', proper, loc ). +noun( 'wrexham', '-', proper, loc ). +noun( 'writtle', '-', proper, loc ). +noun( 'wroclaw', '-', proper, loc ). +noun( 'wroughton', '-', proper, loc ). +noun( 'wuhan', '-', proper, loc ). +noun( 'wuppertal', '-', proper, loc ). +noun( 'wurzburg', '-', proper, loc ). +noun( 'wusih', '-', proper, loc ). +noun( 'wycombe', '-', proper, loc ). +noun( 'wymondham', '-', proper, loc ). +noun( 'wyoming', '-', proper, loc ). +noun( 'wythall', '-', proper, loc ). +noun( 'x-ray', 'x-rays', count, _ ). +noun( 'xerox', 'xeroxes', count, _ ). +noun( 'xmas', 'xmases', count, _ ). +noun( 'xmas', '-', proper, _ ). +noun( 'yha', '-', count, _ ). +noun( 'ymca', '-', count, _ ). +noun( 'ywca', '-', count, _ ). +noun( 'yank', 'yanks', count, _ ). +noun( 'yankee', 'yankees', count, _ ). +noun( 'yarmouth', '-', proper, loc ). +noun( 'yaroslavi', '-', proper, loc ). +noun( 'yate', '-', proper, loc ). +noun( 'yateley', '-', proper, loc ). +noun( 'yemen', '-', proper, loc ). +noun( 'yemeni', 'yemenis', count, _ ). +noun( 'yeovil', '-', proper, loc ). +noun( 'yerevan', '-', proper, loc ). +noun( 'yiddish', '-', mass, _ ). +noun( 'yokohama', '-', proper, loc ). +noun( 'york', '-', proper, loc ). +noun( 'yorkley', '-', proper, loc ). +noun( 'yorkshire', '-', proper, loc ). +noun( 'ystradgynlais', '-', proper, loc ). +noun( 'yugoslav', 'yugoslavs', count, _ ). +noun( 'yugoslavia', '-', proper, loc ). +noun( 'yugoslavian', 'yugoslavians', count, _ ). +noun( 'yukon', '-', proper, loc ). +noun( 'yvonne', '-', proper, per ). +noun( 'zagreb', '-', proper, loc ). +noun( 'zaire', '-', proper, loc ). +noun( 'zairean', 'zaireans', count, _ ). +noun( 'zambia', '-', proper, loc ). +noun( 'zambian', 'zambians', count, _ ). +noun( 'zaporozhye', '-', proper, loc ). +noun( 'zaragoza', '-', proper, loc ). +noun( 'zealand', '-', proper, loc ). +noun( 'zealander', 'zealanders', count, _ ). +noun( 'zen', '-', mass, _ ). +noun( 'zimbabwe', '-', proper, loc ). +noun( 'zimbabwean', 'zimbabweans', count, _ ). +noun( 'zion', 'zions', count, _ ). +noun( 'zionism', '-', mass, _ ). +noun( 'zionist', 'zionists', count, _ ). +noun( 'zoe', '-', proper, per ). +noun( 'zurich', '-', proper, loc ). +noun( '_eclair', '_eclairs', count, _ ). +noun( '_eclat', '-', mass, _ ). +noun( '_elan', '-', mass, _ ). +noun( '_elite', '_elites', count, _ ). +noun( '_emigr_e', '_emigr_es', count, _ ). +noun( '_ep_ee', '_ep_ees', count, _ ). +noun( 'a', '-', count, _ ). +noun( 'abacus', 'abacuses', count, _ ). +noun( 'abandon', '-', mass, _ ). +noun( 'abandonment', '-', mass, _ ). +noun( 'abasement', '-', mass, _ ). +noun( 'abatement', '-', mass, _ ). +noun( 'abattoir', 'abattoirs', count, _ ). +noun( 'abb_e', 'abb_es', count, _ ). +noun( 'abbess', 'abbesses', count, _ ). +noun( 'abbey', 'abbeys', count, _ ). +noun( 'abbot', 'abbots', count, _ ). +noun( 'abbreviation', 'abbreviations', both, _ ). +noun( 'abdication', 'abdications', both, _ ). +noun( 'abdomen', 'abdomens', count, _ ). +noun( 'abduction', 'abductions', count, _ ). +noun( 'aberration', 'aberrations', both, _ ). +noun( 'abeyance', '-', mass, _ ). +noun( 'abhorrence', '-', mass, _ ). +noun( 'ability', 'abilities', both, _ ). +noun( 'abjection', 'abjections', count, _ ). +noun( 'abjuration', 'abjurations', both, _ ). +noun( 'ablative', 'ablatives', count, _ ). +noun( 'ablaut', 'ablauts', count, _ ). +noun( 'ablution', 'ablutions', count, _ ). +noun( 'abnegation', '-', mass, _ ). +noun( 'abnormality', 'abnormalities', both, _ ). +noun( 'abode', 'abodes', count, _ ). +noun( 'abolition', '-', mass, _ ). +noun( 'abolitionist', 'abolitionists', count, _ ). +noun( 'abomination', 'abominations', both, _ ). +noun( 'aboriginal', 'aboriginals', count, _ ). +noun( 'aborigine', 'aborigines', count, _ ). +noun( 'abortion', 'abortions', both, _ ). +noun( 'abortionist', 'abortionists', count, _ ). +noun( 'about-face', '-', count, _ ). +noun( 'abracadabra', '-', mass, _ ). +noun( 'abrasion', 'abrasions', both, _ ). +noun( 'abrasive', 'abrasives', both, _ ). +noun( 'abridgement', 'abridgements', both, _ ). +noun( 'abridgment', 'abridgments', both, _ ). +noun( 'abrogation', 'abrogations', count, _ ). +noun( 'abruptness', '-', mass, _ ). +noun( 'abscess', 'abscesses', count, _ ). +noun( 'absence', 'absences', both, _ ). +noun( 'absent-mindedness', '-', mass, _ ). +noun( 'absentee', 'absentees', count, _ ). +noun( 'absenteeism', '-', mass, _ ). +noun( 'absinth', '-', mass, _ ). +noun( 'absinthe', '-', mass, _ ). +noun( 'absolution', '-', mass, _ ). +noun( 'absolutism', '-', mass, _ ). +noun( 'absorbent', 'absorbents', count, _ ). +noun( 'absorption', '-', mass, _ ). +noun( 'abstainer', 'abstainers', count, _ ). +noun( 'abstemiousness', '-', mass, _ ). +noun( 'abstention', 'abstentions', both, _ ). +noun( 'abstinence', '-', mass, _ ). +noun( 'abstract', 'abstracts', count, _ ). +noun( 'abstraction', 'abstractions', both, _ ). +noun( 'abstruseness', '-', mass, _ ). +noun( 'absurdity', 'absurdities', both, _ ). +noun( 'abundance', '-', mass, _ ). +noun( 'abuse', 'abuses', both, _ ). +noun( 'abutment', 'abutments', count, _ ). +noun( 'abysm', 'abysms', count, _ ). +noun( 'abyss', 'abysses', count, _ ). +noun( 'acacia', 'acacias', count, _ ). +noun( 'academic', 'academics', count, _ ). +noun( 'academician', 'academicians', count, _ ). +noun( 'academy', 'academies', count, _ ). +noun( 'accelerando', 'accelerandos', count, _ ). +noun( 'acceleration', '-', mass, _ ). +noun( 'accelerator', 'accelerators', count, _ ). +noun( 'accent', 'accents', both, _ ). +noun( 'accentuation', 'accentuations', count, _ ). +noun( 'acceptability', '-', mass, _ ). +noun( 'acceptance', '-', mass, _ ). +noun( 'acceptation', 'acceptations', count, _ ). +noun( 'access', '-', mass, _ ). +noun( 'accessary', 'accessaries', count, _ ). +noun( 'accessibility', '-', mass, _ ). +noun( 'accession', 'accessions', both, _ ). +noun( 'accessory', 'accessories', count, _ ). +noun( 'accidence', '-', mass, _ ). +noun( 'accident', 'accidents', both, _ ). +noun( 'acclaim', '-', mass, _ ). +noun( 'acclamation', '-', mass, _ ). +noun( 'acclimation', '-', mass, _ ). +noun( 'acclimatization', '-', mass, _ ). +noun( 'acclivity', 'acclivities', count, _ ). +noun( 'accolade', 'accolades', count, _ ). +noun( 'accommodation', 'accommodations', both, _ ). +noun( 'accompaniment', 'accompaniments', count, _ ). +noun( 'accompanist', 'accompanists', count, _ ). +noun( 'accomplice', 'accomplices', count, _ ). +noun( 'accomplishment', 'accomplishments', both, _ ). +noun( 'accord', 'accords', both, _ ). +noun( 'accordance', 'accordances', count, _ ). +noun( 'accordion', 'accordions', count, _ ). +noun( 'accouchement', 'accouchements', count, _ ). +noun( 'account', 'accounts', both, _ ). +noun( 'accountancy', '-', mass, _ ). +noun( 'accountant', 'accountants', count, _ ). +noun( 'accretion', 'accretions', both, _ ). +noun( 'accumulation', 'accumulations', both, _ ). +noun( 'accumulator', 'accumulators', count, _ ). +noun( 'accuracy', 'accuracies', both, _ ). +noun( 'accusation', 'accusations', both, _ ). +noun( 'accusative', 'accusatives', count, _ ). +noun( 'accuser', 'accusers', count, _ ). +noun( 'ace', 'aces', count, _ ). +noun( 'acerbity', 'acerbities', both, _ ). +noun( 'acetate', 'acetates', count, _ ). +noun( 'acetylene', '-', mass, _ ). +noun( 'ache', 'aches', count, _ ). +noun( 'achievement', 'achievements', both, _ ). +noun( 'acid', 'acids', both, _ ). +noun( 'acidity', '-', mass, _ ). +noun( 'ack-ack', '-', mass, _ ). +noun( 'acknowledgement', 'acknowledgements', count, _ ). +noun( 'acme', '-', count, _ ). +noun( 'acne', '-', mass, _ ). +noun( 'acolyte', 'acolytes', count, _ ). +noun( 'aconite', 'aconites', count, _ ). +noun( 'acorn', 'acorns', count, _ ). +noun( 'acorn-cup', 'acorn-cups', count, _ ). +noun( 'acoustic', 'acoustics', count, _ ). +noun( 'acoustics', 'acoustics', mass, _ ). +noun( 'acquaintance', 'acquaintances', both, _ ). +noun( 'acquaintanceship', 'acquaintanceships', count, _ ). +noun( 'acquiescence', 'acquiescences', count, _ ). +noun( 'acquirement', 'acquirements', both, _ ). +noun( 'acquisition', 'acquisitions', both, _ ). +noun( 'acquittal', 'acquittals', both, _ ). +noun( 'acre', 'acres', count, _ ). +noun( 'acreage', '-', mass, _ ). +noun( 'acrimony', '-', mass, _ ). +noun( 'acrobat', 'acrobats', count, _ ). +noun( 'acrobatics', 'acrobatics', mass, _ ). +noun( 'acronym', 'acronyms', count, _ ). +noun( 'acropolis', 'acropolises', count, _ ). +noun( 'acrostic', 'acrostics', count, _ ). +noun( 'acrylic', 'acrylics', count, _ ). +noun( 'act', 'acts', count, _ ). +noun( 'acting', '-', mass, _ ). +noun( 'actinism', '-', mass, _ ). +noun( 'action', 'actions', both, _ ). +noun( 'activation', 'activations', count, _ ). +noun( 'activist', 'activists', count, _ ). +noun( 'activity', 'activities', both, _ ). +noun( 'actor', 'actors', count, _ ). +noun( 'actress', 'actresses', count, _ ). +noun( 'actuality', 'actualities', both, _ ). +noun( 'actuary', 'actuaries', count, _ ). +noun( 'acuity', '-', mass, _ ). +noun( 'acumen', '-', mass, _ ). +noun( 'acupuncture', '-', mass, _ ). +noun( 'acuteness', '-', mass, _ ). +noun( 'ad', 'ads', count, _ ). +noun( 'ad-man', 'ad-men', count, _ ). +noun( 'adage', 'adages', count, _ ). +noun( 'adagio', 'adagios', count, _ ). +noun( 'adamant', 'adamants', count, _ ). +noun( 'adaptability', '-', mass, _ ). +noun( 'adaptation', 'adaptations', both, _ ). +noun( 'adapter', 'adapters', count, _ ). +noun( 'adaptor', 'adaptors', count, _ ). +noun( 'addendum', 'addenda', count, _ ). +noun( 'adder', 'adders', count, _ ). +noun( 'addict', 'addicts', count, _ ). +noun( 'addiction', 'addictions', both, _ ). +noun( 'adding-machine', 'adding-machines', count, _ ). +noun( 'addition', 'additions', both, _ ). +noun( 'additive', 'additives', count, _ ). +noun( 'addle-head', 'addle-heads', count, _ ). +noun( 'address', 'addresses', both, _ ). +noun( 'addressee', 'addressees', count, _ ). +noun( 'adept', 'adepts', count, _ ). +noun( 'adequacy', '-', mass, _ ). +noun( 'adherence', 'adherences', count, _ ). +noun( 'adherent', 'adherents', count, _ ). +noun( 'adhesion', 'adhesions', both, _ ). +noun( 'adhesive', 'adhesives', both, _ ). +noun( 'adieu', 'adieus', count, _ ). +noun( 'adjective', 'adjectives', count, _ ). +noun( 'adjournment', 'adjournments', count, _ ). +noun( 'adjudication', 'adjudications', count, _ ). +noun( 'adjudicator', 'adjudicators', count, _ ). +noun( 'adjunct', 'adjuncts', count, _ ). +noun( 'adjuration', 'adjurations', both, _ ). +noun( 'adjuster', 'adjusters', count, _ ). +noun( 'adjustment', 'adjustments', both, _ ). +noun( 'adjutant', 'adjutants', count, _ ). +noun( 'admass', '-', mass, _ ). +noun( 'administration', 'administrations', both, _ ). +noun( 'administrator', 'administrators', count, _ ). +noun( 'admiral', 'admirals', count, _ ). +noun( 'admiralty', 'admiralties', count, _ ). +noun( 'admiration', '-', mass, _ ). +noun( 'admirer', 'admirers', count, _ ). +noun( 'admissibility', '-', mass, _ ). +noun( 'admission', 'admissions', both, _ ). +noun( 'admittance', '-', mass, _ ). +noun( 'admixture', 'admixtures', count, _ ). +noun( 'admonition', 'admonitions', both, _ ). +noun( 'ado', '-', mass, _ ). +noun( 'adobe', '-', mass, _ ). +noun( 'adolescence', '-', mass, _ ). +noun( 'adolescent', 'adolescents', count, _ ). +noun( 'adoption', 'adoptions', count, _ ). +noun( 'adoration', '-', mass, _ ). +noun( 'adorer', 'adorers', count, _ ). +noun( 'adornment', 'adornments', both, _ ). +noun( 'adrenalin', '-', mass, _ ). +noun( 'adroitness', '-', mass, _ ). +noun( 'adulation', '-', mass, _ ). +noun( 'adult', 'adults', count, _ ). +noun( 'adulterant', 'adulterants', count, _ ). +noun( 'adulteration', 'adulterations', count, _ ). +noun( 'adulterer', 'adulterers', count, _ ). +noun( 'adulteress', 'adulteresses', count, _ ). +noun( 'adultery', 'adulteries', both, _ ). +noun( 'adulthood', 'adulthoods', both, _ ). +noun( 'advance', 'advances', both, _ ). +noun( 'advancement', '-', mass, _ ). +noun( 'advantage', 'advantages', both, _ ). +noun( 'advent', 'advents', count, _ ). +noun( 'adventure', 'adventures', both, _ ). +noun( 'adventurer', 'adventurers', count, _ ). +noun( 'adventuress', 'adventuresses', count, _ ). +noun( 'adverb', 'adverbs', count, _ ). +noun( 'adversary', 'adversaries', count, _ ). +noun( 'adversity', 'adversities', both, _ ). +noun( 'advert', 'adverts', count, _ ). +noun( 'advertisement', 'advertisements', both, _ ). +noun( 'advertiser', 'advertisers', count, _ ). +noun( 'advice', 'advices', both, _ ). +noun( 'advisability', '-', mass, _ ). +noun( 'adviser', 'advisers', count, _ ). +noun( 'advocacy', '-', mass, _ ). +noun( 'advocate', 'advocates', count, _ ). +noun( 'advowson', 'advowsons', count, _ ). +noun( 'adz', 'adzes', count, _ ). +noun( 'adze', 'adzes', count, _ ). +noun( 'aegis', 'aegises', count, _ ). +noun( 'aeon', 'aeons', count, _ ). +noun( 'aeration', 'aerations', count, _ ). +noun( 'aerial', 'aerials', count, _ ). +noun( 'aerie', 'aeries', count, _ ). +noun( 'aerobatics', 'aerobatics', mass, _ ). +noun( 'aerodrome', 'aerodromes', count, _ ). +noun( 'aerodynamics', 'aerodynamics', mass, _ ). +noun( 'aeronaut', 'aeronauts', count, _ ). +noun( 'aeronautics', 'aeronautics', mass, _ ). +noun( 'aeroplane', 'aeroplanes', count, _ ). +noun( 'aerosol', 'aerosols', both, _ ). +noun( 'aerospace', '-', mass, _ ). +noun( 'aertex', '-', mass, _ ). +noun( 'aery', 'aeries', count, _ ). +noun( 'aesthete', 'aesthetes', count, _ ). +noun( 'aesthetic', '-', mass, _ ). +noun( 'aesthetics', 'aesthetics', mass, _ ). +noun( 'aether', '-', mass, _ ). +noun( 'aetiology', 'aetiologies', count, _ ). +noun( 'affability', '-', mass, _ ). +noun( 'affair', 'affairs', count, _ ). +noun( 'affectation', 'affectations', both, _ ). +noun( 'affection', 'affections', both, _ ). +noun( 'affidavit', 'affidavits', count, _ ). +noun( 'affiliation', 'affiliations', both, _ ). +noun( 'affinity', 'affinities', both, _ ). +noun( 'affirmation', 'affirmations', both, _ ). +noun( 'affirmative', 'affirmatives', count, _ ). +noun( 'affix', 'affixes', count, _ ). +noun( 'afflatus', '-', mass, _ ). +noun( 'affliction', 'afflictions', both, _ ). +noun( 'affluence', '-', mass, _ ). +noun( 'affluent', 'affluents', count, _ ). +noun( 'afforestation', 'afforestations', count, _ ). +noun( 'affray', 'affrays', count, _ ). +noun( 'affront', 'affronts', count, _ ). +noun( 'aftercare', '-', mass, _ ). +noun( 'afterdamp', '-', mass, _ ). +noun( 'aftereffect', 'aftereffects', count, _ ). +noun( 'afterglow', '-', count, _ ). +noun( 'aftermath', '', count, _ ). +noun( 'afternoon', 'afternoons', both, _ ). +noun( 'afterthought', 'afterthoughts', both, _ ). +noun( 'agar-agar', '-', mass, _ ). +noun( 'agate', 'agates', count, _ ). +noun( 'agave', 'agaves', count, _ ). +noun( 'age', 'ages', both, _ ). +noun( 'age-bracket', 'age-brackets', count, _ ). +noun( 'age-group', 'age-groups', count, _ ). +noun( 'ageing', '-', mass, _ ). +noun( 'agency', 'agencies', both, _ ). +noun( 'agenda', 'agendas', count, _ ). +noun( 'agent', 'agents', count, _ ). +noun( 'agent provocateur', 'agents provocateurs', count, _ ). +noun( 'agglomeration', 'agglomerations', both, _ ). +noun( 'aggrandizement', 'aggrandizements', count, _ ). +noun( 'aggravation', 'aggravations', both, _ ). +noun( 'aggregate', 'aggregates', count, _ ). +noun( 'aggregation', 'aggregations', both, _ ). +noun( 'aggression', 'aggressions', both, _ ). +noun( 'aggressiveness', '-', mass, _ ). +noun( 'aggressor', 'aggressors', count, _ ). +noun( 'aggro', '-', mass, _ ). +noun( 'agility', '-', mass, _ ). +noun( 'aging', '-', mass, _ ). +noun( 'agitation', 'agitations', both, _ ). +noun( 'agitator', 'agitators', count, _ ). +noun( 'agnail', '-', mass, _ ). +noun( 'agnostic', 'agnostics', count, _ ). +noun( 'agnosticism', '-', mass, _ ). +noun( 'agony', 'agonies', both, _ ). +noun( 'agora', 'agoras', count, _ ). +noun( 'agoraphobia', '-', mass, _ ). +noun( 'agreement', 'agreements', both, _ ). +noun( 'agriculture', '-', mass, _ ). +noun( 'ague', 'agues', count, _ ). +noun( 'aid', 'aids', both, _ ). +noun( 'aide-de-camp', 'aides-de-camp', count, _ ). +noun( 'aide-m_emoire', 'aide-m_emoires', count, _ ). +noun( 'aigret', 'aigrets', count, _ ). +noun( 'aigrette', 'aigrettes', count, _ ). +noun( 'aileron', 'ailerons', count, _ ). +noun( 'ailment', 'ailments', count, _ ). +noun( 'aim', 'aims', both, _ ). +noun( 'air', 'airs', both, _ ). +noun( 'air-bladder', 'air-bladders', count, _ ). +noun( 'air-conditioning', '-', mass, _ ). +noun( 'air-pump', 'air-pumps', count, _ ). +noun( 'air-raid', 'air-raids', count, _ ). +noun( 'air-shaft', 'air-shafts', count, _ ). +noun( 'air-sickness', '-', mass, _ ). +noun( 'airbed', 'airbeds', count, _ ). +noun( 'airbrake', 'airbrakes', count, _ ). +noun( 'aircraft', 'aircraft', count, _ ). +noun( 'aircraftman', 'aircraftmen', count, _ ). +noun( 'aircrew', 'aircrews', count, _ ). +noun( 'airdrome', 'airdromes', count, _ ). +noun( 'airfield', 'airfields', count, _ ). +noun( 'airflow', 'airflows', count, _ ). +noun( 'airframe', 'airframes', count, _ ). +noun( 'airing', 'airings', count, _ ). +noun( 'airing-cupboard', 'airing-cupboards', count, _ ). +noun( 'airline', 'airlines', count, _ ). +noun( 'airliner', 'airliners', count, _ ). +noun( 'airmail', '-', mass, _ ). +noun( 'airman', 'airmen', count, _ ). +noun( 'airplane', 'airplanes', count, _ ). +noun( 'airport', 'airports', count, _ ). +noun( 'airscrew', 'airscrews', count, _ ). +noun( 'airship', 'airships', count, _ ). +noun( 'airstrip', 'airstrips', count, _ ). +noun( 'airway', 'airways', count, _ ). +noun( 'airwoman', 'airwomen', count, _ ). +noun( 'airworthiness', '-', mass, _ ). +noun( 'aisle', 'aisles', count, _ ). +noun( 'aitch', 'aitches', count, _ ). +noun( 'aitch-bone', 'aitch-bones', count, _ ). +noun( 'alabaster', '-', mass, _ ). +noun( 'alacrity', '-', mass, _ ). +noun( 'alarm', 'alarms', both, _ ). +noun( 'alarm-clock', 'alarm-clocks', count, _ ). +noun( 'alarmist', 'alarmists', count, _ ). +noun( 'alb', 'albs', count, _ ). +noun( 'albatross', 'albatrosses', count, _ ). +noun( 'albino', 'albinos', count, _ ). +noun( 'album', 'albums', count, _ ). +noun( 'albumen', '-', mass, _ ). +noun( 'alchemist', 'alchemists', count, _ ). +noun( 'alchemy', '-', mass, _ ). +noun( 'alcohol', 'alcohols', both, _ ). +noun( 'alcoholic', 'alcoholics', count, _ ). +noun( 'alcoholism', '-', mass, _ ). +noun( 'alcove', 'alcoves', count, _ ). +noun( 'alder', 'alders', count, _ ). +noun( 'alderman', 'aldermen', count, _ ). +noun( 'ale', 'ales', both, _ ). +noun( 'ale-house', 'ale-houses', count, _ ). +noun( 'alert', 'alerts', count, _ ). +noun( 'alertness', '-', mass, _ ). +noun( 'alexandrine', 'alexandrines', count, _ ). +noun( 'alexia', '-', mass, _ ). +noun( 'alexic', 'alexics', count, _ ). +noun( 'alfalfa', '-', mass, _ ). +noun( 'alga', 'algae', count, _ ). +noun( 'algebra', 'algebras', both, _ ). +noun( 'alias', 'aliases', count, _ ). +noun( 'alibi', 'alibis', count, _ ). +noun( 'alien', 'aliens', count, _ ). +noun( 'alienation', '-', mass, _ ). +noun( 'alienist', 'alienists', count, _ ). +noun( 'alignment', 'alignments', both, _ ). +noun( 'alimony', '-', mass, _ ). +noun( 'alkali', 'alkalis', both, _ ). +noun( 'all', '-', count, _ ). +noun( 'all-rounder', 'all-rounders', count, _ ). +noun( 'allegation', 'allegations', both, _ ). +noun( 'allegiance', '-', mass, _ ). +noun( 'allegory', 'allegories', count, _ ). +noun( 'allegretto', 'allegrettos', count, _ ). +noun( 'allegro', 'allegros', count, _ ). +noun( 'allergen', 'allergens', count, _ ). +noun( 'allergy', 'allergies', count, _ ). +noun( 'alleviation', 'alleviations', count, _ ). +noun( 'alley', 'alleys', count, _ ). +noun( 'alleyway', 'alleyways', count, _ ). +noun( 'alliance', 'alliances', both, _ ). +noun( 'alligator', 'alligators', count, _ ). +noun( 'alliteration', '-', mass, _ ). +noun( 'allocation', 'allocations', both, _ ). +noun( 'allotment', 'allotments', both, _ ). +noun( 'allowance', 'allowances', count, _ ). +noun( 'alloy', 'alloys', both, _ ). +noun( 'allspice', '-', mass, _ ). +noun( 'allure', 'allures', both, _ ). +noun( 'allurement', 'allurements', both, _ ). +noun( 'allusion', 'allusions', count, _ ). +noun( 'ally', 'allies', count, _ ). +noun( 'almanac', 'almanacs', count, _ ). +noun( 'almighty', '-', count, _ ). +noun( 'almond', 'almonds', count, _ ). +noun( 'almoner', 'almoners', count, _ ). +noun( 'alms-box', 'alms-boxes', count, _ ). +noun( 'alms-giving', '-', mass, _ ). +noun( 'alms-house', 'alms-houses', count, _ ). +noun( 'aloe', 'aloes', count, _ ). +noun( 'aloofness', '-', mass, _ ). +noun( 'alp', 'alps', count, _ ). +noun( 'alpaca', 'alpacas', both, _ ). +noun( 'alpenstock', 'alpenstocks', count, _ ). +noun( 'alpha', 'alphas', count, _ ). +noun( 'alphabet', 'alphabets', count, _ ). +noun( 'alpinist', 'alpinists', count, _ ). +noun( 'alsatian', 'alsatians', count, _ ). +noun( 'also-ran', 'also-rans', count, _ ). +noun( 'altar', 'altars', count, _ ). +noun( 'altar-piece', 'altar-pieces', count, _ ). +noun( 'alter ego', 'alter egos', count, _ ). +noun( 'alteration', 'alterations', both, _ ). +noun( 'altercation', 'altercations', both, _ ). +noun( 'alternation', 'alternations', count, _ ). +noun( 'alternative', 'alternatives', count, _ ). +noun( 'altimeter', 'altimeters', count, _ ). +noun( 'altitude', 'altitudes', count, _ ). +noun( 'alto', 'altos', count, _ ). +noun( 'altruism', 'altruisms', both, _ ). +noun( 'altruist', 'altruists', count, _ ). +noun( 'alum', '-', mass, _ ). +noun( 'aluminium', '-', mass, _ ). +noun( 'alumna', 'alumnae', count, _ ). +noun( 'alumnus', 'alumni', count, _ ). +noun( 'alveolar', 'alveolars', count, _ ). +noun( 'am', '-', proper, _ ). +noun( 'amah', 'amahs', count, _ ). +noun( 'amalgam', 'amalgams', count, _ ). +noun( 'amalgamation', 'amalgamations', both, _ ). +noun( 'amanuensis', 'amanuenses', count, _ ). +noun( 'amaryllis', 'amaryllises', count, _ ). +noun( 'amateur', 'amateurs', count, _ ). +noun( 'amateurism', '-', mass, _ ). +noun( 'amazement', '-', mass, _ ). +noun( 'ambassador', 'ambassadors', count, _ ). +noun( 'ambassadress', 'ambassadresses', count, _ ). +noun( 'amber', '-', mass, _ ). +noun( 'ambergris', '-', mass, _ ). +noun( 'ambience', '-', count, _ ). +noun( 'ambiguity', 'ambiguities', both, _ ). +noun( 'ambit', 'ambits', count, _ ). +noun( 'ambition', 'ambitions', both, _ ). +noun( 'ambivalence', '-', mass, _ ). +noun( 'amble', 'ambles', count, _ ). +noun( 'ambrosia', '-', mass, _ ). +noun( 'ambulance', 'ambulances', count, _ ). +noun( 'ambuscade', 'ambuscades', count, _ ). +noun( 'ambush', 'ambushes', both, _ ). +noun( 'ameba', 'amebas', count, _ ). +noun( 'ameer', 'ameers', count, _ ). +noun( 'amelioration', 'ameliorations', count, _ ). +noun( 'amendment', 'amendments', both, _ ). +noun( 'amenity', 'amenities', count, _ ). +noun( 'amethyst', 'amethysts', count, _ ). +noun( 'amiability', '-', mass, _ ). +noun( 'amicability', '-', mass, _ ). +noun( 'amir', 'amirs', count, _ ). +noun( 'amity', '-', mass, _ ). +noun( 'ammeter', 'ammeters', count, _ ). +noun( 'ammonia', '-', mass, _ ). +noun( 'ammonite', 'ammonites', count, _ ). +noun( 'ammunition', '-', mass, _ ). +noun( 'amnesia', '-', mass, _ ). +noun( 'amnesty', 'amnesties', count, _ ). +noun( 'amoeba', 'amoebas', count, _ ). +noun( 'amortization', 'amortizations', count, _ ). +noun( 'amount', 'amounts', count, _ ). +noun( 'amour', 'amours', count, _ ). +noun( 'amour-propre', '-', mass, _ ). +noun( 'amp', 'amps', count, _ ). +noun( 'ampere', 'amperes', count, _ ). +noun( 'amphetamine', 'amphetamines', both, _ ). +noun( 'amphibian', 'amphibians', count, _ ). +noun( 'amphitheatre', 'amphitheatres', count, _ ). +noun( 'amphora', 'amphoras', count, _ ). +noun( 'amplification', 'amplifications', count, _ ). +noun( 'amplifier', 'amplifiers', count, _ ). +noun( 'amplitude', '-', mass, _ ). +noun( 'ampoule', 'ampoules', count, _ ). +noun( 'amputation', 'amputations', count, _ ). +noun( 'amulet', 'amulets', count, _ ). +noun( 'amusement', 'amusements', both, _ ). +noun( 'anachronism', 'anachronisms', count, _ ). +noun( 'anaconda', 'anacondas', count, _ ). +noun( 'anaemia', '-', mass, _ ). +noun( 'anaesthesia', '-', mass, _ ). +noun( 'anaesthetic', 'anaesthetics', count, _ ). +noun( 'anaesthetist', 'anaesthetists', count, _ ). +noun( 'anagram', 'anagrams', count, _ ). +noun( 'analgesia', '-', mass, _ ). +noun( 'analgesic', 'analgesics', count, _ ). +noun( 'analog', 'analogs', count, _ ). +noun( 'analogue', 'analogues', count, _ ). +noun( 'analogy', 'analogies', both, _ ). +noun( 'analysis', 'analyses', both, _ ). +noun( 'analyst', 'analysts', count, _ ). +noun( 'anapaest', 'anapaests', count, _ ). +noun( 'anarchism', '-', mass, _ ). +noun( 'anarchist', 'anarchists', count, _ ). +noun( 'anarchy', '-', mass, _ ). +noun( 'anathema', 'anathemas', count, _ ). +noun( 'anatomist', 'anatomists', count, _ ). +noun( 'anatomy', '-', mass, _ ). +noun( 'ancestor', 'ancestors', count, _ ). +noun( 'ancestress', 'ancestresses', count, _ ). +noun( 'ancestry', 'ancestries', count, _ ). +noun( 'anchor', 'anchors', count, _ ). +noun( 'anchorage', 'anchorages', count, _ ). +noun( 'anchorite', 'anchorites', count, _ ). +noun( 'anchorman', 'anchormen', count, _ ). +noun( 'anchovy', 'anchovies', count, _ ). +noun( 'andante', 'andantes', count, _ ). +noun( 'andiron', 'andirons', count, _ ). +noun( 'anecdote', 'anecdotes', count, _ ). +noun( 'anemometer', 'anemometers', count, _ ). +noun( 'anemone', 'anemones', count, _ ). +noun( 'aneroid', 'aneroids', count, _ ). +noun( 'anesthetic', 'anesthetics', count, _ ). +noun( 'anesthetist', 'anesthetists', count, _ ). +noun( 'angel', 'angels', count, _ ). +noun( 'angelica', '-', mass, _ ). +noun( 'angelus', 'angeluses', count, _ ). +noun( 'anger', '-', mass, _ ). +noun( 'angina', '-', mass, _ ). +noun( 'angle', 'angles', count, _ ). +noun( 'angle-dozer', 'angle-dozers', count, _ ). +noun( 'angle-iron', 'angle-irons', count, _ ). +noun( 'angler', 'anglers', count, _ ). +noun( 'anglicism', 'anglicisms', count, _ ). +noun( 'angling', '-', mass, _ ). +noun( 'angora', 'angoras', both, _ ). +noun( 'angostura', '-', mass, _ ). +noun( 'angst', '-', mass, _ ). +noun( 'anguish', '-', mass, _ ). +noun( 'angularity', 'angularities', both, _ ). +noun( 'aniline', 'anilines', both, _ ). +noun( 'animadversion', 'animadversions', count, _ ). +noun( 'animal', 'animals', count, _ ). +noun( 'animalcule', 'animalcules', count, _ ). +noun( 'animation', '-', mass, _ ). +noun( 'animism', '-', mass, _ ). +noun( 'animosity', 'animosities', both, _ ). +noun( 'animus', '-', mass, _ ). +noun( 'anise', 'anises', count, _ ). +noun( 'aniseed', '-', mass, _ ). +noun( 'ankle', 'ankles', count, _ ). +noun( 'anklet', 'anklets', count, _ ). +noun( 'anna', 'annas', count, _ ). +noun( 'annalist', 'annalists', count, _ ). +noun( 'annex', 'annexes', count, _ ). +noun( 'annexation', '-', mass, _ ). +noun( 'annexe', 'annexes', count, _ ). +noun( 'annihilation', '-', mass, _ ). +noun( 'anniversary', 'anniversaries', count, _ ). +noun( 'annotation', 'annotations', both, _ ). +noun( 'announcement', 'announcements', count, _ ). +noun( 'announcer', 'announcers', count, _ ). +noun( 'annoyance', 'annoyances', both, _ ). +noun( 'annual', 'annuals', count, _ ). +noun( 'annuitant', 'annuitants', count, _ ). +noun( 'annuity', 'annuities', count, _ ). +noun( 'annulment', 'annulments', count, _ ). +noun( 'annunciation', 'annunciations', count, _ ). +noun( 'anode', 'anodes', count, _ ). +noun( 'anodyne', 'anodynes', both, _ ). +noun( 'anointment', 'anointments', count, _ ). +noun( 'anomaly', 'anomalies', count, _ ). +noun( 'anonymity', '-', mass, _ ). +noun( 'anopheles', 'anopheles', count, _ ). +noun( 'anorak', 'anoraks', count, _ ). +noun( 'answer', 'answers', count, _ ). +noun( 'ant', 'ants', count, _ ). +noun( 'ant-eater', 'ant-eaters', count, _ ). +noun( 'ant-hill', 'ant-hills', count, _ ). +noun( 'antagonism', 'antagonisms', both, _ ). +noun( 'antagonist', 'antagonists', count, _ ). +noun( 'ante', 'antes', count, _ ). +noun( 'antecedence', 'antecedences', count, _ ). +noun( 'antecedent', 'antecedents', count, _ ). +noun( 'antechamber', 'antechambers', count, _ ). +noun( 'antediluvian', 'antediluvians', count, _ ). +noun( 'antelope', 'antelopes', count, _ ). +noun( 'antenna', 'antennae', count, _ ). +noun( 'anteroom', 'anterooms', count, _ ). +noun( 'anthem', 'anthems', count, _ ). +noun( 'anther', 'anthers', count, _ ). +noun( 'anthology', 'anthologies', count, _ ). +noun( 'anthracite', '-', mass, _ ). +noun( 'anthrax', '-', mass, _ ). +noun( 'anthropoid', 'anthropoids', count, _ ). +noun( 'anthropologist', 'anthropologists', count, _ ). +noun( 'anthropology', '-', mass, _ ). +noun( 'anti-semite', 'anti-semites', count, _ ). +noun( 'anti-semitism', '-', mass, _ ). +noun( 'anti-hero', 'anti-heroes', count, _ ). +noun( 'antibiotic', 'antibiotics', count, _ ). +noun( 'antibody', 'antibodies', count, _ ). +noun( 'antic', 'antics', count, _ ). +noun( 'anticipation', 'anticipations', both, _ ). +noun( 'anticlimax', 'anticlimaxes', count, _ ). +noun( 'anticyclone', 'anticyclones', count, _ ). +noun( 'antidote', 'antidotes', count, _ ). +noun( 'antifreeze', '-', mass, _ ). +noun( 'antiknock', '-', mass, _ ). +noun( 'antilogarithm', 'antilogarithms', count, _ ). +noun( 'antimacassar', 'antimacassars', count, _ ). +noun( 'antimony', '-', mass, _ ). +noun( 'antipathy', 'antipathies', both, _ ). +noun( 'antiquarian', 'antiquarians', count, _ ). +noun( 'antiquary', 'antiquaries', count, _ ). +noun( 'antique', 'antiques', count, _ ). +noun( 'antiquity', 'antiquities', both, _ ). +noun( 'antirrhinum', 'antirrhinums', count, _ ). +noun( 'antiseptic', 'antiseptics', count, _ ). +noun( 'antithesis', 'antitheses', both, _ ). +noun( 'antitoxin', 'antitoxins', count, _ ). +noun( 'antitrade', 'antitrades', count, _ ). +noun( 'antler', 'antlers', count, _ ). +noun( 'antonym', 'antonyms', count, _ ). +noun( 'anus', 'anuses', count, _ ). +noun( 'anvil', 'anvils', count, _ ). +noun( 'anxiety', 'anxieties', both, _ ). +noun( 'anybody', '-', count, _ ). +noun( 'anyone', '-', count, _ ). +noun( 'anything', '-', count, _ ). +noun( 'aorta', 'aortas', count, _ ). +noun( 'apache', 'apaches', count, _ ). +noun( 'apanage', '-', mass, _ ). +noun( 'apartheid', '-', mass, _ ). +noun( 'apartment', 'apartments', count, _ ). +noun( 'apathy', '-', mass, _ ). +noun( 'ape', 'apes', count, _ ). +noun( 'aperient', 'aperients', count, _ ). +noun( 'aperitif', 'aperitifs', count, _ ). +noun( 'aperture', 'apertures', count, _ ). +noun( 'apex', 'apexes', count, _ ). +noun( 'aphasia', '-', mass, _ ). +noun( 'aphid', 'aphids', count, _ ). +noun( 'aphis', 'aphides', count, _ ). +noun( 'aphorism', 'aphorisms', count, _ ). +noun( 'aphrodisiac', 'aphrodisiacs', both, _ ). +noun( 'apiarist', 'apiarists', count, _ ). +noun( 'apiary', 'apiaries', count, _ ). +noun( 'apiculture', 'apicultures', count, _ ). +noun( 'aplomb', '-', mass, _ ). +noun( 'apocalypse', 'apocalypses', count, _ ). +noun( 'apogee', 'apogees', count, _ ). +noun( 'apologetics', 'apologetics', mass, _ ). +noun( 'apologist', 'apologists', count, _ ). +noun( 'apology', 'apologies', count, _ ). +noun( 'apophthegm', 'apophthegms', count, _ ). +noun( 'apoplexy', '-', mass, _ ). +noun( 'apostasy', 'apostasies', both, _ ). +noun( 'apostate', 'apostates', count, _ ). +noun( 'apostle', 'apostles', count, _ ). +noun( 'apostrophe', 'apostrophes', count, _ ). +noun( 'apothecary', 'apothecaries', count, _ ). +noun( 'apothegm', 'apothegms', count, _ ). +noun( 'apotheosis', 'apotheoses', count, _ ). +noun( 'appanage', '-', mass, _ ). +noun( 'apparatus', 'apparatuses', both, _ ). +noun( 'apparel', '-', mass, _ ). +noun( 'apparition', 'apparitions', count, _ ). +noun( 'appeal', 'appeals', both, _ ). +noun( 'appearance', 'appearances', count, _ ). +noun( 'appeasement', '-', mass, _ ). +noun( 'appellant', 'appellants', count, _ ). +noun( 'appellation', 'appellations', count, _ ). +noun( 'appendage', 'appendages', count, _ ). +noun( 'appendectomy', 'appendectomies', count, _ ). +noun( 'appendicitis', '-', mass, _ ). +noun( 'appendix', 'appendixes', count, _ ). +noun( 'appetite', 'appetites', both, _ ). +noun( 'appetizer', 'appetizers', count, _ ). +noun( 'applause', '-', mass, _ ). +noun( 'apple', 'apples', both, _ ). +noun( 'applejack', '-', mass, _ ). +noun( 'appliance', 'appliances', count, _ ). +noun( 'applicability', '-', mass, _ ). +noun( 'applicant', 'applicants', count, _ ). +noun( 'application', 'applications', both, _ ). +noun( 'appliqu_e', '-', mass, _ ). +noun( 'appointee', 'appointees', count, _ ). +noun( 'appointment', 'appointments', both, _ ). +noun( 'apportionment', '-', mass, _ ). +noun( 'apposition', '-', mass, _ ). +noun( 'appraisal', 'appraisals', count, _ ). +noun( 'appreciation', 'appreciations', both, _ ). +noun( 'apprehension', 'apprehensions', both, _ ). +noun( 'apprentice', 'apprentices', count, _ ). +noun( 'apprenticeship', 'apprenticeships', count, _ ). +noun( 'appro', '-', mass, _ ). +noun( 'approach', 'approaches', both, _ ). +noun( 'approbation', '-', mass, _ ). +noun( 'appropriation', 'appropriations', both, _ ). +noun( 'approval', '-', mass, _ ). +noun( 'approx', '-', proper, _ ). +noun( 'approximation', 'approximations', both, _ ). +noun( 'appurtenance', 'appurtenances', count, _ ). +noun( 'apricot', 'apricots', count, _ ). +noun( 'apron', 'aprons', count, _ ). +noun( 'apse', 'apses', count, _ ). +noun( 'aptitude', 'aptitudes', both, _ ). +noun( 'aptness', '-', mass, _ ). +noun( 'aqualung', 'aqualungs', count, _ ). +noun( 'aquamarine', 'aquamarines', both, _ ). +noun( 'aquanaut', 'aquanauts', count, _ ). +noun( 'aquaplane', 'aquaplanes', count, _ ). +noun( 'aquarium', 'aquariums', count, _ ). +noun( 'aquatint', 'aquatints', both, _ ). +noun( 'aquavit', '-', mass, _ ). +noun( 'aqueduct', 'aqueducts', count, _ ). +noun( 'ar^ete', 'ar^etes', count, _ ). +noun( 'arabesque', 'arabesques', count, _ ). +noun( 'arachnid', 'arachnids', count, _ ). +noun( 'arbiter', 'arbiters', count, _ ). +noun( 'arbitrament', 'arbitraments', both, _ ). +noun( 'arbitration', 'arbitrations', both, _ ). +noun( 'arbitrator', 'arbitrators', count, _ ). +noun( 'arbour', 'arbours', count, _ ). +noun( 'arc', 'arcs', count, _ ). +noun( 'arc-lamp', 'arc-lamps', count, _ ). +noun( 'arc-light', 'arc-lights', count, _ ). +noun( 'arcade', 'arcades', count, _ ). +noun( 'arch', 'arches', count, _ ). +noun( 'archaeologist', 'archaeologists', count, _ ). +noun( 'archaeology', '-', mass, _ ). +noun( 'archaism', 'archaisms', both, _ ). +noun( 'archangel', 'archangels', count, _ ). +noun( 'archbishop', 'archbishops', count, _ ). +noun( 'archbishopric', 'archbishoprics', count, _ ). +noun( 'archdeacon', 'archdeacons', count, _ ). +noun( 'archdeaconry', 'archdeaconries', count, _ ). +noun( 'archdiocese', 'archdioceses', count, _ ). +noun( 'archduke', 'archdukes', count, _ ). +noun( 'archeology', '-', mass, _ ). +noun( 'archer', 'archers', count, _ ). +noun( 'archery', '-', mass, _ ). +noun( 'archetype', 'archetypes', count, _ ). +noun( 'archimandrite', 'archimandrites', count, _ ). +noun( 'archipelago', 'archipelagos', count, _ ). +noun( 'architect', 'architects', count, _ ). +noun( 'architecture', '-', mass, _ ). +noun( 'archivist', 'archivists', count, _ ). +noun( 'archway', 'archways', count, _ ). +noun( 'ardour', 'ardours', both, _ ). +noun( 'are', 'ares', count, _ ). +noun( 'area', 'areas', both, _ ). +noun( 'areca', 'arecas', count, _ ). +noun( 'arena', 'arenas', count, _ ). +noun( 'argent', 'argents', count, _ ). +noun( 'argon', '-', mass, _ ). +noun( 'argosy', 'argosies', count, _ ). +noun( 'argot', '-', mass, _ ). +noun( 'argument', 'arguments', both, _ ). +noun( 'argumentation', '-', mass, _ ). +noun( 'aria', 'arias', count, _ ). +noun( 'aridity', '-', mass, _ ). +noun( 'aristocracy', 'aristocracies', both, _ ). +noun( 'aristocrat', 'aristocrats', count, _ ). +noun( 'arithmetic', '-', mass, _ ). +noun( 'arithmetician', 'arithmeticians', count, _ ). +noun( 'ark', 'arks', count, _ ). +noun( 'arm', 'arms', count, _ ). +noun( 'arm-hole', 'arm-holes', count, _ ). +noun( 'armada', 'armadas', count, _ ). +noun( 'armadillo', 'armadillos', count, _ ). +noun( 'armament', 'armaments', both, _ ). +noun( 'armature', 'armatures', count, _ ). +noun( 'armband', 'armbands', count, _ ). +noun( 'armchair', 'armchairs', count, _ ). +noun( 'armful', 'armfuls', count, _ ). +noun( 'armistice', 'armistices', count, _ ). +noun( 'armlet', 'armlets', count, _ ). +noun( 'armoire', 'armoires', count, _ ). +noun( 'armour', '-', mass, _ ). +noun( 'armour-plate', 'armour-plates', count, _ ). +noun( 'armourer', 'armourers', count, _ ). +noun( 'armoury', 'armouries', count, _ ). +noun( 'armpit', 'armpits', count, _ ). +noun( 'arms-race', '-', count, _ ). +noun( 'arms-runner', 'arms-runners', count, _ ). +noun( 'army', 'armies', count, _ ). +noun( 'arnica', '-', mass, _ ). +noun( 'aroma', 'aromas', count, _ ). +noun( 'arpeggio', 'arpeggios', count, _ ). +noun( 'arquebus', 'arquebuses', count, _ ). +noun( 'arr', '-', proper, _ ). +noun( 'arrack', '-', mass, _ ). +noun( 'arraignment', 'arraignments', count, _ ). +noun( 'arrangement', 'arrangements', both, _ ). +noun( 'arras', 'arrases', count, _ ). +noun( 'array', 'arrays', count, _ ). +noun( 'arrest', 'arrests', count, _ ). +noun( 'arrester', 'arresters', count, _ ). +noun( 'arri`ere pens_ee', 'arri`ere pens_ees', count, _ ). +noun( 'arrival', 'arrivals', both, _ ). +noun( 'arrogance', '-', mass, _ ). +noun( 'arrow', 'arrows', count, _ ). +noun( 'arrowhead', 'arrowheads', count, _ ). +noun( 'arrowroot', '-', mass, _ ). +noun( 'arse', 'arses', count, _ ). +noun( 'arsehole', 'arseholes', count, _ ). +noun( 'arsenal', 'arsenals', count, _ ). +noun( 'arsenic', '-', mass, _ ). +noun( 'arson', '-', mass, _ ). +noun( 'art', 'arts', both, _ ). +noun( 'artefact', 'artefacts', count, _ ). +noun( 'arteriosclerosis', '-', mass, _ ). +noun( 'artery', 'arteries', count, _ ). +noun( 'artfulness', '-', mass, _ ). +noun( 'arthritis', '-', mass, _ ). +noun( 'artichoke', 'artichokes', count, _ ). +noun( 'article', 'articles', count, _ ). +noun( 'articulation', '-', mass, _ ). +noun( 'artifact', 'artifacts', count, _ ). +noun( 'artifice', 'artifices', both, _ ). +noun( 'artificer', 'artificers', count, _ ). +noun( 'artillery', '-', mass, _ ). +noun( 'artisan', 'artisans', count, _ ). +noun( 'artist', 'artists', count, _ ). +noun( 'artiste', 'artistes', count, _ ). +noun( 'artistry', '-', mass, _ ). +noun( 'artlessness', '-', mass, _ ). +noun( 'arum', 'arums', count, _ ). +noun( 'asap', '-', proper, _ ). +noun( 'asbestos', '-', mass, _ ). +noun( 'ascendancy', '-', mass, _ ). +noun( 'ascendant', 'ascendants', count, _ ). +noun( 'ascendency', '-', mass, _ ). +noun( 'ascendent', 'ascendents', count, _ ). +noun( 'ascension', 'ascensions', count, _ ). +noun( 'ascent', 'ascents', count, _ ). +noun( 'ascetic', 'ascetics', count, _ ). +noun( 'asceticism', '-', mass, _ ). +noun( 'ascription', 'ascriptions', count, _ ). +noun( 'asdic', 'asdics', count, _ ). +noun( 'asepsis', '-', mass, _ ). +noun( 'asexuality', '-', mass, _ ). +noun( 'ash', 'ashes', both, _ ). +noun( 'ash-bin', 'ash-bins', count, _ ). +noun( 'ash-can', 'ash-cans', count, _ ). +noun( 'ash-key', 'ash-keys', count, _ ). +noun( 'ash-pan', 'ash-pans', count, _ ). +noun( 'ashtray', 'ashtrays', count, _ ). +noun( 'aside', 'asides', count, _ ). +noun( 'asking', '-', count, _ ). +noun( 'asp', 'asps', count, _ ). +noun( 'asparagus', '-', mass, _ ). +noun( 'aspect', 'aspects', count, _ ). +noun( 'aspen', 'aspens', count, _ ). +noun( 'asperity', 'asperities', both, _ ). +noun( 'aspersion', 'aspersions', count, _ ). +noun( 'asphalt', '-', mass, _ ). +noun( 'asphodel', 'asphodels', count, _ ). +noun( 'asphyxia', '-', mass, _ ). +noun( 'asphyxiation', '-', mass, _ ). +noun( 'aspic', '-', mass, _ ). +noun( 'aspidistra', 'aspidistras', count, _ ). +noun( 'aspirant', 'aspirants', count, _ ). +noun( 'aspirate', 'aspirates', count, _ ). +noun( 'aspiration', 'aspirations', both, _ ). +noun( 'aspirin', 'aspirins', both, _ ). +noun( 'ass', 'asses', count, _ ). +noun( 'assagai', 'assagais', count, _ ). +noun( 'assailant', 'assailants', count, _ ). +noun( 'assassin', 'assassins', count, _ ). +noun( 'assassination', 'assassinations', both, _ ). +noun( 'assault', 'assaults', count, _ ). +noun( 'assay', 'assays', count, _ ). +noun( 'assegai', 'assegais', count, _ ). +noun( 'assemblage', 'assemblages', both, _ ). +noun( 'assembly', 'assemblies', count, _ ). +noun( 'assent', 'assents', count, _ ). +noun( 'assertion', 'assertions', both, _ ). +noun( 'assessment', 'assessments', both, _ ). +noun( 'assessor', 'assessors', count, _ ). +noun( 'asset', 'assets', count, _ ). +noun( 'asseveration', 'asseverations', count, _ ). +noun( 'asshole', 'assholes', count, _ ). +noun( 'assiduity', 'assiduities', both, _ ). +noun( 'assignation', 'assignations', count, _ ). +noun( 'assignment', 'assignments', both, _ ). +noun( 'assimilation', '-', mass, _ ). +noun( 'assistance', '-', mass, _ ). +noun( 'assistant', 'assistants', count, _ ). +noun( 'assize', '-', mass, _ ). +noun( 'assoc', '-', count, _ ). +noun( 'associate', 'associates', count, _ ). +noun( 'association', 'associations', both, _ ). +noun( 'assonance', 'assonances', count, _ ). +noun( 'assortment', 'assortments', count, _ ). +noun( 'asst', '-', count, _ ). +noun( 'assumption', 'assumptions', count, _ ). +noun( 'assurance', 'assurances', both, _ ). +noun( 'assuredness', '-', mass, _ ). +noun( 'aster', 'asters', count, _ ). +noun( 'asterisk', 'asterisks', count, _ ). +noun( 'asteroid', 'asteroids', count, _ ). +noun( 'asthma', '-', mass, _ ). +noun( 'astigmatism', '-', mass, _ ). +noun( 'astonishment', '-', mass, _ ). +noun( 'astrakhan', '-', mass, _ ). +noun( 'astringency', '-', mass, _ ). +noun( 'astringent', 'astringents', count, _ ). +noun( 'astrodome', 'astrodomes', count, _ ). +noun( 'astrolabe', 'astrolabes', count, _ ). +noun( 'astrologer', 'astrologers', count, _ ). +noun( 'astrology', '-', mass, _ ). +noun( 'astronaut', 'astronauts', count, _ ). +noun( 'astronautics', 'astronautics', mass, _ ). +noun( 'astronomer', 'astronomers', count, _ ). +noun( 'astronomy', '-', mass, _ ). +noun( 'astrophysics', 'astrophysics', mass, _ ). +noun( 'astuteness', '-', mass, _ ). +noun( 'asylum', 'asylums', both, _ ). +noun( 'asymmetry', '-', mass, _ ). +noun( 'asymptote', 'asymptotes', count, _ ). +noun( 'at-home', 'at-homes', count, _ ). +noun( 'atabrine', '-', mass, _ ). +noun( 'atavism', 'atavisms', count, _ ). +noun( 'atelier', 'ateliers', count, _ ). +noun( 'atheism', '-', mass, _ ). +noun( 'atheist', 'atheists', count, _ ). +noun( 'athlete', 'athletes', count, _ ). +noun( 'athletics', 'athletics', mass, _ ). +noun( 'atlas', 'atlases', count, _ ). +noun( 'atmosphere', 'atmospheres', both, _ ). +noun( 'atmospherics', 'atmospherics', mass, _ ). +noun( 'atoll', 'atolls', count, _ ). +noun( 'atom', 'atoms', count, _ ). +noun( 'atomizer', 'atomizers', count, _ ). +noun( 'atonality', '-', mass, _ ). +noun( 'atonement', '-', mass, _ ). +noun( 'atrocity', 'atrocities', both, _ ). +noun( 'atrophy', '-', mass, _ ). +noun( 'attach_e', 'attach_es', count, _ ). +noun( 'attachment', 'attachments', both, _ ). +noun( 'attack', 'attacks', both, _ ). +noun( 'attacker', 'attackers', count, _ ). +noun( 'attainder', 'attainders', count, _ ). +noun( 'attainment', 'attainments', both, _ ). +noun( 'attar', '-', mass, _ ). +noun( 'attempt', 'attempts', count, _ ). +noun( 'attendance', 'attendances', both, _ ). +noun( 'attendant', 'attendants', count, _ ). +noun( 'attention', 'attentions', both, _ ). +noun( 'attentiveness', '-', mass, _ ). +noun( 'attenuation', '-', mass, _ ). +noun( 'attic', 'attics', count, _ ). +noun( 'attire', '-', mass, _ ). +noun( 'attitude', 'attitudes', count, _ ). +noun( 'attorney', 'attorneys', count, _ ). +noun( 'attraction', 'attractions', both, _ ). +noun( 'attribute', 'attributes', count, _ ). +noun( 'attribution', 'attributions', both, _ ). +noun( 'attrition', '-', mass, _ ). +noun( 'au pair', 'au pairs', count, _ ). +noun( 'aubergine', 'aubergines', count, _ ). +noun( 'aubrietia', 'aubrietias', count, _ ). +noun( 'auction', 'auctions', both, _ ). +noun( 'auctioneer', 'auctioneers', count, _ ). +noun( 'audacity', '-', mass, _ ). +noun( 'audibility', '-', mass, _ ). +noun( 'audience', 'audiences', count, _ ). +noun( 'audit', 'audits', count, _ ). +noun( 'audition', 'auditions', both, _ ). +noun( 'auditor', 'auditors', count, _ ). +noun( 'auditorium', 'auditoriums', count, _ ). +noun( 'auger', 'augers', count, _ ). +noun( 'aught', '-', mass, _ ). +noun( 'augmentation', 'augmentations', both, _ ). +noun( 'augur', 'augurs', count, _ ). +noun( 'augury', 'auguries', count, _ ). +noun( 'auk', 'auks', count, _ ). +noun( 'auld lang syne', '-', count, _ ). +noun( 'aunt', 'aunts', count, _ ). +noun( 'auntie', 'aunties', count, _ ). +noun( 'aunty', 'aunties', count, _ ). +noun( 'aura', 'auras', count, _ ). +noun( 'aureole', 'aureoles', count, _ ). +noun( 'auricle', 'auricles', count, _ ). +noun( 'aurora', 'auroras', count, _ ). +noun( 'austerity', 'austerities', both, _ ). +noun( 'autarchy', 'autarchies', both, _ ). +noun( 'autarky', '-', mass, _ ). +noun( 'authentication', '-', mass, _ ). +noun( 'authenticity', '-', mass, _ ). +noun( 'author', 'authors', count, _ ). +noun( 'authoress', 'authoresses', count, _ ). +noun( 'authoritarian', 'authoritarians', count, _ ). +noun( 'authoritarianism', '-', mass, _ ). +noun( 'authority', 'authorities', both, _ ). +noun( 'authorization', '-', mass, _ ). +noun( 'authorship', '-', mass, _ ). +noun( 'autism', '-', mass, _ ). +noun( 'auto', 'autos', count, _ ). +noun( 'auto-changer', 'auto-changers', count, _ ). +noun( 'auto-da-f_e', '-', count, _ ). +noun( 'autobahn', 'autobahns', count, _ ). +noun( 'autobiography', 'autobiographies', both, _ ). +noun( 'autocracy', 'autocracies', both, _ ). +noun( 'autocrat', 'autocrats', count, _ ). +noun( 'autogiro', 'autogiros', count, _ ). +noun( 'autograph', 'autographs', count, _ ). +noun( 'autogyro', 'autogyros', count, _ ). +noun( 'automat', 'automats', count, _ ). +noun( 'automatic', 'automatics', count, _ ). +noun( 'automation', '-', mass, _ ). +noun( 'automaton', 'automatons', count, _ ). +noun( 'automobile', 'automobiles', count, _ ). +noun( 'autonomy', 'autonomies', both, _ ). +noun( 'autopsy', 'autopsies', count, _ ). +noun( 'autostrada', 'autostradas', count, _ ). +noun( 'autumn', 'autumns', both, _ ). +noun( 'auxiliary', 'auxiliaries', count, _ ). +noun( 'avail', '-', mass, _ ). +noun( 'availability', '-', mass, _ ). +noun( 'avalanche', 'avalanches', count, _ ). +noun( 'avant-garde', '-', count, _ ). +noun( 'avarice', '-', mass, _ ). +noun( 'avatar', 'avatars', count, _ ). +noun( 'avenger', 'avengers', count, _ ). +noun( 'avenue', 'avenues', count, _ ). +noun( 'average', 'averages', both, _ ). +noun( 'aversion', 'aversions', both, _ ). +noun( 'aviary', 'aviaries', count, _ ). +noun( 'aviation', '-', mass, _ ). +noun( 'aviator', 'aviators', count, _ ). +noun( 'avidity', '-', mass, _ ). +noun( 'avocado', 'avocados', count, _ ). +noun( 'avocation', 'avocations', count, _ ). +noun( 'avoidance', '-', mass, _ ). +noun( 'avoirdupois', '-', mass, _ ). +noun( 'avowal', 'avowals', both, _ ). +noun( 'awakening', 'awakenings', count, _ ). +noun( 'award', 'awards', count, _ ). +noun( 'awareness', '-', mass, _ ). +noun( 'awe', '-', mass, _ ). +noun( 'awkwardness', '-', mass, _ ). +noun( 'awl', 'awls', count, _ ). +noun( 'awning', 'awnings', count, _ ). +noun( 'ax', 'axes', count, _ ). +noun( 'axe', 'axes', count, _ ). +noun( 'axiom', 'axioms', count, _ ). +noun( 'axis', 'axes', count, _ ). +noun( 'axle', 'axles', count, _ ). +noun( 'ayah', 'ayahs', count, _ ). +noun( 'azalea', 'azaleas', count, _ ). +noun( 'azimuth', 'azimuths', count, _ ). +noun( 'azure', 'azures', count, _ ). +noun( 'b', '-', count, _ ). +noun( 'b^ete noire', 'b^etes noires', count, _ ). +noun( 'baa', 'baas', count, _ ). +noun( 'baa-lamb', 'baa-lambs', count, _ ). +noun( 'baas', '-', count, _ ). +noun( 'babble', '-', mass, _ ). +noun( 'babbler', 'babblers', count, _ ). +noun( 'babe', 'babes', count, _ ). +noun( 'babel', 'babels', count, _ ). +noun( 'baboo', 'baboos', count, _ ). +noun( 'baboon', 'baboons', count, _ ). +noun( 'babu', 'babus', count, _ ). +noun( 'baby', 'babies', count, _ ). +noun( 'baby-farmer', 'baby-farmers', count, _ ). +noun( 'baby-minder', 'baby-minders', count, _ ). +noun( 'baby-talk', '-', mass, _ ). +noun( 'babyhood', '-', count, _ ). +noun( 'babysitter', 'babysitters', count, _ ). +noun( 'babysitting', '-', mass, _ ). +noun( 'baccalaureate', 'baccalaureates', count, _ ). +noun( 'baccarat', '-', mass, _ ). +noun( 'bacchanal', 'bacchanals', count, _ ). +noun( 'baccy', '-', mass, _ ). +noun( 'bachelor', 'bachelors', count, _ ). +noun( 'bacillus', 'bacilli', count, _ ). +noun( 'back', 'backs', count, _ ). +noun( 'back-down', 'back-downs', count, _ ). +noun( 'back-formation', 'back-formations', both, _ ). +noun( 'back-up', 'back-ups', count, _ ). +noun( 'backache', 'backaches', both, _ ). +noun( 'backband', 'backbands', count, _ ). +noun( 'backbench', 'backbenches', count, _ ). +noun( 'backbencher', 'backbenchers', count, _ ). +noun( 'backbiter', 'backbiters', count, _ ). +noun( 'backboard', 'backboards', count, _ ). +noun( 'backbone', 'backbones', both, _ ). +noun( 'backchat', '-', mass, _ ). +noun( 'backcloth', 'backcloths', count, _ ). +noun( 'backdoor', 'backdoors', count, _ ). +noun( 'backdrop', 'backdrops', count, _ ). +noun( 'backer', 'backers', count, _ ). +noun( 'backfire', 'backfires', count, _ ). +noun( 'backgammon', '-', mass, _ ). +noun( 'background', 'backgrounds', count, _ ). +noun( 'backing', 'backings', both, _ ). +noun( 'backlash', '-', mass, _ ). +noun( 'backlog', 'backlogs', count, _ ). +noun( 'backroom', 'backrooms', count, _ ). +noun( 'backscratcher', 'backscratchers', count, _ ). +noun( 'backseat', 'backseats', count, _ ). +noun( 'backsheesh', 'backsheesh', both, _ ). +noun( 'backside', 'backsides', count, _ ). +noun( 'backstroke', 'backstrokes', both, _ ). +noun( 'backsword', 'backswords', count, _ ). +noun( 'backtalk', '-', mass, _ ). +noun( 'backwash', '-', mass, _ ). +noun( 'backwater', 'backwaters', count, _ ). +noun( 'backwoodsman', 'backwoodsmen', count, _ ). +noun( 'bacon', '-', mass, _ ). +noun( 'bacteriologist', 'bacteriologists', count, _ ). +noun( 'bacteriology', '-', mass, _ ). +noun( 'bacterium', 'bacteria', count, _ ). +noun( 'bad', '-', mass, _ ). +noun( 'badge', 'badges', count, _ ). +noun( 'badger', 'badgers', count, _ ). +noun( 'badinage', '-', mass, _ ). +noun( 'badminton', '-', mass, _ ). +noun( 'badness', '-', mass, _ ). +noun( 'baffle', 'baffles', count, _ ). +noun( 'bag', 'bags', count, _ ). +noun( 'bagatelle', 'bagatelles', both, _ ). +noun( 'baggage', '-', mass, _ ). +noun( 'bagnio', 'bagnios', count, _ ). +noun( 'bagpipe', 'bagpipes', count, _ ). +noun( 'bail', 'bails', both, _ ). +noun( 'bailee', 'bailees', count, _ ). +noun( 'bailey', 'baileys', count, _ ). +noun( 'bailiff', 'bailiffs', count, _ ). +noun( 'bailment', 'bailments', count, _ ). +noun( 'bailor', 'bailors', count, _ ). +noun( 'bairn', 'bairns', count, _ ). +noun( 'bait', 'baits', count, _ ). +noun( 'baize', '-', mass, _ ). +noun( 'bakelite', '-', mass, _ ). +noun( 'baker', 'bakers', count, _ ). +noun( 'bakery', 'bakeries', count, _ ). +noun( 'baking-powder', 'baking-powders', count, _ ). +noun( 'baksheesh', 'baksheesh', both, _ ). +noun( 'balaclava', 'balaclavas', count, _ ). +noun( 'balalaika', 'balalaikas', count, _ ). +noun( 'balance', 'balances', both, _ ). +noun( 'balance-sheet', 'balance-sheets', count, _ ). +noun( 'balance-wheel', 'balance-wheels', count, _ ). +noun( 'balcony', 'balconies', count, _ ). +noun( 'bald-head', 'bald-heads', count, _ ). +noun( 'bald-pate', 'bald-pates', count, _ ). +noun( 'balderdash', '-', mass, _ ). +noun( 'baldness', '-', mass, _ ). +noun( 'baldric', 'baldrics', count, _ ). +noun( 'bale', 'bales', count, _ ). +noun( 'balk', 'balks', count, _ ). +noun( 'ball', 'balls', count, _ ). +noun( 'ball-cartridge', 'ball-cartridges', count, _ ). +noun( 'ball-dress', 'ball-dresses', count, _ ). +noun( 'ballad', 'ballads', count, _ ). +noun( 'ballade', 'ballades', count, _ ). +noun( 'ballast', '-', mass, _ ). +noun( 'ballbearing', 'ballbearings', count, _ ). +noun( 'ballcock', 'ballcocks', count, _ ). +noun( 'ballerina', 'ballerinas', count, _ ). +noun( 'ballet', 'ballets', both, _ ). +noun( 'ballet-dancer', 'ballet-dancers', count, _ ). +noun( 'ballet-skirt', 'ballet-skirts', count, _ ). +noun( 'ballistics', 'ballistics', mass, _ ). +noun( 'ballock', 'ballocks', count, _ ). +noun( 'balloon', 'balloons', count, _ ). +noun( 'balloonist', 'balloonists', count, _ ). +noun( 'ballot', 'ballots', both, _ ). +noun( 'ballot-box', 'ballot-boxes', count, _ ). +noun( 'ballpen', 'ballpens', count, _ ). +noun( 'ballpoint', 'ballpoints', count, _ ). +noun( 'ballpoint-pen', 'ballpoint-pens', count, _ ). +noun( 'ballroom', 'ballrooms', count, _ ). +noun( 'balls-up', 'balls-ups', count, _ ). +noun( 'ballyhoo', '-', mass, _ ). +noun( 'balm', '-', mass, _ ). +noun( 'baloney', '-', mass, _ ). +noun( 'balsa', 'balsas', both, _ ). +noun( 'balsam', 'balsams', count, _ ). +noun( 'baluster', 'balusters', count, _ ). +noun( 'balustrade', 'balustrades', count, _ ). +noun( 'bambino', 'bambinos', count, _ ). +noun( 'bamboo', 'bamboos', both, _ ). +noun( 'ban', 'bans', count, _ ). +noun( 'banality', 'banalities', both, _ ). +noun( 'banana', 'bananas', count, _ ). +noun( 'band', 'bands', count, _ ). +noun( 'band-saw', 'band-saws', count, _ ). +noun( 'bandage', 'bandages', count, _ ). +noun( 'bandanna', 'bandannas', count, _ ). +noun( 'bandbox', 'bandboxes', count, _ ). +noun( 'bandeau', 'bandeaux', count, _ ). +noun( 'bandit', 'bandits', count, _ ). +noun( 'banditry', '-', mass, _ ). +noun( 'bandleader', 'bandleaders', count, _ ). +noun( 'bandmaster', 'bandmasters', count, _ ). +noun( 'bandoleer', 'bandoleers', count, _ ). +noun( 'bandolier', 'bandoliers', count, _ ). +noun( 'bandsman', 'bandsmen', count, _ ). +noun( 'bandstand', 'bandstands', count, _ ). +noun( 'bandwagon', 'bandwagons', count, _ ). +noun( 'bane', '-', mass, _ ). +noun( 'bang', 'bangs', both, _ ). +noun( 'banger', 'bangers', count, _ ). +noun( 'bangle', 'bangles', count, _ ). +noun( 'banian', 'banians', count, _ ). +noun( 'banian-tree', 'banian-trees', count, _ ). +noun( 'banishment', '-', mass, _ ). +noun( 'banister', 'banisters', count, _ ). +noun( 'banjo', 'banjos', count, _ ). +noun( 'bank', 'banks', count, _ ). +noun( 'bank-bill', 'bank-bills', count, _ ). +noun( 'bank-book', 'bank-books', count, _ ). +noun( 'bank-draft', 'bank-drafts', count, _ ). +noun( 'bank-rate', 'bank-rates', count, _ ). +noun( 'banker', 'bankers', count, _ ). +noun( 'banking', '-', mass, _ ). +noun( 'banknote', 'banknotes', count, _ ). +noun( 'bankroll', 'bankrolls', count, _ ). +noun( 'bankrupt', 'bankrupts', count, _ ). +noun( 'bankruptcy', 'bankruptcies', both, _ ). +noun( 'banner', 'banners', count, _ ). +noun( 'banning-order', 'banning-orders', count, _ ). +noun( 'bannister', 'bannisters', count, _ ). +noun( 'bannock', 'bannocks', count, _ ). +noun( 'banquet', 'banquets', count, _ ). +noun( 'banshee', 'banshees', count, _ ). +noun( 'bantam', 'bantams', count, _ ). +noun( 'banter', '-', mass, _ ). +noun( 'banting', '-', mass, _ ). +noun( 'banyan', 'banyans', count, _ ). +noun( 'baobab', 'baobabs', count, _ ). +noun( 'baptism', 'baptisms', both, _ ). +noun( 'bar', 'bars', count, _ ). +noun( 'barb', 'barbs', count, _ ). +noun( 'barbarian', 'barbarians', count, _ ). +noun( 'barbarism', 'barbarisms', both, _ ). +noun( 'barbarity', 'barbarities', both, _ ). +noun( 'barbecue', 'barbecues', count, _ ). +noun( 'barbel', 'barbels', count, _ ). +noun( 'barber', 'barbers', count, _ ). +noun( 'barbican', 'barbicans', count, _ ). +noun( 'barbitone', '-', mass, _ ). +noun( 'barbiturate', 'barbiturates', both, _ ). +noun( 'barcarole', 'barcaroles', count, _ ). +noun( 'barcarolle', 'barcarolles', count, _ ). +noun( 'bard', 'bards', count, _ ). +noun( 'bardolatry', '-', mass, _ ). +noun( 'bareness', '-', mass, _ ). +noun( 'bargain', 'bargains', count, _ ). +noun( 'barge', 'barges', count, _ ). +noun( 'bargee', 'bargees', count, _ ). +noun( 'bargepole', 'bargepoles', count, _ ). +noun( 'baritone', 'baritones', count, _ ). +noun( 'barium', '-', mass, _ ). +noun( 'bark', 'barks', both, _ ). +noun( 'barker', 'barkers', count, _ ). +noun( 'barley', '-', mass, _ ). +noun( 'barley-sugar', 'barley-sugars', both, _ ). +noun( 'barley-water', '-', mass, _ ). +noun( 'barleycorn', 'barleycorns', both, _ ). +noun( 'barm', '-', mass, _ ). +noun( 'barmaid', 'barmaids', count, _ ). +noun( 'barman', 'barmen', count, _ ). +noun( 'barn', 'barns', count, _ ). +noun( 'barn-door', 'barn-doors', count, _ ). +noun( 'barnacle', 'barnacles', count, _ ). +noun( 'barnstormer', 'barnstormers', count, _ ). +noun( 'barnyard', 'barnyards', count, _ ). +noun( 'barometer', 'barometers', count, _ ). +noun( 'baron', 'barons', count, _ ). +noun( 'baronage', 'baronages', count, _ ). +noun( 'baroness', 'baronesses', count, _ ). +noun( 'baronet', 'baronets', count, _ ). +noun( 'baronetcy', 'baronetcies', count, _ ). +noun( 'barony', 'baronies', count, _ ). +noun( 'baroque', '-', count, _ ). +noun( 'barouche', 'barouches', count, _ ). +noun( 'barque', 'barques', count, _ ). +noun( 'barrack', 'barracks', count, _ ). +noun( 'barracking', '-', mass, _ ). +noun( 'barracuda', 'barracudas', count, _ ). +noun( 'barrage', 'barrages', count, _ ). +noun( 'barrel', 'barrels', count, _ ). +noun( 'barrenness', '-', mass, _ ). +noun( 'barricade', 'barricades', count, _ ). +noun( 'barrier', 'barriers', count, _ ). +noun( 'barrister', 'barristers', count, _ ). +noun( 'barrow', 'barrows', count, _ ). +noun( 'barrow-boy', 'barrow-boys', count, _ ). +noun( 'barrow-man', 'barrow-men', count, _ ). +noun( 'bartender', 'bartenders', count, _ ). +noun( 'barter', '-', mass, _ ). +noun( 'barterer', 'barterers', count, _ ). +noun( 'bas-relief', 'bas-reliefs', both, _ ). +noun( 'basalt', '-', mass, _ ). +noun( 'bascule', 'bascules', count, _ ). +noun( 'base', 'bases', count, _ ). +noun( 'baseball', 'baseballs', both, _ ). +noun( 'baseboard', 'baseboards', count, _ ). +noun( 'basement', 'basements', count, _ ). +noun( 'bash', 'bashes', count, _ ). +noun( 'basil', '-', mass, _ ). +noun( 'basilica', 'basilicas', count, _ ). +noun( 'basilisk', 'basilisks', count, _ ). +noun( 'basin', 'basins', count, _ ). +noun( 'basis', 'bases', count, _ ). +noun( 'basket', 'baskets', count, _ ). +noun( 'basketball', 'basketballs', both, _ ). +noun( 'basketry', '-', mass, _ ). +noun( 'bass', 'bass', count, _ ). +noun( 'bass', 'basses', count, _ ). +noun( 'bassinet', 'bassinets', count, _ ). +noun( 'bassoon', 'bassoons', count, _ ). +noun( 'bast', '-', mass, _ ). +noun( 'bastard', 'bastards', count, _ ). +noun( 'bastardy', 'bastardies', count, _ ). +noun( 'bastinado', '-', count, _ ). +noun( 'bastion', 'bastions', count, _ ). +noun( 'bat', 'bats', count, _ ). +noun( 'batch', 'batches', count, _ ). +noun( 'bath', 'baths', count, _ ). +noun( 'bathe', 'bathes', count, _ ). +noun( 'bather', 'bathers', count, _ ). +noun( 'bathing', 'bathings', count, _ ). +noun( 'bathing-cap', 'bathing-caps', count, _ ). +noun( 'bathing-costume', 'bathing-costumes', count, _ ). +noun( 'bathing-machine', 'bathing-machines', count, _ ). +noun( 'bathing-suit', 'bathing-suits', count, _ ). +noun( 'bathos', '-', mass, _ ). +noun( 'bathrobe', 'bathrobes', count, _ ). +noun( 'bathroom', 'bathrooms', count, _ ). +noun( 'bathtub', 'bathtubs', count, _ ). +noun( 'bathysphere', 'bathyspheres', count, _ ). +noun( 'batik', 'batiks', both, _ ). +noun( 'batiste', '-', mass, _ ). +noun( 'batman', 'batmen', count, _ ). +noun( 'baton', 'batons', count, _ ). +noun( 'batsman', 'batsmen', count, _ ). +noun( 'battalion', 'battalions', count, _ ). +noun( 'batten', 'battens', count, _ ). +noun( 'batter', '-', mass, _ ). +noun( 'battery', 'batteries', count, _ ). +noun( 'batting', '-', mass, _ ). +noun( 'battle', 'battles', both, _ ). +noun( 'battle-axe', 'battle-axes', count, _ ). +noun( 'battle-cruiser', 'battle-cruisers', count, _ ). +noun( 'battledore', 'battledores', count, _ ). +noun( 'battledress', '-', count, _ ). +noun( 'battlefield', 'battlefields', count, _ ). +noun( 'battleground', 'battlegrounds', count, _ ). +noun( 'battleship', 'battleships', count, _ ). +noun( 'battue', 'battues', count, _ ). +noun( 'bauble', 'baubles', count, _ ). +noun( 'baulk', 'baulks', count, _ ). +noun( 'bauxite', '-', mass, _ ). +noun( 'bawbee', 'bawbees', count, _ ). +noun( 'bawd', 'bawds', count, _ ). +noun( 'bawdy', '-', mass, _ ). +noun( 'bay', 'bays', count, _ ). +noun( 'bay-wreath', 'bay-wreaths', count, _ ). +noun( 'bayonet', 'bayonets', count, _ ). +noun( 'bayou', 'bayous', count, _ ). +noun( 'bazaar', 'bazaars', count, _ ). +noun( 'bazooka', 'bazookas', count, _ ). +noun( 'beach', 'beaches', count, _ ). +noun( 'beachcomber', 'beachcombers', count, _ ). +noun( 'beachhead', 'beachheads', count, _ ). +noun( 'beachwear', '-', mass, _ ). +noun( 'beacon', 'beacons', count, _ ). +noun( 'beacon-fire', 'beacon-fires', count, _ ). +noun( 'beacon-light', 'beacon-lights', count, _ ). +noun( 'bead', 'beads', count, _ ). +noun( 'beading', '-', mass, _ ). +noun( 'beadle', 'beadles', count, _ ). +noun( 'beagle', 'beagles', count, _ ). +noun( 'beagling', '-', mass, _ ). +noun( 'beak', 'beaks', count, _ ). +noun( 'beaker', 'beakers', count, _ ). +noun( 'beam', 'beams', count, _ ). +noun( 'bean', 'beans', count, _ ). +noun( 'beanfeast', 'beanfeasts', count, _ ). +noun( 'beano', 'beanos', count, _ ). +noun( 'beanstalk', 'beanstalks', count, _ ). +noun( 'bear', 'bears', count, _ ). +noun( 'beard', 'beards', count, _ ). +noun( 'bearer', 'bearers', count, _ ). +noun( 'bearing', 'bearings', both, _ ). +noun( 'bearskin', 'bearskins', count, _ ). +noun( 'beast', 'beasts', count, _ ). +noun( 'beastliness', '-', mass, _ ). +noun( 'beat', 'beats', count, _ ). +noun( 'beater', 'beaters', count, _ ). +noun( 'beatification', 'beatifications', count, _ ). +noun( 'beating', 'beatings', count, _ ). +noun( 'beatitude', 'beatitudes', both, _ ). +noun( 'beatnik', 'beatniks', count, _ ). +noun( 'beau', 'beaux', count, _ ). +noun( 'beautician', 'beauticians', count, _ ). +noun( 'beauty', 'beauties', both, _ ). +noun( 'beauty-parlour', 'beauty-parlours', count, _ ). +noun( 'beauty-salon', 'beauty-salons', count, _ ). +noun( 'beauty-sleep', '-', mass, _ ). +noun( 'beauty-spot', 'beauty-spots', count, _ ). +noun( 'beaver', 'beavers', both, _ ). +noun( 'beck', 'becks', count, _ ). +noun( 'bed', 'beds', count, _ ). +noun( 'bedbug', 'bedbugs', count, _ ). +noun( 'bedding', '-', mass, _ ). +noun( 'bedevilment', 'bedevilments', count, _ ). +noun( 'bedfellow', 'bedfellows', count, _ ). +noun( 'bedlam', 'bedlams', count, _ ). +noun( 'bedpan', 'bedpans', count, _ ). +noun( 'bedpost', 'bedposts', count, _ ). +noun( 'bedrock', 'bedrocks', count, _ ). +noun( 'bedroll', 'bedrolls', count, _ ). +noun( 'bedroom', 'bedrooms', count, _ ). +noun( 'bedside', 'bedsides', count, _ ). +noun( 'bedsit', 'bedsits', count, _ ). +noun( 'bedsitter', 'bedsitters', count, _ ). +noun( 'bedsitting-room', 'bedsitting-rooms', count, _ ). +noun( 'bedsore', 'bedsores', count, _ ). +noun( 'bedspread', 'bedspreads', count, _ ). +noun( 'bedstead', 'bedsteads', count, _ ). +noun( 'bedtime', 'bedtimes', count, _ ). +noun( 'bee', 'bees', count, _ ). +noun( 'beech', 'beeches', both, _ ). +noun( 'beef', '-', both, _ ). +noun( 'beefeater', 'beefeaters', count, _ ). +noun( 'beefsteak', 'beefsteaks', count, _ ). +noun( 'beehive', 'beehives', count, _ ). +noun( 'beep', 'beeps', count, _ ). +noun( 'beer', 'beers', both, _ ). +noun( 'beeswax', '-', mass, _ ). +noun( 'beet', 'beets', count, _ ). +noun( 'beetle', 'beetles', count, _ ). +noun( 'beetroot', 'beetroots', count, _ ). +noun( 'begetter', 'begetters', count, _ ). +noun( 'beggar', 'beggars', count, _ ). +noun( 'beggarman', 'beggarmen', count, _ ). +noun( 'beggarwoman', 'beggarwomen', count, _ ). +noun( 'beggary', '-', mass, _ ). +noun( 'beginner', 'beginners', count, _ ). +noun( 'beginning', 'beginnings', count, _ ). +noun( 'begonia', 'begonias', count, _ ). +noun( 'begum', 'begums', count, _ ). +noun( 'behalf', 'behalves', count, _ ). +noun( 'behaviour', '-', mass, _ ). +noun( 'behaviourism', '-', mass, _ ). +noun( 'behaviourist', 'behaviourists', count, _ ). +noun( 'behest', 'behests', count, _ ). +noun( 'behind', 'behinds', count, _ ). +noun( 'beholder', 'beholders', count, _ ). +noun( 'beige', '-', mass, _ ). +noun( 'being', 'beings', both, _ ). +noun( 'belay', 'belays', count, _ ). +noun( 'belaying-pin', 'belaying-pins', count, _ ). +noun( 'belch', 'belches', count, _ ). +noun( 'beldam', 'beldams', count, _ ). +noun( 'beldame', 'beldames', count, _ ). +noun( 'belfry', 'belfries', count, _ ). +noun( 'belief', 'beliefs', both, _ ). +noun( 'believer', 'believers', count, _ ). +noun( 'believing', '-', mass, _ ). +noun( 'bell', 'bells', count, _ ). +noun( 'bell-buoy', 'bell-buoys', count, _ ). +noun( 'bell-flower', 'bell-flowers', count, _ ). +noun( 'bell-founder', 'bell-founders', count, _ ). +noun( 'bell-foundry', 'bell-foundries', count, _ ). +noun( 'bell-metal', '-', mass, _ ). +noun( 'bell-push', 'bell-pushes', count, _ ). +noun( 'bell-ringer', 'bell-ringers', count, _ ). +noun( 'bell-tent', 'bell-tents', count, _ ). +noun( 'belladonna', 'belladonnas', both, _ ). +noun( 'bellboy', 'bellboys', count, _ ). +noun( 'belle', 'belles', count, _ ). +noun( 'bellhop', 'bellhops', count, _ ). +noun( 'belligerency', '-', mass, _ ). +noun( 'belligerent', 'belligerents', count, _ ). +noun( 'bellwether', 'bellwethers', count, _ ). +noun( 'belly', 'bellies', count, _ ). +noun( 'bellyache', 'bellyaches', count, _ ). +noun( 'bellyflop', 'bellyflops', count, _ ). +noun( 'bellyful', 'bellyfuls', count, _ ). +noun( 'bellylaugh', 'bellylaughs', count, _ ). +noun( 'beloved', 'beloveds', count, _ ). +noun( 'belt', 'belts', count, _ ). +noun( 'belting', 'beltings', count, _ ). +noun( 'ben', 'bens', count, _ ). +noun( 'bench', 'benches', count, _ ). +noun( 'bend', 'bends', count, _ ). +noun( 'benedick', 'benedicks', count, _ ). +noun( 'benediction', 'benedictions', count, _ ). +noun( 'benefaction', 'benefactions', both, _ ). +noun( 'benefactor', 'benefactors', count, _ ). +noun( 'benefactress', 'benefactresses', count, _ ). +noun( 'benefice', 'benefices', count, _ ). +noun( 'beneficence', '-', mass, _ ). +noun( 'beneficiary', 'beneficiaries', count, _ ). +noun( 'benefit', 'benefits', both, _ ). +noun( 'benevolence', '-', mass, _ ). +noun( 'benignity', 'benignities', both, _ ). +noun( 'benison', 'benisons', count, _ ). +noun( 'bent', 'bents', count, _ ). +noun( 'benzene', '-', mass, _ ). +noun( 'benzine', '-', mass, _ ). +noun( 'benzol', '-', mass, _ ). +noun( 'bequest', 'bequests', both, _ ). +noun( 'bereavement', 'bereavements', both, _ ). +noun( 'beret', 'berets', count, _ ). +noun( 'berg', 'bergs', count, _ ). +noun( 'beri-beri', '-', mass, _ ). +noun( 'berry', 'berries', count, _ ). +noun( 'berth', 'berths', count, _ ). +noun( 'beryl', 'beryls', count, _ ). +noun( 'besieger', 'besiegers', count, _ ). +noun( 'besom', 'besoms', count, _ ). +noun( 'best-seller', 'best-sellers', count, _ ). +noun( 'bestiality', 'bestialities', both, _ ). +noun( 'bestiary', 'bestiaries', count, _ ). +noun( 'bestowal', 'bestowals', count, _ ). +noun( 'bet', 'bets', count, _ ). +noun( 'beta', 'betas', count, _ ). +noun( 'betel', 'betels', count, _ ). +noun( 'betel-nut', 'betel-nuts', count, _ ). +noun( 'bethel', 'bethels', count, _ ). +noun( 'betrayal', 'betrayals', both, _ ). +noun( 'betrayer', 'betrayers', count, _ ). +noun( 'betrothal', 'betrothals', count, _ ). +noun( 'betrothed', 'betrotheds', count, _ ). +noun( 'better', 'betters', count, _ ). +noun( 'betterment', '-', mass, _ ). +noun( 'bettor', 'bettors', count, _ ). +noun( 'bevel', 'bevels', count, _ ). +noun( 'beverage', 'beverages', count, _ ). +noun( 'bevy', 'bevies', count, _ ). +noun( 'bewilderment', '-', mass, _ ). +noun( 'bey', 'beys', count, _ ). +noun( 'bezique', '-', mass, _ ). +noun( 'bhang', 'bhangs', count, _ ). +noun( 'bias', 'biases', count, _ ). +noun( 'bib', 'bibs', count, _ ). +noun( 'bibliographer', 'bibliographers', count, _ ). +noun( 'bibliography', 'bibliographies', both, _ ). +noun( 'bibliophile', 'bibliophiles', count, _ ). +noun( 'bicarbonate', '-', mass, _ ). +noun( 'bicentenary', 'bicentenaries', count, _ ). +noun( 'bicentennial', 'bicentennials', count, _ ). +noun( 'biceps', 'biceps', count, _ ). +noun( 'bicycle', 'bicycles', count, _ ). +noun( 'bid', 'bids', count, _ ). +noun( 'bidder', 'bidders', count, _ ). +noun( 'bidding', '-', mass, _ ). +noun( 'bidet', 'bidets', count, _ ). +noun( 'biennial', 'biennials', count, _ ). +noun( 'bier', 'biers', count, _ ). +noun( 'biff', 'biffs', count, _ ). +noun( 'bifurcation', 'bifurcations', count, _ ). +noun( 'bigamist', 'bigamists', count, _ ). +noun( 'bigamy', '-', mass, _ ). +noun( 'bight', 'bights', count, _ ). +noun( 'bigot', 'bigots', count, _ ). +noun( 'bigotry', 'bigotries', both, _ ). +noun( 'bigwig', 'bigwigs', count, _ ). +noun( 'bijou', '-', count, _ ). +noun( 'bike', 'bikes', count, _ ). +noun( 'bikini', 'bikinis', count, _ ). +noun( 'bilabial', 'bilabials', count, _ ). +noun( 'bilateralism', 'bilateralisms', both, _ ). +noun( 'bilberry', 'bilberries', count, _ ). +noun( 'bile', '-', mass, _ ). +noun( 'bile-duct', 'bile-ducts', count, _ ). +noun( 'bilge', '-', mass, _ ). +noun( 'bilge-water', '-', mass, _ ). +noun( 'bilharzia', '-', mass, _ ). +noun( 'bilingual', 'bilinguals', count, _ ). +noun( 'biliousness', '-', mass, _ ). +noun( 'bill', 'bills', count, _ ). +noun( 'bill-poster', 'bill-posters', count, _ ). +noun( 'bill-sticker', 'bill-stickers', count, _ ). +noun( 'billboard', 'billboards', count, _ ). +noun( 'billet', 'billets', count, _ ). +noun( 'billet-doux', 'billets-doux', count, _ ). +noun( 'billfold', 'billfolds', count, _ ). +noun( 'billhook', 'billhooks', count, _ ). +noun( 'billiard-marker', 'billiard-markers', count, _ ). +noun( 'billiard-player', 'billiard-players', count, _ ). +noun( 'billiard-room', 'billiard-rooms', count, _ ). +noun( 'billiard-table', 'billiard-tables', count, _ ). +noun( 'billiards', 'billiards', mass, _ ). +noun( 'billingsgate', '-', mass, _ ). +noun( 'billion', 'billions', count, _ ). +noun( 'billionth', 'billionths', count, _ ). +noun( 'billow', 'billows', count, _ ). +noun( 'billy', 'billies', count, _ ). +noun( 'billy-goat', 'billy-goats', count, _ ). +noun( 'billy-ho', '-', count, _ ). +noun( 'billy-o', '-', mass, _ ). +noun( 'biltong', '-', mass, _ ). +noun( 'bimetallism', '-', mass, _ ). +noun( 'bin', 'bins', count, _ ). +noun( 'bind', 'binds', both, _ ). +noun( 'binder', 'binders', count, _ ). +noun( 'bindery', 'binderies', count, _ ). +noun( 'bindweed', '-', mass, _ ). +noun( 'bine', 'bines', count, _ ). +noun( 'binge', 'binges', count, _ ). +noun( 'bingo', '-', mass, _ ). +noun( 'binnacle', 'binnacles', count, _ ). +noun( 'biochemistry', '-', mass, _ ). +noun( 'biograph', 'biographs', count, _ ). +noun( 'biographer', 'biographers', count, _ ). +noun( 'biography', 'biographies', both, _ ). +noun( 'biologist', 'biologists', count, _ ). +noun( 'biology', '-', mass, _ ). +noun( 'bioscope', 'bioscopes', count, _ ). +noun( 'biped', 'bipeds', count, _ ). +noun( 'biplane', 'biplanes', count, _ ). +noun( 'birch', 'birches', both, _ ). +noun( 'birch-rod', 'birch-rods', count, _ ). +noun( 'bird', 'birds', count, _ ). +noun( 'bird-fancier', 'bird-fanciers', count, _ ). +noun( 'birdcage', 'birdcages', count, _ ). +noun( 'birdlime', 'birdlimes', count, _ ). +noun( 'birdnesting', '-', mass, _ ). +noun( 'birdwatcher', 'birdwatchers', count, _ ). +noun( 'biretta', 'birettas', count, _ ). +noun( 'biro', 'biros', count, _ ). +noun( 'birth', 'births', both, _ ). +noun( 'birth-control', '-', mass, _ ). +noun( 'birthday', 'birthdays', count, _ ). +noun( 'birthmark', 'birthmarks', count, _ ). +noun( 'birthplace', 'birthplaces', count, _ ). +noun( 'birthrate', 'birthrates', count, _ ). +noun( 'birthright', 'birthrights', count, _ ). +noun( 'biscuit', 'biscuits', count, _ ). +noun( 'bisection', '-', mass, _ ). +noun( 'bisexual', 'bisexuals', count, _ ). +noun( 'bisexuality', '-', mass, _ ). +noun( 'bishop', 'bishops', count, _ ). +noun( 'bishopric', 'bishoprics', count, _ ). +noun( 'bismuth', '-', mass, _ ). +noun( 'bison', 'bison', count, _ ). +noun( 'bistro', 'bistros', count, _ ). +noun( 'bit', 'bits', count, _ ). +noun( 'bitch', 'bitches', count, _ ). +noun( 'bite', 'bites', both, _ ). +noun( 'bitter', 'bitters', both, _ ). +noun( 'bittern', 'bitterns', count, _ ). +noun( 'bitterness', '-', mass, _ ). +noun( 'bitumen', '-', mass, _ ). +noun( 'bivalve', 'bivalves', count, _ ). +noun( 'bivouac', 'bivouacs', count, _ ). +noun( 'biz', '-', mass, _ ). +noun( 'blabbermouth', 'blabbermouths', count, _ ). +noun( 'black', 'blacks', both, _ ). +noun( 'black-beetle', 'black-beetles', count, _ ). +noun( 'black-lead', '-', mass, _ ). +noun( 'blackamoor', 'blackamoors', count, _ ). +noun( 'blackberry', 'blackberries', count, _ ). +noun( 'blackbird', 'blackbirds', count, _ ). +noun( 'blackboard', 'blackboards', count, _ ). +noun( 'blackcurrant', 'blackcurrants', count, _ ). +noun( 'blackguard', 'blackguards', count, _ ). +noun( 'blackhead', 'blackheads', count, _ ). +noun( 'blacking', '-', mass, _ ). +noun( 'blackleg', 'blacklegs', count, _ ). +noun( 'blacklist', 'blacklists', count, _ ). +noun( 'blackmail', '-', mass, _ ). +noun( 'blackmailer', 'blackmailers', count, _ ). +noun( 'blackness', '-', mass, _ ). +noun( 'blackout', 'blackouts', count, _ ). +noun( 'blacksmith', 'blacksmiths', count, _ ). +noun( 'blackthorn', 'blackthorns', count, _ ). +noun( 'bladder', 'bladders', count, _ ). +noun( 'blade', 'blades', count, _ ). +noun( 'blaeberry', 'blaeberries', count, _ ). +noun( 'blah', '-', mass, _ ). +noun( 'blame', '-', mass, _ ). +noun( 'blancmange', 'blancmanges', both, _ ). +noun( 'blandishment', 'blandishments', count, _ ). +noun( 'blandness', '-', mass, _ ). +noun( 'blank', 'blanks', both, _ ). +noun( 'blanket', 'blankets', count, _ ). +noun( 'blare', '-', mass, _ ). +noun( 'blarney', '-', mass, _ ). +noun( 'blasphemer', 'blasphemers', count, _ ). +noun( 'blasphemy', 'blasphemies', both, _ ). +noun( 'blast', 'blasts', both, _ ). +noun( 'blast-furnace', 'blast-furnaces', count, _ ). +noun( 'blast-off', 'blast-offs', count, _ ). +noun( 'blather', 'blathers', both, _ ). +noun( 'blaze', 'blazes', count, _ ). +noun( 'blazer', 'blazers', count, _ ). +noun( 'blazon', 'blazons', count, _ ). +noun( 'blazonry', 'blazonries', count, _ ). +noun( 'bleach', 'bleaches', count, _ ). +noun( 'bleaching-powder', 'bleaching-powders', count, _ ). +noun( 'bleat', 'bleats', count, _ ). +noun( 'bleep', 'bleeps', count, _ ). +noun( 'blemish', 'blemishes', both, _ ). +noun( 'blend', 'blends', count, _ ). +noun( 'blessedness', '-', mass, _ ). +noun( 'blessing', 'blessings', count, _ ). +noun( 'blether', '-', mass, _ ). +noun( 'blight', 'blights', both, _ ). +noun( 'blighter', 'blighters', count, _ ). +noun( 'blimp', 'blimps', count, _ ). +noun( 'blind', 'blinds', count, _ ). +noun( 'blindfold', 'blindfolds', count, _ ). +noun( 'blindman\'s buff', '-', mass, _ ). +noun( 'blindness', '-', mass, _ ). +noun( 'blink', 'blinks', count, _ ). +noun( 'blip', 'blips', count, _ ). +noun( 'bliss', '-', mass, _ ). +noun( 'blister', 'blisters', count, _ ). +noun( 'blitz', 'blitzes', count, _ ). +noun( 'blizzard', 'blizzards', count, _ ). +noun( 'bloater', 'bloaters', count, _ ). +noun( 'blob', 'blobs', count, _ ). +noun( 'bloc', 'blocs', count, _ ). +noun( 'block', 'blocks', count, _ ). +noun( 'blockade', 'blockades', count, _ ). +noun( 'blockade-runner', 'blockade-runners', count, _ ). +noun( 'blockage', 'blockages', count, _ ). +noun( 'blockbuster', 'blockbusters', count, _ ). +noun( 'blockhead', 'blockheads', count, _ ). +noun( 'blockhouse', 'blockhouses', count, _ ). +noun( 'bloke', 'blokes', count, _ ). +noun( 'blond', 'blonds', count, _ ). +noun( 'blonde', 'blondes', count, _ ). +noun( 'blood', 'bloods', both, _ ). +noun( 'blood-bath', 'blood-baths', count, _ ). +noun( 'blood-donor', 'blood-donors', count, _ ). +noun( 'blood-group', 'blood-groups', count, _ ). +noun( 'blood-heat', '-', mass, _ ). +noun( 'blood-letting', 'blood-lettings', both, _ ). +noun( 'blood-money', '-', mass, _ ). +noun( 'blood-poisoning', '-', mass, _ ). +noun( 'blood-pressure', 'blood-pressures', both, _ ). +noun( 'blood-relation', 'blood-relations', count, _ ). +noun( 'blood-transfusion', 'blood-transfusions', count, _ ). +noun( 'blood-type', 'blood-types', count, _ ). +noun( 'blood-vessel', 'blood-vessels', count, _ ). +noun( 'bloodhound', 'bloodhounds', count, _ ). +noun( 'bloodlust', '-', mass, _ ). +noun( 'bloodshed', 'bloodsheds', count, _ ). +noun( 'bloodstain', 'bloodstains', count, _ ). +noun( 'bloodstock', 'bloodstocks', count, _ ). +noun( 'bloodsucker', 'bloodsuckers', count, _ ). +noun( 'bloodthirstiness', '-', mass, _ ). +noun( 'bloom', 'blooms', both, _ ). +noun( 'bloomer', 'bloomers', count, _ ). +noun( 'blossom', 'blossoms', both, _ ). +noun( 'blot', 'blots', count, _ ). +noun( 'blotch', 'blotches', count, _ ). +noun( 'blotter', 'blotters', count, _ ). +noun( 'blotting-paper', 'blotting-papers', count, _ ). +noun( 'blouse', 'blouses', count, _ ). +noun( 'blow', 'blows', count, _ ). +noun( 'blow-up', 'blow-ups', count, _ ). +noun( 'blowback', 'blowbacks', count, _ ). +noun( 'blower', 'blowers', count, _ ). +noun( 'blowfly', 'blowflies', count, _ ). +noun( 'blowhole', 'blowholes', count, _ ). +noun( 'blowing-up', 'blowing-ups', count, _ ). +noun( 'blowlamp', 'blowlamps', count, _ ). +noun( 'blowout', 'blowouts', count, _ ). +noun( 'blowpipe', 'blowpipes', count, _ ). +noun( 'blowtorch', 'blowtorches', count, _ ). +noun( 'blubber', '-', mass, _ ). +noun( 'bludgeon', 'bludgeons', count, _ ). +noun( 'blue', 'blues', both, _ ). +noun( 'blue-jacket', 'blue-jackets', count, _ ). +noun( 'bluebell', 'bluebells', count, _ ). +noun( 'bluebottle', 'bluebottles', count, _ ). +noun( 'blueprint', 'blueprints', count, _ ). +noun( 'bluestocking', 'bluestockings', count, _ ). +noun( 'bluff', 'bluffs', both, _ ). +noun( 'bluffer', 'bluffers', count, _ ). +noun( 'bluffness', '-', mass, _ ). +noun( 'blunder', 'blunders', count, _ ). +noun( 'blunderbuss', 'blunderbusses', count, _ ). +noun( 'blunderer', 'blunderers', count, _ ). +noun( 'bluntness', '-', mass, _ ). +noun( 'blur', 'blurs', count, _ ). +noun( 'blurb', 'blurbs', both, _ ). +noun( 'blush', 'blushes', count, _ ). +noun( 'bluster', 'blusters', both, _ ). +noun( 'bo\'sn', 'bo\'sns', count, _ ). +noun( 'bo\'sun', 'bo\'suns', count, _ ). +noun( 'boa', 'boas', count, _ ). +noun( 'boa-constrictor', 'boa-constrictors', count, _ ). +noun( 'boar', 'boars', count, _ ). +noun( 'board', 'boards', count, _ ). +noun( 'boarder', 'boarders', count, _ ). +noun( 'boarding', '-', mass, _ ). +noun( 'boarding-card', 'boarding-cards', count, _ ). +noun( 'boarding-house', 'boarding-houses', count, _ ). +noun( 'boarding-school', 'boarding-schools', count, _ ). +noun( 'boardroom', 'boardrooms', count, _ ). +noun( 'boardwalk', 'boardwalks', count, _ ). +noun( 'boast', 'boasts', count, _ ). +noun( 'boaster', 'boasters', count, _ ). +noun( 'boat', 'boats', count, _ ). +noun( 'boat-hook', 'boat-hooks', count, _ ). +noun( 'boat-house', 'boat-houses', count, _ ). +noun( 'boat-race', 'boat-races', count, _ ). +noun( 'boat-train', 'boat-trains', count, _ ). +noun( 'boater', 'boaters', count, _ ). +noun( 'boatman', 'boatmen', count, _ ). +noun( 'boatswain', 'boatswains', count, _ ). +noun( 'bob', 'bob', count, _ ). +noun( 'bobbin', 'bobbins', count, _ ). +noun( 'bobby', 'bobbies', count, _ ). +noun( 'bobby-soxer', 'bobby-soxers', count, _ ). +noun( 'bobolink', 'bobolinks', count, _ ). +noun( 'bobsled', 'bobsleds', count, _ ). +noun( 'bobsleigh', 'bobsleighs', count, _ ). +noun( 'bobtail', 'bobtails', count, _ ). +noun( 'bodice', 'bodices', count, _ ). +noun( 'boding', '-', mass, _ ). +noun( 'bodkin', 'bodkins', count, _ ). +noun( 'body', 'bodies', both, _ ). +noun( 'body-servant', 'body-servants', count, _ ). +noun( 'body-snatcher', 'body-snatchers', count, _ ). +noun( 'bodyguard', 'bodyguards', count, _ ). +noun( 'bodywork', 'bodyworks', count, _ ). +noun( 'boffin', 'boffins', count, _ ). +noun( 'bog', 'bogs', count, _ ). +noun( 'bogey', 'bogeys', count, _ ). +noun( 'bogeyman', 'bogeymen', count, _ ). +noun( 'bogie', 'bogies', count, _ ). +noun( 'bogy', 'bogies', count, _ ). +noun( 'bohemian', 'bohemians', count, _ ). +noun( 'boil', 'boils', count, _ ). +noun( 'boiler', 'boilers', count, _ ). +noun( 'boilersuit', 'boilersuits', count, _ ). +noun( 'boiling-point', 'boiling-points', count, _ ). +noun( 'boisterousness', '-', mass, _ ). +noun( 'boldness', '-', mass, _ ). +noun( 'bole', 'boles', count, _ ). +noun( 'bolero', 'boleros', count, _ ). +noun( 'boll', 'bolls', count, _ ). +noun( 'bollard', 'bollards', count, _ ). +noun( 'bollock', 'bollocks', count, _ ). +noun( 'boloney', '-', mass, _ ). +noun( 'bolster', 'bolsters', count, _ ). +noun( 'bolt', 'bolts', count, _ ). +noun( 'bolt-hole', 'bolt-holes', count, _ ). +noun( 'bomb', 'bombs', count, _ ). +noun( 'bomb-sight', 'bomb-sights', count, _ ). +noun( 'bomb-site', 'bomb-sites', count, _ ). +noun( 'bombardier', 'bombardiers', count, _ ). +noun( 'bombardment', 'bombardments', both, _ ). +noun( 'bombast', '-', mass, _ ). +noun( 'bomber', 'bombers', count, _ ). +noun( 'bombshell', 'bombshells', count, _ ). +noun( 'bon mot', 'bons mots', count, _ ). +noun( 'bonanza', 'bonanzas', count, _ ). +noun( 'bonbon', 'bonbons', count, _ ). +noun( 'bond', 'bonds', count, _ ). +noun( 'bond-holder', 'bond-holders', count, _ ). +noun( 'bondage', '-', mass, _ ). +noun( 'bone', 'bones', both, _ ). +noun( 'bone-head', 'bone-heads', count, _ ). +noun( 'bone-setter', 'bone-setters', count, _ ). +noun( 'bonemeal', 'bonemeals', count, _ ). +noun( 'boner', 'boners', count, _ ). +noun( 'boneshaker', 'boneshakers', count, _ ). +noun( 'bonfire', 'bonfires', count, _ ). +noun( 'bongo', 'bongos', count, _ ). +noun( 'bonhomie', '-', mass, _ ). +noun( 'bonito', 'bonitos', count, _ ). +noun( 'bonnet', 'bonnets', count, _ ). +noun( 'bonus', 'bonuses', count, _ ). +noun( 'boo', 'boos', count, _ ). +noun( 'boob', 'boobs', count, _ ). +noun( 'booby', 'boobies', count, _ ). +noun( 'booby-trap', 'booby-traps', count, _ ). +noun( 'boogie', 'boogies', both, _ ). +noun( 'boogie-woogie', 'boogie-woogies', both, _ ). +noun( 'book', 'books', count, _ ). +noun( 'book-end', 'book-ends', count, _ ). +noun( 'book-keeper', 'book-keepers', count, _ ). +noun( 'bookcase', 'bookcases', count, _ ). +noun( 'bookclub', 'bookclubs', count, _ ). +noun( 'bookie', 'bookies', count, _ ). +noun( 'booking', 'bookings', count, _ ). +noun( 'bookishness', '-', mass, _ ). +noun( 'bookkeeper', 'bookkeepers', count, _ ). +noun( 'bookkeeping', '-', mass, _ ). +noun( 'booklet', 'booklets', count, _ ). +noun( 'bookmaker', 'bookmakers', count, _ ). +noun( 'bookmark', 'bookmarks', count, _ ). +noun( 'bookmarker', 'bookmarkers', count, _ ). +noun( 'bookmobile', 'bookmobiles', count, _ ). +noun( 'bookseller', 'booksellers', count, _ ). +noun( 'bookshop', 'bookshops', count, _ ). +noun( 'bookstall', 'bookstalls', count, _ ). +noun( 'bookworm', 'bookworms', count, _ ). +noun( 'boom', 'booms', count, _ ). +noun( 'boomerang', 'boomerangs', count, _ ). +noun( 'boon', 'boons', count, _ ). +noun( 'boor', 'boors', count, _ ). +noun( 'boorishness', '-', mass, _ ). +noun( 'boost', 'boosts', count, _ ). +noun( 'booster', 'boosters', count, _ ). +noun( 'boot', 'boots', count, _ ). +noun( 'bootee', 'bootees', count, _ ). +noun( 'booth', 'booths', count, _ ). +noun( 'bootlace', 'bootlaces', count, _ ). +noun( 'bootlegger', 'bootleggers', count, _ ). +noun( 'booty', '-', mass, _ ). +noun( 'booze', '-', mass, _ ). +noun( 'booze-up', 'booze-ups', count, _ ). +noun( 'boozer', 'boozers', count, _ ). +noun( 'bopeep', '-', mass, _ ). +noun( 'borage', '-', mass, _ ). +noun( 'borax', '-', mass, _ ). +noun( 'border', 'borders', count, _ ). +noun( 'borderer', 'borderers', count, _ ). +noun( 'borderland', 'borderlands', count, _ ). +noun( 'borderline', 'borderlines', count, _ ). +noun( 'bore', 'bores', count, _ ). +noun( 'bore-hole', 'bore-holes', count, _ ). +noun( 'boredom', '-', mass, _ ). +noun( 'borer', 'borers', count, _ ). +noun( 'boron', '-', mass, _ ). +noun( 'borough', 'boroughs', count, _ ). +noun( 'borrower', 'borrowers', count, _ ). +noun( 'borsch', '-', mass, _ ). +noun( 'borstal', 'borstals', count, _ ). +noun( 'bortsch', '-', mass, _ ). +noun( 'borzoi', 'borzois', count, _ ). +noun( 'bosh', '-', mass, _ ). +noun( 'bosom', 'bosoms', count, _ ). +noun( 'boss', 'bosses', count, _ ). +noun( 'botanist', 'botanists', count, _ ). +noun( 'botany', '-', mass, _ ). +noun( 'botch', 'botches', count, _ ). +noun( 'botcher', 'botchers', count, _ ). +noun( 'bother', '-', mass, _ ). +noun( 'bottle', 'bottles', both, _ ). +noun( 'bottleneck', 'bottlenecks', count, _ ). +noun( 'bottom', 'bottoms', count, _ ). +noun( 'botulism', '-', mass, _ ). +noun( 'boudoir', 'boudoirs', count, _ ). +noun( 'bougainvillea', 'bougainvilleas', count, _ ). +noun( 'bough', 'boughs', count, _ ). +noun( 'bouillon', '-', mass, _ ). +noun( 'boulder', 'boulders', count, _ ). +noun( 'boulevard', 'boulevards', count, _ ). +noun( 'bounce', 'bounces', both, _ ). +noun( 'bound', 'bounds', count, _ ). +noun( 'boundary', 'boundaries', count, _ ). +noun( 'bounder', 'bounders', count, _ ). +noun( 'bounty', 'bounties', both, _ ). +noun( 'bouquet', 'bouquets', count, _ ). +noun( 'bourbon', 'bourbons', both, _ ). +noun( 'bourgeois', 'bourgeois', count, _ ). +noun( 'bourgeoisie', 'bourgeoisies', count, _ ). +noun( 'bourn', 'bourns', count, _ ). +noun( 'bourne', 'bournes', count, _ ). +noun( 'bourse', 'bourses', count, _ ). +noun( 'bout', 'bouts', count, _ ). +noun( 'boutique', 'boutiques', count, _ ). +noun( 'bovril', '-', mass, _ ). +noun( 'bow', 'bows', count, _ ). +noun( 'bow', 'bows', count, _ ). +noun( 'bow-wow', 'bow-wows', count, _ ). +noun( 'bowel', 'bowels', count, _ ). +noun( 'bower', 'bowers', count, _ ). +noun( 'bowie knife', 'bowie knives', count, _ ). +noun( 'bowing', '-', mass, _ ). +noun( 'bowl', 'bowls', count, _ ). +noun( 'bowler', 'bowlers', count, _ ). +noun( 'bowline', 'bowlines', count, _ ). +noun( 'bowling-green', 'bowling-greens', count, _ ). +noun( 'bowls', 'bowls', mass, _ ). +noun( 'bowman', 'bowmen', count, _ ). +noun( 'bowsprit', 'bowsprits', count, _ ). +noun( 'box', 'boxes', both, _ ). +noun( 'box-kite', 'box-kites', count, _ ). +noun( 'box-number', 'box-numbers', count, _ ). +noun( 'box-office', 'box-offices', count, _ ). +noun( 'boxer', 'boxers', count, _ ). +noun( 'boxful', 'boxfuls', count, _ ). +noun( 'boxing', '-', mass, _ ). +noun( 'boxing-glove', 'boxing-gloves', count, _ ). +noun( 'boxing-match', 'boxing-matches', count, _ ). +noun( 'boxwood', '-', mass, _ ). +noun( 'boy', 'boys', count, _ ). +noun( 'boycott', 'boycotts', count, _ ). +noun( 'boyfriend', 'boyfriends', count, _ ). +noun( 'boyhood', '-', mass, _ ). +noun( 'bra', 'bras', count, _ ). +noun( 'brace', 'brace', count, _ ). +noun( 'bracelet', 'bracelets', count, _ ). +noun( 'bracken', '-', mass, _ ). +noun( 'bracket', 'brackets', count, _ ). +noun( 'bract', 'bracts', count, _ ). +noun( 'brad', 'brads', count, _ ). +noun( 'bradawl', 'bradawls', count, _ ). +noun( 'brae', 'braes', count, _ ). +noun( 'braggart', 'braggarts', count, _ ). +noun( 'bragging', '-', mass, _ ). +noun( 'braid', 'braids', both, _ ). +noun( 'braille', '-', mass, _ ). +noun( 'brain', 'brains', count, _ ). +noun( 'brain-fag', '-', mass, _ ). +noun( 'brain-teaser', 'brain-teasers', count, _ ). +noun( 'brainchild', 'brainchildren', count, _ ). +noun( 'brainstorm', 'brainstorms', count, _ ). +noun( 'brainwashing', '-', mass, _ ). +noun( 'brainwave', 'brainwaves', count, _ ). +noun( 'brake', 'brakes', count, _ ). +noun( 'brakeman', 'brakemen', count, _ ). +noun( 'bramble', 'brambles', count, _ ). +noun( 'bran', '-', mass, _ ). +noun( 'branch', 'branches', count, _ ). +noun( 'brand', 'brands', count, _ ). +noun( 'branding-iron', 'branding-irons', count, _ ). +noun( 'brandy', 'brandies', both, _ ). +noun( 'brandy-ball', 'brandy-balls', count, _ ). +noun( 'brandy-snap', 'brandy-snaps', count, _ ). +noun( 'brass', 'brasses', both, _ ). +noun( 'brassard', 'brassards', count, _ ). +noun( 'brasserie', 'brasseries', count, _ ). +noun( 'brassi`ere', 'brassi`eres', count, _ ). +noun( 'brassiere', 'brassieres', count, _ ). +noun( 'brat', 'brats', count, _ ). +noun( 'bravado', 'bravados', both, _ ). +noun( 'brave', 'braves', count, _ ). +noun( 'bravery', '-', mass, _ ). +noun( 'bravo', 'bravos', count, _ ). +noun( 'brawl', 'brawls', count, _ ). +noun( 'brawler', 'brawlers', count, _ ). +noun( 'brawn', '-', mass, _ ). +noun( 'bray', 'brays', count, _ ). +noun( 'brazier', 'braziers', count, _ ). +noun( 'breach', 'breaches', count, _ ). +noun( 'bread', '-', mass, _ ). +noun( 'breadcrumb', 'breadcrumbs', count, _ ). +noun( 'breadfruit', 'breadfruit', count, _ ). +noun( 'breadline', 'breadlines', count, _ ). +noun( 'breadth', 'breadths', both, _ ). +noun( 'breadwinner', 'breadwinners', count, _ ). +noun( 'break', 'breaks', both, _ ). +noun( 'break-in', 'break-ins', count, _ ). +noun( 'break-up', 'break-ups', count, _ ). +noun( 'breakage', 'breakages', count, _ ). +noun( 'breakaway', 'breakaways', count, _ ). +noun( 'breakaways', 'breakawayss', count, _ ). +noun( 'breakdown', 'breakdowns', count, _ ). +noun( 'breaker', 'breakers', count, _ ). +noun( 'breakfast', 'breakfasts', count, _ ). +noun( 'breakthrough', 'breakthroughs', count, _ ). +noun( 'breakwater', 'breakwaters', count, _ ). +noun( 'bream', 'bream', count, _ ). +noun( 'breast', 'breasts', count, _ ). +noun( 'breast-plate', 'breast-plates', count, _ ). +noun( 'breaststroke', '-', mass, _ ). +noun( 'breastwork', 'breastworks', count, _ ). +noun( 'breath', 'breaths', both, _ ). +noun( 'breathalyser', 'breathalysers', count, _ ). +noun( 'breather', 'breathers', count, _ ). +noun( 'breathing', '-', mass, _ ). +noun( 'breathing-space', 'breathing-spaces', count, _ ). +noun( 'breech', 'breeches', count, _ ). +noun( 'breech-block', 'breech-blocks', count, _ ). +noun( 'breeches-buoy', 'breeches-buoys', count, _ ). +noun( 'breed', 'breeds', count, _ ). +noun( 'breeder', 'breeders', count, _ ). +noun( 'breeding', '-', mass, _ ). +noun( 'breeze', 'breezes', both, _ ). +noun( 'breeziness', '-', mass, _ ). +noun( 'breve', 'breves', count, _ ). +noun( 'brevet', 'brevets', count, _ ). +noun( 'breviary', 'breviaries', count, _ ). +noun( 'brevity', '-', mass, _ ). +noun( 'brew', 'brews', count, _ ). +noun( 'brewer', 'brewers', count, _ ). +noun( 'brewery', 'breweries', count, _ ). +noun( 'briar', 'briars', both, _ ). +noun( 'bribe', 'bribes', count, _ ). +noun( 'bribery', '-', mass, _ ). +noun( 'bric-a-brac', '-', mass, _ ). +noun( 'brick', 'bricks', both, _ ). +noun( 'brick-field', 'brick-fields', count, _ ). +noun( 'brickbat', 'brickbats', count, _ ). +noun( 'brickkiln', 'brickkilns', count, _ ). +noun( 'bricklayer', 'bricklayers', count, _ ). +noun( 'brickwork', 'brickworks', count, _ ). +noun( 'bridal', 'bridals', count, _ ). +noun( 'bride', 'brides', count, _ ). +noun( 'bridecake', 'bridecakes', count, _ ). +noun( 'bridegroom', 'bridegrooms', count, _ ). +noun( 'bridesmaid', 'bridesmaids', count, _ ). +noun( 'bridge', 'bridges', both, _ ). +noun( 'bridgehead', 'bridgeheads', count, _ ). +noun( 'bridle', 'bridles', count, _ ). +noun( 'bridle-path', 'bridle-paths', count, _ ). +noun( 'bridle-road', 'bridle-roads', count, _ ). +noun( 'brief', 'briefs', count, _ ). +noun( 'briefcase', 'briefcases', count, _ ). +noun( 'briefing', 'briefings', count, _ ). +noun( 'brier', 'briers', count, _ ). +noun( 'brig', 'brigs', count, _ ). +noun( 'brigade', 'brigades', count, _ ). +noun( 'brigand', 'brigands', count, _ ). +noun( 'brigantine', 'brigantines', count, _ ). +noun( 'brightness', '-', mass, _ ). +noun( 'brill', 'brill', count, _ ). +noun( 'brilliance', '-', mass, _ ). +noun( 'brilliancy', '-', mass, _ ). +noun( 'brilliantine', '-', mass, _ ). +noun( 'brim', 'brims', count, _ ). +noun( 'brimstone', '-', mass, _ ). +noun( 'brine', 'brines', both, _ ). +noun( 'brink', 'brinks', count, _ ). +noun( 'brinkmanship', '-', mass, _ ). +noun( 'brioche', 'brioches', count, _ ). +noun( 'briquet', 'briquets', count, _ ). +noun( 'briquette', 'briquettes', count, _ ). +noun( 'brisket', '-', mass, _ ). +noun( 'bristle', 'bristles', count, _ ). +noun( 'broad', 'broads', count, _ ). +noun( 'broad-mindedness', '-', mass, _ ). +noun( 'broadcast', 'broadcasts', count, _ ). +noun( 'broadcasting', '-', mass, _ ). +noun( 'broadcloth', '-', mass, _ ). +noun( 'broadness', '-', mass, _ ). +noun( 'broadsheet', 'broadsheets', count, _ ). +noun( 'broadside', 'broadsides', count, _ ). +noun( 'brocade', 'brocades', both, _ ). +noun( 'broccoli', '-', mass, _ ). +noun( 'brochure', 'brochures', count, _ ). +noun( 'brogue', 'brogues', count, _ ). +noun( 'broiler', 'broilers', count, _ ). +noun( 'broker', 'brokers', count, _ ). +noun( 'brokerage', '-', mass, _ ). +noun( 'brolly', 'brollies', count, _ ). +noun( 'bromide', 'bromides', both, _ ). +noun( 'bromine', '-', mass, _ ). +noun( 'bronchitis', '-', mass, _ ). +noun( 'bronchus', 'bronchi', count, _ ). +noun( 'bronco', 'broncos', count, _ ). +noun( 'bronze', 'bronzes', both, _ ). +noun( 'brooch', 'brooches', count, _ ). +noun( 'brood', 'broods', count, _ ). +noun( 'brood-hen', 'brood-hens', count, _ ). +noun( 'brood-mare', 'brood-mares', count, _ ). +noun( 'brook', 'brooks', count, _ ). +noun( 'broom', 'brooms', both, _ ). +noun( 'broomstick', 'broomsticks', count, _ ). +noun( 'broth', '-', mass, _ ). +noun( 'brothel', 'brothels', count, _ ). +noun( 'brother', 'brothers', count, _ ). +noun( 'brother-in-law', 'brothers-in-law', count, _ ). +noun( 'brotherhood', 'brotherhoods', both, _ ). +noun( 'brougham', 'broughams', count, _ ). +noun( 'brouhaha', 'brouhahas', count, _ ). +noun( 'brow', 'brows', count, _ ). +noun( 'brownie', 'brownies', count, _ ). +noun( 'brownstone', 'brownstones', both, _ ). +noun( 'browse', 'browses', count, _ ). +noun( 'bruin', 'bruins', count, _ ). +noun( 'bruise', 'bruises', count, _ ). +noun( 'bruiser', 'bruisers', count, _ ). +noun( 'brunch', 'brunches', count, _ ). +noun( 'brunette', 'brunettes', count, _ ). +noun( 'brunt', 'brunts', count, _ ). +noun( 'brush', 'brushes', both, _ ). +noun( 'brush-off', 'brush-offs', count, _ ). +noun( 'brush-up', 'brush-ups', count, _ ). +noun( 'brushwood', '-', mass, _ ). +noun( 'brushwork', 'brushworks', count, _ ). +noun( 'brusqueness', '-', mass, _ ). +noun( 'brutality', 'brutalities', both, _ ). +noun( 'brute', 'brutes', count, _ ). +noun( 'bubble', 'bubbles', count, _ ). +noun( 'bubbly', '-', mass, _ ). +noun( 'buccaneer', 'buccaneers', count, _ ). +noun( 'buck', 'bucks', count, _ ). +noun( 'bucket', 'buckets', count, _ ). +noun( 'bucketful', 'bucketfuls', count, _ ). +noun( 'buckle', 'buckles', count, _ ). +noun( 'buckler', 'bucklers', count, _ ). +noun( 'buckram', '-', mass, _ ). +noun( 'buckshot', '-', mass, _ ). +noun( 'buckskin', '-', mass, _ ). +noun( 'bucktooth', 'buckteeth', count, _ ). +noun( 'buckwheat', '-', mass, _ ). +noun( 'bucolics', 'bucolics', mass, _ ). +noun( 'bud', 'buds', count, _ ). +noun( 'buddy', 'buddies', count, _ ). +noun( 'budgerigar', 'budgerigars', count, _ ). +noun( 'budget', 'budgets', count, _ ). +noun( 'budgie', 'budgies', count, _ ). +noun( 'buff', 'buffs', both, _ ). +noun( 'buffalo', 'buffalo', count, _ ). +noun( 'buffer', 'buffers', count, _ ). +noun( 'buffet', 'buffets', count, _ ). +noun( 'buffet', 'buffets', count, _ ). +noun( 'buffoon', 'buffoons', count, _ ). +noun( 'buffoonery', '-', mass, _ ). +noun( 'bug', 'bugs', count, _ ). +noun( 'bug-hunter', 'bug-hunters', count, _ ). +noun( 'bugaboo', 'bugaboos', count, _ ). +noun( 'bugbear', 'bugbears', count, _ ). +noun( 'bugger', 'buggers', count, _ ). +noun( 'bugger-all', '-', mass, _ ). +noun( 'buggery', '-', mass, _ ). +noun( 'buggy', 'buggies', count, _ ). +noun( 'bugle', 'bugles', count, _ ). +noun( 'bugler', 'buglers', count, _ ). +noun( 'buhl', '-', mass, _ ). +noun( 'build', '-', mass, _ ). +noun( 'build-up', 'build-ups', count, _ ). +noun( 'builder', 'builders', count, _ ). +noun( 'building', 'buildings', both, _ ). +noun( 'building-society', 'building-societies', count, _ ). +noun( 'bulb', 'bulbs', count, _ ). +noun( 'bulbul', 'bulbuls', count, _ ). +noun( 'bulge', 'bulges', count, _ ). +noun( 'bulk', '-', mass, _ ). +noun( 'bulkhead', 'bulkheads', count, _ ). +noun( 'bull', 'bulls', count, _ ). +noun( 'bull\'s-eye', 'bull\'s-eyes', count, _ ). +noun( 'bull-neck', 'bull-necks', count, _ ). +noun( 'bull-terrier', 'bull-terriers', count, _ ). +noun( 'bulldog', 'bulldogs', count, _ ). +noun( 'bulldozer', 'bulldozers', count, _ ). +noun( 'bullet', 'bullets', count, _ ). +noun( 'bulletin', 'bulletins', count, _ ). +noun( 'bullfight', 'bullfights', count, _ ). +noun( 'bullfighter', 'bullfighters', count, _ ). +noun( 'bullfinch', 'bullfinches', count, _ ). +noun( 'bullfrog', 'bullfrogs', count, _ ). +noun( 'bullion', '-', mass, _ ). +noun( 'bullock', 'bullocks', count, _ ). +noun( 'bullring', 'bullrings', count, _ ). +noun( 'bullshit', '-', mass, _ ). +noun( 'bully', 'bullies', both, _ ). +noun( 'bulrush', 'bulrushes', count, _ ). +noun( 'bulwark', 'bulwarks', count, _ ). +noun( 'bum', 'bums', count, _ ). +noun( 'bumblebee', 'bumblebees', count, _ ). +noun( 'bumboat', 'bumboats', count, _ ). +noun( 'bump', 'bumps', count, _ ). +noun( 'bumper', 'bumpers', count, _ ). +noun( 'bumpkin', 'bumpkins', count, _ ). +noun( 'bumptiousness', '-', mass, _ ). +noun( 'bun', 'buns', count, _ ). +noun( 'buna', '-', mass, _ ). +noun( 'bunch', 'bunches', count, _ ). +noun( 'bundle', 'bundles', count, _ ). +noun( 'bung', 'bungs', count, _ ). +noun( 'bung-hole', 'bung-holes', count, _ ). +noun( 'bungalow', 'bungalows', count, _ ). +noun( 'bungle', 'bungles', count, _ ). +noun( 'bungler', 'bunglers', count, _ ). +noun( 'bunion', 'bunions', count, _ ). +noun( 'bunk', 'bunks', both, _ ). +noun( 'bunker', 'bunkers', count, _ ). +noun( 'bunkum', '-', mass, _ ). +noun( 'bunny', 'bunnies', count, _ ). +noun( 'bunting', '-', mass, _ ). +noun( 'buoy', 'buoys', count, _ ). +noun( 'buoyancy', '-', mass, _ ). +noun( 'bur', 'burs', count, _ ). +noun( 'burden', 'burdens', both, _ ). +noun( 'burdock', 'burdocks', count, _ ). +noun( 'bureau', 'bureaux', count, _ ). +noun( 'bureaucracy', 'bureaucracies', both, _ ). +noun( 'bureaucrat', 'bureaucrats', count, _ ). +noun( 'burette', 'burettes', count, _ ). +noun( 'burg', 'burgs', count, _ ). +noun( 'burgess', 'burgesses', count, _ ). +noun( 'burgh', 'burghs', count, _ ). +noun( 'burgher', 'burghers', count, _ ). +noun( 'burglar', 'burglars', count, _ ). +noun( 'burglar-alarm', 'burglar-alarms', count, _ ). +noun( 'burglary', 'burglaries', both, _ ). +noun( 'burgomaster', 'burgomasters', count, _ ). +noun( 'burial', 'burials', both, _ ). +noun( 'burial-ground', 'burial-grounds', count, _ ). +noun( 'burlap', '-', mass, _ ). +noun( 'burlesque', 'burlesques', both, _ ). +noun( 'burn', 'burns', count, _ ). +noun( 'burn-up', 'burn-ups', count, _ ). +noun( 'burner', 'burners', count, _ ). +noun( 'burnouse', 'burnouses', count, _ ). +noun( 'burp', 'burps', count, _ ). +noun( 'burr', 'burrs', count, _ ). +noun( 'burr-drill', 'burr-drills', count, _ ). +noun( 'burrow', 'burrows', count, _ ). +noun( 'bursar', 'bursars', count, _ ). +noun( 'bursary', 'bursaries', count, _ ). +noun( 'burst', 'bursts', count, _ ). +noun( 'burthen', 'burthens', count, _ ). +noun( 'burton', 'burtons', count, _ ). +noun( 'burying-ground', 'burying-grounds', count, _ ). +noun( 'bus', 'buses', count, _ ). +noun( 'busby', 'busbies', count, _ ). +noun( 'bush', 'bushes', both, _ ). +noun( 'bushel', 'bushels', count, _ ). +noun( 'business', 'businesses', both, _ ). +noun( 'businessman', 'businessmen', count, _ ). +noun( 'busker', 'buskers', count, _ ). +noun( 'busman', 'busmen', count, _ ). +noun( 'bust', 'busts', count, _ ). +noun( 'bust-up', 'bust-ups', count, _ ). +noun( 'bustard', 'bustards', count, _ ). +noun( 'buster', 'busters', count, _ ). +noun( 'bustle', 'bustles', both, _ ). +noun( 'busybody', 'busybodies', count, _ ). +noun( 'butane', '-', mass, _ ). +noun( 'butcher', 'butchers', count, _ ). +noun( 'butchery', '-', mass, _ ). +noun( 'butler', 'butlers', count, _ ). +noun( 'butt', 'butts', count, _ ). +noun( 'butter', '-', mass, _ ). +noun( 'butterbean', 'butterbeans', count, _ ). +noun( 'buttercup', 'buttercups', count, _ ). +noun( 'butterfingers', '-', count, _ ). +noun( 'butterfly', 'butterflies', count, _ ). +noun( 'buttermilk', '-', mass, _ ). +noun( 'butterscotch', '-', mass, _ ). +noun( 'buttery', 'butteries', count, _ ). +noun( 'buttock', 'buttocks', count, _ ). +noun( 'button', 'buttons', count, _ ). +noun( 'buttonhole', 'buttonholes', count, _ ). +noun( 'buttonhook', 'buttonhooks', count, _ ). +noun( 'buttonwood', 'buttonwoods', both, _ ). +noun( 'buttress', 'buttresses', count, _ ). +noun( 'buy', 'buys', count, _ ). +noun( 'buyer', 'buyers', count, _ ). +noun( 'buzz', 'buzzes', count, _ ). +noun( 'buzzard', 'buzzards', count, _ ). +noun( 'buzzer', 'buzzers', count, _ ). +noun( 'by-election', 'by-elections', count, _ ). +noun( 'bye', 'byes', count, _ ). +noun( 'bye-bye', 'bye-byes', count, _ ). +noun( 'bye-law', 'bye-laws', count, _ ). +noun( 'bylaw', 'bylaws', count, _ ). +noun( 'bypass', 'bypasses', count, _ ). +noun( 'bypath', 'bypaths', count, _ ). +noun( 'byplay', '-', mass, _ ). +noun( 'byproduct', 'byproducts', count, _ ). +noun( 'byroad', 'byroads', count, _ ). +noun( 'bystander', 'bystanders', count, _ ). +noun( 'byway', 'byways', count, _ ). +noun( 'byword', 'bywords', count, _ ). +noun( 'c', '-', count, _ ). +noun( 'ca\'canny', '-', count, _ ). +noun( 'cab', 'cabs', count, _ ). +noun( 'cab-rank', 'cab-ranks', count, _ ). +noun( 'cabal', 'cabals', count, _ ). +noun( 'cabaret', 'cabarets', count, _ ). +noun( 'cabbage', 'cabbages', both, _ ). +noun( 'cabby', 'cabbies', count, _ ). +noun( 'caber', 'cabers', count, _ ). +noun( 'cabin', 'cabins', count, _ ). +noun( 'cabinet', 'cabinets', count, _ ). +noun( 'cabinet-maker', 'cabinet-makers', count, _ ). +noun( 'cable', 'cables', both, _ ). +noun( 'cable\'s-length', 'cable\'s-lengths', count, _ ). +noun( 'cable-car', 'cable-cars', count, _ ). +noun( 'cable-length', 'cable-lengths', count, _ ). +noun( 'cable-railway', 'cable-railways', count, _ ). +noun( 'cablegram', 'cablegrams', count, _ ). +noun( 'cabman', 'cabmen', count, _ ). +noun( 'caboodle', 'caboodles', count, _ ). +noun( 'caboose', 'cabooses', count, _ ). +noun( 'cabstand', 'cabstands', count, _ ). +noun( 'cacao', 'cacaos', count, _ ). +noun( 'cacao-bean', 'cacao-beans', count, _ ). +noun( 'cacao-tree', 'cacao-trees', count, _ ). +noun( 'cache', 'caches', count, _ ). +noun( 'cachet', 'cachets', count, _ ). +noun( 'cachou', 'cachous', count, _ ). +noun( 'cackle', 'cackles', both, _ ). +noun( 'cackler', 'cacklers', count, _ ). +noun( 'cacophony', 'cacophonies', count, _ ). +noun( 'cactus', 'cactuses', count, _ ). +noun( 'cad', 'cads', count, _ ). +noun( 'cadaver', 'cadavers', count, _ ). +noun( 'caddie', 'caddies', count, _ ). +noun( 'caddy', 'caddies', count, _ ). +noun( 'cadence', 'cadences', count, _ ). +noun( 'cadenza', 'cadenzas', count, _ ). +noun( 'cadet', 'cadets', count, _ ). +noun( 'cadger', 'cadgers', count, _ ). +noun( 'cadmium', '-', mass, _ ). +noun( 'cadre', 'cadres', count, _ ). +noun( 'caesura', 'caesuras', count, _ ). +noun( 'caf_e', 'caf_es', count, _ ). +noun( 'cafe-au-lait', 'cafe-au-laits', count, _ ). +noun( 'cafeteria', 'cafeterias', count, _ ). +noun( 'caff', 'caffs', count, _ ). +noun( 'caffeine', '-', mass, _ ). +noun( 'caftan', 'caftans', count, _ ). +noun( 'cage', 'cages', count, _ ). +noun( 'cagoule', 'cagoules', count, _ ). +noun( 'caiman', 'caimans', count, _ ). +noun( 'cairn', 'cairns', count, _ ). +noun( 'caisson', 'caissons', count, _ ). +noun( 'caitiff', 'caitiffs', count, _ ). +noun( 'cajolery', '-', mass, _ ). +noun( 'cake', 'cakes', both, _ ). +noun( 'calabash', 'calabashes', count, _ ). +noun( 'calamity', 'calamities', count, _ ). +noun( 'calcination', 'calcinations', count, _ ). +noun( 'calcium', '-', mass, _ ). +noun( 'calculation', 'calculations', both, _ ). +noun( 'calculator', 'calculators', count, _ ). +noun( 'calculus', 'calculuses', both, _ ). +noun( 'caldron', 'caldrons', count, _ ). +noun( 'calendar', 'calendars', count, _ ). +noun( 'calender', 'calenders', count, _ ). +noun( 'calf', 'calves', both, _ ). +noun( 'calf-love', '-', mass, _ ). +noun( 'calibration', 'calibrations', both, _ ). +noun( 'calibre', 'calibres', both, _ ). +noun( 'calico', '-', mass, _ ). +noun( 'calif', 'califs', count, _ ). +noun( 'caliph', 'caliphs', count, _ ). +noun( 'caliphate', 'caliphates', count, _ ). +noun( 'calisthenics', 'calisthenics', mass, _ ). +noun( 'calk', 'calks', count, _ ). +noun( 'call', 'calls', both, _ ). +noun( 'call-box', 'call-boxes', count, _ ). +noun( 'call-girl', 'call-girls', count, _ ). +noun( 'call-over', 'call-overs', count, _ ). +noun( 'call-up', 'call-ups', count, _ ). +noun( 'caller', 'callers', count, _ ). +noun( 'calligraphy', '-', mass, _ ). +noun( 'calling', 'callings', count, _ ). +noun( 'calliope', 'calliopes', count, _ ). +noun( 'callisthenics', 'callisthenics', mass, _ ). +noun( 'callosity', 'callosities', count, _ ). +noun( 'callousness', '-', mass, _ ). +noun( 'callowness', '-', mass, _ ). +noun( 'callus', 'calluses', count, _ ). +noun( 'calm', 'calms', count, _ ). +noun( 'calmness', '-', mass, _ ). +noun( 'calomel', '-', mass, _ ). +noun( 'calorie', 'calories', count, _ ). +noun( 'calumny', 'calumnies', both, _ ). +noun( 'calypso', 'calypsos', count, _ ). +noun( 'calyx', 'calyxes', count, _ ). +noun( 'cam', 'cams', count, _ ). +noun( 'camaraderie', '-', mass, _ ). +noun( 'camber', 'cambers', count, _ ). +noun( 'cambric', '-', mass, _ ). +noun( 'camel', 'camels', count, _ ). +noun( 'camel-hair', '-', mass, _ ). +noun( 'camellia', 'camellias', count, _ ). +noun( 'cameo', 'cameos', count, _ ). +noun( 'camera', 'cameras', count, _ ). +noun( 'cameraman', 'cameramen', count, _ ). +noun( 'camion', 'camions', count, _ ). +noun( 'camomile', '-', mass, _ ). +noun( 'camouflage', '-', mass, _ ). +noun( 'camp', 'camps', count, _ ). +noun( 'camp-bed', 'camp-beds', count, _ ). +noun( 'camp-chair', 'camp-chairs', count, _ ). +noun( 'camp-fire', 'camp-fires', count, _ ). +noun( 'camp-follower', 'camp-followers', count, _ ). +noun( 'camp-stool', 'camp-stools', count, _ ). +noun( 'campaign', 'campaigns', count, _ ). +noun( 'campaigner', 'campaigners', count, _ ). +noun( 'campanile', 'campaniles', count, _ ). +noun( 'campanula', 'campanulas', count, _ ). +noun( 'camper', 'campers', count, _ ). +noun( 'camphor', '-', mass, _ ). +noun( 'camping', '-', mass, _ ). +noun( 'campion', '-', mass, _ ). +noun( 'campus', 'campuses', count, _ ). +noun( 'camshaft', 'camshafts', count, _ ). +noun( 'can', 'cans', count, _ ). +noun( 'canal', 'canals', count, _ ). +noun( 'canalization', 'canalizations', count, _ ). +noun( 'canap_e', 'canap_es', count, _ ). +noun( 'canard', 'canards', count, _ ). +noun( 'canary', 'canaries', count, _ ). +noun( 'canary-bird', 'canary-birds', count, _ ). +noun( 'canary-wine', 'canary-wines', count, _ ). +noun( 'canasta', 'canastas', count, _ ). +noun( 'cancan', 'cancans', count, _ ). +noun( 'cancellation', 'cancellations', both, _ ). +noun( 'cancer', 'cancers', both, _ ). +noun( 'candelabrum', 'candelabra', count, _ ). +noun( 'candidate', 'candidates', count, _ ). +noun( 'candidature', 'candidatures', count, _ ). +noun( 'candle', 'candles', count, _ ). +noun( 'candle-power', '-', mass, _ ). +noun( 'candlelight', '-', mass, _ ). +noun( 'candlestick', 'candlesticks', count, _ ). +noun( 'candlewick', '-', mass, _ ). +noun( 'candour', '-', mass, _ ). +noun( 'candy', 'candies', both, _ ). +noun( 'candy-floss', '-', mass, _ ). +noun( 'candytuft', 'candytufts', count, _ ). +noun( 'cane', 'canes', both, _ ). +noun( 'canister', 'canisters', count, _ ). +noun( 'canker', '-', mass, _ ). +noun( 'canna', 'cannas', count, _ ). +noun( 'cannabis', '-', mass, _ ). +noun( 'cannery', 'canneries', count, _ ). +noun( 'cannibal', 'cannibals', count, _ ). +noun( 'cannibalism', '-', mass, _ ). +noun( 'cannon', 'cannons', count, _ ). +noun( 'cannon-fodder', '-', mass, _ ). +noun( 'cannonade', 'cannonades', count, _ ). +noun( 'canoe', 'canoes', count, _ ). +noun( 'canoeist', 'canoeists', count, _ ). +noun( 'canon', 'canons', count, _ ). +noun( 'canonization', 'canonizations', count, _ ). +noun( 'canopy', 'canopies', count, _ ). +noun( 'cant', 'cants', both, _ ). +noun( 'cantaloup', 'cantaloups', count, _ ). +noun( 'cantaloupe', 'cantaloupes', count, _ ). +noun( 'cantata', 'cantatas', count, _ ). +noun( 'canteen', 'canteens', count, _ ). +noun( 'canter', 'canters', count, _ ). +noun( 'canticle', 'canticles', count, _ ). +noun( 'cantilever', 'cantilevers', count, _ ). +noun( 'canto', 'cantos', count, _ ). +noun( 'canton', 'cantons', count, _ ). +noun( 'cantonment', 'cantonments', count, _ ). +noun( 'cantor', 'cantors', count, _ ). +noun( 'canvas', 'canvases', both, _ ). +noun( 'canvass', 'canvasses', count, _ ). +noun( 'canyon', 'canyons', count, _ ). +noun( 'cap', 'caps', count, _ ). +noun( 'capability', 'capabilities', both, _ ). +noun( 'capacity', 'capacities', both, _ ). +noun( 'caparison', 'caparisons', count, _ ). +noun( 'cape', 'capes', count, _ ). +noun( 'caper', 'capers', count, _ ). +noun( 'capillary', 'capillaries', count, _ ). +noun( 'capital', 'capitals', both, _ ). +noun( 'capitalism', '-', mass, _ ). +noun( 'capitalist', 'capitalists', count, _ ). +noun( 'capitalization', 'capitalizations', count, _ ). +noun( 'capitation', 'capitations', count, _ ). +noun( 'capitulation', '-', mass, _ ). +noun( 'capon', 'capons', count, _ ). +noun( 'caprice', 'caprices', count, _ ). +noun( 'capriciousness', '-', mass, _ ). +noun( 'capsicum', 'capsicums', count, _ ). +noun( 'capstan', 'capstans', count, _ ). +noun( 'capsule', 'capsules', count, _ ). +noun( 'captain', 'captains', count, _ ). +noun( 'caption', 'captions', count, _ ). +noun( 'captive', 'captives', count, _ ). +noun( 'captivity', '-', mass, _ ). +noun( 'captor', 'captors', count, _ ). +noun( 'capture', 'captures', both, _ ). +noun( 'car', 'cars', count, _ ). +noun( 'car-ferry', 'car-ferries', count, _ ). +noun( 'carafe', 'carafes', count, _ ). +noun( 'caramel', 'caramels', both, _ ). +noun( 'carapace', 'carapaces', count, _ ). +noun( 'carat', 'carats', count, _ ). +noun( 'caravan', 'caravans', count, _ ). +noun( 'caravanning', '-', mass, _ ). +noun( 'caravansary', 'caravansaries', count, _ ). +noun( 'caravanserai', 'caravanserais', count, _ ). +noun( 'caraway', 'caraways', count, _ ). +noun( 'carbide', 'carbides', count, _ ). +noun( 'carbine', 'carbines', count, _ ). +noun( 'carbohydrate', 'carbohydrates', both, _ ). +noun( 'carbon', 'carbons', both, _ ). +noun( 'carbon-paper', '-', mass, _ ). +noun( 'carbonization', 'carbonizations', both, _ ). +noun( 'carborundum', '-', mass, _ ). +noun( 'carboy', 'carboys', count, _ ). +noun( 'carbuncle', 'carbuncles', count, _ ). +noun( 'carburettor', 'carburettors', count, _ ). +noun( 'carcase', 'carcases', count, _ ). +noun( 'carcass', 'carcasses', count, _ ). +noun( 'card', 'cards', count, _ ). +noun( 'card-sharper', 'card-sharpers', count, _ ). +noun( 'cardamom', '-', mass, _ ). +noun( 'cardboard', '-', mass, _ ). +noun( 'cardigan', 'cardigans', count, _ ). +noun( 'cardinal', 'cardinals', count, _ ). +noun( 'care', 'cares', both, _ ). +noun( 'career', 'careers', both, _ ). +noun( 'careerist', 'careerists', count, _ ). +noun( 'carefulness', '-', mass, _ ). +noun( 'carelessness', '-', mass, _ ). +noun( 'caress', 'caresses', count, _ ). +noun( 'caret', 'carets', count, _ ). +noun( 'caretaker', 'caretakers', count, _ ). +noun( 'cargo', 'cargoes', both, _ ). +noun( 'caribou', 'caribou', count, _ ). +noun( 'caricature', 'caricatures', both, _ ). +noun( 'caricaturist', 'caricaturists', count, _ ). +noun( 'caries', '-', mass, _ ). +noun( 'carillon', 'carillons', count, _ ). +noun( 'carmine', 'carmines', both, _ ). +noun( 'carnage', '-', mass, _ ). +noun( 'carnation', 'carnations', count, _ ). +noun( 'carnival', 'carnivals', both, _ ). +noun( 'carnivore', 'carnivores', count, _ ). +noun( 'carol', 'carols', count, _ ). +noun( 'caroller', 'carollers', count, _ ). +noun( 'carousal', 'carousals', count, _ ). +noun( 'carousel', 'carousels', count, _ ). +noun( 'carp', 'carp', count, _ ). +noun( 'carpal', 'carpals', count, _ ). +noun( 'carpenter', 'carpenters', count, _ ). +noun( 'carpentry', '-', mass, _ ). +noun( 'carpet', 'carpets', count, _ ). +noun( 'carpet-beater', 'carpet-beaters', count, _ ). +noun( 'carpet-knight', 'carpet-knights', count, _ ). +noun( 'carpet-sweeper', 'carpet-sweepers', count, _ ). +noun( 'carpetbag', 'carpetbags', count, _ ). +noun( 'carpetbagger', 'carpetbaggers', count, _ ). +noun( 'carport', 'carports', count, _ ). +noun( 'carriage', 'carriages', both, _ ). +noun( 'carriageway', 'carriageways', count, _ ). +noun( 'carrier', 'carriers', count, _ ). +noun( 'carrier-bag', 'carrier-bags', count, _ ). +noun( 'carrier-pigeon', 'carrier-pigeons', count, _ ). +noun( 'carrion', '-', mass, _ ). +noun( 'carrion-crow', 'carrion-crows', count, _ ). +noun( 'carrot', 'carrots', count, _ ). +noun( 'carry', 'carries', count, _ ). +noun( 'carrycot', 'carrycots', count, _ ). +noun( 'carsickness', '-', mass, _ ). +noun( 'cart', 'carts', count, _ ). +noun( 'cart-track', 'cart-tracks', count, _ ). +noun( 'cartage', '-', mass, _ ). +noun( 'carte blanche', '-', count, _ ). +noun( 'cartel', 'cartels', count, _ ). +noun( 'carter', 'carters', count, _ ). +noun( 'carthorse', 'carthorses', count, _ ). +noun( 'cartilage', 'cartilages', both, _ ). +noun( 'cartload', 'cartloads', count, _ ). +noun( 'cartographer', 'cartographers', count, _ ). +noun( 'cartography', '-', mass, _ ). +noun( 'carton', 'cartons', count, _ ). +noun( 'cartoon', 'cartoons', count, _ ). +noun( 'cartoonist', 'cartoonists', count, _ ). +noun( 'cartridge', 'cartridges', count, _ ). +noun( 'cartridge-belt', 'cartridge-belts', count, _ ). +noun( 'cartridge-paper', 'cartridge-papers', count, _ ). +noun( 'cartroad', 'cartroads', count, _ ). +noun( 'cartwheel', 'cartwheels', count, _ ). +noun( 'carver', 'carvers', count, _ ). +noun( 'carving', 'carvings', both, _ ). +noun( 'carving-fork', 'carving-forks', count, _ ). +noun( 'carving-knife', 'carving-knives', count, _ ). +noun( 'caryatid', 'caryatids', count, _ ). +noun( 'cascade', 'cascades', count, _ ). +noun( 'case', 'cases', count, _ ). +noun( 'case-history', 'case-histories', count, _ ). +noun( 'case-law', 'case-laws', count, _ ). +noun( 'casebook', 'casebooks', count, _ ). +noun( 'casein', '-', mass, _ ). +noun( 'casement', 'casements', count, _ ). +noun( 'casework', 'caseworks', count, _ ). +noun( 'cash', '-', mass, _ ). +noun( 'cashew', 'cashews', count, _ ). +noun( 'cashier', 'cashiers', count, _ ). +noun( 'cashmere', '-', mass, _ ). +noun( 'casing', 'casings', count, _ ). +noun( 'casino', 'casinos', count, _ ). +noun( 'cask', 'casks', count, _ ). +noun( 'casket', 'caskets', count, _ ). +noun( 'cassava', '-', mass, _ ). +noun( 'casserole', 'casseroles', count, _ ). +noun( 'cassette', 'cassettes', count, _ ). +noun( 'cassock', 'cassocks', count, _ ). +noun( 'cassowary', 'cassowaries', count, _ ). +noun( 'cast', 'casts', count, _ ). +noun( 'castaway', 'castaways', count, _ ). +noun( 'caste', 'castes', both, _ ). +noun( 'caster', 'casters', count, _ ). +noun( 'castigation', 'castigations', both, _ ). +noun( 'casting', 'castings', count, _ ). +noun( 'castle', 'castles', count, _ ). +noun( 'castor', 'castors', count, _ ). +noun( 'castor oil', '-', mass, _ ). +noun( 'castration', 'castrations', count, _ ). +noun( 'casualty', 'casualties', count, _ ). +noun( 'casuist', 'casuists', count, _ ). +noun( 'casuistry', 'casuistries', both, _ ). +noun( 'casus belli', '-', count, _ ). +noun( 'cat', 'cats', count, _ ). +noun( 'cat-nap', 'cat-naps', count, _ ). +noun( 'cat-o\'-nine-tails', '-', count, _ ). +noun( 'cat-sleep', 'cat-sleeps', count, _ ). +noun( 'cataclysm', 'cataclysms', count, _ ). +noun( 'catafalque', 'catafalques', count, _ ). +noun( 'catalepsy', '-', mass, _ ). +noun( 'cataleptic', 'cataleptics', count, _ ). +noun( 'catalogue', 'catalogues', count, _ ). +noun( 'catalpa', 'catalpas', count, _ ). +noun( 'catalysis', '-', mass, _ ). +noun( 'catalyst', 'catalysts', count, _ ). +noun( 'catamaran', 'catamarans', count, _ ). +noun( 'catapult', 'catapults', count, _ ). +noun( 'cataract', 'cataracts', count, _ ). +noun( 'catarrh', '-', mass, _ ). +noun( 'catastrophe', 'catastrophes', count, _ ). +noun( 'catcall', 'catcalls', count, _ ). +noun( 'catch', 'catches', count, _ ). +noun( 'catch-crop', 'catch-crops', count, _ ). +noun( 'catcher', 'catchers', count, _ ). +noun( 'catchment', 'catchments', count, _ ). +noun( 'catchment-area', 'catchment-areas', count, _ ). +noun( 'catchment-basin', 'catchment-basins', count, _ ). +noun( 'catchup', 'catchups', count, _ ). +noun( 'catchword', 'catchwords', count, _ ). +noun( 'catechism', 'catechisms', both, _ ). +noun( 'category', 'categories', count, _ ). +noun( 'caterer', 'caterers', count, _ ). +noun( 'caterpillar', 'caterpillars', count, _ ). +noun( 'caterwaul', 'caterwauls', count, _ ). +noun( 'catfish', 'catfish', count, _ ). +noun( 'catgut', '-', mass, _ ). +noun( 'catharsis', 'catharses', both, _ ). +noun( 'cathartic', 'cathartics', both, _ ). +noun( 'cathedral', 'cathedrals', count, _ ). +noun( 'cathode', 'cathodes', count, _ ). +noun( 'catholicity', '-', mass, _ ). +noun( 'catkin', 'catkins', count, _ ). +noun( 'catsup', 'catsups', both, _ ). +noun( 'cattiness', '-', mass, _ ). +noun( 'cattle-cake', '-', mass, _ ). +noun( 'cattleman', 'cattlemen', count, _ ). +noun( 'catwalk', 'catwalks', count, _ ). +noun( 'caucus', 'caucuses', count, _ ). +noun( 'caul', 'cauls', count, _ ). +noun( 'cauldron', 'cauldrons', count, _ ). +noun( 'cauliflower', 'cauliflowers', both, _ ). +noun( 'causality', '-', mass, _ ). +noun( 'causation', '-', mass, _ ). +noun( 'cause', 'causes', both, _ ). +noun( 'causerie', 'causeries', count, _ ). +noun( 'causeway', 'causeways', count, _ ). +noun( 'caution', 'cautions', both, _ ). +noun( 'cavalcade', 'cavalcades', count, _ ). +noun( 'cavalier', 'cavaliers', count, _ ). +noun( 'cavalry', 'cavalries', count, _ ). +noun( 'cavalryman', 'cavalrymen', count, _ ). +noun( 'cave', 'caves', count, _ ). +noun( 'cave-dweller', 'cave-dwellers', count, _ ). +noun( 'cave-in', 'cave-ins', count, _ ). +noun( 'caveat', 'caveats', count, _ ). +noun( 'caveman', 'cavemen', count, _ ). +noun( 'cavern', 'caverns', count, _ ). +noun( 'caviar', '-', mass, _ ). +noun( 'caviare', '-', mass, _ ). +noun( 'cavity', 'cavities', count, _ ). +noun( 'caw', 'caws', count, _ ). +noun( 'cayenne', '-', mass, _ ). +noun( 'cayenne pepper', '-', mass, _ ). +noun( 'cayman', 'caymans', count, _ ). +noun( 'ca~non', 'ca~nons', count, _ ). +noun( 'cc', 'cc', count, _ ). +noun( 'cease', 'ceases', count, _ ). +noun( 'cease-fire', 'cease-fires', count, _ ). +noun( 'cedar', 'cedars', both, _ ). +noun( 'cedilla', 'cedillas', count, _ ). +noun( 'ceiling', 'ceilings', count, _ ). +noun( 'celandine', 'celandines', count, _ ). +noun( 'celebrant', 'celebrants', count, _ ). +noun( 'celebration', 'celebrations', both, _ ). +noun( 'celebrity', 'celebrities', both, _ ). +noun( 'celerity', '-', mass, _ ). +noun( 'celery', '-', mass, _ ). +noun( 'celibacy', '-', mass, _ ). +noun( 'celibate', 'celibates', count, _ ). +noun( 'cell', 'cells', count, _ ). +noun( 'cellar', 'cellars', count, _ ). +noun( 'cellarage', 'cellarages', both, _ ). +noun( 'cellist', 'cellists', count, _ ). +noun( 'cello', 'cellos', count, _ ). +noun( 'cellophane', '-', mass, _ ). +noun( 'celluloid', '-', mass, _ ). +noun( 'cellulose', '-', mass, _ ). +noun( 'cement', '-', mass, _ ). +noun( 'cement-mixer', 'cement-mixers', count, _ ). +noun( 'cemetery', 'cemeteries', count, _ ). +noun( 'cenotaph', 'cenotaphs', count, _ ). +noun( 'censer', 'censers', count, _ ). +noun( 'censor', 'censors', count, _ ). +noun( 'censorship', 'censorships', count, _ ). +noun( 'censure', 'censures', both, _ ). +noun( 'census', 'censuses', count, _ ). +noun( 'cent', 'cents', count, _ ). +noun( 'centaur', 'centaurs', count, _ ). +noun( 'centenarian', 'centenarians', count, _ ). +noun( 'centenary', 'centenaries', count, _ ). +noun( 'centennial', 'centennials', count, _ ). +noun( 'centime', 'centimes', count, _ ). +noun( 'centimetre', 'centimetres', count, _ ). +noun( 'centipede', 'centipedes', count, _ ). +noun( 'central', 'centrals', count, _ ). +noun( 'centralization', 'centralizations', both, _ ). +noun( 'centre', 'centres', count, _ ). +noun( 'centre-bit', 'centre-bits', count, _ ). +noun( 'centre-board', 'centre-boards', count, _ ). +noun( 'centrepiece', 'centrepieces', count, _ ). +noun( 'centrifuge', 'centrifuges', count, _ ). +noun( 'centurion', 'centurions', count, _ ). +noun( 'century', 'centuries', count, _ ). +noun( 'ceramics', 'ceramics', mass, _ ). +noun( 'cereal', 'cereals', both, _ ). +noun( 'cerebration', '-', mass, _ ). +noun( 'ceremonial', 'ceremonials', both, _ ). +noun( 'ceremony', 'ceremonies', both, _ ). +noun( 'cerise', 'cerises', both, _ ). +noun( 'cert', 'certs', count, _ ). +noun( 'certainty', 'certainties', both, _ ). +noun( 'certificate', 'certificates', count, _ ). +noun( 'certification', 'certifications', both, _ ). +noun( 'certitude', '-', mass, _ ). +noun( 'cervix', 'cervixes', count, _ ). +noun( 'cessation', '-', mass, _ ). +noun( 'cession', 'cessions', both, _ ). +noun( 'cesspit', 'cesspits', count, _ ). +noun( 'cesspool', 'cesspools', count, _ ). +noun( 'cf', '-', proper, _ ). +noun( 'ch^ateau', 'ch^ateaux', count, _ ). +noun( 'chafe', 'chafes', count, _ ). +noun( 'chaff', '-', mass, _ ). +noun( 'chaffinch', 'chaffinches', count, _ ). +noun( 'chafing dish', 'chafing dishes', count, _ ). +noun( 'chagrin', '-', mass, _ ). +noun( 'chain', 'chains', count, _ ). +noun( 'chain-armour', '-', mass, _ ). +noun( 'chain-gang', 'chain-gangs', count, _ ). +noun( 'chain-letter', 'chain-letters', count, _ ). +noun( 'chain-mail', '-', mass, _ ). +noun( 'chain-smoker', 'chain-smokers', count, _ ). +noun( 'chain-stitch', 'chain-stitches', count, _ ). +noun( 'chain-store', 'chain-stores', count, _ ). +noun( 'chair', 'chairs', count, _ ). +noun( 'chair-lift', 'chair-lifts', count, _ ). +noun( 'chairman', 'chairmen', count, _ ). +noun( 'chairmanship', '-', mass, _ ). +noun( 'chaise', 'chaises', count, _ ). +noun( 'chaise longue', 'chaise longues', count, _ ). +noun( 'chalet', 'chalets', count, _ ). +noun( 'chalice', 'chalices', count, _ ). +noun( 'chalk', 'chalks', both, _ ). +noun( 'chalkpit', 'chalkpits', count, _ ). +noun( 'challenge', 'challenges', count, _ ). +noun( 'challenger', 'challengers', count, _ ). +noun( 'chamber', 'chambers', count, _ ). +noun( 'chamberlain', 'chamberlains', count, _ ). +noun( 'chambermaid', 'chambermaids', count, _ ). +noun( 'chamberpot', 'chamberpots', count, _ ). +noun( 'chameleon', 'chameleons', count, _ ). +noun( 'chammy-leather', 'chammy-leathers', count, _ ). +noun( 'chamois', 'chamoises', count, _ ). +noun( 'chamois-leather', 'chamois-leathers', count, _ ). +noun( 'champ', 'champs', count, _ ). +noun( 'champagne', 'champagnes', count, _ ). +noun( 'champion', 'champions', count, _ ). +noun( 'championship', 'championships', both, _ ). +noun( 'chance', 'chances', both, _ ). +noun( 'chancel', 'chancels', count, _ ). +noun( 'chancellery', 'chancelleries', count, _ ). +noun( 'chancellor', 'chancellors', count, _ ). +noun( 'chancery', 'chanceries', count, _ ). +noun( 'chandelier', 'chandeliers', count, _ ). +noun( 'chandler', 'chandlers', count, _ ). +noun( 'change', 'changes', both, _ ). +noun( 'changeableness', '-', mass, _ ). +noun( 'changeling', 'changelings', count, _ ). +noun( 'changeover', 'changeovers', count, _ ). +noun( 'channel', 'channels', count, _ ). +noun( 'chant', 'chants', count, _ ). +noun( 'chaos', '-', mass, _ ). +noun( 'chap', 'chaps', count, _ ). +noun( 'chapel', 'chapels', count, _ ). +noun( 'chapelgoer', 'chapelgoers', count, _ ). +noun( 'chaperon', 'chaperons', count, _ ). +noun( 'chaplain', 'chaplains', count, _ ). +noun( 'chaplaincy', 'chaplaincies', count, _ ). +noun( 'chaplet', 'chaplets', count, _ ). +noun( 'chapman', 'chapmen', count, _ ). +noun( 'chapter', 'chapters', count, _ ). +noun( 'chapterhouse', 'chapterhouses', count, _ ). +noun( 'char', 'chars', both, _ ). +noun( 'char`abanc', 'char`abancs', count, _ ). +noun( 'charabanc', 'charabancs', count, _ ). +noun( 'character', 'characters', both, _ ). +noun( 'characteristic', 'characteristics', count, _ ). +noun( 'characterization', '-', mass, _ ). +noun( 'charade', 'charades', count, _ ). +noun( 'charcoal', '-', mass, _ ). +noun( 'charcoal-burner', 'charcoal-burners', count, _ ). +noun( 'chard', 'chards', count, _ ). +noun( 'charg_e d\'affaires', 'charg_es d\'affaires', count, _ ). +noun( 'charge', 'charges', both, _ ). +noun( 'charge-account', 'charge-accounts', count, _ ). +noun( 'charge-sheet', 'charge-sheets', count, _ ). +noun( 'charger', 'chargers', count, _ ). +noun( 'chariot', 'chariots', count, _ ). +noun( 'charioteer', 'charioteers', count, _ ). +noun( 'charisma', 'charismas', count, _ ). +noun( 'charity', 'charities', both, _ ). +noun( 'charivari', '-', mass, _ ). +noun( 'charlady', 'charladies', count, _ ). +noun( 'charlatan', 'charlatans', count, _ ). +noun( 'charlock', '-', mass, _ ). +noun( 'charm', 'charms', both, _ ). +noun( 'charmer', 'charmers', count, _ ). +noun( 'charnel house', 'charnel houses', count, _ ). +noun( 'chart', 'charts', count, _ ). +noun( 'charter', 'charters', count, _ ). +noun( 'charter-party', 'charter-parties', count, _ ). +noun( 'chartreuse', '-', mass, _ ). +noun( 'charwoman', 'charwomen', count, _ ). +noun( 'chase', 'chases', count, _ ). +noun( 'chaser', 'chasers', count, _ ). +noun( 'chasm', 'chasms', count, _ ). +noun( 'chassis', 'chassis', count, _ ). +noun( 'chastisement', '-', mass, _ ). +noun( 'chastity', '-', mass, _ ). +noun( 'chasuble', 'chasubles', count, _ ). +noun( 'chat', 'chats', count, _ ). +noun( 'chatelaine', 'chatelaines', count, _ ). +noun( 'chattel', 'chattels', count, _ ). +noun( 'chatter', '-', mass, _ ). +noun( 'chatterbox', 'chatterboxes', count, _ ). +noun( 'chauffeur', 'chauffeurs', count, _ ). +noun( 'chauffeuse', 'chauffeuses', count, _ ). +noun( 'chauvinism', '-', mass, _ ). +noun( 'chauvinist', 'chauvinists', count, _ ). +noun( 'chaw', 'chaws', count, _ ). +noun( 'chaw-bacon', 'chaw-bacons', count, _ ). +noun( 'cheapness', '-', mass, _ ). +noun( 'cheat', 'cheats', count, _ ). +noun( 'check', 'checks', both, _ ). +noun( 'checkbook', 'checkbooks', count, _ ). +noun( 'checker', 'checkers', count, _ ). +noun( 'checkers', 'checkers', mass, _ ). +noun( 'checklist', 'checklists', count, _ ). +noun( 'checkmate', 'checkmates', count, _ ). +noun( 'checkout', 'checkouts', count, _ ). +noun( 'checkpoint', 'checkpoints', count, _ ). +noun( 'checkroom', 'checkrooms', count, _ ). +noun( 'checkup', 'checkups', count, _ ). +noun( 'cheek', 'cheeks', both, _ ). +noun( 'cheekbone', 'cheekbones', count, _ ). +noun( 'cheep', 'cheeps', count, _ ). +noun( 'cheer', 'cheers', both, _ ). +noun( 'cheerfulness', '-', mass, _ ). +noun( 'cheering', '-', mass, _ ). +noun( 'cheerleader', 'cheerleaders', count, _ ). +noun( 'cheerlessness', '-', mass, _ ). +noun( 'cheese', 'cheeses', both, _ ). +noun( 'cheesecake', 'cheesecakes', both, _ ). +noun( 'cheesecloth', 'cheesecloths', both, _ ). +noun( 'cheetah', 'cheetahs', count, _ ). +noun( 'chef', 'chefs', count, _ ). +noun( 'chef-d\'oeuvre', 'chefs-d\'oeuvre', count, _ ). +noun( 'chemical', 'chemicals', count, _ ). +noun( 'chemise', 'chemises', count, _ ). +noun( 'chemist', 'chemists', count, _ ). +noun( 'chemistry', '-', mass, _ ). +noun( 'chemotherapy', '-', mass, _ ). +noun( 'chenille', '-', mass, _ ). +noun( 'cheque', 'cheques', count, _ ). +noun( 'chequebook', 'chequebooks', count, _ ). +noun( 'cheroot', 'cheroots', count, _ ). +noun( 'cherry', 'cherries', count, _ ). +noun( 'cherub', 'cherubs', count, _ ). +noun( 'chervil', '-', mass, _ ). +noun( 'chess', '-', mass, _ ). +noun( 'chessboard', 'chessboards', count, _ ). +noun( 'chessman', 'chessmen', count, _ ). +noun( 'chest', 'chests', count, _ ). +noun( 'chesterfield', 'chesterfields', count, _ ). +noun( 'chestnut', 'chestnuts', both, _ ). +noun( 'cheval glass', 'cheval glasses', count, _ ). +noun( 'chevron', 'chevrons', count, _ ). +noun( 'chew', 'chews', count, _ ). +noun( 'chewing-gum', '-', mass, _ ). +noun( 'chiaroscuro', '-', mass, _ ). +noun( 'chic', '-', mass, _ ). +noun( 'chicanery', 'chicaneries', both, _ ). +noun( 'chick', 'chicks', count, _ ). +noun( 'chicken', 'chickens', both, _ ). +noun( 'chicken-run', 'chicken-runs', count, _ ). +noun( 'chickenfeed', '-', mass, _ ). +noun( 'chickenpox', '-', mass, _ ). +noun( 'chickpea', 'chickpeas', count, _ ). +noun( 'chickweed', '-', mass, _ ). +noun( 'chicle', '-', mass, _ ). +noun( 'chicory', '-', mass, _ ). +noun( 'chief', 'chiefs', count, _ ). +noun( 'chieftain', 'chieftains', count, _ ). +noun( 'chieftaincy', 'chieftaincies', count, _ ). +noun( 'chiffon', '-', mass, _ ). +noun( 'chiffonier', 'chiffoniers', count, _ ). +noun( 'chignon', 'chignons', count, _ ). +noun( 'chilblain', 'chilblains', count, _ ). +noun( 'child', 'children', count, _ ). +noun( 'child\'s-play', '-', mass, _ ). +noun( 'child-bearing', '-', mass, _ ). +noun( 'childbirth', '-', mass, _ ). +noun( 'childhood', '-', mass, _ ). +noun( 'chill', 'chills', count, _ ). +noun( 'chilli', 'chillies', count, _ ). +noun( 'chilly', 'chillies', count, _ ). +noun( 'chimaera', 'chimaeras', count, _ ). +noun( 'chime', 'chimes', count, _ ). +noun( 'chimera', 'chimeras', count, _ ). +noun( 'chimney', 'chimneys', count, _ ). +noun( 'chimney-sweep', 'chimney-sweeps', count, _ ). +noun( 'chimneybreast', 'chimneybreasts', count, _ ). +noun( 'chimneypiece', 'chimneypieces', count, _ ). +noun( 'chimneypot', 'chimneypots', count, _ ). +noun( 'chimneystack', 'chimneystacks', count, _ ). +noun( 'chimneysweep', 'chimneysweeps', count, _ ). +noun( 'chimneysweeper', 'chimneysweepers', count, _ ). +noun( 'chimp', 'chimps', count, _ ). +noun( 'chimpanzee', 'chimpanzees', count, _ ). +noun( 'chin', 'chins', count, _ ). +noun( 'chin-strap', 'chin-straps', count, _ ). +noun( 'chin-wagging', '-', mass, _ ). +noun( 'china', '-', mass, _ ). +noun( 'china-closet', 'china-closets', count, _ ). +noun( 'chinaware', '-', mass, _ ). +noun( 'chinchilla', 'chinchillas', both, _ ). +noun( 'chine', 'chines', count, _ ). +noun( 'chink', 'chinks', count, _ ). +noun( 'chintz', '-', mass, _ ). +noun( 'chip', 'chips', count, _ ). +noun( 'chipboard', '-', mass, _ ). +noun( 'chipmunk', 'chipmunks', count, _ ). +noun( 'chiropodist', 'chiropodists', count, _ ). +noun( 'chiropody', '-', mass, _ ). +noun( 'chiropractor', 'chiropractors', count, _ ). +noun( 'chirp', 'chirps', count, _ ). +noun( 'chirpiness', '-', mass, _ ). +noun( 'chirrup', 'chirrups', count, _ ). +noun( 'chisel', 'chisels', count, _ ). +noun( 'chiseller', 'chisellers', count, _ ). +noun( 'chit', 'chits', count, _ ). +noun( 'chit-chat', '-', mass, _ ). +noun( 'chivalry', '-', mass, _ ). +noun( 'chive', 'chives', both, _ ). +noun( 'chloride', '-', mass, _ ). +noun( 'chlorination', '-', mass, _ ). +noun( 'chlorine', '-', mass, _ ). +noun( 'chloroform', '-', mass, _ ). +noun( 'chlorophyll', '-', mass, _ ). +noun( 'choc', 'chocs', count, _ ). +noun( 'choc-ice', 'choc-ices', count, _ ). +noun( 'chock', 'chocks', count, _ ). +noun( 'chocolate', 'chocolates', both, _ ). +noun( 'choice', 'choices', both, _ ). +noun( 'choir', 'choirs', count, _ ). +noun( 'choir-school', 'choir-schools', count, _ ). +noun( 'choirboy', 'choirboys', count, _ ). +noun( 'choke', 'chokes', count, _ ). +noun( 'choke-damp', '-', mass, _ ). +noun( 'choker', 'chokers', count, _ ). +noun( 'chokey', 'chokeys', count, _ ). +noun( 'choky', 'chokies', count, _ ). +noun( 'choler', 'cholers', count, _ ). +noun( 'cholera', '-', mass, _ ). +noun( 'chop', 'chops', count, _ ). +noun( 'chop suey', '-', mass, _ ). +noun( 'chop-house', 'chop-houses', count, _ ). +noun( 'chopper', 'choppers', count, _ ). +noun( 'chorale', 'chorales', count, _ ). +noun( 'chord', 'chords', count, _ ). +noun( 'chore', 'chores', count, _ ). +noun( 'choreographer', 'choreographers', count, _ ). +noun( 'choreography', '-', mass, _ ). +noun( 'chorister', 'choristers', count, _ ). +noun( 'chortle', 'chortles', count, _ ). +noun( 'chorus', 'choruses', count, _ ). +noun( 'chorus-girl', 'chorus-girls', count, _ ). +noun( 'chow', 'chows', count, _ ). +noun( 'chowder', 'chowders', count, _ ). +noun( 'christening', 'christenings', count, _ ). +noun( 'chrome', '-', mass, _ ). +noun( 'chromium', '-', mass, _ ). +noun( 'chromosome', 'chromosomes', count, _ ). +noun( 'chronicle', 'chronicles', count, _ ). +noun( 'chronicler', 'chroniclers', count, _ ). +noun( 'chronology', 'chronologies', both, _ ). +noun( 'chronometer', 'chronometers', count, _ ). +noun( 'chrysalis', 'chrysalises', count, _ ). +noun( 'chrysanthemum', 'chrysanthemums', count, _ ). +noun( 'chuck', 'chucks', count, _ ). +noun( 'chucker-out', 'chuckers-out', count, _ ). +noun( 'chuckle', 'chuckles', count, _ ). +noun( 'chug', 'chugs', count, _ ). +noun( 'chukker', 'chukkers', count, _ ). +noun( 'chum', 'chums', count, _ ). +noun( 'chump', 'chumps', count, _ ). +noun( 'chunk', 'chunks', count, _ ). +noun( 'church', 'churches', both, _ ). +noun( 'churchgoer', 'churchgoers', count, _ ). +noun( 'churchman', 'churchmen', count, _ ). +noun( 'churchwarden', 'churchwardens', count, _ ). +noun( 'churchyard', 'churchyards', count, _ ). +noun( 'churl', 'churls', count, _ ). +noun( 'churn', 'churns', count, _ ). +noun( 'chute', 'chutes', count, _ ). +noun( 'chutney', 'chutneys', both, _ ). +noun( 'cicada', 'cicadas', count, _ ). +noun( 'cicala', 'cicalas', count, _ ). +noun( 'cicatrice', 'cicatrices', count, _ ). +noun( 'cicatrix', 'cicatrices', count, _ ). +noun( 'cicerone', '-', count, _ ). +noun( 'cider', 'ciders', both, _ ). +noun( 'ciderpress', 'ciderpresses', count, _ ). +noun( 'cif', '-', proper, _ ). +noun( 'cigar', 'cigars', count, _ ). +noun( 'cigarette', 'cigarettes', count, _ ). +noun( 'cigarette-case', 'cigarette-cases', count, _ ). +noun( 'cigarette-holder', 'cigarette-holders', count, _ ). +noun( 'cigarette-paper', 'cigarette-papers', count, _ ). +noun( 'cinch', '-', count, _ ). +noun( 'cinchona', 'cinchonas', count, _ ). +noun( 'cincture', 'cinctures', count, _ ). +noun( 'cinder', 'cinders', count, _ ). +noun( 'cinder-track', 'cinder-tracks', count, _ ). +noun( 'cine-camera', 'cine-cameras', count, _ ). +noun( 'cine-film', 'cine-films', count, _ ). +noun( 'cine-projector', 'cine-projectors', count, _ ). +noun( 'cinema', 'cinemas', count, _ ). +noun( 'cinematography', '-', mass, _ ). +noun( 'cinnamon', '-', mass, _ ). +noun( 'cinquefoil', 'cinquefoils', count, _ ). +noun( 'cipher', 'ciphers', count, _ ). +noun( 'circle', 'circles', count, _ ). +noun( 'circlet', 'circlets', count, _ ). +noun( 'circuit', 'circuits', count, _ ). +noun( 'circular', 'circulars', count, _ ). +noun( 'circularity', '-', mass, _ ). +noun( 'circulation', 'circulations', both, _ ). +noun( 'circumcision', 'circumcisions', count, _ ). +noun( 'circumference', 'circumferences', count, _ ). +noun( 'circumflex', 'circumflexes', count, _ ). +noun( 'circumlocution', 'circumlocutions', both, _ ). +noun( 'circumnavigation', 'circumnavigations', count, _ ). +noun( 'circumscription', 'circumscriptions', both, _ ). +noun( 'circumspection', '-', mass, _ ). +noun( 'circumstance', 'circumstances', count, _ ). +noun( 'circumvention', 'circumventions', count, _ ). +noun( 'circus', 'circuses', count, _ ). +noun( 'cirrhosis', '-', mass, _ ). +noun( 'cirrus', '-', mass, _ ). +noun( 'cissy', 'cissies', count, _ ). +noun( 'cistern', 'cisterns', count, _ ). +noun( 'citadel', 'citadels', count, _ ). +noun( 'citation', 'citations', both, _ ). +noun( 'citizen', 'citizens', count, _ ). +noun( 'citizenship', 'citizenships', count, _ ). +noun( 'citron', 'citrons', count, _ ). +noun( 'citrus', 'citruses', count, _ ). +noun( 'city', 'cities', count, _ ). +noun( 'civet', 'civets', both, _ ). +noun( 'civet-cat', 'civet-cats', count, _ ). +noun( 'civics', 'civics', mass, _ ). +noun( 'civilian', 'civilians', count, _ ). +noun( 'civility', 'civilities', both, _ ). +noun( 'civilization', 'civilizations', both, _ ). +noun( 'clack', 'clacks', count, _ ). +noun( 'claim', 'claims', both, _ ). +noun( 'claimant', 'claimants', count, _ ). +noun( 'clairvoyance', '-', mass, _ ). +noun( 'clairvoyant', 'clairvoyants', count, _ ). +noun( 'clam', 'clams', count, _ ). +noun( 'clambake', 'clambakes', count, _ ). +noun( 'clamber', 'clambers', count, _ ). +noun( 'clamour', 'clamours', both, _ ). +noun( 'clamp', 'clamps', count, _ ). +noun( 'clamp-down', 'clamp-downs', count, _ ). +noun( 'clan', 'clans', count, _ ). +noun( 'clang', 'clangs', count, _ ). +noun( 'clanger', 'clangers', count, _ ). +noun( 'clangour', '-', mass, _ ). +noun( 'clank', 'clanks', count, _ ). +noun( 'clansman', 'clansmen', count, _ ). +noun( 'clap', 'claps', both, _ ). +noun( 'clapboard', 'clapboards', count, _ ). +noun( 'clapper', 'clappers', count, _ ). +noun( 'clapperboard', 'clapperboards', count, _ ). +noun( 'claptrap', '-', mass, _ ). +noun( 'claque', 'claques', count, _ ). +noun( 'claret', 'clarets', both, _ ). +noun( 'clarification', '-', mass, _ ). +noun( 'clarinet', 'clarinets', count, _ ). +noun( 'clarinetist', 'clarinetists', count, _ ). +noun( 'clarinettist', 'clarinettists', count, _ ). +noun( 'clarion', 'clarions', count, _ ). +noun( 'clarity', '-', mass, _ ). +noun( 'clash', 'clashes', count, _ ). +noun( 'clasp', 'clasps', count, _ ). +noun( 'clasp-knife', 'clasp-knives', count, _ ). +noun( 'class', 'classes', both, _ ). +noun( 'class-feeling', '-', mass, _ ). +noun( 'class-fellow', 'class-fellows', count, _ ). +noun( 'class-list', 'class-lists', count, _ ). +noun( 'class-warfare', '-', mass, _ ). +noun( 'classic', 'classics', count, _ ). +noun( 'classicism', '-', mass, _ ). +noun( 'classicist', 'classicists', count, _ ). +noun( 'classics', 'classics', mass, _ ). +noun( 'classification', 'classifications', both, _ ). +noun( 'classmate', 'classmates', count, _ ). +noun( 'classroom', 'classrooms', count, _ ). +noun( 'clatter', '-', count, _ ). +noun( 'clause', 'clauses', count, _ ). +noun( 'claustrophobia', '-', mass, _ ). +noun( 'clavichord', 'clavichords', count, _ ). +noun( 'clavicle', 'clavicles', count, _ ). +noun( 'claw', 'claws', count, _ ). +noun( 'clawback', '-', mass, _ ). +noun( 'clawhammer', 'clawhammers', count, _ ). +noun( 'clay', '-', mass, _ ). +noun( 'clean', 'cleans', count, _ ). +noun( 'clean-up', 'clean-ups', count, _ ). +noun( 'cleaner', 'cleaners', count, _ ). +noun( 'cleanliness', '-', mass, _ ). +noun( 'cleanser', 'cleansers', both, _ ). +noun( 'clear', 'clears', count, _ ). +noun( 'clearance', 'clearances', both, _ ). +noun( 'clearing', 'clearings', count, _ ). +noun( 'clearing-house', 'clearing-houses', count, _ ). +noun( 'clearness', '-', mass, _ ). +noun( 'clearway', 'clearways', count, _ ). +noun( 'cleat', 'cleats', count, _ ). +noun( 'cleavage', 'cleavages', count, _ ). +noun( 'cleaver', 'cleavers', count, _ ). +noun( 'clef', 'clefs', count, _ ). +noun( 'cleft', 'clefts', count, _ ). +noun( 'clematis', '-', mass, _ ). +noun( 'clemency', '-', mass, _ ). +noun( 'clerestory', 'clerestories', count, _ ). +noun( 'clergy', 'clergies', count, _ ). +noun( 'clergyman', 'clergymen', count, _ ). +noun( 'cleric', 'clerics', count, _ ). +noun( 'clerihew', 'clerihews', count, _ ). +noun( 'clerk', 'clerks', count, _ ). +noun( 'cleverness', '-', mass, _ ). +noun( 'clew', 'clews', count, _ ). +noun( 'clich_e', 'clich_es', count, _ ). +noun( 'click', 'clicks', count, _ ). +noun( 'client', 'clients', count, _ ). +noun( 'clientele', 'clienteles', count, _ ). +noun( 'cliff', 'cliffs', count, _ ). +noun( 'cliff-hanger', 'cliff-hangers', count, _ ). +noun( 'climacteric', 'climacterics', count, _ ). +noun( 'climate', 'climates', count, _ ). +noun( 'climatology', '-', mass, _ ). +noun( 'climax', 'climaxes', count, _ ). +noun( 'climb', 'climbs', count, _ ). +noun( 'climb-down', 'climb-downs', count, _ ). +noun( 'climber', 'climbers', count, _ ). +noun( 'clime', 'climes', count, _ ). +noun( 'clinch', 'clinches', count, _ ). +noun( 'clincher', 'clinchers', count, _ ). +noun( 'clinic', 'clinics', count, _ ). +noun( 'clink', 'clinks', count, _ ). +noun( 'clinker', 'clinkers', both, _ ). +noun( 'clip', 'clips', count, _ ). +noun( 'clip-joint', 'clip-joints', count, _ ). +noun( 'clipper', 'clippers', count, _ ). +noun( 'clipping', 'clippings', count, _ ). +noun( 'clique', 'cliques', count, _ ). +noun( 'clitoris', 'clitorises', count, _ ). +noun( 'cloak', 'cloaks', count, _ ). +noun( 'cloakroom', 'cloakrooms', count, _ ). +noun( 'clobber', 'clobbers', count, _ ). +noun( 'cloche', 'cloches', count, _ ). +noun( 'clock', 'clocks', count, _ ). +noun( 'clock-dial', 'clock-dials', count, _ ). +noun( 'clock-face', 'clock-faces', count, _ ). +noun( 'clock-golf', '-', mass, _ ). +noun( 'clock-tower', 'clock-towers', count, _ ). +noun( 'clock-watching', '-', mass, _ ). +noun( 'clockwork', 'clockworks', count, _ ). +noun( 'clod', 'clods', count, _ ). +noun( 'clodhopper', 'clodhoppers', count, _ ). +noun( 'clog', 'clogs', count, _ ). +noun( 'clog-dance', 'clog-dances', count, _ ). +noun( 'cloisonn_e', '-', mass, _ ). +noun( 'cloister', 'cloisters', count, _ ). +noun( 'clone', 'clones', count, _ ). +noun( 'close', 'closes', count, _ ). +noun( 'close', '-', count, _ ). +noun( 'close-down', 'close-downs', count, _ ). +noun( 'close-up', 'close-ups', count, _ ). +noun( 'closeness', '-', mass, _ ). +noun( 'closet', 'closets', count, _ ). +noun( 'closure', 'closures', both, _ ). +noun( 'clot', 'clots', count, _ ). +noun( 'cloth', 'cloths', both, _ ). +noun( 'clothes-basket', 'clothes-baskets', count, _ ). +noun( 'clothes-hanger', 'clothes-hangers', count, _ ). +noun( 'clothes-moth', 'clothes-moths', count, _ ). +noun( 'clothes-peg', 'clothes-pegs', count, _ ). +noun( 'clothes-pin', 'clothes-pins', count, _ ). +noun( 'clotheshorse', 'clotheshorses', count, _ ). +noun( 'clothesline', 'clotheslines', count, _ ). +noun( 'clothier', 'clothiers', count, _ ). +noun( 'clothing', '-', mass, _ ). +noun( 'cloud', 'clouds', both, _ ). +noun( 'cloud-bank', 'cloud-banks', count, _ ). +noun( 'cloud-cuckoo-land', '-', count, _ ). +noun( 'cloudburst', 'cloudbursts', count, _ ). +noun( 'clout', 'clouts', count, _ ). +noun( 'clove', 'cloves', count, _ ). +noun( 'clove hitch', 'clove hitches', count, _ ). +noun( 'clover', '-', mass, _ ). +noun( 'cloverleaf', 'cloverleaves', count, _ ). +noun( 'clown', 'clowns', count, _ ). +noun( 'club', 'clubs', count, _ ). +noun( 'clubfoot', 'clubfeet', count, _ ). +noun( 'clubhouse', 'clubhouses', count, _ ). +noun( 'cluck', 'clucks', count, _ ). +noun( 'clue', 'clues', count, _ ). +noun( 'clump', 'clumps', count, _ ). +noun( 'clumsiness', '-', mass, _ ). +noun( 'clunk', 'clunks', count, _ ). +noun( 'cluster', 'clusters', count, _ ). +noun( 'clutch', 'clutches', count, _ ). +noun( 'clutter', 'clutters', both, _ ). +noun( 'cm', 'cm', count, _ ). +noun( 'co-ed', 'co-eds', count, _ ). +noun( 'co-op', 'co-ops', count, _ ). +noun( 'co-respondent', 'co-respondents', count, _ ). +noun( 'co-star', 'co-stars', count, _ ). +noun( 'coach', 'coaches', count, _ ). +noun( 'coach-builder', 'coach-builders', count, _ ). +noun( 'coachman', 'coachmen', count, _ ). +noun( 'coagulation', 'coagulations', both, _ ). +noun( 'coal', 'coals', both, _ ). +noun( 'coal-gas', '-', mass, _ ). +noun( 'coal-hole', 'coal-holes', count, _ ). +noun( 'coal-house', 'coal-houses', count, _ ). +noun( 'coal-scuttle', 'coal-scuttles', count, _ ). +noun( 'coal-seam', 'coal-seams', count, _ ). +noun( 'coal-tar', '-', mass, _ ). +noun( 'coalescence', 'coalescences', both, _ ). +noun( 'coalface', 'coalfaces', count, _ ). +noun( 'coalfield', 'coalfields', count, _ ). +noun( 'coaling-station', 'coaling-stations', count, _ ). +noun( 'coalition', 'coalitions', both, _ ). +noun( 'coalman', 'coalmen', count, _ ). +noun( 'coalmine', 'coalmines', count, _ ). +noun( 'coalpit', 'coalpits', count, _ ). +noun( 'coaming', 'coamings', count, _ ). +noun( 'coarseness', '-', mass, _ ). +noun( 'coast', 'coasts', count, _ ). +noun( 'coaster', 'coasters', count, _ ). +noun( 'coastguard', 'coastguards', count, _ ). +noun( 'coastline', 'coastlines', count, _ ). +noun( 'coat', 'coats', count, _ ). +noun( 'coat-hanger', 'coat-hangers', count, _ ). +noun( 'coatee', 'coatees', count, _ ). +noun( 'coating', 'coatings', both, _ ). +noun( 'coaxing', 'coaxings', both, _ ). +noun( 'cob', 'cobs', count, _ ). +noun( 'cob-nut', 'cob-nuts', count, _ ). +noun( 'cobalt', '-', mass, _ ). +noun( 'cobber', 'cobbers', count, _ ). +noun( 'cobble', 'cobbles', count, _ ). +noun( 'cobbler', 'cobblers', count, _ ). +noun( 'cobblestone', 'cobblestones', count, _ ). +noun( 'cobra', 'cobras', count, _ ). +noun( 'cobweb', 'cobwebs', count, _ ). +noun( 'cocaine', '-', mass, _ ). +noun( 'cochineal', '-', mass, _ ). +noun( 'cochlea', 'cochleas', count, _ ). +noun( 'cock', 'cocks', count, _ ). +noun( 'cock-a-doodle-doo', 'cock-a-doodle-doos', count, _ ). +noun( 'cock-crow', 'cock-crows', count, _ ). +noun( 'cockade', 'cockades', count, _ ). +noun( 'cockatoo', 'cockatoos', count, _ ). +noun( 'cockchafer', 'cockchafers', count, _ ). +noun( 'cocker', 'cockers', count, _ ). +noun( 'cockerel', 'cockerels', count, _ ). +noun( 'cockfighting', '-', mass, _ ). +noun( 'cockhorse', 'cockhorses', count, _ ). +noun( 'cockle', 'cockles', count, _ ). +noun( 'cockleshell', 'cockleshells', count, _ ). +noun( 'cockney', 'cockneys', count, _ ). +noun( 'cockpit', 'cockpits', count, _ ). +noun( 'cockroach', 'cockroaches', count, _ ). +noun( 'cockscomb', 'cockscombs', count, _ ). +noun( 'cocktail', 'cocktails', count, _ ). +noun( 'cockup', 'cockups', count, _ ). +noun( 'coco', 'cocos', count, _ ). +noun( 'cocoa', '-', mass, _ ). +noun( 'coconut', 'coconuts', count, _ ). +noun( 'cocoon', 'cocoons', count, _ ). +noun( 'cocotte', 'cocottes', count, _ ). +noun( 'cod', 'cods', both, _ ). +noun( 'cod-liver oil', '-', mass, _ ). +noun( 'coda', 'codas', count, _ ). +noun( 'code', 'codes', both, _ ). +noun( 'codeine', '-', mass, _ ). +noun( 'codex', 'codices', count, _ ). +noun( 'codfish', 'codfish', count, _ ). +noun( 'codger', 'codgers', count, _ ). +noun( 'codicil', 'codicils', count, _ ). +noun( 'codification', 'codifications', count, _ ). +noun( 'codling', 'codlings', count, _ ). +noun( 'codpiece', 'codpieces', count, _ ). +noun( 'coeducation', '-', mass, _ ). +noun( 'coefficient', 'coefficients', count, _ ). +noun( 'coercion', '-', mass, _ ). +noun( 'coeval', 'coevals', count, _ ). +noun( 'coexistence', '-', mass, _ ). +noun( 'coffee', 'coffees', both, _ ). +noun( 'coffee-house', 'coffee-houses', count, _ ). +noun( 'coffee-mill', 'coffee-mills', count, _ ). +noun( 'coffee-stall', 'coffee-stalls', count, _ ). +noun( 'coffer', 'coffers', count, _ ). +noun( 'coffer-dam', 'coffer-dams', count, _ ). +noun( 'coffin', 'coffins', count, _ ). +noun( 'cog', 'cogs', count, _ ). +noun( 'cogency', '-', mass, _ ). +noun( 'cogitation', '-', mass, _ ). +noun( 'cognac', '-', mass, _ ). +noun( 'cognate', 'cognates', count, _ ). +noun( 'cognition', '-', mass, _ ). +noun( 'cognizance', '-', mass, _ ). +noun( 'cognomen', 'cognomens', count, _ ). +noun( 'cogwheel', 'cogwheels', count, _ ). +noun( 'cohabitation', 'cohabitations', both, _ ). +noun( 'coherence', '-', mass, _ ). +noun( 'coherency', '-', mass, _ ). +noun( 'cohesion', '-', mass, _ ). +noun( 'cohort', 'cohorts', count, _ ). +noun( 'coif', 'coifs', count, _ ). +noun( 'coiffeur', 'coiffeurs', count, _ ). +noun( 'coiffure', 'coiffures', count, _ ). +noun( 'coign', 'coigns', count, _ ). +noun( 'coil', 'coils', count, _ ). +noun( 'coin', 'coins', both, _ ). +noun( 'coinage', 'coinages', both, _ ). +noun( 'coincidence', 'coincidences', both, _ ). +noun( 'coiner', 'coiners', count, _ ). +noun( 'coir', '-', mass, _ ). +noun( 'coition', '-', mass, _ ). +noun( 'coitus', '-', mass, _ ). +noun( 'coke', 'cokes', both, _ ). +noun( 'col', 'cols', count, _ ). +noun( 'cola', 'colas', count, _ ). +noun( 'colander', 'colanders', count, _ ). +noun( 'cold', 'colds', both, _ ). +noun( 'coldness', '-', mass, _ ). +noun( 'coleslaw', '-', mass, _ ). +noun( 'colic', '-', mass, _ ). +noun( 'colitis', '-', mass, _ ). +noun( 'collaboration', '-', mass, _ ). +noun( 'collaborationist', 'collaborationists', count, _ ). +noun( 'collaborator', 'collaborators', count, _ ). +noun( 'collage', 'collages', both, _ ). +noun( 'collapse', 'collapses', count, _ ). +noun( 'collar', 'collars', count, _ ). +noun( 'collarbone', 'collarbones', count, _ ). +noun( 'collateral', '-', mass, _ ). +noun( 'collation', 'collations', count, _ ). +noun( 'colleague', 'colleagues', count, _ ). +noun( 'collect', 'collects', count, _ ). +noun( 'collection', 'collections', both, _ ). +noun( 'collectivization', 'collectivizations', count, _ ). +noun( 'collector', 'collectors', count, _ ). +noun( 'colleen', 'colleens', count, _ ). +noun( 'college', 'colleges', both, _ ). +noun( 'collie', 'collies', count, _ ). +noun( 'collier', 'colliers', count, _ ). +noun( 'colliery', 'collieries', count, _ ). +noun( 'collision', 'collisions', both, _ ). +noun( 'collocation', 'collocations', both, _ ). +noun( 'colloquialism', 'colloquialisms', count, _ ). +noun( 'colloquy', 'colloquies', both, _ ). +noun( 'collusion', '-', mass, _ ). +noun( 'colon', 'colons', count, _ ). +noun( 'colonel', 'colonels', count, _ ). +noun( 'colonial', 'colonials', count, _ ). +noun( 'colonialism', '-', mass, _ ). +noun( 'colonialist', 'colonialists', count, _ ). +noun( 'colonist', 'colonists', count, _ ). +noun( 'colonization', '-', mass, _ ). +noun( 'colonizer', 'colonizers', count, _ ). +noun( 'colonnade', 'colonnades', count, _ ). +noun( 'colony', 'colonies', count, _ ). +noun( 'coloratura', '-', mass, _ ). +noun( 'colossus', 'colossi', count, _ ). +noun( 'colour', 'colours', both, _ ). +noun( 'colour-bar', 'colour-bars', count, _ ). +noun( 'colour-wash', 'colour-washes', count, _ ). +noun( 'colouring', '-', mass, _ ). +noun( 'colt', 'colts', count, _ ). +noun( 'columbine', 'columbines', count, _ ). +noun( 'column', 'columns', count, _ ). +noun( 'columnist', 'columnists', count, _ ). +noun( 'coma', 'comas', count, _ ). +noun( 'comb', 'combs', count, _ ). +noun( 'comb-out', 'comb-outs', count, _ ). +noun( 'combat', 'combats', count, _ ). +noun( 'combatant', 'combatants', count, _ ). +noun( 'combination', 'combinations', both, _ ). +noun( 'combination-lock', 'combination-locks', count, _ ). +noun( 'combine', 'combines', count, _ ). +noun( 'combustible', 'combustibles', count, _ ). +noun( 'combustion', '-', mass, _ ). +noun( 'come-on', 'come-ons', count, _ ). +noun( 'comeback', 'comebacks', count, _ ). +noun( 'comedian', 'comedians', count, _ ). +noun( 'comedienne', 'comediennes', count, _ ). +noun( 'comedown', 'comedowns', count, _ ). +noun( 'comedy', 'comedies', both, _ ). +noun( 'comeliness', '-', mass, _ ). +noun( 'comer', 'comers', count, _ ). +noun( 'comestible', 'comestibles', count, _ ). +noun( 'comet', 'comets', count, _ ). +noun( 'comfit', 'comfits', count, _ ). +noun( 'comfort', 'comforts', both, _ ). +noun( 'comforter', 'comforters', count, _ ). +noun( 'comfrey', '-', mass, _ ). +noun( 'comic', 'comics', count, _ ). +noun( 'coming', 'comings', count, _ ). +noun( 'comity', '-', mass, _ ). +noun( 'comma', 'commas', count, _ ). +noun( 'command', 'commands', both, _ ). +noun( 'commandant', 'commandants', count, _ ). +noun( 'commander', 'commanders', count, _ ). +noun( 'commandment', 'commandments', count, _ ). +noun( 'commando', 'commandos', count, _ ). +noun( 'commemoration', 'commemorations', both, _ ). +noun( 'commencement', 'commencements', count, _ ). +noun( 'commendation', 'commendations', both, _ ). +noun( 'comment', 'comments', both, _ ). +noun( 'commentary', 'commentaries', count, _ ). +noun( 'commentator', 'commentators', count, _ ). +noun( 'commerce', '-', mass, _ ). +noun( 'commercial', 'commercials', count, _ ). +noun( 'commercialism', '-', mass, _ ). +noun( 'commination', 'comminations', both, _ ). +noun( 'commiseration', 'commiserations', both, _ ). +noun( 'commissar', 'commissars', count, _ ). +noun( 'commissariat', 'commissariats', count, _ ). +noun( 'commissary', 'commissaries', count, _ ). +noun( 'commission', 'commissions', both, _ ). +noun( 'commissionaire', 'commissionaires', count, _ ). +noun( 'commissioner', 'commissioners', count, _ ). +noun( 'commital', 'commitals', count, _ ). +noun( 'commitment', 'commitments', both, _ ). +noun( 'committee', 'committees', count, _ ). +noun( 'commode', 'commodes', count, _ ). +noun( 'commodity', 'commodities', count, _ ). +noun( 'commodore', 'commodores', count, _ ). +noun( 'common', 'commons', count, _ ). +noun( 'common-room', 'common-rooms', count, _ ). +noun( 'commonalty', 'commonalties', count, _ ). +noun( 'commoner', 'commoners', count, _ ). +noun( 'commonplace', 'commonplaces', count, _ ). +noun( 'commonwealth', 'commonwealths', count, _ ). +noun( 'commotion', 'commotions', both, _ ). +noun( 'commune', 'communes', count, _ ). +noun( 'communicant', 'communicants', count, _ ). +noun( 'communication', 'communications', both, _ ). +noun( 'communion', 'communions', both, _ ). +noun( 'communiqu_e', 'communiqu_es', count, _ ). +noun( 'communism', '-', mass, _ ). +noun( 'communist', 'communists', count, _ ). +noun( 'community', 'communities', both, _ ). +noun( 'commutation', 'commutations', both, _ ). +noun( 'commutator', 'commutators', count, _ ). +noun( 'commuter', 'commuters', count, _ ). +noun( 'comp`ere', 'comp`eres', count, _ ). +noun( 'compact', 'compacts', count, _ ). +noun( 'compactness', '-', mass, _ ). +noun( 'companion', 'companions', count, _ ). +noun( 'companionship', '-', mass, _ ). +noun( 'companionway', 'companionways', count, _ ). +noun( 'company', 'companies', both, _ ). +noun( 'comparability', '-', mass, _ ). +noun( 'comparative', 'comparatives', count, _ ). +noun( 'compare', 'compares', count, _ ). +noun( 'comparison', 'comparisons', both, _ ). +noun( 'compartment', 'compartments', count, _ ). +noun( 'compass', 'compasses', count, _ ). +noun( 'compassion', '-', mass, _ ). +noun( 'compatibility', '-', mass, _ ). +noun( 'compatriot', 'compatriots', count, _ ). +noun( 'compeer', 'compeers', count, _ ). +noun( 'compendium', 'compendiums', count, _ ). +noun( 'compensation', 'compensations', both, _ ). +noun( 'competence', '-', mass, _ ). +noun( 'competition', 'competitions', both, _ ). +noun( 'competitiveness', '-', mass, _ ). +noun( 'competitor', 'competitors', count, _ ). +noun( 'compilation', 'compilations', both, _ ). +noun( 'compiler', 'compilers', count, _ ). +noun( 'complacence', '-', mass, _ ). +noun( 'complacency', '-', mass, _ ). +noun( 'complainant', 'complainants', count, _ ). +noun( 'complaint', 'complaints', both, _ ). +noun( 'complaisance', '-', mass, _ ). +noun( 'complement', 'complements', count, _ ). +noun( 'completeness', '-', mass, _ ). +noun( 'completion', '-', mass, _ ). +noun( 'complex', 'complexes', count, _ ). +noun( 'complexion', 'complexions', count, _ ). +noun( 'complexity', 'complexities', both, _ ). +noun( 'compliance', '-', mass, _ ). +noun( 'complication', 'complications', count, _ ). +noun( 'complicity', '-', mass, _ ). +noun( 'compliment', 'compliments', count, _ ). +noun( 'complin', 'complins', count, _ ). +noun( 'compline', 'complines', count, _ ). +noun( 'component', 'components', count, _ ). +noun( 'comportment', 'comportments', count, _ ). +noun( 'composer', 'composers', count, _ ). +noun( 'composition', 'compositions', both, _ ). +noun( 'compositor', 'compositors', count, _ ). +noun( 'compost', '-', mass, _ ). +noun( 'composure', '-', mass, _ ). +noun( 'compote', 'compotes', both, _ ). +noun( 'compound', 'compounds', count, _ ). +noun( 'comprehensibility', '-', mass, _ ). +noun( 'comprehension', 'comprehensions', both, _ ). +noun( 'comprehensiveness', '-', mass, _ ). +noun( 'compress', 'compresses', count, _ ). +noun( 'compression', '-', mass, _ ). +noun( 'compressor', 'compressors', count, _ ). +noun( 'compromise', 'compromises', both, _ ). +noun( 'comptroller', 'comptrollers', count, _ ). +noun( 'compulsion', '-', mass, _ ). +noun( 'compunction', '-', mass, _ ). +noun( 'computation', 'computations', both, _ ). +noun( 'computer', 'computers', count, _ ). +noun( 'comrade', 'comrades', count, _ ). +noun( 'comradeship', 'comradeships', count, _ ). +noun( 'con', 'cons', count, _ ). +noun( 'con-man', 'con-men', count, _ ). +noun( 'concatenation', 'concatenations', both, _ ). +noun( 'concavity', 'concavities', both, _ ). +noun( 'concealment', '-', mass, _ ). +noun( 'conceit', 'conceits', both, _ ). +noun( 'concentrate', 'concentrates', count, _ ). +noun( 'concentration', 'concentrations', both, _ ). +noun( 'concept', 'concepts', count, _ ). +noun( 'conception', 'conceptions', both, _ ). +noun( 'concern', 'concerns', both, _ ). +noun( 'concert', 'concerts', both, _ ). +noun( 'concert-hall', 'concert-halls', count, _ ). +noun( 'concertina', 'concertinas', count, _ ). +noun( 'concerto', 'concertos', count, _ ). +noun( 'concession', 'concessions', both, _ ). +noun( 'concessionaire', 'concessionaires', count, _ ). +noun( 'conch', 'conches', count, _ ). +noun( 'conchology', '-', mass, _ ). +noun( 'concierge', 'concierges', count, _ ). +noun( 'conciliation', '-', mass, _ ). +noun( 'conciseness', '-', mass, _ ). +noun( 'conclave', 'conclaves', count, _ ). +noun( 'conclusion', 'conclusions', count, _ ). +noun( 'concoction', 'concoctions', both, _ ). +noun( 'concomitant', 'concomitants', count, _ ). +noun( 'concord', 'concords', both, _ ). +noun( 'concordance', 'concordances', both, _ ). +noun( 'concordat', 'concordats', count, _ ). +noun( 'concourse', 'concourses', count, _ ). +noun( 'concrete', '-', mass, _ ). +noun( 'concretion', 'concretions', both, _ ). +noun( 'concubine', 'concubines', count, _ ). +noun( 'concupiscence', '-', mass, _ ). +noun( 'concurrence', 'concurrences', both, _ ). +noun( 'concussion', 'concussions', both, _ ). +noun( 'condemnation', 'condemnations', both, _ ). +noun( 'condensation', 'condensations', both, _ ). +noun( 'condenser', 'condensers', count, _ ). +noun( 'condescension', 'condescensions', both, _ ). +noun( 'condiment', 'condiments', both, _ ). +noun( 'condition', 'conditions', count, _ ). +noun( 'conditioner', 'conditioners', count, _ ). +noun( 'condolence', 'condolences', count, _ ). +noun( 'condominium', 'condominiums', count, _ ). +noun( 'condonation', 'condonations', count, _ ). +noun( 'condor', 'condors', count, _ ). +noun( 'conduct', '-', mass, _ ). +noun( 'conduction', '-', mass, _ ). +noun( 'conductivity', 'conductivities', both, _ ). +noun( 'conductor', 'conductors', count, _ ). +noun( 'conductress', 'conductresses', count, _ ). +noun( 'conduit', 'conduits', count, _ ). +noun( 'cone', 'cones', count, _ ). +noun( 'coney', 'coneys', count, _ ). +noun( 'confab', 'confabs', count, _ ). +noun( 'confabulation', 'confabulations', count, _ ). +noun( 'confection', 'confections', both, _ ). +noun( 'confectioner', 'confectioners', count, _ ). +noun( 'confectionery', 'confectioneries', both, _ ). +noun( 'confederacy', 'confederacies', count, _ ). +noun( 'confederate', 'confederates', count, _ ). +noun( 'confederation', 'confederations', both, _ ). +noun( 'conference', 'conferences', both, _ ). +noun( 'conferment', 'conferments', count, _ ). +noun( 'confession', 'confessions', both, _ ). +noun( 'confessional', 'confessionals', count, _ ). +noun( 'confessor', 'confessors', count, _ ). +noun( 'confetti', 'confetti', mass, _ ). +noun( 'confidant', 'confidants', count, _ ). +noun( 'confidence', 'confidences', both, _ ). +noun( 'confidentiality', 'confidentialities', both, _ ). +noun( 'configuration', 'configurations', count, _ ). +noun( 'confinement', 'confinements', both, _ ). +noun( 'confirmation', 'confirmations', both, _ ). +noun( 'confiscation', 'confiscations', both, _ ). +noun( 'conflagration', 'conflagrations', count, _ ). +noun( 'conflict', 'conflicts', both, _ ). +noun( 'confluence', 'confluences', count, _ ). +noun( 'conformation', 'conformations', count, _ ). +noun( 'conformist', 'conformists', count, _ ). +noun( 'conformity', '-', mass, _ ). +noun( 'confr`ere', 'confr`eres', count, _ ). +noun( 'confrontation', 'confrontations', both, _ ). +noun( 'confusion', '-', mass, _ ). +noun( 'confutation', 'confutations', count, _ ). +noun( 'cong_e', 'cong_es', count, _ ). +noun( 'conger', 'congers', count, _ ). +noun( 'conger-eel', 'conger-eels', count, _ ). +noun( 'congestion', '-', mass, _ ). +noun( 'conglomerate', 'conglomerates', count, _ ). +noun( 'conglomeration', 'conglomerations', both, _ ). +noun( 'congratulation', 'congratulations', count, _ ). +noun( 'congregation', 'congregations', both, _ ). +noun( 'congress', 'congresses', count, _ ). +noun( 'congressman', 'congressmen', count, _ ). +noun( 'congresswoman', 'congresswomen', count, _ ). +noun( 'conifer', 'conifers', count, _ ). +noun( 'conjecture', 'conjectures', both, _ ). +noun( 'conjugation', 'conjugations', both, _ ). +noun( 'conjunction', 'conjunctions', both, _ ). +noun( 'conjunctive', 'conjunctives', count, _ ). +noun( 'conjuncture', 'conjunctures', count, _ ). +noun( 'conjuration', 'conjurations', count, _ ). +noun( 'conjurer', 'conjurers', count, _ ). +noun( 'conjuror', 'conjurors', count, _ ). +noun( 'conk', 'conks', count, _ ). +noun( 'conker', 'conkers', count, _ ). +noun( 'connection', 'connections', both, _ ). +noun( 'connective', 'connectives', count, _ ). +noun( 'connexion', 'connexions', both, _ ). +noun( 'connivance', '-', mass, _ ). +noun( 'connoisseur', 'connoisseurs', count, _ ). +noun( 'connotation', 'connotations', count, _ ). +noun( 'conqueror', 'conquerors', count, _ ). +noun( 'conquest', 'conquests', both, _ ). +noun( 'conquistador', 'conquistadors', count, _ ). +noun( 'consanguinity', '-', mass, _ ). +noun( 'conscience', 'consciences', both, _ ). +noun( 'conscientiousness', '-', mass, _ ). +noun( 'consciousness', '-', mass, _ ). +noun( 'conscript', 'conscripts', count, _ ). +noun( 'conscription', '-', mass, _ ). +noun( 'consecration', 'consecrations', both, _ ). +noun( 'consensus', '-', both, _ ). +noun( 'consent', '-', mass, _ ). +noun( 'consequence', 'consequences', both, _ ). +noun( 'conservancy', 'conservancies', both, _ ). +noun( 'conservation', '-', mass, _ ). +noun( 'conservatism', '-', mass, _ ). +noun( 'conservative', 'conservatives', count, _ ). +noun( 'conservatoire', 'conservatoires', count, _ ). +noun( 'conservatory', 'conservatories', count, _ ). +noun( 'conserve', 'conserves', count, _ ). +noun( 'considerateness', '-', mass, _ ). +noun( 'consideration', 'considerations', both, _ ). +noun( 'consignee', 'consignees', count, _ ). +noun( 'consigner', 'consigners', count, _ ). +noun( 'consignment', 'consignments', both, _ ). +noun( 'consignor', 'consignors', count, _ ). +noun( 'consistence', '-', mass, _ ). +noun( 'consistency', 'consistencies', both, _ ). +noun( 'consistory', 'consistories', count, _ ). +noun( 'consolation', 'consolations', both, _ ). +noun( 'console', 'consoles', count, _ ). +noun( 'consolidation', 'consolidations', both, _ ). +noun( 'consomm_e', 'consomm_es', both, _ ). +noun( 'consonance', '-', mass, _ ). +noun( 'consonant', 'consonants', count, _ ). +noun( 'consort', 'consorts', count, _ ). +noun( 'consortium', 'consortia', count, _ ). +noun( 'conspectus', 'conspectuses', count, _ ). +noun( 'conspicuousness', '-', mass, _ ). +noun( 'conspiracy', 'conspiracies', both, _ ). +noun( 'conspirator', 'conspirators', count, _ ). +noun( 'constable', 'constables', count, _ ). +noun( 'constabulary', 'constabularies', count, _ ). +noun( 'constancy', '-', mass, _ ). +noun( 'constant', 'constants', count, _ ). +noun( 'constellation', 'constellations', count, _ ). +noun( 'consternation', '-', mass, _ ). +noun( 'constipation', '-', mass, _ ). +noun( 'constituency', 'constituencies', count, _ ). +noun( 'constituent', 'constituents', count, _ ). +noun( 'constitution', 'constitutions', both, _ ). +noun( 'constitutional', 'constitutionals', count, _ ). +noun( 'constitutionalism', '-', mass, _ ). +noun( 'constitutionalist', 'constitutionalists', count, _ ). +noun( 'constraint', 'constraints', both, _ ). +noun( 'constriction', 'constrictions', both, _ ). +noun( 'construction', 'constructions', both, _ ). +noun( 'constructor', 'constructors', count, _ ). +noun( 'consubstantiation', '-', mass, _ ). +noun( 'consul', 'consuls', count, _ ). +noun( 'consulate', 'consulates', count, _ ). +noun( 'consulship', 'consulships', count, _ ). +noun( 'consultant', 'consultants', count, _ ). +noun( 'consultation', 'consultations', both, _ ). +noun( 'consumer', 'consumers', count, _ ). +noun( 'consummation', 'consummations', both, _ ). +noun( 'consumption', '-', mass, _ ). +noun( 'consumptive', 'consumptives', count, _ ). +noun( 'cont', '-', proper, _ ). +noun( 'contact', 'contacts', both, _ ). +noun( 'contagion', 'contagions', both, _ ). +noun( 'container', 'containers', count, _ ). +noun( 'containment', '-', mass, _ ). +noun( 'contaminant', 'contaminants', count, _ ). +noun( 'contamination', 'contaminations', both, _ ). +noun( 'contemplation', '-', mass, _ ). +noun( 'contemporary', 'contemporaries', count, _ ). +noun( 'contempt', '-', mass, _ ). +noun( 'contender', 'contenders', count, _ ). +noun( 'content', 'contents', count, _ ). +noun( 'content', '-', mass, _ ). +noun( 'contention', 'contentions', both, _ ). +noun( 'contentment', '-', mass, _ ). +noun( 'contest', 'contests', count, _ ). +noun( 'contestant', 'contestants', count, _ ). +noun( 'context', 'contexts', both, _ ). +noun( 'contiguity', '-', mass, _ ). +noun( 'continence', '-', mass, _ ). +noun( 'continent', 'continents', count, _ ). +noun( 'contingency', 'contingencies', both, _ ). +noun( 'contingent', 'contingents', count, _ ). +noun( 'continuance', '-', count, _ ). +noun( 'continuation', 'continuations', both, _ ). +noun( 'continuity', '-', mass, _ ). +noun( 'contortion', 'contortions', both, _ ). +noun( 'contortionist', 'contortionists', count, _ ). +noun( 'contour', 'contours', count, _ ). +noun( 'contraband', '-', mass, _ ). +noun( 'contrabass', 'contrabasses', count, _ ). +noun( 'contraception', '-', mass, _ ). +noun( 'contraceptive', 'contraceptives', count, _ ). +noun( 'contract', 'contracts', both, _ ). +noun( 'contraction', 'contractions', both, _ ). +noun( 'contractor', 'contractors', count, _ ). +noun( 'contradiction', 'contradictions', both, _ ). +noun( 'contradistinction', 'contradistinctions', count, _ ). +noun( 'contralto', 'contraltos', count, _ ). +noun( 'contraption', 'contraptions', count, _ ). +noun( 'contrariety', 'contrarieties', both, _ ). +noun( 'contrariness', '-', mass, _ ). +noun( 'contrary', 'contraries', both, _ ). +noun( 'contrast', 'contrasts', both, _ ). +noun( 'contravention', 'contraventions', both, _ ). +noun( 'contretemps', 'contretemps', count, _ ). +noun( 'contribution', 'contributions', both, _ ). +noun( 'contributor', 'contributors', count, _ ). +noun( 'contrition', '-', mass, _ ). +noun( 'contrivance', 'contrivances', both, _ ). +noun( 'contriver', 'contrivers', count, _ ). +noun( 'control', 'controls', both, _ ). +noun( 'controller', 'controllers', count, _ ). +noun( 'controversialist', 'controversialists', count, _ ). +noun( 'controversy', 'controversies', both, _ ). +noun( 'contumacy', 'contumacies', both, _ ). +noun( 'contumely', 'contumelies', both, _ ). +noun( 'contusion', 'contusions', count, _ ). +noun( 'conundrum', 'conundrums', count, _ ). +noun( 'conurbation', 'conurbations', count, _ ). +noun( 'convalescence', '-', mass, _ ). +noun( 'convalescent', 'convalescents', count, _ ). +noun( 'convection', '-', mass, _ ). +noun( 'convector', 'convectors', count, _ ). +noun( 'convener', 'conveners', count, _ ). +noun( 'convenience', 'conveniences', both, _ ). +noun( 'convent', 'convents', count, _ ). +noun( 'conventicle', 'conventicles', count, _ ). +noun( 'convention', 'conventions', both, _ ). +noun( 'conventionality', 'conventionalities', both, _ ). +noun( 'convergence', 'convergences', count, _ ). +noun( 'conversation', 'conversations', both, _ ). +noun( 'conversationalist', 'conversationalists', count, _ ). +noun( 'converse', '-', both, _ ). +noun( 'conversion', 'conversions', both, _ ). +noun( 'convert', 'converts', count, _ ). +noun( 'converter', 'converters', count, _ ). +noun( 'convertibility', '-', mass, _ ). +noun( 'convertible', 'convertibles', count, _ ). +noun( 'convexity', '-', mass, _ ). +noun( 'conveyance', 'conveyances', both, _ ). +noun( 'conveyancer', 'conveyancers', count, _ ). +noun( 'conveyer', 'conveyers', count, _ ). +noun( 'conveyer-belt', 'conveyer-belts', count, _ ). +noun( 'conveyor', 'conveyors', count, _ ). +noun( 'convict', 'convicts', count, _ ). +noun( 'conviction', 'convictions', both, _ ). +noun( 'conviviality', 'convivialities', both, _ ). +noun( 'convocation', 'convocations', both, _ ). +noun( 'convolution', 'convolutions', count, _ ). +noun( 'convolvulus', 'convolvuluses', count, _ ). +noun( 'convoy', 'convoys', both, _ ). +noun( 'convulsion', 'convulsions', count, _ ). +noun( 'cony', 'conies', count, _ ). +noun( 'coo', 'coos', count, _ ). +noun( 'cook', 'cooks', count, _ ). +noun( 'cookbook', 'cookbooks', count, _ ). +noun( 'cooker', 'cookers', count, _ ). +noun( 'cookery', '-', mass, _ ). +noun( 'cookery-book', 'cookery-books', count, _ ). +noun( 'cookhouse', 'cookhouses', count, _ ). +noun( 'cookie', 'cookies', count, _ ). +noun( 'cooking', '-', mass, _ ). +noun( 'cooky', 'cookies', count, _ ). +noun( 'cool', '-', mass, _ ). +noun( 'coolant', 'coolants', both, _ ). +noun( 'cooler', 'coolers', count, _ ). +noun( 'coolie', 'coolies', count, _ ). +noun( 'cooling-tower', 'cooling-towers', count, _ ). +noun( 'coolness', '-', mass, _ ). +noun( 'coon', 'coons', count, _ ). +noun( 'coop', 'coops', count, _ ). +noun( 'cooper', 'coopers', count, _ ). +noun( 'cooperation', '-', mass, _ ). +noun( 'cooperative', 'cooperatives', count, _ ). +noun( 'cooperator', 'cooperators', count, _ ). +noun( 'coordinate', 'coordinates', count, _ ). +noun( 'coordination', 'coordinations', both, _ ). +noun( 'coordinator', 'coordinators', count, _ ). +noun( 'coot', 'coots', count, _ ). +noun( 'cop', 'cops', count, _ ). +noun( 'cop-out', 'cop-outs', count, _ ). +noun( 'copartner', 'copartners', count, _ ). +noun( 'copartnership', 'copartnerships', count, _ ). +noun( 'cope', 'copes', count, _ ). +noun( 'copeck', 'copecks', count, _ ). +noun( 'coping', 'copings', count, _ ). +noun( 'coping-stone', 'coping-stones', count, _ ). +noun( 'copper', 'coppers', both, _ ). +noun( 'copperhead', 'copperheads', count, _ ). +noun( 'copperplate', '-', mass, _ ). +noun( 'coppersmith', 'coppersmiths', count, _ ). +noun( 'coppice', 'coppices', count, _ ). +noun( 'copra', '-', mass, _ ). +noun( 'copse', 'copses', count, _ ). +noun( 'copula', 'copulas', count, _ ). +noun( 'copulation', 'copulations', count, _ ). +noun( 'copulative', 'copulatives', count, _ ). +noun( 'copy', 'copies', both, _ ). +noun( 'copybook', 'copybooks', count, _ ). +noun( 'copycat', 'copycats', count, _ ). +noun( 'copyhold', '-', mass, _ ). +noun( 'copyholder', 'copyholders', count, _ ). +noun( 'copyist', 'copyists', count, _ ). +noun( 'copyright', 'copyrights', both, _ ). +noun( 'copywriter', 'copywriters', count, _ ). +noun( 'coquetry', 'coquetries', both, _ ). +noun( 'coquette', 'coquettes', count, _ ). +noun( 'cor anglais', 'cor anglais', count, _ ). +noun( 'coracle', 'coracles', count, _ ). +noun( 'coral', 'corals', both, _ ). +noun( 'coral-reef', 'coral-reefs', count, _ ). +noun( 'corbel', 'corbels', count, _ ). +noun( 'cord', 'cords', both, _ ). +noun( 'cordage', '-', mass, _ ). +noun( 'cordial', 'cordials', both, _ ). +noun( 'cordiality', 'cordialities', both, _ ). +noun( 'cordite', '-', mass, _ ). +noun( 'cordon', 'cordons', count, _ ). +noun( 'corduroy', '-', mass, _ ). +noun( 'core', 'cores', count, _ ). +noun( 'coreligionist', 'coreligionists', count, _ ). +noun( 'corgi', 'corgis', count, _ ). +noun( 'cork', 'corks', both, _ ). +noun( 'corkage', '-', mass, _ ). +noun( 'corker', 'corkers', count, _ ). +noun( 'corkscrew', 'corkscrews', count, _ ). +noun( 'corm', 'corms', count, _ ). +noun( 'cormorant', 'cormorants', count, _ ). +noun( 'corn', 'corns', both, _ ). +noun( 'corn-exchange', 'corn-exchanges', count, _ ). +noun( 'corncob', 'corncobs', count, _ ). +noun( 'corncrake', 'corncrakes', count, _ ). +noun( 'cornea', 'corneas', count, _ ). +noun( 'cornelian', 'cornelians', count, _ ). +noun( 'corner', 'corners', count, _ ). +noun( 'corner-kick', 'corner-kicks', count, _ ). +noun( 'cornerstone', 'cornerstones', count, _ ). +noun( 'cornet', 'cornets', count, _ ). +noun( 'cornflake', 'cornflakes', count, _ ). +noun( 'cornflour', '-', mass, _ ). +noun( 'cornflower', 'cornflowers', count, _ ). +noun( 'cornice', 'cornices', count, _ ). +noun( 'cornpone', '-', mass, _ ). +noun( 'cornstarch', '-', mass, _ ). +noun( 'cornucopia', 'cornucopias', count, _ ). +noun( 'corolla', 'corollas', count, _ ). +noun( 'corollary', 'corollaries', count, _ ). +noun( 'corona', 'coronas', count, _ ). +noun( 'coronary', 'coronaries', count, _ ). +noun( 'coronation', 'coronations', count, _ ). +noun( 'coroner', 'coroners', count, _ ). +noun( 'coronet', 'coronets', count, _ ). +noun( 'corporal', 'corporals', count, _ ). +noun( 'corporation', 'corporations', count, _ ). +noun( 'corps', '-', count, _ ). +noun( 'corps de ballet', '-', count, _ ). +noun( 'corpse', 'corpses', count, _ ). +noun( 'corpulence', '-', mass, _ ). +noun( 'corpus', 'corpora', count, _ ). +noun( 'corpuscle', 'corpuscles', count, _ ). +noun( 'corral', 'corrals', count, _ ). +noun( 'correction', 'corrections', both, _ ). +noun( 'correctitude', '-', mass, _ ). +noun( 'corrective', 'correctives', count, _ ). +noun( 'correctness', '-', mass, _ ). +noun( 'correlation', 'correlations', count, _ ). +noun( 'correlative', 'correlatives', count, _ ). +noun( 'correspondence', 'correspondences', both, _ ). +noun( 'correspondent', 'correspondents', count, _ ). +noun( 'corridor', 'corridors', count, _ ). +noun( 'corrie', 'corries', count, _ ). +noun( 'corrigendum', 'corrigenda', count, _ ). +noun( 'corroboration', '-', mass, _ ). +noun( 'corrosion', '-', mass, _ ). +noun( 'corrosive', 'corrosives', count, _ ). +noun( 'corrugation', 'corrugations', both, _ ). +noun( 'corruptibility', '-', mass, _ ). +noun( 'corruption', '-', mass, _ ). +noun( 'corruptness', '-', mass, _ ). +noun( 'corsage', 'corsages', count, _ ). +noun( 'corsair', 'corsairs', count, _ ). +noun( 'corse', 'corses', count, _ ). +noun( 'corselet', 'corselets', count, _ ). +noun( 'corset', 'corsets', count, _ ). +noun( 'corslet', 'corslets', count, _ ). +noun( 'cort`ege', 'cort`eges', count, _ ). +noun( 'cortege', 'corteges', count, _ ). +noun( 'cortex', 'cortices', count, _ ). +noun( 'cortisone', '-', mass, _ ). +noun( 'corundum', '-', mass, _ ). +noun( 'coruscation', 'coruscations', count, _ ). +noun( 'corv_ee', 'corv_ees', count, _ ). +noun( 'corvette', 'corvettes', count, _ ). +noun( 'cos', 'cos', count, _ ). +noun( 'cosh', 'coshes', count, _ ). +noun( 'cosignatory', 'cosignatories', count, _ ). +noun( 'cosine', 'cosines', count, _ ). +noun( 'cosiness', '-', mass, _ ). +noun( 'cosmetic', 'cosmetics', count, _ ). +noun( 'cosmetician', 'cosmeticians', count, _ ). +noun( 'cosmogony', 'cosmogonies', count, _ ). +noun( 'cosmonaut', 'cosmonauts', count, _ ). +noun( 'cosmopolitan', 'cosmopolitans', count, _ ). +noun( 'cosmos', '-', count, _ ). +noun( 'cost', 'costs', both, _ ). +noun( 'costermonger', 'costermongers', count, _ ). +noun( 'costing', 'costings', both, _ ). +noun( 'costliness', '-', mass, _ ). +noun( 'costume', 'costumes', both, _ ). +noun( 'costumier', 'costumiers', count, _ ). +noun( 'cosy', 'cosies', count, _ ). +noun( 'cot', 'cots', count, _ ). +noun( 'cote', 'cotes', count, _ ). +noun( 'cotenant', 'cotenants', count, _ ). +noun( 'coterie', 'coteries', count, _ ). +noun( 'cotilion', 'cotilions', count, _ ). +noun( 'cotillion', 'cotillions', count, _ ). +noun( 'cottage', 'cottages', count, _ ). +noun( 'cottar', 'cottars', count, _ ). +noun( 'cotter', 'cotters', count, _ ). +noun( 'cotton', '-', mass, _ ). +noun( 'cotton-cake', '-', mass, _ ). +noun( 'cotton-plant', 'cotton-plants', count, _ ). +noun( 'cotton-wool', '-', mass, _ ). +noun( 'cottontail', 'cottontails', count, _ ). +noun( 'cotyledon', 'cotyledons', count, _ ). +noun( 'couch', 'couches', both, _ ). +noun( 'couch-grass', '-', mass, _ ). +noun( 'couchette', 'couchettes', count, _ ). +noun( 'cougar', 'cougars', count, _ ). +noun( 'cough', 'coughs', count, _ ). +noun( 'coulter', 'coulters', count, _ ). +noun( 'council', 'councils', count, _ ). +noun( 'council-board', 'council-boards', count, _ ). +noun( 'council-chamber', 'council-chambers', count, _ ). +noun( 'councillor', 'councillors', count, _ ). +noun( 'counsel', '-', mass, _ ). +noun( 'counsellor', 'counsellors', count, _ ). +noun( 'count', 'counts', both, _ ). +noun( 'countdown', 'countdowns', count, _ ). +noun( 'countenance', 'countenances', both, _ ). +noun( 'counter', 'counters', count, _ ). +noun( 'counter-example', 'counter-examples', count, _ ). +noun( 'counter-revolution', 'counter-revolutions', both, _ ). +noun( 'counter-revolutionary', 'counter-revolutionaries', count, _ ). +noun( 'counteraction', 'counteractions', count, _ ). +noun( 'counterattack', 'counterattacks', count, _ ). +noun( 'counterattraction', 'counterattractions', count, _ ). +noun( 'counterbalance', 'counterbalances', count, _ ). +noun( 'counterblast', 'counterblasts', count, _ ). +noun( 'counterclaim', 'counterclaims', count, _ ). +noun( 'counterespionage', '-', mass, _ ). +noun( 'counterfeit', 'counterfeits', count, _ ). +noun( 'counterfeiter', 'counterfeiters', count, _ ). +noun( 'counterfoil', 'counterfoils', count, _ ). +noun( 'counterintelligence', '-', mass, _ ). +noun( 'counterirritant', 'counterirritants', count, _ ). +noun( 'countermine', 'countermines', count, _ ). +noun( 'counteroffer', 'counteroffers', count, _ ). +noun( 'counterpane', 'counterpanes', count, _ ). +noun( 'counterpart', 'counterparts', count, _ ). +noun( 'counterplot', 'counterplots', count, _ ). +noun( 'counterpoint', 'counterpoints', both, _ ). +noun( 'counterpoise', 'counterpoises', both, _ ). +noun( 'countersign', 'countersigns', count, _ ). +noun( 'countertenor', 'countertenors', count, _ ). +noun( 'countess', 'countesses', count, _ ). +noun( 'counting-house', 'counting-houses', count, _ ). +noun( 'country', 'countries', both, _ ). +noun( 'country-house', 'country-houses', count, _ ). +noun( 'country-seat', 'country-seats', count, _ ). +noun( 'countryman', 'countrymen', count, _ ). +noun( 'countryside', '-', mass, _ ). +noun( 'countrywoman', 'countrywomen', count, _ ). +noun( 'county', 'counties', count, _ ). +noun( 'coup', 'coups', count, _ ). +noun( 'coup d\'etat', 'coups d\'etat', count, _ ). +noun( 'coup de grace', '-', count, _ ). +noun( 'coup_e', 'coup_es', count, _ ). +noun( 'couple', 'couples', count, _ ). +noun( 'couplet', 'couplets', count, _ ). +noun( 'coupling', 'couplings', both, _ ). +noun( 'coupon', 'coupons', count, _ ). +noun( 'courage', '-', mass, _ ). +noun( 'courgette', 'courgettes', count, _ ). +noun( 'courier', 'couriers', count, _ ). +noun( 'course', 'courses', both, _ ). +noun( 'courser', 'coursers', count, _ ). +noun( 'coursing', 'coursings', count, _ ). +noun( 'court', 'courts', both, _ ). +noun( 'court-card', 'court-cards', count, _ ). +noun( 'court-martial', 'courts-martial', count, _ ). +noun( 'courtesan', 'courtesans', count, _ ). +noun( 'courtesy', 'courtesies', both, _ ). +noun( 'courtier', 'courtiers', count, _ ). +noun( 'courtliness', '-', mass, _ ). +noun( 'courtroom', 'courtrooms', count, _ ). +noun( 'courtship', 'courtships', both, _ ). +noun( 'courtyard', 'courtyards', count, _ ). +noun( 'cousin', 'cousins', count, _ ). +noun( 'cove', 'coves', count, _ ). +noun( 'coven', 'covens', count, _ ). +noun( 'covenant', 'covenants', count, _ ). +noun( 'cover', 'covers', both, _ ). +noun( 'cover-up', 'cover-ups', count, _ ). +noun( 'coverage', '-', mass, _ ). +noun( 'covering', 'coverings', count, _ ). +noun( 'coverlet', 'coverlets', count, _ ). +noun( 'covert', 'coverts', count, _ ). +noun( 'covetousness', '-', mass, _ ). +noun( 'covey', 'coveys', count, _ ). +noun( 'cow', 'cows', count, _ ). +noun( 'coward', 'cowards', count, _ ). +noun( 'cowardice', '-', mass, _ ). +noun( 'cowbell', 'cowbells', count, _ ). +noun( 'cowboy', 'cowboys', count, _ ). +noun( 'cowcatcher', 'cowcatchers', count, _ ). +noun( 'cowhand', 'cowhands', count, _ ). +noun( 'cowherd', 'cowherds', count, _ ). +noun( 'cowhide', 'cowhides', both, _ ). +noun( 'cowhouse', 'cowhouses', count, _ ). +noun( 'cowl', 'cowls', count, _ ). +noun( 'cowling', 'cowlings', count, _ ). +noun( 'cowman', 'cowmen', count, _ ). +noun( 'cowpox', 'cowpoxes', count, _ ). +noun( 'cowrie', 'cowries', count, _ ). +noun( 'cowshed', 'cowsheds', count, _ ). +noun( 'cowskin', 'cowskins', count, _ ). +noun( 'cowslip', 'cowslips', count, _ ). +noun( 'cox', 'coxes', count, _ ). +noun( 'coxcomb', 'coxcombs', count, _ ). +noun( 'coxswain', 'coxswains', count, _ ). +noun( 'coyness', '-', mass, _ ). +noun( 'coyote', 'coyotes', count, _ ). +noun( 'coypu', 'coypus', count, _ ). +noun( 'cp', '-', proper, _ ). +noun( 'cr^epe', '-', mass, _ ). +noun( 'cr`eche', 'cr`eches', count, _ ). +noun( 'cr`eme de menthe', '-', mass, _ ). +noun( 'crab', 'crabs', both, _ ). +noun( 'crab-apple', 'crab-apples', count, _ ). +noun( 'crack', 'cracks', count, _ ). +noun( 'crack-down', 'crack-downs', count, _ ). +noun( 'crack-up', 'crack-ups', count, _ ). +noun( 'cracker', 'crackers', count, _ ). +noun( 'crackle', '-', mass, _ ). +noun( 'crackle-china', '-', mass, _ ). +noun( 'crackleware', '-', mass, _ ). +noun( 'crackling', '-', mass, _ ). +noun( 'crackpot', 'crackpots', count, _ ). +noun( 'cracksman', 'cracksmen', count, _ ). +noun( 'cradle', 'cradles', count, _ ). +noun( 'craft', 'crafts', both, _ ). +noun( 'craftiness', '-', mass, _ ). +noun( 'craftsman', 'craftsmen', count, _ ). +noun( 'craftsmanship', '-', mass, _ ). +noun( 'crag', 'crags', count, _ ). +noun( 'cragsman', 'cragsmen', count, _ ). +noun( 'crake', 'crakes', count, _ ). +noun( 'crammer', 'crammers', count, _ ). +noun( 'cramp', 'cramps', both, _ ). +noun( 'cramp-iron', 'cramp-irons', count, _ ). +noun( 'crampon', 'crampons', count, _ ). +noun( 'cranberry', 'cranberries', count, _ ). +noun( 'crane', 'cranes', count, _ ). +noun( 'crane-fly', 'crane-flies', count, _ ). +noun( 'cranium', 'craniums', count, _ ). +noun( 'crank', 'cranks', count, _ ). +noun( 'crankshaft', 'crankshafts', count, _ ). +noun( 'cranny', 'crannies', count, _ ). +noun( 'crap', 'craps', both, _ ). +noun( 'crap-shooting', 'crap-shootings', count, _ ). +noun( 'crape', '-', mass, _ ). +noun( 'craps', 'craps', mass, _ ). +noun( 'crash', 'crashes', both, _ ). +noun( 'crash-dive', 'crash-dives', count, _ ). +noun( 'crash-helmet', 'crash-helmets', count, _ ). +noun( 'crash-landing', 'crash-landings', count, _ ). +noun( 'crate', 'crates', count, _ ). +noun( 'crater', 'craters', count, _ ). +noun( 'cravat', 'cravats', count, _ ). +noun( 'craven', 'cravens', count, _ ). +noun( 'craving', 'cravings', count, _ ). +noun( 'crawfish', 'crawfishes', count, _ ). +noun( 'crawl', '-', count, _ ). +noun( 'crawler', 'crawlers', count, _ ). +noun( 'crayfish', 'crayfishes', count, _ ). +noun( 'crayon', 'crayons', count, _ ). +noun( 'craze', 'crazes', count, _ ). +noun( 'craziness', '-', mass, _ ). +noun( 'creak', 'creaks', count, _ ). +noun( 'cream', 'creams', both, _ ). +noun( 'creamery', 'creameries', count, _ ). +noun( 'crease', 'creases', count, _ ). +noun( 'creation', 'creations', both, _ ). +noun( 'creativeness', '-', mass, _ ). +noun( 'creator', 'creators', count, _ ). +noun( 'creature', 'creatures', count, _ ). +noun( 'credence', '-', mass, _ ). +noun( 'credibility', '-', mass, _ ). +noun( 'credit', 'credits', both, _ ). +noun( 'credit-side', 'credit-sides', count, _ ). +noun( 'credit-worthiness', '-', mass, _ ). +noun( 'creditor', 'creditors', count, _ ). +noun( 'credo', 'credos', count, _ ). +noun( 'credulity', 'credulities', both, _ ). +noun( 'creed', 'creeds', count, _ ). +noun( 'creek', 'creeks', count, _ ). +noun( 'creel', 'creels', count, _ ). +noun( 'creep', 'creeps', count, _ ). +noun( 'creeper', 'creepers', count, _ ). +noun( 'cremation', 'cremations', both, _ ). +noun( 'crematorium', 'crematoriums', count, _ ). +noun( 'crematory', 'crematories', count, _ ). +noun( 'creosote', '-', mass, _ ). +noun( 'crepe', '-', mass, _ ). +noun( 'crepitation', 'crepitations', count, _ ). +noun( 'crescendo', 'crescendos', count, _ ). +noun( 'crescent', 'crescents', count, _ ). +noun( 'cress', '-', mass, _ ). +noun( 'crest', 'crests', count, _ ). +noun( 'cretin', 'cretins', count, _ ). +noun( 'cretonne', '-', mass, _ ). +noun( 'crevasse', 'crevasses', count, _ ). +noun( 'crevice', 'crevices', count, _ ). +noun( 'crew', 'crews', count, _ ). +noun( 'crew-cut', 'crew-cuts', count, _ ). +noun( 'crew-neck', 'crew-necks', count, _ ). +noun( 'crib', 'cribs', count, _ ). +noun( 'cribbage', '-', mass, _ ). +noun( 'cribbage-board', 'cribbage-boards', count, _ ). +noun( 'crick', 'cricks', count, _ ). +noun( 'cricket', 'crickets', both, _ ). +noun( 'cricketer', 'cricketers', count, _ ). +noun( 'crier', 'criers', count, _ ). +noun( 'crime', 'crimes', both, _ ). +noun( 'criminal', 'criminals', count, _ ). +noun( 'criminology', '-', mass, _ ). +noun( 'crimson', 'crimsons', both, _ ). +noun( 'crinkle', 'crinkles', count, _ ). +noun( 'crinoline', 'crinolines', both, _ ). +noun( 'cripple', 'cripples', count, _ ). +noun( 'crisis', 'crises', count, _ ). +noun( 'crisp', 'crisps', count, _ ). +noun( 'crispness', '-', mass, _ ). +noun( 'criterion', 'criterions', count, _ ). +noun( 'critic', 'critics', count, _ ). +noun( 'criticism', 'criticisms', both, _ ). +noun( 'critique', 'critiques', count, _ ). +noun( 'croak', 'croaks', count, _ ). +noun( 'crochet', '-', mass, _ ). +noun( 'crochet-hook', 'crochet-hooks', count, _ ). +noun( 'crock', 'crocks', count, _ ). +noun( 'crockery', '-', mass, _ ). +noun( 'crocodile', 'crocodiles', count, _ ). +noun( 'crocus', 'crocuses', count, _ ). +noun( 'croft', 'crofts', count, _ ). +noun( 'crofter', 'crofters', count, _ ). +noun( 'cromlech', 'cromlechs', count, _ ). +noun( 'crone', 'crones', count, _ ). +noun( 'crony', 'cronies', count, _ ). +noun( 'crook', 'crooks', count, _ ). +noun( 'crookedness', '-', mass, _ ). +noun( 'crooner', 'crooners', count, _ ). +noun( 'crop', 'crops', count, _ ). +noun( 'crop-dusting', '-', mass, _ ). +noun( 'cropper', 'croppers', count, _ ). +noun( 'croquet', '-', mass, _ ). +noun( 'croquette', 'croquettes', count, _ ). +noun( 'crore', 'crores', count, _ ). +noun( 'crosier', 'crosiers', count, _ ). +noun( 'cross', 'crosses', count, _ ). +noun( 'cross-bench', 'cross-benches', count, _ ). +noun( 'cross-bencher', 'cross-benchers', count, _ ). +noun( 'cross-division', 'cross-divisions', both, _ ). +noun( 'cross-examination', 'cross-examinations', count, _ ). +noun( 'cross-examiner', 'cross-examiners', count, _ ). +noun( 'cross-fertilization', 'cross-fertilizations', count, _ ). +noun( 'cross-heading', 'cross-headings', count, _ ). +noun( 'cross-index', 'cross-indexes', count, _ ). +noun( 'cross-reference', 'cross-references', count, _ ). +noun( 'cross-section', 'cross-sections', count, _ ). +noun( 'cross-stitch', 'cross-stitches', both, _ ). +noun( 'crossbar', 'crossbars', count, _ ). +noun( 'crossbeam', 'crossbeams', count, _ ). +noun( 'crossbow', 'crossbows', count, _ ). +noun( 'crossbreed', 'crossbreeds', count, _ ). +noun( 'crosscheck', 'crosschecks', count, _ ). +noun( 'crosscurrent', 'crosscurrents', count, _ ). +noun( 'crosscut', 'crosscuts', count, _ ). +noun( 'crosse', 'crosses', count, _ ). +noun( 'crossfire', 'crossfires', both, _ ). +noun( 'crossing', 'crossings', both, _ ). +noun( 'crossness', '-', mass, _ ). +noun( 'crosspatch', 'crosspatches', count, _ ). +noun( 'crosspiece', 'crosspieces', count, _ ). +noun( 'crossroad', 'crossroads', count, _ ). +noun( 'crosstalk', '-', mass, _ ). +noun( 'crosswalk', 'crosswalks', count, _ ). +noun( 'crosswind', 'crosswinds', count, _ ). +noun( 'crossword', 'crosswords', count, _ ). +noun( 'crotch', 'crotches', count, _ ). +noun( 'crotchet', 'crotchets', count, _ ). +noun( 'crouch', 'crouches', count, _ ). +noun( 'croup', 'croups', both, _ ). +noun( 'croupier', 'croupiers', count, _ ). +noun( 'crow', 'crows', count, _ ). +noun( 'crow\'s-nest', 'crow\'s-nests', count, _ ). +noun( 'crowbar', 'crowbars', count, _ ). +noun( 'crowd', 'crowds', count, _ ). +noun( 'crown', 'crowns', count, _ ). +noun( 'crown-land', 'crown-lands', count, _ ). +noun( 'crozier', 'croziers', count, _ ). +noun( 'crucible', 'crucibles', count, _ ). +noun( 'crucifix', 'crucifixes', count, _ ). +noun( 'crucifixion', 'crucifixions', both, _ ). +noun( 'crudeness', '-', mass, _ ). +noun( 'crudity', 'crudities', both, _ ). +noun( 'cruelty', 'cruelties', both, _ ). +noun( 'cruet', 'cruets', count, _ ). +noun( 'cruet-stand', 'cruet-stands', count, _ ). +noun( 'cruise', 'cruises', count, _ ). +noun( 'cruiser', 'cruisers', count, _ ). +noun( 'crumb', 'crumbs', both, _ ). +noun( 'crumpet', 'crumpets', count, _ ). +noun( 'crunch', 'crunches', count, _ ). +noun( 'crupper', 'cruppers', count, _ ). +noun( 'crusade', 'crusades', count, _ ). +noun( 'crusader', 'crusaders', count, _ ). +noun( 'cruse', 'cruses', count, _ ). +noun( 'crush', '-', mass, _ ). +noun( 'crust', 'crusts', both, _ ). +noun( 'crustacean', 'crustaceans', count, _ ). +noun( 'crutch', 'crutches', count, _ ). +noun( 'crux', 'cruxes', count, _ ). +noun( 'cruzeiro', 'cruzeiros', count, _ ). +noun( 'cry', 'cries', count, _ ). +noun( 'crybaby', 'crybabies', count, _ ). +noun( 'crypt', 'crypts', count, _ ). +noun( 'cryptogram', 'cryptograms', count, _ ). +noun( 'crystal', 'crystals', both, _ ). +noun( 'crystal-gazing', '-', mass, _ ). +noun( 'crystallization', 'crystallizations', both, _ ). +noun( 'crystallography', '-', mass, _ ). +noun( 'cub', 'cubs', count, _ ). +noun( 'cubbyhole', 'cubbyholes', count, _ ). +noun( 'cube', 'cubes', count, _ ). +noun( 'cubicle', 'cubicles', count, _ ). +noun( 'cubism', '-', mass, _ ). +noun( 'cubist', 'cubists', count, _ ). +noun( 'cubit', 'cubits', count, _ ). +noun( 'cuckold', 'cuckolds', count, _ ). +noun( 'cuckoo', 'cuckoos', count, _ ). +noun( 'cuckoo-clock', 'cuckoo-clocks', count, _ ). +noun( 'cucumber', 'cucumbers', both, _ ). +noun( 'cud', '-', mass, _ ). +noun( 'cuddle', 'cuddles', count, _ ). +noun( 'cudgel', 'cudgels', count, _ ). +noun( 'cue', 'cues', count, _ ). +noun( 'cuff', 'cuffs', count, _ ). +noun( 'cuirass', 'cuirasses', count, _ ). +noun( 'cuirassier', 'cuirassiers', count, _ ). +noun( 'cuisine', '-', mass, _ ). +noun( 'cul-de-sac', 'cul-de-sacs', count, _ ). +noun( 'cull', 'culls', count, _ ). +noun( 'cullender', 'cullenders', count, _ ). +noun( 'culmination', 'culminations', count, _ ). +noun( 'culpability', '-', mass, _ ). +noun( 'culprit', 'culprits', count, _ ). +noun( 'cult', 'cults', count, _ ). +noun( 'cultivation', '-', mass, _ ). +noun( 'cultivator', 'cultivators', count, _ ). +noun( 'culture', 'cultures', both, _ ). +noun( 'culvert', 'culverts', count, _ ). +noun( 'cummerbund', 'cummerbunds', count, _ ). +noun( 'cumulus', 'cumuli', count, _ ). +noun( 'cunning', '-', mass, _ ). +noun( 'cunt', 'cunts', count, _ ). +noun( 'cup', 'cups', count, _ ). +noun( 'cup-bearer', 'cup-bearers', count, _ ). +noun( 'cup-final', 'cup-finals', count, _ ). +noun( 'cup-tie', 'cup-ties', count, _ ). +noun( 'cupboard', 'cupboards', count, _ ). +noun( 'cupboard-love', '-', mass, _ ). +noun( 'cupful', 'cupfuls', count, _ ). +noun( 'cupidity', '-', mass, _ ). +noun( 'cupola', 'cupolas', count, _ ). +noun( 'cuppa', 'cuppas', count, _ ). +noun( 'cupping', '-', mass, _ ). +noun( 'cupro-nickel', '-', mass, _ ). +noun( 'cur', 'curs', count, _ ). +noun( 'cur_e', 'cur_es', count, _ ). +noun( 'cura<cao', '-', mass, _ ). +noun( 'cura<coa', '-', mass, _ ). +noun( 'curability', '-', mass, _ ). +noun( 'curacy', 'curacies', count, _ ). +noun( 'curate', 'curates', count, _ ). +noun( 'curator', 'curators', count, _ ). +noun( 'curb', 'curbs', count, _ ). +noun( 'curd', 'curds', both, _ ). +noun( 'cure', 'cures', count, _ ). +noun( 'cure-all', 'cure-alls', count, _ ). +noun( 'curfew', 'curfews', count, _ ). +noun( 'curio', 'curios', count, _ ). +noun( 'curiosity', 'curiosities', both, _ ). +noun( 'curl', 'curls', both, _ ). +noun( 'curler', 'curlers', count, _ ). +noun( 'curlew', 'curlews', count, _ ). +noun( 'curling', '-', mass, _ ). +noun( 'curmudgeon', 'curmudgeons', count, _ ). +noun( 'currant', 'currants', count, _ ). +noun( 'currency', 'currencies', both, _ ). +noun( 'current', 'currents', count, _ ). +noun( 'curriculum', 'curriculums', count, _ ). +noun( 'curriculum vitae', '-', count, _ ). +noun( 'curry', 'curries', both, _ ). +noun( 'curry-powder', 'curry-powders', count, _ ). +noun( 'curse', 'curses', count, _ ). +noun( 'curtailment', 'curtailments', both, _ ). +noun( 'curtain', 'curtains', count, _ ). +noun( 'curtain-call', 'curtain-calls', count, _ ). +noun( 'curtain-lecture', 'curtain-lectures', count, _ ). +noun( 'curtain-raiser', 'curtain-raisers', count, _ ). +noun( 'curtness', '-', mass, _ ). +noun( 'curtsey', 'curtseys', count, _ ). +noun( 'curtsy', 'curtsies', count, _ ). +noun( 'curvature', '-', mass, _ ). +noun( 'curve', 'curves', count, _ ). +noun( 'cushion', 'cushions', count, _ ). +noun( 'cusp', 'cusps', count, _ ). +noun( 'cuspidor', 'cuspidors', count, _ ). +noun( 'cuss', 'cusses', count, _ ). +noun( 'cussedness', '-', mass, _ ). +noun( 'custard', 'custards', both, _ ). +noun( 'custodian', 'custodians', count, _ ). +noun( 'custody', '-', mass, _ ). +noun( 'custom', 'customs', both, _ ). +noun( 'customer', 'customers', count, _ ). +noun( 'cut', 'cuts', count, _ ). +noun( 'cut-out', 'cut-outs', count, _ ). +noun( 'cut-throat', 'cut-throats', count, _ ). +noun( 'cutback', 'cutbacks', count, _ ). +noun( 'cuteness', '-', mass, _ ). +noun( 'cuticle', 'cuticles', count, _ ). +noun( 'cutlass', 'cutlasses', count, _ ). +noun( 'cutler', 'cutlers', count, _ ). +noun( 'cutlery', '-', mass, _ ). +noun( 'cutlet', 'cutlets', count, _ ). +noun( 'cutpurse', 'cutpurses', count, _ ). +noun( 'cutter', 'cutters', count, _ ). +noun( 'cutting', 'cuttings', both, _ ). +noun( 'cutting-room', 'cutting-rooms', count, _ ). +noun( 'cuttlefish', 'cuttlefishes', both, _ ). +noun( 'cutworm', 'cutworms', count, _ ). +noun( 'cwt', 'cwt', count, _ ). +noun( 'cyanide', '-', mass, _ ). +noun( 'cybernetics', 'cybernetics', mass, _ ). +noun( 'cyclamen', 'cyclamens', count, _ ). +noun( 'cycle', 'cycles', count, _ ). +noun( 'cyclist', 'cyclists', count, _ ). +noun( 'cyclone', 'cyclones', count, _ ). +noun( 'cyclopaedia', 'cyclopaedias', count, _ ). +noun( 'cyclostyle', 'cyclostyles', count, _ ). +noun( 'cyclotron', 'cyclotrons', count, _ ). +noun( 'cyder', 'cyders', both, _ ). +noun( 'cygnet', 'cygnets', count, _ ). +noun( 'cylinder', 'cylinders', count, _ ). +noun( 'cymbal', 'cymbals', count, _ ). +noun( 'cynic', 'cynics', count, _ ). +noun( 'cynicism', 'cynicisms', both, _ ). +noun( 'cynosure', 'cynosures', count, _ ). +noun( 'cypher', 'cyphers', count, _ ). +noun( 'cypress', 'cypresses', count, _ ). +noun( 'cyst', 'cysts', count, _ ). +noun( 'czar', 'czars', count, _ ). +noun( 'czarina', 'czarinas', count, _ ). +noun( 'd', '-', count, _ ). +noun( 'd_eb^acle', 'd_eb^acles', count, _ ). +noun( 'd_ebris', '-', mass, _ ). +noun( 'd_ebut', 'd_ebuts', count, _ ). +noun( 'd_ebutante', 'd_ebutantes', count, _ ). +noun( 'd_ecor', '-', count, _ ). +noun( 'd_emarche', 'd_emarches', count, _ ). +noun( 'd_enouement', 'd_enouements', count, _ ). +noun( 'd_eshabill_e', '-', mass, _ ). +noun( 'd_etente', '-', mass, _ ). +noun( 'dab', 'dabs', count, _ ). +noun( 'dabbler', 'dabblers', count, _ ). +noun( 'dace', 'dace', count, _ ). +noun( 'dacha', 'dachas', count, _ ). +noun( 'dachshund', 'dachshunds', count, _ ). +noun( 'dacoit', 'dacoits', count, _ ). +noun( 'dacoity', 'dacoities', count, _ ). +noun( 'dactyl', 'dactyls', count, _ ). +noun( 'dad', 'dads', count, _ ). +noun( 'daddy', 'daddies', count, _ ). +noun( 'daddy-longlegs', 'daddy-longlegs', count, _ ). +noun( 'dado', 'dados', count, _ ). +noun( 'daemon', 'daemons', count, _ ). +noun( 'daffodil', 'daffodils', count, _ ). +noun( 'dagger', 'daggers', count, _ ). +noun( 'dago', 'dagos', count, _ ). +noun( 'daguerreotype', 'daguerreotypes', count, _ ). +noun( 'dahlia', 'dahlias', count, _ ). +noun( 'daily', 'dailies', count, _ ). +noun( 'daintiness', '-', mass, _ ). +noun( 'dainty', 'dainties', count, _ ). +noun( 'dairy', 'dairies', count, _ ). +noun( 'dairy-farm', 'dairy-farms', count, _ ). +noun( 'dairy-farming', '-', mass, _ ). +noun( 'dairying', '-', mass, _ ). +noun( 'dairymaid', 'dairymaids', count, _ ). +noun( 'dairyman', 'dairymen', count, _ ). +noun( 'dais', 'daises', count, _ ). +noun( 'daisy', 'daisies', count, _ ). +noun( 'dale', 'dales', count, _ ). +noun( 'dalesman', 'dalesmen', count, _ ). +noun( 'dalliance', '-', mass, _ ). +noun( 'dalmatian', 'dalmatians', count, _ ). +noun( 'dam', 'dams', count, _ ). +noun( 'damage', 'damages', both, _ ). +noun( 'damask', '-', mass, _ ). +noun( 'dame', 'dames', count, _ ). +noun( 'damn', '-', count, _ ). +noun( 'damnation', '-', mass, _ ). +noun( 'damp', '-', mass, _ ). +noun( 'damper', 'dampers', count, _ ). +noun( 'dampness', '-', mass, _ ). +noun( 'damsel', 'damsels', count, _ ). +noun( 'damson', 'damsons', count, _ ). +noun( 'dance', 'dances', count, _ ). +noun( 'dance-band', 'dance-bands', count, _ ). +noun( 'dance-hall', 'dance-halls', count, _ ). +noun( 'dance-orchestra', 'dance-orchestras', count, _ ). +noun( 'dancer', 'dancers', count, _ ). +noun( 'dancing', '-', mass, _ ). +noun( 'dandelion', 'dandelions', count, _ ). +noun( 'dander', '-', count, _ ). +noun( 'dandruff', '-', mass, _ ). +noun( 'dandy', 'dandies', count, _ ). +noun( 'danger', 'dangers', both, _ ). +noun( 'danse macabre', '-', count, _ ). +noun( 'daphne', 'daphnes', count, _ ). +noun( 'dapple-grey', 'dapple-greys', count, _ ). +noun( 'dare', 'dares', count, _ ). +noun( 'daredevil', 'daredevils', count, _ ). +noun( 'daring', '-', mass, _ ). +noun( 'dark', '-', mass, _ ). +noun( 'darkness', '-', mass, _ ). +noun( 'darkroom', 'darkrooms', count, _ ). +noun( 'darling', 'darlings', count, _ ). +noun( 'darn', 'darns', count, _ ). +noun( 'darning', '-', mass, _ ). +noun( 'darning-needle', 'darning-needles', count, _ ). +noun( 'dart', 'darts', count, _ ). +noun( 'dash', 'dashes', both, _ ). +noun( 'dashboard', 'dashboards', count, _ ). +noun( 'dastard', 'dastards', count, _ ). +noun( 'data', 'data', both, _ ). +noun( 'date', 'dates', both, _ ). +noun( 'dateline', 'datelines', count, _ ). +noun( 'dative', 'datives', count, _ ). +noun( 'datum', 'data', count, _ ). +noun( 'daub', 'daubs', both, _ ). +noun( 'dauber', 'daubers', count, _ ). +noun( 'daughter', 'daughters', count, _ ). +noun( 'daughter-in-law', 'daughters-in-law', count, _ ). +noun( 'dauphin', 'dauphins', count, _ ). +noun( 'davenport', 'davenports', count, _ ). +noun( 'davit', 'davits', count, _ ). +noun( 'daw', 'daws', count, _ ). +noun( 'dawdler', 'dawdlers', count, _ ). +noun( 'dawn', 'dawns', both, _ ). +noun( 'day', 'days', both, _ ). +noun( 'day-boarder', 'day-boarders', count, _ ). +noun( 'day-labourer', 'day-labourers', count, _ ). +noun( 'day-return', 'day-returns', count, _ ). +noun( 'day-school', 'day-schools', count, _ ). +noun( 'daybook', 'daybooks', count, _ ). +noun( 'dayboy', 'dayboys', count, _ ). +noun( 'daybreak', 'daybreaks', count, _ ). +noun( 'daydream', 'daydreams', count, _ ). +noun( 'daygirl', 'daygirls', count, _ ). +noun( 'daylight', '-', mass, _ ). +noun( 'daylight-saving', '-', mass, _ ). +noun( 'dayspring', 'daysprings', count, _ ). +noun( 'daytime', 'daytimes', count, _ ). +noun( 'daze', '-', count, _ ). +noun( 'dazzle', '-', mass, _ ). +noun( 'de-escalation', 'de-escalations', count, _ ). +noun( 'deacon', 'deacons', count, _ ). +noun( 'deaconess', 'deaconesses', count, _ ). +noun( 'deadline', 'deadlines', count, _ ). +noun( 'deadlock', 'deadlocks', both, _ ). +noun( 'deaf mute', 'deaf mutes', count, _ ). +noun( 'deaf-aid', 'deaf-aids', count, _ ). +noun( 'deafness', '-', mass, _ ). +noun( 'deal', 'deals', count, _ ). +noun( 'dealer', 'dealers', count, _ ). +noun( 'dealing', 'dealings', both, _ ). +noun( 'dean', 'deans', count, _ ). +noun( 'deanery', 'deaneries', count, _ ). +noun( 'dear', 'dears', count, _ ). +noun( 'dearest', '-', count, _ ). +noun( 'dearie', 'dearies', count, _ ). +noun( 'dearness', '-', mass, _ ). +noun( 'dearth', 'dearths', count, _ ). +noun( 'deary', 'dearies', count, _ ). +noun( 'death', 'deaths', both, _ ). +noun( 'death-mask', 'death-masks', count, _ ). +noun( 'death-rate', 'death-rates', count, _ ). +noun( 'death-roll', 'death-rolls', count, _ ). +noun( 'death-warrant', 'death-warrants', count, _ ). +noun( 'deathbed', 'deathbeds', count, _ ). +noun( 'deathblow', 'deathblows', count, _ ). +noun( 'deathtrap', 'deathtraps', count, _ ). +noun( 'deb', 'debs', count, _ ). +noun( 'debarkation', 'debarkations', count, _ ). +noun( 'debasement', 'debasements', count, _ ). +noun( 'debate', 'debates', both, _ ). +noun( 'debater', 'debaters', count, _ ). +noun( 'debauch', 'debauches', count, _ ). +noun( 'debauchee', 'debauchees', count, _ ). +noun( 'debauchery', 'debaucheries', both, _ ). +noun( 'debenture', 'debentures', count, _ ). +noun( 'debility', '-', mass, _ ). +noun( 'debit', 'debits', count, _ ). +noun( 'debit-side', 'debit-sides', count, _ ). +noun( 'debris', '-', mass, _ ). +noun( 'debt', 'debts', both, _ ). +noun( 'debtor', 'debtors', count, _ ). +noun( 'debut', 'debuts', count, _ ). +noun( 'debutante', 'debutantes', count, _ ). +noun( 'decade', 'decades', count, _ ). +noun( 'decadence', '-', mass, _ ). +noun( 'decadent', 'decadents', count, _ ). +noun( 'decanter', 'decanters', count, _ ). +noun( 'decapitation', 'decapitations', count, _ ). +noun( 'decasyllable', 'decasyllables', count, _ ). +noun( 'decay', '-', mass, _ ). +noun( 'decease', '-', mass, _ ). +noun( 'deceit', 'deceits', both, _ ). +noun( 'deceitfulness', '-', mass, _ ). +noun( 'deceiver', 'deceivers', count, _ ). +noun( 'decency', 'decencies', both, _ ). +noun( 'decentralization', '-', mass, _ ). +noun( 'deception', 'deceptions', both, _ ). +noun( 'decibel', 'decibels', count, _ ). +noun( 'decimalization', '-', mass, _ ). +noun( 'decision', 'decisions', both, _ ). +noun( 'deck', 'decks', count, _ ). +noun( 'decker', 'deckers', count, _ ). +noun( 'declamation', 'declamations', both, _ ). +noun( 'declaration', 'declarations', both, _ ). +noun( 'declassification', 'declassifications', both, _ ). +noun( 'declension', 'declensions', both, _ ). +noun( 'declination', 'declinations', count, _ ). +noun( 'decline', 'declines', count, _ ). +noun( 'declivity', 'declivities', count, _ ). +noun( 'decoder', 'decoders', count, _ ). +noun( 'decolonization', '-', mass, _ ). +noun( 'decomposition', 'decompositions', both, _ ). +noun( 'decompression', 'decompressions', count, _ ). +noun( 'decontamination', '-', mass, _ ). +noun( 'decoration', 'decorations', both, _ ). +noun( 'decorator', 'decorators', count, _ ). +noun( 'decorum', '-', mass, _ ). +noun( 'decoy', 'decoys', count, _ ). +noun( 'decrease', 'decreases', both, _ ). +noun( 'decree', 'decrees', count, _ ). +noun( 'decree nisi', '-', count, _ ). +noun( 'decrepitude', '-', mass, _ ). +noun( 'dedication', 'dedications', both, _ ). +noun( 'deduction', 'deductions', both, _ ). +noun( 'deed', 'deeds', count, _ ). +noun( 'deed-box', 'deed-boxes', count, _ ). +noun( 'deedpoll', 'deedpolls', both, _ ). +noun( 'deep', 'deeps', count, _ ). +noun( 'deep-freeze', 'deep-freezes', count, _ ). +noun( 'deepness', '-', mass, _ ). +noun( 'deer', 'deer', count, _ ). +noun( 'deerskin', 'deerskins', count, _ ). +noun( 'deerstalker', 'deerstalkers', count, _ ). +noun( 'deerstalking', '-', mass, _ ). +noun( 'defacement', 'defacements', both, _ ). +noun( 'defalcation', 'defalcations', both, _ ). +noun( 'defamation', '-', mass, _ ). +noun( 'default', '-', mass, _ ). +noun( 'defaulter', 'defaulters', count, _ ). +noun( 'defeat', 'defeats', both, _ ). +noun( 'defeatism', '-', mass, _ ). +noun( 'defeatist', 'defeatists', count, _ ). +noun( 'defecation', 'defecations', both, _ ). +noun( 'defect', 'defects', count, _ ). +noun( 'defection', 'defections', both, _ ). +noun( 'defectiveness', '-', mass, _ ). +noun( 'defector', 'defectors', count, _ ). +noun( 'defence', 'defences', both, _ ). +noun( 'defencelessness', '-', mass, _ ). +noun( 'defendant', 'defendants', count, _ ). +noun( 'defender', 'defenders', count, _ ). +noun( 'defensive', '-', count, _ ). +noun( 'deference', '-', mass, _ ). +noun( 'deferment', 'deferments', count, _ ). +noun( 'defiance', '-', mass, _ ). +noun( 'deficiency', 'deficiencies', both, _ ). +noun( 'deficit', 'deficits', count, _ ). +noun( 'defile', 'defiles', count, _ ). +noun( 'defilement', '-', mass, _ ). +noun( 'definition', 'definitions', both, _ ). +noun( 'deflation', '-', mass, _ ). +noun( 'deflection', 'deflections', count, _ ). +noun( 'defoliant', 'defoliants', count, _ ). +noun( 'defoliation', 'defoliations', count, _ ). +noun( 'deformity', 'deformities', both, _ ). +noun( 'defrayal', 'defrayals', count, _ ). +noun( 'defrayment', 'defrayments', count, _ ). +noun( 'defroster', 'defrosters', count, _ ). +noun( 'deftness', '-', mass, _ ). +noun( 'degeneracy', '-', mass, _ ). +noun( 'degenerate', 'degenerates', count, _ ). +noun( 'degeneration', '-', mass, _ ). +noun( 'degradation', 'degradations', both, _ ). +noun( 'degree', 'degrees', both, _ ). +noun( 'deification', '-', mass, _ ). +noun( 'deism', '-', mass, _ ). +noun( 'deist', 'deists', count, _ ). +noun( 'deity', 'deities', both, _ ). +noun( 'dejection', '-', mass, _ ). +noun( 'dekko', '-', count, _ ). +noun( 'delay', 'delays', both, _ ). +noun( 'delayed-action', '-', mass, _ ). +noun( 'delectation', '-', mass, _ ). +noun( 'delegacy', 'delegacies', count, _ ). +noun( 'delegate', 'delegates', count, _ ). +noun( 'delegation', 'delegations', both, _ ). +noun( 'deletion', 'deletions', both, _ ). +noun( 'delf', '-', mass, _ ). +noun( 'delft', '-', mass, _ ). +noun( 'deliberation', 'deliberations', both, _ ). +noun( 'delicacy', 'delicacies', both, _ ). +noun( 'delicatessen', 'delicatessens', both, _ ). +noun( 'delight', 'delights', both, _ ). +noun( 'delimitation', 'delimitations', both, _ ). +noun( 'delineation', 'delineations', both, _ ). +noun( 'delinquency', 'delinquencies', both, _ ). +noun( 'delinquent', 'delinquents', count, _ ). +noun( 'delirium', '-', mass, _ ). +noun( 'delirium tremens', '-', count, _ ). +noun( 'deliverance', 'deliverances', both, _ ). +noun( 'deliverer', 'deliverers', count, _ ). +noun( 'delivery', 'deliveries', both, _ ). +noun( 'dell', 'dells', count, _ ). +noun( 'delphinium', 'delphiniums', count, _ ). +noun( 'delta', 'deltas', count, _ ). +noun( 'deluge', 'deluges', count, _ ). +noun( 'delusion', 'delusions', both, _ ). +noun( 'demagnetization', '-', mass, _ ). +noun( 'demagogue', 'demagogues', count, _ ). +noun( 'demagogy', '-', mass, _ ). +noun( 'demand', 'demands', both, _ ). +noun( 'demarcation', '-', mass, _ ). +noun( 'demeanour', '-', mass, _ ). +noun( 'demerara', '-', mass, _ ). +noun( 'demerit', 'demerits', count, _ ). +noun( 'demesne', 'demesnes', both, _ ). +noun( 'demigod', 'demigods', count, _ ). +noun( 'demijohn', 'demijohns', count, _ ). +noun( 'demimondaine', 'demimondaines', count, _ ). +noun( 'demimonde', '-', count, _ ). +noun( 'demise', '-', count, _ ). +noun( 'demister', 'demisters', count, _ ). +noun( 'demo', 'demos', count, _ ). +noun( 'demobilization', '-', mass, _ ). +noun( 'democracy', 'democracies', both, _ ). +noun( 'democrat', 'democrats', count, _ ). +noun( 'democratization', '-', mass, _ ). +noun( 'demography', '-', mass, _ ). +noun( 'demolition', 'demolitions', both, _ ). +noun( 'demon', 'demons', count, _ ). +noun( 'demonetization', 'demonetizations', both, _ ). +noun( 'demoniac', 'demoniacs', count, _ ). +noun( 'demonstrability', '-', mass, _ ). +noun( 'demonstration', 'demonstrations', both, _ ). +noun( 'demonstrator', 'demonstrators', count, _ ). +noun( 'demoralization', '-', mass, _ ). +noun( 'demotion', 'demotions', both, _ ). +noun( 'demur', '-', mass, _ ). +noun( 'demureness', '-', mass, _ ). +noun( 'den', 'dens', count, _ ). +noun( 'denationalization', '-', mass, _ ). +noun( 'denial', 'denials', both, _ ). +noun( 'denier', 'denier', count, _ ). +noun( 'denigration', '-', mass, _ ). +noun( 'denim', '-', mass, _ ). +noun( 'denizen', 'denizens', count, _ ). +noun( 'denomination', 'denominations', count, _ ). +noun( 'denominator', 'denominators', count, _ ). +noun( 'denseness', '-', mass, _ ). +noun( 'density', 'densities', both, _ ). +noun( 'dent', 'dents', count, _ ). +noun( 'dentifrice', '-', mass, _ ). +noun( 'dentist', 'dentists', count, _ ). +noun( 'dentistry', '-', mass, _ ). +noun( 'denture', 'dentures', count, _ ). +noun( 'denudation', '-', mass, _ ). +noun( 'denunciation', 'denunciations', both, _ ). +noun( 'deodar', 'deodars', count, _ ). +noun( 'deodorant', 'deodorants', count, _ ). +noun( 'dep', '-', proper, _ ). +noun( 'departed', 'departed', count, _ ). +noun( 'department', 'departments', count, _ ). +noun( 'departure', 'departures', both, _ ). +noun( 'dependant', 'dependants', count, _ ). +noun( 'dependence', '-', mass, _ ). +noun( 'dependency', 'dependencies', count, _ ). +noun( 'dependent', 'dependents', count, _ ). +noun( 'depiction', 'depictions', count, _ ). +noun( 'depilatory', 'depilatories', both, _ ). +noun( 'depletion', '-', mass, _ ). +noun( 'deployment', 'deployments', count, _ ). +noun( 'deponent', 'deponents', count, _ ). +noun( 'depopulation', '-', mass, _ ). +noun( 'deportation', 'deportations', both, _ ). +noun( 'deportee', 'deportees', count, _ ). +noun( 'deportment', '-', mass, _ ). +noun( 'deposit', 'deposits', count, _ ). +noun( 'deposition', 'depositions', both, _ ). +noun( 'depositor', 'depositors', count, _ ). +noun( 'depository', 'depositories', count, _ ). +noun( 'depot', 'depots', count, _ ). +noun( 'depravity', 'depravities', both, _ ). +noun( 'deprecation', 'deprecations', count, _ ). +noun( 'depreciation', '-', mass, _ ). +noun( 'depredation', 'depredations', count, _ ). +noun( 'depression', 'depressions', both, _ ). +noun( 'depressive', 'depressives', count, _ ). +noun( 'deprivation', 'deprivations', both, _ ). +noun( 'depth', 'depths', both, _ ). +noun( 'depth-bomb', 'depth-bombs', count, _ ). +noun( 'depth-charge', 'depth-charges', count, _ ). +noun( 'deputation', 'deputations', count, _ ). +noun( 'deputy', 'deputies', count, _ ). +noun( 'derailment', 'derailments', count, _ ). +noun( 'derangement', 'derangements', count, _ ). +noun( 'derby', 'derbies', count, _ ). +noun( 'derby', 'derbies', count, _ ). +noun( 'dereliction', '-', mass, _ ). +noun( 'derision', '-', mass, _ ). +noun( 'derivation', 'derivations', both, _ ). +noun( 'derivative', 'derivatives', count, _ ). +noun( 'dermatitis', '-', mass, _ ). +noun( 'dermatologist', 'dermatologists', count, _ ). +noun( 'dermatology', '-', mass, _ ). +noun( 'derogation', '-', mass, _ ). +noun( 'derrick', 'derricks', count, _ ). +noun( 'derring-do', '-', mass, _ ). +noun( 'derv', '-', mass, _ ). +noun( 'dervish', 'dervishes', count, _ ). +noun( 'desalination', '-', mass, _ ). +noun( 'desalinization', '-', mass, _ ). +noun( 'descant', 'descants', count, _ ). +noun( 'descendant', 'descendants', count, _ ). +noun( 'descent', 'descents', both, _ ). +noun( 'description', 'descriptions', both, _ ). +noun( 'desecration', '-', mass, _ ). +noun( 'desegregation', '-', mass, _ ). +noun( 'desensitization', '-', mass, _ ). +noun( 'desert', 'deserts', both, _ ). +noun( 'deserter', 'deserters', count, _ ). +noun( 'desertion', 'desertions', both, _ ). +noun( 'desiccant', 'desiccants', count, _ ). +noun( 'desideratum', 'desiderata', count, _ ). +noun( 'design', 'designs', both, _ ). +noun( 'designation', 'designations', both, _ ). +noun( 'designer', 'designers', count, _ ). +noun( 'designing', '-', mass, _ ). +noun( 'desirability', '-', mass, _ ). +noun( 'desire', 'desires', both, _ ). +noun( 'desk', 'desks', count, _ ). +noun( 'desolation', '-', mass, _ ). +noun( 'despair', '-', mass, _ ). +noun( 'despatch', 'despatches', both, _ ). +noun( 'desperado', 'desperadoes', count, _ ). +noun( 'desperation', '-', mass, _ ). +noun( 'despite', '-', mass, _ ). +noun( 'despondency', '-', mass, _ ). +noun( 'despot', 'despots', count, _ ). +noun( 'despotism', 'despotisms', both, _ ). +noun( 'dessert', 'desserts', count, _ ). +noun( 'dessertspoon', 'dessertspoons', count, _ ). +noun( 'dessertspoonful', 'dessertspoonfuls', count, _ ). +noun( 'destination', 'destinations', count, _ ). +noun( 'destiny', 'destinies', both, _ ). +noun( 'destitution', '-', mass, _ ). +noun( 'destroyer', 'destroyers', count, _ ). +noun( 'destructibility', '-', mass, _ ). +noun( 'destruction', '-', mass, _ ). +noun( 'destructiveness', '-', mass, _ ). +noun( 'desuetude', '-', mass, _ ). +noun( 'detachment', 'detachments', both, _ ). +noun( 'detail', 'details', both, _ ). +noun( 'detainee', 'detainees', count, _ ). +noun( 'detection', '-', mass, _ ). +noun( 'detective', 'detectives', count, _ ). +noun( 'detector', 'detectors', count, _ ). +noun( 'detention', 'detentions', both, _ ). +noun( 'detergent', 'detergents', count, _ ). +noun( 'deterioration', 'deteriorations', both, _ ). +noun( 'determinant', 'determinants', count, _ ). +noun( 'determination', '-', mass, _ ). +noun( 'determinative', 'determinatives', count, _ ). +noun( 'determiner', 'determiners', count, _ ). +noun( 'deterrent', 'deterrents', count, _ ). +noun( 'detestation', 'detestations', both, _ ). +noun( 'dethronement', 'dethronements', count, _ ). +noun( 'detonation', 'detonations', count, _ ). +noun( 'detonator', 'detonators', count, _ ). +noun( 'detour', 'detours', count, _ ). +noun( 'detraction', 'detractions', both, _ ). +noun( 'detractor', 'detractors', count, _ ). +noun( 'detribalization', '-', mass, _ ). +noun( 'detriment', '-', mass, _ ). +noun( 'detritus', '-', mass, _ ). +noun( 'deuce', 'deuces', count, _ ). +noun( 'devaluation', 'devaluations', both, _ ). +noun( 'devastation', '-', mass, _ ). +noun( 'developer', 'developers', count, _ ). +noun( 'development', 'developments', both, _ ). +noun( 'deviant', 'deviants', count, _ ). +noun( 'deviation', 'deviations', both, _ ). +noun( 'deviationism', '-', mass, _ ). +noun( 'deviationist', 'deviationists', count, _ ). +noun( 'device', 'devices', count, _ ). +noun( 'devil', 'devils', count, _ ). +noun( 'devilment', 'devilments', both, _ ). +noun( 'devilry', 'devilries', both, _ ). +noun( 'deviousness', '-', mass, _ ). +noun( 'devitalization', '-', mass, _ ). +noun( 'devolution', '-', mass, _ ). +noun( 'devotee', 'devotees', count, _ ). +noun( 'devotion', 'devotions', both, _ ). +noun( 'devoutness', '-', mass, _ ). +noun( 'dew', '-', mass, _ ). +noun( 'dewlap', 'dewlaps', count, _ ). +noun( 'dexterity', '-', mass, _ ). +noun( 'dextrose', '-', mass, _ ). +noun( 'dhoti', 'dhotis', count, _ ). +noun( 'dhow', 'dhows', count, _ ). +noun( 'diabetes', '-', mass, _ ). +noun( 'diabetic', 'diabetics', count, _ ). +noun( 'diacritic', 'diacritics', count, _ ). +noun( 'diadem', 'diadems', count, _ ). +noun( 'diaeresis', 'diaereses', count, _ ). +noun( 'diagnosis', 'diagnoses', both, _ ). +noun( 'diagonal', 'diagonals', count, _ ). +noun( 'diagram', 'diagrams', count, _ ). +noun( 'dial', 'dials', count, _ ). +noun( 'dialect', 'dialects', both, _ ). +noun( 'dialectic', 'dialectics', count, _ ). +noun( 'dialectician', 'dialecticians', count, _ ). +noun( 'dialogue', 'dialogues', both, _ ). +noun( 'diameter', 'diameters', count, _ ). +noun( 'diamond', 'diamonds', count, _ ). +noun( 'diaper', 'diapers', count, _ ). +noun( 'diaphragm', 'diaphragms', count, _ ). +noun( 'diarchy', 'diarchies', count, _ ). +noun( 'diarist', 'diarists', count, _ ). +noun( 'diarrhea', '-', mass, _ ). +noun( 'diarrhoea', '-', mass, _ ). +noun( 'diary', 'diaries', count, _ ). +noun( 'diatribe', 'diatribes', count, _ ). +noun( 'dibber', 'dibbers', count, _ ). +noun( 'dibble', 'dibbles', count, _ ). +noun( 'dice', 'dice', count, _ ). +noun( 'dice-box', 'dice-boxes', count, _ ). +noun( 'dichotomy', 'dichotomies', count, _ ). +noun( 'dickens', '-', count, _ ). +noun( 'dickey', 'dickeys', count, _ ). +noun( 'dicky', 'dickies', count, _ ). +noun( 'dicky-seat', 'dicky-seats', count, _ ). +noun( 'dickybird', 'dickybirds', count, _ ). +noun( 'dictate', 'dictates', count, _ ). +noun( 'dictation', 'dictations', both, _ ). +noun( 'dictator', 'dictators', count, _ ). +noun( 'dictatorship', 'dictatorships', both, _ ). +noun( 'diction', '-', mass, _ ). +noun( 'dictionary', 'dictionaries', count, _ ). +noun( 'dictum', 'dictums', count, _ ). +noun( 'die', 'dies', count, _ ). +noun( 'die-hard', 'die-hards', count, _ ). +noun( 'dieresis', 'diereses', count, _ ). +noun( 'diesel', 'diesels', both, _ ). +noun( 'diet', 'diets', count, _ ). +noun( 'dietetics', 'dietetics', mass, _ ). +noun( 'dietician', 'dieticians', count, _ ). +noun( 'dietitian', 'dietitians', count, _ ). +noun( 'difference', 'differences', both, _ ). +noun( 'differential', 'differentials', count, _ ). +noun( 'differentiation', 'differentiations', both, _ ). +noun( 'difficulty', 'difficulties', both, _ ). +noun( 'diffidence', '-', mass, _ ). +noun( 'diffraction', 'diffractions', count, _ ). +noun( 'diffuseness', '-', mass, _ ). +noun( 'diffusion', '-', mass, _ ). +noun( 'dig', 'digs', count, _ ). +noun( 'digest', 'digests', count, _ ). +noun( 'digestibility', '-', mass, _ ). +noun( 'digestion', 'digestions', both, _ ). +noun( 'digger', 'diggers', count, _ ). +noun( 'digging', 'diggings', both, _ ). +noun( 'digit', 'digits', count, _ ). +noun( 'dignitary', 'dignitaries', count, _ ). +noun( 'dignity', 'dignities', both, _ ). +noun( 'digraph', 'digraphs', count, _ ). +noun( 'digression', 'digressions', both, _ ). +noun( 'dike', 'dikes', count, _ ). +noun( 'dilapidation', '-', mass, _ ). +noun( 'dilation', '-', mass, _ ). +noun( 'dilemma', 'dilemmas', count, _ ). +noun( 'dilettante', 'dilettantes', count, _ ). +noun( 'diligence', '-', mass, _ ). +noun( 'dill', '-', mass, _ ). +noun( 'dilution', 'dilutions', both, _ ). +noun( 'dime', 'dimes', count, _ ). +noun( 'dimension', 'dimensions', both, _ ). +noun( 'diminuendo', 'diminuendos', count, _ ). +noun( 'diminution', 'diminutions', both, _ ). +noun( 'diminutive', 'diminutives', count, _ ). +noun( 'dimity', '-', mass, _ ). +noun( 'dimness', '-', mass, _ ). +noun( 'dimple', 'dimples', count, _ ). +noun( 'din', '-', mass, _ ). +noun( 'dinar', 'dinars', count, _ ). +noun( 'diner', 'diners', count, _ ). +noun( 'ding-dong', 'ding-dongs', count, _ ). +noun( 'dinghy', 'dinghies', count, _ ). +noun( 'dinginess', '-', mass, _ ). +noun( 'dingle', 'dingles', count, _ ). +noun( 'dining-car', 'dining-cars', count, _ ). +noun( 'dining-room', 'dining-rooms', count, _ ). +noun( 'dining-table', 'dining-tables', count, _ ). +noun( 'dinner', 'dinners', count, _ ). +noun( 'dinner-jacket', 'dinner-jackets', count, _ ). +noun( 'dinner-party', 'dinner-parties', count, _ ). +noun( 'dinner-service', 'dinner-services', count, _ ). +noun( 'dinner-set', 'dinner-sets', count, _ ). +noun( 'dinosaur', 'dinosaurs', count, _ ). +noun( 'dint', 'dints', count, _ ). +noun( 'diocesan', 'diocesans', count, _ ). +noun( 'diocese', 'dioceses', count, _ ). +noun( 'dioxide', 'dioxides', count, _ ). +noun( 'dip', 'dips', both, _ ). +noun( 'diphtheria', '-', mass, _ ). +noun( 'diphthong', 'diphthongs', count, _ ). +noun( 'diploma', 'diplomas', count, _ ). +noun( 'diplomacy', '-', mass, _ ). +noun( 'diplomat', 'diplomats', count, _ ). +noun( 'diplomatist', 'diplomatists', count, _ ). +noun( 'dipper', 'dippers', count, _ ). +noun( 'dipsomania', '-', mass, _ ). +noun( 'dipsomaniac', 'dipsomaniacs', count, _ ). +noun( 'dipstick', 'dipsticks', count, _ ). +noun( 'diptych', 'diptychs', count, _ ). +noun( 'direction', 'directions', both, _ ). +noun( 'direction-finder', 'direction-finders', count, _ ). +noun( 'directive', 'directives', count, _ ). +noun( 'directness', '-', mass, _ ). +noun( 'director', 'directors', count, _ ). +noun( 'directorate', 'directorates', count, _ ). +noun( 'directorship', 'directorships', count, _ ). +noun( 'directory', 'directories', count, _ ). +noun( 'dirge', 'dirges', count, _ ). +noun( 'dirigible', 'dirigibles', count, _ ). +noun( 'dirk', 'dirks', count, _ ). +noun( 'dirndl', 'dirndls', count, _ ). +noun( 'dirt', '-', mass, _ ). +noun( 'dirt-track', 'dirt-tracks', count, _ ). +noun( 'disability', 'disabilities', both, _ ). +noun( 'disablement', 'disablements', both, _ ). +noun( 'disadvantage', 'disadvantages', both, _ ). +noun( 'disaffection', '-', mass, _ ). +noun( 'disagreeableness', '-', mass, _ ). +noun( 'disagreement', 'disagreements', both, _ ). +noun( 'disappearance', 'disappearances', count, _ ). +noun( 'disappointment', 'disappointments', both, _ ). +noun( 'disapprobation', '-', mass, _ ). +noun( 'disapproval', '-', mass, _ ). +noun( 'disarmament', '-', mass, _ ). +noun( 'disarrangement', 'disarrangements', count, _ ). +noun( 'disarray', '-', mass, _ ). +noun( 'disaster', 'disasters', both, _ ). +noun( 'disavowal', 'disavowals', count, _ ). +noun( 'disbandment', 'disbandments', count, _ ). +noun( 'disbelief', '-', mass, _ ). +noun( 'disbursement', 'disbursements', both, _ ). +noun( 'disc', 'discs', count, _ ). +noun( 'discard', 'discards', count, _ ). +noun( 'discernment', '-', mass, _ ). +noun( 'discharge', 'discharges', both, _ ). +noun( 'disciple', 'disciples', count, _ ). +noun( 'disciplinarian', 'disciplinarians', count, _ ). +noun( 'discipline', 'disciplines', both, _ ). +noun( 'disclaimer', 'disclaimers', count, _ ). +noun( 'disclosure', 'disclosures', both, _ ). +noun( 'disco', 'discos', count, _ ). +noun( 'discolouration', 'discolourations', both, _ ). +noun( 'discomfiture', '-', mass, _ ). +noun( 'discomfort', 'discomforts', both, _ ). +noun( 'discomposure', '-', mass, _ ). +noun( 'discontent', 'discontents', both, _ ). +noun( 'discontinuance', 'discontinuances', count, _ ). +noun( 'discontinuity', 'discontinuities', both, _ ). +noun( 'discord', 'discords', both, _ ). +noun( 'discordance', '-', mass, _ ). +noun( 'discotheque', 'discotheques', count, _ ). +noun( 'discount', 'discounts', both, _ ). +noun( 'discouragement', 'discouragements', both, _ ). +noun( 'discourse', 'discourses', count, _ ). +noun( 'discourtesy', 'discourtesies', both, _ ). +noun( 'discoverer', 'discoverers', count, _ ). +noun( 'discovery', 'discoveries', both, _ ). +noun( 'discredit', '-', mass, _ ). +noun( 'discrepancy', 'discrepancies', both, _ ). +noun( 'discreteness', '-', mass, _ ). +noun( 'discretion', '-', mass, _ ). +noun( 'discrimination', '-', mass, _ ). +noun( 'discursiveness', '-', mass, _ ). +noun( 'discus', 'discuses', count, _ ). +noun( 'discussion', 'discussions', both, _ ). +noun( 'disdain', '-', mass, _ ). +noun( 'disease', 'diseases', both, _ ). +noun( 'disembarkation', 'disembarkations', count, _ ). +noun( 'disembarrassment', 'disembarrassments', count, _ ). +noun( 'disenchantment', 'disenchantments', count, _ ). +noun( 'disengagement', 'disengagements', count, _ ). +noun( 'disentanglement', 'disentanglements', count, _ ). +noun( 'disequilibrium', '-', mass, _ ). +noun( 'disestablishment', '-', mass, _ ). +noun( 'disfavour', '-', mass, _ ). +noun( 'disfigurement', 'disfigurements', both, _ ). +noun( 'disfranchisement', '-', mass, _ ). +noun( 'disgrace', '-', mass, _ ). +noun( 'disguise', 'disguises', both, _ ). +noun( 'disgust', '-', mass, _ ). +noun( 'dish', 'dishes', count, _ ). +noun( 'dishabille', '-', mass, _ ). +noun( 'disharmony', '-', mass, _ ). +noun( 'dishcloth', 'dishcloths', count, _ ). +noun( 'dishful', 'dishfuls', count, _ ). +noun( 'dishonesty', 'dishonesties', both, _ ). +noun( 'dishonour', '-', mass, _ ). +noun( 'dishwasher', 'dishwashers', count, _ ). +noun( 'dishwater', '-', mass, _ ). +noun( 'disillusion', '-', mass, _ ). +noun( 'disillusionment', 'disillusionments', both, _ ). +noun( 'disincentive', 'disincentives', count, _ ). +noun( 'disinclination', 'disinclinations', both, _ ). +noun( 'disinfectant', 'disinfectants', count, _ ). +noun( 'disinfection', '-', mass, _ ). +noun( 'disinfestation', '-', mass, _ ). +noun( 'disinflation', '-', mass, _ ). +noun( 'disingenuousness', '-', mass, _ ). +noun( 'disinheritance', '-', mass, _ ). +noun( 'disintegration', 'disintegrations', both, _ ). +noun( 'disinterestedness', '-', mass, _ ). +noun( 'disinterment', 'disinterments', count, _ ). +noun( 'disjointedness', '-', mass, _ ). +noun( 'disk', 'disks', count, _ ). +noun( 'dislike', 'dislikes', both, _ ). +noun( 'dislocation', 'dislocations', both, _ ). +noun( 'dislodgement', 'dislodgements', count, _ ). +noun( 'disloyalty', 'disloyalties', both, _ ). +noun( 'dismantlement', '-', mass, _ ). +noun( 'dismay', '-', mass, _ ). +noun( 'dismemberment', 'dismemberments', count, _ ). +noun( 'dismissal', 'dismissals', both, _ ). +noun( 'disobedience', '-', mass, _ ). +noun( 'disorder', 'disorders', both, _ ). +noun( 'disorganization', '-', mass, _ ). +noun( 'disparagement', 'disparagements', count, _ ). +noun( 'disparity', 'disparities', both, _ ). +noun( 'dispassionateness', '-', mass, _ ). +noun( 'dispatch', 'dispatches', both, _ ). +noun( 'dispatch-box', 'dispatch-boxes', count, _ ). +noun( 'dispatch-rider', 'dispatch-riders', count, _ ). +noun( 'dispensary', 'dispensaries', count, _ ). +noun( 'dispensation', 'dispensations', both, _ ). +noun( 'dispenser', 'dispensers', count, _ ). +noun( 'dispersal', 'dispersals', both, _ ). +noun( 'dispersion', 'dispersions', count, _ ). +noun( 'displacement', 'displacements', both, _ ). +noun( 'display', 'displays', both, _ ). +noun( 'displeasure', '-', mass, _ ). +noun( 'disposal', '-', mass, _ ). +noun( 'disposition', 'dispositions', count, _ ). +noun( 'dispossession', 'dispossessions', count, _ ). +noun( 'disproof', 'disproofs', both, _ ). +noun( 'disproportion', '-', mass, _ ). +noun( 'disputant', 'disputants', count, _ ). +noun( 'disputation', 'disputations', both, _ ). +noun( 'dispute', 'disputes', both, _ ). +noun( 'disqualification', 'disqualifications', both, _ ). +noun( 'disquiet', '-', mass, _ ). +noun( 'disquietude', '-', mass, _ ). +noun( 'disquisition', 'disquisitions', count, _ ). +noun( 'disregard', '-', mass, _ ). +noun( 'disrepair', '-', mass, _ ). +noun( 'disrepute', '-', mass, _ ). +noun( 'disrespect', '-', mass, _ ). +noun( 'disruption', 'disruptions', both, _ ). +noun( 'dissatisfaction', '-', mass, _ ). +noun( 'dissection', 'dissections', both, _ ). +noun( 'dissembler', 'dissemblers', count, _ ). +noun( 'dissemination', '-', mass, _ ). +noun( 'dissension', 'dissensions', both, _ ). +noun( 'dissent', '-', mass, _ ). +noun( 'dissenter', 'dissenters', count, _ ). +noun( 'dissertation', 'dissertations', count, _ ). +noun( 'disservice', 'disservices', both, _ ). +noun( 'dissidence', '-', mass, _ ). +noun( 'dissident', 'dissidents', count, _ ). +noun( 'dissimilarity', 'dissimilarities', both, _ ). +noun( 'dissimilitude', '-', mass, _ ). +noun( 'dissimulation', 'dissimulations', count, _ ). +noun( 'dissipation', '-', mass, _ ). +noun( 'dissociation', '-', mass, _ ). +noun( 'dissolubility', '-', mass, _ ). +noun( 'dissolution', 'dissolutions', both, _ ). +noun( 'dissonance', 'dissonances', both, _ ). +noun( 'dissuasion', '-', mass, _ ). +noun( 'dissyllable', 'dissyllables', count, _ ). +noun( 'distaff', 'distaffs', count, _ ). +noun( 'distance', 'distances', both, _ ). +noun( 'distaste', 'distastes', both, _ ). +noun( 'distastefulness', '-', mass, _ ). +noun( 'distemper', '-', mass, _ ). +noun( 'distension', 'distensions', count, _ ). +noun( 'distillation', 'distillations', both, _ ). +noun( 'distiller', 'distillers', count, _ ). +noun( 'distillery', 'distilleries', count, _ ). +noun( 'distinction', 'distinctions', both, _ ). +noun( 'distinctiveness', '-', mass, _ ). +noun( 'distinctness', '-', mass, _ ). +noun( 'distortion', 'distortions', both, _ ). +noun( 'distraction', 'distractions', both, _ ). +noun( 'distraint', 'distraints', count, _ ). +noun( 'distress', '-', mass, _ ). +noun( 'distribution', 'distributions', both, _ ). +noun( 'distributor', 'distributors', count, _ ). +noun( 'district', 'districts', count, _ ). +noun( 'distrust', '-', both, _ ). +noun( 'distrustfulness', '-', mass, _ ). +noun( 'disturbance', 'disturbances', both, _ ). +noun( 'disunion', '-', mass, _ ). +noun( 'disunity', '-', mass, _ ). +noun( 'disuse', '-', mass, _ ). +noun( 'disyllable', 'disyllables', count, _ ). +noun( 'ditch', 'ditches', count, _ ). +noun( 'dither', 'dithers', count, _ ). +noun( 'ditto', '-', count, _ ). +noun( 'ditty', 'ditties', count, _ ). +noun( 'divagation', 'divagations', both, _ ). +noun( 'divan', 'divans', count, _ ). +noun( 'divan-bed', 'divan-beds', count, _ ). +noun( 'dive', 'dives', count, _ ). +noun( 'dive-bomber', 'dive-bombers', count, _ ). +noun( 'diver', 'divers', count, _ ). +noun( 'divergence', 'divergences', both, _ ). +noun( 'divergency', 'divergencies', both, _ ). +noun( 'diversification', '-', mass, _ ). +noun( 'diversion', 'diversions', both, _ ). +noun( 'diversionist', 'diversionists', count, _ ). +noun( 'diversity', '-', mass, _ ). +noun( 'divide', 'divides', count, _ ). +noun( 'dividend', 'dividends', count, _ ). +noun( 'dividend-warrant', 'dividend-warrants', count, _ ). +noun( 'divination', 'divinations', both, _ ). +noun( 'divine', 'divines', count, _ ). +noun( 'diviner', 'diviners', count, _ ). +noun( 'diving-bell', 'diving-bells', count, _ ). +noun( 'diving-board', 'diving-boards', count, _ ). +noun( 'diving-dress', '-', mass, _ ). +noun( 'diving-suit', 'diving-suits', count, _ ). +noun( 'divinity', 'divinities', both, _ ). +noun( 'division', 'divisions', both, _ ). +noun( 'divisor', 'divisors', count, _ ). +noun( 'divorce', 'divorces', both, _ ). +noun( 'divorcee', 'divorcees', count, _ ). +noun( 'divot', 'divots', count, _ ). +noun( 'divulgence', 'divulgences', count, _ ). +noun( 'divvy', 'divvies', count, _ ). +noun( 'dixie', 'dixies', count, _ ). +noun( 'dizziness', '-', mass, _ ). +noun( 'djinn', 'djinns', count, _ ). +noun( 'do', '-', count, _ ). +noun( 'do', 'dos', count, _ ). +noun( 'do-gooder', 'do-gooders', count, _ ). +noun( 'dobbin', 'dobbins', count, _ ). +noun( 'docility', '-', mass, _ ). +noun( 'dock', 'docks', count, _ ). +noun( 'docker', 'dockers', count, _ ). +noun( 'docket', 'dockets', count, _ ). +noun( 'dockyard', 'dockyards', count, _ ). +noun( 'doctor', 'doctors', count, _ ). +noun( 'doctorate', 'doctorates', count, _ ). +noun( 'doctrinaire', 'doctrinaires', count, _ ). +noun( 'doctrine', 'doctrines', both, _ ). +noun( 'document', 'documents', count, _ ). +noun( 'documentation', '-', mass, _ ). +noun( 'dodderer', 'dodderers', count, _ ). +noun( 'dodge', 'dodges', count, _ ). +noun( 'dodgem', 'dodgems', count, _ ). +noun( 'dodger', 'dodgers', count, _ ). +noun( 'dodo', 'dodos', count, _ ). +noun( 'doe', 'does', count, _ ). +noun( 'doer', 'doers', count, _ ). +noun( 'dog', 'dogs', count, _ ). +noun( 'dog\'s-tooth', '-', mass, _ ). +noun( 'dog-biscuit', 'dog-biscuits', count, _ ). +noun( 'dog-cart', 'dog-carts', count, _ ). +noun( 'dog-collar', 'dog-collars', count, _ ). +noun( 'doge', 'doges', count, _ ). +noun( 'dogfish', 'dogfish', count, _ ). +noun( 'doggedness', '-', mass, _ ). +noun( 'doggerel', '-', mass, _ ). +noun( 'doggie', 'doggies', count, _ ). +noun( 'doggy', 'doggies', count, _ ). +noun( 'doghouse', 'doghouses', count, _ ). +noun( 'dogma', 'dogmas', both, _ ). +noun( 'dogmatism', '-', mass, _ ). +noun( 'dogsbody', 'dogsbodies', count, _ ). +noun( 'dogtooth', '-', mass, _ ). +noun( 'dogtrot', '-', count, _ ). +noun( 'dogwatch', 'dogwatches', count, _ ). +noun( 'dogwood', 'dogwoods', count, _ ). +noun( 'doh', '-', count, _ ). +noun( 'doily', 'doilies', count, _ ). +noun( 'dole', 'doles', both, _ ). +noun( 'doll', 'dolls', count, _ ). +noun( 'dollar', 'dollars', count, _ ). +noun( 'dollop', 'dollops', count, _ ). +noun( 'dolly', 'dollies', count, _ ). +noun( 'dolmen', 'dolmens', count, _ ). +noun( 'dolour', 'dolours', count, _ ). +noun( 'dolphin', 'dolphins', count, _ ). +noun( 'dolt', 'dolts', count, _ ). +noun( 'domain', 'domains', count, _ ). +noun( 'dome', 'domes', count, _ ). +noun( 'domestication', '-', mass, _ ). +noun( 'domesticity', '-', mass, _ ). +noun( 'domicile', 'domiciles', count, _ ). +noun( 'dominance', '-', mass, _ ). +noun( 'domination', '-', mass, _ ). +noun( 'dominie', 'dominies', count, _ ). +noun( 'dominion', 'dominions', both, _ ). +noun( 'domino', 'dominos', count, _ ). +noun( 'don', 'dons', count, _ ). +noun( 'don\'t-know', 'don\'t-knows', count, _ ). +noun( 'donation', 'donations', both, _ ). +noun( 'donjon', 'donjons', count, _ ). +noun( 'donkey', 'donkeys', count, _ ). +noun( 'donkey-jacket', 'donkey-jackets', count, _ ). +noun( 'donkey-work', '-', mass, _ ). +noun( 'donor', 'donors', count, _ ). +noun( 'doodlebug', 'doodlebugs', count, _ ). +noun( 'doom', 'dooms', count, _ ). +noun( 'door', 'doors', count, _ ). +noun( 'doorbell', 'doorbells', count, _ ). +noun( 'doorcase', 'doorcases', count, _ ). +noun( 'doorframe', 'doorframes', count, _ ). +noun( 'doorhandle', 'doorhandles', count, _ ). +noun( 'doorkeeper', 'doorkeepers', count, _ ). +noun( 'doorknob', 'doorknobs', count, _ ). +noun( 'doorknocker', 'doorknockers', count, _ ). +noun( 'doorman', 'doormen', count, _ ). +noun( 'doormat', 'doormats', count, _ ). +noun( 'doornail', 'doornails', count, _ ). +noun( 'doorplate', 'doorplates', count, _ ). +noun( 'doorpost', 'doorposts', count, _ ). +noun( 'doorstep', 'doorsteps', count, _ ). +noun( 'doorstopper', 'doorstoppers', count, _ ). +noun( 'doorway', 'doorways', count, _ ). +noun( 'dope', 'dopes', both, _ ). +noun( 'dormer', 'dormers', count, _ ). +noun( 'dormer-window', 'dormer-windows', count, _ ). +noun( 'dormitory', 'dormitories', count, _ ). +noun( 'dormouse', 'dormice', count, _ ). +noun( 'dory', 'dories', count, _ ). +noun( 'dosage', 'dosages', both, _ ). +noun( 'dose', 'doses', count, _ ). +noun( 'doss-house', 'doss-houses', count, _ ). +noun( 'dosser', 'dossers', count, _ ). +noun( 'dossier', 'dossiers', count, _ ). +noun( 'dot', 'dots', count, _ ). +noun( 'dotage', '-', mass, _ ). +noun( 'dotard', 'dotards', count, _ ). +noun( 'dottle', 'dottles', count, _ ). +noun( 'double', 'doubles', count, _ ). +noun( 'double-bass', 'double-basses', count, _ ). +noun( 'double-cross', 'double-crosses', count, _ ). +noun( 'double-dealer', 'double-dealers', count, _ ). +noun( 'double-dealing', '-', mass, _ ). +noun( 'double-decker', 'double-deckers', count, _ ). +noun( 'double-dutch', '-', mass, _ ). +noun( 'double-entry', 'double-entries', count, _ ). +noun( 'double-first', 'double-firsts', count, _ ). +noun( 'double-spacing', '-', mass, _ ). +noun( 'double-talk', '-', mass, _ ). +noun( 'double-think', '-', mass, _ ). +noun( 'doublet', 'doublets', count, _ ). +noun( 'doubloon', 'doubloons', count, _ ). +noun( 'doubt', 'doubts', both, _ ). +noun( 'douche', 'douches', count, _ ). +noun( 'dough', '-', mass, _ ). +noun( 'doughnut', 'doughnuts', count, _ ). +noun( 'dove', 'doves', count, _ ). +noun( 'dovecote', 'dovecotes', count, _ ). +noun( 'dovetail', 'dovetails', count, _ ). +noun( 'dowager', 'dowagers', count, _ ). +noun( 'dowdiness', '-', mass, _ ). +noun( 'dowel', 'dowels', count, _ ). +noun( 'dower', 'dowers', count, _ ). +noun( 'down', 'downs', both, _ ). +noun( 'down-and-out', 'down-and-outs', count, _ ). +noun( 'downbeat', 'downbeats', count, _ ). +noun( 'downfall', '-', count, _ ). +noun( 'downpour', 'downpours', count, _ ). +noun( 'downrightness', '-', mass, _ ). +noun( 'dowry', 'dowries', count, _ ). +noun( 'dowser', 'dowsers', count, _ ). +noun( 'dowsing', '-', mass, _ ). +noun( 'doxology', 'doxologies', count, _ ). +noun( 'doyen', 'doyens', count, _ ). +noun( 'doyley', 'doyleys', count, _ ). +noun( 'doyly', 'doylies', count, _ ). +noun( 'doz', 'doz', count, _ ). +noun( 'doze', 'dozes', count, _ ). +noun( 'dozen', 'dozens', count, _ ). +noun( 'drabness', '-', mass, _ ). +noun( 'drachm', 'drachms', count, _ ). +noun( 'drachma', 'drachmas', count, _ ). +noun( 'draft', 'drafts', count, _ ). +noun( 'draftee', 'draftees', count, _ ). +noun( 'drafting', 'draftings', count, _ ). +noun( 'draftsman', 'draftsmen', count, _ ). +noun( 'drag', '-', mass, _ ). +noun( 'dragnet', 'dragnets', count, _ ). +noun( 'dragoman', 'dragomans', count, _ ). +noun( 'dragon', 'dragons', count, _ ). +noun( 'dragonfly', 'dragonflies', count, _ ). +noun( 'dragoon', 'dragoons', count, _ ). +noun( 'drain', 'drains', count, _ ). +noun( 'drainage', '-', mass, _ ). +noun( 'drainage-basin', 'drainage-basins', count, _ ). +noun( 'draining-board', 'draining-boards', count, _ ). +noun( 'drainpipe', 'drainpipes', count, _ ). +noun( 'drake', 'drakes', count, _ ). +noun( 'dram', 'drams', count, _ ). +noun( 'drama', 'dramas', both, _ ). +noun( 'dramatics', 'dramatics', mass, _ ). +noun( 'dramatist', 'dramatists', count, _ ). +noun( 'dramatization', 'dramatizations', both, _ ). +noun( 'drape', 'drapes', count, _ ). +noun( 'draper', 'drapers', count, _ ). +noun( 'drapery', 'draperies', both, _ ). +noun( 'draught', 'draughts', both, _ ). +noun( 'draught-horse', 'draught-horses', count, _ ). +noun( 'draughts', 'draughts', mass, _ ). +noun( 'draughtsman', 'draughtsmen', count, _ ). +noun( 'draw', 'draws', count, _ ). +noun( 'drawback', 'drawbacks', both, _ ). +noun( 'drawbridge', 'drawbridges', count, _ ). +noun( 'drawer', 'drawers', count, _ ). +noun( 'drawing', 'drawings', both, _ ). +noun( 'drawing-board', 'drawing-boards', count, _ ). +noun( 'drawing-pin', 'drawing-pins', count, _ ). +noun( 'drawing-room', 'drawing-rooms', count, _ ). +noun( 'drawl', 'drawls', count, _ ). +noun( 'dray', 'drays', count, _ ). +noun( 'dread', '-', mass, _ ). +noun( 'dreadfulness', '-', mass, _ ). +noun( 'dreadnought', 'dreadnoughts', count, _ ). +noun( 'dream', 'dreams', count, _ ). +noun( 'dreamer', 'dreamers', count, _ ). +noun( 'dreamland', 'dreamlands', count, _ ). +noun( 'dreamworld', 'dreamworlds', count, _ ). +noun( 'dreariness', '-', mass, _ ). +noun( 'dredge', 'dredges', count, _ ). +noun( 'dredger', 'dredgers', count, _ ). +noun( 'drenching', 'drenchings', count, _ ). +noun( 'dress', 'dresses', both, _ ). +noun( 'dress-hanger', 'dress-hangers', count, _ ). +noun( 'dressage', '-', mass, _ ). +noun( 'dresser', 'dressers', count, _ ). +noun( 'dressing', 'dressings', both, _ ). +noun( 'dressing-case', 'dressing-cases', count, _ ). +noun( 'dressing-down', '-', count, _ ). +noun( 'dressing-gown', 'dressing-gowns', count, _ ). +noun( 'dressing-table', 'dressing-tables', count, _ ). +noun( 'dressmaker', 'dressmakers', count, _ ). +noun( 'dressmaking', '-', mass, _ ). +noun( 'dribbler', 'dribblers', count, _ ). +noun( 'driblet', 'driblets', count, _ ). +noun( 'drier', 'driers', count, _ ). +noun( 'drift', 'drifts', both, _ ). +noun( 'drift-ice', '-', mass, _ ). +noun( 'drift-net', 'drift-nets', count, _ ). +noun( 'drift-wood', '-', mass, _ ). +noun( 'driftage', '-', mass, _ ). +noun( 'drifter', 'drifters', count, _ ). +noun( 'drill', 'drills', both, _ ). +noun( 'drink', 'drinks', both, _ ). +noun( 'drinker', 'drinkers', count, _ ). +noun( 'drinking', '-', mass, _ ). +noun( 'drinking-bout', 'drinking-bouts', count, _ ). +noun( 'drinking-fountain', 'drinking-fountains', count, _ ). +noun( 'drinking-song', 'drinking-songs', count, _ ). +noun( 'drinking-water', '-', mass, _ ). +noun( 'drip', 'drips', count, _ ). +noun( 'dripping', '-', mass, _ ). +noun( 'dripping-pan', 'dripping-pans', count, _ ). +noun( 'drive', 'drives', both, _ ). +noun( 'drive-in', 'drive-ins', count, _ ). +noun( 'drivel', '-', mass, _ ). +noun( 'driveller', 'drivellers', count, _ ). +noun( 'driver', 'drivers', count, _ ). +noun( 'driveway', 'driveways', count, _ ). +noun( 'driving-belt', 'driving-belts', count, _ ). +noun( 'driving-wheel', 'driving-wheels', count, _ ). +noun( 'drizzle', '-', mass, _ ). +noun( 'drogue', 'drogues', count, _ ). +noun( 'drollery', 'drolleries', both, _ ). +noun( 'dromedary', 'dromedaries', count, _ ). +noun( 'drone', 'drones', both, _ ). +noun( 'droop', '-', count, _ ). +noun( 'drop', 'drops', count, _ ). +noun( 'drop-curtain', 'drop-curtains', count, _ ). +noun( 'drop-kick', 'drop-kicks', count, _ ). +noun( 'dropout', 'dropouts', count, _ ). +noun( 'dropping-zone', 'dropping-zones', count, _ ). +noun( 'dropsy', '-', mass, _ ). +noun( 'droshky', 'droshkies', count, _ ). +noun( 'dross', '-', mass, _ ). +noun( 'drought', 'droughts', both, _ ). +noun( 'drove', 'droves', count, _ ). +noun( 'drover', 'drovers', count, _ ). +noun( 'drowse', '-', count, _ ). +noun( 'drowsiness', '-', mass, _ ). +noun( 'drubbing', '-', count, _ ). +noun( 'drudge', 'drudges', count, _ ). +noun( 'drudgery', '-', mass, _ ). +noun( 'drug', 'drugs', count, _ ). +noun( 'drugget', 'druggets', both, _ ). +noun( 'druggist', 'druggists', count, _ ). +noun( 'drugstore', 'drugstores', count, _ ). +noun( 'druid', 'druids', count, _ ). +noun( 'drum', 'drums', count, _ ). +noun( 'drum-major', 'drum-majors', count, _ ). +noun( 'drum-majorette', 'drum-majorettes', count, _ ). +noun( 'drumfire', '-', mass, _ ). +noun( 'drummer', 'drummers', count, _ ). +noun( 'drumstick', 'drumsticks', count, _ ). +noun( 'drunk', 'drunks', count, _ ). +noun( 'drunkard', 'drunkards', count, _ ). +noun( 'drunkenness', '-', mass, _ ). +noun( 'drupe', 'drupes', count, _ ). +noun( 'dry-cleaner', 'dry-cleaners', count, _ ). +noun( 'dry-cleaning', '-', mass, _ ). +noun( 'dry-walling', '-', mass, _ ). +noun( 'dryad', 'dryads', count, _ ). +noun( 'dryer', 'dryers', count, _ ). +noun( 'dryness', '-', mass, _ ). +noun( 'dubbin', '-', mass, _ ). +noun( 'dubiety', 'dubieties', both, _ ). +noun( 'dubiousness', '-', mass, _ ). +noun( 'ducat', 'ducats', count, _ ). +noun( 'duchess', 'duchesses', count, _ ). +noun( 'duchy', 'duchies', count, _ ). +noun( 'duck', 'duck', both, _ ). +noun( 'ducking', 'duckings', count, _ ). +noun( 'ducking-stool', 'ducking-stools', count, _ ). +noun( 'duckling', 'ducklings', count, _ ). +noun( 'duckweed', '-', mass, _ ). +noun( 'ducky', 'duckies', count, _ ). +noun( 'duct', 'ducts', count, _ ). +noun( 'ductility', '-', mass, _ ). +noun( 'dud', 'duds', count, _ ). +noun( 'dude', 'dudes', count, _ ). +noun( 'dudgeon', '-', mass, _ ). +noun( 'due', 'dues', count, _ ). +noun( 'duel', 'duels', count, _ ). +noun( 'duelist', 'duelists', count, _ ). +noun( 'duellist', 'duellists', count, _ ). +noun( 'duenna', 'duennas', count, _ ). +noun( 'duet', 'duets', count, _ ). +noun( 'duffel', '-', mass, _ ). +noun( 'duffer', 'duffers', count, _ ). +noun( 'duffle', '-', mass, _ ). +noun( 'dug', 'dugs', count, _ ). +noun( 'dugong', 'dugongs', count, _ ). +noun( 'dugout', 'dugouts', count, _ ). +noun( 'duke', 'dukes', count, _ ). +noun( 'dukedom', 'dukedoms', count, _ ). +noun( 'dulcimer', 'dulcimers', count, _ ). +noun( 'dullard', 'dullards', count, _ ). +noun( 'dullness', '-', mass, _ ). +noun( 'dumbbell', 'dumbbells', count, _ ). +noun( 'dumbness', '-', mass, _ ). +noun( 'dumbwaiter', 'dumbwaiters', count, _ ). +noun( 'dumdum', 'dumdums', count, _ ). +noun( 'dummy', 'dummies', count, _ ). +noun( 'dump', 'dumps', count, _ ). +noun( 'dumper', 'dumpers', count, _ ). +noun( 'dumpling', 'dumplings', count, _ ). +noun( 'dun', 'duns', count, _ ). +noun( 'dunce', 'dunces', count, _ ). +noun( 'dunderhead', 'dunderheads', count, _ ). +noun( 'dune', 'dunes', count, _ ). +noun( 'dung', '-', mass, _ ). +noun( 'dungeon', 'dungeons', count, _ ). +noun( 'dunghill', 'dunghills', count, _ ). +noun( 'duodenum', 'duodenums', count, _ ). +noun( 'duologue', 'duologues', count, _ ). +noun( 'dupe', 'dupes', count, _ ). +noun( 'dupl', '-', proper, _ ). +noun( 'duplicate', 'duplicates', count, _ ). +noun( 'duplication', 'duplications', both, _ ). +noun( 'duplicator', 'duplicators', count, _ ). +noun( 'duplicity', '-', mass, _ ). +noun( 'durability', '-', mass, _ ). +noun( 'durable', 'durables', count, _ ). +noun( 'durance', '-', mass, _ ). +noun( 'duration', 'durations', both, _ ). +noun( 'durbar', 'durbars', count, _ ). +noun( 'duress', '-', mass, _ ). +noun( 'dusk', '-', mass, _ ). +noun( 'dust', '-', mass, _ ). +noun( 'dust-bowl', 'dust-bowls', count, _ ). +noun( 'dust-coat', 'dust-coats', count, _ ). +noun( 'dust-jacket', 'dust-jackets', count, _ ). +noun( 'dust-sheet', 'dust-sheets', count, _ ). +noun( 'dust-up', 'dust-ups', count, _ ). +noun( 'dust-wrapper', 'dust-wrappers', count, _ ). +noun( 'dustbin', 'dustbins', count, _ ). +noun( 'dustcart', 'dustcarts', count, _ ). +noun( 'duster', 'dusters', count, _ ). +noun( 'dustman', 'dustmen', count, _ ). +noun( 'dustpan', 'dustpans', count, _ ). +noun( 'duty', 'duties', both, _ ). +noun( 'duvet', 'duvets', count, _ ). +noun( 'dwarf', 'dwarfs', count, _ ). +noun( 'dweller', 'dwellers', count, _ ). +noun( 'dwelling', 'dwellings', count, _ ). +noun( 'dwelling-house', 'dwelling-houses', count, _ ). +noun( 'dyarchy', 'dyarchies', count, _ ). +noun( 'dye', 'dyes', both, _ ). +noun( 'dye-works', 'dye-works', count, _ ). +noun( 'dyer', 'dyers', count, _ ). +noun( 'dyestuff', 'dyestuffs', count, _ ). +noun( 'dyke', 'dykes', count, _ ). +noun( 'dynamic', 'dynamics', count, _ ). +noun( 'dynamism', '-', mass, _ ). +noun( 'dynamite', '-', mass, _ ). +noun( 'dynamo', 'dynamos', count, _ ). +noun( 'dynast', 'dynasts', count, _ ). +noun( 'dynasty', 'dynasties', count, _ ). +noun( 'dyne', 'dynes', count, _ ). +noun( 'dysentery', '-', mass, _ ). +noun( 'dyslexia', '-', mass, _ ). +noun( 'dyspepsia', '-', mass, _ ). +noun( 'dyspeptic', 'dyspeptics', count, _ ). +noun( 'e', '-', count, _ ). +noun( 'eagerness', '-', mass, _ ). +noun( 'eagle', 'eagles', count, _ ). +noun( 'eaglet', 'eaglets', count, _ ). +noun( 'ear', 'ears', count, _ ). +noun( 'ear-trumpet', 'ear-trumpets', count, _ ). +noun( 'earache', 'earaches', both, _ ). +noun( 'eardrop', 'eardrops', count, _ ). +noun( 'eardrum', 'eardrums', count, _ ). +noun( 'earful', 'earfuls', count, _ ). +noun( 'earl', 'earls', count, _ ). +noun( 'earldom', 'earldoms', count, _ ). +noun( 'earmark', 'earmarks', count, _ ). +noun( 'earnest', '-', mass, _ ). +noun( 'earnest-money', '-', mass, _ ). +noun( 'earnestness', '-', mass, _ ). +noun( 'earphone', 'earphones', count, _ ). +noun( 'earpiece', 'earpieces', count, _ ). +noun( 'earring', 'earrings', count, _ ). +noun( 'earshot', '-', mass, _ ). +noun( 'earth', '-', mass, _ ). +noun( 'earth-closet', 'earth-closets', count, _ ). +noun( 'earthenware', '-', mass, _ ). +noun( 'earthnut', 'earthnuts', count, _ ). +noun( 'earthquake', 'earthquakes', count, _ ). +noun( 'earthwork', 'earthworks', count, _ ). +noun( 'earthworm', 'earthworms', count, _ ). +noun( 'earwax', '-', mass, _ ). +noun( 'earwig', 'earwigs', count, _ ). +noun( 'ease', '-', mass, _ ). +noun( 'easel', 'easels', count, _ ). +noun( 'east', '-', mass, _ ). +noun( 'eatable', 'eatables', count, _ ). +noun( 'eater', 'eaters', count, _ ). +noun( 'eating-apple', 'eating-apples', count, _ ). +noun( 'eating-house', 'eating-houses', count, _ ). +noun( 'eau de cologne', '-', mass, _ ). +noun( 'eau-de-vie', '-', mass, _ ). +noun( 'eavesdropper', 'eavesdroppers', count, _ ). +noun( 'ebb', 'ebbs', count, _ ). +noun( 'ebbtide', 'ebbtides', count, _ ). +noun( 'ebonite', '-', mass, _ ). +noun( 'ebony', '-', mass, _ ). +noun( 'ebullience', '-', mass, _ ). +noun( 'eccentric', 'eccentrics', count, _ ). +noun( 'eccentricity', 'eccentricities', both, _ ). +noun( 'ecclesiastic', 'ecclesiastics', count, _ ). +noun( 'echelon', 'echelons', count, _ ). +noun( 'echo', 'echoes', both, _ ). +noun( 'echo-sounder', 'echo-sounders', count, _ ). +noun( 'echo-sounding', 'echo-soundings', count, _ ). +noun( 'eclecticism', '-', mass, _ ). +noun( 'eclipse', 'eclipses', count, _ ). +noun( 'ecliptic', '-', count, _ ). +noun( 'ecologist', 'ecologists', count, _ ). +noun( 'ecology', '-', mass, _ ). +noun( 'economics', 'economics', mass, _ ). +noun( 'economist', 'economists', count, _ ). +noun( 'economy', 'economies', both, _ ). +noun( 'ecosystem', 'ecosystems', count, _ ). +noun( 'ecstasy', 'ecstasies', both, _ ). +noun( 'ectoplasm', '-', mass, _ ). +noun( 'eczema', '-', mass, _ ). +noun( 'ed', '-', proper, _ ). +noun( 'eddy', 'eddies', count, _ ). +noun( 'edelweiss', '-', mass, _ ). +noun( 'edge', 'edges', count, _ ). +noun( 'edging', 'edgings', both, _ ). +noun( 'edibility', '-', mass, _ ). +noun( 'edible', 'edibles', count, _ ). +noun( 'edict', 'edicts', count, _ ). +noun( 'edification', '-', mass, _ ). +noun( 'edifice', 'edifices', count, _ ). +noun( 'edition', 'editions', count, _ ). +noun( 'editor', 'editors', count, _ ). +noun( 'editorial', 'editorials', count, _ ). +noun( 'education', '-', mass, _ ). +noun( 'educationalist', 'educationalists', count, _ ). +noun( 'educationist', 'educationists', count, _ ). +noun( 'educator', 'educators', count, _ ). +noun( 'eel', 'eels', count, _ ). +noun( 'eeriness', '-', mass, _ ). +noun( 'effacement', '-', mass, _ ). +noun( 'effect', 'effects', both, _ ). +noun( 'effectiveness', '-', mass, _ ). +noun( 'effectuality', '-', mass, _ ). +noun( 'effectualness', '-', mass, _ ). +noun( 'effeminacy', '-', mass, _ ). +noun( 'effendi', 'effendis', count, _ ). +noun( 'effervescence', '-', mass, _ ). +noun( 'effeteness', '-', mass, _ ). +noun( 'efficacy', '-', mass, _ ). +noun( 'efficiency', '-', mass, _ ). +noun( 'effigy', 'effigies', count, _ ). +noun( 'efflorescence', '-', mass, _ ). +noun( 'effluent', 'effluents', both, _ ). +noun( 'efflux', 'effluxes', both, _ ). +noun( 'effort', 'efforts', both, _ ). +noun( 'effrontery', 'effronteries', both, _ ). +noun( 'effulgence', '-', mass, _ ). +noun( 'effusion', 'effusions', both, _ ). +noun( 'effusiveness', '-', mass, _ ). +noun( 'eft', 'efts', count, _ ). +noun( 'eg', '-', proper, _ ). +noun( 'egalitarian', 'egalitarians', count, _ ). +noun( 'egalitarianism', '-', mass, _ ). +noun( 'egg', 'eggs', both, _ ). +noun( 'egg-beater', 'egg-beaters', count, _ ). +noun( 'egg-cup', 'egg-cups', count, _ ). +noun( 'egg-whisk', 'egg-whisks', count, _ ). +noun( 'egghead', 'eggheads', count, _ ). +noun( 'eggplant', 'eggplants', both, _ ). +noun( 'eggshake', 'eggshakes', count, _ ). +noun( 'eggshell', 'eggshells', count, _ ). +noun( 'eglantine', '-', mass, _ ). +noun( 'ego', 'egos', count, _ ). +noun( 'egoism', '-', mass, _ ). +noun( 'egoist', 'egoists', count, _ ). +noun( 'egotism', '-', mass, _ ). +noun( 'egotist', 'egotists', count, _ ). +noun( 'egotrip', 'egotrips', count, _ ). +noun( 'egress', 'egresses', both, _ ). +noun( 'egret', 'egrets', count, _ ). +noun( 'eiderdown', 'eiderdowns', count, _ ). +noun( 'eight', 'eights', count, _ ). +noun( 'eighteen', 'eighteens', count, _ ). +noun( 'eighteenth', 'eighteenths', count, _ ). +noun( 'eighth', 'eighths', count, _ ). +noun( 'eightieth', 'eightieths', count, _ ). +noun( 'eightpence', 'eightpences', count, _ ). +noun( 'eightsome', 'eightsomes', count, _ ). +noun( 'eighty', 'eighties', count, _ ). +noun( 'eisteddfod', 'eisteddfods', count, _ ). +noun( 'ejaculation', 'ejaculations', count, _ ). +noun( 'ejection', 'ejections', count, _ ). +noun( 'ejector', 'ejectors', count, _ ). +noun( 'ejector-seat', 'ejector-seats', count, _ ). +noun( 'elaborateness', '-', mass, _ ). +noun( 'elaboration', 'elaborations', both, _ ). +noun( 'eland', 'elands', count, _ ). +noun( 'elastic', '-', mass, _ ). +noun( 'elasticity', 'elasticities', both, _ ). +noun( 'elation', '-', mass, _ ). +noun( 'elbow', 'elbows', count, _ ). +noun( 'elder', 'elders', count, _ ). +noun( 'election', 'elections', both, _ ). +noun( 'electioneering', '-', mass, _ ). +noun( 'elector', 'electors', count, _ ). +noun( 'electorate', 'electorates', count, _ ). +noun( 'electrician', 'electricians', count, _ ). +noun( 'electricity', '-', mass, _ ). +noun( 'electrification', '-', mass, _ ). +noun( 'electrocardiogram', 'electrocardiograms', count, _ ). +noun( 'electrocardiograph', 'electrocardiographs', count, _ ). +noun( 'electrochemistry', '-', mass, _ ). +noun( 'electrocution', 'electrocutions', both, _ ). +noun( 'electrode', 'electrodes', count, _ ). +noun( 'electrolysis', '-', mass, _ ). +noun( 'electrolyte', 'electrolytes', count, _ ). +noun( 'electromagnet', 'electromagnets', count, _ ). +noun( 'electromagnetism', '-', mass, _ ). +noun( 'electron', 'electrons', count, _ ). +noun( 'electronics', 'electronics', mass, _ ). +noun( 'electroplate', '-', mass, _ ). +noun( 'elegance', '-', mass, _ ). +noun( 'elegy', 'elegies', count, _ ). +noun( 'element', 'elements', count, _ ). +noun( 'elephant', 'elephants', count, _ ). +noun( 'elephantiasis', '-', mass, _ ). +noun( 'elevation', 'elevations', both, _ ). +noun( 'elevator', 'elevators', count, _ ). +noun( 'eleven', 'elevens', count, _ ). +noun( 'eleventh', 'elevenths', count, _ ). +noun( 'elf', 'elves', count, _ ). +noun( 'elicitation', 'elicitations', count, _ ). +noun( 'eligibility', '-', mass, _ ). +noun( 'elimination', 'eliminations', both, _ ). +noun( 'elision', 'elisions', both, _ ). +noun( 'elitism', '-', mass, _ ). +noun( 'elitist', 'elitists', count, _ ). +noun( 'elixir', 'elixirs', count, _ ). +noun( 'elk', 'elks', count, _ ). +noun( 'ellipse', 'ellipses', count, _ ). +noun( 'ellipsis', 'ellipses', both, _ ). +noun( 'elm', 'elms', both, _ ). +noun( 'elocution', '-', mass, _ ). +noun( 'elocutionist', 'elocutionists', count, _ ). +noun( 'elongation', 'elongations', both, _ ). +noun( 'elopement', 'elopements', count, _ ). +noun( 'eloquence', '-', mass, _ ). +noun( 'elucidation', 'elucidations', count, _ ). +noun( 'elver', 'elvers', count, _ ). +noun( 'emaciation', '-', mass, _ ). +noun( 'emanation', 'emanations', both, _ ). +noun( 'emancipation', '-', mass, _ ). +noun( 'emasculation', 'emasculations', both, _ ). +noun( 'embalmment', 'embalmments', count, _ ). +noun( 'embankment', 'embankments', count, _ ). +noun( 'embargo', 'embargoes', count, _ ). +noun( 'embarkation', 'embarkations', both, _ ). +noun( 'embarrassment', 'embarrassments', both, _ ). +noun( 'embassy', 'embassies', count, _ ). +noun( 'embellishment', 'embellishments', both, _ ). +noun( 'ember', 'embers', count, _ ). +noun( 'embezzlement', 'embezzlements', both, _ ). +noun( 'embitterment', 'embitterments', count, _ ). +noun( 'emblem', 'emblems', count, _ ). +noun( 'embodiment', 'embodiments', count, _ ). +noun( 'embonpoint', '-', mass, _ ). +noun( 'embrace', 'embraces', count, _ ). +noun( 'embrasure', 'embrasures', count, _ ). +noun( 'embrocation', '-', mass, _ ). +noun( 'embroidery', '-', mass, _ ). +noun( 'embryo', 'embryos', count, _ ). +noun( 'emeer', 'emeers', count, _ ). +noun( 'emendation', 'emendations', both, _ ). +noun( 'emerald', 'emeralds', count, _ ). +noun( 'emergence', '-', mass, _ ). +noun( 'emergency', 'emergencies', both, _ ). +noun( 'emery', '-', mass, _ ). +noun( 'emetic', 'emetics', count, _ ). +noun( 'emigrant', 'emigrants', count, _ ). +noun( 'emigration', 'emigrations', both, _ ). +noun( 'eminence', 'eminences', both, _ ). +noun( 'emir', 'emirs', count, _ ). +noun( 'emirate', 'emirates', count, _ ). +noun( 'emissary', 'emissaries', count, _ ). +noun( 'emission', 'emissions', both, _ ). +noun( 'emolument', 'emoluments', count, _ ). +noun( 'emotion', 'emotions', both, _ ). +noun( 'empathy', '-', mass, _ ). +noun( 'emperor', 'emperors', count, _ ). +noun( 'emphasis', 'emphases', both, _ ). +noun( 'empire', 'empires', both, _ ). +noun( 'empiricism', '-', mass, _ ). +noun( 'empiricist', 'empiricists', count, _ ). +noun( 'emplacement', 'emplacements', count, _ ). +noun( 'employ', 'employs', count, _ ). +noun( 'employee', 'employees', count, _ ). +noun( 'employer', 'employers', count, _ ). +noun( 'employment', '-', mass, _ ). +noun( 'emporium', 'emporiums', count, _ ). +noun( 'empress', 'empresses', count, _ ). +noun( 'emptiness', '-', mass, _ ). +noun( 'empty', 'empties', count, _ ). +noun( 'empyrean', '-', count, _ ). +noun( 'emu', 'emus', count, _ ). +noun( 'emulation', '-', mass, _ ). +noun( 'emulsion', 'emulsions', both, _ ). +noun( 'enactment', 'enactments', both, _ ). +noun( 'enamel', '-', mass, _ ). +noun( 'enc', '-', proper, _ ). +noun( 'encampment', 'encampments', count, _ ). +noun( 'encephalitis', '-', mass, _ ). +noun( 'enchanter', 'enchanters', count, _ ). +noun( 'enchantment', 'enchantments', both, _ ). +noun( 'enchantress', 'enchantresses', count, _ ). +noun( 'encirclement', 'encirclements', count, _ ). +noun( 'enclave', 'enclaves', count, _ ). +noun( 'enclosure', 'enclosures', both, _ ). +noun( 'encomium', 'encomiums', count, _ ). +noun( 'encore', 'encores', count, _ ). +noun( 'encounter', 'encounters', count, _ ). +noun( 'encouragement', 'encouragements', both, _ ). +noun( 'encroachment', 'encroachments', both, _ ). +noun( 'encumbrance', 'encumbrances', count, _ ). +noun( 'encyclical', 'encyclicals', count, _ ). +noun( 'encyclopaedia', 'encyclopaedias', count, _ ). +noun( 'encyclopedia', 'encyclopedias', count, _ ). +noun( 'end', 'ends', count, _ ). +noun( 'end-all', '-', count, _ ). +noun( 'endearment', 'endearments', both, _ ). +noun( 'endeavour', 'endeavours', count, _ ). +noun( 'endemic', 'endemics', count, _ ). +noun( 'ending', 'endings', count, _ ). +noun( 'endive', 'endives', both, _ ). +noun( 'endorsement', 'endorsements', both, _ ). +noun( 'endowment', 'endowments', both, _ ). +noun( 'endurance', '-', mass, _ ). +noun( 'enema', 'enemas', count, _ ). +noun( 'enemy', 'enemies', count, _ ). +noun( 'energy', 'energies', both, _ ). +noun( 'enfant terrible', 'enfants terribles', count, _ ). +noun( 'enforcement', '-', mass, _ ). +noun( 'enfranchisement', 'enfranchisements', count, _ ). +noun( 'engagement', 'engagements', both, _ ). +noun( 'engine', 'engines', count, _ ). +noun( 'engine-driver', 'engine-drivers', count, _ ). +noun( 'engineer', 'engineers', count, _ ). +noun( 'engineering', '-', mass, _ ). +noun( 'engraver', 'engravers', count, _ ). +noun( 'engraving', 'engravings', both, _ ). +noun( 'enhancement', 'enhancements', both, _ ). +noun( 'enigma', 'enigmas', count, _ ). +noun( 'enjoyment', 'enjoyments', both, _ ). +noun( 'enlargement', 'enlargements', both, _ ). +noun( 'enlightenment', '-', mass, _ ). +noun( 'enlistment', 'enlistments', both, _ ). +noun( 'enmity', 'enmities', both, _ ). +noun( 'ennoblement', 'ennoblements', count, _ ). +noun( 'ennui', 'ennuis', both, _ ). +noun( 'enormity', 'enormities', both, _ ). +noun( 'enormousness', '-', mass, _ ). +noun( 'enough', 'enough', mass, _ ). +noun( 'enquirer', 'enquirers', count, _ ). +noun( 'enquiry', 'enquiries', both, _ ). +noun( 'enrichment', '-', mass, _ ). +noun( 'enrolment', 'enrolments', both, _ ). +noun( 'ensemble', 'ensembles', count, _ ). +noun( 'ensign', 'ensigns', count, _ ). +noun( 'ensilage', '-', mass, _ ). +noun( 'enslavement', 'enslavements', count, _ ). +noun( 'entail', 'entails', both, _ ). +noun( 'entanglement', 'entanglements', both, _ ). +noun( 'entente', 'ententes', count, _ ). +noun( 'entente cordiale', '-', count, _ ). +noun( 'enteritis', '-', mass, _ ). +noun( 'enterprise', 'enterprises', both, _ ). +noun( 'entertainer', 'entertainers', count, _ ). +noun( 'entertainment', 'entertainments', both, _ ). +noun( 'enthronement', 'enthronements', count, _ ). +noun( 'enthusiasm', '-', mass, _ ). +noun( 'enthusiast', 'enthusiasts', count, _ ). +noun( 'enticement', 'enticements', both, _ ). +noun( 'entirety', '-', mass, _ ). +noun( 'entitlement', 'entitlements', count, _ ). +noun( 'entity', 'entities', both, _ ). +noun( 'entomologist', 'entomologists', count, _ ). +noun( 'entomology', '-', mass, _ ). +noun( 'entourage', '-', count, _ ). +noun( 'entr\'acte', 'entr\'actes', count, _ ). +noun( 'entr_ee', 'entr_ees', both, _ ). +noun( 'entrance', 'entrances', both, _ ). +noun( 'entrance-fee', 'entrance-fees', count, _ ). +noun( 'entrance-money', '-', mass, _ ). +noun( 'entrant', 'entrants', count, _ ). +noun( 'entreaty', 'entreaties', both, _ ). +noun( 'entrenchment', 'entrenchments', count, _ ). +noun( 'entrepot', 'entrepots', count, _ ). +noun( 'entrepreneur', 'entrepreneurs', count, _ ). +noun( 'entry', 'entries', both, _ ). +noun( 'enumeration', 'enumerations', both, _ ). +noun( 'enunciation', 'enunciations', count, _ ). +noun( 'envelope', 'envelopes', count, _ ). +noun( 'envelopment', 'envelopments', count, _ ). +noun( 'environment', 'environments', both, _ ). +noun( 'envoi', 'envois', count, _ ). +noun( 'envoy', 'envoys', count, _ ). +noun( 'envy', '-', mass, _ ). +noun( 'enzyme', 'enzymes', count, _ ). +noun( 'eon', 'eons', count, _ ). +noun( 'epaulet', 'epaulets', count, _ ). +noun( 'epaulette', 'epaulettes', count, _ ). +noun( 'epic', 'epics', count, _ ). +noun( 'epicentre', 'epicentres', count, _ ). +noun( 'epicure', 'epicures', count, _ ). +noun( 'epicurean', 'epicureans', count, _ ). +noun( 'epidemic', 'epidemics', count, _ ). +noun( 'epidemiologist', 'epidemiologists', count, _ ). +noun( 'epidemiology', '-', mass, _ ). +noun( 'epidermis', '-', mass, _ ). +noun( 'epidiascope', 'epidiascopes', count, _ ). +noun( 'epiglottis', 'epiglottises', count, _ ). +noun( 'epigram', 'epigrams', count, _ ). +noun( 'epilepsy', '-', mass, _ ). +noun( 'epileptic', 'epileptics', count, _ ). +noun( 'epilogue', 'epilogues', count, _ ). +noun( 'episcopalian', 'episcopalians', count, _ ). +noun( 'episode', 'episodes', count, _ ). +noun( 'epistle', 'epistles', count, _ ). +noun( 'epitaph', 'epitaphs', count, _ ). +noun( 'epithet', 'epithets', count, _ ). +noun( 'epitome', 'epitomes', count, _ ). +noun( 'epoch', 'epochs', count, _ ). +noun( 'equal', 'equals', count, _ ). +noun( 'equalitarian', 'equalitarians', count, _ ). +noun( 'equality', '-', mass, _ ). +noun( 'equalization', 'equalizations', count, _ ). +noun( 'equalizer', 'equalizers', count, _ ). +noun( 'equanimity', '-', mass, _ ). +noun( 'equation', 'equations', both, _ ). +noun( 'equator', 'equators', count, _ ). +noun( 'equerry', 'equerries', count, _ ). +noun( 'equestrian', 'equestrians', count, _ ). +noun( 'equilibrium', '-', mass, _ ). +noun( 'equinox', 'equinoxes', count, _ ). +noun( 'equipage', 'equipages', count, _ ). +noun( 'equipment', '-', mass, _ ). +noun( 'equipoise', 'equipoises', both, _ ). +noun( 'equity', 'equities', both, _ ). +noun( 'equivalence', 'equivalences', both, _ ). +noun( 'equivalent', 'equivalents', count, _ ). +noun( 'equivocation', 'equivocations', both, _ ). +noun( 'era', 'eras', count, _ ). +noun( 'eradication', 'eradications', count, _ ). +noun( 'eraser', 'erasers', count, _ ). +noun( 'erasure', 'erasures', both, _ ). +noun( 'erection', 'erections', both, _ ). +noun( 'erectness', '-', mass, _ ). +noun( 'eremite', 'eremites', count, _ ). +noun( 'erg', 'ergs', count, _ ). +noun( 'ergonomics', 'ergonomics', mass, _ ). +noun( 'ermine', '-', mass, _ ). +noun( 'erosion', '-', mass, _ ). +noun( 'eroticism', '-', mass, _ ). +noun( 'errand', 'errands', count, _ ). +noun( 'erratum', 'errata', count, _ ). +noun( 'error', 'errors', both, _ ). +noun( 'eructation', 'eructations', both, _ ). +noun( 'erudition', '-', mass, _ ). +noun( 'eruption', 'eruptions', both, _ ). +noun( 'erysipelas', '-', mass, _ ). +noun( 'escalation', 'escalations', both, _ ). +noun( 'escalator', 'escalators', count, _ ). +noun( 'escalope', 'escalopes', count, _ ). +noun( 'escapade', 'escapades', count, _ ). +noun( 'escape', 'escapes', both, _ ). +noun( 'escapee', 'escapees', count, _ ). +noun( 'escapement', 'escapements', count, _ ). +noun( 'escapism', '-', mass, _ ). +noun( 'escapist', 'escapists', count, _ ). +noun( 'escapologist', 'escapologists', count, _ ). +noun( 'escarpment', 'escarpments', count, _ ). +noun( 'eschatology', '-', mass, _ ). +noun( 'escort', 'escorts', count, _ ). +noun( 'escritoire', 'escritoires', count, _ ). +noun( 'escudo', 'escudos', count, _ ). +noun( 'escutcheon', 'escutcheons', count, _ ). +noun( 'esophagus', 'esophaguses', count, _ ). +noun( 'espalier', 'espaliers', count, _ ). +noun( 'espionage', '-', mass, _ ). +noun( 'esplanade', 'esplanades', count, _ ). +noun( 'espousal', 'espousals', count, _ ). +noun( 'espresso', 'espressos', count, _ ). +noun( 'esprit', '-', mass, _ ). +noun( 'esprit de corps', '-', count, _ ). +noun( 'essay', 'essays', count, _ ). +noun( 'essayist', 'essayists', count, _ ). +noun( 'essence', 'essences', both, _ ). +noun( 'essential', 'essentials', count, _ ). +noun( 'establishment', 'establishments', both, _ ). +noun( 'estaminet', 'estaminets', count, _ ). +noun( 'estate', 'estates', both, _ ). +noun( 'esteem', '-', mass, _ ). +noun( 'esthete', 'esthetes', count, _ ). +noun( 'esthetic', '-', mass, _ ). +noun( 'esthetics', 'esthetics', mass, _ ). +noun( 'estimate', 'estimates', count, _ ). +noun( 'estimation', '-', mass, _ ). +noun( 'estrangement', 'estrangements', both, _ ). +noun( 'estuary', 'estuaries', count, _ ). +noun( 'et al', '-', proper, _ ). +noun( 'et seq', '-', proper, _ ). +noun( 'eta', '-', count, _ ). +noun( 'etc', '-', proper, _ ). +noun( 'etcher', 'etchers', count, _ ). +noun( 'etching', 'etchings', both, _ ). +noun( 'etd', '-', count, _ ). +noun( 'eternity', 'eternities', both, _ ). +noun( 'ether', '-', mass, _ ). +noun( 'ethic', '-', count, _ ). +noun( 'ethics', 'ethics', mass, _ ). +noun( 'ethnographer', 'ethnographers', count, _ ). +noun( 'ethnography', '-', mass, _ ). +noun( 'ethnologist', 'ethnologists', count, _ ). +noun( 'ethnology', '-', mass, _ ). +noun( 'ethos', '-', count, _ ). +noun( 'ethyl', 'ethyls', both, _ ). +noun( 'etiology', 'etiologies', count, _ ). +noun( 'etiquette', '-', mass, _ ). +noun( 'etymologist', 'etymologists', count, _ ). +noun( 'etymology', 'etymologies', both, _ ). +noun( 'eucalyptus', 'eucalyptuses', count, _ ). +noun( 'eugenics', 'eugenics', mass, _ ). +noun( 'eulogist', 'eulogists', count, _ ). +noun( 'eulogy', 'eulogies', both, _ ). +noun( 'eunuch', 'eunuchs', count, _ ). +noun( 'euphemism', 'euphemisms', both, _ ). +noun( 'euphonium', 'euphoniums', count, _ ). +noun( 'euphony', 'euphonies', both, _ ). +noun( 'euphoria', '-', mass, _ ). +noun( 'euphuism', 'euphuisms', count, _ ). +noun( 'eurhythmics', 'eurhythmics', mass, _ ). +noun( 'eurythmics', 'eurythmics', mass, _ ). +noun( 'euthanasia', '-', mass, _ ). +noun( 'evacuation', 'evacuations', both, _ ). +noun( 'evacuee', 'evacuees', count, _ ). +noun( 'evaluation', 'evaluations', count, _ ). +noun( 'evanescence', '-', mass, _ ). +noun( 'evangelicalism', '-', mass, _ ). +noun( 'evangelism', '-', mass, _ ). +noun( 'evangelist', 'evangelists', count, _ ). +noun( 'evaporation', 'evaporations', both, _ ). +noun( 'evasion', 'evasions', both, _ ). +noun( 'evasiveness', '-', mass, _ ). +noun( 'eve', 'eves', count, _ ). +noun( 'even', 'evens', count, _ ). +noun( 'evening', 'evenings', both, _ ). +noun( 'evenness', '-', mass, _ ). +noun( 'evensong', 'evensongs', count, _ ). +noun( 'event', 'events', count, _ ). +noun( 'eventide', '-', mass, _ ). +noun( 'eventuality', 'eventualities', count, _ ). +noun( 'evergreen', 'evergreens', count, _ ). +noun( 'eviction', 'evictions', both, _ ). +noun( 'evidence', '-', mass, _ ). +noun( 'evil', 'evils', both, _ ). +noun( 'evil-doer', 'evil-doers', count, _ ). +noun( 'evocation', 'evocations', count, _ ). +noun( 'evolution', 'evolutions', both, _ ). +noun( 'ewe', 'ewes', count, _ ). +noun( 'ewer', 'ewers', count, _ ). +noun( 'ex-serviceman', 'ex-servicemen', count, _ ). +noun( 'exacerbation', 'exacerbations', count, _ ). +noun( 'exaction', 'exactions', both, _ ). +noun( 'exactitude', '-', mass, _ ). +noun( 'exactness', '-', mass, _ ). +noun( 'exaggeration', 'exaggerations', both, _ ). +noun( 'exaltation', '-', mass, _ ). +noun( 'exam', 'exams', count, _ ). +noun( 'examination', 'examinations', both, _ ). +noun( 'examiner', 'examiners', count, _ ). +noun( 'example', 'examples', both, _ ). +noun( 'exasperation', '-', mass, _ ). +noun( 'excavation', 'excavations', both, _ ). +noun( 'excavator', 'excavators', count, _ ). +noun( 'excellence', 'excellences', both, _ ). +noun( 'excelsior', '-', mass, _ ). +noun( 'exception', 'exceptions', both, _ ). +noun( 'excerpt', 'excerpts', count, _ ). +noun( 'excess', 'excesses', both, _ ). +noun( 'exchange', 'exchanges', both, _ ). +noun( 'exchanger', 'exchangers', count, _ ). +noun( 'exchequer', 'exchequers', count, _ ). +noun( 'excise', '-', mass, _ ). +noun( 'exciseman', 'excisemen', count, _ ). +noun( 'excision', 'excisions', both, _ ). +noun( 'excitability', '-', mass, _ ). +noun( 'excitement', 'excitements', both, _ ). +noun( 'excl', '-', proper, _ ). +noun( 'exclamation', 'exclamations', both, _ ). +noun( 'exclusion', '-', mass, _ ). +noun( 'excogitation', 'excogitations', both, _ ). +noun( 'excommunication', 'excommunications', both, _ ). +noun( 'excoriation', 'excoriations', count, _ ). +noun( 'excrement', '-', mass, _ ). +noun( 'excrescence', 'excrescences', count, _ ). +noun( 'excretion', 'excretions', both, _ ). +noun( 'excursion', 'excursions', count, _ ). +noun( 'excursionist', 'excursionists', count, _ ). +noun( 'excuse', 'excuses', count, _ ). +noun( 'execration', 'execrations', count, _ ). +noun( 'executant', 'executants', count, _ ). +noun( 'execution', 'executions', both, _ ). +noun( 'executioner', 'executioners', count, _ ). +noun( 'executive', 'executives', count, _ ). +noun( 'executor', 'executors', count, _ ). +noun( 'executrix', 'executrixes', count, _ ). +noun( 'exegesis', '-', mass, _ ). +noun( 'exemplification', 'exemplifications', both, _ ). +noun( 'exemption', 'exemptions', both, _ ). +noun( 'exercise', 'exercises', both, _ ). +noun( 'exertion', 'exertions', both, _ ). +noun( 'exhalation', 'exhalations', both, _ ). +noun( 'exhaust', 'exhausts', both, _ ). +noun( 'exhaust-pipe', 'exhaust-pipes', count, _ ). +noun( 'exhaustion', '-', mass, _ ). +noun( 'exhibit', 'exhibits', count, _ ). +noun( 'exhibition', 'exhibitions', count, _ ). +noun( 'exhibitioner', 'exhibitioners', count, _ ). +noun( 'exhibitionism', '-', mass, _ ). +noun( 'exhibitionist', 'exhibitionists', count, _ ). +noun( 'exhibitor', 'exhibitors', count, _ ). +noun( 'exhilaration', '-', mass, _ ). +noun( 'exhortation', 'exhortations', both, _ ). +noun( 'exhumation', 'exhumations', both, _ ). +noun( 'exigency', 'exigencies', count, _ ). +noun( 'exile', 'exiles', both, _ ). +noun( 'existence', 'existences', both, _ ). +noun( 'existentialism', '-', mass, _ ). +noun( 'existentialist', 'existentialists', count, _ ). +noun( 'exit', 'exits', count, _ ). +noun( 'exodus', 'exoduses', count, _ ). +noun( 'exoneration', 'exonerations', count, _ ). +noun( 'exorbitance', '-', mass, _ ). +noun( 'expanse', 'expanses', count, _ ). +noun( 'expansion', '-', mass, _ ). +noun( 'expansiveness', '-', mass, _ ). +noun( 'expatriate', 'expatriates', count, _ ). +noun( 'expectancy', 'expectancies', both, _ ). +noun( 'expectation', 'expectations', both, _ ). +noun( 'expectorant', 'expectorants', count, _ ). +noun( 'expedience', '-', mass, _ ). +noun( 'expediency', '-', mass, _ ). +noun( 'expedient', 'expedients', count, _ ). +noun( 'expedition', 'expeditions', both, _ ). +noun( 'expenditure', 'expenditures', both, _ ). +noun( 'expense', 'expenses', both, _ ). +noun( 'experience', 'experiences', both, _ ). +noun( 'experiment', 'experiments', both, _ ). +noun( 'experimentation', '-', mass, _ ). +noun( 'experimenter', 'experimenters', count, _ ). +noun( 'expert', 'experts', count, _ ). +noun( 'expertise', '-', mass, _ ). +noun( 'expertness', '-', mass, _ ). +noun( 'expiation', '-', mass, _ ). +noun( 'expiration', '-', mass, _ ). +noun( 'expiry', 'expiries', count, _ ). +noun( 'explanation', 'explanations', both, _ ). +noun( 'expletive', 'expletives', count, _ ). +noun( 'explicitness', '-', mass, _ ). +noun( 'exploit', 'exploits', count, _ ). +noun( 'exploitation', '-', mass, _ ). +noun( 'exploration', 'explorations', both, _ ). +noun( 'explorer', 'explorers', count, _ ). +noun( 'explosion', 'explosions', count, _ ). +noun( 'explosive', 'explosives', count, _ ). +noun( 'expo', 'expos', count, _ ). +noun( 'exponent', 'exponents', count, _ ). +noun( 'exponential', 'exponentials', count, _ ). +noun( 'export', 'exports', both, _ ). +noun( 'exportation', '-', mass, _ ). +noun( 'exporter', 'exporters', count, _ ). +noun( 'expos_e', 'expos_es', count, _ ). +noun( 'exposition', 'expositions', both, _ ). +noun( 'expostulation', 'expostulations', both, _ ). +noun( 'exposure', 'exposures', both, _ ). +noun( 'express', 'expresses', both, _ ). +noun( 'expression', 'expressions', both, _ ). +noun( 'expressionism', '-', mass, _ ). +noun( 'expressionist', 'expressionists', count, _ ). +noun( 'expressway', 'expressways', count, _ ). +noun( 'expropriation', '-', mass, _ ). +noun( 'expulsion', 'expulsions', both, _ ). +noun( 'expurgation', 'expurgations', count, _ ). +noun( 'exquisiteness', '-', mass, _ ). +noun( 'extension', 'extensions', both, _ ). +noun( 'extent', '-', mass, _ ). +noun( 'extenuation', 'extenuations', both, _ ). +noun( 'exterior', 'exteriors', count, _ ). +noun( 'extermination', 'exterminations', count, _ ). +noun( 'external', 'externals', count, _ ). +noun( 'extinction', '-', mass, _ ). +noun( 'extinguisher', 'extinguishers', count, _ ). +noun( 'extirpation', '-', mass, _ ). +noun( 'extortion', 'extortions', both, _ ). +noun( 'extra', 'extras', count, _ ). +noun( 'extract', 'extracts', both, _ ). +noun( 'extraction', 'extractions', both, _ ). +noun( 'extradition', 'extraditions', both, _ ). +noun( 'extrapolation', '-', mass, _ ). +noun( 'extravagance', 'extravagances', both, _ ). +noun( 'extravaganza', 'extravaganzas', count, _ ). +noun( 'extreme', 'extremes', count, _ ). +noun( 'extremist', 'extremists', count, _ ). +noun( 'extremity', 'extremities', count, _ ). +noun( 'extrication', '-', mass, _ ). +noun( 'extroversion', '-', mass, _ ). +noun( 'extrovert', 'extroverts', count, _ ). +noun( 'extrusion', 'extrusions', both, _ ). +noun( 'exuberance', '-', mass, _ ). +noun( 'exultation', '-', mass, _ ). +noun( 'eye', 'eyes', count, _ ). +noun( 'eye-opener', 'eye-openers', count, _ ). +noun( 'eye-shadow', '-', mass, _ ). +noun( 'eyeball', 'eyeballs', count, _ ). +noun( 'eyebath', 'eyebaths', count, _ ). +noun( 'eyebrow', 'eyebrows', count, _ ). +noun( 'eyecup', 'eyecups', count, _ ). +noun( 'eyeful', 'eyefuls', count, _ ). +noun( 'eyeglass', 'eyeglasses', count, _ ). +noun( 'eyelash', 'eyelashes', count, _ ). +noun( 'eyelet', 'eyelets', count, _ ). +noun( 'eyelid', 'eyelids', count, _ ). +noun( 'eyepiece', 'eyepieces', count, _ ). +noun( 'eyeshot', '-', mass, _ ). +noun( 'eyesight', '-', mass, _ ). +noun( 'eyesore', 'eyesores', count, _ ). +noun( 'eyestrain', '-', mass, _ ). +noun( 'eyetooth', 'eyeteeth', count, _ ). +noun( 'eyewash', '-', mass, _ ). +noun( 'eyewitness', 'eyewitnesses', count, _ ). +noun( 'eyrie', 'eyries', count, _ ). +noun( 'eyry', 'eyries', count, _ ). +noun( 'f', '-', count, _ ). +noun( 'f\"uhrer', 'f\"uhrers', count, _ ). +noun( 'f^ete', 'f^etes', count, _ ). +noun( 'fa', '-', count, _ ). +noun( 'fa<cade', 'fa<cades', count, _ ). +noun( 'fable', 'fables', both, _ ). +noun( 'fabric', 'fabrics', both, _ ). +noun( 'fabrication', 'fabrications', both, _ ). +noun( 'face', 'faces', count, _ ). +noun( 'face-ache', '-', mass, _ ). +noun( 'face-card', 'face-cards', count, _ ). +noun( 'face-cloth', 'face-cloths', count, _ ). +noun( 'face-cream', 'face-creams', both, _ ). +noun( 'face-lift', 'face-lifts', count, _ ). +noun( 'face-lifting', 'face-liftings', count, _ ). +noun( 'face-pack', 'face-packs', count, _ ). +noun( 'face-powder', 'face-powders', both, _ ). +noun( 'face-saver', 'face-savers', count, _ ). +noun( 'face-saving', '-', mass, _ ). +noun( 'facer', 'facers', count, _ ). +noun( 'facet', 'facets', count, _ ). +noun( 'facetiousness', '-', mass, _ ). +noun( 'facia', 'facias', count, _ ). +noun( 'facial', 'facials', count, _ ). +noun( 'facility', 'facilities', both, _ ). +noun( 'facing', 'facings', count, _ ). +noun( 'facsimile', 'facsimiles', count, _ ). +noun( 'fact', 'facts', both, _ ). +noun( 'faction', 'factions', both, _ ). +noun( 'factor', 'factors', count, _ ). +noun( 'factory', 'factories', count, _ ). +noun( 'factotum', 'factotums', count, _ ). +noun( 'faculty', 'faculties', count, _ ). +noun( 'fad', 'fads', count, _ ). +noun( 'faerie', 'faeries', count, _ ). +noun( 'faery', 'faeries', count, _ ). +noun( 'fag', 'fags', both, _ ). +noun( 'fag-end', 'fag-ends', count, _ ). +noun( 'faggot', 'faggots', count, _ ). +noun( 'faience', '-', mass, _ ). +noun( 'fail', '-', mass, _ ). +noun( 'failing', 'failings', count, _ ). +noun( 'failure', 'failures', both, _ ). +noun( 'faint', 'faints', count, _ ). +noun( 'faintness', '-', mass, _ ). +noun( 'fair', 'fairs', count, _ ). +noun( 'fairground', 'fairgrounds', count, _ ). +noun( 'fairness', '-', mass, _ ). +noun( 'fairway', 'fairways', count, _ ). +noun( 'fairy', 'fairies', count, _ ). +noun( 'fairyland', 'fairylands', count, _ ). +noun( 'fairytale', 'fairytales', count, _ ). +noun( 'fait accompli', 'faits accomplis', count, _ ). +noun( 'faith', 'faiths', both, _ ). +noun( 'faith-healing', '-', mass, _ ). +noun( 'faithfulness', '-', mass, _ ). +noun( 'faithlessness', '-', mass, _ ). +noun( 'fake', 'fakes', count, _ ). +noun( 'fakir', 'fakirs', count, _ ). +noun( 'falcon', 'falcons', count, _ ). +noun( 'falconry', '-', mass, _ ). +noun( 'fall', 'falls', count, _ ). +noun( 'fallacy', 'fallacies', both, _ ). +noun( 'fallibility', '-', mass, _ ). +noun( 'fallout', '-', mass, _ ). +noun( 'fallow', '-', mass, _ ). +noun( 'fallow-deer', 'fallow-deer', count, _ ). +noun( 'falsehood', 'falsehoods', both, _ ). +noun( 'falseness', '-', mass, _ ). +noun( 'falsetto', 'falsettos', count, _ ). +noun( 'falsification', 'falsifications', both, _ ). +noun( 'falsity', 'falsities', both, _ ). +noun( 'fame', '-', mass, _ ). +noun( 'familiar', 'familiars', count, _ ). +noun( 'familiarity', 'familiarities', both, _ ). +noun( 'family', 'families', both, _ ). +noun( 'famine', 'famines', both, _ ). +noun( 'fan', 'fans', count, _ ). +noun( 'fan-belt', 'fan-belts', count, _ ). +noun( 'fanatic', 'fanatics', count, _ ). +noun( 'fanaticism', 'fanaticisms', both, _ ). +noun( 'fancier', 'fanciers', count, _ ). +noun( 'fancy', 'fancies', both, _ ). +noun( 'fandango', 'fandangos', count, _ ). +noun( 'fanfare', 'fanfares', count, _ ). +noun( 'fang', 'fangs', count, _ ). +noun( 'fanlight', 'fanlights', count, _ ). +noun( 'fanny', 'fannies', count, _ ). +noun( 'fantan', '-', mass, _ ). +noun( 'fantasia', 'fantasias', count, _ ). +noun( 'fantasy', 'fantasies', both, _ ). +noun( 'farce', 'farces', both, _ ). +noun( 'fare', 'fares', both, _ ). +noun( 'fare-stage', 'fare-stages', count, _ ). +noun( 'farewell', 'farewells', count, _ ). +noun( 'farm', 'farms', count, _ ). +noun( 'farmer', 'farmers', count, _ ). +noun( 'farmhand', 'farmhands', count, _ ). +noun( 'farmhouse', 'farmhouses', count, _ ). +noun( 'farmstead', 'farmsteads', count, _ ). +noun( 'farmyard', 'farmyards', count, _ ). +noun( 'farrago', 'farragos', count, _ ). +noun( 'farrier', 'farriers', count, _ ). +noun( 'farrow', 'farrows', count, _ ). +noun( 'fart', 'farts', count, _ ). +noun( 'farthing', 'farthings', count, _ ). +noun( 'fascia', 'fascias', count, _ ). +noun( 'fascination', 'fascinations', both, _ ). +noun( 'fascism', '-', mass, _ ). +noun( 'fascist', 'fascists', count, _ ). +noun( 'fashion', 'fashions', both, _ ). +noun( 'fast', 'fasts', count, _ ). +noun( 'fastener', 'fasteners', count, _ ). +noun( 'fastening', 'fastenings', count, _ ). +noun( 'fastidiousness', '-', mass, _ ). +noun( 'fastness', 'fastnesses', both, _ ). +noun( 'fat', 'fats', both, _ ). +noun( 'fatalism', '-', mass, _ ). +noun( 'fatalist', 'fatalists', count, _ ). +noun( 'fatality', 'fatalities', both, _ ). +noun( 'fate', 'fates', both, _ ). +noun( 'fathead', 'fatheads', count, _ ). +noun( 'father', 'fathers', count, _ ). +noun( 'father-in-law', 'fathers-in-law', count, _ ). +noun( 'fatherhood', '-', mass, _ ). +noun( 'fatherland', 'fatherlands', count, _ ). +noun( 'fathom', 'fathoms', count, _ ). +noun( 'fatigue', 'fatigues', both, _ ). +noun( 'fatigue-party', 'fatigue-parties', count, _ ). +noun( 'fatness', '-', mass, _ ). +noun( 'fatuity', 'fatuities', both, _ ). +noun( 'fatuousness', '-', mass, _ ). +noun( 'faucet', 'faucets', count, _ ). +noun( 'fault', 'faults', count, _ ). +noun( 'fault-finder', 'fault-finders', count, _ ). +noun( 'fault-finding', '-', mass, _ ). +noun( 'faun', 'fauns', count, _ ). +noun( 'faux pas', 'faux pas', count, _ ). +noun( 'favour', 'favours', both, _ ). +noun( 'favourite', 'favourites', count, _ ). +noun( 'favouritism', '-', mass, _ ). +noun( 'fawn', 'fawns', count, _ ). +noun( 'fealty', 'fealties', count, _ ). +noun( 'fear', 'fears', both, _ ). +noun( 'fearfulness', '-', mass, _ ). +noun( 'fearlessness', '-', mass, _ ). +noun( 'feasibility', '-', mass, _ ). +noun( 'feast', 'feasts', count, _ ). +noun( 'feast-day', 'feast-days', count, _ ). +noun( 'feat', 'feats', count, _ ). +noun( 'feather', 'feathers', count, _ ). +noun( 'feather-boa', 'feather-boas', count, _ ). +noun( 'featherbed', 'featherbeds', count, _ ). +noun( 'featherweight', 'featherweights', count, _ ). +noun( 'feature', 'features', count, _ ). +noun( 'fecklessness', '-', mass, _ ). +noun( 'fecundity', '-', mass, _ ). +noun( 'federalism', '-', mass, _ ). +noun( 'federalist', 'federalists', count, _ ). +noun( 'federation', 'federations', both, _ ). +noun( 'fee', 'fees', both, _ ). +noun( 'feebleness', '-', mass, _ ). +noun( 'feed', 'feeds', both, _ ). +noun( 'feedback', '-', mass, _ ). +noun( 'feeder', 'feeders', count, _ ). +noun( 'feeding-bottle', 'feeding-bottles', count, _ ). +noun( 'feel', '-', count, _ ). +noun( 'feeler', 'feelers', count, _ ). +noun( 'feeling', 'feelings', both, _ ). +noun( 'feint', 'feints', count, _ ). +noun( 'feldspar', '-', mass, _ ). +noun( 'felicitation', 'felicitations', count, _ ). +noun( 'felicity', 'felicities', both, _ ). +noun( 'fellah', '-', count, _ ). +noun( 'fellow', 'fellows', count, _ ). +noun( 'fellow-feeling', '-', mass, _ ). +noun( 'fellow-traveller', 'fellow-travellers', count, _ ). +noun( 'fellowship', 'fellowships', both, _ ). +noun( 'felon', 'felons', count, _ ). +noun( 'felony', 'felonies', both, _ ). +noun( 'felspar', '-', mass, _ ). +noun( 'felt', '-', mass, _ ). +noun( 'felucca', 'feluccas', count, _ ). +noun( 'fem', '-', proper, _ ). +noun( 'female', 'females', count, _ ). +noun( 'femininity', '-', mass, _ ). +noun( 'feminism', '-', mass, _ ). +noun( 'feminist', 'feminists', count, _ ). +noun( 'femur', 'femurs', count, _ ). +noun( 'fen', 'fens', count, _ ). +noun( 'fence', 'fences', count, _ ). +noun( 'fencer', 'fencers', count, _ ). +noun( 'fencing', '-', mass, _ ). +noun( 'fender', 'fenders', count, _ ). +noun( 'fennel', '-', mass, _ ). +noun( 'feoff', 'feoffs', count, _ ). +noun( 'ferment', 'ferments', count, _ ). +noun( 'fermentation', '-', mass, _ ). +noun( 'fern', 'ferns', count, _ ). +noun( 'ferocity', 'ferocities', both, _ ). +noun( 'ferret', 'ferrets', count, _ ). +noun( 'ferroconcrete', '-', mass, _ ). +noun( 'ferrule', 'ferrules', count, _ ). +noun( 'ferry', 'ferries', count, _ ). +noun( 'ferryboat', 'ferryboats', count, _ ). +noun( 'ferryman', 'ferrymen', count, _ ). +noun( 'fertility', '-', mass, _ ). +noun( 'fertilization', '-', mass, _ ). +noun( 'fertilizer', 'fertilizers', both, _ ). +noun( 'ferule', 'ferules', count, _ ). +noun( 'fervency', '-', mass, _ ). +noun( 'fervour', '-', mass, _ ). +noun( 'festival', 'festivals', count, _ ). +noun( 'festivity', 'festivities', both, _ ). +noun( 'festoon', 'festoons', count, _ ). +noun( 'fete-day', 'fete-days', count, _ ). +noun( 'fetish', 'fetishes', count, _ ). +noun( 'fetlock', 'fetlocks', count, _ ). +noun( 'fetter', 'fetters', count, _ ). +noun( 'fettle', '-', mass, _ ). +noun( 'feud', 'feuds', count, _ ). +noun( 'feudalism', '-', mass, _ ). +noun( 'feudatory', 'feudatories', count, _ ). +noun( 'fever', 'fevers', both, _ ). +noun( 'fewness', '-', mass, _ ). +noun( 'fez', 'fezes', count, _ ). +noun( 'fianc_e', 'fianc_es', count, _ ). +noun( 'fianc_ee', 'fianc_ees', count, _ ). +noun( 'fiasco', 'fiascos', count, _ ). +noun( 'fiat', 'fiats', count, _ ). +noun( 'fib', 'fibs', count, _ ). +noun( 'fibber', 'fibbers', count, _ ). +noun( 'fibbing', '-', mass, _ ). +noun( 'fibre', 'fibres', both, _ ). +noun( 'fibreboard', '-', mass, _ ). +noun( 'fibreglass', '-', mass, _ ). +noun( 'fibrositis', '-', mass, _ ). +noun( 'fibula', 'fibulas', count, _ ). +noun( 'fickleness', '-', mass, _ ). +noun( 'fiction', 'fictions', both, _ ). +noun( 'fiddle', 'fiddles', count, _ ). +noun( 'fiddler', 'fiddlers', count, _ ). +noun( 'fiddlestick', 'fiddlesticks', count, _ ). +noun( 'fidelity', '-', mass, _ ). +noun( 'fidget', 'fidgets', count, _ ). +noun( 'fief', 'fiefs', count, _ ). +noun( 'field', 'fields', count, _ ). +noun( 'field-hospital', 'field-hospitals', count, _ ). +noun( 'field-officer', 'field-officers', count, _ ). +noun( 'fielder', 'fielders', count, _ ). +noun( 'fieldsman', 'fieldsmen', count, _ ). +noun( 'fieldwork', 'fieldworks', both, _ ). +noun( 'fiend', 'fiends', count, _ ). +noun( 'fierceness', '-', mass, _ ). +noun( 'fieriness', '-', mass, _ ). +noun( 'fiesta', 'fiestas', count, _ ). +noun( 'fife', 'fifes', count, _ ). +noun( 'fifteen', 'fifteens', count, _ ). +noun( 'fifteenth', 'fifteenths', count, _ ). +noun( 'fifth', 'fifths', count, _ ). +noun( 'fiftieth', 'fiftieths', count, _ ). +noun( 'fifty', 'fifties', count, _ ). +noun( 'fig', 'figs', count, _ ). +noun( 'fig', '-', count, _ ). +noun( 'fig-leaf', 'fig-leaves', count, _ ). +noun( 'fight', 'fights', both, _ ). +noun( 'fighter', 'fighters', count, _ ). +noun( 'fighting', '-', mass, _ ). +noun( 'figment', 'figments', count, _ ). +noun( 'figure', 'figures', count, _ ). +noun( 'figurehead', 'figureheads', count, _ ). +noun( 'filament', 'filaments', count, _ ). +noun( 'filature', 'filatures', count, _ ). +noun( 'filbert', 'filberts', count, _ ). +noun( 'file', 'files', count, _ ). +noun( 'filibuster', 'filibusters', count, _ ). +noun( 'filigree', '-', mass, _ ). +noun( 'fill', 'fills', both, _ ). +noun( 'fillet', 'fillets', count, _ ). +noun( 'filling', 'fillings', both, _ ). +noun( 'fillip', 'fillips', count, _ ). +noun( 'filly', 'fillies', count, _ ). +noun( 'film', 'films', both, _ ). +noun( 'film-star', 'film-stars', count, _ ). +noun( 'filter', 'filters', count, _ ). +noun( 'filth', '-', mass, _ ). +noun( 'filthiness', '-', mass, _ ). +noun( 'filtrate', 'filtrates', count, _ ). +noun( 'filtration', '-', mass, _ ). +noun( 'fin', 'fins', count, _ ). +noun( 'final', 'finals', count, _ ). +noun( 'finale', 'finales', count, _ ). +noun( 'finalist', 'finalists', count, _ ). +noun( 'finality', '-', mass, _ ). +noun( 'finance', 'finances', both, _ ). +noun( 'financier', 'financiers', count, _ ). +noun( 'finch', 'finches', count, _ ). +noun( 'find', 'finds', count, _ ). +noun( 'finder', 'finders', count, _ ). +noun( 'finding', 'findings', count, _ ). +noun( 'fine', 'fines', count, _ ). +noun( 'fineness', '-', mass, _ ). +noun( 'finery', '-', mass, _ ). +noun( 'finesse', 'finesses', both, _ ). +noun( 'finger', 'fingers', count, _ ). +noun( 'finger-alphabet', 'finger-alphabets', count, _ ). +noun( 'finger-bowl', 'finger-bowls', count, _ ). +noun( 'finger-plate', 'finger-plates', count, _ ). +noun( 'finger-post', 'finger-posts', count, _ ). +noun( 'fingerboard', 'fingerboards', count, _ ). +noun( 'fingermark', 'fingermarks', count, _ ). +noun( 'fingernail', 'fingernails', count, _ ). +noun( 'fingerprint', 'fingerprints', count, _ ). +noun( 'fingerstall', 'fingerstalls', count, _ ). +noun( 'fingertip', 'fingertips', count, _ ). +noun( 'finis', '-', count, _ ). +noun( 'finish', 'finishes', both, _ ). +noun( 'finnan', '-', mass, _ ). +noun( 'finnan haddie', '-', mass, _ ). +noun( 'finnan haddock', '-', mass, _ ). +noun( 'fiord', 'fiords', count, _ ). +noun( 'fir', 'firs', both, _ ). +noun( 'fir-cone', 'fir-cones', count, _ ). +noun( 'fire', 'fires', both, _ ). +noun( 'fire-alarm', 'fire-alarms', count, _ ). +noun( 'fire-brigade', 'fire-brigades', count, _ ). +noun( 'fire-control', '-', mass, _ ). +noun( 'fire-eater', 'fire-eaters', count, _ ). +noun( 'fire-engine', 'fire-engines', count, _ ). +noun( 'fire-escape', 'fire-escapes', count, _ ). +noun( 'fire-extinguisher', 'fire-extinguishers', count, _ ). +noun( 'fire-fighter', 'fire-fighters', count, _ ). +noun( 'fire-hose', 'fire-hoses', count, _ ). +noun( 'fire-power', '-', mass, _ ). +noun( 'fire-raising', '-', mass, _ ). +noun( 'fire-walker', 'fire-walkers', count, _ ). +noun( 'fire-walking', '-', mass, _ ). +noun( 'fire-watcher', 'fire-watchers', count, _ ). +noun( 'fire-watching', '-', mass, _ ). +noun( 'firearm', 'firearms', count, _ ). +noun( 'fireball', 'fireballs', count, _ ). +noun( 'firebird', 'firebirds', count, _ ). +noun( 'firebomb', 'firebombs', count, _ ). +noun( 'firebox', 'fireboxes', count, _ ). +noun( 'firebrand', 'firebrands', count, _ ). +noun( 'firebreak', 'firebreaks', count, _ ). +noun( 'firebrick', 'firebricks', count, _ ). +noun( 'firebug', 'firebugs', count, _ ). +noun( 'fireclay', '-', mass, _ ). +noun( 'firecracker', 'firecrackers', count, _ ). +noun( 'firedamp', '-', mass, _ ). +noun( 'firedog', 'firedogs', count, _ ). +noun( 'firefly', 'fireflies', count, _ ). +noun( 'fireguard', 'fireguards', count, _ ). +noun( 'firelight', 'firelights', count, _ ). +noun( 'firelighter', 'firelighters', count, _ ). +noun( 'fireman', 'firemen', count, _ ). +noun( 'fireplace', 'fireplaces', count, _ ). +noun( 'fireside', 'firesides', count, _ ). +noun( 'firestone', '-', mass, _ ). +noun( 'firewater', '-', mass, _ ). +noun( 'firewood', '-', mass, _ ). +noun( 'firework', 'fireworks', count, _ ). +noun( 'firing-line', 'firing-lines', count, _ ). +noun( 'firing-party', 'firing-parties', count, _ ). +noun( 'firing-squad', 'firing-squads', count, _ ). +noun( 'firkin', 'firkins', count, _ ). +noun( 'firm', 'firms', count, _ ). +noun( 'firmament', 'firmaments', count, _ ). +noun( 'firmness', '-', mass, _ ). +noun( 'first', 'firsts', count, _ ). +noun( 'first-nighter', 'first-nighters', count, _ ). +noun( 'firstborn', 'firstborns', count, _ ). +noun( 'firth', 'firths', count, _ ). +noun( 'fish', 'fish', both, _ ). +noun( 'fish-hook', 'fish-hooks', count, _ ). +noun( 'fish-knife', 'fish-knives', count, _ ). +noun( 'fish-slice', 'fish-slices', count, _ ). +noun( 'fishball', 'fishballs', count, _ ). +noun( 'fishbone', 'fishbones', count, _ ). +noun( 'fishcake', 'fishcakes', count, _ ). +noun( 'fisher', 'fishers', count, _ ). +noun( 'fisherman', 'fishermen', count, _ ). +noun( 'fishery', 'fisheries', count, _ ). +noun( 'fishing', '-', mass, _ ). +noun( 'fishing-line', 'fishing-lines', count, _ ). +noun( 'fishing-rod', 'fishing-rods', count, _ ). +noun( 'fishing-tackle', '-', mass, _ ). +noun( 'fishmonger', 'fishmongers', count, _ ). +noun( 'fishpaste', 'fishpastes', both, _ ). +noun( 'fishplate', 'fishplates', count, _ ). +noun( 'fishwife', 'fishwives', count, _ ). +noun( 'fission', '-', mass, _ ). +noun( 'fissure', 'fissures', count, _ ). +noun( 'fist', 'fists', count, _ ). +noun( 'fistula', 'fistulas', count, _ ). +noun( 'fit', 'fits', count, _ ). +noun( 'fitment', 'fitments', count, _ ). +noun( 'fitness', '-', mass, _ ). +noun( 'fitter', 'fitters', count, _ ). +noun( 'fitting', 'fittings', count, _ ). +noun( 'five', 'fives', count, _ ). +noun( 'fivepence', 'fivepences', count, _ ). +noun( 'fiver', 'fivers', count, _ ). +noun( 'fives', 'fives', mass, _ ). +noun( 'fix', 'fixes', count, _ ). +noun( 'fixation', 'fixations', both, _ ). +noun( 'fixative', 'fixatives', count, _ ). +noun( 'fixture', 'fixtures', count, _ ). +noun( 'fizz', '-', mass, _ ). +noun( 'fjord', 'fjords', count, _ ). +noun( 'flabbiness', '-', mass, _ ). +noun( 'flaccidity', '-', mass, _ ). +noun( 'flag', 'flags', count, _ ). +noun( 'flag-captain', 'flag-captains', count, _ ). +noun( 'flag-day', 'flag-days', count, _ ). +noun( 'flagellant', 'flagellants', count, _ ). +noun( 'flagellation', 'flagellations', count, _ ). +noun( 'flageolet', 'flageolets', count, _ ). +noun( 'flagon', 'flagons', count, _ ). +noun( 'flagpole', 'flagpoles', count, _ ). +noun( 'flagship', 'flagships', count, _ ). +noun( 'flagstaff', 'flagstaffs', count, _ ). +noun( 'flagstone', 'flagstones', count, _ ). +noun( 'flail', 'flails', count, _ ). +noun( 'flair', 'flairs', both, _ ). +noun( 'flak', '-', mass, _ ). +noun( 'flake', 'flakes', count, _ ). +noun( 'flakiness', '-', mass, _ ). +noun( 'flambeau', 'flambeaus', count, _ ). +noun( 'flamboyance', '-', mass, _ ). +noun( 'flame', 'flames', both, _ ). +noun( 'flamethrower', 'flamethrowers', count, _ ). +noun( 'flamingo', 'flamingos', count, _ ). +noun( 'flan', 'flans', count, _ ). +noun( 'flange', 'flanges', count, _ ). +noun( 'flank', 'flanks', count, _ ). +noun( 'flannel', 'flannels', both, _ ). +noun( 'flannelette', '-', mass, _ ). +noun( 'flap', 'flaps', count, _ ). +noun( 'flapjack', 'flapjacks', both, _ ). +noun( 'flapper', 'flappers', count, _ ). +noun( 'flare', 'flares', both, _ ). +noun( 'flare-path', 'flare-paths', count, _ ). +noun( 'flare-up', 'flare-ups', count, _ ). +noun( 'flash', 'flashes', count, _ ). +noun( 'flashback', 'flashbacks', count, _ ). +noun( 'flashbulb', 'flashbulbs', count, _ ). +noun( 'flashgun', 'flashguns', count, _ ). +noun( 'flashlight', 'flashlights', count, _ ). +noun( 'flashpoint', 'flashpoints', count, _ ). +noun( 'flask', 'flasks', count, _ ). +noun( 'flat', 'flats', count, _ ). +noun( 'flat-car', 'flat-cars', count, _ ). +noun( 'flat-iron', 'flat-irons', count, _ ). +noun( 'flatfish', 'flatfish', count, _ ). +noun( 'flatlet', 'flatlets', count, _ ). +noun( 'flatness', '-', mass, _ ). +noun( 'flatterer', 'flatterers', count, _ ). +noun( 'flattery', 'flatteries', both, _ ). +noun( 'flattop', 'flattops', count, _ ). +noun( 'flatulence', '-', mass, _ ). +noun( 'flautist', 'flautists', count, _ ). +noun( 'flavour', 'flavours', both, _ ). +noun( 'flavouring', 'flavourings', both, _ ). +noun( 'flaw', 'flaws', count, _ ). +noun( 'flax', '-', mass, _ ). +noun( 'flea', 'fleas', count, _ ). +noun( 'flea-bite', 'flea-bites', count, _ ). +noun( 'fleapit', 'fleapits', count, _ ). +noun( 'fleck', 'flecks', count, _ ). +noun( 'fledgeling', 'fledgelings', count, _ ). +noun( 'fledgling', 'fledglings', count, _ ). +noun( 'fleece', 'fleeces', both, _ ). +noun( 'fleet', 'fleets', count, _ ). +noun( 'fleetness', '-', mass, _ ). +noun( 'flesh', '-', mass, _ ). +noun( 'flesh-wound', 'flesh-wounds', count, _ ). +noun( 'fleur-de-lis', 'fleurs-de-lis', count, _ ). +noun( 'fleur-de-lys', 'fleurs-de-lys', count, _ ). +noun( 'flex', 'flexes', both, _ ). +noun( 'flexibility', '-', mass, _ ). +noun( 'flibbertigibbet', 'flibbertigibbets', count, _ ). +noun( 'flick', 'flicks', count, _ ). +noun( 'flick-knife', 'flick-knives', count, _ ). +noun( 'flicker', 'flickers', count, _ ). +noun( 'flier', 'fliers', count, _ ). +noun( 'flight', 'flights', both, _ ). +noun( 'flimsiness', '-', mass, _ ). +noun( 'flimsy', '-', mass, _ ). +noun( 'fling', 'flings', count, _ ). +noun( 'flint', 'flints', both, _ ). +noun( 'flintstone', '-', mass, _ ). +noun( 'flip', 'flips', count, _ ). +noun( 'flippancy', 'flippancies', both, _ ). +noun( 'flipper', 'flippers', count, _ ). +noun( 'flirt', 'flirts', count, _ ). +noun( 'flirtation', 'flirtations', both, _ ). +noun( 'flit', 'flits', count, _ ). +noun( 'float', 'floats', count, _ ). +noun( 'floatation', 'floatations', both, _ ). +noun( 'flock', 'flocks', count, _ ). +noun( 'floe', 'floes', count, _ ). +noun( 'flogging', 'floggings', both, _ ). +noun( 'flood', 'floods', count, _ ). +noun( 'flood-tide', 'flood-tides', count, _ ). +noun( 'floodgate', 'floodgates', count, _ ). +noun( 'floor', 'floors', count, _ ). +noun( 'floor-walker', 'floor-walkers', count, _ ). +noun( 'floorboard', 'floorboards', count, _ ). +noun( 'flooring', '-', mass, _ ). +noun( 'floozie', 'floozies', count, _ ). +noun( 'floozy', 'floozies', count, _ ). +noun( 'flop', 'flops', count, _ ). +noun( 'floriculture', '-', mass, _ ). +noun( 'florin', 'florins', count, _ ). +noun( 'florist', 'florists', count, _ ). +noun( 'floss', '-', mass, _ ). +noun( 'flotation', 'flotations', both, _ ). +noun( 'flotilla', 'flotillas', count, _ ). +noun( 'flotsam', '-', mass, _ ). +noun( 'flounce', 'flounces', count, _ ). +noun( 'flounder', 'flounders', count, _ ). +noun( 'flour', '-', mass, _ ). +noun( 'flourish', 'flourishes', count, _ ). +noun( 'flow', '-', count, _ ). +noun( 'flower', 'flowers', count, _ ). +noun( 'flower-girl', 'flower-girls', count, _ ). +noun( 'flowerbed', 'flowerbeds', count, _ ). +noun( 'flowerpot', 'flowerpots', count, _ ). +noun( 'flu', '-', mass, _ ). +noun( 'fluctuation', 'fluctuations', both, _ ). +noun( 'flue', 'flues', count, _ ). +noun( 'fluency', '-', mass, _ ). +noun( 'fluff', '-', mass, _ ). +noun( 'fluid', 'fluids', both, _ ). +noun( 'fluidity', 'fluidities', both, _ ). +noun( 'fluke', 'flukes', count, _ ). +noun( 'flume', 'flumes', count, _ ). +noun( 'flunkey', 'flunkeys', count, _ ). +noun( 'flunky', 'flunkies', count, _ ). +noun( 'fluorescence', 'fluorescences', both, _ ). +noun( 'fluoridation', 'fluoridations', count, _ ). +noun( 'fluoride', 'fluorides', both, _ ). +noun( 'fluoridization', 'fluoridizations', count, _ ). +noun( 'fluorine', '-', mass, _ ). +noun( 'flurry', 'flurries', count, _ ). +noun( 'flush', 'flushes', both, _ ). +noun( 'fluster', 'flusters', count, _ ). +noun( 'flute', 'flutes', count, _ ). +noun( 'fluting', '-', mass, _ ). +noun( 'flutist', 'flutists', count, _ ). +noun( 'flutter', 'flutters', both, _ ). +noun( 'flux', 'fluxes', both, _ ). +noun( 'fly', 'flies', count, _ ). +noun( 'fly-fishing', '-', mass, _ ). +noun( 'fly-swat', 'fly-swats', count, _ ). +noun( 'fly-swatter', 'fly-swatters', count, _ ). +noun( 'flycatcher', 'flycatchers', count, _ ). +noun( 'flyer', 'flyers', count, _ ). +noun( 'flying-bomb', 'flying-bombs', count, _ ). +noun( 'flying-fish', 'flying-fish', count, _ ). +noun( 'flying-fox', 'flying-foxes', count, _ ). +noun( 'flying-squad', 'flying-squads', count, _ ). +noun( 'flyleaf', 'flyleaves', count, _ ). +noun( 'flyover', 'flyovers', count, _ ). +noun( 'flypaper', 'flypapers', count, _ ). +noun( 'flypast', 'flypasts', count, _ ). +noun( 'flytrap', 'flytraps', count, _ ). +noun( 'flyweight', 'flyweights', count, _ ). +noun( 'flywheel', 'flywheels', count, _ ). +noun( 'fo\'c\'sle', 'fo\'c\'sles', count, _ ). +noun( 'foal', 'foals', count, _ ). +noun( 'foam', 'foams', both, _ ). +noun( 'foam-rubber', '-', mass, _ ). +noun( 'focus', 'focuses', count, _ ). +noun( 'fodder', '-', mass, _ ). +noun( 'foe', 'foes', count, _ ). +noun( 'foetus', 'foetuses', count, _ ). +noun( 'fog', 'fogs', both, _ ). +noun( 'fogbank', 'fogbanks', count, _ ). +noun( 'fogey', 'fogeys', count, _ ). +noun( 'foghorn', 'foghorns', count, _ ). +noun( 'foglamp', 'foglamps', count, _ ). +noun( 'fogsignal', 'fogsignals', count, _ ). +noun( 'foible', 'foibles', count, _ ). +noun( 'foil', 'foils', both, _ ). +noun( 'fold', 'folds', count, _ ). +noun( 'folder', 'folders', count, _ ). +noun( 'foliage', '-', mass, _ ). +noun( 'folio', 'folios', count, _ ). +noun( 'folk', 'folks', count, _ ). +noun( 'folk-dance', 'folk-dances', count, _ ). +noun( 'folklore', '-', mass, _ ). +noun( 'folksong', 'folksongs', count, _ ). +noun( 'folktale', 'folktales', count, _ ). +noun( 'follow-on', 'follow-ons', count, _ ). +noun( 'follow-through', 'follow-throughs', count, _ ). +noun( 'follow-up', 'follow-ups', count, _ ). +noun( 'follower', 'followers', count, _ ). +noun( 'following', 'followings', count, _ ). +noun( 'folly', 'follies', both, _ ). +noun( 'fomentation', 'fomentations', both, _ ). +noun( 'fondant', 'fondants', count, _ ). +noun( 'fondness', '-', mass, _ ). +noun( 'font', 'fonts', count, _ ). +noun( 'food', 'foods', both, _ ). +noun( 'foodstuff', 'foodstuffs', count, _ ). +noun( 'fool', 'fools', count, _ ). +noun( 'foolery', '-', mass, _ ). +noun( 'foolhardiness', '-', mass, _ ). +noun( 'foolishness', '-', mass, _ ). +noun( 'foolscap', '-', mass, _ ). +noun( 'foot', 'feet', count, _ ). +noun( 'foot-and-mouth', '-', mass, _ ). +noun( 'foot-bath', 'foot-baths', count, _ ). +noun( 'foot-pound', 'foot-pounds', count, _ ). +noun( 'foot-race', 'foot-races', count, _ ). +noun( 'foot-rot', '-', mass, _ ). +noun( 'footage', '-', mass, _ ). +noun( 'football', 'footballs', both, _ ). +noun( 'footballer', 'footballers', count, _ ). +noun( 'footboard', 'footboards', count, _ ). +noun( 'footbridge', 'footbridges', count, _ ). +noun( 'footer', 'footers', count, _ ). +noun( 'footfall', 'footfalls', count, _ ). +noun( 'footfault', 'footfaults', count, _ ). +noun( 'foothold', 'footholds', count, _ ). +noun( 'footing', '-', count, _ ). +noun( 'footman', 'footmen', count, _ ). +noun( 'footmark', 'footmarks', count, _ ). +noun( 'footnote', 'footnotes', count, _ ). +noun( 'footpath', 'footpaths', count, _ ). +noun( 'footplate', 'footplates', count, _ ). +noun( 'footprint', 'footprints', count, _ ). +noun( 'footslogger', 'footsloggers', count, _ ). +noun( 'footstep', 'footsteps', count, _ ). +noun( 'footstool', 'footstools', count, _ ). +noun( 'footwear', '-', mass, _ ). +noun( 'footwork', '-', mass, _ ). +noun( 'fop', 'fops', count, _ ). +noun( 'forage', '-', mass, _ ). +noun( 'foray', 'forays', count, _ ). +noun( 'forbear', 'forbears', count, _ ). +noun( 'forbearance', '-', mass, _ ). +noun( 'force', 'forces', both, _ ). +noun( 'force majeure', '-', mass, _ ). +noun( 'forcefulness', '-', mass, _ ). +noun( 'forcemeat', '-', mass, _ ). +noun( 'ford', 'fords', count, _ ). +noun( 'fore', '-', mass, _ ). +noun( 'forearm', 'forearms', count, _ ). +noun( 'foreboding', 'forebodings', both, _ ). +noun( 'forecast', 'forecasts', count, _ ). +noun( 'forecaster', 'forecasters', count, _ ). +noun( 'forecastle', 'forecastles', count, _ ). +noun( 'foreclosure', 'foreclosures', both, _ ). +noun( 'forecourt', 'forecourts', count, _ ). +noun( 'forefather', 'forefathers', count, _ ). +noun( 'forefinger', 'forefingers', count, _ ). +noun( 'forefoot', 'forefeet', count, _ ). +noun( 'forefront', 'forefronts', count, _ ). +noun( 'foreground', 'foregrounds', count, _ ). +noun( 'forehead', 'foreheads', count, _ ). +noun( 'foreigner', 'foreigners', count, _ ). +noun( 'foreknowledge', '-', mass, _ ). +noun( 'foreland', 'forelands', count, _ ). +noun( 'foreleg', 'forelegs', count, _ ). +noun( 'forelock', 'forelocks', count, _ ). +noun( 'foreman', 'foremen', count, _ ). +noun( 'foremast', 'foremasts', count, _ ). +noun( 'forename', 'forenames', count, _ ). +noun( 'forenoon', 'forenoons', count, _ ). +noun( 'forerunner', 'forerunners', count, _ ). +noun( 'foresail', 'foresails', count, _ ). +noun( 'foreshore', 'foreshores', count, _ ). +noun( 'foresight', '-', mass, _ ). +noun( 'foreskin', 'foreskins', count, _ ). +noun( 'forest', 'forests', both, _ ). +noun( 'forester', 'foresters', count, _ ). +noun( 'forestry', '-', mass, _ ). +noun( 'foretaste', 'foretastes', count, _ ). +noun( 'forethought', '-', mass, _ ). +noun( 'foretop', 'foretops', count, _ ). +noun( 'forewoman', 'forewomen', count, _ ). +noun( 'foreword', 'forewords', count, _ ). +noun( 'forfeit', 'forfeits', count, _ ). +noun( 'forfeiture', '-', mass, _ ). +noun( 'forge', 'forges', count, _ ). +noun( 'forger', 'forgers', count, _ ). +noun( 'forgery', 'forgeries', both, _ ). +noun( 'forget-me-not', 'forget-me-nots', count, _ ). +noun( 'forgetfulness', '-', mass, _ ). +noun( 'forging', 'forgings', count, _ ). +noun( 'forgiveness', '-', mass, _ ). +noun( 'fork', 'forks', count, _ ). +noun( 'forlornness', '-', mass, _ ). +noun( 'form', 'forms', both, _ ). +noun( 'formaldehyde', '-', mass, _ ). +noun( 'formalin', '-', mass, _ ). +noun( 'formalism', '-', mass, _ ). +noun( 'formality', 'formalities', both, _ ). +noun( 'format', 'formats', count, _ ). +noun( 'formation', 'formations', both, _ ). +noun( 'formula', 'formulas', count, _ ). +noun( 'formulation', 'formulations', both, _ ). +noun( 'fornication', '-', mass, _ ). +noun( 'forsythia', '-', mass, _ ). +noun( 'fort', 'forts', count, _ ). +noun( 'forte', 'fortes', count, _ ). +noun( 'fortieth', 'fortieths', count, _ ). +noun( 'fortification', 'fortifications', both, _ ). +noun( 'fortitude', '-', mass, _ ). +noun( 'fortnight', 'fortnights', count, _ ). +noun( 'fortress', 'fortresses', count, _ ). +noun( 'fortune', 'fortunes', both, _ ). +noun( 'forty', 'forties', count, _ ). +noun( 'forum', 'forums', count, _ ). +noun( 'forward', 'forwards', count, _ ). +noun( 'forwardness', '-', mass, _ ). +noun( 'fosse', 'fosses', count, _ ). +noun( 'fossil', 'fossils', count, _ ). +noun( 'fossilization', 'fossilizations', both, _ ). +noun( 'foster-brother', 'foster-brothers', count, _ ). +noun( 'foster-child', 'foster-children', count, _ ). +noun( 'foster-father', 'foster-fathers', count, _ ). +noun( 'foster-mother', 'foster-mothers', count, _ ). +noun( 'foster-parent', 'foster-parents', count, _ ). +noun( 'foster-sister', 'foster-sisters', count, _ ). +noun( 'foul', 'fouls', both, _ ). +noun( 'foulness', '-', mass, _ ). +noun( 'foundation', 'foundations', both, _ ). +noun( 'foundation-stone', 'foundation-stones', count, _ ). +noun( 'founder', 'founders', count, _ ). +noun( 'foundling', 'foundlings', count, _ ). +noun( 'foundress', 'foundresses', count, _ ). +noun( 'foundry', 'foundries', count, _ ). +noun( 'fount', 'founts', count, _ ). +noun( 'fountain', 'fountains', count, _ ). +noun( 'fountain-head', 'fountain-heads', count, _ ). +noun( 'fountain-pen', 'fountain-pens', count, _ ). +noun( 'four', 'fours', count, _ ). +noun( 'four-in-hand', 'four-in-hands', count, _ ). +noun( 'four-poster', 'four-posters', count, _ ). +noun( 'four-pounder', 'four-pounders', count, _ ). +noun( 'four-wheeler', 'four-wheelers', count, _ ). +noun( 'fourpence', 'fourpences', count, _ ). +noun( 'fourscore', '-', count, _ ). +noun( 'foursome', 'foursomes', count, _ ). +noun( 'fourteen', 'fourteens', count, _ ). +noun( 'fourteenth', 'fourteenths', count, _ ). +noun( 'fourth', 'fourths', count, _ ). +noun( 'fowl', 'fowls', both, _ ). +noun( 'fowl-run', 'fowl-runs', count, _ ). +noun( 'fowler', 'fowlers', count, _ ). +noun( 'fowlingpiece', 'fowlingpieces', count, _ ). +noun( 'fowlpest', '-', mass, _ ). +noun( 'fox', 'foxes', count, _ ). +noun( 'fox-terrier', 'fox-terriers', count, _ ). +noun( 'foxglove', 'foxgloves', count, _ ). +noun( 'foxhole', 'foxholes', count, _ ). +noun( 'foxhound', 'foxhounds', count, _ ). +noun( 'foxhunt', 'foxhunts', count, _ ). +noun( 'foxhunter', 'foxhunters', count, _ ). +noun( 'foxtrot', 'foxtrots', count, _ ). +noun( 'foyer', 'foyers', count, _ ). +noun( 'fracas', '-', count, _ ). +noun( 'fraction', 'fractions', count, _ ). +noun( 'fractiousness', '-', mass, _ ). +noun( 'fracture', 'fractures', both, _ ). +noun( 'fragility', '-', mass, _ ). +noun( 'fragment', 'fragments', count, _ ). +noun( 'fragmentation', 'fragmentations', both, _ ). +noun( 'fragrance', 'fragrances', both, _ ). +noun( 'frailty', 'frailties', both, _ ). +noun( 'frame', 'frames', count, _ ). +noun( 'frame-up', 'frame-ups', count, _ ). +noun( 'framework', 'frameworks', count, _ ). +noun( 'franc', 'francs', count, _ ). +noun( 'franchise', 'franchises', both, _ ). +noun( 'frankfurter', 'frankfurters', count, _ ). +noun( 'frankincense', '-', mass, _ ). +noun( 'franking-machine', 'franking-machines', count, _ ). +noun( 'franklin', 'franklins', count, _ ). +noun( 'frankness', '-', mass, _ ). +noun( 'fraternity', 'fraternities', both, _ ). +noun( 'fraternization', '-', mass, _ ). +noun( 'fratricide', 'fratricides', both, _ ). +noun( 'fraud', 'frauds', both, _ ). +noun( 'fray', 'frays', count, _ ). +noun( 'frazzle', 'frazzles', count, _ ). +noun( 'freak', 'freaks', count, _ ). +noun( 'freak-out', 'freak-outs', count, _ ). +noun( 'freakishness', '-', mass, _ ). +noun( 'freckle', 'freckles', count, _ ). +noun( 'free-for-all', 'free-for-alls', count, _ ). +noun( 'free-list', 'free-lists', count, _ ). +noun( 'free-liver', 'free-livers', count, _ ). +noun( 'free-living', '-', mass, _ ). +noun( 'free-thinker', 'free-thinkers', count, _ ). +noun( 'free-thought', '-', mass, _ ). +noun( 'free-trader', 'free-traders', count, _ ). +noun( 'freebooter', 'freebooters', count, _ ). +noun( 'freedman', 'freedmen', count, _ ). +noun( 'freedom', 'freedoms', both, _ ). +noun( 'freehold', 'freeholds', count, _ ). +noun( 'freeholder', 'freeholders', count, _ ). +noun( 'freelance', 'freelances', count, _ ). +noun( 'freeman', 'freemen', count, _ ). +noun( 'freesia', 'freesias', count, _ ). +noun( 'freestone', '-', mass, _ ). +noun( 'freestyle', '-', mass, _ ). +noun( 'freeway', 'freeways', count, _ ). +noun( 'freeze', 'freezes', count, _ ). +noun( 'freezer', 'freezers', count, _ ). +noun( 'freezing-mixture', 'freezing-mixtures', count, _ ). +noun( 'freezing-point', 'freezing-points', count, _ ). +noun( 'freight', '-', mass, _ ). +noun( 'freight-train', 'freight-trains', count, _ ). +noun( 'freighter', 'freighters', count, _ ). +noun( 'freightliner', 'freightliners', count, _ ). +noun( 'frenzy', '-', mass, _ ). +noun( 'frequency', 'frequencies', both, _ ). +noun( 'fresco', 'frescos', both, _ ). +noun( 'fresher', 'freshers', count, _ ). +noun( 'freshman', 'freshmen', count, _ ). +noun( 'freshness', '-', mass, _ ). +noun( 'fret', 'frets', count, _ ). +noun( 'fretsaw', 'fretsaws', count, _ ). +noun( 'fretwork', '-', mass, _ ). +noun( 'friability', '-', mass, _ ). +noun( 'friar', 'friars', count, _ ). +noun( 'fricassee', 'fricassees', both, _ ). +noun( 'fricative', 'fricatives', count, _ ). +noun( 'friction', 'frictions', both, _ ). +noun( 'fridge', 'fridges', count, _ ). +noun( 'friend', 'friends', count, _ ). +noun( 'friendlessness', '-', mass, _ ). +noun( 'friendliness', '-', mass, _ ). +noun( 'friendship', 'friendships', both, _ ). +noun( 'frier', 'friers', count, _ ). +noun( 'frieze', 'friezes', count, _ ). +noun( 'frigate', 'frigates', count, _ ). +noun( 'fright', 'frights', both, _ ). +noun( 'frightfulness', '-', mass, _ ). +noun( 'frigidity', '-', mass, _ ). +noun( 'frill', 'frills', count, _ ). +noun( 'fringe', 'fringes', count, _ ). +noun( 'frippery', 'fripperies', both, _ ). +noun( 'frisson', 'frissons', count, _ ). +noun( 'fritter', 'fritters', count, _ ). +noun( 'frivolity', 'frivolities', both, _ ). +noun( 'frock', 'frocks', count, _ ). +noun( 'frock-coat', 'frock-coats', count, _ ). +noun( 'frog', 'frogs', count, _ ). +noun( 'frogman', 'frogmen', count, _ ). +noun( 'frolic', 'frolics', count, _ ). +noun( 'frond', 'fronds', count, _ ). +noun( 'front', 'fronts', both, _ ). +noun( 'front-bench', 'front-benches', count, _ ). +noun( 'front-bencher', 'front-benchers', count, _ ). +noun( 'frontage', 'frontages', count, _ ). +noun( 'frontier', 'frontiers', count, _ ). +noun( 'frontiersman', 'frontiersmen', count, _ ). +noun( 'frontispiece', 'frontispieces', count, _ ). +noun( 'frost', 'frosts', both, _ ). +noun( 'frostbite', '-', mass, _ ). +noun( 'frostiness', '-', mass, _ ). +noun( 'frosting', '-', mass, _ ). +noun( 'froth', '-', mass, _ ). +noun( 'frothiness', '-', mass, _ ). +noun( 'frown', 'frowns', count, _ ). +noun( 'fructification', '-', mass, _ ). +noun( 'frugality', 'frugalities', both, _ ). +noun( 'fruit', 'fruits', both, _ ). +noun( 'fruit-fly', 'fruit-flies', count, _ ). +noun( 'fruitcake', 'fruitcakes', count, _ ). +noun( 'fruiterer', 'fruiterers', count, _ ). +noun( 'fruitfulness', '-', mass, _ ). +noun( 'fruition', '-', mass, _ ). +noun( 'fruitlessness', '-', mass, _ ). +noun( 'frump', 'frumps', count, _ ). +noun( 'frustration', 'frustrations', both, _ ). +noun( 'fry', 'fry', count, _ ). +noun( 'fry-pan', 'fry-pans', count, _ ). +noun( 'fryer', 'fryers', count, _ ). +noun( 'frying-pan', 'frying-pans', count, _ ). +noun( 'ft', 'ft', count, _ ). +noun( 'fuchsia', 'fuchsias', count, _ ). +noun( 'fuck-all', '-', mass, _ ). +noun( 'fucker', 'fuckers', count, _ ). +noun( 'fuddy-duddy', 'fuddy-duddies', count, _ ). +noun( 'fudge', 'fudges', both, _ ). +noun( 'fuel', 'fuels', both, _ ). +noun( 'fug', 'fugs', count, _ ). +noun( 'fugitive', 'fugitives', count, _ ). +noun( 'fugue', 'fugues', count, _ ). +noun( 'fulcrum', 'fulcrums', count, _ ). +noun( 'fulfilment', 'fulfilments', count, _ ). +noun( 'fullback', 'fullbacks', count, _ ). +noun( 'fuller', 'fullers', count, _ ). +noun( 'fullness', '-', mass, _ ). +noun( 'fulmar', 'fulmars', count, _ ). +noun( 'fulmination', 'fulminations', both, _ ). +noun( 'fulsomeness', '-', mass, _ ). +noun( 'fumbler', 'fumblers', count, _ ). +noun( 'fume', 'fumes', count, _ ). +noun( 'fumigation', 'fumigations', count, _ ). +noun( 'fun', '-', mass, _ ). +noun( 'function', 'functions', count, _ ). +noun( 'functionalism', '-', mass, _ ). +noun( 'functionalist', 'functionalists', count, _ ). +noun( 'functionary', 'functionaries', count, _ ). +noun( 'fund', 'funds', count, _ ). +noun( 'fundamental', 'fundamentals', count, _ ). +noun( 'fundamentalism', '-', mass, _ ). +noun( 'fundamentalist', 'fundamentalists', count, _ ). +noun( 'funeral', 'funerals', count, _ ). +noun( 'funfair', 'funfairs', count, _ ). +noun( 'fungicide', 'fungicides', both, _ ). +noun( 'fungus', 'funguses', both, _ ). +noun( 'funicular', 'funiculars', count, _ ). +noun( 'funk', 'funks', count, _ ). +noun( 'funnel', 'funnels', count, _ ). +noun( 'funniness', '-', mass, _ ). +noun( 'funny-bone', 'funny-bones', count, _ ). +noun( 'fur', 'furs', both, _ ). +noun( 'furbelow', 'furbelows', count, _ ). +noun( 'furlong', 'furlongs', count, _ ). +noun( 'furlough', 'furloughs', both, _ ). +noun( 'furnace', 'furnaces', count, _ ). +noun( 'furniture', '-', mass, _ ). +noun( 'furore', 'furores', count, _ ). +noun( 'furrier', 'furriers', count, _ ). +noun( 'furrow', 'furrows', count, _ ). +noun( 'furtherance', '-', mass, _ ). +noun( 'furtiveness', '-', mass, _ ). +noun( 'fury', 'furies', both, _ ). +noun( 'furze', '-', mass, _ ). +noun( 'fuse', 'fuses', count, _ ). +noun( 'fuselage', 'fuselages', count, _ ). +noun( 'fusilier', 'fusiliers', count, _ ). +noun( 'fusillade', 'fusillades', count, _ ). +noun( 'fusion', 'fusions', both, _ ). +noun( 'fuss', 'fusses', both, _ ). +noun( 'fussiness', '-', mass, _ ). +noun( 'fusspot', 'fusspots', count, _ ). +noun( 'fustian', '-', mass, _ ). +noun( 'futility', 'futilities', both, _ ). +noun( 'future', 'futures', both, _ ). +noun( 'futurism', '-', mass, _ ). +noun( 'futurist', 'futurists', count, _ ). +noun( 'futurity', 'futurities', both, _ ). +noun( 'fuze', 'fuzes', count, _ ). +noun( 'fuzz', '-', mass, _ ). +noun( 'fwd', '-', proper, _ ). +noun( 'g', '-', count, _ ). +noun( 'g^ateau', 'g^ateaus', count, _ ). +noun( 'gab', '-', mass, _ ). +noun( 'gabardine', '-', mass, _ ). +noun( 'gabble', '-', mass, _ ). +noun( 'gaberdine', '-', mass, _ ). +noun( 'gable', 'gables', count, _ ). +noun( 'gadabout', 'gadabouts', count, _ ). +noun( 'gadfly', 'gadflies', count, _ ). +noun( 'gadget', 'gadgets', count, _ ). +noun( 'gadgetry', '-', mass, _ ). +noun( 'gaff', 'gaffs', count, _ ). +noun( 'gaffe', 'gaffes', count, _ ). +noun( 'gaffer', 'gaffers', count, _ ). +noun( 'gag', 'gags', count, _ ). +noun( 'gage', 'gages', count, _ ). +noun( 'gaggle', 'gaggles', count, _ ). +noun( 'gaiety', '-', mass, _ ). +noun( 'gain', 'gains', both, _ ). +noun( 'gait', 'gaits', count, _ ). +noun( 'gaiter', 'gaiters', count, _ ). +noun( 'gal', 'gals', count, _ ). +noun( 'gala', 'galas', count, _ ). +noun( 'galantine', 'galantines', count, _ ). +noun( 'galaxy', 'galaxies', count, _ ). +noun( 'gale', 'gales', count, _ ). +noun( 'gall', 'galls', both, _ ). +noun( 'gallant', 'gallants', count, _ ). +noun( 'gallantry', 'gallantries', both, _ ). +noun( 'galleon', 'galleons', count, _ ). +noun( 'gallery', 'galleries', count, _ ). +noun( 'galley', 'galleys', count, _ ). +noun( 'galley-proof', 'galley-proofs', count, _ ). +noun( 'galley-slave', 'galley-slaves', count, _ ). +noun( 'gallicism', 'gallicisms', count, _ ). +noun( 'gallon', 'gallons', count, _ ). +noun( 'gallop', 'gallops', count, _ ). +noun( 'gallows-bird', 'gallows-birds', count, _ ). +noun( 'gallstone', 'gallstones', count, _ ). +noun( 'galosh', 'galoshes', count, _ ). +noun( 'galvanism', '-', mass, _ ). +noun( 'gambit', 'gambits', count, _ ). +noun( 'gamble', 'gambles', count, _ ). +noun( 'gambler', 'gamblers', count, _ ). +noun( 'gambling', '-', mass, _ ). +noun( 'gambling-den', 'gambling-dens', count, _ ). +noun( 'gamboge', '-', mass, _ ). +noun( 'gambol', 'gambols', count, _ ). +noun( 'game', 'games', both, _ ). +noun( 'game-bag', 'game-bags', count, _ ). +noun( 'game-bird', 'game-birds', count, _ ). +noun( 'game-licence', 'game-licences', count, _ ). +noun( 'gamecock', 'gamecocks', count, _ ). +noun( 'gamekeeper', 'gamekeepers', count, _ ). +noun( 'games-master', 'games-masters', count, _ ). +noun( 'games-mistress', 'games-mistresses', count, _ ). +noun( 'gamesmanship', '-', mass, _ ). +noun( 'gaming-house', 'gaming-houses', count, _ ). +noun( 'gaming-table', 'gaming-tables', count, _ ). +noun( 'gamma', 'gammas', count, _ ). +noun( 'gammon', 'gammons', both, _ ). +noun( 'gamp', 'gamps', count, _ ). +noun( 'gamut', 'gamuts', count, _ ). +noun( 'gander', 'ganders', count, _ ). +noun( 'gang', 'gangs', count, _ ). +noun( 'ganger', 'gangers', count, _ ). +noun( 'ganglion', 'ganglions', count, _ ). +noun( 'gangplank', 'gangplanks', count, _ ). +noun( 'gangrene', '-', mass, _ ). +noun( 'gangster', 'gangsters', count, _ ). +noun( 'gangway', 'gangways', count, _ ). +noun( 'gannet', 'gannets', count, _ ). +noun( 'gantry', 'gantries', count, _ ). +noun( 'gaol', 'gaols', both, _ ). +noun( 'gaolbird', 'gaolbirds', count, _ ). +noun( 'gaolbreak', 'gaolbreaks', count, _ ). +noun( 'gaoler', 'gaolers', count, _ ). +noun( 'gap', 'gaps', count, _ ). +noun( 'gape', 'gapes', count, _ ). +noun( 'garage', 'garages', count, _ ). +noun( 'garb', '-', mass, _ ). +noun( 'garbage', '-', mass, _ ). +noun( 'garbage-can', 'garbage-cans', count, _ ). +noun( 'garden', 'gardens', both, _ ). +noun( 'garden-truck', 'garden-trucks', count, _ ). +noun( 'gardener', 'gardeners', count, _ ). +noun( 'gardenia', 'gardenias', count, _ ). +noun( 'gardening', '-', mass, _ ). +noun( 'gargle', 'gargles', count, _ ). +noun( 'gargoyle', 'gargoyles', count, _ ). +noun( 'garland', 'garlands', count, _ ). +noun( 'garlic', '-', mass, _ ). +noun( 'garment', 'garments', count, _ ). +noun( 'garner', 'garners', count, _ ). +noun( 'garnet', 'garnets', count, _ ). +noun( 'garnish', 'garnishes', count, _ ). +noun( 'garotte', 'garottes', count, _ ). +noun( 'garret', 'garrets', count, _ ). +noun( 'garrison', 'garrisons', count, _ ). +noun( 'garrotte', 'garrottes', count, _ ). +noun( 'garrulity', '-', mass, _ ). +noun( 'garter', 'garters', count, _ ). +noun( 'gas', 'gases', both, _ ). +noun( 'gas-bracket', 'gas-brackets', count, _ ). +noun( 'gas-cooker', 'gas-cookers', count, _ ). +noun( 'gas-engine', 'gas-engines', count, _ ). +noun( 'gas-fitter', 'gas-fitters', count, _ ). +noun( 'gas-helmet', 'gas-helmets', count, _ ). +noun( 'gas-holder', 'gas-holders', count, _ ). +noun( 'gas-mask', 'gas-masks', count, _ ). +noun( 'gas-meter', 'gas-meters', count, _ ). +noun( 'gas-oven', 'gas-ovens', count, _ ). +noun( 'gas-ring', 'gas-rings', count, _ ). +noun( 'gas-station', 'gas-stations', count, _ ). +noun( 'gas-stove', 'gas-stoves', count, _ ). +noun( 'gasbag', 'gasbags', count, _ ). +noun( 'gash', 'gashes', count, _ ). +noun( 'gasification', 'gasifications', both, _ ). +noun( 'gasket', 'gaskets', count, _ ). +noun( 'gaslight', '-', mass, _ ). +noun( 'gasmask', 'gasmasks', count, _ ). +noun( 'gasolene', '-', mass, _ ). +noun( 'gasoline', '-', mass, _ ). +noun( 'gasometer', 'gasometers', count, _ ). +noun( 'gasp', 'gasps', count, _ ). +noun( 'gastritis', '-', mass, _ ). +noun( 'gastronomy', '-', mass, _ ). +noun( 'gasworks', 'gasworks', count, _ ). +noun( 'gate', 'gates', count, _ ). +noun( 'gatecrasher', 'gatecrashers', count, _ ). +noun( 'gatehouse', 'gatehouses', count, _ ). +noun( 'gatepost', 'gateposts', count, _ ). +noun( 'gateway', 'gateways', count, _ ). +noun( 'gatherer', 'gatherers', count, _ ). +noun( 'gathering', 'gatherings', count, _ ). +noun( 'gaucherie', 'gaucheries', both, _ ). +noun( 'gaucho', 'gauchos', count, _ ). +noun( 'gaud', 'gauds', count, _ ). +noun( 'gaudy', 'gaudies', count, _ ). +noun( 'gauge', 'gauges', both, _ ). +noun( 'gauntlet', 'gauntlets', count, _ ). +noun( 'gauntness', '-', mass, _ ). +noun( 'gauze', '-', mass, _ ). +noun( 'gavel', 'gavels', count, _ ). +noun( 'gavotte', 'gavottes', count, _ ). +noun( 'gawk', 'gawks', count, _ ). +noun( 'gawkiness', '-', mass, _ ). +noun( 'gay', 'gays', count, _ ). +noun( 'gayness', '-', mass, _ ). +noun( 'gaze', '-', count, _ ). +noun( 'gazelle', 'gazelles', count, _ ). +noun( 'gazette', 'gazettes', count, _ ). +noun( 'gazetteer', 'gazetteers', count, _ ). +noun( 'gear', 'gears', both, _ ). +noun( 'gear-case', 'gear-cases', count, _ ). +noun( 'gearbox', 'gearboxes', count, _ ). +noun( 'gearshift', 'gearshifts', count, _ ). +noun( 'gecko', 'geckos', count, _ ). +noun( 'gee-gee', 'gee-gees', count, _ ). +noun( 'geezer', 'geezers', count, _ ). +noun( 'geisha', 'geishas', count, _ ). +noun( 'gel', 'gels', count, _ ). +noun( 'gelatin', '-', mass, _ ). +noun( 'gelatine', '-', mass, _ ). +noun( 'gelding', 'geldings', count, _ ). +noun( 'gelignite', '-', mass, _ ). +noun( 'gem', 'gems', count, _ ). +noun( 'gen', '-', mass, _ ). +noun( 'gendarme', 'gendarmes', count, _ ). +noun( 'gendarmerie', 'gendarmeries', count, _ ). +noun( 'gender', 'genders', count, _ ). +noun( 'gene', 'genes', count, _ ). +noun( 'genealogist', 'genealogists', count, _ ). +noun( 'genealogy', 'genealogies', both, _ ). +noun( 'general', 'generals', count, _ ). +noun( 'generalissimo', 'generalissimos', count, _ ). +noun( 'generality', 'generalities', both, _ ). +noun( 'generalization', 'generalizations', both, _ ). +noun( 'generation', 'generations', both, _ ). +noun( 'generator', 'generators', count, _ ). +noun( 'generosity', 'generosities', both, _ ). +noun( 'genesis', 'geneses', count, _ ). +noun( 'geneticist', 'geneticists', count, _ ). +noun( 'genetics', 'genetics', mass, _ ). +noun( 'geniality', 'genialities', both, _ ). +noun( 'genie', 'genies', count, _ ). +noun( 'genius', 'geniuses', both, _ ). +noun( 'genius loci', '-', count, _ ). +noun( 'genocide', '-', mass, _ ). +noun( 'genre', 'genres', count, _ ). +noun( 'genre-painting', 'genre-paintings', count, _ ). +noun( 'gent', 'gents', count, _ ). +noun( 'gentian', 'gentians', count, _ ). +noun( 'gentile', 'gentiles', count, _ ). +noun( 'gentility', '-', mass, _ ). +noun( 'gentleman', 'gentlemen', count, _ ). +noun( 'gentleman-at-arms', 'gentlemen-at-arms', count, _ ). +noun( 'gentleness', '-', mass, _ ). +noun( 'gentlewoman', 'gentlewomen', count, _ ). +noun( 'gentry', 'gentry', count, _ ). +noun( 'genuflection', 'genuflections', count, _ ). +noun( 'genuflexion', 'genuflexions', count, _ ). +noun( 'genuineness', '-', mass, _ ). +noun( 'genus', 'geni', count, _ ). +noun( 'geographer', 'geographers', count, _ ). +noun( 'geography', '-', mass, _ ). +noun( 'geologist', 'geologists', count, _ ). +noun( 'geology', '-', mass, _ ). +noun( 'geometry', '-', mass, _ ). +noun( 'geophysics', 'geophysics', mass, _ ). +noun( 'geopolitics', 'geopolitics', mass, _ ). +noun( 'georgette', '-', mass, _ ). +noun( 'geranium', 'geraniums', count, _ ). +noun( 'geriatrician', 'geriatricians', count, _ ). +noun( 'geriatrics', 'geriatrics', mass, _ ). +noun( 'germ', 'germs', count, _ ). +noun( 'germicide', 'germicides', count, _ ). +noun( 'germination', '-', mass, _ ). +noun( 'gerontology', '-', mass, _ ). +noun( 'gerrymander', 'gerrymanders', count, _ ). +noun( 'gerund', 'gerunds', count, _ ). +noun( 'gestation', 'gestations', count, _ ). +noun( 'gesticulation', 'gesticulations', both, _ ). +noun( 'gesture', 'gestures', both, _ ). +noun( 'get-together', 'get-togethers', count, _ ). +noun( 'get-up', 'get-ups', count, _ ). +noun( 'getaway', 'getaways', count, _ ). +noun( 'geum', 'geums', count, _ ). +noun( 'geyser', 'geysers', count, _ ). +noun( 'gharry', 'gharries', count, _ ). +noun( 'ghat', 'ghats', count, _ ). +noun( 'ghee', '-', mass, _ ). +noun( 'gherkin', 'gherkins', count, _ ). +noun( 'ghetto', 'ghettos', count, _ ). +noun( 'ghost', 'ghosts', count, _ ). +noun( 'ghost-writer', 'ghost-writers', count, _ ). +noun( 'ghostliness', '-', mass, _ ). +noun( 'ghoul', 'ghouls', count, _ ). +noun( 'giant', 'giants', count, _ ). +noun( 'giantess', 'giantesses', count, _ ). +noun( 'gibberish', '-', mass, _ ). +noun( 'gibbet', 'gibbets', count, _ ). +noun( 'gibbon', 'gibbons', count, _ ). +noun( 'gibe', 'gibes', count, _ ). +noun( 'giddiness', '-', mass, _ ). +noun( 'gift', 'gifts', both, _ ). +noun( 'gig', 'gigs', count, _ ). +noun( 'giggle', 'giggles', count, _ ). +noun( 'gigolo', 'gigolos', count, _ ). +noun( 'gild', 'gilds', count, _ ). +noun( 'gilder', 'gilders', count, _ ). +noun( 'gilding', '-', mass, _ ). +noun( 'gill', 'gills', count, _ ). +noun( 'gill', 'gills', count, _ ). +noun( 'gillie', 'gillies', count, _ ). +noun( 'gilt', '-', mass, _ ). +noun( 'gimlet', 'gimlets', count, _ ). +noun( 'gimmick', 'gimmicks', count, _ ). +noun( 'gin', 'gins', both, _ ). +noun( 'ginger', '-', mass, _ ). +noun( 'gingerbread', 'gingerbreads', both, _ ). +noun( 'gingham', '-', mass, _ ). +noun( 'gingko', 'gingkos', count, _ ). +noun( 'ginseng', '-', mass, _ ). +noun( 'gipsy', 'gipsies', count, _ ). +noun( 'giraffe', 'giraffes', count, _ ). +noun( 'girder', 'girders', count, _ ). +noun( 'girdle', 'girdles', count, _ ). +noun( 'girl', 'girls', count, _ ). +noun( 'girlfriend', 'girlfriends', count, _ ). +noun( 'girlhood', '-', mass, _ ). +noun( 'girlishness', '-', mass, _ ). +noun( 'giro', '-', mass, _ ). +noun( 'girth', 'girths', count, _ ). +noun( 'gist', 'gists', count, _ ). +noun( 'give', '-', mass, _ ). +noun( 'giveaway', 'giveaways', count, _ ). +noun( 'giver', 'givers', count, _ ). +noun( 'gizzard', 'gizzards', count, _ ). +noun( 'glacier', 'glaciers', count, _ ). +noun( 'glade', 'glades', count, _ ). +noun( 'gladiator', 'gladiators', count, _ ). +noun( 'gladiolus', 'gladioluses', count, _ ). +noun( 'gladness', '-', mass, _ ). +noun( 'glamorization', '-', mass, _ ). +noun( 'glamour', '-', mass, _ ). +noun( 'glance', 'glances', count, _ ). +noun( 'gland', 'glands', count, _ ). +noun( 'glanders', '-', mass, _ ). +noun( 'glare', 'glares', both, _ ). +noun( 'glass', 'glasses', both, _ ). +noun( 'glass-blower', 'glass-blowers', count, _ ). +noun( 'glass-cutter', 'glass-cutters', count, _ ). +noun( 'glass-wool', '-', mass, _ ). +noun( 'glassful', 'glassfuls', count, _ ). +noun( 'glasshouse', 'glasshouses', count, _ ). +noun( 'glassware', '-', mass, _ ). +noun( 'glassworks', 'glassworks', count, _ ). +noun( 'glaucoma', '-', mass, _ ). +noun( 'glaze', 'glazes', both, _ ). +noun( 'glazier', 'glaziers', count, _ ). +noun( 'gleam', 'gleams', count, _ ). +noun( 'gleaner', 'gleaners', count, _ ). +noun( 'glebe', 'glebes', count, _ ). +noun( 'glee', 'glees', both, _ ). +noun( 'glen', 'glens', count, _ ). +noun( 'glibness', '-', mass, _ ). +noun( 'glide', 'glides', count, _ ). +noun( 'glider', 'gliders', count, _ ). +noun( 'gliding', '-', mass, _ ). +noun( 'glimmer', 'glimmers', count, _ ). +noun( 'glimpse', 'glimpses', count, _ ). +noun( 'glint', 'glints', count, _ ). +noun( 'glissade', 'glissades', count, _ ). +noun( 'glister', '-', count, _ ). +noun( 'glitter', '-', mass, _ ). +noun( 'gloaming', '-', count, _ ). +noun( 'globe', 'globes', count, _ ). +noun( 'globetrotter', 'globetrotters', count, _ ). +noun( 'globule', 'globules', count, _ ). +noun( 'glockenspiel', 'glockenspiels', count, _ ). +noun( 'gloom', 'glooms', both, _ ). +noun( 'glorification', '-', mass, _ ). +noun( 'glory', 'glories', both, _ ). +noun( 'glory-hole', 'glory-holes', count, _ ). +noun( 'gloss', 'glosses', count, _ ). +noun( 'glossary', 'glossaries', count, _ ). +noun( 'glossiness', '-', mass, _ ). +noun( 'glottis', 'glottises', count, _ ). +noun( 'glove', 'gloves', count, _ ). +noun( 'glove-compartment', 'glove-compartments', count, _ ). +noun( 'glow', '-', count, _ ). +noun( 'glow-worm', 'glow-worms', count, _ ). +noun( 'glucose', '-', mass, _ ). +noun( 'glue', 'glues', both, _ ). +noun( 'glumness', '-', mass, _ ). +noun( 'glut', 'gluts', count, _ ). +noun( 'gluten', '-', mass, _ ). +noun( 'glutton', 'gluttons', count, _ ). +noun( 'gluttony', '-', mass, _ ). +noun( 'glycerine', '-', mass, _ ). +noun( 'gnat', 'gnats', count, _ ). +noun( 'gnome', 'gnomes', count, _ ). +noun( 'gnu', 'gnus', count, _ ). +noun( 'go', 'goes', count, _ ). +noun( 'go-ahead', '-', count, _ ). +noun( 'go-between', 'go-betweens', count, _ ). +noun( 'go-by', '-', count, _ ). +noun( 'go-cart', 'go-carts', count, _ ). +noun( 'go-getter', 'go-getters', count, _ ). +noun( 'go-kart', 'go-karts', count, _ ). +noun( 'go-slow', 'go-slows', count, _ ). +noun( 'goad', 'goads', count, _ ). +noun( 'goal', 'goals', count, _ ). +noun( 'goal-kick', 'goal-kicks', count, _ ). +noun( 'goal-line', 'goal-lines', count, _ ). +noun( 'goalie', 'goalies', count, _ ). +noun( 'goalkeeper', 'goalkeepers', count, _ ). +noun( 'goalmouth', 'goalmouths', count, _ ). +noun( 'goat', 'goats', count, _ ). +noun( 'goatee', 'goatees', count, _ ). +noun( 'goatherd', 'goatherds', count, _ ). +noun( 'goatskin', 'goatskins', both, _ ). +noun( 'gob', 'gobs', count, _ ). +noun( 'gobbet', 'gobbets', count, _ ). +noun( 'gobble', 'gobbles', count, _ ). +noun( 'gobbledygook', '-', mass, _ ). +noun( 'gobbler', 'gobblers', count, _ ). +noun( 'goblet', 'goblets', count, _ ). +noun( 'goblin', 'goblins', count, _ ). +noun( 'god', 'gods', count, _ ). +noun( 'godchild', 'godchildren', count, _ ). +noun( 'goddaughter', 'goddaughters', count, _ ). +noun( 'goddess', 'goddesses', count, _ ). +noun( 'godfather', 'godfathers', count, _ ). +noun( 'godhead', '-', mass, _ ). +noun( 'godlessness', '-', mass, _ ). +noun( 'godliness', '-', mass, _ ). +noun( 'godmother', 'godmothers', count, _ ). +noun( 'godown', 'godowns', count, _ ). +noun( 'godparent', 'godparents', count, _ ). +noun( 'godsend', 'godsends', count, _ ). +noun( 'godson', 'godsons', count, _ ). +noun( 'godspeed', '-', mass, _ ). +noun( 'goggle-box', 'goggle-boxes', count, _ ). +noun( 'going', 'goings', both, _ ). +noun( 'going-over', 'going-overs', count, _ ). +noun( 'goitre', 'goitres', count, _ ). +noun( 'gold', '-', mass, _ ). +noun( 'gold-beater', 'gold-beaters', count, _ ). +noun( 'gold-digger', 'gold-diggers', count, _ ). +noun( 'gold-dust', '-', mass, _ ). +noun( 'gold-foil', '-', mass, _ ). +noun( 'gold-leaf', '-', mass, _ ). +noun( 'gold-plate', '-', mass, _ ). +noun( 'gold-rush', 'gold-rushes', count, _ ). +noun( 'goldfield', 'goldfields', count, _ ). +noun( 'goldfinch', 'goldfinches', count, _ ). +noun( 'goldfish', 'goldfish', count, _ ). +noun( 'goldmine', 'goldmines', count, _ ). +noun( 'goldsmith', 'goldsmiths', count, _ ). +noun( 'golf', '-', mass, _ ). +noun( 'golf-ball', 'golf-balls', count, _ ). +noun( 'golf-club', 'golf-clubs', count, _ ). +noun( 'golf-course', 'golf-courses', count, _ ). +noun( 'golf-links', 'golf-links', count, _ ). +noun( 'golfer', 'golfers', count, _ ). +noun( 'golliwog', 'golliwogs', count, _ ). +noun( 'golosh', 'goloshes', count, _ ). +noun( 'gondola', 'gondolas', count, _ ). +noun( 'gondolier', 'gondoliers', count, _ ). +noun( 'goner', 'goners', count, _ ). +noun( 'gong', 'gongs', count, _ ). +noun( 'gonorrhea', '-', mass, _ ). +noun( 'gonorrhoea', '-', mass, _ ). +noun( 'goo', '-', mass, _ ). +noun( 'good', '-', mass, _ ). +noun( 'good-fellowship', '-', mass, _ ). +noun( 'good-for-naught', 'good-for-naughts', count, _ ). +noun( 'good-for-nothing', 'good-for-nothings', count, _ ). +noun( 'good-neighbourliness', '-', mass, _ ). +noun( 'goodbye', 'goodbyes', count, _ ). +noun( 'goodness', '-', mass, _ ). +noun( 'goodwill', '-', mass, _ ). +noun( 'goody', 'goodies', count, _ ). +noun( 'goody-goody', 'goody-goodies', count, _ ). +noun( 'goof', 'goofs', count, _ ). +noun( 'googly', 'googlies', count, _ ). +noun( 'goon', 'goons', count, _ ). +noun( 'goose', 'geese', count, _ ). +noun( 'goose-flesh', '-', mass, _ ). +noun( 'goose-step', 'goose-steps', count, _ ). +noun( 'gooseberry', 'gooseberries', count, _ ). +noun( 'gopher', 'gophers', count, _ ). +noun( 'gore', '-', mass, _ ). +noun( 'gorge', 'gorges', count, _ ). +noun( 'gorilla', 'gorillas', count, _ ). +noun( 'gorse', '-', mass, _ ). +noun( 'gosling', 'goslings', count, _ ). +noun( 'gospel', 'gospels', both, _ ). +noun( 'gossamer', 'gossamers', both, _ ). +noun( 'gossip', 'gossips', both, _ ). +noun( 'gouache', '-', mass, _ ). +noun( 'gouge', 'gouges', count, _ ). +noun( 'goulash', 'goulashes', both, _ ). +noun( 'gourd', 'gourds', count, _ ). +noun( 'gourmand', 'gourmands', count, _ ). +noun( 'gourmet', 'gourmets', count, _ ). +noun( 'gout', '-', mass, _ ). +noun( 'governance', '-', mass, _ ). +noun( 'governess', 'governesses', count, _ ). +noun( 'government', 'governments', both, _ ). +noun( 'governor', 'governors', count, _ ). +noun( 'govt', '-', count, _ ). +noun( 'gown', 'gowns', count, _ ). +noun( 'grab', 'grabs', count, _ ). +noun( 'grabber', 'grabbers', count, _ ). +noun( 'grace', 'graces', both, _ ). +noun( 'graciousness', '-', mass, _ ). +noun( 'gradation', 'gradations', both, _ ). +noun( 'grade', 'grades', count, _ ). +noun( 'gradient', 'gradients', count, _ ). +noun( 'gradualness', '-', mass, _ ). +noun( 'graduate', 'graduates', count, _ ). +noun( 'graduation', 'graduations', count, _ ). +noun( 'graffito', 'graffiti', count, _ ). +noun( 'graft', 'grafts', both, _ ). +noun( 'grail', 'grails', count, _ ). +noun( 'grain', 'grains', both, _ ). +noun( 'gram', 'grams', count, _ ). +noun( 'grammar', 'grammars', both, _ ). +noun( 'grammarian', 'grammarians', count, _ ). +noun( 'gramme', 'grammes', count, _ ). +noun( 'gramophone', 'gramophones', count, _ ). +noun( 'grampus', 'grampuses', count, _ ). +noun( 'granary', 'granaries', count, _ ). +noun( 'grandad', 'grandads', count, _ ). +noun( 'grandaunt', 'grandaunts', count, _ ). +noun( 'grandchild', 'grandchildren', count, _ ). +noun( 'granddad', 'granddads', count, _ ). +noun( 'granddaughter', 'granddaughters', count, _ ). +noun( 'grandee', 'grandees', count, _ ). +noun( 'grandeur', '-', mass, _ ). +noun( 'grandfather', 'grandfathers', count, _ ). +noun( 'grandiloquence', '-', mass, _ ). +noun( 'grandma', 'grandmas', count, _ ). +noun( 'grandmother', 'grandmothers', count, _ ). +noun( 'grandnephew', 'grandnephews', count, _ ). +noun( 'grandniece', 'grandnieces', count, _ ). +noun( 'grandpa', 'grandpas', count, _ ). +noun( 'grandparent', 'grandparents', count, _ ). +noun( 'grandson', 'grandsons', count, _ ). +noun( 'grandstand', 'grandstands', count, _ ). +noun( 'granduncle', 'granduncles', count, _ ). +noun( 'grange', 'granges', count, _ ). +noun( 'granite', '-', mass, _ ). +noun( 'grannie', 'grannies', count, _ ). +noun( 'granny', 'grannies', count, _ ). +noun( 'grant', 'grants', count, _ ). +noun( 'granularity', '-', mass, _ ). +noun( 'granule', 'granules', count, _ ). +noun( 'grape', 'grapes', count, _ ). +noun( 'grape-sugar', '-', mass, _ ). +noun( 'grapefruit', 'grapefruit', both, _ ). +noun( 'grapeshot', '-', mass, _ ). +noun( 'grapevine', 'grapevines', count, _ ). +noun( 'graph', 'graphs', count, _ ). +noun( 'graphics', 'graphics', mass, _ ). +noun( 'graphite', '-', mass, _ ). +noun( 'grapnel', 'grapnels', count, _ ). +noun( 'grappling-iron', 'grappling-irons', count, _ ). +noun( 'grasp', 'grasps', count, _ ). +noun( 'grass', 'grasses', both, _ ). +noun( 'grasshopper', 'grasshoppers', count, _ ). +noun( 'grassland', 'grasslands', count, _ ). +noun( 'grate', 'grates', count, _ ). +noun( 'gratefulness', '-', mass, _ ). +noun( 'grater', 'graters', count, _ ). +noun( 'gratification', 'gratifications', both, _ ). +noun( 'grating', 'gratings', count, _ ). +noun( 'gratitude', '-', mass, _ ). +noun( 'gratuity', 'gratuities', count, _ ). +noun( 'grave', 'graves', count, _ ). +noun( 'grave', 'graves', count, _ ). +noun( 'gravel', '-', mass, _ ). +noun( 'gravestone', 'gravestones', count, _ ). +noun( 'graveyard', 'graveyards', count, _ ). +noun( 'graving dock', 'graving docks', count, _ ). +noun( 'gravitation', '-', mass, _ ). +noun( 'gravity', '-', mass, _ ). +noun( 'gravure', 'gravures', count, _ ). +noun( 'gravy', '-', mass, _ ). +noun( 'gravy-boat', 'gravy-boats', count, _ ). +noun( 'gray', 'grays', both, _ ). +noun( 'graze', 'grazes', count, _ ). +noun( 'grazier', 'graziers', count, _ ). +noun( 'grazing-land', 'grazing-lands', count, _ ). +noun( 'grease', '-', mass, _ ). +noun( 'grease-gun', 'grease-guns', count, _ ). +noun( 'greasepaint', '-', mass, _ ). +noun( 'greaser', 'greasers', count, _ ). +noun( 'greasiness', '-', mass, _ ). +noun( 'greatcoat', 'greatcoats', count, _ ). +noun( 'greatness', '-', mass, _ ). +noun( 'grebe', 'grebes', count, _ ). +noun( 'greed', '-', mass, _ ). +noun( 'greediness', '-', mass, _ ). +noun( 'green', 'greens', both, _ ). +noun( 'greenback', 'greenbacks', count, _ ). +noun( 'greenery', '-', mass, _ ). +noun( 'greenfly', '-', mass, _ ). +noun( 'greengage', 'greengages', count, _ ). +noun( 'greengrocer', 'greengrocers', count, _ ). +noun( 'greengrocery', 'greengroceries', count, _ ). +noun( 'greenhorn', 'greenhorns', count, _ ). +noun( 'greenhouse', 'greenhouses', count, _ ). +noun( 'greenishness', '-', mass, _ ). +noun( 'greensward', '-', mass, _ ). +noun( 'greenwood', 'greenwoods', count, _ ). +noun( 'greeting', 'greetings', count, _ ). +noun( 'gregariousness', '-', mass, _ ). +noun( 'gremlin', 'gremlins', count, _ ). +noun( 'grenade', 'grenades', count, _ ). +noun( 'grenadier', 'grenadiers', count, _ ). +noun( 'grey', 'greys', both, _ ). +noun( 'greybeard', 'greybeards', count, _ ). +noun( 'greyhound', 'greyhounds', count, _ ). +noun( 'grid', 'grids', count, _ ). +noun( 'griddle', 'griddles', count, _ ). +noun( 'gridiron', 'gridirons', count, _ ). +noun( 'grief', 'griefs', both, _ ). +noun( 'grievance', 'grievances', count, _ ). +noun( 'griffin', 'griffins', count, _ ). +noun( 'griffon', 'griffons', count, _ ). +noun( 'grill', 'grills', count, _ ). +noun( 'grille', 'grilles', count, _ ). +noun( 'grillroom', 'grillrooms', count, _ ). +noun( 'grimace', 'grimaces', count, _ ). +noun( 'grime', '-', mass, _ ). +noun( 'grimness', '-', mass, _ ). +noun( 'grin', 'grins', count, _ ). +noun( 'grind', 'grinds', count, _ ). +noun( 'grinder', 'grinders', count, _ ). +noun( 'grindstone', 'grindstones', count, _ ). +noun( 'grip', 'grips', count, _ ). +noun( 'grippe', 'grippes', count, _ ). +noun( 'gripsack', 'gripsacks', count, _ ). +noun( 'grist', '-', mass, _ ). +noun( 'gristle', '-', mass, _ ). +noun( 'grit', '-', mass, _ ). +noun( 'grits', 'grits', mass, _ ). +noun( 'grizzly', 'grizzlies', count, _ ). +noun( 'groan', 'groans', count, _ ). +noun( 'groat', 'groats', count, _ ). +noun( 'grocer', 'grocers', count, _ ). +noun( 'grocery', 'groceries', both, _ ). +noun( 'grog', '-', mass, _ ). +noun( 'groin', 'groins', count, _ ). +noun( 'groom', 'grooms', count, _ ). +noun( 'groove', 'grooves', count, _ ). +noun( 'groover', 'groovers', count, _ ). +noun( 'gross', 'gross', count, _ ). +noun( 'grossness', '-', mass, _ ). +noun( 'grot', 'grots', both, _ ). +noun( 'grotesque', 'grotesques', count, _ ). +noun( 'grotesqueness', '-', mass, _ ). +noun( 'grotto', 'grottos', count, _ ). +noun( 'grouch', 'grouches', count, _ ). +noun( 'ground', 'grounds', both, _ ). +noun( 'ground-bait', '-', mass, _ ). +noun( 'ground-fish', 'ground-fish', count, _ ). +noun( 'ground-plan', 'ground-plans', count, _ ). +noun( 'ground-rent', 'ground-rents', both, _ ). +noun( 'grounding', 'groundings', count, _ ). +noun( 'groundnut', 'groundnuts', count, _ ). +noun( 'groundsel', '-', mass, _ ). +noun( 'groundsheet', 'groundsheets', count, _ ). +noun( 'groundsman', 'groundsmen', count, _ ). +noun( 'groundwork', '-', mass, _ ). +noun( 'group', 'groups', count, _ ). +noun( 'grouping', 'groupings', count, _ ). +noun( 'grouse', 'grouse', count, _ ). +noun( 'grove', 'groves', count, _ ). +noun( 'groveller', 'grovellers', count, _ ). +noun( 'grower', 'growers', count, _ ). +noun( 'growl', 'growls', count, _ ). +noun( 'growler', 'growlers', count, _ ). +noun( 'grown-up', 'grown-ups', count, _ ). +noun( 'growth', 'growths', both, _ ). +noun( 'groyne', 'groynes', count, _ ). +noun( 'grub', 'grubs', both, _ ). +noun( 'grubbiness', '-', mass, _ ). +noun( 'grudge', 'grudges', count, _ ). +noun( 'gruel', '-', mass, _ ). +noun( 'gruesomeness', '-', mass, _ ). +noun( 'gruffness', '-', mass, _ ). +noun( 'grumble', 'grumbles', count, _ ). +noun( 'grumbler', 'grumblers', count, _ ). +noun( 'grumpiness', '-', mass, _ ). +noun( 'grunt', 'grunts', count, _ ). +noun( 'gryphon', 'gryphons', count, _ ). +noun( 'guano', 'guanos', both, _ ). +noun( 'guarantee', 'guarantees', count, _ ). +noun( 'guarantor', 'guarantors', count, _ ). +noun( 'guaranty', 'guaranties', count, _ ). +noun( 'guard', 'guards', both, _ ). +noun( 'guard-boat', 'guard-boats', count, _ ). +noun( 'guardhouse', 'guardhouses', count, _ ). +noun( 'guardian', 'guardians', count, _ ). +noun( 'guardianship', 'guardianships', count, _ ). +noun( 'guardrail', 'guardrails', count, _ ). +noun( 'guardroom', 'guardrooms', count, _ ). +noun( 'guardship', 'guardships', count, _ ). +noun( 'guardsman', 'guardsmen', count, _ ). +noun( 'guava', 'guavas', both, _ ). +noun( 'gudgeon', 'gudgeons', count, _ ). +noun( 'guelder rose', 'guelder roses', count, _ ). +noun( 'guerilla', 'guerillas', count, _ ). +noun( 'guerrilla', 'guerrillas', count, _ ). +noun( 'guess', 'guesses', count, _ ). +noun( 'guesstimate', 'guesstimates', count, _ ). +noun( 'guesswork', '-', mass, _ ). +noun( 'guest', 'guests', count, _ ). +noun( 'guest-night', 'guest-nights', count, _ ). +noun( 'guesthouse', 'guesthouses', count, _ ). +noun( 'guestroom', 'guestrooms', count, _ ). +noun( 'guffaw', 'guffaws', count, _ ). +noun( 'guidance', '-', mass, _ ). +noun( 'guide', 'guides', count, _ ). +noun( 'guidebook', 'guidebooks', count, _ ). +noun( 'guideline', 'guidelines', count, _ ). +noun( 'guild', 'guilds', count, _ ). +noun( 'guilder', 'guilders', count, _ ). +noun( 'guildhall', 'guildhalls', count, _ ). +noun( 'guile', '-', mass, _ ). +noun( 'guillemot', 'guillemots', count, _ ). +noun( 'guillotine', 'guillotines', count, _ ). +noun( 'guilt', '-', mass, _ ). +noun( 'guiltiness', '-', mass, _ ). +noun( 'guinea', 'guineas', count, _ ). +noun( 'guinea-fowl', 'guinea-fowl', count, _ ). +noun( 'guinea-pig', 'guinea-pigs', count, _ ). +noun( 'guise', 'guises', count, _ ). +noun( 'guitar', 'guitars', count, _ ). +noun( 'guitarist', 'guitarists', count, _ ). +noun( 'gulch', 'gulches', count, _ ). +noun( 'gulden', 'guldens', count, _ ). +noun( 'gulf', 'gulfs', count, _ ). +noun( 'gull', 'gulls', count, _ ). +noun( 'gullet', 'gullets', count, _ ). +noun( 'gullibility', '-', mass, _ ). +noun( 'gully', 'gullies', count, _ ). +noun( 'gulp', 'gulps', count, _ ). +noun( 'gum', 'gums', both, _ ). +noun( 'gumbo', 'gumbos', count, _ ). +noun( 'gumboil', 'gumboils', count, _ ). +noun( 'gumboot', 'gumboots', count, _ ). +noun( 'gumption', '-', mass, _ ). +noun( 'gumshoe', 'gumshoes', count, _ ). +noun( 'gun', 'guns', count, _ ). +noun( 'gun-carriage', 'gun-carriages', count, _ ). +noun( 'gunboat', 'gunboats', count, _ ). +noun( 'guncotton', '-', mass, _ ). +noun( 'gundog', 'gundogs', count, _ ). +noun( 'gunfire', '-', mass, _ ). +noun( 'gunman', 'gunmen', count, _ ). +noun( 'gunmetal', '-', mass, _ ). +noun( 'gunner', 'gunners', count, _ ). +noun( 'gunnery', '-', mass, _ ). +noun( 'gunny', '-', mass, _ ). +noun( 'gunplay', '-', mass, _ ). +noun( 'gunpoint', '-', count, _ ). +noun( 'gunpowder', '-', mass, _ ). +noun( 'gunroom', 'gunrooms', count, _ ). +noun( 'gunrunner', 'gunrunners', count, _ ). +noun( 'gunrunning', '-', mass, _ ). +noun( 'gunshot', 'gunshots', both, _ ). +noun( 'gunsmith', 'gunsmiths', count, _ ). +noun( 'gunwale', 'gunwales', count, _ ). +noun( 'gurgle', 'gurgles', both, _ ). +noun( 'guru', 'gurus', count, _ ). +noun( 'gush', 'gushes', count, _ ). +noun( 'gusher', 'gushers', count, _ ). +noun( 'gusset', 'gussets', count, _ ). +noun( 'gust', 'gusts', count, _ ). +noun( 'gustation', '-', mass, _ ). +noun( 'gusto', '-', mass, _ ). +noun( 'gut', 'guts', both, _ ). +noun( 'gutta-percha', '-', mass, _ ). +noun( 'gutter', 'gutters', count, _ ). +noun( 'guttersnipe', 'guttersnipes', count, _ ). +noun( 'guttural', 'gutturals', count, _ ). +noun( 'guvnor', 'guvnors', count, _ ). +noun( 'guy', 'guys', count, _ ). +noun( 'guzzler', 'guzzlers', count, _ ). +noun( 'gym', 'gyms', count, _ ). +noun( 'gymkhana', 'gymkhanas', count, _ ). +noun( 'gymnasium', 'gymnasiums', count, _ ). +noun( 'gymnast', 'gymnasts', count, _ ). +noun( 'gymnastics', 'gymnastics', mass, _ ). +noun( 'gymslip', 'gymslips', count, _ ). +noun( 'gynaecologist', 'gynaecologists', count, _ ). +noun( 'gynaecology', '-', mass, _ ). +noun( 'gynecologist', 'gynecologists', count, _ ). +noun( 'gyp', 'gyps', count, _ ). +noun( 'gypsum', '-', mass, _ ). +noun( 'gyration', 'gyrations', both, _ ). +noun( 'gyro', 'gyros', count, _ ). +noun( 'gyroscope', 'gyroscopes', count, _ ). +noun( 'h', '-', count, _ ). +noun( 'ha\'p\'orth', 'ha\'p\'orths', count, _ ). +noun( 'ha\'penny', 'ha\'pennies', count, _ ). +noun( 'habeas corpus', '-', mass, _ ). +noun( 'haberdasher', 'haberdashers', count, _ ). +noun( 'haberdashery', '-', mass, _ ). +noun( 'habit', 'habits', both, _ ). +noun( 'habitat', 'habitats', count, _ ). +noun( 'habitation', 'habitations', both, _ ). +noun( 'habitu_e', 'habitu_es', count, _ ). +noun( 'habituation', '-', mass, _ ). +noun( 'habitude', '-', mass, _ ). +noun( 'hacienda', 'haciendas', count, _ ). +noun( 'hack', 'hacks', count, _ ). +noun( 'hackney', 'hackneys', count, _ ). +noun( 'hacksaw', 'hacksaws', count, _ ). +noun( 'haddock', 'haddock', both, _ ). +noun( 'haematite', 'haematites', count, _ ). +noun( 'haemoglobin', '-', mass, _ ). +noun( 'haemophilia', '-', mass, _ ). +noun( 'haemophiliac', 'haemophiliacs', count, _ ). +noun( 'haemorrhage', 'haemorrhages', both, _ ). +noun( 'haft', 'hafts', count, _ ). +noun( 'hag', 'hags', count, _ ). +noun( 'haggis', 'haggises', count, _ ). +noun( 'hagiology', 'hagiologies', count, _ ). +noun( 'haha', 'hahas', count, _ ). +noun( 'hail', 'hails', both, _ ). +noun( 'hailstone', 'hailstones', count, _ ). +noun( 'hailstorm', 'hailstorms', count, _ ). +noun( 'hair', 'hairs', both, _ ). +noun( 'hair\'s-breadth', 'hair\'s-breadths', count, _ ). +noun( 'hair-breadth', 'hair-breadths', count, _ ). +noun( 'hair-dye', 'hair-dyes', count, _ ). +noun( 'hair-oil', 'hair-oils', both, _ ). +noun( 'hair-shirt', 'hair-shirts', count, _ ). +noun( 'hair-slide', 'hair-slides', count, _ ). +noun( 'hair-trigger', 'hair-triggers', count, _ ). +noun( 'hairbrush', 'hairbrushes', count, _ ). +noun( 'haircloth', 'haircloths', count, _ ). +noun( 'haircut', 'haircuts', count, _ ). +noun( 'hairdo', 'hairdos', count, _ ). +noun( 'hairdresser', 'hairdressers', count, _ ). +noun( 'hairdressing', '-', mass, _ ). +noun( 'hairiness', '-', mass, _ ). +noun( 'hairline', 'hairlines', count, _ ). +noun( 'hairnet', 'hairnets', count, _ ). +noun( 'hairpiece', 'hairpieces', count, _ ). +noun( 'hairpin', 'hairpins', count, _ ). +noun( 'hairsplitting', '-', mass, _ ). +noun( 'hairspring', 'hairsprings', count, _ ). +noun( 'hairstyle', 'hairstyles', count, _ ). +noun( 'hairstylist', 'hairstylists', count, _ ). +noun( 'hake', 'hake', both, _ ). +noun( 'halberd', 'halberds', count, _ ). +noun( 'halberdier', 'halberdiers', count, _ ). +noun( 'half', 'halves', count, _ ). +noun( 'half-blood', 'half-bloods', count, _ ). +noun( 'half-breed', 'half-breeds', count, _ ). +noun( 'half-brother', 'half-brothers', count, _ ). +noun( 'half-caste', 'half-castes', count, _ ). +noun( 'half-crown', 'half-crowns', count, _ ). +noun( 'half-holiday', 'half-holidays', count, _ ). +noun( 'half-hour', 'half-hours', count, _ ). +noun( 'half-pay', '-', mass, _ ). +noun( 'half-sister', 'half-sisters', count, _ ). +noun( 'half-time', '-', mass, _ ). +noun( 'half-track', 'half-tracks', count, _ ). +noun( 'half-truth', 'half-truths', count, _ ). +noun( 'half-volley', 'half-volleys', count, _ ). +noun( 'halfback', 'halfbacks', count, _ ). +noun( 'halfpenny', 'halfpennies', count, _ ). +noun( 'halfpennyworth', 'halfpennyworths', count, _ ). +noun( 'halftone', 'halftones', count, _ ). +noun( 'halfwit', 'halfwits', count, _ ). +noun( 'halibut', 'halibut', both, _ ). +noun( 'halitosis', '-', mass, _ ). +noun( 'hall', 'halls', count, _ ). +noun( 'hall-stand', 'hall-stands', count, _ ). +noun( 'hallelujah', 'hallelujahs', count, _ ). +noun( 'halliard', 'halliards', count, _ ). +noun( 'hallmark', 'hallmarks', count, _ ). +noun( 'halloo', 'halloos', count, _ ). +noun( 'hallow', 'hallows', count, _ ). +noun( 'hallucination', 'hallucinations', both, _ ). +noun( 'halma', '-', mass, _ ). +noun( 'halo', 'halos', count, _ ). +noun( 'halt', 'halts', count, _ ). +noun( 'halter', 'halters', count, _ ). +noun( 'halyard', 'halyards', count, _ ). +noun( 'ham', 'hams', both, _ ). +noun( 'hamadryad', 'hamadryads', count, _ ). +noun( 'hamburger', 'hamburgers', count, _ ). +noun( 'hamlet', 'hamlets', count, _ ). +noun( 'hammer', 'hammers', count, _ ). +noun( 'hammock', 'hammocks', count, _ ). +noun( 'hamper', 'hampers', count, _ ). +noun( 'hamster', 'hamsters', count, _ ). +noun( 'hamstring', 'hamstrings', count, _ ). +noun( 'hand', 'hands', count, _ ). +noun( 'hand-barrow', 'hand-barrows', count, _ ). +noun( 'hand-grenade', 'hand-grenades', count, _ ). +noun( 'hand-luggage', '-', mass, _ ). +noun( 'hand-me-down', 'hand-me-downs', count, _ ). +noun( 'hand-organ', 'hand-organs', count, _ ). +noun( 'hand-out', 'hand-outs', count, _ ). +noun( 'handbag', 'handbags', count, _ ). +noun( 'handbill', 'handbills', count, _ ). +noun( 'handbook', 'handbooks', count, _ ). +noun( 'handbrake', 'handbrakes', count, _ ). +noun( 'handcart', 'handcarts', count, _ ). +noun( 'handclap', 'handclaps', count, _ ). +noun( 'handcuff', 'handcuffs', count, _ ). +noun( 'handful', 'handfuls', count, _ ). +noun( 'handhold', 'handholds', count, _ ). +noun( 'handicap', 'handicaps', count, _ ). +noun( 'handicraft', 'handicrafts', both, _ ). +noun( 'handiness', '-', mass, _ ). +noun( 'handiwork', 'handiworks', both, _ ). +noun( 'handkerchief', 'handkerchiefs', count, _ ). +noun( 'handle', 'handles', count, _ ). +noun( 'handlebar', 'handlebars', count, _ ). +noun( 'handler', 'handlers', count, _ ). +noun( 'handmaid', 'handmaids', count, _ ). +noun( 'handover', 'handovers', count, _ ). +noun( 'handrail', 'handrails', count, _ ). +noun( 'handsaw', 'handsaws', count, _ ). +noun( 'handshake', 'handshakes', count, _ ). +noun( 'handshaking', '-', mass, _ ). +noun( 'handstand', 'handstands', count, _ ). +noun( 'handwork', '-', mass, _ ). +noun( 'handwriting', '-', mass, _ ). +noun( 'handyman', 'handymen', count, _ ). +noun( 'hang', '-', count, _ ). +noun( 'hang-up', 'hang-ups', count, _ ). +noun( 'hangar', 'hangars', count, _ ). +noun( 'hanger', 'hangers', count, _ ). +noun( 'hanger-on', 'hangers-on', count, _ ). +noun( 'hanging', 'hangings', both, _ ). +noun( 'hangman', 'hangmen', count, _ ). +noun( 'hangnail', 'hangnails', count, _ ). +noun( 'hangover', 'hangovers', count, _ ). +noun( 'hank', 'hanks', count, _ ). +noun( 'hankering', 'hankerings', count, _ ). +noun( 'hanky', 'hankies', count, _ ). +noun( 'hanky-panky', '-', mass, _ ). +noun( 'hansom', 'hansoms', count, _ ). +noun( 'hap', 'haps', count, _ ). +noun( 'happening', 'happenings', count, _ ). +noun( 'happiness', '-', mass, _ ). +noun( 'hara-kiri', '-', mass, _ ). +noun( 'harangue', 'harangues', count, _ ). +noun( 'harassment', '-', mass, _ ). +noun( 'harbinger', 'harbingers', count, _ ). +noun( 'harbour', 'harbours', count, _ ). +noun( 'harbourage', 'harbourages', count, _ ). +noun( 'hardback', 'hardbacks', count, _ ). +noun( 'hardboard', '-', mass, _ ). +noun( 'hardcover', 'hardcovers', count, _ ). +noun( 'hardihood', '-', mass, _ ). +noun( 'hardiness', '-', mass, _ ). +noun( 'hardliner', 'hardliners', count, _ ). +noun( 'hardness', '-', mass, _ ). +noun( 'hardship', 'hardships', both, _ ). +noun( 'hardtop', 'hardtops', count, _ ). +noun( 'hardware', '-', mass, _ ). +noun( 'hardwood', '-', mass, _ ). +noun( 'hare', 'hares', count, _ ). +noun( 'harebell', 'harebells', count, _ ). +noun( 'harelip', 'harelips', count, _ ). +noun( 'harem', 'harems', count, _ ). +noun( 'haricot', 'haricots', count, _ ). +noun( 'harlequin', 'harlequins', count, _ ). +noun( 'harlequinade', 'harlequinades', count, _ ). +noun( 'harlot', 'harlots', count, _ ). +noun( 'harm', '-', mass, _ ). +noun( 'harmattan', 'harmattans', count, _ ). +noun( 'harmonic', 'harmonics', count, _ ). +noun( 'harmonica', 'harmonicas', count, _ ). +noun( 'harmonium', 'harmoniums', count, _ ). +noun( 'harmonization', 'harmonizations', count, _ ). +noun( 'harmony', 'harmonies', both, _ ). +noun( 'harness', 'harnesses', count, _ ). +noun( 'harp', 'harps', count, _ ). +noun( 'harper', 'harpers', count, _ ). +noun( 'harpist', 'harpists', count, _ ). +noun( 'harpoon', 'harpoons', count, _ ). +noun( 'harpsichord', 'harpsichords', count, _ ). +noun( 'harpsichordist', 'harpsichordists', count, _ ). +noun( 'harpy', 'harpies', count, _ ). +noun( 'harridan', 'harridans', count, _ ). +noun( 'harrier', 'harriers', count, _ ). +noun( 'harrow', 'harrows', count, _ ). +noun( 'harshness', '-', mass, _ ). +noun( 'hart', 'harts', count, _ ). +noun( 'harum-scarum', 'harum-scarums', count, _ ). +noun( 'harvest', 'harvests', count, _ ). +noun( 'harvester', 'harvesters', count, _ ). +noun( 'has-been', 'has-beens', count, _ ). +noun( 'hash', '-', mass, _ ). +noun( 'hashish', '-', mass, _ ). +noun( 'hasp', 'hasps', count, _ ). +noun( 'hassle', 'hassles', count, _ ). +noun( 'hassock', 'hassocks', count, _ ). +noun( 'haste', '-', mass, _ ). +noun( 'hastiness', '-', mass, _ ). +noun( 'hat', 'hats', count, _ ). +noun( 'hatband', 'hatbands', count, _ ). +noun( 'hatch', 'hatches', count, _ ). +noun( 'hatchery', 'hatcheries', count, _ ). +noun( 'hatchet', 'hatchets', count, _ ). +noun( 'hatching', '-', mass, _ ). +noun( 'hatchway', 'hatchways', count, _ ). +noun( 'hate', 'hates', both, _ ). +noun( 'hatful', 'hatfuls', count, _ ). +noun( 'hatpin', 'hatpins', count, _ ). +noun( 'hatred', 'hatreds', both, _ ). +noun( 'hatter', 'hatters', count, _ ). +noun( 'hauberk', 'hauberks', count, _ ). +noun( 'haughtiness', '-', mass, _ ). +noun( 'haul', 'hauls', count, _ ). +noun( 'haulage', '-', mass, _ ). +noun( 'haulier', 'hauliers', count, _ ). +noun( 'haulm', '-', mass, _ ). +noun( 'haunch', 'haunches', count, _ ). +noun( 'haunt', 'haunts', count, _ ). +noun( 'hautboy', 'hautboys', count, _ ). +noun( 'hauteur', '-', mass, _ ). +noun( 'haven', 'havens', count, _ ). +noun( 'haversack', 'haversacks', count, _ ). +noun( 'havoc', '-', mass, _ ). +noun( 'haw', 'haws', count, _ ). +noun( 'haw-haw', 'haw-haws', count, _ ). +noun( 'hawk', 'hawks', count, _ ). +noun( 'hawker', 'hawkers', count, _ ). +noun( 'hawser', 'hawsers', count, _ ). +noun( 'hawthorn', 'hawthorns', count, _ ). +noun( 'hay', '-', mass, _ ). +noun( 'haycock', 'haycocks', count, _ ). +noun( 'hayfork', 'hayforks', count, _ ). +noun( 'haymaker', 'haymakers', count, _ ). +noun( 'haymaking', '-', mass, _ ). +noun( 'hayrick', 'hayricks', count, _ ). +noun( 'haystack', 'haystacks', count, _ ). +noun( 'haywire', '-', mass, _ ). +noun( 'hazard', 'hazards', both, _ ). +noun( 'haze', 'hazes', both, _ ). +noun( 'hazel', 'hazels', both, _ ). +noun( 'haziness', '-', mass, _ ). +noun( 'he-goat', 'he-goats', count, _ ). +noun( 'he-man', 'he-men', count, _ ). +noun( 'head', 'heads', count, _ ). +noun( 'head-hunter', 'head-hunters', count, _ ). +noun( 'headache', 'headaches', both, _ ). +noun( 'headband', 'headbands', count, _ ). +noun( 'headdress', 'headdresses', count, _ ). +noun( 'header', 'headers', count, _ ). +noun( 'headgear', '-', mass, _ ). +noun( 'heading', 'headings', count, _ ). +noun( 'headlamp', 'headlamps', count, _ ). +noun( 'headland', 'headlands', count, _ ). +noun( 'headlight', 'headlights', count, _ ). +noun( 'headline', 'headlines', count, _ ). +noun( 'headman', 'headmen', count, _ ). +noun( 'headmaster', 'headmasters', count, _ ). +noun( 'headmistress', 'headmistresses', count, _ ). +noun( 'headpiece', 'headpieces', count, _ ). +noun( 'headrest', 'headrests', count, _ ). +noun( 'headroom', '-', mass, _ ). +noun( 'headset', 'headsets', count, _ ). +noun( 'headship', 'headships', count, _ ). +noun( 'headstall', 'headstalls', count, _ ). +noun( 'headstone', 'headstones', count, _ ). +noun( 'headway', '-', mass, _ ). +noun( 'headwind', 'headwinds', count, _ ). +noun( 'headword', 'headwords', count, _ ). +noun( 'healer', 'healers', count, _ ). +noun( 'health', '-', mass, _ ). +noun( 'heap', 'heaps', count, _ ). +noun( 'hearer', 'hearers', count, _ ). +noun( 'hearing', 'hearings', both, _ ). +noun( 'hearing-aid', 'hearing-aids', count, _ ). +noun( 'hearsay', '-', mass, _ ). +noun( 'hearse', 'hearses', count, _ ). +noun( 'heart', 'hearts', both, _ ). +noun( 'heart\'s-ease', '-', mass, _ ). +noun( 'heart-disease', 'heart-diseases', both, _ ). +noun( 'heart-failure', '-', mass, _ ). +noun( 'heartache', 'heartaches', both, _ ). +noun( 'heartbeat', 'heartbeats', count, _ ). +noun( 'heartbreak', '-', mass, _ ). +noun( 'heartburn', '-', mass, _ ). +noun( 'heartburning', '-', mass, _ ). +noun( 'hearth', 'hearths', count, _ ). +noun( 'hearthrug', 'hearthrugs', count, _ ). +noun( 'heartlessness', '-', mass, _ ). +noun( 'heat', 'heats', both, _ ). +noun( 'heat-flash', 'heat-flashes', count, _ ). +noun( 'heater', 'heaters', count, _ ). +noun( 'heath', 'heaths', both, _ ). +noun( 'heathen', 'heathens', count, _ ). +noun( 'heather', 'heathers', both, _ ). +noun( 'heather-mixture', '-', mass, _ ). +noun( 'heating', '-', mass, _ ). +noun( 'heatspot', 'heatspots', count, _ ). +noun( 'heatstroke', '-', mass, _ ). +noun( 'heatwave', 'heatwaves', count, _ ). +noun( 'heave', 'heaves', count, _ ). +noun( 'heaven', 'heavens', count, _ ). +noun( 'heaviness', '-', mass, _ ). +noun( 'heavyweight', 'heavyweights', count, _ ). +noun( 'hecatomb', 'hecatombs', count, _ ). +noun( 'heck', 'hecks', count, _ ). +noun( 'heckler', 'hecklers', count, _ ). +noun( 'hectare', 'hectares', count, _ ). +noun( 'hedge', 'hedges', count, _ ). +noun( 'hedge-sparrow', 'hedge-sparrows', count, _ ). +noun( 'hedgehog', 'hedgehogs', count, _ ). +noun( 'hedgerow', 'hedgerows', count, _ ). +noun( 'hedonism', '-', mass, _ ). +noun( 'hedonist', 'hedonists', count, _ ). +noun( 'heed', '-', mass, _ ). +noun( 'heehaw', 'heehaws', count, _ ). +noun( 'heel', 'heels', count, _ ). +noun( 'hegemony', 'hegemonies', both, _ ). +noun( 'heifer', 'heifers', count, _ ). +noun( 'height', 'heights', both, _ ). +noun( 'heinousness', '-', mass, _ ). +noun( 'heir', 'heirs', count, _ ). +noun( 'heiress', 'heiresses', count, _ ). +noun( 'heirloom', 'heirlooms', count, _ ). +noun( 'helicopter', 'helicopters', count, _ ). +noun( 'heliograph', 'heliographs', count, _ ). +noun( 'heliotrope', 'heliotropes', count, _ ). +noun( 'heliport', 'heliports', count, _ ). +noun( 'helium', '-', mass, _ ). +noun( 'hell', 'hells', count, _ ). +noun( 'hellcat', 'hellcats', count, _ ). +noun( 'helm', 'helms', count, _ ). +noun( 'helmet', 'helmets', count, _ ). +noun( 'helmsman', 'helmsmen', count, _ ). +noun( 'helot', 'helots', count, _ ). +noun( 'help', 'helps', both, _ ). +noun( 'helper', 'helpers', count, _ ). +noun( 'helpfulness', '-', mass, _ ). +noun( 'helping', 'helpings', count, _ ). +noun( 'helplessness', '-', mass, _ ). +noun( 'helpmate', 'helpmates', count, _ ). +noun( 'helpmeet', 'helpmeets', count, _ ). +noun( 'helter-skelter', 'helter-skelters', count, _ ). +noun( 'helve', 'helves', count, _ ). +noun( 'hem', 'hems', count, _ ). +noun( 'hematite', 'hematites', count, _ ). +noun( 'hemisphere', 'hemispheres', count, _ ). +noun( 'hemline', 'hemlines', count, _ ). +noun( 'hemlock', 'hemlocks', both, _ ). +noun( 'hemming-stitch', 'hemming-stitches', count, _ ). +noun( 'hemoglobin', '-', mass, _ ). +noun( 'hemophilia', '-', mass, _ ). +noun( 'hemophiliac', 'hemophiliacs', count, _ ). +noun( 'hemorrhage', 'hemorrhages', both, _ ). +noun( 'hemp', '-', mass, _ ). +noun( 'hemstitch', 'hemstitches', count, _ ). +noun( 'hen', 'hens', count, _ ). +noun( 'hen-party', 'hen-parties', count, _ ). +noun( 'henbane', '-', mass, _ ). +noun( 'henchman', 'henchmen', count, _ ). +noun( 'hencoop', 'hencoops', count, _ ). +noun( 'henhouse', 'henhouses', count, _ ). +noun( 'henna', '-', mass, _ ). +noun( 'henroost', 'henroosts', count, _ ). +noun( 'hepatitis', '-', mass, _ ). +noun( 'heptagon', 'heptagons', count, _ ). +noun( 'herald', 'heralds', count, _ ). +noun( 'heraldry', '-', mass, _ ). +noun( 'herb', 'herbs', count, _ ). +noun( 'herbage', '-', mass, _ ). +noun( 'herbalist', 'herbalists', count, _ ). +noun( 'herd', 'herds', count, _ ). +noun( 'herdsman', 'herdsmen', count, _ ). +noun( 'hereafter', '-', count, _ ). +noun( 'hereditament', 'hereditaments', count, _ ). +noun( 'heredity', '-', mass, _ ). +noun( 'heresy', 'heresies', both, _ ). +noun( 'heretic', 'heretics', count, _ ). +noun( 'heritage', '-', count, _ ). +noun( 'hermaphrodite', 'hermaphrodites', count, _ ). +noun( 'hermit', 'hermits', count, _ ). +noun( 'hermitage', 'hermitages', count, _ ). +noun( 'hernia', 'hernias', both, _ ). +noun( 'hero', 'heroes', count, _ ). +noun( 'heroics', 'heroics', mass, _ ). +noun( 'heroin', '-', mass, _ ). +noun( 'heroine', 'heroines', count, _ ). +noun( 'heroism', '-', mass, _ ). +noun( 'heron', 'herons', count, _ ). +noun( 'heronry', 'heronries', count, _ ). +noun( 'herring', 'herring', both, _ ). +noun( 'herringbone', '-', mass, _ ). +noun( 'hertz', 'hertz', count, _ ). +noun( 'hesitance', '-', both, _ ). +noun( 'hesitancy', '-', mass, _ ). +noun( 'hesitation', 'hesitations', both, _ ). +noun( 'hessian', '-', mass, _ ). +noun( 'heterodoxy', '-', mass, _ ). +noun( 'heterosexual', 'heterosexuals', count, _ ). +noun( 'heterosexuality', '-', mass, _ ). +noun( 'heuristics', 'heuristics', mass, _ ). +noun( 'hewer', 'hewers', count, _ ). +noun( 'hexagon', 'hexagons', count, _ ). +noun( 'hexameter', 'hexameters', count, _ ). +noun( 'heyday', '-', count, _ ). +noun( 'hi-fi', 'hi-fis', count, _ ). +noun( 'hiatus', 'hiatuses', count, _ ). +noun( 'hibernation', '-', mass, _ ). +noun( 'hibiscus', '-', mass, _ ). +noun( 'hiccough', 'hiccoughs', count, _ ). +noun( 'hiccup', 'hiccups', count, _ ). +noun( 'hick', 'hicks', count, _ ). +noun( 'hickory', 'hickories', both, _ ). +noun( 'hide', 'hides', both, _ ). +noun( 'hide-and-seek', '-', mass, _ ). +noun( 'hide-out', 'hide-outs', count, _ ). +noun( 'hideaway', 'hideaways', count, _ ). +noun( 'hiding', 'hidings', both, _ ). +noun( 'hiding-place', 'hiding-places', count, _ ). +noun( 'hierarchy', 'hierarchies', count, _ ). +noun( 'hieroglyph', 'hieroglyphs', count, _ ). +noun( 'hieroglyphics', 'hieroglyphics', mass, _ ). +noun( 'high-fidelity', '-', mass, _ ). +noun( 'high-frequency', 'high-frequencies', both, _ ). +noun( 'high-mindedness', '-', mass, _ ). +noun( 'high-pressure', '-', mass, _ ). +noun( 'high-up', 'high-ups', count, _ ). +noun( 'highball', 'highballs', count, _ ). +noun( 'highboy', 'highboys', count, _ ). +noun( 'highbrow', 'highbrows', count, _ ). +noun( 'highflier', 'highfliers', count, _ ). +noun( 'highflyer', 'highflyers', count, _ ). +noun( 'highjack', 'highjacks', count, _ ). +noun( 'highland', 'highlands', count, _ ). +noun( 'highlight', 'highlights', count, _ ). +noun( 'highness', 'highnesses', both, _ ). +noun( 'highroad', 'highroads', count, _ ). +noun( 'highway', 'highways', count, _ ). +noun( 'highwayman', 'highwaymen', count, _ ). +noun( 'hijack', 'hijacks', count, _ ). +noun( 'hijacker', 'hijackers', count, _ ). +noun( 'hike', 'hikes', count, _ ). +noun( 'hiker', 'hikers', count, _ ). +noun( 'hilarity', '-', mass, _ ). +noun( 'hill', 'hills', count, _ ). +noun( 'hill-billy', 'hill-billies', count, _ ). +noun( 'hillock', 'hillocks', count, _ ). +noun( 'hillside', 'hillsides', count, _ ). +noun( 'hilt', 'hilts', count, _ ). +noun( 'hind', 'hinds', count, _ ). +noun( 'hindrance', 'hindrances', count, _ ). +noun( 'hindsight', '-', mass, _ ). +noun( 'hinge', 'hinges', count, _ ). +noun( 'hint', 'hints', count, _ ). +noun( 'hinterland', 'hinterlands', count, _ ). +noun( 'hip', 'hips', count, _ ). +noun( 'hip-bath', 'hip-baths', count, _ ). +noun( 'hip-flask', 'hip-flasks', count, _ ). +noun( 'hip-pocket', 'hip-pockets', count, _ ). +noun( 'hippie', 'hippies', count, _ ). +noun( 'hippo', 'hippos', count, _ ). +noun( 'hippodrome', 'hippodromes', count, _ ). +noun( 'hippopotamus', 'hippopotamuses', count, _ ). +noun( 'hippy', 'hippies', count, _ ). +noun( 'hire', '-', mass, _ ). +noun( 'hireling', 'hirelings', count, _ ). +noun( 'hiss', 'hisses', count, _ ). +noun( 'histogram', 'histograms', count, _ ). +noun( 'historian', 'historians', count, _ ). +noun( 'history', 'histories', both, _ ). +noun( 'histrionics', 'histrionics', mass, _ ). +noun( 'hit', 'hits', count, _ ). +noun( 'hitch', 'hitches', count, _ ). +noun( 'hitchhiker', 'hitchhikers', count, _ ). +noun( 'hive', 'hives', count, _ ). +noun( 'hoard', 'hoards', count, _ ). +noun( 'hoarder', 'hoarders', count, _ ). +noun( 'hoarding', 'hoardings', count, _ ). +noun( 'hoarfrost', '-', mass, _ ). +noun( 'hoariness', '-', mass, _ ). +noun( 'hoarseness', '-', mass, _ ). +noun( 'hoax', 'hoaxes', count, _ ). +noun( 'hoaxer', 'hoaxers', count, _ ). +noun( 'hob', 'hobs', count, _ ). +noun( 'hobble', 'hobbles', count, _ ). +noun( 'hobble-skirt', 'hobble-skirts', count, _ ). +noun( 'hobbledehoy', 'hobbledehoys', count, _ ). +noun( 'hobby', 'hobbies', count, _ ). +noun( 'hobbyhorse', 'hobbyhorses', count, _ ). +noun( 'hobgoblin', 'hobgoblins', count, _ ). +noun( 'hobnail', 'hobnails', count, _ ). +noun( 'hobo', 'hobos', count, _ ). +noun( 'hock', 'hocks', both, _ ). +noun( 'hockey', '-', mass, _ ). +noun( 'hocus-pocus', '-', mass, _ ). +noun( 'hod', 'hods', count, _ ). +noun( 'hodgepodge', '-', mass, _ ). +noun( 'hoe', 'hoes', count, _ ). +noun( 'hog', 'hogs', count, _ ). +noun( 'hogshead', 'hogsheads', count, _ ). +noun( 'hogwash', '-', mass, _ ). +noun( 'hoist', 'hoists', count, _ ). +noun( 'hold', 'holds', both, _ ). +noun( 'hold-up', 'hold-ups', count, _ ). +noun( 'holdall', 'holdalls', count, _ ). +noun( 'holder', 'holders', count, _ ). +noun( 'holding', 'holdings', count, _ ). +noun( 'holdup', 'holdups', count, _ ). +noun( 'hole', 'holes', count, _ ). +noun( 'holiday', 'holidays', count, _ ). +noun( 'holiday-maker', 'holiday-makers', count, _ ). +noun( 'holiness', '-', mass, _ ). +noun( 'holloa', 'holloas', count, _ ). +noun( 'hollow', 'hollows', count, _ ). +noun( 'holly', '-', mass, _ ). +noun( 'hollyhock', 'hollyhocks', count, _ ). +noun( 'holm-oak', 'holm-oaks', count, _ ). +noun( 'holocaust', 'holocausts', count, _ ). +noun( 'holograph', 'holographs', count, _ ). +noun( 'holster', 'holsters', count, _ ). +noun( 'holy', 'holies', count, _ ). +noun( 'holystone', '-', mass, _ ). +noun( 'homage', '-', mass, _ ). +noun( 'home', 'homes', count, _ ). +noun( 'home-farm', 'home-farms', count, _ ). +noun( 'homecoming', 'homecomings', count, _ ). +noun( 'homeland', 'homelands', count, _ ). +noun( 'homeliness', '-', mass, _ ). +noun( 'homeopath', 'homeopaths', count, _ ). +noun( 'homesickness', '-', mass, _ ). +noun( 'homespun', '-', mass, _ ). +noun( 'homestead', 'homesteads', count, _ ). +noun( 'homework', '-', mass, _ ). +noun( 'homicide', 'homicides', both, _ ). +noun( 'homiletics', 'homiletics', mass, _ ). +noun( 'homily', 'homilies', count, _ ). +noun( 'hominy', '-', mass, _ ). +noun( 'homo', 'homos', count, _ ). +noun( 'homo sapiens', '-', count, _ ). +noun( 'homoeopath', 'homoeopaths', count, _ ). +noun( 'homoeopathy', '-', mass, _ ). +noun( 'homogeneity', '-', mass, _ ). +noun( 'homograph', 'homographs', count, _ ). +noun( 'homonym', 'homonyms', count, _ ). +noun( 'homophone', 'homophones', count, _ ). +noun( 'homosexual', 'homosexuals', count, _ ). +noun( 'homosexuality', '-', mass, _ ). +noun( 'hone', 'hones', count, _ ). +noun( 'honesty', '-', mass, _ ). +noun( 'honey', 'honeys', both, _ ). +noun( 'honeybee', 'honeybees', count, _ ). +noun( 'honeycomb', 'honeycombs', both, _ ). +noun( 'honeydew', '-', mass, _ ). +noun( 'honeymoon', 'honeymoons', count, _ ). +noun( 'honeysuckle', '-', mass, _ ). +noun( 'honk', 'honks', count, _ ). +noun( 'honorarium', 'honorariums', count, _ ). +noun( 'honorific', 'honorifics', count, _ ). +noun( 'honour', 'honours', both, _ ). +noun( 'hooch', '-', mass, _ ). +noun( 'hood', 'hoods', count, _ ). +noun( 'hoodlum', 'hoodlums', count, _ ). +noun( 'hoodoo', 'hoodoos', count, _ ). +noun( 'hooey', '-', mass, _ ). +noun( 'hoof', 'hoofs', count, _ ). +noun( 'hook', 'hooks', count, _ ). +noun( 'hook-up', 'hook-ups', count, _ ). +noun( 'hookah', 'hookahs', count, _ ). +noun( 'hooker', 'hookers', count, _ ). +noun( 'hookworm', 'hookworms', both, _ ). +noun( 'hooky', '-', count, _ ). +noun( 'hooligan', 'hooligans', count, _ ). +noun( 'hooliganism', '-', mass, _ ). +noun( 'hoop', 'hoops', count, _ ). +noun( 'hoop-la', '-', mass, _ ). +noun( 'hoot', 'hoots', count, _ ). +noun( 'hooter', 'hooters', count, _ ). +noun( 'hop', 'hops', count, _ ). +noun( 'hop-field', 'hop-fields', count, _ ). +noun( 'hop-garden', 'hop-gardens', count, _ ). +noun( 'hop-picker', 'hop-pickers', count, _ ). +noun( 'hop-pole', 'hop-poles', count, _ ). +noun( 'hope', 'hopes', both, _ ). +noun( 'hopefulness', '-', mass, _ ). +noun( 'hopelessness', '-', mass, _ ). +noun( 'hopper', 'hoppers', count, _ ). +noun( 'hopscotch', '-', mass, _ ). +noun( 'horde', 'hordes', count, _ ). +noun( 'horizon', 'horizons', count, _ ). +noun( 'hormone', 'hormones', count, _ ). +noun( 'horn', 'horns', both, _ ). +noun( 'hornbeam', 'hornbeams', count, _ ). +noun( 'hornbill', 'hornbills', count, _ ). +noun( 'hornet', 'hornets', count, _ ). +noun( 'hornpipe', 'hornpipes', count, _ ). +noun( 'horology', '-', mass, _ ). +noun( 'horoscope', 'horoscopes', count, _ ). +noun( 'horridness', '-', mass, _ ). +noun( 'horror', 'horrors', both, _ ). +noun( 'horse', 'horses', count, _ ). +noun( 'horse-chestnut', 'horse-chestnuts', count, _ ). +noun( 'horse-laugh', 'horse-laughs', count, _ ). +noun( 'horse-pond', 'horse-ponds', count, _ ). +noun( 'horse-sense', '-', mass, _ ). +noun( 'horseback', '-', mass, _ ). +noun( 'horsebox', 'horseboxes', count, _ ). +noun( 'horseflesh', '-', mass, _ ). +noun( 'horsefly', 'horseflies', count, _ ). +noun( 'horsehair', '-', mass, _ ). +noun( 'horseman', 'horsemen', count, _ ). +noun( 'horsemanship', '-', mass, _ ). +noun( 'horsemeat', '-', mass, _ ). +noun( 'horseplay', '-', mass, _ ). +noun( 'horsepower', 'horsepower', both, _ ). +noun( 'horserace', 'horseraces', count, _ ). +noun( 'horseracing', '-', mass, _ ). +noun( 'horseradish', '-', mass, _ ). +noun( 'horseshoe', 'horseshoes', count, _ ). +noun( 'horsewhip', 'horsewhips', count, _ ). +noun( 'horsewoman', 'horsewomen', count, _ ). +noun( 'horticulture', '-', mass, _ ). +noun( 'horticulturist', 'horticulturists', count, _ ). +noun( 'hosanna', 'hosannas', count, _ ). +noun( 'hose', 'hoses', both, _ ). +noun( 'hosepipe', 'hosepipes', count, _ ). +noun( 'hosier', 'hosiers', count, _ ). +noun( 'hosiery', '-', mass, _ ). +noun( 'hospice', 'hospices', count, _ ). +noun( 'hospital', 'hospitals', count, _ ). +noun( 'hospitality', '-', mass, _ ). +noun( 'hospitalization', 'hospitalizations', both, _ ). +noun( 'host', 'hosts', count, _ ). +noun( 'hostage', 'hostages', count, _ ). +noun( 'hostel', 'hostels', count, _ ). +noun( 'hosteller', 'hostellers', count, _ ). +noun( 'hostelry', 'hostelries', count, _ ). +noun( 'hostess', 'hostesses', count, _ ). +noun( 'hostility', 'hostilities', both, _ ). +noun( 'hot-water-bottle', 'hot-water-bottles', count, _ ). +noun( 'hotbed', 'hotbeds', count, _ ). +noun( 'hotchpotch', 'hotchpotches', count, _ ). +noun( 'hotel', 'hotels', count, _ ). +noun( 'hotelier', 'hoteliers', count, _ ). +noun( 'hothead', 'hotheads', count, _ ). +noun( 'hothouse', 'hothouses', count, _ ). +noun( 'hotplate', 'hotplates', count, _ ). +noun( 'hound', 'hounds', count, _ ). +noun( 'hour', 'hours', count, _ ). +noun( 'hourglass', 'hourglasses', count, _ ). +noun( 'houri', 'houris', count, _ ). +noun( 'house', 'houses', count, _ ). +noun( 'house-party', 'house-parties', count, _ ). +noun( 'house-warming', 'house-warmings', count, _ ). +noun( 'houseboat', 'houseboats', count, _ ). +noun( 'housebreaker', 'housebreakers', count, _ ). +noun( 'housecoat', 'housecoats', count, _ ). +noun( 'housecraft', '-', mass, _ ). +noun( 'housedog', 'housedogs', count, _ ). +noun( 'housefather', 'housefathers', count, _ ). +noun( 'housefly', 'houseflies', count, _ ). +noun( 'houseful', 'housefuls', count, _ ). +noun( 'household', 'households', count, _ ). +noun( 'householder', 'householders', count, _ ). +noun( 'housekeeper', 'housekeepers', count, _ ). +noun( 'housemaid', 'housemaids', count, _ ). +noun( 'houseman', 'housemen', count, _ ). +noun( 'housemaster', 'housemasters', count, _ ). +noun( 'housemother', 'housemothers', count, _ ). +noun( 'houseroom', '-', mass, _ ). +noun( 'housetop', 'housetops', count, _ ). +noun( 'housewife', 'housewives', count, _ ). +noun( 'housewifery', '-', mass, _ ). +noun( 'housework', '-', mass, _ ). +noun( 'housewrecker', 'housewreckers', count, _ ). +noun( 'housing', '-', mass, _ ). +noun( 'hovel', 'hovels', count, _ ). +noun( 'hovercraft', 'hovercraft', count, _ ). +noun( 'how-d\'ye-do', 'how-d\'ye-dos', count, _ ). +noun( 'howdah', 'howdahs', count, _ ). +noun( 'howitzer', 'howitzers', count, _ ). +noun( 'howl', 'howls', count, _ ). +noun( 'howler', 'howlers', count, _ ). +noun( 'hoyden', 'hoydens', count, _ ). +noun( 'hub', 'hubs', count, _ ). +noun( 'hubble-bubble', 'hubble-bubbles', count, _ ). +noun( 'hubbub', '-', mass, _ ). +noun( 'hubby', 'hubbies', count, _ ). +noun( 'hubris', '-', mass, _ ). +noun( 'huckaback', '-', mass, _ ). +noun( 'huckleberry', 'huckleberries', count, _ ). +noun( 'huckster', 'hucksters', count, _ ). +noun( 'huddle', 'huddles', count, _ ). +noun( 'hue', 'hues', count, _ ). +noun( 'huff', 'huffs', count, _ ). +noun( 'hug', 'hugs', count, _ ). +noun( 'hugger-mugger', '-', count, _ ). +noun( 'hula', 'hulas', count, _ ). +noun( 'hulk', 'hulks', count, _ ). +noun( 'hull', 'hulls', count, _ ). +noun( 'hullabaloo', 'hullabaloos', count, _ ). +noun( 'hum', 'hums', count, _ ). +noun( 'human', 'humans', count, _ ). +noun( 'humanism', '-', mass, _ ). +noun( 'humanist', 'humanists', count, _ ). +noun( 'humanitarian', 'humanitarians', count, _ ). +noun( 'humanitarianism', '-', mass, _ ). +noun( 'humanity', 'humanities', both, _ ). +noun( 'humankind', '-', mass, _ ). +noun( 'humbug', 'humbugs', both, _ ). +noun( 'humdinger', 'humdingers', count, _ ). +noun( 'humerus', 'humeruses', count, _ ). +noun( 'humidity', '-', mass, _ ). +noun( 'humiliation', 'humiliations', both, _ ). +noun( 'humility', '-', mass, _ ). +noun( 'humming-top', 'humming-tops', count, _ ). +noun( 'hummingbird', 'hummingbirds', count, _ ). +noun( 'hummock', 'hummocks', count, _ ). +noun( 'humorist', 'humorists', count, _ ). +noun( 'humour', 'humours', both, _ ). +noun( 'humourist', 'humourists', count, _ ). +noun( 'hump', 'humps', count, _ ). +noun( 'humpback', 'humpbacks', count, _ ). +noun( 'humus', '-', mass, _ ). +noun( 'hunch', 'hunches', count, _ ). +noun( 'hunchback', 'hunchbacks', count, _ ). +noun( 'hundred', 'hundreds', count, _ ). +noun( 'hundredth', 'hundredths', count, _ ). +noun( 'hundredweight', 'hundredweights', count, _ ). +noun( 'hunger', '-', mass, _ ). +noun( 'hunger-march', 'hunger-marches', count, _ ). +noun( 'hunger-marcher', 'hunger-marchers', count, _ ). +noun( 'hunk', 'hunks', count, _ ). +noun( 'hunt', 'hunts', count, _ ). +noun( 'hunter', 'hunters', count, _ ). +noun( 'hunting', '-', mass, _ ). +noun( 'hunting-crop', 'hunting-crops', count, _ ). +noun( 'huntress', 'huntresses', count, _ ). +noun( 'huntsman', 'huntsmen', count, _ ). +noun( 'hurdle', 'hurdles', count, _ ). +noun( 'hurdler', 'hurdlers', count, _ ). +noun( 'hurdy-gurdy', 'hurdy-gurdies', count, _ ). +noun( 'hurl', 'hurls', count, _ ). +noun( 'hurling', '-', mass, _ ). +noun( 'hurly-burly', '-', mass, _ ). +noun( 'hurricane', 'hurricanes', count, _ ). +noun( 'hurry', 'hurries', both, _ ). +noun( 'hurt', '-', mass, _ ). +noun( 'husband', 'husbands', count, _ ). +noun( 'husbandman', 'husbandmen', count, _ ). +noun( 'husbandry', '-', mass, _ ). +noun( 'hush', 'hushes', count, _ ). +noun( 'hush-money', '-', mass, _ ). +noun( 'husk', 'husks', count, _ ). +noun( 'huskiness', '-', mass, _ ). +noun( 'husky', 'huskies', count, _ ). +noun( 'hussar', 'hussars', count, _ ). +noun( 'hussy', 'hussies', count, _ ). +noun( 'hustle', '-', count, _ ). +noun( 'hustler', 'hustlers', count, _ ). +noun( 'hut', 'huts', count, _ ). +noun( 'hutch', 'hutches', count, _ ). +noun( 'hutment', 'hutments', count, _ ). +noun( 'hyacinth', 'hyacinths', count, _ ). +noun( 'hyaena', 'hyaenas', count, _ ). +noun( 'hybrid', 'hybrids', count, _ ). +noun( 'hydra', 'hydras', count, _ ). +noun( 'hydrangea', 'hydrangeas', count, _ ). +noun( 'hydrant', 'hydrants', count, _ ). +noun( 'hydrate', 'hydrates', count, _ ). +noun( 'hydraulics', 'hydraulics', mass, _ ). +noun( 'hydrocarbon', 'hydrocarbons', count, _ ). +noun( 'hydrofoil', 'hydrofoils', count, _ ). +noun( 'hydrogen', '-', mass, _ ). +noun( 'hydropathy', '-', mass, _ ). +noun( 'hydrophobia', '-', mass, _ ). +noun( 'hydroplane', 'hydroplanes', count, _ ). +noun( 'hydroponics', 'hydroponics', mass, _ ). +noun( 'hyena', 'hyenas', count, _ ). +noun( 'hygiene', '-', mass, _ ). +noun( 'hymen', 'hymens', count, _ ). +noun( 'hymn', 'hymns', count, _ ). +noun( 'hymnal', 'hymnals', count, _ ). +noun( 'hyperbola', 'hyperbolas', count, _ ). +noun( 'hyperbole', 'hyperboles', both, _ ). +noun( 'hypermarket', 'hypermarkets', count, _ ). +noun( 'hyphen', 'hyphens', count, _ ). +noun( 'hypnosis', 'hypnoses', both, _ ). +noun( 'hypnotism', '-', mass, _ ). +noun( 'hypnotist', 'hypnotists', count, _ ). +noun( 'hypo', '-', mass, _ ). +noun( 'hypochondria', 'hypochondrias', both, _ ). +noun( 'hypochondriac', 'hypochondriacs', count, _ ). +noun( 'hypocrisy', 'hypocrisies', both, _ ). +noun( 'hypocrite', 'hypocrites', count, _ ). +noun( 'hypodermic', 'hypodermics', count, _ ). +noun( 'hypotenuse', 'hypotenuses', count, _ ). +noun( 'hypothesis', 'hypotheses', count, _ ). +noun( 'hyssop', '-', mass, _ ). +noun( 'hysteria', '-', mass, _ ). +noun( 'hysterics', 'hysterics', mass, _ ). +noun( 'i', '-', count, _ ). +noun( 'iamb', 'iambs', count, _ ). +noun( 'iambics', 'iambics', mass, _ ). +noun( 'iambus', 'iambuses', count, _ ). +noun( 'ibex', 'ibexes', count, _ ). +noun( 'ibid', '-', proper, _ ). +noun( 'ibis', 'ibises', count, _ ). +noun( 'ice', 'ices', both, _ ). +noun( 'ice-axe', 'ice-axes', count, _ ). +noun( 'ice-cream', 'ice-creams', both, _ ). +noun( 'ice-lolly', 'ice-lollies', count, _ ). +noun( 'ice-show', 'ice-shows', count, _ ). +noun( 'ice-skate', 'ice-skates', count, _ ). +noun( 'ice-skating', '-', mass, _ ). +noun( 'ice-tray', 'ice-trays', count, _ ). +noun( 'iceberg', 'icebergs', count, _ ). +noun( 'iceboat', 'iceboats', count, _ ). +noun( 'icebox', 'iceboxes', count, _ ). +noun( 'icebreaker', 'icebreakers', count, _ ). +noun( 'icecap', 'icecaps', count, _ ). +noun( 'icecube', 'icecubes', count, _ ). +noun( 'icefall', 'icefalls', count, _ ). +noun( 'icefield', 'icefields', count, _ ). +noun( 'icefloe', 'icefloes', count, _ ). +noun( 'icehouse', 'icehouses', count, _ ). +noun( 'iceman', 'icemen', count, _ ). +noun( 'icepack', 'icepacks', count, _ ). +noun( 'icepick', 'icepicks', count, _ ). +noun( 'icerink', 'icerinks', count, _ ). +noun( 'ichneumon', 'ichneumons', count, _ ). +noun( 'ichneumon-fly', 'ichneumon-flies', count, _ ). +noun( 'icicle', 'icicles', count, _ ). +noun( 'icing', '-', mass, _ ). +noun( 'icon', 'icons', count, _ ). +noun( 'iconoclast', 'iconoclasts', count, _ ). +noun( 'id', '-', count, _ ). +noun( 'idea', 'ideas', count, _ ). +noun( 'ideal', 'ideals', count, _ ). +noun( 'idealism', '-', mass, _ ). +noun( 'idealist', 'idealists', count, _ ). +noun( 'idealization', 'idealizations', count, _ ). +noun( 'idem', '-', proper, _ ). +noun( 'identification', '-', mass, _ ). +noun( 'identikit', 'identikits', count, _ ). +noun( 'identity', 'identities', both, _ ). +noun( 'ideogram', 'ideograms', count, _ ). +noun( 'ideograph', 'ideographs', count, _ ). +noun( 'ideology', 'ideologies', both, _ ). +noun( 'idiocy', 'idiocies', both, _ ). +noun( 'idiolect', 'idiolects', count, _ ). +noun( 'idiom', 'idioms', both, _ ). +noun( 'idiosyncrasy', 'idiosyncrasies', count, _ ). +noun( 'idiot', 'idiots', count, _ ). +noun( 'idleness', '-', mass, _ ). +noun( 'idler', 'idlers', count, _ ). +noun( 'idol', 'idols', count, _ ). +noun( 'idolater', 'idolaters', count, _ ). +noun( 'idolatress', 'idolatresses', count, _ ). +noun( 'idolatry', 'idolatries', both, _ ). +noun( 'idolization', 'idolizations', count, _ ). +noun( 'idyll', 'idylls', count, _ ). +noun( 'ie', '-', proper, _ ). +noun( 'igloo', 'igloos', count, _ ). +noun( 'ignis fatuus', 'ignes fatui', count, _ ). +noun( 'ignition', '-', mass, _ ). +noun( 'ignominy', 'ignominies', both, _ ). +noun( 'ignoramus', 'ignoramuses', count, _ ). +noun( 'ignorance', '-', mass, _ ). +noun( 'iguana', 'iguanas', count, _ ). +noun( 'ikon', 'ikons', count, _ ). +noun( 'ilex', 'ilexes', count, _ ). +noun( 'ilk', '-', mass, _ ). +noun( 'ill', 'ills', both, _ ). +noun( 'ill-breeding', '-', mass, _ ). +noun( 'ill-treatment', '-', mass, _ ). +noun( 'ill-usage', '-', mass, _ ). +noun( 'illegality', 'illegalities', both, _ ). +noun( 'illegibility', '-', mass, _ ). +noun( 'illegitimacy', '-', mass, _ ). +noun( 'illegitimate', 'illegitimate', count, _ ). +noun( 'illiberality', '-', mass, _ ). +noun( 'illiteracy', 'illiteracies', both, _ ). +noun( 'illiterate', 'illiterates', count, _ ). +noun( 'illness', 'illnesses', both, _ ). +noun( 'illogicality', 'illogicalities', both, _ ). +noun( 'illogicalness', '-', mass, _ ). +noun( 'illumination', 'illuminations', both, _ ). +noun( 'illusion', 'illusions', both, _ ). +noun( 'illusionist', 'illusionists', count, _ ). +noun( 'illustration', 'illustrations', both, _ ). +noun( 'illustrator', 'illustrators', count, _ ). +noun( 'image', 'images', count, _ ). +noun( 'imagery', '-', mass, _ ). +noun( 'imagination', 'imaginations', both, _ ). +noun( 'imam', 'imams', count, _ ). +noun( 'imbalance', 'imbalances', count, _ ). +noun( 'imbecile', 'imbeciles', count, _ ). +noun( 'imbecility', 'imbecilities', both, _ ). +noun( 'imbroglio', 'imbroglios', count, _ ). +noun( 'imitation', 'imitations', both, _ ). +noun( 'imitator', 'imitators', count, _ ). +noun( 'immanence', 'immanences', count, _ ). +noun( 'immaturity', '-', mass, _ ). +noun( 'immediacy', '-', mass, _ ). +noun( 'immensity', 'immensities', both, _ ). +noun( 'immersion', 'immersions', count, _ ). +noun( 'immigrant', 'immigrants', count, _ ). +noun( 'immigration', 'immigrations', both, _ ). +noun( 'imminence', '-', mass, _ ). +noun( 'immobility', '-', mass, _ ). +noun( 'immobilization', '-', mass, _ ). +noun( 'immodesty', 'immodesties', both, _ ). +noun( 'immolation', 'immolations', both, _ ). +noun( 'immorality', 'immoralities', both, _ ). +noun( 'immortal', 'immortals', count, _ ). +noun( 'immortality', '-', mass, _ ). +noun( 'immunity', '-', mass, _ ). +noun( 'immunization', '-', mass, _ ). +noun( 'immunology', '-', mass, _ ). +noun( 'immutability', '-', mass, _ ). +noun( 'imp', 'imps', count, _ ). +noun( 'impact', 'impacts', both, _ ). +noun( 'impairment', 'impairments', count, _ ). +noun( 'impala', 'impalas', count, _ ). +noun( 'impalement', 'impalements', count, _ ). +noun( 'impartiality', '-', mass, _ ). +noun( 'impasse', 'impasses', count, _ ). +noun( 'impassiveness', '-', mass, _ ). +noun( 'impassivity', '-', mass, _ ). +noun( 'impatience', '-', mass, _ ). +noun( 'impeachment', 'impeachments', both, _ ). +noun( 'impediment', 'impediments', count, _ ). +noun( 'impeller', 'impellers', count, _ ). +noun( 'impenitence', '-', mass, _ ). +noun( 'imperfect', '-', count, _ ). +noun( 'imperfection', 'imperfections', both, _ ). +noun( 'imperial', 'imperials', count, _ ). +noun( 'imperialism', '-', mass, _ ). +noun( 'imperialist', 'imperialists', count, _ ). +noun( 'imperiousness', '-', mass, _ ). +noun( 'impermanence', '-', mass, _ ). +noun( 'impersonation', 'impersonations', both, _ ). +noun( 'impersonator', 'impersonators', count, _ ). +noun( 'impertinence', 'impertinences', both, _ ). +noun( 'imperturbability', '-', mass, _ ). +noun( 'impetigo', '-', mass, _ ). +noun( 'impetuosity', 'impetuosities', both, _ ). +noun( 'impetus', '-', both, _ ). +noun( 'impiety', 'impieties', both, _ ). +noun( 'impingement', 'impingements', count, _ ). +noun( 'impishness', '-', mass, _ ). +noun( 'implausibility', '-', mass, _ ). +noun( 'implement', 'implements', count, _ ). +noun( 'implementation', 'implementations', count, _ ). +noun( 'implication', 'implications', both, _ ). +noun( 'implosion', 'implosions', both, _ ). +noun( 'impoliteness', '-', mass, _ ). +noun( 'imponderable', 'imponderables', count, _ ). +noun( 'import', 'imports', both, _ ). +noun( 'importance', '-', mass, _ ). +noun( 'importation', 'importations', both, _ ). +noun( 'importer', 'importers', count, _ ). +noun( 'importunity', '-', mass, _ ). +noun( 'imposition', 'impositions', both, _ ). +noun( 'impossibility', 'impossibilities', both, _ ). +noun( 'impostor', 'impostors', count, _ ). +noun( 'imposture', 'impostures', both, _ ). +noun( 'impotence', '-', mass, _ ). +noun( 'impoverishment', 'impoverishments', count, _ ). +noun( 'impracticability', '-', mass, _ ). +noun( 'impracticableness', '-', mass, _ ). +noun( 'imprecation', 'imprecations', count, _ ). +noun( 'imprecision', '-', mass, _ ). +noun( 'impregnability', '-', mass, _ ). +noun( 'impresario', 'impresarios', count, _ ). +noun( 'impress', 'impresses', count, _ ). +noun( 'impression', 'impressions', count, _ ). +noun( 'impressionism', '-', mass, _ ). +noun( 'impressionist', 'impressionists', count, _ ). +noun( 'impressiveness', '-', mass, _ ). +noun( 'imprimatur', 'imprimaturs', count, _ ). +noun( 'imprint', 'imprints', count, _ ). +noun( 'imprisonment', '-', mass, _ ). +noun( 'improbability', 'improbabilities', both, _ ). +noun( 'impromptu', 'impromptus', count, _ ). +noun( 'impropriety', 'improprieties', both, _ ). +noun( 'improvement', 'improvements', both, _ ). +noun( 'improver', 'improvers', count, _ ). +noun( 'improvidence', '-', mass, _ ). +noun( 'improvisation', 'improvisations', both, _ ). +noun( 'imprudence', 'imprudences', both, _ ). +noun( 'impudence', '-', mass, _ ). +noun( 'impulse', 'impulses', both, _ ). +noun( 'impulsion', 'impulsions', both, _ ). +noun( 'impulsiveness', '-', mass, _ ). +noun( 'impunity', '-', mass, _ ). +noun( 'impurity', 'impurities', both, _ ). +noun( 'imputation', 'imputations', both, _ ). +noun( 'in', 'ins', count, _ ). +noun( 'in-fighting', '-', mass, _ ). +noun( 'in-patient', 'in-patients', count, _ ). +noun( 'in-tray', 'in-trays', count, _ ). +noun( 'inability', '-', mass, _ ). +noun( 'inaccessibility', '-', mass, _ ). +noun( 'inaccuracy', 'inaccuracies', both, _ ). +noun( 'inaction', '-', mass, _ ). +noun( 'inactivity', '-', mass, _ ). +noun( 'inadequacy', 'inadequacies', both, _ ). +noun( 'inadvertence', 'inadvertences', both, _ ). +noun( 'inadvisability', '-', mass, _ ). +noun( 'inanition', '-', mass, _ ). +noun( 'inanity', 'inanities', both, _ ). +noun( 'inappropriateness', '-', mass, _ ). +noun( 'inaptitude', '-', mass, _ ). +noun( 'inattention', '-', mass, _ ). +noun( 'inaudibility', '-', mass, _ ). +noun( 'inaugural', 'inaugurals', count, _ ). +noun( 'inauguration', 'inaugurations', both, _ ). +noun( 'inbreeding', '-', mass, _ ). +noun( 'incandescence', '-', mass, _ ). +noun( 'incantation', 'incantations', both, _ ). +noun( 'incapability', '-', mass, _ ). +noun( 'incapacity', '-', mass, _ ). +noun( 'incarceration', 'incarcerations', count, _ ). +noun( 'incarnation', 'incarnations', count, _ ). +noun( 'incendiarism', '-', mass, _ ). +noun( 'incendiary', 'incendiaries', count, _ ). +noun( 'incense', '-', mass, _ ). +noun( 'incentive', 'incentives', both, _ ). +noun( 'inception', 'inceptions', count, _ ). +noun( 'incertitude', '-', mass, _ ). +noun( 'incest', '-', mass, _ ). +noun( 'inch', 'inches', count, _ ). +noun( 'incidence', 'incidences', count, _ ). +noun( 'incident', 'incidents', count, _ ). +noun( 'incineration', '-', mass, _ ). +noun( 'incinerator', 'incinerators', count, _ ). +noun( 'incision', 'incisions', both, _ ). +noun( 'incisor', 'incisors', count, _ ). +noun( 'incitement', 'incitements', both, _ ). +noun( 'incivility', 'incivilities', both, _ ). +noun( 'incl', '-', proper, _ ). +noun( 'inclemency', '-', mass, _ ). +noun( 'inclination', 'inclinations', both, _ ). +noun( 'incline', 'inclines', count, _ ). +noun( 'inclosure', 'inclosures', both, _ ). +noun( 'inclusion', '-', mass, _ ). +noun( 'incoherence', '-', mass, _ ). +noun( 'income', 'incomes', count, _ ). +noun( 'income-tax', 'income-taxes', both, _ ). +noun( 'incompatibility', 'incompatibilities', both, _ ). +noun( 'incompetence', '-', mass, _ ). +noun( 'incompetency', '-', mass, _ ). +noun( 'incomprehensibility', '-', mass, _ ). +noun( 'incomprehension', '-', mass, _ ). +noun( 'incongruity', 'incongruities', both, _ ). +noun( 'inconsistency', 'inconsistencies', both, _ ). +noun( 'inconstancy', 'inconstancies', both, _ ). +noun( 'incontinence', '-', mass, _ ). +noun( 'inconvenience', 'inconveniences', both, _ ). +noun( 'inconvertibility', '-', mass, _ ). +noun( 'incorporation', '-', mass, _ ). +noun( 'incorrectness', '-', mass, _ ). +noun( 'incorruptibility', '-', mass, _ ). +noun( 'increase', 'increases', both, _ ). +noun( 'incredibility', '-', mass, _ ). +noun( 'incredulity', '-', mass, _ ). +noun( 'increment', 'increments', both, _ ). +noun( 'incrustation', 'incrustations', both, _ ). +noun( 'incubation', 'incubations', count, _ ). +noun( 'incubator', 'incubators', count, _ ). +noun( 'incubus', 'incubuses', count, _ ). +noun( 'incumbency', 'incumbencies', count, _ ). +noun( 'incumbent', 'incumbents', count, _ ). +noun( 'incurable', 'incurables', count, _ ). +noun( 'incursion', 'incursions', count, _ ). +noun( 'indebtedness', '-', mass, _ ). +noun( 'indecency', 'indecencies', both, _ ). +noun( 'indecision', '-', mass, _ ). +noun( 'indecorum', '-', mass, _ ). +noun( 'indelicacy', 'indelicacies', both, _ ). +noun( 'indemnification', 'indemnifications', both, _ ). +noun( 'indemnity', 'indemnities', both, _ ). +noun( 'indent', 'indents', count, _ ). +noun( 'indentation', 'indentations', both, _ ). +noun( 'indenture', 'indentures', count, _ ). +noun( 'independence', '-', mass, _ ). +noun( 'independent', 'independents', count, _ ). +noun( 'indestructibility', '-', mass, _ ). +noun( 'indeterminacy', '-', mass, _ ). +noun( 'index', 'indexes', count, _ ). +noun( 'indexer', 'indexers', count, _ ). +noun( 'indication', 'indications', both, _ ). +noun( 'indicator', 'indicators', count, _ ). +noun( 'indictment', 'indictments', both, _ ). +noun( 'indifference', '-', mass, _ ). +noun( 'indigence', '-', mass, _ ). +noun( 'indigestion', '-', mass, _ ). +noun( 'indignation', '-', mass, _ ). +noun( 'indignity', 'indignities', both, _ ). +noun( 'indigo', '-', mass, _ ). +noun( 'indirectness', '-', mass, _ ). +noun( 'indiscipline', '-', mass, _ ). +noun( 'indiscretion', 'indiscretions', both, _ ). +noun( 'indispensability', '-', mass, _ ). +noun( 'indisposition', 'indispositions', both, _ ). +noun( 'indistinctness', '-', mass, _ ). +noun( 'individual', 'individuals', count, _ ). +noun( 'individualism', '-', mass, _ ). +noun( 'individualist', 'individualists', count, _ ). +noun( 'individuality', 'individualities', both, _ ). +noun( 'indoctrination', '-', mass, _ ). +noun( 'indolence', '-', mass, _ ). +noun( 'inducement', 'inducements', both, _ ). +noun( 'induction', 'inductions', count, _ ). +noun( 'indulgence', 'indulgences', both, _ ). +noun( 'industrialism', '-', mass, _ ). +noun( 'industrialist', 'industrialists', count, _ ). +noun( 'industrialization', '-', mass, _ ). +noun( 'industry', 'industries', both, _ ). +noun( 'inebriate', 'inebriates', count, _ ). +noun( 'inebriation', 'inebriations', count, _ ). +noun( 'inebriety', '-', mass, _ ). +noun( 'ineffectiveness', '-', mass, _ ). +noun( 'ineffectuality', '-', mass, _ ). +noun( 'inefficiency', 'inefficiencies', both, _ ). +noun( 'inelegance', 'inelegances', count, _ ). +noun( 'ineligibility', '-', mass, _ ). +noun( 'ineptitude', 'ineptitudes', both, _ ). +noun( 'inequality', 'inequalities', both, _ ). +noun( 'inequity', 'inequities', both, _ ). +noun( 'inertia', '-', mass, _ ). +noun( 'inessential', 'inessentials', count, _ ). +noun( 'inevitability', '-', mass, _ ). +noun( 'inexactitude', 'inexactitudes', both, _ ). +noun( 'inexpediency', '-', mass, _ ). +noun( 'inexperience', '-', mass, _ ). +noun( 'infallibility', '-', mass, _ ). +noun( 'infamy', 'infamies', both, _ ). +noun( 'infancy', 'infancies', both, _ ). +noun( 'infant', 'infants', count, _ ). +noun( 'infanticide', '-', mass, _ ). +noun( 'infantilism', '-', mass, _ ). +noun( 'infantry', 'infantries', both, _ ). +noun( 'infantryman', 'infantrymen', count, _ ). +noun( 'infatuation', 'infatuations', both, _ ). +noun( 'infection', 'infections', both, _ ). +noun( 'inference', 'inferences', both, _ ). +noun( 'inferior', 'inferiors', count, _ ). +noun( 'inferiority', '-', mass, _ ). +noun( 'inferno', 'infernos', count, _ ). +noun( 'infertility', '-', mass, _ ). +noun( 'infestation', 'infestations', both, _ ). +noun( 'infidel', 'infidels', count, _ ). +noun( 'infidelity', 'infidelities', both, _ ). +noun( 'infield', '-', mass, _ ). +noun( 'infiltration', '-', mass, _ ). +noun( 'infinitive', 'infinitives', count, _ ). +noun( 'infinitude', 'infinitudes', both, _ ). +noun( 'infinity', '-', mass, _ ). +noun( 'infirmary', 'infirmaries', count, _ ). +noun( 'infirmity', 'infirmities', both, _ ). +noun( 'inflammation', 'inflammations', both, _ ). +noun( 'inflation', '-', mass, _ ). +noun( 'inflection', 'inflections', both, _ ). +noun( 'inflexibility', '-', mass, _ ). +noun( 'inflexion', 'inflexions', both, _ ). +noun( 'infliction', 'inflictions', both, _ ). +noun( 'inflorescence', '-', mass, _ ). +noun( 'inflow', 'inflows', both, _ ). +noun( 'influence', 'influences', both, _ ). +noun( 'influenza', '-', mass, _ ). +noun( 'influx', 'influxes', both, _ ). +noun( 'info', '-', mass, _ ). +noun( 'informality', 'informalities', both, _ ). +noun( 'informant', 'informants', count, _ ). +noun( 'information', '-', mass, _ ). +noun( 'informer', 'informers', count, _ ). +noun( 'infraction', 'infractions', both, _ ). +noun( 'infrastructure', 'infrastructures', count, _ ). +noun( 'infrequency', '-', mass, _ ). +noun( 'infringement', 'infringements', both, _ ). +noun( 'infusion', 'infusions', both, _ ). +noun( 'ing_enue', 'ing_enues', count, _ ). +noun( 'ingathering', 'ingatherings', count, _ ). +noun( 'ingenuity', '-', mass, _ ). +noun( 'ingenuousness', '-', mass, _ ). +noun( 'ingle-nook', 'ingle-nooks', count, _ ). +noun( 'ingot', 'ingots', count, _ ). +noun( 'ingratitude', '-', mass, _ ). +noun( 'ingredient', 'ingredients', count, _ ). +noun( 'ingress', '-', mass, _ ). +noun( 'inhabitant', 'inhabitants', count, _ ). +noun( 'inhalation', 'inhalations', count, _ ). +noun( 'inhaler', 'inhalers', count, _ ). +noun( 'inheritance', 'inheritances', both, _ ). +noun( 'inheritor', 'inheritors', count, _ ). +noun( 'inhibition', 'inhibitions', both, _ ). +noun( 'inhibitor', 'inhibitors', count, _ ). +noun( 'inhumanity', 'inhumanities', both, _ ). +noun( 'iniquity', 'iniquities', both, _ ). +noun( 'initial', 'initials', count, _ ). +noun( 'initiate', 'initiates', count, _ ). +noun( 'initiation', '-', mass, _ ). +noun( 'initiative', 'initiatives', both, _ ). +noun( 'injection', 'injections', both, _ ). +noun( 'injunction', 'injunctions', count, _ ). +noun( 'injury', 'injuries', both, _ ). +noun( 'injustice', 'injustices', both, _ ). +noun( 'ink', 'inks', both, _ ). +noun( 'ink-bottle', 'ink-bottles', count, _ ). +noun( 'ink-pad', 'ink-pads', count, _ ). +noun( 'ink-pot', 'ink-pots', count, _ ). +noun( 'inkling', 'inklings', count, _ ). +noun( 'inkstand', 'inkstands', count, _ ). +noun( 'inkwell', 'inkwells', count, _ ). +noun( 'inlay', 'inlays', both, _ ). +noun( 'inlet', 'inlets', count, _ ). +noun( 'inmate', 'inmates', count, _ ). +noun( 'inn', 'inns', count, _ ). +noun( 'inning', 'innings', count, _ ). +noun( 'innings', 'innings', count, _ ). +noun( 'innkeeper', 'innkeepers', count, _ ). +noun( 'innocence', '-', mass, _ ). +noun( 'innocent', 'innocents', count, _ ). +noun( 'innovation', 'innovations', both, _ ). +noun( 'innovator', 'innovators', count, _ ). +noun( 'innuendo', 'innuendoes', count, _ ). +noun( 'inoculation', 'inoculations', both, _ ). +noun( 'inpouring', 'inpourings', count, _ ). +noun( 'input', 'inputs', both, _ ). +noun( 'inquest', 'inquests', count, _ ). +noun( 'inquietude', '-', mass, _ ). +noun( 'inquirer', 'inquirers', count, _ ). +noun( 'inquiry', 'inquiries', both, _ ). +noun( 'inquisition', 'inquisitions', both, _ ). +noun( 'inquisitiveness', '-', mass, _ ). +noun( 'inquisitor', 'inquisitors', count, _ ). +noun( 'inroad', 'inroads', count, _ ). +noun( 'inrush', 'inrushes', count, _ ). +noun( '-', 'ins', count, _ ). +noun( 'insanity', '-', mass, _ ). +noun( 'inscription', 'inscriptions', count, _ ). +noun( 'insect', 'insects', count, _ ). +noun( 'insect-powder', 'insect-powders', count, _ ). +noun( 'insecticide', 'insecticides', count, _ ). +noun( 'insecurity', '-', mass, _ ). +noun( 'insemination', '-', mass, _ ). +noun( 'insensibility', '-', mass, _ ). +noun( 'insensitivity', '-', mass, _ ). +noun( 'insert', 'inserts', count, _ ). +noun( 'insertion', 'insertions', both, _ ). +noun( 'inset', 'insets', count, _ ). +noun( 'inside', 'insides', count, _ ). +noun( 'insider', 'insiders', count, _ ). +noun( 'insidiousness', '-', mass, _ ). +noun( 'insight', 'insights', both, _ ). +noun( 'insignificance', '-', mass, _ ). +noun( 'insincerity', '-', mass, _ ). +noun( 'insinuation', 'insinuations', both, _ ). +noun( 'insipidity', '-', mass, _ ). +noun( 'insipidness', '-', mass, _ ). +noun( 'insistence', '-', mass, _ ). +noun( 'insole', 'insoles', count, _ ). +noun( 'insolence', '-', mass, _ ). +noun( 'insolvency', '-', mass, _ ). +noun( 'insolvent', 'insolvents', count, _ ). +noun( 'insomnia', '-', mass, _ ). +noun( 'insomniac', 'insomniacs', count, _ ). +noun( 'insouciance', '-', mass, _ ). +noun( 'inspection', 'inspections', both, _ ). +noun( 'inspector', 'inspectors', count, _ ). +noun( 'inspectorate', 'inspectorates', count, _ ). +noun( 'inspiration', 'inspirations', both, _ ). +noun( 'instability', 'instabilities', both, _ ). +noun( 'installation', 'installations', both, _ ). +noun( 'instalment', 'instalments', count, _ ). +noun( 'instance', 'instances', count, _ ). +noun( 'instant', 'instants', count, _ ). +noun( 'instep', 'insteps', count, _ ). +noun( 'instigation', 'instigations', count, _ ). +noun( 'instigator', 'instigators', count, _ ). +noun( 'instillation', 'instillations', count, _ ). +noun( 'instinct', 'instincts', both, _ ). +noun( 'institute', 'institutes', count, _ ). +noun( 'institution', 'institutions', both, _ ). +noun( 'instruction', 'instructions', both, _ ). +noun( 'instructor', 'instructors', count, _ ). +noun( 'instructress', 'instructresses', count, _ ). +noun( 'instrument', 'instruments', count, _ ). +noun( 'instrumentalist', 'instrumentalists', count, _ ). +noun( 'instrumentality', '-', mass, _ ). +noun( 'instrumentation', '-', mass, _ ). +noun( 'insubordination', 'insubordinations', both, _ ). +noun( 'insufficiency', '-', mass, _ ). +noun( 'insularism', '-', mass, _ ). +noun( 'insularity', '-', mass, _ ). +noun( 'insulation', '-', mass, _ ). +noun( 'insulator', 'insulators', count, _ ). +noun( 'insulin', '-', mass, _ ). +noun( 'insult', 'insults', both, _ ). +noun( 'insurance', 'insurances', both, _ ). +noun( 'insurgent', 'insurgents', count, _ ). +noun( 'insurrection', 'insurrections', both, _ ). +noun( 'intaglio', 'intaglios', both, _ ). +noun( 'intake', 'intakes', both, _ ). +noun( 'intangibility', '-', mass, _ ). +noun( 'intangibles', 'intangibless', count, _ ). +noun( 'integer', 'integers', count, _ ). +noun( 'integration', '-', mass, _ ). +noun( 'integrity', '-', mass, _ ). +noun( 'integument', 'integuments', count, _ ). +noun( 'intellect', 'intellects', both, _ ). +noun( 'intellectual', 'intellectuals', count, _ ). +noun( 'intelligence', '-', mass, _ ). +noun( 'intelligentsia', 'intelligentsias', count, _ ). +noun( 'intelligibility', '-', mass, _ ). +noun( 'intemperance', '-', mass, _ ). +noun( 'intensification', 'intensifications', both, _ ). +noun( 'intensity', 'intensities', both, _ ). +noun( 'intent', 'intents', both, _ ). +noun( 'intention', 'intentions', both, _ ). +noun( 'intentness', '-', mass, _ ). +noun( 'interaction', 'interactions', count, _ ). +noun( 'interception', 'interceptions', both, _ ). +noun( 'interceptor', 'interceptors', count, _ ). +noun( 'intercession', 'intercessions', both, _ ). +noun( 'interchange', 'interchanges', both, _ ). +noun( 'intercom', 'intercoms', count, _ ). +noun( 'intercommunication', '-', mass, _ ). +noun( 'intercommunion', 'intercommunions', count, _ ). +noun( 'interconnectedness', '-', mass, _ ). +noun( 'interconnection', 'interconnections', both, _ ). +noun( 'intercourse', '-', mass, _ ). +noun( 'interdependence', 'interdependences', count, _ ). +noun( 'interdict', 'interdicts', count, _ ). +noun( 'interdiction', 'interdictions', both, _ ). +noun( 'interest', 'interests', both, _ ). +noun( 'interface', 'interfaces', count, _ ). +noun( 'interference', '-', mass, _ ). +noun( 'interim', '-', mass, _ ). +noun( 'interior', 'interiors', count, _ ). +noun( 'interjection', 'interjections', count, _ ). +noun( 'interlocutor', 'interlocutors', count, _ ). +noun( 'interloper', 'interlopers', count, _ ). +noun( 'interlude', 'interludes', count, _ ). +noun( 'intermarriage', 'intermarriages', both, _ ). +noun( 'intermediary', 'intermediaries', count, _ ). +noun( 'intermediate', 'intermediates', count, _ ). +noun( 'interment', 'interments', both, _ ). +noun( 'intermezzo', 'intermezzos', count, _ ). +noun( 'intermission', 'intermissions', count, _ ). +noun( 'intermixture', 'intermixtures', count, _ ). +noun( 'intern', 'interns', count, _ ). +noun( 'international', 'internationals', count, _ ). +noun( 'internationale', 'internationales', count, _ ). +noun( 'internationalism', '-', mass, _ ). +noun( 'internationalist', 'internationalists', count, _ ). +noun( 'internationalization', 'internationalizations', both, _ ). +noun( 'interne', 'internes', count, _ ). +noun( 'internee', 'internees', count, _ ). +noun( 'internment', '-', mass, _ ). +noun( 'interpellation', 'interpellations', both, _ ). +noun( 'interphone', 'interphones', count, _ ). +noun( 'interplay', '-', mass, _ ). +noun( 'interpolation', 'interpolations', both, _ ). +noun( 'interposition', 'interpositions', both, _ ). +noun( 'interpretation', 'interpretations', both, _ ). +noun( 'interpreter', 'interpreters', count, _ ). +noun( 'interregnum', 'interregnums', count, _ ). +noun( 'interrelation', 'interrelations', both, _ ). +noun( 'interrelationship', 'interrelationships', both, _ ). +noun( 'interrogation', 'interrogations', both, _ ). +noun( 'interrogative', 'interrogatives', count, _ ). +noun( 'interrogator', 'interrogators', count, _ ). +noun( 'interrupter', 'interrupters', count, _ ). +noun( 'interruption', 'interruptions', both, _ ). +noun( 'intersection', 'intersections', both, _ ). +noun( 'interstice', 'interstices', count, _ ). +noun( 'interval', 'intervals', count, _ ). +noun( 'intervention', 'interventions', both, _ ). +noun( 'interview', 'interviews', count, _ ). +noun( 'interviewer', 'interviewers', count, _ ). +noun( 'intestine', 'intestines', count, _ ). +noun( 'intimacy', 'intimacies', both, _ ). +noun( 'intimate', 'intimates', count, _ ). +noun( 'intimation', 'intimations', both, _ ). +noun( 'intimidation', '-', mass, _ ). +noun( 'intolerance', '-', mass, _ ). +noun( 'intonation', '-', mass, _ ). +noun( 'intoxicant', 'intoxicants', count, _ ). +noun( 'intoxication', '-', mass, _ ). +noun( 'intractability', '-', mass, _ ). +noun( 'intransigence', '-', mass, _ ). +noun( 'intrepidity', 'intrepidities', both, _ ). +noun( 'intricacy', 'intricacies', both, _ ). +noun( 'intrigue', 'intrigues', both, _ ). +noun( 'intro', '-', count, _ ). +noun( 'introduction', 'introductions', both, _ ). +noun( 'introspection', '-', mass, _ ). +noun( 'introversion', '-', mass, _ ). +noun( 'introvert', 'introverts', count, _ ). +noun( 'intruder', 'intruders', count, _ ). +noun( 'intrusion', 'intrusions', both, _ ). +noun( 'intuition', 'intuitions', both, _ ). +noun( 'intumescence', '-', mass, _ ). +noun( 'inundation', 'inundations', both, _ ). +noun( 'invader', 'invaders', count, _ ). +noun( 'invalid', 'invalids', count, _ ). +noun( 'invalidation', 'invalidations', both, _ ). +noun( 'invalidism', '-', mass, _ ). +noun( 'invalidity', '-', mass, _ ). +noun( 'invasion', 'invasions', both, _ ). +noun( 'invective', '-', mass, _ ). +noun( 'invention', 'inventions', both, _ ). +noun( 'inventor', 'inventors', count, _ ). +noun( 'inventory', 'inventories', count, _ ). +noun( 'inverse', '-', mass, _ ). +noun( 'inversion', 'inversions', both, _ ). +noun( 'invertebrate', 'invertebrates', count, _ ). +noun( 'investigation', 'investigations', both, _ ). +noun( 'investigator', 'investigators', count, _ ). +noun( 'investiture', 'investitures', count, _ ). +noun( 'investment', 'investments', both, _ ). +noun( 'investor', 'investors', count, _ ). +noun( 'invigilation', 'invigilations', both, _ ). +noun( 'invigilator', 'invigilators', count, _ ). +noun( 'invincibility', '-', mass, _ ). +noun( 'invisibility', '-', mass, _ ). +noun( 'invitation', 'invitations', both, _ ). +noun( 'invite', 'invites', count, _ ). +noun( 'invocation', 'invocations', both, _ ). +noun( 'invoice', 'invoices', count, _ ). +noun( 'involution', 'involutions', count, _ ). +noun( 'involvement', 'involvements', count, _ ). +noun( 'inwardness', '-', mass, _ ). +noun( 'iodine', '-', mass, _ ). +noun( 'ion', 'ions', count, _ ). +noun( 'ionization', '-', mass, _ ). +noun( 'ionosphere', 'ionospheres', count, _ ). +noun( 'iota', 'iotas', count, _ ). +noun( 'ipse dixit', 'ipse dixits', count, _ ). +noun( 'irascibility', '-', mass, _ ). +noun( 'ire', '-', mass, _ ). +noun( 'iridescence', '-', mass, _ ). +noun( 'iridium', '-', mass, _ ). +noun( 'iris', 'irises', count, _ ). +noun( 'iron', 'irons', both, _ ). +noun( 'iron-foundry', 'iron-foundries', count, _ ). +noun( 'iron-grey', '-', mass, _ ). +noun( 'ironing-board', 'ironing-boards', count, _ ). +noun( 'ironmonger', 'ironmongers', count, _ ). +noun( 'ironmongery', 'ironmongeries', both, _ ). +noun( 'ironmould', 'ironmoulds', count, _ ). +noun( 'ironside', 'ironsides', count, _ ). +noun( 'ironware', '-', mass, _ ). +noun( 'ironwork', 'ironworks', count, _ ). +noun( 'ironworks', 'ironworks', count, _ ). +noun( 'irony', 'ironies', both, _ ). +noun( 'irredentist', 'irredentists', count, _ ). +noun( 'irregular', 'irregulars', count, _ ). +noun( 'irregularity', 'irregularities', both, _ ). +noun( 'irrelevance', 'irrelevances', both, _ ). +noun( 'irrelevancy', 'irrelevancies', both, _ ). +noun( 'irresolution', '-', mass, _ ). +noun( 'irresponsibility', '-', mass, _ ). +noun( 'irreverence', '-', mass, _ ). +noun( 'irreversibility', '-', mass, _ ). +noun( 'irridentism', '-', mass, _ ). +noun( 'irrigation', '-', mass, _ ). +noun( 'irritability', '-', mass, _ ). +noun( 'irritant', 'irritants', count, _ ). +noun( 'irritation', 'irritations', both, _ ). +noun( 'irruption', 'irruptions', count, _ ). +noun( 'isinglass', '-', mass, _ ). +noun( 'island', 'islands', count, _ ). +noun( 'islander', 'islanders', count, _ ). +noun( 'isle', 'isles', count, _ ). +noun( 'islet', 'islets', count, _ ). +noun( 'ism', 'isms', count, _ ). +noun( 'isobar', 'isobars', count, _ ). +noun( 'isolation', '-', mass, _ ). +noun( 'isolationism', '-', mass, _ ). +noun( 'isolationist', 'isolationists', count, _ ). +noun( 'isotherm', 'isotherms', count, _ ). +noun( 'isotope', 'isotopes', count, _ ). +noun( 'issue', 'issues', both, _ ). +noun( 'isthmus', 'isthmuses', count, _ ). +noun( 'itch', 'itches', count, _ ). +noun( 'item', 'items', count, _ ). +noun( 'iteration', 'iterations', both, _ ). +noun( 'itinerary', 'itineraries', count, _ ). +noun( 'ivory', '-', mass, _ ). +noun( 'ivy', 'ivies', both, _ ). +noun( 'j', '-', count, _ ). +noun( 'jab', 'jabs', count, _ ). +noun( 'jabber', '-', mass, _ ). +noun( 'jabberer', 'jabberers', count, _ ). +noun( 'jabot', 'jabots', count, _ ). +noun( 'jack', 'jacks', count, _ ). +noun( 'jack-in-the-box', 'jack-in-the-boxes', count, _ ). +noun( 'jack-knife', 'jack-knives', count, _ ). +noun( 'jack-o\'-lantern', 'jack-o\'-lanterns', count, _ ). +noun( 'jack-plane', 'jack-planes', count, _ ). +noun( 'jackal', 'jackals', count, _ ). +noun( 'jackanapes', '-', count, _ ). +noun( 'jackass', 'jackasses', count, _ ). +noun( 'jackboot', 'jackboots', count, _ ). +noun( 'jackdaw', 'jackdaws', count, _ ). +noun( 'jacket', 'jackets', count, _ ). +noun( 'jackpot', 'jackpots', count, _ ). +noun( 'jade', 'jades', both, _ ). +noun( 'jag', 'jags', count, _ ). +noun( 'jaguar', 'jaguars', count, _ ). +noun( 'jail', 'jails', both, _ ). +noun( 'jailer', 'jailers', count, _ ). +noun( 'jailor', 'jailors', count, _ ). +noun( 'jakes', '-', count, _ ). +noun( 'jalopy', 'jalopies', count, _ ). +noun( 'jam', 'jams', both, _ ). +noun( 'jamb', 'jambs', count, _ ). +noun( 'jamboree', 'jamborees', count, _ ). +noun( 'jamjar', 'jamjars', count, _ ). +noun( 'jampot', 'jampots', count, _ ). +noun( 'jangle', '-', mass, _ ). +noun( 'janitor', 'janitors', count, _ ). +noun( 'jape', 'japes', count, _ ). +noun( 'japonica', '-', mass, _ ). +noun( 'jar', 'jars', count, _ ). +noun( 'jarful', 'jarfuls', count, _ ). +noun( 'jargon', '-', mass, _ ). +noun( 'jasmine', '-', mass, _ ). +noun( 'jasper', '-', mass, _ ). +noun( 'jaundice', '-', mass, _ ). +noun( 'jaunt', 'jaunts', count, _ ). +noun( 'jauntiness', '-', mass, _ ). +noun( 'jaunting-car', 'jaunting-cars', count, _ ). +noun( 'javelin', 'javelins', count, _ ). +noun( 'jaw', 'jaws', count, _ ). +noun( 'jawbone', 'jawbones', count, _ ). +noun( 'jawbreaker', 'jawbreakers', count, _ ). +noun( 'jay', 'jays', count, _ ). +noun( 'jaywalker', 'jaywalkers', count, _ ). +noun( 'jazz', '-', mass, _ ). +noun( 'jealousy', 'jealousies', both, _ ). +noun( 'jean', '-', mass, _ ). +noun( 'jeep', 'jeeps', count, _ ). +noun( 'jeer', 'jeers', count, _ ). +noun( 'jejuneness', '-', mass, _ ). +noun( 'jellaba', 'jellabas', count, _ ). +noun( 'jelly', 'jellies', both, _ ). +noun( 'jellyfish', 'jellyfish', count, _ ). +noun( 'jemmy', 'jemmies', count, _ ). +noun( 'jenny', 'jennies', count, _ ). +noun( 'jeopardy', '-', mass, _ ). +noun( 'jerboa', 'jerboas', count, _ ). +noun( 'jeremiad', 'jeremiads', count, _ ). +noun( 'jerk', 'jerks', count, _ ). +noun( 'jerkin', 'jerkins', count, _ ). +noun( 'jerkiness', '-', mass, _ ). +noun( 'jerry', 'jerries', count, _ ). +noun( 'jerry-builder', 'jerry-builders', count, _ ). +noun( 'jerry-building', '-', mass, _ ). +noun( 'jersey', 'jerseys', both, _ ). +noun( 'jest', 'jests', count, _ ). +noun( 'jester', 'jesters', count, _ ). +noun( 'jet', 'jets', both, _ ). +noun( 'jetsam', '-', mass, _ ). +noun( 'jetty', 'jetties', count, _ ). +noun( 'jewel', 'jewels', count, _ ). +noun( 'jeweller', 'jewellers', count, _ ). +noun( 'jewellery', '-', mass, _ ). +noun( 'jewelry', '-', mass, _ ). +noun( 'jib', 'jibs', count, _ ). +noun( 'jib-boom', 'jib-booms', count, _ ). +noun( 'jibe', 'jibes', count, _ ). +noun( 'jiffy', 'jiffies', count, _ ). +noun( 'jig', 'jigs', count, _ ). +noun( 'jigger', 'jiggers', count, _ ). +noun( 'jiggery-pokery', '-', mass, _ ). +noun( 'jiggle', 'jiggles', count, _ ). +noun( 'jigsaw', 'jigsaws', count, _ ). +noun( 'jihad', 'jihads', count, _ ). +noun( 'jilt', 'jilts', count, _ ). +noun( 'jimmy', 'jimmies', count, _ ). +noun( 'jingle', 'jingles', count, _ ). +noun( 'jingo', 'jingoes', count, _ ). +noun( 'jingoism', '-', mass, _ ). +noun( 'jingoist', 'jingoists', count, _ ). +noun( 'jinks', '-', mass, _ ). +noun( 'jinn', 'jinns', count, _ ). +noun( 'jinx', 'jinxes', count, _ ). +noun( 'jitney', 'jitneys', count, _ ). +noun( 'jitterbug', 'jitterbugs', count, _ ). +noun( 'jive', 'jives', count, _ ). +noun( 'job', 'jobs', count, _ ). +noun( 'jobber', 'jobbers', count, _ ). +noun( 'jobbery', '-', mass, _ ). +noun( 'jockey', 'jockeys', count, _ ). +noun( 'jocoseness', '-', mass, _ ). +noun( 'jocosity', '-', mass, _ ). +noun( 'jocularity', 'jocularities', both, _ ). +noun( 'jocundity', 'jocundities', both, _ ). +noun( 'jog', 'jogs', count, _ ). +noun( 'jog-trot', 'jog-trots', count, _ ). +noun( 'jogger', 'joggers', count, _ ). +noun( 'jogging', '-', mass, _ ). +noun( 'joggle', 'joggles', count, _ ). +noun( 'john', '-', count, _ ). +noun( 'joie de vivre', '-', mass, _ ). +noun( 'join', 'joins', count, _ ). +noun( 'joiner', 'joiners', count, _ ). +noun( 'joinery', '-', mass, _ ). +noun( 'joint', 'joints', count, _ ). +noun( 'jointure', 'jointures', count, _ ). +noun( 'joist', 'joists', count, _ ). +noun( 'joke', 'jokes', count, _ ). +noun( 'joker', 'jokers', count, _ ). +noun( 'jollification', 'jollifications', both, _ ). +noun( 'jollity', 'jollities', both, _ ). +noun( 'jollyboat', 'jollyboats', count, _ ). +noun( 'jolt', 'jolts', count, _ ). +noun( 'jonquil', 'jonquils', count, _ ). +noun( 'joss', 'josses', count, _ ). +noun( 'joss-house', 'joss-houses', count, _ ). +noun( 'joss-stick', 'joss-sticks', count, _ ). +noun( 'jot', 'jots', count, _ ). +noun( 'jotter', 'jotters', count, _ ). +noun( 'joule', 'joules', count, _ ). +noun( 'journal', 'journals', count, _ ). +noun( 'journalese', '-', mass, _ ). +noun( 'journalism', '-', mass, _ ). +noun( 'journalist', 'journalists', count, _ ). +noun( 'journey', 'journeys', count, _ ). +noun( 'journeyman', 'journeymen', count, _ ). +noun( 'joust', 'jousts', count, _ ). +noun( 'joviality', 'jovialities', both, _ ). +noun( 'jowl', 'jowls', count, _ ). +noun( 'joy', 'joys', both, _ ). +noun( 'joy-ride', 'joy-rides', count, _ ). +noun( 'joy-stick', 'joy-sticks', count, _ ). +noun( 'joyfulness', '-', mass, _ ). +noun( 'joylessness', '-', mass, _ ). +noun( 'joyousness', '-', mass, _ ). +noun( 'ju-jitsu', '-', mass, _ ). +noun( 'jubilation', 'jubilations', both, _ ). +noun( 'jubilee', 'jubilees', count, _ ). +noun( 'judge', 'judges', count, _ ). +noun( 'judgement', 'judgements', both, _ ). +noun( 'judicature', 'judicatures', both, _ ). +noun( 'judiciary', 'judiciaries', count, _ ). +noun( 'judiciousness', '-', mass, _ ). +noun( 'judo', '-', mass, _ ). +noun( 'jug', 'jugs', count, _ ). +noun( 'jugful', 'jugfuls', count, _ ). +noun( 'juggernaut', 'juggernauts', count, _ ). +noun( 'juggler', 'jugglers', count, _ ). +noun( 'juice', 'juices', both, _ ). +noun( 'juiciness', '-', mass, _ ). +noun( 'juju', 'jujus', count, _ ). +noun( 'jujube', 'jujubes', count, _ ). +noun( 'jukebox', 'jukeboxes', count, _ ). +noun( 'julep', 'juleps', count, _ ). +noun( 'jumble', 'jumbles', both, _ ). +noun( 'jumble-sale', 'jumble-sales', count, _ ). +noun( 'jump', 'jumps', count, _ ). +noun( 'jumper', 'jumpers', count, _ ). +noun( 'jumpiness', '-', mass, _ ). +noun( 'junction', 'junctions', both, _ ). +noun( 'juncture', 'junctures', count, _ ). +noun( 'jungle', 'jungles', count, _ ). +noun( 'junior', 'juniors', count, _ ). +noun( 'juniper', 'junipers', count, _ ). +noun( 'junk', 'junks', both, _ ). +noun( 'junk-shop', 'junk-shops', count, _ ). +noun( 'junket', 'junkets', both, _ ). +noun( 'junketing', '-', mass, _ ). +noun( 'junkie', 'junkies', count, _ ). +noun( 'junky', 'junkies', count, _ ). +noun( 'junta', 'juntas', count, _ ). +noun( 'jurisdiction', '-', mass, _ ). +noun( 'jurisprudence', '-', mass, _ ). +noun( 'jurist', 'jurists', count, _ ). +noun( 'juror', 'jurors', count, _ ). +noun( 'jury', 'juries', count, _ ). +noun( 'jury-box', 'jury-boxes', count, _ ). +noun( 'jury-mast', 'jury-masts', count, _ ). +noun( 'juryman', 'jurymen', count, _ ). +noun( 'justice', 'justices', both, _ ). +noun( 'justiciary', 'justiciaries', count, _ ). +noun( 'justification', 'justifications', both, _ ). +noun( 'justness', '-', mass, _ ). +noun( 'jute', '-', mass, _ ). +noun( 'juvenile', 'juveniles', count, _ ). +noun( 'juxtaposition', '-', mass, _ ). +noun( 'k', '-', count, _ ). +noun( 'k\"ummel', '-', mass, _ ). +noun( 'kaffir', 'kaffirs', count, _ ). +noun( 'kail', '-', mass, _ ). +noun( 'kakemono', 'kakemonos', count, _ ). +noun( 'kale', '-', mass, _ ). +noun( 'kaleidoscope', 'kaleidoscopes', count, _ ). +noun( 'kampong', 'kampongs', count, _ ). +noun( 'kangaroo', 'kangaroos', count, _ ). +noun( 'kaolin', '-', mass, _ ). +noun( 'kapok', '-', mass, _ ). +noun( 'karat', 'karats', count, _ ). +noun( 'karate', '-', mass, _ ). +noun( 'karma', 'karmas', count, _ ). +noun( 'kava', '-', mass, _ ). +noun( 'kayak', 'kayaks', count, _ ). +noun( 'kebab', 'kebabs', count, _ ). +noun( 'kedgeree', '-', mass, _ ). +noun( 'keel', 'keels', count, _ ). +noun( 'keen', 'keens', count, _ ). +noun( 'keenness', '-', mass, _ ). +noun( 'keep', 'keeps', both, _ ). +noun( 'keeper', 'keepers', count, _ ). +noun( 'keeping', '-', mass, _ ). +noun( 'keepsake', 'keepsakes', count, _ ). +noun( 'keg', 'kegs', count, _ ). +noun( 'kelp', '-', mass, _ ). +noun( 'ken', '-', mass, _ ). +noun( 'kennel', 'kennels', count, _ ). +noun( 'kepi', 'kepis', count, _ ). +noun( 'kerb', 'kerbs', count, _ ). +noun( 'kerbstone', 'kerbstones', count, _ ). +noun( 'kerchief', 'kerchiefs', count, _ ). +noun( 'kernel', 'kernels', count, _ ). +noun( 'kerosene', '-', mass, _ ). +noun( 'kestrel', 'kestrels', count, _ ). +noun( 'ketch', 'ketches', count, _ ). +noun( 'ketchup', '-', mass, _ ). +noun( 'kettle', 'kettles', count, _ ). +noun( 'kettledrum', 'kettledrums', count, _ ). +noun( 'key', 'keys', count, _ ). +noun( 'keyboard', 'keyboards', count, _ ). +noun( 'keyhole', 'keyholes', count, _ ). +noun( 'keynote', 'keynotes', count, _ ). +noun( 'keyring', 'keyrings', count, _ ). +noun( 'keystone', 'keystones', count, _ ). +noun( 'keyword', 'keywords', count, _ ). +noun( 'kg', 'kg', count, _ ). +noun( 'khaki', '-', mass, _ ). +noun( 'khan', 'khans', count, _ ). +noun( 'kibbutz', 'kibbutzim', count, _ ). +noun( 'kibbutznik', 'kibbutzniks', count, _ ). +noun( 'kick', 'kicks', both, _ ). +noun( 'kick-start', 'kick-starts', count, _ ). +noun( 'kick-starter', 'kick-starters', count, _ ). +noun( 'kickback', 'kickbacks', count, _ ). +noun( 'kickoff', 'kickoffs', count, _ ). +noun( 'kid', 'kids', both, _ ). +noun( 'kiddy', 'kiddies', count, _ ). +noun( 'kidnapper', 'kidnappers', count, _ ). +noun( 'kidney', 'kidneys', count, _ ). +noun( 'kidney-bean', 'kidney-beans', count, _ ). +noun( 'kill', '-', count, _ ). +noun( 'killer', 'killers', count, _ ). +noun( 'killing', 'killings', both, _ ). +noun( 'killjoy', 'killjoys', count, _ ). +noun( 'kiln', 'kilns', count, _ ). +noun( 'kilo', 'kilos', count, _ ). +noun( 'kilocycle', 'kilocycles', count, _ ). +noun( 'kilogram', 'kilograms', count, _ ). +noun( 'kilolitre', 'kilolitres', count, _ ). +noun( 'kilometre', 'kilometres', count, _ ). +noun( 'kilowatt', 'kilowatts', count, _ ). +noun( 'kilt', 'kilts', count, _ ). +noun( 'kimono', 'kimonos', count, _ ). +noun( 'kind', 'kinds', both, _ ). +noun( 'kindergarten', 'kindergartens', count, _ ). +noun( 'kindling', '-', mass, _ ). +noun( 'kindness', 'kindnesses', both, _ ). +noun( 'kindred', '-', mass, _ ). +noun( 'kinetics', 'kinetics', mass, _ ). +noun( 'king', 'kings', count, _ ). +noun( 'kingcup', 'kingcups', count, _ ). +noun( 'kingdom', 'kingdoms', count, _ ). +noun( 'kingfisher', 'kingfishers', count, _ ). +noun( 'kingpin', 'kingpins', count, _ ). +noun( 'kingship', '-', mass, _ ). +noun( 'kink', 'kinks', count, _ ). +noun( 'kinship', '-', mass, _ ). +noun( 'kinsman', 'kinsmen', count, _ ). +noun( 'kinswoman', 'kinswomen', count, _ ). +noun( 'kiosk', 'kiosks', count, _ ). +noun( 'kip', 'kips', count, _ ). +noun( 'kipper', 'kippers', count, _ ). +noun( 'kirk', 'kirks', count, _ ). +noun( 'kirsch', '-', mass, _ ). +noun( 'kirtle', 'kirtles', count, _ ). +noun( 'kismet', '-', mass, _ ). +noun( 'kiss', 'kisses', count, _ ). +noun( 'kisser', 'kissers', count, _ ). +noun( 'kit', 'kits', both, _ ). +noun( 'kitbag', 'kitbags', count, _ ). +noun( 'kitchen', 'kitchens', count, _ ). +noun( 'kitchenette', 'kitchenettes', count, _ ). +noun( 'kite', 'kites', count, _ ). +noun( 'kite-balloon', 'kite-balloons', count, _ ). +noun( 'kitten', 'kittens', count, _ ). +noun( 'kitty', 'kitties', count, _ ). +noun( 'kiwi', 'kiwis', count, _ ). +noun( 'klaxon', 'klaxons', count, _ ). +noun( 'kleenex', 'kleenexes', both, _ ). +noun( 'kleptomania', '-', mass, _ ). +noun( 'kleptomaniac', 'kleptomaniacs', count, _ ). +noun( 'km', 'km', count, _ ). +noun( 'knack', 'knacks', count, _ ). +noun( 'knacker', 'knackers', count, _ ). +noun( 'knapsack', 'knapsacks', count, _ ). +noun( 'knave', 'knaves', count, _ ). +noun( 'knavery', 'knaveries', both, _ ). +noun( 'knee', 'knees', count, _ ). +noun( 'kneecap', 'kneecaps', count, _ ). +noun( 'knell', '-', count, _ ). +noun( 'knick-knack', 'knick-knacks', count, _ ). +noun( 'knife', 'knives', count, _ ). +noun( 'knife-edge', 'knife-edges', count, _ ). +noun( 'knight', 'knights', count, _ ). +noun( 'knight-errant', 'knights-errant', count, _ ). +noun( 'knighthood', 'knighthoods', both, _ ). +noun( 'knitter', 'knitters', count, _ ). +noun( 'knitting', '-', mass, _ ). +noun( 'knitting-machine', 'knitting-machines', count, _ ). +noun( 'knitting-needle', 'knitting-needles', count, _ ). +noun( 'knitwear', '-', mass, _ ). +noun( 'knob', 'knobs', count, _ ). +noun( 'knobble', 'knobbles', count, _ ). +noun( 'knobkerrie', 'knobkerries', count, _ ). +noun( 'knock', 'knocks', count, _ ). +noun( 'knock-on', 'knock-ons', count, _ ). +noun( 'knocker', 'knockers', count, _ ). +noun( 'knockout', 'knockouts', count, _ ). +noun( 'knoll', 'knolls', count, _ ). +noun( 'knot', 'knots', count, _ ). +noun( 'knothole', 'knotholes', count, _ ). +noun( 'knout', 'knouts', count, _ ). +noun( 'know', '-', count, _ ). +noun( 'know-all', 'know-alls', count, _ ). +noun( 'know-how', '-', mass, _ ). +noun( 'knowledge', '-', mass, _ ). +noun( 'knuckle', 'knuckles', count, _ ). +noun( 'koala', 'koalas', count, _ ). +noun( 'kobo', 'kobos', count, _ ). +noun( 'kohl', '-', mass, _ ). +noun( 'kohlrabi', 'kohlrabis', both, _ ). +noun( 'kola', 'kolas', count, _ ). +noun( 'kola-nut', 'kola-nuts', count, _ ). +noun( 'kookaburra', 'kookaburras', count, _ ). +noun( 'kopeck', 'kopecks', count, _ ). +noun( 'kopje', 'kopjes', count, _ ). +noun( 'koppie', 'koppies', count, _ ). +noun( 'kosher', '-', mass, _ ). +noun( 'kotow', 'kotows', count, _ ). +noun( 'koumiss', '-', mass, _ ). +noun( 'kowtow', 'kowtows', count, _ ). +noun( 'kraal', 'kraals', count, _ ). +noun( 'krona', 'kronor', count, _ ). +noun( 'krone', 'kroner', count, _ ). +noun( 'kudos', '-', mass, _ ). +noun( 'kumis', '-', mass, _ ). +noun( 'kung fu', '-', mass, _ ). +noun( 'kvass', '-', mass, _ ). +noun( 'kw', 'kw', count, _ ). +noun( 'kwacha', 'kwacha', count, _ ). +noun( 'kwela', '-', mass, _ ). +noun( 'l', '-', count, _ ). +noun( 'la', '-', count, _ ). +noun( 'laager', 'laagers', count, _ ). +noun( 'lab', 'labs', count, _ ). +noun( 'label', 'labels', count, _ ). +noun( 'laboratory', 'laboratories', count, _ ). +noun( 'labour', 'labours', both, _ ). +noun( 'labourer', 'labourers', count, _ ). +noun( 'laburnum', 'laburnums', count, _ ). +noun( 'labyrinth', 'labyrinths', count, _ ). +noun( 'lace', 'laces', both, _ ). +noun( 'laceration', 'lacerations', both, _ ). +noun( 'lack', '-', mass, _ ). +noun( 'lackey', 'lackeys', count, _ ). +noun( 'laconicism', 'laconicisms', both, _ ). +noun( 'laconism', 'laconisms', both, _ ). +noun( 'lacquer', 'lacquers', both, _ ). +noun( 'lacrosse', '-', mass, _ ). +noun( 'lacuna', 'lacunas', count, _ ). +noun( 'lad', 'lads', count, _ ). +noun( 'ladder', 'ladders', count, _ ). +noun( 'laddie', 'laddies', count, _ ). +noun( 'lading', '-', mass, _ ). +noun( 'ladle', 'ladles', count, _ ). +noun( 'lady', 'ladies', count, _ ). +noun( 'lady\'s-maid', 'lady\'s-maids', count, _ ). +noun( 'lady-in-waiting', 'ladies-in-waiting', count, _ ). +noun( 'lady-killer', 'lady-killers', count, _ ). +noun( 'ladybird', 'ladybirds', count, _ ). +noun( 'ladyship', 'ladyships', count, _ ). +noun( 'lag', 'lags', count, _ ). +noun( 'lager', 'lagers', both, _ ). +noun( 'laggard', 'laggards', count, _ ). +noun( 'lagging', '-', mass, _ ). +noun( 'lagoon', 'lagoons', count, _ ). +noun( 'lair', 'lairs', count, _ ). +noun( 'laird', 'lairds', count, _ ). +noun( 'laissez-faire', '-', mass, _ ). +noun( 'laity', 'laities', count, _ ). +noun( 'lake', 'lakes', count, _ ). +noun( 'lakh', 'lakhs', count, _ ). +noun( 'lam_e', '-', mass, _ ). +noun( 'lama', 'lamas', count, _ ). +noun( 'lamasery', 'lamaseries', count, _ ). +noun( 'lamb', 'lambs', both, _ ). +noun( 'lambency', '-', mass, _ ). +noun( 'lambkin', 'lambkins', count, _ ). +noun( 'lambskin', 'lambskins', both, _ ). +noun( 'lameness', '-', mass, _ ). +noun( 'lament', 'laments', count, _ ). +noun( 'lamentation', 'lamentations', both, _ ). +noun( 'lamp', 'lamps', count, _ ). +noun( 'lamp-black', '-', mass, _ ). +noun( 'lamplight', '-', mass, _ ). +noun( 'lamplighter', 'lamplighters', count, _ ). +noun( 'lampoon', 'lampoons', count, _ ). +noun( 'lamppost', 'lampposts', count, _ ). +noun( 'lamprey', 'lampreys', count, _ ). +noun( 'lampshade', 'lampshades', count, _ ). +noun( 'lance', 'lances', count, _ ). +noun( 'lance-corporal', 'lance-corporals', count, _ ). +noun( 'lancer', 'lancers', count, _ ). +noun( 'lancet', 'lancets', count, _ ). +noun( 'land', 'lands', both, _ ). +noun( 'land-agent', 'land-agents', count, _ ). +noun( 'landau', 'landaus', count, _ ). +noun( 'landfall', 'landfalls', count, _ ). +noun( 'landgrave', 'landgraves', count, _ ). +noun( 'landholder', 'landholders', count, _ ). +noun( 'landing', 'landings', count, _ ). +noun( 'landing-craft', 'landing-craft', count, _ ). +noun( 'landing-field', 'landing-fields', count, _ ). +noun( 'landing-gear', '-', mass, _ ). +noun( 'landing-net', 'landing-nets', count, _ ). +noun( 'landing-party', 'landing-parties', count, _ ). +noun( 'landing-place', 'landing-places', count, _ ). +noun( 'landing-stage', 'landing-stages', count, _ ). +noun( 'landing-strip', 'landing-strips', count, _ ). +noun( 'landlady', 'landladies', count, _ ). +noun( 'landlord', 'landlords', count, _ ). +noun( 'landlubber', 'landlubbers', count, _ ). +noun( 'landmark', 'landmarks', count, _ ). +noun( 'landmine', 'landmines', count, _ ). +noun( 'landowner', 'landowners', count, _ ). +noun( 'landscape', 'landscapes', both, _ ). +noun( 'landslide', 'landslides', count, _ ). +noun( 'landslip', 'landslips', count, _ ). +noun( 'landsman', 'landsmen', count, _ ). +noun( 'lane', 'lanes', count, _ ). +noun( 'langsyne', '-', mass, _ ). +noun( 'language', 'languages', both, _ ). +noun( 'languor', '-', mass, _ ). +noun( 'langur', 'langurs', count, _ ). +noun( 'lanolin', '-', mass, _ ). +noun( 'lantern', 'lanterns', count, _ ). +noun( 'lanyard', 'lanyards', count, _ ). +noun( 'lap', 'laps', both, _ ). +noun( 'lap-dog', 'lap-dogs', count, _ ). +noun( 'lapel', 'lapels', count, _ ). +noun( 'lapidary', 'lapidaries', count, _ ). +noun( 'lapis lazuli', 'lapis lazulis', both, _ ). +noun( 'lapse', 'lapses', count, _ ). +noun( 'lapwing', 'lapwings', count, _ ). +noun( 'larboard', '-', mass, _ ). +noun( 'larceny', 'larcenies', both, _ ). +noun( 'larch', 'larches', both, _ ). +noun( 'lard', '-', mass, _ ). +noun( 'larder', 'larders', count, _ ). +noun( 'large', '-', mass, _ ). +noun( 'largeness', '-', mass, _ ). +noun( 'largesse', '-', mass, _ ). +noun( 'largo', 'largos', count, _ ). +noun( 'lariat', 'lariats', count, _ ). +noun( 'lark', 'larks', count, _ ). +noun( 'larkspur', 'larkspurs', count, _ ). +noun( 'larva', 'larvae', count, _ ). +noun( 'laryngitis', '-', mass, _ ). +noun( 'larynx', 'larynxes', count, _ ). +noun( 'lascar', 'lascars', count, _ ). +noun( 'lasciviousness', '-', mass, _ ). +noun( 'laser', 'lasers', count, _ ). +noun( 'lash', 'lashes', count, _ ). +noun( 'lash-up', 'lash-ups', count, _ ). +noun( 'lashing', 'lashings', count, _ ). +noun( 'lass', 'lasses', count, _ ). +noun( 'lassie', 'lassies', count, _ ). +noun( 'lassitude', '-', mass, _ ). +noun( 'lasso', 'lassos', count, _ ). +noun( 'last', 'lasts', count, _ ). +noun( 'lat', '-', count, _ ). +noun( 'latch', 'latches', count, _ ). +noun( 'latchkey', 'latchkeys', count, _ ). +noun( 'laterite', '-', mass, _ ). +noun( 'latex', '-', mass, _ ). +noun( 'lath', 'laths', count, _ ). +noun( 'lathe', 'lathes', count, _ ). +noun( 'lather', '-', mass, _ ). +noun( 'lathi', 'lathis', count, _ ). +noun( 'latitude', 'latitudes', both, _ ). +noun( 'latitudes', 'latitudess', both, _ ). +noun( 'latitudinarian', 'latitudinarians', count, _ ). +noun( 'latrine', 'latrines', count, _ ). +noun( 'lattice', 'lattices', count, _ ). +noun( 'laudanum', '-', mass, _ ). +noun( 'laugh', 'laughs', count, _ ). +noun( 'laughing-gas', '-', mass, _ ). +noun( 'laughing-stock', 'laughing-stocks', count, _ ). +noun( 'laughter', '-', mass, _ ). +noun( 'launch', 'launches', count, _ ). +noun( 'launcher', 'launchers', count, _ ). +noun( 'launching-pad', 'launching-pads', count, _ ). +noun( 'launching-site', 'launching-sites', count, _ ). +noun( 'launderette', 'launderettes', count, _ ). +noun( 'laundress', 'laundresses', count, _ ). +noun( 'laundry', 'laundries', count, _ ). +noun( 'laundryman', 'laundrymen', count, _ ). +noun( 'laundrywoman', 'laundrywomen', count, _ ). +noun( 'laureate', 'laureates', count, _ ). +noun( 'laurel', 'laurels', count, _ ). +noun( 'lav', 'lavs', count, _ ). +noun( 'lava', '-', mass, _ ). +noun( 'lavatory', 'lavatories', count, _ ). +noun( 'lavender', '-', mass, _ ). +noun( 'law', 'laws', both, _ ). +noun( 'law-officer', 'law-officers', count, _ ). +noun( 'lawbreaker', 'lawbreakers', count, _ ). +noun( 'lawgiver', 'lawgivers', count, _ ). +noun( 'lawlessness', '-', mass, _ ). +noun( 'lawmaker', 'lawmakers', count, _ ). +noun( 'lawmaking', '-', mass, _ ). +noun( 'lawn', 'lawns', both, _ ). +noun( 'lawn-mower', 'lawn-mowers', count, _ ). +noun( 'lawyer', 'lawyers', count, _ ). +noun( 'laxative', 'laxatives', both, _ ). +noun( 'laxity', 'laxities', both, _ ). +noun( 'lay', 'lays', count, _ ). +noun( 'lay figure', 'lay figures', count, _ ). +noun( 'lay-off', 'lay-offs', count, _ ). +noun( 'lay-out', 'lay-outs', count, _ ). +noun( 'layabout', 'layabouts', count, _ ). +noun( 'layby', 'laybys', count, _ ). +noun( 'layer', 'layers', count, _ ). +noun( 'layer-cake', 'layer-cakes', count, _ ). +noun( 'layette', 'layettes', count, _ ). +noun( 'layman', 'laymen', count, _ ). +noun( 'layover', 'layovers', count, _ ). +noun( 'lazar', 'lazars', count, _ ). +noun( 'lazaret', 'lazarets', count, _ ). +noun( 'lazarette', 'lazarettes', count, _ ). +noun( 'lazaretto', 'lazarettos', count, _ ). +noun( 'laziness', '-', mass, _ ). +noun( 'lazybones', '-', count, _ ). +noun( 'lb', 'lb', count, _ ). +noun( '-', 'lbs', count, _ ). +noun( 'lbw', '-', proper, _ ). +noun( 'lea', 'leas', count, _ ). +noun( 'lead', 'leads', both, _ ). +noun( 'lead', 'leads', both, _ ). +noun( 'lead-in', 'lead-ins', count, _ ). +noun( 'lead-ore', '-', mass, _ ). +noun( 'leader', 'leaders', count, _ ). +noun( 'leadership', '-', mass, _ ). +noun( 'leading', '-', mass, _ ). +noun( 'leading', '-', mass, _ ). +noun( 'leading-rein', 'leading-reins', count, _ ). +noun( 'leaf', 'leaves', count, _ ). +noun( 'leaf-bud', 'leaf-buds', count, _ ). +noun( 'leaf-mould', '-', mass, _ ). +noun( 'leaflet', 'leaflets', count, _ ). +noun( 'league', 'leagues', count, _ ). +noun( 'leak', 'leaks', count, _ ). +noun( 'leakage', 'leakages', both, _ ). +noun( 'lean', '-', mass, _ ). +noun( 'lean-to', 'lean-tos', count, _ ). +noun( 'leaning', 'leanings', count, _ ). +noun( 'leanness', '-', mass, _ ). +noun( 'leap', 'leaps', count, _ ). +noun( 'leap-year', 'leap-years', count, _ ). +noun( 'leapfrog', '-', mass, _ ). +noun( 'learner', 'learners', count, _ ). +noun( 'learning', '-', mass, _ ). +noun( 'lease', 'leases', count, _ ). +noun( 'lease-lend', '-', mass, _ ). +noun( 'leasehold', 'leaseholds', count, _ ). +noun( 'leaseholder', 'leaseholders', count, _ ). +noun( 'leash', 'leashes', count, _ ). +noun( 'least', '-', count, _ ). +noun( 'leather', 'leathers', both, _ ). +noun( 'leather-jacket', 'leather-jackets', count, _ ). +noun( 'leatherette', '-', mass, _ ). +noun( 'leatherneck', 'leathernecks', count, _ ). +noun( 'leatherwork', '-', mass, _ ). +noun( 'leave', 'leaves', both, _ ). +noun( 'leave-taking', 'leave-takings', count, _ ). +noun( 'leaven', '-', mass, _ ). +noun( 'lecher', 'lechers', count, _ ). +noun( 'lechery', 'lecheries', both, _ ). +noun( 'lectern', 'lecterns', count, _ ). +noun( 'lecture', 'lectures', count, _ ). +noun( 'lecturer', 'lecturers', count, _ ). +noun( 'lectureship', 'lectureships', count, _ ). +noun( 'ledge', 'ledges', count, _ ). +noun( 'ledger', 'ledgers', count, _ ). +noun( 'lee', '-', mass, _ ). +noun( 'leech', 'leeches', count, _ ). +noun( 'leek', 'leeks', count, _ ). +noun( 'leer', 'leers', count, _ ). +noun( 'leeway', '-', mass, _ ). +noun( 'left', '-', mass, _ ). +noun( 'left-wing', 'left-wings', count, _ ). +noun( 'left-winger', 'left-wingers', count, _ ). +noun( 'leftist', 'leftists', count, _ ). +noun( 'leg', 'legs', both, _ ). +noun( 'leg-pull', 'leg-pulls', count, _ ). +noun( 'leg-pulling', '-', mass, _ ). +noun( 'legacy', 'legacies', count, _ ). +noun( 'legalism', '-', mass, _ ). +noun( 'legality', '-', mass, _ ). +noun( 'legalization', '-', mass, _ ). +noun( 'legate', 'legates', count, _ ). +noun( 'legatee', 'legatees', count, _ ). +noun( 'legation', 'legations', count, _ ). +noun( 'legend', 'legends', both, _ ). +noun( 'leger line', 'leger lines', count, _ ). +noun( 'legerdemain', '-', mass, _ ). +noun( 'legging', 'leggings', count, _ ). +noun( 'leghorn', 'leghorns', count, _ ). +noun( 'legibility', '-', mass, _ ). +noun( 'legion', 'legions', count, _ ). +noun( 'legionary', 'legionaries', count, _ ). +noun( 'legislation', '-', mass, _ ). +noun( 'legislator', 'legislators', count, _ ). +noun( 'legislature', 'legislatures', count, _ ). +noun( 'legitimacy', '-', mass, _ ). +noun( 'lei', 'leis', count, _ ). +noun( 'leisure', '-', mass, _ ). +noun( 'lemming', 'lemmings', count, _ ). +noun( 'lemon', 'lemons', count, _ ). +noun( 'lemonade', '-', mass, _ ). +noun( 'lemur', 'lemurs', count, _ ). +noun( 'lender', 'lenders', count, _ ). +noun( 'lending-library', 'lending-libraries', count, _ ). +noun( 'length', 'lengths', both, _ ). +noun( 'lenience', '-', mass, _ ). +noun( 'leniency', '-', mass, _ ). +noun( 'lenity', '-', mass, _ ). +noun( 'lens', 'lenses', count, _ ). +noun( 'lentil', 'lentils', count, _ ). +noun( 'leopard', 'leopards', count, _ ). +noun( 'leopardess', 'leopardesses', count, _ ). +noun( 'leper', 'lepers', count, _ ). +noun( 'leprechaun', 'leprechauns', count, _ ). +noun( 'leprosy', '-', mass, _ ). +noun( 'lesbian', 'lesbians', count, _ ). +noun( 'lesbianism', '-', mass, _ ). +noun( 'lese majesty', '-', mass, _ ). +noun( 'lesion', 'lesions', count, _ ). +noun( 'less', '-', mass, _ ). +noun( 'lessee', 'lessees', count, _ ). +noun( 'lesson', 'lessons', count, _ ). +noun( 'lessor', 'lessors', count, _ ). +noun( 'let', 'lets', count, _ ). +noun( 'let-down', 'let-downs', count, _ ). +noun( 'let-up', 'let-ups', count, _ ). +noun( 'lethargy', '-', mass, _ ). +noun( 'letter', 'letters', count, _ ). +noun( 'letter-box', 'letter-boxes', count, _ ). +noun( 'letter-card', 'letter-cards', count, _ ). +noun( 'letter-case', 'letter-cases', count, _ ). +noun( 'letterhead', 'letterheads', count, _ ). +noun( 'lettering', '-', mass, _ ). +noun( 'letterpress', '-', mass, _ ). +noun( 'letting', 'lettings', count, _ ). +noun( 'lettuce', 'lettuces', both, _ ). +noun( 'leucocyte', 'leucocytes', count, _ ). +noun( 'leukaemia', '-', mass, _ ). +noun( 'levee', 'levees', count, _ ). +noun( 'level', 'levels', both, _ ). +noun( 'leveller', 'levellers', count, _ ). +noun( 'lever', 'levers', count, _ ). +noun( 'leverage', '-', mass, _ ). +noun( 'leveret', 'leverets', count, _ ). +noun( 'leviathan', 'leviathans', count, _ ). +noun( 'levitation', 'levitations', both, _ ). +noun( 'levity', 'levities', both, _ ). +noun( 'levy', 'levies', count, _ ). +noun( 'lewdness', '-', mass, _ ). +noun( 'lexicographer', 'lexicographers', count, _ ). +noun( 'lexicography', '-', mass, _ ). +noun( 'lexicon', 'lexicons', count, _ ). +noun( 'lexis', '-', mass, _ ). +noun( 'ley', 'leys', count, _ ). +noun( 'liability', 'liabilities', both, _ ). +noun( 'liaison', 'liaisons', both, _ ). +noun( 'liana', 'lianas', count, _ ). +noun( 'liar', 'liars', count, _ ). +noun( 'lib', '-', count, _ ). +noun( 'libation', 'libations', count, _ ). +noun( 'libel', 'libels', both, _ ). +noun( 'liberal', 'liberals', count, _ ). +noun( 'liberalism', '-', mass, _ ). +noun( 'liberality', 'liberalities', both, _ ). +noun( 'liberalization', 'liberalizations', count, _ ). +noun( 'liberation', 'liberations', both, _ ). +noun( 'liberator', 'liberators', count, _ ). +noun( 'libertine', 'libertines', count, _ ). +noun( 'liberty', 'liberties', both, _ ). +noun( 'libido', 'libidos', both, _ ). +noun( 'librarian', 'librarians', count, _ ). +noun( 'librarianship', '-', mass, _ ). +noun( 'library', 'libraries', count, _ ). +noun( 'librettist', 'librettists', count, _ ). +noun( 'libretto', 'librettos', count, _ ). +noun( 'licence', 'licences', both, _ ). +noun( 'licensee', 'licensees', count, _ ). +noun( 'licentiate', 'licentiates', count, _ ). +noun( 'licentiousness', '-', mass, _ ). +noun( 'lichee', 'lichees', count, _ ). +noun( 'lichen', '-', mass, _ ). +noun( 'lichgate', 'lichgates', count, _ ). +noun( 'lichi', 'lichis', count, _ ). +noun( 'lick', 'licks', count, _ ). +noun( 'licking', '-', count, _ ). +noun( 'lid', 'lids', count, _ ). +noun( 'lido', 'lidos', count, _ ). +noun( 'lie', 'lies', count, _ ). +noun( 'lie-abed', 'lie-abeds', count, _ ). +noun( 'lie-detector', 'lie-detectors', count, _ ). +noun( 'lie-in', 'lie-ins', count, _ ). +noun( 'lied', 'lieder', count, _ ). +noun( 'lieder-singer', 'lieder-singers', count, _ ). +noun( 'liege', 'lieges', count, _ ). +noun( 'liegeman', 'liegemen', count, _ ). +noun( 'lien', 'liens', count, _ ). +noun( 'lieu', '-', mass, _ ). +noun( 'lieutenancy', 'lieutenancies', count, _ ). +noun( 'lieutenant', 'lieutenants', count, _ ). +noun( 'life', 'lives', both, _ ). +noun( 'life-buoy', 'life-buoys', count, _ ). +noun( 'life-jacket', 'life-jackets', count, _ ). +noun( 'life-office', 'life-offices', count, _ ). +noun( 'life-preserver', 'life-preservers', count, _ ). +noun( 'life-raft', 'life-rafts', count, _ ). +noun( 'life-saver', 'life-savers', count, _ ). +noun( 'life-span', 'life-spans', count, _ ). +noun( 'life-work', 'life-works', count, _ ). +noun( 'lifebelt', 'lifebelts', count, _ ). +noun( 'lifeblood', '-', mass, _ ). +noun( 'lifeboat', 'lifeboats', count, _ ). +noun( 'lifebuoy', 'lifebuoys', count, _ ). +noun( 'lifeguard', 'lifeguards', count, _ ). +noun( 'lifeline', 'lifelines', count, _ ). +noun( 'lifer', 'lifers', count, _ ). +noun( 'lifetime', 'lifetimes', count, _ ). +noun( 'lift', 'lifts', count, _ ). +noun( 'lift-off', 'lift-offs', count, _ ). +noun( 'liftman', 'liftmen', count, _ ). +noun( 'ligament', 'ligaments', count, _ ). +noun( 'ligature', 'ligatures', count, _ ). +noun( 'light', 'lights', both, _ ). +noun( 'light-headedness', '-', mass, _ ). +noun( 'light-heartedness', '-', mass, _ ). +noun( 'light-heavyweight', 'light-heavyweights', count, _ ). +noun( 'light-mindedness', '-', mass, _ ). +noun( 'light-o\'-love', 'light-o\'-loves', count, _ ). +noun( 'lighter', 'lighters', count, _ ). +noun( 'lighterage', '-', mass, _ ). +noun( 'lighthouse', 'lighthouses', count, _ ). +noun( 'lightness', '-', mass, _ ). +noun( 'lightning', '-', mass, _ ). +noun( 'lightning-conductor', 'lightning-conductors', count, _ ). +noun( 'lightning-rod', 'lightning-rods', count, _ ). +noun( 'lightship', 'lightships', count, _ ). +noun( 'lightsomeness', '-', mass, _ ). +noun( 'lightweight', 'lightweights', count, _ ). +noun( 'lignite', '-', mass, _ ). +noun( 'like', 'likes', count, _ ). +noun( 'likelihood', '-', mass, _ ). +noun( 'likeness', 'likenesses', both, _ ). +noun( 'liking', 'likings', count, _ ). +noun( 'lilac', 'lilacs', count, _ ). +noun( 'lilt', 'lilts', count, _ ). +noun( 'lily', 'lilies', count, _ ). +noun( 'limb', 'limbs', count, _ ). +noun( 'limbo', 'limbos', both, _ ). +noun( 'lime', 'limes', both, _ ). +noun( 'lime-tree', 'lime-trees', count, _ ). +noun( 'limejuice', '-', mass, _ ). +noun( 'limekiln', 'limekilns', count, _ ). +noun( 'limelight', '-', mass, _ ). +noun( 'limerick', 'limericks', count, _ ). +noun( 'limestone', '-', mass, _ ). +noun( 'limey', 'limeys', count, _ ). +noun( 'limit', 'limits', count, _ ). +noun( 'limitation', 'limitations', both, _ ). +noun( 'limousine', 'limousines', count, _ ). +noun( 'limp', 'limps', count, _ ). +noun( 'limpet', 'limpets', count, _ ). +noun( 'limpidity', '-', mass, _ ). +noun( 'limpness', '-', mass, _ ). +noun( 'linchpin', 'linchpins', count, _ ). +noun( 'linden', 'lindens', count, _ ). +noun( 'linden-tree', 'linden-trees', count, _ ). +noun( 'line', 'lines', both, _ ). +noun( 'line-shooter', 'line-shooters', count, _ ). +noun( 'line-shooting', '-', mass, _ ). +noun( 'line-up', 'line-ups', count, _ ). +noun( 'lineage', '-', mass, _ ). +noun( 'lineament', 'lineaments', count, _ ). +noun( 'lineman', 'linemen', count, _ ). +noun( 'linen', '-', mass, _ ). +noun( 'linen-draper', 'linen-drapers', count, _ ). +noun( 'liner', 'liners', count, _ ). +noun( 'liner-train', 'liner-trains', count, _ ). +noun( 'linesman', 'linesmen', count, _ ). +noun( 'ling', 'lings', both, _ ). +noun( 'lingam', 'lingams', count, _ ). +noun( 'lingerer', 'lingerers', count, _ ). +noun( 'lingerie', '-', mass, _ ). +noun( 'lingo', 'lingoes', count, _ ). +noun( 'lingua franca', '-', count, _ ). +noun( 'linguist', 'linguists', count, _ ). +noun( 'linguistics', 'linguistics', mass, _ ). +noun( 'liniment', 'liniments', both, _ ). +noun( 'lining', 'linings', both, _ ). +noun( 'link', 'links', count, _ ). +noun( 'link-up', 'link-ups', count, _ ). +noun( 'linkage', 'linkages', both, _ ). +noun( 'linkboy', 'linkboys', count, _ ). +noun( 'linkman', 'linkmen', count, _ ). +noun( 'links', 'links', count, _ ). +noun( 'linnet', 'linnets', count, _ ). +noun( 'lino', '-', mass, _ ). +noun( 'linocut', 'linocuts', count, _ ). +noun( 'linoleum', '-', mass, _ ). +noun( 'linotype', 'linotypes', count, _ ). +noun( 'linseed', '-', mass, _ ). +noun( 'linsey-woolsey', '-', mass, _ ). +noun( 'lint', '-', mass, _ ). +noun( 'lintel', 'lintels', count, _ ). +noun( 'lion', 'lions', count, _ ). +noun( 'lion-hunter', 'lion-hunters', count, _ ). +noun( 'lioness', 'lionesses', count, _ ). +noun( 'lip', 'lips', both, _ ). +noun( 'lip-reading', '-', mass, _ ). +noun( 'lipstick', 'lipsticks', both, _ ). +noun( 'liquefaction', '-', mass, _ ). +noun( 'liqueur', 'liqueurs', count, _ ). +noun( 'liquid', 'liquids', both, _ ). +noun( 'liquidation', '-', mass, _ ). +noun( 'liquidator', 'liquidators', count, _ ). +noun( 'liquidity', '-', mass, _ ). +noun( 'liquidizer', 'liquidizers', count, _ ). +noun( 'liquor', 'liquors', both, _ ). +noun( 'liquorice', '-', mass, _ ). +noun( 'lira', 'liras', count, _ ). +noun( 'lisle', '-', mass, _ ). +noun( 'lisp', 'lisps', count, _ ). +noun( 'lissomness', '-', mass, _ ). +noun( 'list', 'lists', count, _ ). +noun( 'list-price', 'list-prices', count, _ ). +noun( 'listener', 'listeners', count, _ ). +noun( 'listing', 'listings', count, _ ). +noun( 'listlessness', '-', mass, _ ). +noun( 'litany', 'litanies', count, _ ). +noun( 'litchee', 'litchees', count, _ ). +noun( 'litchi', 'litchis', count, _ ). +noun( 'literacy', '-', mass, _ ). +noun( 'literal', 'literals', count, _ ). +noun( 'literate', 'literates', count, _ ). +noun( 'literature', '-', mass, _ ). +noun( 'lithograph', 'lithographs', count, _ ). +noun( 'lithography', '-', mass, _ ). +noun( 'litigant', 'litigants', count, _ ). +noun( 'litigation', '-', mass, _ ). +noun( 'litmus', '-', mass, _ ). +noun( 'litmus-paper', 'litmus-papers', both, _ ). +noun( 'litotes', 'litotes', count, _ ). +noun( 'litre', 'litres', count, _ ). +noun( 'litter', 'litters', both, _ ). +noun( 'litter-basket', 'litter-baskets', count, _ ). +noun( 'litter-lout', 'litter-louts', count, _ ). +noun( 'litterbin', 'litterbins', count, _ ). +noun( 'little', '-', mass, _ ). +noun( 'littleness', '-', mass, _ ). +noun( 'littoral', 'littorals', count, _ ). +noun( 'liturgy', 'liturgies', both, _ ). +noun( 'live-birth', 'live-births', count, _ ). +noun( 'livelihood', 'livelihoods', count, _ ). +noun( 'liveliness', '-', mass, _ ). +noun( 'liver', 'livers', both, _ ). +noun( 'liverwurst', '-', mass, _ ). +noun( 'livery', 'liveries', count, _ ). +noun( 'liveryman', 'liverymen', count, _ ). +noun( 'livestock', '-', mass, _ ). +noun( 'living', 'livings', both, _ ). +noun( 'living-room', 'living-rooms', count, _ ). +noun( 'living-space', 'living-spaces', count, _ ). +noun( 'lizard', 'lizards', count, _ ). +noun( '-', 'll', count, _ ). +noun( 'llama', 'llamas', count, _ ). +noun( 'load', 'loads', count, _ ). +noun( 'load-line', 'load-lines', count, _ ). +noun( 'load-shedding', '-', mass, _ ). +noun( 'loader', 'loaders', count, _ ). +noun( 'loading', 'loadings', count, _ ). +noun( 'loadstar', 'loadstars', count, _ ). +noun( 'loadstone', '-', mass, _ ). +noun( 'loaf', 'loaves', both, _ ). +noun( 'loaf-sugar', '-', mass, _ ). +noun( 'loafer', 'loafers', count, _ ). +noun( 'loam', '-', mass, _ ). +noun( 'loan', 'loans', both, _ ). +noun( 'loan-collection', 'loan-collections', count, _ ). +noun( 'loan-office', 'loan-offices', count, _ ). +noun( 'loanword', 'loanwords', count, _ ). +noun( 'loathing', '-', mass, _ ). +noun( 'lob', 'lobs', count, _ ). +noun( 'lobby', 'lobbies', count, _ ). +noun( 'lobbyist', 'lobbyists', count, _ ). +noun( 'lobe', 'lobes', count, _ ). +noun( 'lobster', 'lobsters', both, _ ). +noun( 'lobster-pot', 'lobster-pots', count, _ ). +noun( 'loc cit', '-', proper, _ ). +noun( 'local', 'locals', count, _ ). +noun( 'locale', 'locales', count, _ ). +noun( 'localism', 'localisms', both, _ ). +noun( 'locality', 'localities', both, _ ). +noun( 'localization', 'localizations', both, _ ). +noun( 'location', 'locations', both, _ ). +noun( 'loch', 'lochs', count, _ ). +noun( 'lock', 'locks', both, _ ). +noun( 'lock-gate', 'lock-gates', count, _ ). +noun( 'lock-keeper', 'lock-keepers', count, _ ). +noun( 'locker', 'lockers', count, _ ). +noun( 'locket', 'lockets', count, _ ). +noun( 'lockjaw', '-', mass, _ ). +noun( 'locknut', 'locknuts', count, _ ). +noun( 'lockout', 'lockouts', count, _ ). +noun( 'locksmith', 'locksmiths', count, _ ). +noun( 'lockstitch', 'lockstitches', count, _ ). +noun( 'lockup', 'lockups', count, _ ). +noun( 'locomotion', '-', mass, _ ). +noun( 'locomotive', 'locomotives', count, _ ). +noun( 'locum', 'locums', count, _ ). +noun( 'locum tenens', '-', count, _ ). +noun( 'locus', 'loci', count, _ ). +noun( 'locus classicus', '-', count, _ ). +noun( 'locust', 'locusts', count, _ ). +noun( 'locust-tree', 'locust-trees', count, _ ). +noun( 'locution', 'locutions', both, _ ). +noun( 'lode', 'lodes', count, _ ). +noun( 'lodestar', 'lodestars', count, _ ). +noun( 'lodestone', '-', mass, _ ). +noun( 'lodge', 'lodges', count, _ ). +noun( 'lodgement', 'lodgements', both, _ ). +noun( 'lodger', 'lodgers', count, _ ). +noun( 'lodging', 'lodgings', count, _ ). +noun( 'lodging-house', 'lodging-houses', count, _ ). +noun( 'lodgment', 'lodgments', both, _ ). +noun( 'loess', '-', mass, _ ). +noun( 'loft', 'lofts', count, _ ). +noun( 'loftiness', '-', mass, _ ). +noun( 'log', 'logs', count, _ ). +noun( 'log-cabin', 'log-cabins', count, _ ). +noun( 'log-jam', 'log-jams', count, _ ). +noun( 'log-rolling', '-', mass, _ ). +noun( 'loganberry', 'loganberries', count, _ ). +noun( 'logarithm', 'logarithms', count, _ ). +noun( 'logbook', 'logbooks', count, _ ). +noun( 'loggerheads', '-', mass, _ ). +noun( 'loggia', 'loggias', count, _ ). +noun( 'logging', '-', mass, _ ). +noun( 'logic', 'logics', both, _ ). +noun( 'logicality', '-', mass, _ ). +noun( 'logician', 'logicians', count, _ ). +noun( 'logistics', 'logistics', mass, _ ). +noun( 'loin', 'loins', count, _ ). +noun( 'loincloth', 'loincloths', count, _ ). +noun( 'loiterer', 'loiterers', count, _ ). +noun( 'lollipop', 'lollipops', count, _ ). +noun( 'lolly', 'lollies', count, _ ). +noun( 'loneliness', '-', mass, _ ). +noun( 'long', 'longs', both, _ ). +noun( 'long', '-', count, _ ). +noun( 'long-windedness', '-', mass, _ ). +noun( 'longboat', 'longboats', count, _ ). +noun( 'longbow', 'longbows', count, _ ). +noun( 'longevity', '-', mass, _ ). +noun( 'longhand', '-', mass, _ ). +noun( 'longing', 'longings', both, _ ). +noun( 'longitude', 'longitudes', count, _ ). +noun( 'longshoreman', 'longshoremen', count, _ ). +noun( 'loo', 'loos', count, _ ). +noun( 'loofa', 'loofas', count, _ ). +noun( 'loofah', 'loofahs', count, _ ). +noun( 'look', 'looks', count, _ ). +noun( 'look-over', '-', count, _ ). +noun( 'looker', 'lookers', count, _ ). +noun( 'looker-on', 'lookers-on', count, _ ). +noun( 'looking-glass', 'looking-glasses', count, _ ). +noun( 'lookout', 'lookouts', count, _ ). +noun( 'loom', 'looms', count, _ ). +noun( 'loon', 'loons', count, _ ). +noun( 'loony', 'loonies', count, _ ). +noun( 'loonybin', 'loonybins', count, _ ). +noun( 'loop', 'loops', count, _ ). +noun( 'loop-line', 'loop-lines', count, _ ). +noun( 'loophole', 'loopholes', count, _ ). +noun( 'loot', '-', mass, _ ). +noun( 'looter', 'looters', count, _ ). +noun( 'lope', '-', count, _ ). +noun( 'loquaciousness', '-', mass, _ ). +noun( 'loquacity', '-', mass, _ ). +noun( 'loquat', 'loquats', count, _ ). +noun( 'lord', 'lords', count, _ ). +noun( 'lordliness', '-', mass, _ ). +noun( 'lordship', 'lordships', both, _ ). +noun( 'lore', '-', mass, _ ). +noun( 'lorgnette', 'lorgnettes', count, _ ). +noun( 'lorry', 'lorries', count, _ ). +noun( 'loser', 'losers', count, _ ). +noun( 'loss', 'losses', both, _ ). +noun( 'loss-leader', 'loss-leaders', count, _ ). +noun( 'lot', 'lots', both, _ ). +noun( 'lotion', 'lotions', both, _ ). +noun( 'lottery', 'lotteries', count, _ ). +noun( 'lotto', '-', mass, _ ). +noun( 'lotus', 'lotuses', count, _ ). +noun( 'lotus-eater', 'lotus-eaters', count, _ ). +noun( 'loud-hailer', 'loud-hailers', count, _ ). +noun( 'loudness', '-', mass, _ ). +noun( 'loudspeaker', 'loudspeakers', count, _ ). +noun( 'lough', 'loughs', count, _ ). +noun( 'lounge', 'lounges', count, _ ). +noun( 'lounge-chair', 'lounge-chairs', count, _ ). +noun( 'lounge-lizard', 'lounge-lizards', count, _ ). +noun( 'lounge-suit', 'lounge-suits', count, _ ). +noun( 'lounger', 'loungers', count, _ ). +noun( 'louse', 'lice', count, _ ). +noun( 'lout', 'louts', count, _ ). +noun( 'louvre', 'louvres', count, _ ). +noun( 'love', 'loves', both, _ ). +noun( 'love-affair', 'love-affairs', count, _ ). +noun( 'love-child', 'love-children', count, _ ). +noun( 'love-feast', 'love-feasts', count, _ ). +noun( 'love-knot', 'love-knots', count, _ ). +noun( 'love-letter', 'love-letters', count, _ ). +noun( 'love-match', 'love-matches', count, _ ). +noun( 'love-philtre', 'love-philtres', count, _ ). +noun( 'love-potion', 'love-potions', count, _ ). +noun( 'love-seat', 'love-seats', count, _ ). +noun( 'love-song', 'love-songs', count, _ ). +noun( 'love-story', 'love-stories', count, _ ). +noun( 'love-token', 'love-tokens', count, _ ). +noun( 'lovebird', 'lovebirds', count, _ ). +noun( 'loveliness', '-', mass, _ ). +noun( 'lovemaking', '-', mass, _ ). +noun( 'lover', 'lovers', count, _ ). +noun( 'loving-cup', 'loving-cups', count, _ ). +noun( 'loving-kindness', '-', mass, _ ). +noun( 'low', 'lows', count, _ ). +noun( 'low-relief', 'low-reliefs', both, _ ). +noun( 'lowbrow', 'lowbrows', count, _ ). +noun( 'lowlander', 'lowlanders', count, _ ). +noun( 'lowliness', '-', mass, _ ). +noun( 'lowness', '-', mass, _ ). +noun( 'loyalist', 'loyalists', count, _ ). +noun( 'loyalty', 'loyalties', both, _ ). +noun( 'lozenge', 'lozenges', count, _ ). +noun( 'lubber', 'lubbers', count, _ ). +noun( 'lubricant', 'lubricants', both, _ ). +noun( 'lubrication', 'lubrications', both, _ ). +noun( 'lucerne', '-', mass, _ ). +noun( 'lucidity', '-', mass, _ ). +noun( 'luck', '-', mass, _ ). +noun( 'lucre', '-', mass, _ ). +noun( 'ludo', '-', mass, _ ). +noun( 'lug', 'lugs', count, _ ). +noun( 'luge', 'luges', count, _ ). +noun( 'luggage', '-', mass, _ ). +noun( 'luggage-carrier', 'luggage-carriers', count, _ ). +noun( 'luggage-rack', 'luggage-racks', count, _ ). +noun( 'luggage-van', 'luggage-vans', count, _ ). +noun( 'lugger', 'luggers', count, _ ). +noun( 'lugsail', 'lugsails', count, _ ). +noun( 'lugubriousness', '-', mass, _ ). +noun( 'lukewarmness', '-', mass, _ ). +noun( 'lull', 'lulls', count, _ ). +noun( 'lullaby', 'lullabies', count, _ ). +noun( 'lumbago', '-', mass, _ ). +noun( 'lumber', '-', mass, _ ). +noun( 'lumber-mill', 'lumber-mills', count, _ ). +noun( 'lumberjack', 'lumberjacks', count, _ ). +noun( 'lumberman', 'lumbermen', count, _ ). +noun( 'lumberroom', 'lumberrooms', count, _ ). +noun( 'lumberyard', 'lumberyards', count, _ ). +noun( 'luminary', 'luminaries', count, _ ). +noun( 'luminosity', '-', mass, _ ). +noun( 'lump', 'lumps', count, _ ). +noun( 'lunacy', 'lunacies', both, _ ). +noun( 'lunatic', 'lunatics', count, _ ). +noun( 'lunch', 'lunches', count, _ ). +noun( 'luncheon', 'luncheons', count, _ ). +noun( 'lunchtime', 'lunchtimes', both, _ ). +noun( 'lung', 'lungs', count, _ ). +noun( 'lung-power', '-', mass, _ ). +noun( 'lunge', 'lunges', count, _ ). +noun( 'lupin', 'lupins', count, _ ). +noun( 'lurch', 'lurches', count, _ ). +noun( 'lurcher', 'lurchers', count, _ ). +noun( 'lure', 'lures', count, _ ). +noun( 'luridness', '-', mass, _ ). +noun( 'lurking-place', 'lurking-places', count, _ ). +noun( 'lusciousness', '-', mass, _ ). +noun( 'lush', 'lushes', count, _ ). +noun( 'lust', 'lusts', both, _ ). +noun( 'lustre', '-', mass, _ ). +noun( 'lutanist', 'lutanists', count, _ ). +noun( 'lute', 'lutes', count, _ ). +noun( 'lutenist', 'lutenists', count, _ ). +noun( 'luxuriance', '-', mass, _ ). +noun( 'luxury', 'luxuries', both, _ ). +noun( 'lyc_ee', 'lyc_ees', count, _ ). +noun( 'lyceum', 'lyceums', count, _ ). +noun( 'lychee', 'lychees', count, _ ). +noun( 'lychgate', 'lychgates', count, _ ). +noun( 'lye', 'lyes', count, _ ). +noun( 'lymph', '-', mass, _ ). +noun( 'lynch', '-', mass, _ ). +noun( 'lynchpin', 'lynchpins', count, _ ). +noun( 'lynx', 'lynxes', count, _ ). +noun( 'lyre', 'lyres', count, _ ). +noun( 'lyre-bird', 'lyre-birds', count, _ ). +noun( 'lyric', 'lyrics', count, _ ). +noun( 'lyricism', '-', mass, _ ). +noun( 'lyricist', 'lyricists', count, _ ). +noun( 'lysol', '-', mass, _ ). +noun( 'm', '-', count, _ ). +noun( 'm^el_ee', 'm^el_ees', count, _ ). +noun( 'm_elange', 'm_elanges', count, _ ). +noun( 'm_enage', 'm_enages', count, _ ). +noun( 'm_esalliance', 'm_esalliances', count, _ ). +noun( 'm_etier', 'm_etiers', count, _ ). +noun( 'ma', '-', count, _ ). +noun( 'ma\'am', '-', count, _ ). +noun( 'mac', 'macs', count, _ ). +noun( 'macadam', '-', mass, _ ). +noun( 'macaroni', '-', mass, _ ). +noun( 'macaroon', 'macaroons', count, _ ). +noun( 'macaw', 'macaws', count, _ ). +noun( 'mace', 'maces', both, _ ). +noun( 'mace-bearer', 'mace-bearers', count, _ ). +noun( 'machete', 'machetes', count, _ ). +noun( 'machination', 'machinations', both, _ ). +noun( 'machine', 'machines', count, _ ). +noun( 'machine-gun', 'machine-guns', count, _ ). +noun( 'machinery', '-', mass, _ ). +noun( 'machinist', 'machinists', count, _ ). +noun( 'machismo', '-', mass, _ ). +noun( 'mackerel', 'mackerel', both, _ ). +noun( 'mackintosh', 'mackintoshes', count, _ ). +noun( 'macrocosm', 'macrocosms', count, _ ). +noun( 'madam', 'madams', count, _ ). +noun( 'madcap', 'madcaps', count, _ ). +noun( 'madder', '-', mass, _ ). +noun( 'madhouse', 'madhouses', count, _ ). +noun( 'madman', 'madmen', count, _ ). +noun( 'madness', '-', mass, _ ). +noun( 'madrigal', 'madrigals', count, _ ). +noun( 'madwoman', 'madwomen', count, _ ). +noun( 'maelstrom', 'maelstroms', count, _ ). +noun( 'maenad', 'maenads', count, _ ). +noun( 'maestro', 'maestros', count, _ ). +noun( 'mag', 'mags', count, _ ). +noun( 'magazine', 'magazines', count, _ ). +noun( 'magenta', '-', mass, _ ). +noun( 'maggot', 'maggots', count, _ ). +noun( 'magic', '-', mass, _ ). +noun( 'magician', 'magicians', count, _ ). +noun( 'magistracy', 'magistracies', count, _ ). +noun( 'magistrate', 'magistrates', count, _ ). +noun( 'magnanimity', 'magnanimities', both, _ ). +noun( 'magnate', 'magnates', count, _ ). +noun( 'magnesia', '-', mass, _ ). +noun( 'magnesium', '-', mass, _ ). +noun( 'magnet', 'magnets', count, _ ). +noun( 'magnetism', '-', mass, _ ). +noun( 'magnetization', '-', mass, _ ). +noun( 'magneto', 'magnetos', count, _ ). +noun( 'magnification', 'magnifications', both, _ ). +noun( 'magnificence', '-', mass, _ ). +noun( 'magnifier', 'magnifiers', count, _ ). +noun( 'magniloquence', '-', mass, _ ). +noun( 'magnitude', '-', mass, _ ). +noun( 'magnolia', 'magnolias', count, _ ). +noun( 'magnum', 'magnums', count, _ ). +noun( 'magnum opus', '-', count, _ ). +noun( 'magpie', 'magpies', count, _ ). +noun( 'mahjong', '-', mass, _ ). +noun( 'mahogany', 'mahoganies', both, _ ). +noun( 'mahout', 'mahouts', count, _ ). +noun( 'maid', 'maids', count, _ ). +noun( 'maiden', 'maidens', count, _ ). +noun( 'maidenhair', 'maidenhairs', count, _ ). +noun( 'maidenhead', '-', mass, _ ). +noun( 'maidenhood', 'maidenhoods', count, _ ). +noun( 'maidservant', 'maidservants', count, _ ). +noun( 'mail', 'mails', both, _ ). +noun( 'mail-train', 'mail-trains', count, _ ). +noun( 'mailbag', 'mailbags', count, _ ). +noun( 'mailboat', 'mailboats', count, _ ). +noun( 'mailbox', 'mailboxes', count, _ ). +noun( 'mailing-card', 'mailing-cards', count, _ ). +noun( 'mailing-list', 'mailing-lists', count, _ ). +noun( 'mailman', 'mailmen', count, _ ). +noun( 'main', 'mains', count, _ ). +noun( 'mainland', 'mainlands', count, _ ). +noun( 'mainmast', 'mainmasts', count, _ ). +noun( 'mainspring', 'mainsprings', count, _ ). +noun( 'mainstay', 'mainstays', count, _ ). +noun( 'mainstream', '-', count, _ ). +noun( 'maintenance', '-', mass, _ ). +noun( 'maisonnette', 'maisonnettes', count, _ ). +noun( 'maize', '-', mass, _ ). +noun( 'majesty', 'majesties', both, _ ). +noun( 'majolica', '-', mass, _ ). +noun( 'major', 'majors', count, _ ). +noun( 'major-domo', 'major-domos', count, _ ). +noun( 'major-general', 'major-generals', count, _ ). +noun( 'majority', 'majorities', count, _ ). +noun( 'make', 'makes', both, _ ). +noun( 'make-believe', 'make-believes', both, _ ). +noun( 'make-up', 'make-ups', both, _ ). +noun( 'maker', 'makers', count, _ ). +noun( 'makeshift', 'makeshifts', count, _ ). +noun( 'makeweight', 'makeweights', count, _ ). +noun( 'making', 'makings', count, _ ). +noun( 'malacca', '-', mass, _ ). +noun( 'malachite', '-', mass, _ ). +noun( 'maladjustment', '-', mass, _ ). +noun( 'maladroitness', '-', mass, _ ). +noun( 'malady', 'maladies', count, _ ). +noun( 'malaise', 'malaises', both, _ ). +noun( 'malapropism', 'malapropisms', count, _ ). +noun( 'malaria', '-', mass, _ ). +noun( 'malcontent', 'malcontents', count, _ ). +noun( 'male', 'males', count, _ ). +noun( 'malediction', 'maledictions', count, _ ). +noun( 'malefactor', 'malefactors', count, _ ). +noun( 'malevolence', '-', mass, _ ). +noun( 'malfeasance', 'malfeasances', both, _ ). +noun( 'malformation', 'malformations', both, _ ). +noun( 'malfunction', 'malfunctions', both, _ ). +noun( 'malice', '-', mass, _ ). +noun( 'malignancy', '-', mass, _ ). +noun( 'malignity', 'malignities', both, _ ). +noun( 'malingerer', 'malingerers', count, _ ). +noun( 'mallard', 'mallards', count, _ ). +noun( 'malleability', '-', mass, _ ). +noun( 'mallet', 'mallets', count, _ ). +noun( 'mallow', 'mallows', count, _ ). +noun( 'malmsey', '-', mass, _ ). +noun( 'malnutrition', '-', mass, _ ). +noun( 'malpractice', 'malpractices', both, _ ). +noun( 'malt', '-', mass, _ ). +noun( 'maltreatment', '-', mass, _ ). +noun( 'maltster', 'maltsters', count, _ ). +noun( 'malversation', '-', mass, _ ). +noun( 'mama', 'mamas', count, _ ). +noun( 'mamba', 'mambas', count, _ ). +noun( 'mamma', 'mammas', count, _ ). +noun( 'mammal', 'mammals', count, _ ). +noun( 'mammon', '-', mass, _ ). +noun( 'mammoth', 'mammoths', count, _ ). +noun( 'mammy', 'mammies', count, _ ). +noun( 'man', 'men', count, _ ). +noun( 'man-at-arms', 'men-at-arms', count, _ ). +noun( 'man-eater', 'man-eaters', count, _ ). +noun( 'man-hour', 'man-hours', count, _ ). +noun( 'man-of-war', 'men-of-war', count, _ ). +noun( 'manacle', 'manacles', count, _ ). +noun( 'manageability', '-', mass, _ ). +noun( 'management', 'managements', both, _ ). +noun( 'manager', 'managers', count, _ ). +noun( 'manageress', 'manageresses', count, _ ). +noun( 'manatee', 'manatees', count, _ ). +noun( 'mandarin', 'mandarins', count, _ ). +noun( 'mandatary', 'mandataries', count, _ ). +noun( 'mandate', 'mandates', count, _ ). +noun( 'mandatory', 'mandatories', count, _ ). +noun( 'mandible', 'mandibles', count, _ ). +noun( 'mandolin', 'mandolins', count, _ ). +noun( 'mandragora', '-', mass, _ ). +noun( 'mandrake', 'mandrakes', count, _ ). +noun( 'mandrill', 'mandrills', count, _ ). +noun( 'mane', 'manes', count, _ ). +noun( 'manganese', '-', mass, _ ). +noun( 'mange', '-', mass, _ ). +noun( 'mangel-wurzel', 'mangel-wurzels', count, _ ). +noun( 'manger', 'mangers', count, _ ). +noun( 'mangle', 'mangles', count, _ ). +noun( 'mango', 'mangos', count, _ ). +noun( 'mangosteen', 'mangosteens', count, _ ). +noun( 'mangrove', 'mangroves', count, _ ). +noun( 'manhattan', 'manhattans', count, _ ). +noun( 'manhole', 'manholes', count, _ ). +noun( 'manhood', '-', mass, _ ). +noun( 'mania', 'manias', both, _ ). +noun( 'maniac', 'maniacs', count, _ ). +noun( 'manic-depressive', 'manic-depressives', count, _ ). +noun( 'manicure', 'manicures', both, _ ). +noun( 'manicurist', 'manicurists', count, _ ). +noun( 'manifest', 'manifests', count, _ ). +noun( 'manifestation', 'manifestations', both, _ ). +noun( 'manifesto', 'manifestos', count, _ ). +noun( 'manifold', 'manifolds', count, _ ). +noun( 'manikin', 'manikins', count, _ ). +noun( 'manipulation', 'manipulations', both, _ ). +noun( 'mankind', '-', mass, _ ). +noun( 'mankind', '-', mass, _ ). +noun( 'manliness', '-', mass, _ ). +noun( 'manna', '-', mass, _ ). +noun( 'mannequin', 'mannequins', count, _ ). +noun( 'manner', 'manners', count, _ ). +noun( 'mannerism', 'mannerisms', count, _ ). +noun( 'manoeuvrability', '-', mass, _ ). +noun( 'manoeuvre', 'manoeuvres', count, _ ). +noun( 'manoeuvrer', 'manoeuvrers', count, _ ). +noun( 'manor', 'manors', count, _ ). +noun( 'manor-house', 'manor-houses', count, _ ). +noun( 'manpower', '-', mass, _ ). +noun( 'mansard', 'mansards', count, _ ). +noun( 'manse', 'manses', count, _ ). +noun( 'manservant', 'manservants', count, _ ). +noun( 'mansion', 'mansions', count, _ ). +noun( 'manslaughter', '-', mass, _ ). +noun( 'mantel', 'mantels', count, _ ). +noun( 'mantelpiece', 'mantelpieces', count, _ ). +noun( 'mantilla', 'mantillas', count, _ ). +noun( 'mantis', 'mantises', count, _ ). +noun( 'mantle', 'mantles', count, _ ). +noun( 'mantrap', 'mantraps', count, _ ). +noun( 'manual', 'manuals', count, _ ). +noun( 'manufacture', '-', mass, _ ). +noun( 'manufacturer', 'manufacturers', count, _ ). +noun( 'manumission', 'manumissions', both, _ ). +noun( 'manure', '-', mass, _ ). +noun( 'manuscript', 'manuscripts', count, _ ). +noun( 'map', 'maps', count, _ ). +noun( 'map-reader', 'map-readers', count, _ ). +noun( 'maple', 'maples', both, _ ). +noun( 'maple-leaf', 'maple-leaves', count, _ ). +noun( 'maquis', '-', count, _ ). +noun( 'marabou', 'marabous', count, _ ). +noun( 'maraschino', 'maraschinos', count, _ ). +noun( 'marathon', 'marathons', count, _ ). +noun( 'marauder', 'marauders', count, _ ). +noun( 'marble', 'marbles', both, _ ). +noun( 'marbling', '-', mass, _ ). +noun( 'march', 'marches', both, _ ). +noun( 'marcher', 'marchers', count, _ ). +noun( 'marchioness', 'marchionesses', count, _ ). +noun( 'mare', 'mares', count, _ ). +noun( 'margarine', '-', mass, _ ). +noun( 'marge', '-', mass, _ ). +noun( 'margin', 'margins', count, _ ). +noun( 'marguerite', 'marguerites', count, _ ). +noun( 'marigold', 'marigolds', count, _ ). +noun( 'marihuana', '-', mass, _ ). +noun( 'marijuana', '-', mass, _ ). +noun( 'marimba', 'marimbas', count, _ ). +noun( 'marina', 'marinas', count, _ ). +noun( 'marinade', '-', mass, _ ). +noun( 'marine', 'marines', count, _ ). +noun( 'mariner', 'mariners', count, _ ). +noun( 'marionette', 'marionettes', count, _ ). +noun( 'marjoram', '-', mass, _ ). +noun( 'mark', 'marks', both, _ ). +noun( 'mark-up', 'mark-ups', count, _ ). +noun( 'marker', 'markers', count, _ ). +noun( 'market', 'markets', count, _ ). +noun( 'market-cross', 'market-crosses', count, _ ). +noun( 'market-day', 'market-days', count, _ ). +noun( 'market-garden', 'market-gardens', count, _ ). +noun( 'market-gardening', '-', mass, _ ). +noun( 'market-square', 'market-squares', count, _ ). +noun( 'market-town', 'market-towns', count, _ ). +noun( 'marketing', 'marketings', both, _ ). +noun( 'marketplace', 'marketplaces', count, _ ). +noun( 'marking', 'markings', count, _ ). +noun( 'marking-ink', 'marking-inks', both, _ ). +noun( 'marking-inks', 'marking-inkss', both, _ ). +noun( 'marksman', 'marksmen', count, _ ). +noun( 'marksmanship', '-', mass, _ ). +noun( 'marl', '-', mass, _ ). +noun( 'marlinespike', 'marlinespikes', count, _ ). +noun( 'marmalade', '-', mass, _ ). +noun( 'marmoset', 'marmosets', count, _ ). +noun( 'marmot', 'marmots', count, _ ). +noun( 'marocain', '-', mass, _ ). +noun( 'maroon', 'maroons', count, _ ). +noun( 'marque', 'marques', count, _ ). +noun( 'marquee', 'marquees', count, _ ). +noun( 'marquess', 'marquesses', count, _ ). +noun( 'marquetry', '-', mass, _ ). +noun( 'marquis', 'marquises', count, _ ). +noun( 'marriage', 'marriages', both, _ ). +noun( 'marriageability', '-', mass, _ ). +noun( 'marrow', 'marrows', both, _ ). +noun( 'marrowbone', 'marrowbones', count, _ ). +noun( 'marsh', 'marshes', both, _ ). +noun( 'marshal', 'marshals', count, _ ). +noun( 'marshalling-yard', 'marshalling-yards', count, _ ). +noun( 'marshmallow', 'marshmallows', both, _ ). +noun( 'marsupial', 'marsupials', count, _ ). +noun( 'mart', 'marts', count, _ ). +noun( 'marten', 'martens', both, _ ). +noun( 'martin', 'martins', count, _ ). +noun( 'martinet', 'martinets', count, _ ). +noun( 'martini', 'martinis', count, _ ). +noun( 'martyr', 'martyrs', count, _ ). +noun( 'martyrdom', 'martyrdoms', count, _ ). +noun( 'marvel', 'marvels', count, _ ). +noun( 'marzipan', 'marzipans', both, _ ). +noun( 'masc', '-', proper, _ ). +noun( 'mascara', '-', mass, _ ). +noun( 'mascot', 'mascots', count, _ ). +noun( 'masculinity', '-', mass, _ ). +noun( 'maser', 'masers', count, _ ). +noun( 'mash', 'mashes', both, _ ). +noun( 'masher', 'mashers', count, _ ). +noun( 'mask', 'masks', count, _ ). +noun( 'masochism', '-', mass, _ ). +noun( 'masochist', 'masochists', count, _ ). +noun( 'mason', 'masons', count, _ ). +noun( 'masonry', '-', mass, _ ). +noun( 'masque', 'masques', count, _ ). +noun( 'masquerade', 'masquerades', count, _ ). +noun( 'mass', 'masses', both, _ ). +noun( 'massacre', 'massacres', count, _ ). +noun( 'massage', 'massages', both, _ ). +noun( 'masseur', 'masseurs', count, _ ). +noun( 'masseuse', 'masseuses', count, _ ). +noun( 'massif', 'massifs', count, _ ). +noun( 'massiveness', '-', mass, _ ). +noun( 'mast', 'masts', both, _ ). +noun( 'master', 'masters', count, _ ). +noun( 'master-at-arms', 'masters-at-arms', count, _ ). +noun( 'master-key', 'master-keys', count, _ ). +noun( 'mastermind', 'masterminds', count, _ ). +noun( 'masterpiece', 'masterpieces', count, _ ). +noun( 'mastership', 'masterships', both, _ ). +noun( 'masterstroke', 'masterstrokes', count, _ ). +noun( 'mastery', '-', mass, _ ). +noun( 'masthead', 'mastheads', count, _ ). +noun( 'mastication', '-', mass, _ ). +noun( 'mastiff', 'mastiffs', count, _ ). +noun( 'mastodon', 'mastodons', count, _ ). +noun( 'mastoid', 'mastoids', count, _ ). +noun( 'mastoiditis', '-', mass, _ ). +noun( 'masturbation', '-', mass, _ ). +noun( 'mat', 'mats', count, _ ). +noun( 'mat_e', '-', mass, _ ). +noun( 'matador', 'matadors', count, _ ). +noun( 'match', 'matches', count, _ ). +noun( 'match-point', 'match-points', count, _ ). +noun( 'matchbox', 'matchboxes', count, _ ). +noun( 'matchet', 'matchets', count, _ ). +noun( 'matchlock', 'matchlocks', count, _ ). +noun( 'matchmaker', 'matchmakers', count, _ ). +noun( 'matchwood', '-', mass, _ ). +noun( 'mate', 'mates', count, _ ). +noun( 'material', 'materials', both, _ ). +noun( 'materialism', '-', mass, _ ). +noun( 'materialist', 'materialists', count, _ ). +noun( 'materialization', 'materializations', count, _ ). +noun( 'maternity', '-', mass, _ ). +noun( 'mathematician', 'mathematicians', count, _ ). +noun( 'mathematics', 'mathematics', mass, _ ). +noun( 'maths', 'maths', mass, _ ). +noun( 'matin_ee', 'matin_ees', count, _ ). +noun( 'matriarch', 'matriarchs', count, _ ). +noun( 'matriarchy', 'matriarchies', count, _ ). +noun( 'matric', 'matrics', count, _ ). +noun( 'matricide', 'matricides', both, _ ). +noun( 'matriculation', 'matriculations', both, _ ). +noun( 'matrimony', '-', mass, _ ). +noun( 'matrix', 'matrixes', count, _ ). +noun( 'matron', 'matrons', count, _ ). +noun( 'matter', 'matters', both, _ ). +noun( 'matting', '-', mass, _ ). +noun( 'mattock', 'mattocks', count, _ ). +noun( 'mattress', 'mattresses', count, _ ). +noun( 'maturation', '-', mass, _ ). +noun( 'maturity', '-', mass, _ ). +noun( 'maulstick', 'maulsticks', count, _ ). +noun( 'mausoleum', 'mausoleums', count, _ ). +noun( 'mauve', 'mauves', both, _ ). +noun( 'maverick', 'mavericks', count, _ ). +noun( 'mavis', 'mavises', count, _ ). +noun( 'maw', 'maws', count, _ ). +noun( 'mawkishness', '-', mass, _ ). +noun( 'max', '-', count, _ ). +noun( 'maxim', 'maxims', count, _ ). +noun( 'maximization', 'maximizations', both, _ ). +noun( 'maximum', 'maximums', count, _ ). +noun( 'may-beetle', 'may-beetles', count, _ ). +noun( 'may-bug', 'may-bugs', count, _ ). +noun( 'mayday', 'maydays', count, _ ). +noun( 'mayfly', 'mayflies', count, _ ). +noun( 'mayhem', '-', mass, _ ). +noun( 'mayonnaise', '-', mass, _ ). +noun( 'mayor', 'mayors', count, _ ). +noun( 'mayoralty', 'mayoralties', count, _ ). +noun( 'mayoress', 'mayoresses', count, _ ). +noun( 'maypole', 'maypoles', count, _ ). +noun( 'maze', 'mazes', count, _ ). +noun( 'mazurka', 'mazurkas', count, _ ). +noun( 'mead', 'meads', both, _ ). +noun( 'meadow', 'meadows', both, _ ). +noun( 'meagreness', '-', mass, _ ). +noun( 'meal', 'meals', both, _ ). +noun( 'mealie', 'mealies', count, _ ). +noun( 'mealtime', 'mealtimes', count, _ ). +noun( 'mealy-bug', 'mealy-bugs', count, _ ). +noun( 'mean', 'means', count, _ ). +noun( 'meanie', 'meanies', count, _ ). +noun( 'meaning', 'meanings', both, _ ). +noun( 'meanness', '-', mass, _ ). +noun( 'meantime', '-', mass, _ ). +noun( 'meany', 'meanies', count, _ ). +noun( 'measles', 'measles', mass, _ ). +noun( 'measure', 'measures', both, _ ). +noun( 'measurement', 'measurements', both, _ ). +noun( 'meat', 'meats', both, _ ). +noun( 'meat-safe', 'meat-safes', count, _ ). +noun( 'meatball', 'meatballs', count, _ ). +noun( 'mechanic', 'mechanics', count, _ ). +noun( 'mechanics', 'mechanics', mass, _ ). +noun( 'mechanism', 'mechanisms', both, _ ). +noun( 'mechanization', 'mechanizations', both, _ ). +noun( 'medal', 'medals', count, _ ). +noun( 'medalist', 'medalists', count, _ ). +noun( 'medallion', 'medallions', count, _ ). +noun( 'medallist', 'medallists', count, _ ). +noun( 'meddler', 'meddlers', count, _ ). +noun( 'median', 'medians', count, _ ). +noun( 'mediation', '-', mass, _ ). +noun( 'mediator', 'mediators', count, _ ). +noun( 'medic', 'medics', count, _ ). +noun( 'medical', 'medicals', count, _ ). +noun( 'medicament', 'medicaments', count, _ ). +noun( 'medication', 'medications', both, _ ). +noun( 'medicine', 'medicines', both, _ ). +noun( 'medicine-ball', 'medicine-balls', count, _ ). +noun( 'medicine-chest', 'medicine-chests', count, _ ). +noun( 'medicine-man', 'medicine-men', count, _ ). +noun( 'medico', 'medicos', count, _ ). +noun( 'mediocrity', 'mediocrities', both, _ ). +noun( 'meditation', 'meditations', both, _ ). +noun( 'medium', 'mediums', count, _ ). +noun( 'medlar', 'medlars', count, _ ). +noun( 'medley', 'medleys', count, _ ). +noun( 'meed', 'meeds', count, _ ). +noun( 'meekness', '-', mass, _ ). +noun( 'meerschaum', 'meerschaums', both, _ ). +noun( 'meet', 'meets', count, _ ). +noun( 'meeting', 'meetings', count, _ ). +noun( 'meeting-house', 'meeting-houses', count, _ ). +noun( 'meeting-place', 'meeting-places', count, _ ). +noun( 'megacycle', 'megacycles', count, _ ). +noun( 'megadeath', 'megadeaths', count, _ ). +noun( 'megalith', 'megaliths', count, _ ). +noun( 'megalomania', '-', mass, _ ). +noun( 'megalomaniac', 'megalomaniacs', count, _ ). +noun( 'megaphone', 'megaphones', count, _ ). +noun( 'megaton', 'megatons', count, _ ). +noun( 'megrim', 'megrims', count, _ ). +noun( 'meiosis', '-', mass, _ ). +noun( 'melancholia', '-', mass, _ ). +noun( 'melancholy', '-', mass, _ ). +noun( 'melioration', 'meliorations', both, _ ). +noun( 'meliorism', '-', mass, _ ). +noun( 'mellowness', '-', mass, _ ). +noun( 'melodiousness', '-', mass, _ ). +noun( 'melodrama', 'melodramas', both, _ ). +noun( 'melody', 'melodies', both, _ ). +noun( 'melon', 'melons', count, _ ). +noun( 'melting-point', 'melting-points', count, _ ). +noun( 'melting-pot', 'melting-pots', count, _ ). +noun( 'member', 'members', count, _ ). +noun( 'membership', '-', mass, _ ). +noun( 'membrane', 'membranes', both, _ ). +noun( 'memento', 'mementos', count, _ ). +noun( 'memo', 'memos', count, _ ). +noun( 'memoir', 'memoirs', count, _ ). +noun( 'memorandum', 'memorandums', count, _ ). +noun( 'memorial', 'memorials', count, _ ). +noun( 'memory', 'memories', both, _ ). +noun( 'memsahib', 'memsahibs', count, _ ). +noun( 'menace', 'menaces', both, _ ). +noun( 'menagerie', 'menageries', count, _ ). +noun( 'mend', 'mends', count, _ ). +noun( 'mendacity', 'mendacities', both, _ ). +noun( 'mender', 'menders', count, _ ). +noun( 'mendicant', 'mendicants', count, _ ). +noun( 'mending', '-', mass, _ ). +noun( 'menial', 'menials', count, _ ). +noun( 'meningitis', '-', mass, _ ). +noun( 'menopause', 'menopauses', count, _ ). +noun( 'menstruation', '-', mass, _ ). +noun( 'mensuration', 'mensurations', both, _ ). +noun( 'mentality', 'mentalities', both, _ ). +noun( 'menthol', '-', mass, _ ). +noun( 'mention', 'mentions', both, _ ). +noun( 'mentor', 'mentors', count, _ ). +noun( 'menu', 'menus', count, _ ). +noun( 'mercenary', 'mercenaries', count, _ ). +noun( 'mercer', 'mercers', count, _ ). +noun( 'merchandise', '-', mass, _ ). +noun( 'merchant', 'merchants', count, _ ). +noun( 'merchantman', 'merchantmen', count, _ ). +noun( 'mercury', '-', mass, _ ). +noun( 'mercy', 'mercies', both, _ ). +noun( 'mere', 'meres', count, _ ). +noun( 'meretriciousness', '-', mass, _ ). +noun( 'merger', 'mergers', both, _ ). +noun( 'meridian', 'meridians', count, _ ). +noun( 'meringue', 'meringues', both, _ ). +noun( 'merino', '-', mass, _ ). +noun( 'merino-sheep', 'merino-sheep', count, _ ). +noun( 'merit', 'merits', both, _ ). +noun( 'meritocracy', 'meritocracies', count, _ ). +noun( 'mermaid', 'mermaids', count, _ ). +noun( 'merman', 'mermen', count, _ ). +noun( 'merriment', '-', mass, _ ). +noun( 'merry-go-round', 'merry-go-rounds', count, _ ). +noun( 'merrymaker', 'merrymakers', count, _ ). +noun( 'merrymaking', '-', mass, _ ). +noun( 'mescal', 'mescals', both, _ ). +noun( 'mescaline', '-', mass, _ ). +noun( 'mesh', 'meshes', count, _ ). +noun( 'mesmerism', '-', mass, _ ). +noun( 'mesmerist', 'mesmerists', count, _ ). +noun( 'meson', 'mesons', count, _ ). +noun( 'mess', 'messes', both, _ ). +noun( 'mess-jacket', 'mess-jackets', count, _ ). +noun( 'mess-up', 'mess-ups', count, _ ). +noun( 'message', 'messages', count, _ ). +noun( 'messenger', 'messengers', count, _ ). +noun( 'messiness', '-', mass, _ ). +noun( 'messmate', 'messmates', count, _ ). +noun( 'messuage', 'messuages', count, _ ). +noun( 'metabolism', '-', mass, _ ). +noun( 'metacarpal', 'metacarpals', count, _ ). +noun( 'metal', 'metals', both, _ ). +noun( 'metallurgist', 'metallurgists', count, _ ). +noun( 'metallurgy', '-', mass, _ ). +noun( 'metalwork', 'metalworks', count, _ ). +noun( 'metalworker', 'metalworkers', count, _ ). +noun( 'metamorphosis', 'metamorphoses', count, _ ). +noun( 'metaphor', 'metaphors', both, _ ). +noun( 'metaphysics', 'metaphysics', mass, _ ). +noun( 'metatarsal', 'metatarsals', count, _ ). +noun( 'meteor', 'meteors', count, _ ). +noun( 'meteorite', 'meteorites', count, _ ). +noun( 'meteorologist', 'meteorologists', count, _ ). +noun( 'meteorology', '-', mass, _ ). +noun( 'meter', 'meters', count, _ ). +noun( 'methane', '-', mass, _ ). +noun( 'method', 'methods', both, _ ). +noun( 'methodology', 'methodologies', both, _ ). +noun( 'methyl', 'methyls', both, _ ). +noun( 'meticulousness', '-', mass, _ ). +noun( 'metre', 'metres', both, _ ). +noun( 'metrication', 'metrications', both, _ ). +noun( 'metronome', 'metronomes', count, _ ). +noun( 'metropolis', 'metropolises', count, _ ). +noun( 'metropolitan', 'metropolitans', count, _ ). +noun( 'mettle', '-', mass, _ ). +noun( 'mew', 'mews', count, _ ). +noun( 'mews', 'mews', count, _ ). +noun( 'mezzanine', 'mezzanines', count, _ ). +noun( 'mezzo-soprano', 'mezzo-sopranos', count, _ ). +noun( 'mezzotint', 'mezzotints', both, _ ). +noun( 'mg', 'mg', count, _ ). +noun( 'mi', '-', count, _ ). +noun( 'miaou', 'miaous', count, _ ). +noun( 'miaow', 'miaows', count, _ ). +noun( 'miasma', 'miasmas', count, _ ). +noun( 'mica', '-', mass, _ ). +noun( 'mickey', '-', count, _ ). +noun( 'mickle', '-', count, _ ). +noun( 'micro-organism', 'micro-organisms', count, _ ). +noun( 'microbe', 'microbes', count, _ ). +noun( 'microbiology', '-', mass, _ ). +noun( 'microcosm', 'microcosms', count, _ ). +noun( 'microdot', 'microdots', count, _ ). +noun( 'microelectronics', 'microelectronics', mass, _ ). +noun( 'microfiche', 'microfiches', both, _ ). +noun( 'microfilm', 'microfilms', both, _ ). +noun( 'micrometer', 'micrometers', count, _ ). +noun( 'micron', 'microns', count, _ ). +noun( 'microphone', 'microphones', count, _ ). +noun( 'microscope', 'microscopes', count, _ ). +noun( 'microscopy', '-', mass, _ ). +noun( 'microwave', 'microwaves', count, _ ). +noun( 'mid-off', '-', count, _ ). +noun( 'mid-on', '-', count, _ ). +noun( 'midday', '-', mass, _ ). +noun( 'midden', 'middens', count, _ ). +noun( 'middle', 'middles', count, _ ). +noun( 'middleman', 'middlemen', count, _ ). +noun( 'middleweight', 'middleweights', count, _ ). +noun( 'middling', 'middlings', count, _ ). +noun( 'middy', 'middies', count, _ ). +noun( 'midfield', '-', count, _ ). +noun( 'midge', 'midges', count, _ ). +noun( 'midget', 'midgets', count, _ ). +noun( 'midinette', 'midinettes', count, _ ). +noun( 'midland', 'midlands', count, _ ). +noun( 'midnight', '-', mass, _ ). +noun( 'midriff', 'midriffs', count, _ ). +noun( 'midshipman', 'midshipmen', count, _ ). +noun( 'midst', '-', count, _ ). +noun( 'midstream', '-', mass, _ ). +noun( 'midsummer', '-', mass, _ ). +noun( 'midwife', 'midwives', count, _ ). +noun( 'midwifery', '-', mass, _ ). +noun( 'mien', 'miens', count, _ ). +noun( 'might', '-', mass, _ ). +noun( 'might-have-been', 'might-have-beens', count, _ ). +noun( 'mignonette', '-', mass, _ ). +noun( 'migraine', 'migraines', count, _ ). +noun( 'migrant', 'migrants', count, _ ). +noun( 'migration', 'migrations', both, _ ). +noun( 'mikado', 'mikados', count, _ ). +noun( 'mike', 'mikes', count, _ ). +noun( 'milady', 'miladies', count, _ ). +noun( 'milage', 'milages', count, _ ). +noun( 'mildew', '-', mass, _ ). +noun( 'mildness', '-', mass, _ ). +noun( 'mile', 'miles', count, _ ). +noun( 'mileage', 'mileages', count, _ ). +noun( 'mileometer', 'mileometers', count, _ ). +noun( 'miler', 'milers', count, _ ). +noun( 'milestone', 'milestones', count, _ ). +noun( 'milieu', 'milieus', count, _ ). +noun( 'militancy', '-', mass, _ ). +noun( 'militant', 'militants', count, _ ). +noun( 'militarism', '-', mass, _ ). +noun( 'militarist', 'militarists', count, _ ). +noun( 'military', '-', mass, _ ). +noun( 'militia', 'militias', count, _ ). +noun( 'militiaman', 'militiamen', count, _ ). +noun( 'milk', '-', mass, _ ). +noun( 'milk-churn', 'milk-churns', count, _ ). +noun( 'milk-powder', 'milk-powders', both, _ ). +noun( 'milk-shake', 'milk-shakes', count, _ ). +noun( 'milk-tooth', 'milk-teeth', count, _ ). +noun( 'milkbar', 'milkbars', count, _ ). +noun( 'milking-machine', 'milking-machines', count, _ ). +noun( 'milkmaid', 'milkmaids', count, _ ). +noun( 'milkman', 'milkmen', count, _ ). +noun( 'milkshake', 'milkshakes', count, _ ). +noun( 'milksop', 'milksops', count, _ ). +noun( 'milkweed', 'milkweeds', both, _ ). +noun( 'mill', 'mills', count, _ ). +noun( 'mill-dam', 'mill-dams', count, _ ). +noun( 'mill-girl', 'mill-girls', count, _ ). +noun( 'mill-hand', 'mill-hands', count, _ ). +noun( 'millboard', '-', mass, _ ). +noun( 'millenarian', 'millenarians', count, _ ). +noun( 'millennium', 'millennia', count, _ ). +noun( 'millepede', 'millepedes', count, _ ). +noun( 'miller', 'millers', count, _ ). +noun( 'millet', '-', mass, _ ). +noun( 'milliard', 'milliards', count, _ ). +noun( 'millibar', 'millibars', count, _ ). +noun( 'milligram', 'milligrams', count, _ ). +noun( 'millimetre', 'millimetres', count, _ ). +noun( 'milliner', 'milliners', count, _ ). +noun( 'millinery', '-', mass, _ ). +noun( 'million', 'millions', count, _ ). +noun( 'millionaire', 'millionaires', count, _ ). +noun( 'millionairess', 'millionairesss', count, _ ). +noun( 'millionth', 'millionths', count, _ ). +noun( 'millipede', 'millipedes', count, _ ). +noun( 'millpond', 'millponds', count, _ ). +noun( 'millrace', 'millraces', count, _ ). +noun( 'millstone', 'millstones', count, _ ). +noun( 'millwheel', 'millwheels', count, _ ). +noun( 'millwright', 'millwrights', count, _ ). +noun( 'milometer', 'milometers', count, _ ). +noun( 'milord', 'milords', count, _ ). +noun( 'milt', '-', mass, _ ). +noun( 'mime', 'mimes', both, _ ). +noun( 'mimeograph', 'mimeographs', count, _ ). +noun( 'mimic', 'mimics', count, _ ). +noun( 'mimicry', '-', mass, _ ). +noun( 'mimosa', 'mimosas', both, _ ). +noun( 'min', '-', count, _ ). +noun( 'minaret', 'minarets', count, _ ). +noun( 'mince', '-', mass, _ ). +noun( 'mince-pie', 'mince-pies', count, _ ). +noun( 'mincemeat', '-', mass, _ ). +noun( 'mincer', 'mincers', count, _ ). +noun( 'mind', 'minds', both, _ ). +noun( 'mind-reader', 'mind-readers', count, _ ). +noun( 'minder', 'minders', count, _ ). +noun( 'mindfulness', '-', mass, _ ). +noun( 'mindlessness', '-', mass, _ ). +noun( 'mine', 'mines', count, _ ). +noun( 'mine-detector', 'mine-detectors', count, _ ). +noun( 'mine-disposal', 'mine-disposals', both, _ ). +noun( 'minefield', 'minefields', count, _ ). +noun( 'minelayer', 'minelayers', count, _ ). +noun( 'minelaying', '-', mass, _ ). +noun( 'miner', 'miners', count, _ ). +noun( 'mineral', 'minerals', count, _ ). +noun( 'mineralogist', 'mineralogists', count, _ ). +noun( 'mineralogy', '-', mass, _ ). +noun( 'minestrone', '-', mass, _ ). +noun( 'minesweeper', 'minesweepers', count, _ ). +noun( 'minesweeping', '-', mass, _ ). +noun( 'mineworker', 'mineworkers', count, _ ). +noun( 'miniature', 'miniatures', both, _ ). +noun( 'miniaturist', 'miniaturists', count, _ ). +noun( 'miniaturization', '-', mass, _ ). +noun( 'minim', 'minims', count, _ ). +noun( 'minimum', 'minimums', count, _ ). +noun( 'mining', '-', mass, _ ). +noun( 'minion', 'minions', count, _ ). +noun( 'minister', 'ministers', count, _ ). +noun( 'ministrant', 'ministrants', count, _ ). +noun( 'ministration', 'ministrations', both, _ ). +noun( 'ministry', 'ministries', count, _ ). +noun( 'miniver', '-', mass, _ ). +noun( 'mink', 'minks', both, _ ). +noun( 'minnow', 'minnows', count, _ ). +noun( 'minor', 'minors', count, _ ). +noun( 'minority', 'minorities', both, _ ). +noun( 'minster', 'minsters', count, _ ). +noun( 'minstrel', 'minstrels', count, _ ). +noun( 'minstrelsy', '-', mass, _ ). +noun( 'mint', 'mints', both, _ ). +noun( 'minuet', 'minuets', count, _ ). +noun( 'minus', 'minuses', count, _ ). +noun( 'minute', 'minutes', count, _ ). +noun( 'minute-book', 'minute-books', count, _ ). +noun( 'minute-gun', 'minute-guns', count, _ ). +noun( 'minute-hand', 'minute-hands', count, _ ). +noun( 'minuteman', 'minutemen', count, _ ). +noun( 'minuteness', '-', mass, _ ). +noun( 'minx', 'minxes', count, _ ). +noun( 'miracle', 'miracles', count, _ ). +noun( 'mirage', 'mirages', count, _ ). +noun( 'mire', '-', mass, _ ). +noun( 'mirror', 'mirrors', count, _ ). +noun( 'mirth', '-', mass, _ ). +noun( 'misadventure', 'misadventures', both, _ ). +noun( 'misalliance', 'misalliances', count, _ ). +noun( 'misanthrope', 'misanthropes', count, _ ). +noun( 'misanthropy', '-', mass, _ ). +noun( 'misapplication', 'misapplications', count, _ ). +noun( 'misapprehension', 'misapprehensions', both, _ ). +noun( 'misappropriation', 'misappropriations', both, _ ). +noun( 'misbehaviour', '-', mass, _ ). +noun( 'misc', '-', proper, _ ). +noun( 'miscalculation', 'miscalculations', both, _ ). +noun( 'miscarriage', 'miscarriages', both, _ ). +noun( 'miscegenation', '-', mass, _ ). +noun( 'miscellany', 'miscellanies', count, _ ). +noun( 'mischance', 'mischances', both, _ ). +noun( 'mischief', 'mischiefs', both, _ ). +noun( 'mischief-maker', 'mischief-makers', count, _ ). +noun( 'mischief-making', '-', mass, _ ). +noun( 'mischievousness', '-', mass, _ ). +noun( 'misconception', 'misconceptions', both, _ ). +noun( 'misconduct', '-', mass, _ ). +noun( 'misconstruction', 'misconstructions', both, _ ). +noun( 'miscount', 'miscounts', count, _ ). +noun( 'miscreant', 'miscreants', count, _ ). +noun( 'misdeal', 'misdeals', count, _ ). +noun( 'misdeed', 'misdeeds', count, _ ). +noun( 'misdemeanour', 'misdemeanours', count, _ ). +noun( 'misdirection', 'misdirections', count, _ ). +noun( 'misdoing', 'misdoings', count, _ ). +noun( 'mise en sc`ene', '-', mass, _ ). +noun( 'miser', 'misers', count, _ ). +noun( 'miserliness', '-', mass, _ ). +noun( 'misery', 'miseries', both, _ ). +noun( 'misfire', 'misfires', count, _ ). +noun( 'misfit', 'misfits', count, _ ). +noun( 'misfortune', 'misfortunes', both, _ ). +noun( 'misgiving', 'misgivings', both, _ ). +noun( 'misgovernment', '-', mass, _ ). +noun( 'mishap', 'mishaps', both, _ ). +noun( 'mishmash', '-', mass, _ ). +noun( 'misinformation', '-', mass, _ ). +noun( 'misinterpretation', 'misinterpretations', both, _ ). +noun( 'mismanagement', '-', mass, _ ). +noun( 'misnomer', 'misnomers', count, _ ). +noun( 'misogynist', 'misogynists', count, _ ). +noun( 'misprint', 'misprints', count, _ ). +noun( 'mispronunciation', 'mispronunciations', count, _ ). +noun( 'misquotation', 'misquotations', both, _ ). +noun( 'misrepresentation', 'misrepresentations', both, _ ). +noun( 'misrule', '-', mass, _ ). +noun( 'miss', 'misses', count, _ ). +noun( 'missal', 'missals', count, _ ). +noun( 'missile', 'missiles', count, _ ). +noun( 'mission', 'missions', count, _ ). +noun( 'missionary', 'missionaries', count, _ ). +noun( 'missis', '-', count, _ ). +noun( 'missive', 'missives', count, _ ). +noun( 'misspelling', 'misspellings', count, _ ). +noun( 'misstatement', 'misstatements', count, _ ). +noun( 'missus', '-', count, _ ). +noun( 'missy', 'missies', count, _ ). +noun( 'mist', 'mists', both, _ ). +noun( 'mistake', 'mistakes', count, _ ). +noun( 'mister', '-', count, _ ). +noun( 'mistiness', '-', mass, _ ). +noun( 'mistletoe', '-', mass, _ ). +noun( 'mistral', 'mistrals', count, _ ). +noun( 'mistranslation', 'mistranslations', both, _ ). +noun( 'mistress', 'mistresses', count, _ ). +noun( 'mistrial', 'mistrials', count, _ ). +noun( 'mistrust', '-', mass, _ ). +noun( 'misunderstanding', 'misunderstandings', both, _ ). +noun( 'misuse', 'misuses', both, _ ). +noun( 'mite', 'mites', count, _ ). +noun( 'mitigation', '-', mass, _ ). +noun( 'mitre', 'mitres', count, _ ). +noun( 'mitre-joint', 'mitre-joints', count, _ ). +noun( 'mitt', 'mitts', count, _ ). +noun( 'mitten', 'mittens', count, _ ). +noun( 'mix', 'mixes', count, _ ). +noun( 'mix-up', 'mix-ups', count, _ ). +noun( 'mixer', 'mixers', count, _ ). +noun( 'mixture', 'mixtures', both, _ ). +noun( 'mizen', 'mizens', count, _ ). +noun( 'mizzen', 'mizzens', count, _ ). +noun( 'mizzen-mast', 'mizzen-masts', count, _ ). +noun( 'ml', 'ml', count, _ ). +noun( 'mm', 'mm', count, _ ). +noun( 'mnemonics', 'mnemonics', mass, _ ). +noun( 'mo', '-', count, _ ). +noun( 'moan', 'moans', count, _ ). +noun( 'moat', 'moats', count, _ ). +noun( 'mob', 'mobs', count, _ ). +noun( 'mobcap', 'mobcaps', count, _ ). +noun( 'mobile', 'mobiles', count, _ ). +noun( 'mobility', '-', mass, _ ). +noun( 'mobilization', 'mobilizations', both, _ ). +noun( 'mobster', 'mobsters', count, _ ). +noun( 'moccasin', 'moccasins', both, _ ). +noun( 'mocha', '-', mass, _ ). +noun( 'mock', 'mocks', count, _ ). +noun( 'mock-up', 'mock-ups', count, _ ). +noun( 'mocker', 'mockers', count, _ ). +noun( 'mockery', 'mockeries', both, _ ). +noun( 'mod', 'mods', count, _ ). +noun( '-', 'mod cons', count, _ ). +noun( 'modality', 'modalities', both, _ ). +noun( 'mode', 'modes', count, _ ). +noun( 'model', 'models', count, _ ). +noun( 'modeler', 'modelers', count, _ ). +noun( 'modeller', 'modellers', count, _ ). +noun( 'modelling', '-', mass, _ ). +noun( 'moderate', 'moderates', count, _ ). +noun( 'moderation', '-', mass, _ ). +noun( 'moderator', 'moderators', count, _ ). +noun( 'modern', 'moderns', count, _ ). +noun( 'modernism', '-', mass, _ ). +noun( 'modernist', 'modernists', count, _ ). +noun( 'modernity', '-', mass, _ ). +noun( 'modernization', '-', mass, _ ). +noun( 'modesty', '-', mass, _ ). +noun( 'modicum', 'modica', count, _ ). +noun( 'modification', 'modifications', both, _ ). +noun( 'modifier', 'modifiers', count, _ ). +noun( 'modiste', 'modistes', count, _ ). +noun( 'modulation', 'modulations', both, _ ). +noun( 'module', 'modules', count, _ ). +noun( 'modus operandi', '-', count, _ ). +noun( 'modus vivendi', '-', count, _ ). +noun( 'mogul', 'moguls', count, _ ). +noun( 'mohair', '-', mass, _ ). +noun( 'moiety', 'moieties', count, _ ). +noun( 'moisture', '-', mass, _ ). +noun( 'moke', 'mokes', count, _ ). +noun( 'molar', 'molars', count, _ ). +noun( 'molasses', '-', mass, _ ). +noun( 'mole', 'moles', count, _ ). +noun( 'molecule', 'molecules', count, _ ). +noun( 'molehill', 'molehills', count, _ ). +noun( 'moleskin', 'moleskins', count, _ ). +noun( 'molestation', '-', mass, _ ). +noun( 'moll', 'molls', count, _ ). +noun( 'mollification', '-', mass, _ ). +noun( 'mollusc', 'molluscs', count, _ ). +noun( 'mollycoddle', 'mollycoddles', count, _ ). +noun( 'molybdenum', '-', mass, _ ). +noun( 'moment', 'moments', both, _ ). +noun( 'momentousness', '-', mass, _ ). +noun( 'momentum', '-', mass, _ ). +noun( 'monarch', 'monarchs', count, _ ). +noun( 'monarchism', '-', mass, _ ). +noun( 'monarchist', 'monarchists', count, _ ). +noun( 'monarchy', 'monarchies', both, _ ). +noun( 'monastery', 'monasteries', count, _ ). +noun( 'monasticism', '-', mass, _ ). +noun( 'money', '-', mass, _ ). +noun( 'money-grubber', 'money-grubbers', count, _ ). +noun( 'money-order', 'money-orders', count, _ ). +noun( 'money-spinner', 'money-spinners', count, _ ). +noun( 'moneybox', 'moneyboxes', count, _ ). +noun( 'moneychanger', 'moneychangers', count, _ ). +noun( 'moneylender', 'moneylenders', count, _ ). +noun( 'monger', 'mongers', count, _ ). +noun( 'mongol', 'mongols', count, _ ). +noun( 'mongolism', '-', mass, _ ). +noun( 'mongoose', 'mongooses', count, _ ). +noun( 'mongrel', 'mongrels', count, _ ). +noun( 'monitor', 'monitors', count, _ ). +noun( 'monk', 'monks', count, _ ). +noun( 'monkey', 'monkeys', count, _ ). +noun( 'monkey-jacket', 'monkey-jackets', count, _ ). +noun( 'monkey-nut', 'monkey-nuts', count, _ ). +noun( 'monkey-puzzle', 'monkey-puzzles', count, _ ). +noun( 'monkey-wrench', 'monkey-wrenches', count, _ ). +noun( 'monochrome', 'monochromes', count, _ ). +noun( 'monocle', 'monocles', count, _ ). +noun( 'monogamist', 'monogamists', count, _ ). +noun( 'monogamy', '-', mass, _ ). +noun( 'monogram', 'monograms', count, _ ). +noun( 'monograph', 'monographs', count, _ ). +noun( 'monolith', 'monoliths', count, _ ). +noun( 'monologue', 'monologues', count, _ ). +noun( 'monomania', 'monomanias', both, _ ). +noun( 'monomaniac', 'monomaniacs', count, _ ). +noun( 'monoplane', 'monoplanes', count, _ ). +noun( 'monopolist', 'monopolists', count, _ ). +noun( 'monopolization', 'monopolizations', both, _ ). +noun( 'monopoly', 'monopolies', count, _ ). +noun( 'monorail', 'monorails', count, _ ). +noun( 'monosyllable', 'monosyllables', count, _ ). +noun( 'monotheism', '-', mass, _ ). +noun( 'monotheist', 'monotheists', count, _ ). +noun( 'monotone', 'monotones', count, _ ). +noun( 'monotony', '-', mass, _ ). +noun( 'monotype', 'monotypes', count, _ ). +noun( 'monoxide', 'monoxides', both, _ ). +noun( 'monsoon', 'monsoons', count, _ ). +noun( 'monster', 'monsters', count, _ ). +noun( 'monstrance', 'monstrances', count, _ ). +noun( 'monstrosity', 'monstrosities', both, _ ). +noun( 'montage', '-', mass, _ ). +noun( 'month', 'months', count, _ ). +noun( 'monthly', 'monthlies', count, _ ). +noun( 'monument', 'monuments', count, _ ). +noun( 'moo', 'moos', count, _ ). +noun( 'moo-cow', 'moo-cows', count, _ ). +noun( 'mood', 'moods', count, _ ). +noun( 'moodiness', '-', mass, _ ). +noun( 'moon', 'moons', count, _ ). +noun( 'moonbeam', 'moonbeams', count, _ ). +noun( 'moonflower', 'moonflowers', count, _ ). +noun( 'moonlight', '-', mass, _ ). +noun( 'moonshine', '-', mass, _ ). +noun( 'moonstone', 'moonstones', count, _ ). +noun( 'moor', 'moors', both, _ ). +noun( 'moorcock', 'moorcocks', count, _ ). +noun( 'moorfowl', 'moorfowls', count, _ ). +noun( 'moorgame', 'moorgame', count, _ ). +noun( 'moorhen', 'moorhens', count, _ ). +noun( 'mooring-mast', 'mooring-masts', count, _ ). +noun( 'moorland', 'moorlands', both, _ ). +noun( 'moose', 'moose', count, _ ). +noun( 'mop', 'mops', count, _ ). +noun( 'mope', 'mopes', count, _ ). +noun( 'moped', 'mopeds', count, _ ). +noun( 'moquette', '-', mass, _ ). +noun( 'moraine', 'moraines', count, _ ). +noun( 'moral', 'morals', count, _ ). +noun( 'morale', '-', mass, _ ). +noun( 'moralist', 'moralists', count, _ ). +noun( 'morality', 'moralities', both, _ ). +noun( 'morass', 'morasses', count, _ ). +noun( 'moratorium', 'moratoriums', count, _ ). +noun( 'morbidity', 'morbidities', both, _ ). +noun( 'morbidness', '-', mass, _ ). +noun( 'more', '-', mass, _ ). +noun( 'morello', 'morellos', count, _ ). +noun( 'morgue', 'morgues', count, _ ). +noun( 'morn', 'morns', count, _ ). +noun( 'morning', 'mornings', both, _ ). +noun( 'morning-glory', 'morning-glories', count, _ ). +noun( 'morning-room', 'morning-rooms', count, _ ). +noun( 'morocco', '-', mass, _ ). +noun( 'moron', 'morons', count, _ ). +noun( 'moroseness', '-', mass, _ ). +noun( 'morpheme', 'morphemes', count, _ ). +noun( 'morphia', '-', mass, _ ). +noun( 'morphine', '-', mass, _ ). +noun( 'morphology', '-', mass, _ ). +noun( 'morris dance', 'morris dances', count, _ ). +noun( 'morrow', 'morrows', count, _ ). +noun( 'morsel', 'morsels', count, _ ). +noun( 'mortal', 'mortals', count, _ ). +noun( 'mortality', '-', mass, _ ). +noun( 'mortar', 'mortars', both, _ ). +noun( 'mortarboard', 'mortarboards', count, _ ). +noun( 'mortgage', 'mortgages', count, _ ). +noun( 'mortgagee', 'mortgagees', count, _ ). +noun( 'mortgagor', 'mortgagors', count, _ ). +noun( 'mortice', 'mortices', count, _ ). +noun( 'mortician', 'morticians', count, _ ). +noun( 'mortification', '-', mass, _ ). +noun( 'mortise', 'mortises', count, _ ). +noun( 'mortuary', 'mortuaries', count, _ ). +noun( 'mosaic', 'mosaics', count, _ ). +noun( 'moselle', 'moselles', both, _ ). +noun( 'mosque', 'mosques', count, _ ). +noun( 'mosquito', 'mosquitoes', count, _ ). +noun( 'mosquito-craft', 'mosquito-craft', count, _ ). +noun( 'mosquito-net', 'mosquito-nets', count, _ ). +noun( 'moss', 'mosses', both, _ ). +noun( 'most', 'most', count, _ ). +noun( 'mote', 'motes', count, _ ). +noun( 'motel', 'motels', count, _ ). +noun( 'moth', 'moths', count, _ ). +noun( 'mothball', 'mothballs', count, _ ). +noun( 'mother', 'mothers', count, _ ). +noun( 'mother-in-law', 'mothers-in-law', count, _ ). +noun( 'mother-of-pearl', '-', mass, _ ). +noun( 'motherhood', '-', mass, _ ). +noun( 'motherland', 'motherlands', count, _ ). +noun( 'motherliness', '-', mass, _ ). +noun( 'motif', 'motifs', count, _ ). +noun( 'motion', 'motions', both, _ ). +noun( 'motivation', 'motivations', both, _ ). +noun( 'motive', 'motives', count, _ ). +noun( 'motley', '-', mass, _ ). +noun( 'motor', 'motors', count, _ ). +noun( 'motorbike', 'motorbikes', count, _ ). +noun( 'motorboat', 'motorboats', count, _ ). +noun( 'motorcade', 'motorcades', count, _ ). +noun( 'motorcar', 'motorcars', count, _ ). +noun( 'motorcoach', 'motorcoaches', count, _ ). +noun( 'motorcycle', 'motorcycles', count, _ ). +noun( 'motorist', 'motorists', count, _ ). +noun( 'motorman', 'motormen', count, _ ). +noun( 'motorway', 'motorways', count, _ ). +noun( 'motto', 'mottos', count, _ ). +noun( 'moujik', 'moujiks', count, _ ). +noun( 'mould', 'moulds', both, _ ). +noun( 'moulding', 'mouldings', both, _ ). +noun( 'moult', 'moults', count, _ ). +noun( 'mound', 'mounds', count, _ ). +noun( 'mount', 'mounts', count, _ ). +noun( 'mountain', 'mountains', count, _ ). +noun( 'mountaineer', 'mountaineers', count, _ ). +noun( 'mountaineering', '-', mass, _ ). +noun( 'mountebank', 'mountebanks', count, _ ). +noun( 'mourner', 'mourners', count, _ ). +noun( 'mourning', '-', mass, _ ). +noun( 'mourning-band', 'mourning-bands', count, _ ). +noun( 'mourning-ring', 'mourning-rings', count, _ ). +noun( 'mouse', 'mice', count, _ ). +noun( 'mouser', 'mousers', count, _ ). +noun( 'mousetrap', 'mousetraps', count, _ ). +noun( 'mousse', 'mousses', both, _ ). +noun( 'moustache', 'moustaches', count, _ ). +noun( 'mouth', 'mouths', count, _ ). +noun( 'mouth-organ', 'mouth-organs', count, _ ). +noun( 'mouthful', 'mouthfuls', count, _ ). +noun( 'mouthpiece', 'mouthpieces', count, _ ). +noun( 'move', 'moves', count, _ ). +noun( 'movement', 'movements', both, _ ). +noun( 'mover', 'movers', count, _ ). +noun( 'movie', 'movies', count, _ ). +noun( 'mow', 'mows', count, _ ). +noun( 'mower', 'mowers', count, _ ). +noun( 'mpg', 'mpg', count, _ ). +noun( 'mph', 'mph', count, _ ). +noun( 'much', '-', count, _ ). +noun( 'muchness', '-', mass, _ ). +noun( 'mucilage', '-', mass, _ ). +noun( 'muck', '-', mass, _ ). +noun( 'muck-heap', 'muck-heaps', count, _ ). +noun( 'muckle', '-', count, _ ). +noun( 'muckraker', 'muckrakers', count, _ ). +noun( 'muckraking', '-', mass, _ ). +noun( 'mucus', '-', mass, _ ). +noun( 'mud', '-', mass, _ ). +noun( 'mud-bath', 'mud-baths', count, _ ). +noun( 'muddle', 'muddles', count, _ ). +noun( 'mudguard', 'mudguards', count, _ ). +noun( 'mudslinger', 'mudslingers', count, _ ). +noun( 'muesli', '-', mass, _ ). +noun( 'muezzin', 'muezzins', count, _ ). +noun( 'muff', 'muffs', count, _ ). +noun( 'muffin', 'muffins', count, _ ). +noun( 'muffin-man', 'muffin-men', count, _ ). +noun( 'muffler', 'mufflers', count, _ ). +noun( 'mufti', '-', mass, _ ). +noun( 'mug', 'mugs', count, _ ). +noun( 'mugger', 'muggers', count, _ ). +noun( 'mugginess', '-', mass, _ ). +noun( 'mugging', 'muggings', both, _ ). +noun( 'muggins', 'mugginses', count, _ ). +noun( 'mugwump', 'mugwumps', count, _ ). +noun( 'mulatto', 'mulattos', count, _ ). +noun( 'mulberry', 'mulberries', count, _ ). +noun( 'mulch', 'mulches', count, _ ). +noun( 'mule', 'mules', count, _ ). +noun( 'muleteer', 'muleteers', count, _ ). +noun( 'mulishness', '-', mass, _ ). +noun( 'mull', 'mulls', count, _ ). +noun( 'mullah', 'mullahs', count, _ ). +noun( 'mullein', 'mulleins', count, _ ). +noun( 'mullet', 'mullets', count, _ ). +noun( 'mulligatawny', '-', mass, _ ). +noun( 'mullion', 'mullions', count, _ ). +noun( 'multiple', 'multiples', count, _ ). +noun( 'multiplication', 'multiplications', both, _ ). +noun( 'multiplicity', '-', mass, _ ). +noun( 'multitude', 'multitudes', both, _ ). +noun( 'multum in parvo', '-', mass, _ ). +noun( 'mum', 'mums', count, _ ). +noun( 'mumbo-jumbo', '-', mass, _ ). +noun( 'mummer', 'mummers', count, _ ). +noun( 'mummery', 'mummeries', both, _ ). +noun( 'mummification', 'mummifications', both, _ ). +noun( 'mummy', 'mummies', count, _ ). +noun( 'mumps', 'mumps', mass, _ ). +noun( 'municipality', 'municipalities', count, _ ). +noun( 'munificence', '-', mass, _ ). +noun( 'munition', 'munitions', count, _ ). +noun( 'mural', 'murals', count, _ ). +noun( 'murder', 'murders', both, _ ). +noun( 'murderer', 'murderers', count, _ ). +noun( 'murderess', 'murderesses', count, _ ). +noun( 'murk', '-', mass, _ ). +noun( 'murmur', 'murmurs', count, _ ). +noun( 'murphy', 'murphies', count, _ ). +noun( 'murrain', '-', mass, _ ). +noun( 'muscatel', '-', mass, _ ). +noun( 'muscle', 'muscles', both, _ ). +noun( 'muscleman', 'musclemen', count, _ ). +noun( 'muse', 'muses', count, _ ). +noun( 'museum', 'museums', count, _ ). +noun( 'mush', '-', mass, _ ). +noun( 'mushroom', 'mushrooms', count, _ ). +noun( 'music', '-', mass, _ ). +noun( 'music-box', 'music-boxes', count, _ ). +noun( 'music-hall', 'music-halls', count, _ ). +noun( 'music-stand', 'music-stands', count, _ ). +noun( 'music-stool', 'music-stools', count, _ ). +noun( 'musical', 'musicals', count, _ ). +noun( 'musical-box', 'musical-boxes', count, _ ). +noun( 'musician', 'musicians', count, _ ). +noun( 'musicianship', '-', mass, _ ). +noun( 'musk', '-', mass, _ ). +noun( 'musk-deer', 'musk-deer', count, _ ). +noun( 'musk-rose', 'musk-roses', count, _ ). +noun( 'musket', 'muskets', count, _ ). +noun( 'musketeer', 'musketeers', count, _ ). +noun( 'musketry', '-', mass, _ ). +noun( 'muskrat', 'muskrats', count, _ ). +noun( 'muslin', '-', mass, _ ). +noun( 'musquash', '-', mass, _ ). +noun( 'muss', 'musses', both, _ ). +noun( 'mussel', 'mussels', count, _ ). +noun( 'must', 'musts', both, _ ). +noun( 'mustachio', 'mustachios', count, _ ). +noun( 'mustang', 'mustangs', count, _ ). +noun( 'mustard', '-', mass, _ ). +noun( 'muster', 'musters', count, _ ). +noun( 'mustiness', '-', mass, _ ). +noun( 'mutability', '-', mass, _ ). +noun( 'mutation', 'mutations', both, _ ). +noun( 'mute', 'mutes', count, _ ). +noun( 'mutilation', 'mutilations', both, _ ). +noun( 'mutineer', 'mutineers', count, _ ). +noun( 'mutiny', 'mutinies', both, _ ). +noun( 'mutt', 'mutts', count, _ ). +noun( 'mutter', 'mutters', count, _ ). +noun( 'mutterer', 'mutterers', count, _ ). +noun( 'mutton', '-', mass, _ ). +noun( 'mutton-head', 'mutton-heads', count, _ ). +noun( 'muzzle', 'muzzles', count, _ ). +noun( 'muzzle-velocity', 'muzzle-velocities', count, _ ). +noun( 'mycology', '-', mass, _ ). +noun( 'myelitis', '-', mass, _ ). +noun( 'myna', 'mynas', count, _ ). +noun( 'mynah', 'mynahs', count, _ ). +noun( 'myopia', '-', mass, _ ). +noun( 'myriad', 'myriads', count, _ ). +noun( 'myrmidon', 'myrmidons', count, _ ). +noun( 'myrrh', '-', mass, _ ). +noun( 'myrtle', 'myrtles', count, _ ). +noun( 'mystery', 'mysteries', both, _ ). +noun( 'mystic', 'mystics', count, _ ). +noun( 'mysticism', '-', mass, _ ). +noun( 'mystification', 'mystifications', both, _ ). +noun( 'mystique', 'mystiques', count, _ ). +noun( 'myth', 'myths', both, _ ). +noun( 'mythologist', 'mythologists', count, _ ). +noun( 'mythology', 'mythologies', both, _ ). +noun( 'myxomatosis', '-', mass, _ ). +noun( 'n', '-', count, _ ). +noun( 'n_eglig_e', 'n_eglig_es', both, _ ). +noun( 'nabob', 'nabobs', count, _ ). +noun( 'nacelle', 'nacelles', count, _ ). +noun( 'nacre', '-', mass, _ ). +noun( 'nadir', 'nadirs', count, _ ). +noun( 'nag', 'nags', count, _ ). +noun( 'nagger', 'naggers', count, _ ). +noun( 'naiad', 'naiads', count, _ ). +noun( 'nail', 'nails', count, _ ). +noun( 'nail-polish', 'nail-polishes', both, _ ). +noun( 'nail-varnish', 'nail-varnishes', both, _ ). +noun( 'nailbrush', 'nailbrushes', count, _ ). +noun( 'nailfile', 'nailfiles', count, _ ). +noun( 'nainsook', '-', mass, _ ). +noun( 'naira', 'nairas', count, _ ). +noun( 'naivet_e', 'naivet_es', both, _ ). +noun( 'naivety', 'naiveties', both, _ ). +noun( 'nakedness', '-', mass, _ ). +noun( 'namby-pamby', 'namby-pambies', count, _ ). +noun( 'name', 'names', count, _ ). +noun( 'name-day', 'name-days', count, _ ). +noun( 'name-dropping', '-', mass, _ ). +noun( 'name-part', 'name-parts', count, _ ). +noun( 'nameplate', 'nameplates', count, _ ). +noun( 'namesake', 'namesakes', count, _ ). +noun( 'nankeen', '-', mass, _ ). +noun( 'nanny', 'nannies', count, _ ). +noun( 'nanny-goat', 'nanny-goats', count, _ ). +noun( 'nap', 'naps', both, _ ). +noun( 'napalm', '-', mass, _ ). +noun( 'nape', 'napes', count, _ ). +noun( 'napery', '-', mass, _ ). +noun( 'naphtha', '-', mass, _ ). +noun( 'naphthalene', '-', mass, _ ). +noun( 'napkin', 'napkins', count, _ ). +noun( 'napkin-ring', 'napkin-rings', count, _ ). +noun( 'nappy', 'nappies', count, _ ). +noun( 'narcissism', '-', mass, _ ). +noun( 'narcissus', 'narcissuses', count, _ ). +noun( 'narcotic', 'narcotics', count, _ ). +noun( 'nark', 'narks', count, _ ). +noun( 'narration', 'narrations', both, _ ). +noun( 'narrative', 'narratives', both, _ ). +noun( 'narrator', 'narrators', count, _ ). +noun( 'narrow', 'narrows', count, _ ). +noun( 'narrow-mindedness', '-', mass, _ ). +noun( 'narrowness', '-', mass, _ ). +noun( 'narwhal', 'narwhals', count, _ ). +noun( 'nasal', 'nasals', count, _ ). +noun( 'nastiness', '-', mass, _ ). +noun( 'nasturtium', 'nasturtiums', count, _ ). +noun( 'nation', 'nations', count, _ ). +noun( 'national', 'nationals', count, _ ). +noun( 'nationalism', '-', mass, _ ). +noun( 'nationalist', 'nationalists', count, _ ). +noun( 'nationality', 'nationalities', both, _ ). +noun( 'nationalization', 'nationalizations', both, _ ). +noun( 'native', 'natives', count, _ ). +noun( 'nativity', 'nativities', count, _ ). +noun( 'natural', 'naturals', count, _ ). +noun( 'naturalism', '-', mass, _ ). +noun( 'naturalist', 'naturalists', count, _ ). +noun( 'naturalization', '-', mass, _ ). +noun( 'naturalness', '-', mass, _ ). +noun( 'nature', 'natures', both, _ ). +noun( 'naturism', '-', mass, _ ). +noun( 'naturist', 'naturists', count, _ ). +noun( 'naught', 'naughts', both, _ ). +noun( 'naughtiness', '-', mass, _ ). +noun( 'nausea', '-', mass, _ ). +noun( 'nautch', 'nautches', count, _ ). +noun( 'nautch-girl', 'nautch-girls', count, _ ). +noun( 'nautilus', 'nautiluses', count, _ ). +noun( 'nave', 'naves', count, _ ). +noun( 'navel', 'navels', count, _ ). +noun( 'navigability', '-', mass, _ ). +noun( 'navigation', '-', mass, _ ). +noun( 'navigator', 'navigators', count, _ ). +noun( 'navvy', 'navvies', count, _ ). +noun( 'navy', 'navies', count, _ ). +noun( 'ne plus ultra', '-', count, _ ). +noun( 'ne\'er-do-well', 'ne\'er-do-wells', count, _ ). +noun( 'neap', 'neaps', count, _ ). +noun( 'neap-tide', 'neap-tides', count, _ ). +noun( 'nearness', '-', mass, _ ). +noun( 'nearside', 'nearsides', count, _ ). +noun( 'neatness', '-', mass, _ ). +noun( 'nebula', 'nebulas', count, _ ). +noun( 'necessary', 'necessaries', count, _ ). +noun( 'necessity', 'necessities', both, _ ). +noun( 'neck', 'necks', count, _ ). +noun( 'neckband', 'neckbands', count, _ ). +noun( 'neckcloth', 'neckcloths', count, _ ). +noun( 'neckerchief', 'neckerchiefs', count, _ ). +noun( 'necklace', 'necklaces', count, _ ). +noun( 'necklet', 'necklets', count, _ ). +noun( 'neckline', 'necklines', count, _ ). +noun( 'necktie', 'neckties', count, _ ). +noun( 'neckwear', '-', mass, _ ). +noun( 'necromancer', 'necromancers', count, _ ). +noun( 'necromancy', '-', mass, _ ). +noun( 'necropolis', 'necropolises', count, _ ). +noun( 'nectar', '-', mass, _ ). +noun( 'nectarine', 'nectarines', count, _ ). +noun( 'need', 'needs', both, _ ). +noun( 'needle', 'needles', count, _ ). +noun( 'needlecraft', '-', mass, _ ). +noun( 'needlewoman', 'needlewomen', count, _ ). +noun( 'needlework', '-', mass, _ ). +noun( 'nefariousness', '-', mass, _ ). +noun( 'negation', '-', mass, _ ). +noun( 'negative', 'negatives', count, _ ). +noun( 'neglect', '-', mass, _ ). +noun( 'neglectfulness', '-', mass, _ ). +noun( 'negligee', 'negligees', both, _ ). +noun( 'negligence', '-', mass, _ ). +noun( 'negotiation', 'negotiations', both, _ ). +noun( 'negotiator', 'negotiators', count, _ ). +noun( 'negus', '-', mass, _ ). +noun( 'neigh', 'neighs', count, _ ). +noun( 'neighbour', 'neighbours', count, _ ). +noun( 'neighbourhood', 'neighbourhoods', count, _ ). +noun( 'neighbourliness', '-', mass, _ ). +noun( 'nemesis', 'nemeses', count, _ ). +noun( 'neocolonialism', '-', mass, _ ). +noun( 'neologism', 'neologisms', both, _ ). +noun( 'neon', '-', mass, _ ). +noun( 'neophyte', 'neophytes', count, _ ). +noun( 'neoplasm', 'neoplasms', count, _ ). +noun( 'nephew', 'nephews', count, _ ). +noun( 'nephritis', '-', mass, _ ). +noun( 'nepotism', '-', mass, _ ). +noun( 'nereid', 'nereids', count, _ ). +noun( 'nerve', 'nerves', both, _ ). +noun( 'nerve-cell', 'nerve-cells', count, _ ). +noun( 'nerve-centre', 'nerve-centres', count, _ ). +noun( 'nervousness', '-', mass, _ ). +noun( 'nescience', '-', mass, _ ). +noun( 'ness', 'nesses', count, _ ). +noun( 'nest', 'nests', count, _ ). +noun( 'nest-egg', 'nest-eggs', count, _ ). +noun( 'nestling', 'nestlings', count, _ ). +noun( 'net', 'nets', both, _ ). +noun( 'netball', '-', mass, _ ). +noun( 'netting', '-', mass, _ ). +noun( 'nettle', 'nettles', count, _ ). +noun( 'nettlerash', '-', mass, _ ). +noun( 'network', 'networks', count, _ ). +noun( 'neuralgia', '-', mass, _ ). +noun( 'neurasthenia', '-', mass, _ ). +noun( 'neurasthenic', 'neurasthenics', count, _ ). +noun( 'neuritis', '-', mass, _ ). +noun( 'neurologist', 'neurologists', count, _ ). +noun( 'neurology', '-', mass, _ ). +noun( 'neurosis', 'neuroses', count, _ ). +noun( 'neurotic', 'neurotics', count, _ ). +noun( 'neuter', 'neuters', count, _ ). +noun( 'neutral', 'neutrals', count, _ ). +noun( 'neutrality', '-', mass, _ ). +noun( 'neutralization', 'neutralizations', both, _ ). +noun( 'neutron', 'neutrons', count, _ ). +noun( 'newcomer', 'newcomers', count, _ ). +noun( 'newel', 'newels', count, _ ). +noun( 'newlywed', 'newlyweds', count, _ ). +noun( 'newness', '-', mass, _ ). +noun( 'news', '-', mass, _ ). +noun( 'newsagent', 'newsagents', count, _ ). +noun( 'newsboy', 'newsboys', count, _ ). +noun( 'newscast', 'newscasts', count, _ ). +noun( 'newscaster', 'newscasters', count, _ ). +noun( 'newsdealer', 'newsdealers', count, _ ). +noun( 'newsflash', 'newsflashes', count, _ ). +noun( 'newsletter', 'newsletters', count, _ ). +noun( 'newsmonger', 'newsmongers', count, _ ). +noun( 'newspaper', 'newspapers', count, _ ). +noun( 'newspaperman', 'newspapermen', count, _ ). +noun( 'newsprint', '-', mass, _ ). +noun( 'newsreel', 'newsreels', count, _ ). +noun( 'newsroom', 'newsrooms', count, _ ). +noun( 'newssheet', 'newssheets', count, _ ). +noun( 'newsstand', 'newsstands', count, _ ). +noun( 'newsvendor', 'newsvendors', count, _ ). +noun( 'newt', 'newts', count, _ ). +noun( 'next', 'next', count, _ ). +noun( 'nexus', 'nexuses', count, _ ). +noun( 'nib', 'nibs', count, _ ). +noun( 'nibble', 'nibbles', count, _ ). +noun( 'niceness', '-', mass, _ ). +noun( 'nicety', 'niceties', both, _ ). +noun( 'niche', 'niches', count, _ ). +noun( 'nick', 'nicks', count, _ ). +noun( 'nickel', 'nickels', both, _ ). +noun( 'nicknack', 'nicknacks', count, _ ). +noun( 'nickname', 'nicknames', count, _ ). +noun( 'nicotine', '-', mass, _ ). +noun( 'niece', 'nieces', count, _ ). +noun( 'niff', 'niffs', count, _ ). +noun( 'niggard', 'niggards', count, _ ). +noun( 'niggardliness', '-', mass, _ ). +noun( 'nigger', 'niggers', count, _ ). +noun( 'night', 'nights', both, _ ). +noun( 'night-bell', 'night-bells', count, _ ). +noun( 'night-bird', 'night-birds', count, _ ). +noun( 'night-light', 'night-lights', count, _ ). +noun( 'night-line', 'night-lines', count, _ ). +noun( 'night-porter', 'night-porters', count, _ ). +noun( 'night-soil', '-', mass, _ ). +noun( 'night-stop', 'night-stops', count, _ ). +noun( 'night-time', '-', mass, _ ). +noun( 'night-watch', 'night-watches', count, _ ). +noun( 'night-watchman', 'night-watchmen', count, _ ). +noun( 'nightcap', 'nightcaps', count, _ ). +noun( 'nightclub', 'nightclubs', count, _ ). +noun( 'nightdress', 'nightdresses', count, _ ). +noun( 'nightfall', '-', mass, _ ). +noun( 'nightgown', 'nightgowns', count, _ ). +noun( 'nightie', 'nighties', count, _ ). +noun( 'nightingale', 'nightingales', count, _ ). +noun( 'nightjar', 'nightjars', count, _ ). +noun( 'nightmare', 'nightmares', count, _ ). +noun( 'nightshade', '-', mass, _ ). +noun( 'nightshirt', 'nightshirts', count, _ ). +noun( 'nightwork', '-', mass, _ ). +noun( 'nihilism', '-', mass, _ ). +noun( 'nihilist', 'nihilists', count, _ ). +noun( 'nil', '-', mass, _ ). +noun( 'nimbleness', '-', mass, _ ). +noun( 'nimbus', 'nimbuses', count, _ ). +noun( 'nincompoop', 'nincompoops', count, _ ). +noun( 'nine', 'nines', count, _ ). +noun( 'ninepence', 'ninepences', count, _ ). +noun( 'ninepins', 'ninepins', mass, _ ). +noun( 'nineteen', 'nineteens', count, _ ). +noun( 'nineteenth', 'nineteenths', count, _ ). +noun( 'ninetieth', 'ninetieths', count, _ ). +noun( 'ninety', 'nineties', count, _ ). +noun( 'ninny', 'ninnies', count, _ ). +noun( 'ninth', 'ninths', count, _ ). +noun( 'nip', 'nips', count, _ ). +noun( 'nipper', 'nippers', count, _ ). +noun( 'nipple', 'nipples', count, _ ). +noun( 'nirvana', 'nirvanas', count, _ ). +noun( 'nit', 'nits', count, _ ). +noun( 'nitrate', 'nitrates', count, _ ). +noun( 'nitre', '-', mass, _ ). +noun( 'nitrochalk', '-', mass, _ ). +noun( 'nitrogen', '-', mass, _ ). +noun( 'nitroglycerin', '-', mass, _ ). +noun( 'nitroglycerine', '-', mass, _ ). +noun( 'nitty-gritty', '-', mass, _ ). +noun( 'nitwit', 'nitwits', count, _ ). +noun( 'nix', '-', mass, _ ). +noun( 'no', '-', count, _ ). +noun( 'no', 'nos', count, _ ). +noun( 'no-ball', 'no-balls', count, _ ). +noun( 'no-man\'s-land', '-', count, _ ). +noun( 'nob', 'nobs', count, _ ). +noun( 'nobility', '-', mass, _ ). +noun( 'noble', 'nobles', count, _ ). +noun( 'noble-mindedness', '-', mass, _ ). +noun( 'nobleman', 'noblemen', count, _ ). +noun( 'noblesse', '-', count, _ ). +noun( 'noblesse oblige', '-', mass, _ ). +noun( 'nobody', 'nobodies', count, _ ). +noun( 'noctambulist', 'noctambulists', count, _ ). +noun( 'nocturne', 'nocturnes', count, _ ). +noun( 'nod', 'nods', count, _ ). +noun( 'noddle', 'noddles', count, _ ). +noun( 'node', 'nodes', count, _ ). +noun( 'nodule', 'nodules', count, _ ). +noun( 'noggin', 'noggins', count, _ ). +noun( 'noise', 'noises', both, _ ). +noun( 'noiselessness', '-', mass, _ ). +noun( 'noisiness', '-', mass, _ ). +noun( 'nom de plume', 'noms de plume', count, _ ). +noun( 'nomad', 'nomads', count, _ ). +noun( 'nomenclature', 'nomenclatures', count, _ ). +noun( 'nomination', 'nominations', both, _ ). +noun( 'nominative', 'nominatives', count, _ ). +noun( 'nominee', 'nominees', count, _ ). +noun( 'non sequitur', 'non sequiturs', count, _ ). +noun( 'non-compliance', '-', mass, _ ). +noun( 'non-interference', '-', mass, _ ). +noun( 'nonage', '-', mass, _ ). +noun( 'nonagenarian', 'nonagenarians', count, _ ). +noun( 'nonaggression', '-', mass, _ ). +noun( 'nonalignment', '-', mass, _ ). +noun( 'nonce', 'nonces', count, _ ). +noun( 'nonce-word', 'nonce-words', count, _ ). +noun( 'nonchalance', '-', mass, _ ). +noun( 'noncombatant', 'noncombatants', count, _ ). +noun( 'nonconductor', 'nonconductors', count, _ ). +noun( 'nonconformist', 'nonconformists', count, _ ). +noun( 'nonconformity', '-', mass, _ ). +noun( 'nondescript', 'nondescripts', count, _ ). +noun( 'nonentity', 'nonentities', count, _ ). +noun( 'nonesuch', '-', count, _ ). +noun( 'nonevent', 'nonevents', count, _ ). +noun( 'nonfiction', '-', mass, _ ). +noun( 'nonintervention', '-', mass, _ ). +noun( 'nonobservance', '-', mass, _ ). +noun( 'nonpareil', 'nonpareils', count, _ ). +noun( 'nonpayment', 'nonpayments', both, _ ). +noun( 'nonsense', 'nonsenses', both, _ ). +noun( 'nonsmoker', 'nonsmokers', count, _ ). +noun( 'nonstarter', 'nonstarters', count, _ ). +noun( 'nonsuch', '-', count, _ ). +noun( 'nonviolence', '-', mass, _ ). +noun( 'noodle', 'noodles', count, _ ). +noun( 'nook', 'nooks', count, _ ). +noun( 'noon', '-', mass, _ ). +noun( 'noontide', '-', mass, _ ). +noun( 'noose', 'nooses', count, _ ). +noun( 'nor\'-east', '-', mass, _ ). +noun( 'nor\'-nor\'-east', '-', mass, _ ). +noun( 'nor\'-nor\'-west', '-', mass, _ ). +noun( 'nor\'-west', '-', mass, _ ). +noun( 'norm', 'norms', count, _ ). +noun( 'normal', '-', mass, _ ). +noun( 'normalcy', '-', mass, _ ). +noun( 'normality', '-', mass, _ ). +noun( 'normalization', 'normalizations', both, _ ). +noun( 'north', '-', mass, _ ). +noun( 'north-northeast', '-', mass, _ ). +noun( 'north-northwest', '-', mass, _ ). +noun( 'northeast', '-', mass, _ ). +noun( 'northeaster', 'northeasters', count, _ ). +noun( 'northerner', 'northerners', count, _ ). +noun( 'northwest', '-', mass, _ ). +noun( 'northwester', 'northwesters', count, _ ). +noun( '-', 'nos', count, _ ). +noun( 'nose', 'noses', count, _ ). +noun( 'nose-flute', 'nose-flutes', count, _ ). +noun( 'nose-wheel', 'nose-wheels', count, _ ). +noun( 'nosebag', 'nosebags', count, _ ). +noun( 'nosebleed', 'nosebleeds', count, _ ). +noun( 'nosecone', 'nosecones', count, _ ). +noun( 'nosedive', 'nosedives', count, _ ). +noun( 'nosegay', 'nosegays', count, _ ). +noun( 'nosering', 'noserings', count, _ ). +noun( 'nosh', '-', mass, _ ). +noun( 'nosh-up', 'nosh-ups', count, _ ). +noun( 'nostalgia', '-', mass, _ ). +noun( 'nostril', 'nostrils', count, _ ). +noun( 'nostrum', 'nostrums', count, _ ). +noun( 'notability', 'notabilities', both, _ ). +noun( 'notable', 'notables', count, _ ). +noun( 'notary', 'notaries', count, _ ). +noun( 'notation', 'notations', both, _ ). +noun( 'notch', 'notches', count, _ ). +noun( 'note', 'notes', both, _ ). +noun( 'notebook', 'notebooks', count, _ ). +noun( 'notecase', 'notecases', count, _ ). +noun( 'notepaper', '-', mass, _ ). +noun( 'nothing', 'nothings', count, _ ). +noun( 'nothingness', '-', mass, _ ). +noun( 'notice', 'notices', both, _ ). +noun( 'notice-board', 'notice-boards', count, _ ). +noun( 'notification', 'notifications', both, _ ). +noun( 'notion', 'notions', count, _ ). +noun( 'notoriety', '-', mass, _ ). +noun( 'nougat', 'nougats', both, _ ). +noun( 'nought', 'noughts', count, _ ). +noun( 'noun', 'nouns', count, _ ). +noun( 'nourishment', '-', mass, _ ). +noun( 'nous', '-', mass, _ ). +noun( 'nouveau riche', 'nouveaux riches', count, _ ). +noun( 'nova', 'novas', count, _ ). +noun( 'novel', 'novels', count, _ ). +noun( 'novelette', 'novelettes', count, _ ). +noun( 'novelist', 'novelists', count, _ ). +noun( 'novelty', 'novelties', both, _ ). +noun( 'novice', 'novices', count, _ ). +noun( 'noviciate', 'noviciates', count, _ ). +noun( 'novitiate', 'novitiates', count, _ ). +noun( 'noxiousness', '-', mass, _ ). +noun( 'nozzle', 'nozzles', count, _ ). +noun( 'nr', '-', proper, _ ). +noun( 'nuance', 'nuances', count, _ ). +noun( 'nub', 'nubs', count, _ ). +noun( 'nucleus', 'nuclei', count, _ ). +noun( 'nude', 'nudes', count, _ ). +noun( 'nudge', 'nudges', count, _ ). +noun( 'nudism', '-', mass, _ ). +noun( 'nudist', 'nudists', count, _ ). +noun( 'nudity', '-', mass, _ ). +noun( 'nugget', 'nuggets', count, _ ). +noun( 'nuisance', 'nuisances', count, _ ). +noun( 'nullification', '-', mass, _ ). +noun( 'nullity', '-', mass, _ ). +noun( 'number', 'numbers', count, _ ). +noun( 'numberplate', 'numberplates', count, _ ). +noun( 'numbness', '-', mass, _ ). +noun( 'numeracy', '-', mass, _ ). +noun( 'numeral', 'numerals', count, _ ). +noun( 'numeration', 'numerations', both, _ ). +noun( 'numerator', 'numerators', count, _ ). +noun( 'numismatics', 'numismatics', mass, _ ). +noun( 'numismatist', 'numismatists', count, _ ). +noun( 'numskull', 'numskulls', count, _ ). +noun( 'nun', 'nuns', count, _ ). +noun( 'nuncio', 'nuncios', count, _ ). +noun( 'nunnery', 'nunneries', count, _ ). +noun( 'nurse', 'nurses', both, _ ). +noun( 'nurseling', 'nurselings', count, _ ). +noun( 'nursemaid', 'nursemaids', count, _ ). +noun( 'nursery', 'nurseries', count, _ ). +noun( 'nurseryman', 'nurserymen', count, _ ). +noun( 'nursing-home', 'nursing-homes', count, _ ). +noun( 'nursling', 'nurslings', count, _ ). +noun( 'nurture', '-', mass, _ ). +noun( 'nut', 'nuts', count, _ ). +noun( 'nut-butter', 'nut-butters', both, _ ). +noun( 'nuthouse', 'nuthouses', count, _ ). +noun( 'nutmeg', 'nutmegs', both, _ ). +noun( 'nutria', '-', mass, _ ). +noun( 'nutrient', 'nutrients', count, _ ). +noun( 'nutriment', 'nutriments', count, _ ). +noun( 'nutrition', '-', mass, _ ). +noun( 'nutshell', 'nutshells', count, _ ). +noun( 'nylon', 'nylons', both, _ ). +noun( 'nymph', 'nymphs', count, _ ). +noun( 'nymphet', 'nymphets', count, _ ). +noun( 'nympho', 'nymphos', count, _ ). +noun( 'nymphomania', '-', mass, _ ). +noun( 'nymphomaniac', 'nymphomaniacs', count, _ ). +noun( 'o', '-', count, _ ). +noun( 'oaf', 'oafs', count, _ ). +noun( 'oak', 'oaks', both, _ ). +noun( 'oak-apple', 'oak-apples', count, _ ). +noun( 'oakum', '-', mass, _ ). +noun( 'oar', 'oars', count, _ ). +noun( 'oarsman', 'oarsmen', count, _ ). +noun( 'oarsmanship', '-', mass, _ ). +noun( 'oarswoman', 'oarswomen', count, _ ). +noun( 'oasis', 'oases', count, _ ). +noun( 'oast', 'oasts', count, _ ). +noun( 'oasthouse', 'oasthouses', count, _ ). +noun( 'oat', 'oats', count, _ ). +noun( 'oatcake', 'oatcakes', count, _ ). +noun( 'oath', 'oaths', count, _ ). +noun( 'oatmeal', '-', mass, _ ). +noun( 'ob', '-', proper, _ ). +noun( 'obbligato', 'obbligatos', count, _ ). +noun( 'obduracy', '-', mass, _ ). +noun( 'obedience', '-', mass, _ ). +noun( 'obeisance', 'obeisances', both, _ ). +noun( 'obelisk', 'obelisks', count, _ ). +noun( 'obesity', '-', mass, _ ). +noun( 'obi', 'obis', count, _ ). +noun( 'obiter dictum', '-', count, _ ). +noun( 'obituary', 'obituaries', count, _ ). +noun( 'object', 'objects', count, _ ). +noun( 'objection', 'objections', both, _ ). +noun( 'objective', 'objectives', count, _ ). +noun( 'objectivity', '-', mass, _ ). +noun( 'objector', 'objectors', count, _ ). +noun( 'objurgation', 'objurgations', both, _ ). +noun( 'oblation', 'oblations', count, _ ). +noun( 'obligation', 'obligations', count, _ ). +noun( 'obliquity', 'obliquities', both, _ ). +noun( 'obliteration', '-', mass, _ ). +noun( 'oblivion', '-', mass, _ ). +noun( 'oblong', 'oblongs', count, _ ). +noun( 'obloquy', '-', mass, _ ). +noun( 'obnoxiousness', '-', mass, _ ). +noun( 'oboe', 'oboes', count, _ ). +noun( 'oboist', 'oboists', count, _ ). +noun( 'obscenity', 'obscenities', both, _ ). +noun( 'obscurantism', '-', mass, _ ). +noun( 'obscurantist', 'obscurantists', count, _ ). +noun( 'obscurity', 'obscurities', both, _ ). +noun( 'obsequiousness', '-', mass, _ ). +noun( 'observance', 'observances', both, _ ). +noun( 'observation', 'observations', both, _ ). +noun( 'observatory', 'observatories', count, _ ). +noun( 'observer', 'observers', count, _ ). +noun( 'obsession', 'obsessions', both, _ ). +noun( 'obsidian', '-', mass, _ ). +noun( 'obsolescence', '-', mass, _ ). +noun( 'obstacle', 'obstacles', count, _ ). +noun( 'obstetrician', 'obstetricians', count, _ ). +noun( 'obstetrics', 'obstetrics', mass, _ ). +noun( 'obstinacy', '-', mass, _ ). +noun( 'obstreperousness', '-', mass, _ ). +noun( 'obstruction', 'obstructions', both, _ ). +noun( 'obstructionism', '-', mass, _ ). +noun( 'obstructionist', 'obstructionists', count, _ ). +noun( 'obtuseness', '-', mass, _ ). +noun( 'obverse', 'obverses', count, _ ). +noun( 'obviousness', '-', mass, _ ). +noun( 'ocarina', 'ocarinas', count, _ ). +noun( 'occasion', 'occasions', both, _ ). +noun( 'occult', '-', count, _ ). +noun( 'occupancy', 'occupancies', count, _ ). +noun( 'occupant', 'occupants', count, _ ). +noun( 'occupation', 'occupations', both, _ ). +noun( 'occupier', 'occupiers', count, _ ). +noun( 'occurrence', 'occurrences', both, _ ). +noun( 'ocean', 'oceans', count, _ ). +noun( 'ochre', '-', mass, _ ). +noun( 'octagon', 'octagons', count, _ ). +noun( 'octane', '-', mass, _ ). +noun( 'octave', 'octaves', count, _ ). +noun( 'octavo', 'octavos', count, _ ). +noun( 'octet', 'octets', count, _ ). +noun( 'octette', 'octettes', count, _ ). +noun( 'octogenarian', 'octogenarians', count, _ ). +noun( 'octopus', 'octopuses', count, _ ). +noun( 'octroi', 'octrois', count, _ ). +noun( 'oculist', 'oculists', count, _ ). +noun( 'odalisque', 'odalisques', count, _ ). +noun( 'oddity', 'oddities', both, _ ). +noun( 'oddment', 'oddments', count, _ ). +noun( 'ode', 'odes', count, _ ). +noun( 'odium', '-', mass, _ ). +noun( 'odour', 'odours', both, _ ). +noun( 'odyssey', 'odysseys', count, _ ). +noun( 'oesophagus', 'oesophaguses', count, _ ). +noun( 'off-day', 'off-days', count, _ ). +noun( 'off-licence', 'off-licences', count, _ ). +noun( 'offal', '-', mass, _ ). +noun( 'offence', 'offences', both, _ ). +noun( 'offender', 'offenders', count, _ ). +noun( 'offensive', 'offensives', count, _ ). +noun( 'offensiveness', '-', mass, _ ). +noun( 'offer', 'offers', count, _ ). +noun( 'offering', 'offerings', both, _ ). +noun( 'offertory', 'offertories', count, _ ). +noun( 'office', 'offices', count, _ ). +noun( 'office-bearer', 'office-bearers', count, _ ). +noun( 'office-block', 'office-blocks', count, _ ). +noun( 'office-boy', 'office-boys', count, _ ). +noun( 'office-holder', 'office-holders', count, _ ). +noun( 'officer', 'officers', count, _ ). +noun( 'official', 'officials', count, _ ). +noun( 'officialdom', 'officialdoms', count, _ ). +noun( 'officialese', '-', mass, _ ). +noun( 'officiousness', '-', mass, _ ). +noun( 'offing', '-', count, _ ). +noun( 'offprint', 'offprints', count, _ ). +noun( 'offset', '-', mass, _ ). +noun( 'offshoot', 'offshoots', count, _ ). +noun( 'offspring', 'offspring', count, _ ). +noun( 'ogre', 'ogres', count, _ ). +noun( 'ogress', 'ogresses', count, _ ). +noun( 'ohm', 'ohms', count, _ ). +noun( 'oil', 'oils', both, _ ). +noun( 'oil-burner', 'oil-burners', count, _ ). +noun( 'oil-cake', '-', mass, _ ). +noun( 'oil-painting', 'oil-paintings', both, _ ). +noun( 'oil-palm', 'oil-palms', count, _ ). +noun( 'oil-paper', '-', mass, _ ). +noun( 'oil-rig', 'oil-rigs', count, _ ). +noun( 'oil-silk', '-', mass, _ ). +noun( 'oil-slick', 'oil-slicks', count, _ ). +noun( 'oil-tanker', 'oil-tankers', count, _ ). +noun( 'oil-well', 'oil-wells', count, _ ). +noun( 'oilcan', 'oilcans', count, _ ). +noun( 'oilcloth', '-', mass, _ ). +noun( 'oiler', 'oilers', count, _ ). +noun( 'oilfield', 'oilfields', count, _ ). +noun( 'oiliness', '-', mass, _ ). +noun( 'oilskin', 'oilskins', both, _ ). +noun( 'ointment', 'ointments', both, _ ). +noun( 'okapi', 'okapis', count, _ ). +noun( 'okay', '-', count, _ ). +noun( 'okra', '-', mass, _ ). +noun( 'old', '-', mass, _ ). +noun( 'old-timer', 'old-timers', count, _ ). +noun( 'oldster', 'oldsters', count, _ ). +noun( 'oleander', 'oleanders', count, _ ). +noun( 'oligarch', 'oligarchs', count, _ ). +noun( 'oligarchy', 'oligarchies', both, _ ). +noun( 'olive', 'olives', count, _ ). +noun( 'olive-tree', 'olive-trees', count, _ ). +noun( 'ombudsman', 'ombudsmen', count, _ ). +noun( 'omega', 'omegas', count, _ ). +noun( 'omelet', 'omelets', count, _ ). +noun( 'omelette', 'omelettes', count, _ ). +noun( 'omen', 'omens', both, _ ). +noun( 'omission', 'omissions', both, _ ). +noun( 'omnibus', 'omnibuses', count, _ ). +noun( 'omnipotence', '-', mass, _ ). +noun( 'omniscience', '-', mass, _ ). +noun( 'on-licence', 'on-licences', count, _ ). +noun( 'oncoming', '-', count, _ ). +noun( 'one', 'ones', count, _ ). +noun( 'one-step', 'one-steps', count, _ ). +noun( 'one-upmanship', '-', mass, _ ). +noun( 'oneness', '-', mass, _ ). +noun( 'onion', 'onions', both, _ ). +noun( 'onlooker', 'onlookers', count, _ ). +noun( 'onomatopoeia', '-', mass, _ ). +noun( 'onrush', 'onrushes', count, _ ). +noun( 'onset', 'onsets', count, _ ). +noun( 'onslaught', 'onslaughts', count, _ ). +noun( 'ontology', 'ontologies', both, _ ). +noun( 'onus', 'onera', count, _ ). +noun( 'onyx', '-', mass, _ ). +noun( 'oomph', '-', mass, _ ). +noun( 'ooze', '-', mass, _ ). +noun( 'op', '-', proper, _ ). +noun( 'op art', '-', mass, _ ). +noun( 'op cit', '-', proper, _ ). +noun( 'opacity', '-', mass, _ ). +noun( 'opal', 'opals', count, _ ). +noun( 'opaqueness', '-', mass, _ ). +noun( 'open', '-', mass, _ ). +noun( 'opener', 'openers', count, _ ). +noun( 'opening', 'openings', count, _ ). +noun( 'openness', '-', mass, _ ). +noun( 'openwork', '-', mass, _ ). +noun( 'opera', 'operas', both, _ ). +noun( 'opera-cloak', 'opera-cloaks', count, _ ). +noun( 'opera-hat', 'opera-hats', count, _ ). +noun( 'opera-house', 'opera-houses', count, _ ). +noun( 'operating-table', 'operating-tables', count, _ ). +noun( 'operating-theatre', 'operating-theatres', count, _ ). +noun( 'operation', 'operations', both, _ ). +noun( 'operative', 'operatives', count, _ ). +noun( 'operator', 'operators', count, _ ). +noun( 'operetta', 'operettas', count, _ ). +noun( 'ophthalmia', '-', mass, _ ). +noun( 'ophthalmoscope', 'ophthalmoscopes', count, _ ). +noun( 'opiate', 'opiates', count, _ ). +noun( 'opinion', 'opinions', both, _ ). +noun( 'opium', '-', mass, _ ). +noun( 'opium-den', 'opium-dens', count, _ ). +noun( 'opossum', 'opossums', count, _ ). +noun( 'opp', '-', proper, _ ). +noun( 'opponent', 'opponents', count, _ ). +noun( 'opportunism', '-', mass, _ ). +noun( 'opportunist', 'opportunists', count, _ ). +noun( 'opportunity', 'opportunities', both, _ ). +noun( 'opposite', 'opposites', count, _ ). +noun( 'opposition', '-', mass, _ ). +noun( 'oppression', 'oppressions', both, _ ). +noun( 'oppressor', 'oppressors', count, _ ). +noun( 'opprobrium', '-', mass, _ ). +noun( 'optative', 'optatives', count, _ ). +noun( 'optician', 'opticians', count, _ ). +noun( 'optics', 'optics', mass, _ ). +noun( 'optimism', '-', mass, _ ). +noun( 'optimist', 'optimists', count, _ ). +noun( 'optimum', 'optimums', count, _ ). +noun( 'option', 'options', both, _ ). +noun( 'opulence', '-', mass, _ ). +noun( 'opus', 'opera', count, _ ). +noun( 'oracle', 'oracles', count, _ ). +noun( 'oral', 'orals', count, _ ). +noun( 'orang-outan', 'orang-outans', count, _ ). +noun( 'orang-outang', 'orang-outangs', count, _ ). +noun( 'orang-utan', 'orang-utans', count, _ ). +noun( 'orange', 'oranges', both, _ ). +noun( 'orangeade', '-', mass, _ ). +noun( 'oration', 'orations', count, _ ). +noun( 'orator', 'orators', count, _ ). +noun( 'oratorio', 'oratorios', both, _ ). +noun( 'oratory', 'oratories', both, _ ). +noun( 'orb', 'orbs', count, _ ). +noun( 'orbit', 'orbits', count, _ ). +noun( 'orchard', 'orchards', count, _ ). +noun( 'orchestra', 'orchestras', count, _ ). +noun( 'orchestration', 'orchestrations', count, _ ). +noun( 'orchid', 'orchids', count, _ ). +noun( 'orchis', 'orchises', count, _ ). +noun( 'ordeal', 'ordeals', count, _ ). +noun( 'order', 'orders', both, _ ). +noun( 'order-book', 'order-books', count, _ ). +noun( 'order-form', 'order-forms', count, _ ). +noun( 'order-paper', 'order-papers', count, _ ). +noun( 'ordering', 'orderings', count, _ ). +noun( 'orderliness', '-', mass, _ ). +noun( 'orderly', 'orderlies', count, _ ). +noun( 'ordinal', 'ordinals', count, _ ). +noun( 'ordinance', 'ordinances', count, _ ). +noun( 'ordinand', 'ordinands', count, _ ). +noun( 'ordination', 'ordinations', both, _ ). +noun( 'ordnance', '-', mass, _ ). +noun( 'ordure', '-', mass, _ ). +noun( 'ore', 'ores', both, _ ). +noun( 'organ', 'organs', count, _ ). +noun( 'organ-blower', 'organ-blowers', count, _ ). +noun( 'organ-grinder', 'organ-grinders', count, _ ). +noun( 'organ-loft', 'organ-lofts', count, _ ). +noun( 'organdie', '-', mass, _ ). +noun( 'organism', 'organisms', count, _ ). +noun( 'organist', 'organists', count, _ ). +noun( 'organization', 'organizations', both, _ ). +noun( 'organizer', 'organizers', count, _ ). +noun( 'orgasm', 'orgasms', count, _ ). +noun( 'orgy', 'orgies', count, _ ). +noun( 'oriel', 'oriels', count, _ ). +noun( 'orient', '-', count, _ ). +noun( 'oriental', 'orientals', count, _ ). +noun( 'orientalist', 'orientalists', count, _ ). +noun( 'orientation', '-', mass, _ ). +noun( 'orifice', 'orifices', count, _ ). +noun( 'origin', 'origins', both, _ ). +noun( 'original', 'originals', count, _ ). +noun( 'originality', '-', mass, _ ). +noun( 'originator', 'originators', count, _ ). +noun( 'oriole', 'orioles', count, _ ). +noun( 'orison', 'orisons', count, _ ). +noun( 'orlop', 'orlops', count, _ ). +noun( 'ormolu', 'ormolus', both, _ ). +noun( 'ornament', 'ornaments', both, _ ). +noun( 'ornamentation', '-', mass, _ ). +noun( 'ornateness', '-', mass, _ ). +noun( 'ornithologist', 'ornithologists', count, _ ). +noun( 'ornithology', '-', mass, _ ). +noun( 'orphan', 'orphans', count, _ ). +noun( 'orphanage', 'orphanages', count, _ ). +noun( 'orrisroot', '-', mass, _ ). +noun( 'orthodontics', 'orthodontics', mass, _ ). +noun( 'orthodontist', 'orthodontists', count, _ ). +noun( 'orthodoxy', 'orthodoxies', both, _ ). +noun( 'orthography', 'orthographies', both, _ ). +noun( 'orthopaedics', 'orthopaedics', mass, _ ). +noun( 'orthopedics', 'orthopedics', mass, _ ). +noun( 'ortolan', 'ortolans', count, _ ). +noun( 'oryx', 'oryxes', count, _ ). +noun( 'oscillation', 'oscillations', both, _ ). +noun( 'oscillator', 'oscillators', count, _ ). +noun( 'oscillograph', 'oscillographs', count, _ ). +noun( 'oscilloscope', 'oscilloscopes', count, _ ). +noun( 'osier', 'osiers', count, _ ). +noun( 'osprey', 'ospreys', count, _ ). +noun( 'ossification', '-', mass, _ ). +noun( 'ostentation', '-', mass, _ ). +noun( 'osteopath', 'osteopaths', count, _ ). +noun( 'osteopathy', '-', mass, _ ). +noun( 'ostler', 'ostlers', count, _ ). +noun( 'ostracism', '-', mass, _ ). +noun( 'ostrich', 'ostriches', count, _ ). +noun( 'other', 'others', count, _ ). +noun( 'otter', 'otters', both, _ ). +noun( 'ottoman', 'ottomans', count, _ ). +noun( 'oubliette', 'oubliettes', count, _ ). +noun( 'ouija', 'ouijas', count, _ ). +noun( 'ouija-board', 'ouija-boards', count, _ ). +noun( 'ounce', 'ounces', count, _ ). +noun( 'out-tray', 'out-trays', count, _ ). +noun( 'outback', '-', count, _ ). +noun( 'outbreak', 'outbreaks', count, _ ). +noun( 'outbuilding', 'outbuildings', count, _ ). +noun( 'outburst', 'outbursts', count, _ ). +noun( 'outcast', 'outcasts', count, _ ). +noun( 'outcaste', 'outcastes', count, _ ). +noun( 'outcome', 'outcomes', count, _ ). +noun( 'outcrop', 'outcrops', count, _ ). +noun( 'outcry', 'outcries', both, _ ). +noun( 'outfall', 'outfalls', count, _ ). +noun( 'outfield', 'outfields', count, _ ). +noun( 'outfielder', 'outfielders', count, _ ). +noun( 'outfit', 'outfits', count, _ ). +noun( 'outfitter', 'outfitters', count, _ ). +noun( 'outflow', 'outflows', count, _ ). +noun( 'outgo', 'outgoes', count, _ ). +noun( 'outgrowth', 'outgrowths', count, _ ). +noun( 'outhouse', 'outhouses', count, _ ). +noun( 'outing', 'outings', count, _ ). +noun( 'outlandishness', '-', mass, _ ). +noun( 'outlaw', 'outlaws', count, _ ). +noun( 'outlawry', '-', mass, _ ). +noun( 'outlay', 'outlays', both, _ ). +noun( 'outlet', 'outlets', count, _ ). +noun( 'outlier', 'outliers', count, _ ). +noun( 'outline', 'outlines', count, _ ). +noun( 'outlook', 'outlooks', count, _ ). +noun( 'outpatient', 'outpatients', count, _ ). +noun( 'outport', 'outports', count, _ ). +noun( 'outpost', 'outposts', count, _ ). +noun( 'outpouring', 'outpourings', count, _ ). +noun( 'output', '-', count, _ ). +noun( 'outrage', 'outrages', both, _ ). +noun( 'outrider', 'outriders', count, _ ). +noun( 'outrigger', 'outriggers', count, _ ). +noun( 'outset', 'outsets', count, _ ). +noun( 'outside', 'outsides', count, _ ). +noun( 'outsider', 'outsiders', count, _ ). +noun( 'outspokenness', '-', mass, _ ). +noun( 'outstation', 'outstations', count, _ ). +noun( 'outwork', 'outworks', count, _ ). +noun( 'ouzel', 'ouzels', count, _ ). +noun( 'ouzo', '-', mass, _ ). +noun( 'oval', 'ovals', count, _ ). +noun( 'ovary', 'ovaries', count, _ ). +noun( 'ovation', 'ovations', count, _ ). +noun( 'oven', 'ovens', count, _ ). +noun( 'ovenware', '-', mass, _ ). +noun( 'over', 'overs', count, _ ). +noun( 'over-abundance', '-', mass, _ ). +noun( 'overall', 'overalls', count, _ ). +noun( 'overanxiety', '-', mass, _ ). +noun( 'overbid', 'overbids', count, _ ). +noun( 'overburden', '-', mass, _ ). +noun( 'overcapitalization', '-', mass, _ ). +noun( 'overcast', '-', count, _ ). +noun( 'overcharge', 'overcharges', count, _ ). +noun( 'overcoat', 'overcoats', count, _ ). +noun( 'overconfidence', '-', mass, _ ). +noun( 'overcredulity', '-', mass, _ ). +noun( 'overdraft', 'overdrafts', count, _ ). +noun( 'overdrive', 'overdrives', both, _ ). +noun( 'overemphasis', '-', mass, _ ). +noun( 'overexertion', 'overexertions', both, _ ). +noun( 'overexposure', 'overexposures', both, _ ). +noun( 'overfeeding', '-', mass, _ ). +noun( 'overflow', 'overflows', count, _ ). +noun( 'overgrowth', 'overgrowths', both, _ ). +noun( 'overhang', 'overhangs', count, _ ). +noun( 'overhaul', 'overhauls', count, _ ). +noun( 'overindulgence', 'overindulgences', both, _ ). +noun( 'overkill', '-', mass, _ ). +noun( 'overlap', 'overlaps', both, _ ). +noun( 'overlay', 'overlays', count, _ ). +noun( 'overlord', 'overlords', count, _ ). +noun( 'overmantel', 'overmantels', count, _ ). +noun( 'overpass', 'overpasses', count, _ ). +noun( 'overpayment', 'overpayments', both, _ ). +noun( 'overplus', 'overpluses', count, _ ). +noun( 'overpopulation', '-', mass, _ ). +noun( 'overprint', 'overprints', count, _ ). +noun( 'overproduction', '-', mass, _ ). +noun( 'overseer', 'overseers', count, _ ). +noun( 'overshoe', 'overshoes', count, _ ). +noun( 'oversight', 'oversights', both, _ ). +noun( 'overskirt', 'overskirts', count, _ ). +noun( 'overspill', 'overspills', count, _ ). +noun( 'overstatement', 'overstatements', both, _ ). +noun( 'overstrain', '-', mass, _ ). +noun( 'overthrow', 'overthrows', count, _ ). +noun( 'overtime', '-', mass, _ ). +noun( 'overtolerance', '-', mass, _ ). +noun( 'overtone', 'overtones', count, _ ). +noun( 'overture', 'overtures', count, _ ). +noun( 'overweight', '-', mass, _ ). +noun( 'overwork', '-', mass, _ ). +noun( 'oviduct', 'oviducts', count, _ ). +noun( 'ovoid', 'ovoids', count, _ ). +noun( 'ovum', 'ova', count, _ ). +noun( 'owl', 'owls', count, _ ). +noun( 'owlet', 'owlets', count, _ ). +noun( 'owner', 'owners', count, _ ). +noun( 'owner-driver', 'owner-drivers', count, _ ). +noun( 'owner-occupier', 'owner-occupiers', count, _ ). +noun( 'ownership', '-', mass, _ ). +noun( 'ox', 'oxen', count, _ ). +noun( 'oxeye', 'oxeyes', count, _ ). +noun( 'oxidation', '-', mass, _ ). +noun( 'oxide', 'oxides', both, _ ). +noun( 'oxidization', 'oxidizations', both, _ ). +noun( 'oxtail', 'oxtails', count, _ ). +noun( 'oxyacetylene', '-', mass, _ ). +noun( 'oxygen', '-', mass, _ ). +noun( 'oyster', 'oysters', count, _ ). +noun( 'oyster-bank', 'oyster-banks', count, _ ). +noun( 'oyster-bar', 'oyster-bars', count, _ ). +noun( 'oyster-bed', 'oyster-beds', count, _ ). +noun( 'oyster-catcher', 'oyster-catchers', count, _ ). +noun( 'oz', 'oz', count, _ ). +noun( 'ozone', '-', mass, _ ). +noun( 'p', '-', count, _ ). +noun( 'p^at_e', 'p^at_es', both, _ ). +noun( 'pa', '-', count, _ ). +noun( 'pabulum', '-', mass, _ ). +noun( 'pace', 'paces', count, _ ). +noun( 'pacemaker', 'pacemakers', count, _ ). +noun( 'pacesetter', 'pacesetters', count, _ ). +noun( 'pachyderm', 'pachyderms', count, _ ). +noun( 'pacification', '-', mass, _ ). +noun( 'pacifism', '-', mass, _ ). +noun( 'pacifist', 'pacifists', count, _ ). +noun( 'pack', 'packs', count, _ ). +noun( 'pack-animal', 'pack-animals', count, _ ). +noun( 'pack-saddle', 'pack-saddles', count, _ ). +noun( 'pack-thread', '-', mass, _ ). +noun( 'package', 'packages', count, _ ). +noun( 'packer', 'packers', count, _ ). +noun( 'packet', 'packets', count, _ ). +noun( 'packet-boat', 'packet-boats', count, _ ). +noun( 'packhorse', 'packhorses', count, _ ). +noun( 'packing', '-', mass, _ ). +noun( 'packing-case', 'packing-cases', count, _ ). +noun( 'packing-needle', 'packing-needles', count, _ ). +noun( 'pact', 'pacts', count, _ ). +noun( 'pad', 'pads', count, _ ). +noun( 'padding', '-', mass, _ ). +noun( 'paddle', 'paddles', count, _ ). +noun( 'paddle-box', 'paddle-boxes', count, _ ). +noun( 'paddle-steamer', 'paddle-steamers', count, _ ). +noun( 'paddle-wheel', 'paddle-wheels', count, _ ). +noun( 'paddock', 'paddocks', count, _ ). +noun( 'paddy', 'paddies', both, _ ). +noun( 'paddy-field', 'paddy-fields', count, _ ). +noun( 'padlock', 'padlocks', count, _ ). +noun( 'padre', 'padres', count, _ ). +noun( 'paean', 'paeans', count, _ ). +noun( 'paederasty', '-', mass, _ ). +noun( 'paediatrics', 'paediatrics', mass, _ ). +noun( 'paeony', 'paeonies', count, _ ). +noun( 'pagan', 'pagans', count, _ ). +noun( 'paganism', '-', mass, _ ). +noun( 'page', 'pages', count, _ ). +noun( 'pageant', 'pageants', count, _ ). +noun( 'pageantry', '-', mass, _ ). +noun( 'pagination', '-', mass, _ ). +noun( 'pagoda', 'pagodas', count, _ ). +noun( 'pail', 'pails', count, _ ). +noun( 'pailful', 'pailfuls', count, _ ). +noun( 'paillasse', 'paillasses', count, _ ). +noun( 'pailliasse', 'pailliasses', count, _ ). +noun( 'pain', 'pains', both, _ ). +noun( 'painkiller', 'painkillers', count, _ ). +noun( 'paint', 'paints', both, _ ). +noun( 'paintbox', 'paintboxes', count, _ ). +noun( 'paintbrush', 'paintbrushes', count, _ ). +noun( 'painter', 'painters', count, _ ). +noun( 'painting', 'paintings', both, _ ). +noun( 'pair', 'pairs', count, _ ). +noun( 'paisley', '-', mass, _ ). +noun( 'pal', 'pals', count, _ ). +noun( 'palace', 'palaces', count, _ ). +noun( 'paladin', 'paladins', count, _ ). +noun( 'palaeontologist', 'palaeontologists', count, _ ). +noun( 'palaeontology', '-', mass, _ ). +noun( 'palankeen', 'palankeens', count, _ ). +noun( 'palanquin', 'palanquins', count, _ ). +noun( 'palatal', 'palatals', count, _ ). +noun( 'palate', 'palates', count, _ ). +noun( 'palatinate', 'palatinates', count, _ ). +noun( 'palaver', 'palavers', both, _ ). +noun( 'pale', 'pales', count, _ ). +noun( 'paleface', 'palefaces', count, _ ). +noun( 'paleness', '-', mass, _ ). +noun( 'paleontologist', 'paleontologists', count, _ ). +noun( 'paleontology', '-', mass, _ ). +noun( 'palette', 'palettes', count, _ ). +noun( 'palette-knife', 'palette-knives', count, _ ). +noun( 'palfrey', 'palfreys', count, _ ). +noun( 'palimpsest', 'palimpsests', count, _ ). +noun( 'palindrome', 'palindromes', count, _ ). +noun( 'paling', 'palings', count, _ ). +noun( 'palisade', 'palisades', count, _ ). +noun( 'pall', 'palls', count, _ ). +noun( 'pallbearer', 'pallbearers', count, _ ). +noun( 'pallet', 'pallets', count, _ ). +noun( 'palliasse', 'palliasses', count, _ ). +noun( 'palliation', 'palliations', both, _ ). +noun( 'palliative', 'palliatives', count, _ ). +noun( 'pallidness', '-', mass, _ ). +noun( 'pallor', '-', mass, _ ). +noun( 'palm', 'palms', count, _ ). +noun( 'palm-oil', '-', mass, _ ). +noun( 'palmer', 'palmers', count, _ ). +noun( 'palmetto', 'palmettos', count, _ ). +noun( 'palmist', 'palmists', count, _ ). +noun( 'palmistry', '-', mass, _ ). +noun( 'palpitation', 'palpitations', count, _ ). +noun( 'palsy', '-', mass, _ ). +noun( 'pampas-grass', '-', mass, _ ). +noun( 'pamphlet', 'pamphlets', count, _ ). +noun( 'pamphleteer', 'pamphleteers', count, _ ). +noun( 'pan', 'pans', both, _ ). +noun( 'panacea', 'panaceas', count, _ ). +noun( 'panache', '-', mass, _ ). +noun( 'panama', 'panamas', count, _ ). +noun( 'panatella', 'panatellas', count, _ ). +noun( 'pancake', 'pancakes', count, _ ). +noun( 'pancreas', 'pancreases', count, _ ). +noun( 'panda', 'pandas', count, _ ). +noun( 'pandemic', 'pandemics', count, _ ). +noun( 'pandemonium', 'pandemoniums', both, _ ). +noun( 'pander', 'panders', count, _ ). +noun( 'pane', 'panes', count, _ ). +noun( 'panegyric', 'panegyrics', count, _ ). +noun( 'panel', 'panels', count, _ ). +noun( 'panelling', '-', mass, _ ). +noun( 'pang', 'pangs', count, _ ). +noun( 'panga', 'pangas', count, _ ). +noun( 'panhandle', 'panhandles', count, _ ). +noun( 'panic', 'panics', both, _ ). +noun( 'panjandrum', 'panjandrums', count, _ ). +noun( 'pannier', 'panniers', count, _ ). +noun( 'pannikin', 'pannikins', count, _ ). +noun( 'panoply', 'panoplies', count, _ ). +noun( 'panorama', 'panoramas', count, _ ). +noun( 'pansy', 'pansies', count, _ ). +noun( 'pant', 'pants', count, _ ). +noun( 'pantaloon', 'pantaloons', count, _ ). +noun( 'pantechnicon', 'pantechnicons', count, _ ). +noun( 'pantheism', '-', mass, _ ). +noun( 'pantheist', 'pantheists', count, _ ). +noun( 'pantheon', 'pantheons', count, _ ). +noun( 'panther', 'panthers', count, _ ). +noun( 'pantile', 'pantiles', count, _ ). +noun( 'panto', 'pantos', count, _ ). +noun( 'pantograph', 'pantographs', count, _ ). +noun( 'pantomime', 'pantomimes', both, _ ). +noun( 'pantry', 'pantries', count, _ ). +noun( 'pantryman', 'pantrymen', count, _ ). +noun( 'panty-hose', '-', mass, _ ). +noun( 'pap', '-', mass, _ ). +noun( 'papa', 'papas', count, _ ). +noun( 'papacy', 'papacies', count, _ ). +noun( 'papaw', 'papaws', count, _ ). +noun( 'papaya', 'papayas', count, _ ). +noun( 'paper', 'papers', both, _ ). +noun( 'paper-chase', 'paper-chases', count, _ ). +noun( 'paperback', 'paperbacks', count, _ ). +noun( 'paperclip', 'paperclips', count, _ ). +noun( 'paperhanger', 'paperhangers', count, _ ). +noun( 'paperknife', 'paperknives', count, _ ). +noun( 'papermill', 'papermills', count, _ ). +noun( 'paperweight', 'paperweights', count, _ ). +noun( 'paperwork', '-', mass, _ ). +noun( 'papier-m^ach_e', '-', mass, _ ). +noun( 'papist', 'papists', count, _ ). +noun( 'papoose', 'papooses', count, _ ). +noun( 'paprika', '-', mass, _ ). +noun( 'papyrus', 'papyruses', both, _ ). +noun( 'par', 'pars', both, _ ). +noun( 'para', '-', count, _ ). +noun( 'parable', 'parables', count, _ ). +noun( 'parabola', 'parabolas', count, _ ). +noun( 'parachute', 'parachutes', count, _ ). +noun( 'parachutist', 'parachutists', count, _ ). +noun( 'parade', 'parades', both, _ ). +noun( 'parade-ground', 'parade-grounds', count, _ ). +noun( 'paradigm', 'paradigms', count, _ ). +noun( 'paradise', 'paradises', both, _ ). +noun( 'paradox', 'paradoxes', count, _ ). +noun( 'paraffin', '-', mass, _ ). +noun( 'paragon', 'paragons', count, _ ). +noun( 'paragraph', 'paragraphs', count, _ ). +noun( 'parakeet', 'parakeets', count, _ ). +noun( 'parallel', 'parallels', both, _ ). +noun( 'parallelism', 'parallelisms', both, _ ). +noun( 'parallelogram', 'parallelograms', count, _ ). +noun( 'paralysis', '-', mass, _ ). +noun( 'paralytic', 'paralytics', count, _ ). +noun( 'parameter', 'parameters', count, _ ). +noun( 'paramountcy', '-', mass, _ ). +noun( 'paramour', 'paramours', count, _ ). +noun( 'paranoia', '-', mass, _ ). +noun( 'paranoiac', 'paranoiacs', count, _ ). +noun( 'paranoid', 'paranoids', count, _ ). +noun( 'parapet', 'parapets', count, _ ). +noun( 'paraphernalia', '-', mass, _ ). +noun( 'paraplegia', '-', mass, _ ). +noun( 'paraplegic', 'paraplegics', count, _ ). +noun( 'parasite', 'parasites', count, _ ). +noun( 'parasol', 'parasols', count, _ ). +noun( 'paratrooper', 'paratroopers', count, _ ). +noun( 'paratyphoid', '-', mass, _ ). +noun( 'parcel', 'parcels', count, _ ). +noun( 'parchment', 'parchments', both, _ ). +noun( 'pardon', 'pardons', both, _ ). +noun( 'pardoner', 'pardoners', count, _ ). +noun( 'paregoric', '-', mass, _ ). +noun( 'parent', 'parents', count, _ ). +noun( 'parentage', '-', mass, _ ). +noun( 'parenthesis', 'parentheses', count, _ ). +noun( 'pari-mutuel', 'pari-mutuels', count, _ ). +noun( 'pariah', 'pariahs', count, _ ). +noun( 'pariah-dog', 'pariah-dogs', count, _ ). +noun( 'parish', 'parishes', count, _ ). +noun( 'parishioner', 'parishioners', count, _ ). +noun( 'parity', '-', mass, _ ). +noun( 'park', 'parks', count, _ ). +noun( 'parka', 'parkas', count, _ ). +noun( 'parking', '-', mass, _ ). +noun( 'parlance', 'parlances', count, _ ). +noun( 'parley', 'parleys', count, _ ). +noun( 'parliament', 'parliaments', count, _ ). +noun( 'parliamentarian', 'parliamentarians', count, _ ). +noun( 'parlour', 'parlours', count, _ ). +noun( 'parlour-car', 'parlour-cars', count, _ ). +noun( 'parochialism', '-', mass, _ ). +noun( 'parodist', 'parodists', count, _ ). +noun( 'parody', 'parodies', both, _ ). +noun( 'parole', '-', mass, _ ). +noun( 'paroquet', 'paroquets', count, _ ). +noun( 'paroxysm', 'paroxysms', count, _ ). +noun( 'parquet', '-', mass, _ ). +noun( 'parr', 'parrs', count, _ ). +noun( 'parricide', 'parricides', both, _ ). +noun( 'parrot', 'parrots', count, _ ). +noun( 'parry', 'parries', count, _ ). +noun( 'parsimony', '-', mass, _ ). +noun( 'parsley', '-', mass, _ ). +noun( 'parsnip', 'parsnips', count, _ ). +noun( 'parson', 'parsons', count, _ ). +noun( 'parsonage', 'parsonages', count, _ ). +noun( 'part', 'parts', count, _ ). +noun( 'part-owner', 'part-owners', count, _ ). +noun( 'part-singing', '-', mass, _ ). +noun( 'part-song', 'part-songs', count, _ ). +noun( 'part-timer', 'part-timers', count, _ ). +noun( 'parterre', 'parterres', count, _ ). +noun( 'parthenogenesis', '-', mass, _ ). +noun( 'partiality', 'partialities', both, _ ). +noun( 'participant', 'participants', count, _ ). +noun( 'participation', '-', mass, _ ). +noun( 'participle', 'participles', count, _ ). +noun( 'particle', 'particles', count, _ ). +noun( 'particular', 'particulars', count, _ ). +noun( 'particularity', 'particularities', both, _ ). +noun( 'parting', 'partings', both, _ ). +noun( 'partisan', 'partisans', count, _ ). +noun( 'partisanship', '-', mass, _ ). +noun( 'partition', 'partitions', both, _ ). +noun( 'partitive', 'partitives', count, _ ). +noun( 'partner', 'partners', count, _ ). +noun( 'partnership', 'partnerships', both, _ ). +noun( 'partridge', 'partridges', both, _ ). +noun( 'parturition', '-', mass, _ ). +noun( 'party', 'parties', both, _ ). +noun( 'party-spirit', '-', mass, _ ). +noun( 'party-wall', 'party-walls', count, _ ). +noun( 'parvenu', 'parvenus', count, _ ). +noun( 'pasha', 'pashas', count, _ ). +noun( 'pass', 'passes', count, _ ). +noun( 'passage', 'passages', both, _ ). +noun( 'passageway', 'passageways', count, _ ). +noun( 'passbook', 'passbooks', count, _ ). +noun( 'passenger', 'passengers', count, _ ). +noun( 'passepartout', 'passepartouts', both, _ ). +noun( 'passer-by', 'passers-by', count, _ ). +noun( 'passing', '-', mass, _ ). +noun( 'passion', 'passions', both, _ ). +noun( 'passion-flower', 'passion-flowers', count, _ ). +noun( 'passive', 'passives', count, _ ). +noun( 'passiveness', '-', mass, _ ). +noun( 'passivity', '-', mass, _ ). +noun( 'passkey', 'passkeys', count, _ ). +noun( 'passport', 'passports', count, _ ). +noun( 'password', 'passwords', count, _ ). +noun( 'past', 'pasts', count, _ ). +noun( 'pasta', '-', mass, _ ). +noun( 'paste', 'pastes', both, _ ). +noun( 'paste-up', 'paste-ups', count, _ ). +noun( 'pasteboard', '-', mass, _ ). +noun( 'pastel', 'pastels', count, _ ). +noun( 'pastern', 'pasterns', count, _ ). +noun( 'pasteurization', '-', mass, _ ). +noun( 'pastiche', 'pastiches', count, _ ). +noun( 'pastille', 'pastilles', count, _ ). +noun( 'pastime', 'pastimes', count, _ ). +noun( 'pasting', 'pastings', count, _ ). +noun( 'pastor', 'pastors', count, _ ). +noun( 'pastoral', 'pastorals', count, _ ). +noun( 'pastorate', 'pastorates', count, _ ). +noun( 'pastry', 'pastries', both, _ ). +noun( 'pastry-cook', 'pastry-cooks', count, _ ). +noun( 'pasturage', '-', mass, _ ). +noun( 'pasture', 'pastures', both, _ ). +noun( 'pasty', 'pasties', count, _ ). +noun( 'pat', 'pats', count, _ ). +noun( 'patch', 'patches', count, _ ). +noun( 'patch-pocket', 'patch-pockets', count, _ ). +noun( 'patchiness', '-', mass, _ ). +noun( 'patchouli', '-', mass, _ ). +noun( 'patchwork', '-', mass, _ ). +noun( 'pate', 'pates', count, _ ). +noun( 'pate de foie gras', '-', mass, _ ). +noun( 'patella', 'patellas', count, _ ). +noun( 'patent', 'patents', count, _ ). +noun( 'patentee', 'patentees', count, _ ). +noun( 'paterfamilias', '-', count, _ ). +noun( 'paternalism', '-', mass, _ ). +noun( 'paternity', '-', mass, _ ). +noun( 'paternoster', 'paternosters', count, _ ). +noun( 'path', 'paths', count, _ ). +noun( 'path-finder', 'path-finders', count, _ ). +noun( 'pathogen', 'pathogens', count, _ ). +noun( 'pathologist', 'pathologists', count, _ ). +noun( 'pathology', '-', mass, _ ). +noun( 'pathos', '-', mass, _ ). +noun( 'pathway', 'pathways', count, _ ). +noun( 'patience', '-', mass, _ ). +noun( 'patient', 'patients', count, _ ). +noun( 'patina', 'patinas', count, _ ). +noun( 'patio', 'patios', count, _ ). +noun( 'patisserie', 'patisseries', count, _ ). +noun( 'patois', '-', count, _ ). +noun( 'patrial', 'patrials', count, _ ). +noun( 'patriarch', 'patriarchs', count, _ ). +noun( 'patriarchate', 'patriarchates', count, _ ). +noun( 'patriarchy', 'patriarchies', count, _ ). +noun( 'patrician', 'patricians', count, _ ). +noun( 'patricide', 'patricides', both, _ ). +noun( 'patrimony', 'patrimonies', count, _ ). +noun( 'patriot', 'patriots', count, _ ). +noun( 'patriotism', '-', mass, _ ). +noun( 'patrol', 'patrols', both, _ ). +noun( 'patrolman', 'patrolmen', count, _ ). +noun( 'patron', 'patrons', count, _ ). +noun( 'patronage', '-', mass, _ ). +noun( 'patroness', 'patronesses', count, _ ). +noun( 'patronymic', 'patronymics', count, _ ). +noun( 'patten', 'pattens', count, _ ). +noun( 'patter', '-', mass, _ ). +noun( 'pattern', 'patterns', count, _ ). +noun( 'patty', 'patties', count, _ ). +noun( 'patty-pan', 'patty-pans', count, _ ). +noun( 'paucity', '-', mass, _ ). +noun( 'paunch', 'paunches', count, _ ). +noun( 'paunchiness', '-', mass, _ ). +noun( 'pauper', 'paupers', count, _ ). +noun( 'pauperism', '-', mass, _ ). +noun( 'pauperization', '-', mass, _ ). +noun( 'pause', 'pauses', count, _ ). +noun( 'pavement', 'pavements', count, _ ). +noun( 'pavilion', 'pavilions', count, _ ). +noun( 'paving-stone', 'paving-stones', count, _ ). +noun( 'paw', 'paws', count, _ ). +noun( 'pawl', 'pawls', count, _ ). +noun( 'pawn', 'pawns', both, _ ). +noun( 'pawn-ticket', 'pawn-tickets', count, _ ). +noun( 'pawnbroker', 'pawnbrokers', count, _ ). +noun( 'pawnshop', 'pawnshops', count, _ ). +noun( 'pawpaw', 'pawpaws', count, _ ). +noun( 'pax', 'paxes', count, _ ). +noun( 'pay', '-', mass, _ ). +noun( 'pay-as-you-earn', '-', mass, _ ). +noun( 'pay-claim', 'pay-claims', count, _ ). +noun( 'pay-packet', 'pay-packets', count, _ ). +noun( 'pay-station', 'pay-stations', count, _ ). +noun( 'payday', 'paydays', count, _ ). +noun( 'paydirt', '-', mass, _ ). +noun( 'payee', 'payees', count, _ ). +noun( 'payer', 'payers', count, _ ). +noun( 'payload', 'payloads', count, _ ). +noun( 'paymaster', 'paymasters', count, _ ). +noun( 'payment', 'payments', both, _ ). +noun( 'paynim', 'paynims', count, _ ). +noun( 'payoff', 'payoffs', count, _ ). +noun( 'payphone', 'payphones', count, _ ). +noun( 'payroll', 'payrolls', count, _ ). +noun( 'paysheet', 'paysheets', count, _ ). +noun( 'payslip', 'payslips', count, _ ). +noun( 'pea', 'peas', count, _ ). +noun( 'pea-chick', 'pea-chicks', count, _ ). +noun( 'pea-flour', '-', mass, _ ). +noun( 'pea-green', 'pea-greens', both, _ ). +noun( 'pea-jacket', 'pea-jackets', count, _ ). +noun( 'pea-soup', 'pea-soups', both, _ ). +noun( 'peace', '-', mass, _ ). +noun( 'peace-offering', 'peace-offerings', count, _ ). +noun( 'peacefulness', '-', mass, _ ). +noun( 'peacemaker', 'peacemakers', count, _ ). +noun( 'peacetime', '-', mass, _ ). +noun( 'peach', 'peaches', count, _ ). +noun( 'peacock', 'peacocks', count, _ ). +noun( 'peacock-blue', 'peacock-blues', both, _ ). +noun( 'peafowl', 'peafowls', count, _ ). +noun( 'peahen', 'peahens', count, _ ). +noun( 'peak', 'peaks', count, _ ). +noun( 'peal', 'peals', count, _ ). +noun( 'peanut', 'peanuts', count, _ ). +noun( 'pear', 'pears', both, _ ). +noun( 'pearl', 'pearls', count, _ ). +noun( 'pearl-barley', '-', mass, _ ). +noun( 'pearl-diver', 'pearl-divers', count, _ ). +noun( 'pearl-fishery', 'pearl-fisheries', count, _ ). +noun( 'pearl-oyster', 'pearl-oysters', count, _ ). +noun( 'pearl-sago', '-', mass, _ ). +noun( 'pearmain', 'pearmains', count, _ ). +noun( 'peasant', 'peasants', count, _ ). +noun( 'peasantry', 'peasantries', count, _ ). +noun( 'pease', '-', mass, _ ). +noun( 'pease-pudding', 'pease-puddings', both, _ ). +noun( 'peashooter', 'peashooters', count, _ ). +noun( 'peasouper', 'peasoupers', count, _ ). +noun( 'peat', '-', mass, _ ). +noun( 'pebble', 'pebbles', count, _ ). +noun( 'pecan', 'pecans', count, _ ). +noun( 'peccadillo', 'peccadillos', count, _ ). +noun( 'peccary', 'peccaries', count, _ ). +noun( 'peck', 'pecks', count, _ ). +noun( 'pecker', 'peckers', count, _ ). +noun( 'pectin', '-', mass, _ ). +noun( 'peculation', 'peculations', both, _ ). +noun( 'peculiarity', 'peculiarities', both, _ ). +noun( 'pedagogue', 'pedagogues', count, _ ). +noun( 'pedagogy', '-', mass, _ ). +noun( 'pedal', 'pedals', count, _ ). +noun( 'pedant', 'pedants', count, _ ). +noun( 'pedantry', 'pedantries', both, _ ). +noun( 'peddler', 'peddlers', count, _ ). +noun( 'pederast', 'pederasts', count, _ ). +noun( 'pederasty', '-', mass, _ ). +noun( 'pedestal', 'pedestals', count, _ ). +noun( 'pedestrian', 'pedestrians', count, _ ). +noun( 'pediatrician', 'pediatricians', count, _ ). +noun( 'pediatrics', 'pediatrics', mass, _ ). +noun( 'pedicab', 'pedicabs', count, _ ). +noun( 'pedicure', 'pedicures', count, _ ). +noun( 'pedigree', 'pedigrees', both, _ ). +noun( 'pediment', 'pediments', count, _ ). +noun( 'pedlar', 'pedlars', count, _ ). +noun( 'pedometer', 'pedometers', count, _ ). +noun( 'pee', 'pees', both, _ ). +noun( 'peek', 'peeks', count, _ ). +noun( 'peek-a-boo', '-', mass, _ ). +noun( 'peel', '-', mass, _ ). +noun( 'peeler', 'peelers', count, _ ). +noun( 'peep', 'peeps', count, _ ). +noun( 'peeper', 'peepers', count, _ ). +noun( 'peephole', 'peepholes', count, _ ). +noun( 'peepshow', 'peepshows', count, _ ). +noun( 'peepul', 'peepuls', count, _ ). +noun( 'peer', 'peers', count, _ ). +noun( 'peerage', 'peerages', count, _ ). +noun( 'peeress', 'peeresses', count, _ ). +noun( 'peevishness', '-', mass, _ ). +noun( 'peewit', 'peewits', count, _ ). +noun( 'peg', 'pegs', count, _ ). +noun( 'peignoir', 'peignoirs', count, _ ). +noun( 'peke', 'pekes', count, _ ). +noun( 'pekinese', 'pekinese', count, _ ). +noun( 'pekoe', '-', mass, _ ). +noun( 'pelf', '-', mass, _ ). +noun( 'pelican', 'pelicans', count, _ ). +noun( 'pelisse', 'pelisses', count, _ ). +noun( 'pellet', 'pellets', count, _ ). +noun( 'pelmet', 'pelmets', count, _ ). +noun( 'pelota', '-', mass, _ ). +noun( 'pelt', 'pelts', count, _ ). +noun( 'pelvis', 'pelvises', count, _ ). +noun( 'pemmican', '-', mass, _ ). +noun( 'pen', 'pens', count, _ ). +noun( 'pen-and-ink', '-', mass, _ ). +noun( 'pen-friend', 'pen-friends', count, _ ). +noun( 'pen-name', 'pen-names', count, _ ). +noun( 'pen-pusher', 'pen-pushers', count, _ ). +noun( 'penalization', 'penalizations', both, _ ). +noun( 'penalty', 'penalties', both, _ ). +noun( 'penance', '-', mass, _ ). +noun( 'penchant', 'penchants', count, _ ). +noun( 'pencil', 'pencils', count, _ ). +noun( 'pendant', 'pendants', count, _ ). +noun( 'pendulum', 'pendulums', count, _ ). +noun( 'penetrability', '-', mass, _ ). +noun( 'penetration', 'penetrations', both, _ ). +noun( 'penguin', 'penguins', count, _ ). +noun( 'penicillin', '-', mass, _ ). +noun( 'peninsula', 'peninsulas', count, _ ). +noun( 'penis', 'penises', count, _ ). +noun( 'penitence', '-', mass, _ ). +noun( 'penitent', 'penitents', count, _ ). +noun( 'penitentiary', 'penitentiaries', count, _ ). +noun( 'penknife', 'penknives', count, _ ). +noun( 'penmanship', '-', mass, _ ). +noun( 'penn\'orth', 'penn\'orths', count, _ ). +noun( 'pennant', 'pennants', count, _ ). +noun( 'pennon', 'pennons', count, _ ). +noun( 'penny', 'pennies', count, _ ). +noun( 'pennyweight', 'pennyweights', count, _ ). +noun( 'pennyworth', 'pennyworths', count, _ ). +noun( 'penology', '-', mass, _ ). +noun( 'pension', 'pensions', count, _ ). +noun( 'pension', 'pensions', count, _ ). +noun( 'pensioner', 'pensioners', count, _ ). +noun( 'pensiveness', '-', mass, _ ). +noun( 'penstock', 'penstocks', count, _ ). +noun( 'pentagon', 'pentagons', count, _ ). +noun( 'pentameter', 'pentameters', count, _ ). +noun( 'pentathlon', 'pentathlons', count, _ ). +noun( 'penthouse', 'penthouses', count, _ ). +noun( 'penultimate', 'penultimates', count, _ ). +noun( 'penumbra', 'penumbras', count, _ ). +noun( 'penuriousness', '-', mass, _ ). +noun( 'penury', '-', mass, _ ). +noun( 'peon', 'peons', count, _ ). +noun( 'peonage', '-', mass, _ ). +noun( 'peony', 'peonies', count, _ ). +noun( 'people', 'peoples', both, _ ). +noun( 'pep', '-', mass, _ ). +noun( 'pepper', 'peppers', both, _ ). +noun( 'pepper-and-salt', '-', mass, _ ). +noun( 'pepper-mill', 'pepper-mills', count, _ ). +noun( 'pepper-pot', 'pepper-pots', count, _ ). +noun( 'peppercorn', 'peppercorns', count, _ ). +noun( 'peppermint', 'peppermints', both, _ ). +noun( 'pepsin', '-', mass, _ ). +noun( 'perambulation', 'perambulations', count, _ ). +noun( 'perambulator', 'perambulators', count, _ ). +noun( 'perceiver', 'perceivers', count, _ ). +noun( 'percent', 'percent', count, _ ). +noun( 'percentage', 'percentages', count, _ ). +noun( 'perceptibility', '-', mass, _ ). +noun( 'perception', 'perceptions', both, _ ). +noun( 'perch', 'perch', count, _ ). +noun( 'percolator', 'percolators', count, _ ). +noun( 'percussion', 'percussions', both, _ ). +noun( 'percussionist', 'percussionists', count, _ ). +noun( 'perdition', '-', mass, _ ). +noun( 'peregrination', 'peregrinations', both, _ ). +noun( 'perennial', 'perennials', count, _ ). +noun( 'perfectibility', '-', mass, _ ). +noun( 'perfection', '-', mass, _ ). +noun( 'perfectionist', 'perfectionists', count, _ ). +noun( 'perfidiousness', '-', mass, _ ). +noun( 'perfidy', 'perfidies', both, _ ). +noun( 'perforation', 'perforations', both, _ ). +noun( 'performance', 'performances', both, _ ). +noun( 'performer', 'performers', count, _ ). +noun( 'perfume', 'perfumes', both, _ ). +noun( 'perfumer', 'perfumers', count, _ ). +noun( 'pergola', 'pergolas', count, _ ). +noun( 'peri', 'peris', count, _ ). +noun( 'perigee', 'perigees', count, _ ). +noun( 'perihelion', 'perihelions', count, _ ). +noun( 'peril', 'perils', both, _ ). +noun( 'perimeter', 'perimeters', count, _ ). +noun( 'period', 'periods', count, _ ). +noun( 'periodical', 'periodicals', count, _ ). +noun( 'periphery', 'peripheries', count, _ ). +noun( 'periphrasis', 'periphrases', count, _ ). +noun( 'periscope', 'periscopes', count, _ ). +noun( 'perisher', 'perishers', count, _ ). +noun( 'peristyle', 'peristyles', count, _ ). +noun( 'peritonitis', '-', mass, _ ). +noun( 'periwig', 'periwigs', count, _ ). +noun( 'periwinkle', 'periwinkles', count, _ ). +noun( 'perjurer', 'perjurers', count, _ ). +noun( 'perjury', 'perjuries', both, _ ). +noun( 'perk', 'perks', count, _ ). +noun( 'perkiness', '-', mass, _ ). +noun( 'perm', 'perms', count, _ ). +noun( 'permafrost', '-', mass, _ ). +noun( 'permanence', '-', mass, _ ). +noun( 'permanency', 'permanencies', both, _ ). +noun( 'permanganate', 'permanganates', both, _ ). +noun( 'permeability', '-', mass, _ ). +noun( 'permeation', '-', mass, _ ). +noun( 'permission', '-', mass, _ ). +noun( 'permissiveness', '-', mass, _ ). +noun( 'permit', 'permits', count, _ ). +noun( 'permutation', 'permutations', both, _ ). +noun( 'perniciousness', '-', mass, _ ). +noun( 'peroration', 'perorations', count, _ ). +noun( 'peroxide', 'peroxides', both, _ ). +noun( 'perpendicular', 'perpendiculars', both, _ ). +noun( 'perpetration', 'perpetrations', count, _ ). +noun( 'perpetrator', 'perpetrators', count, _ ). +noun( 'perpetuation', 'perpetuations', count, _ ). +noun( 'perpetuity', 'perpetuities', both, _ ). +noun( 'perplexity', 'perplexities', both, _ ). +noun( 'perquisite', 'perquisites', count, _ ). +noun( 'perry', '-', mass, _ ). +noun( 'persecution', 'persecutions', both, _ ). +noun( 'persecutor', 'persecutors', count, _ ). +noun( 'perseverance', '-', mass, _ ). +noun( 'persiflage', '-', mass, _ ). +noun( 'persimmon', 'persimmons', count, _ ). +noun( 'persistence', '-', mass, _ ). +noun( 'person', 'persons', count, _ ). +noun( 'persona', 'personas', count, _ ). +noun( 'persona grata', 'personae gratae', count, _ ). +noun( 'persona non grata', 'personae non gratae', count, _ ). +noun( 'personage', 'personages', count, _ ). +noun( 'personal', 'personals', count, _ ). +noun( 'personality', 'personalities', both, _ ). +noun( 'personalty', '-', mass, _ ). +noun( 'personation', 'personations', count, _ ). +noun( 'personification', 'personifications', both, _ ). +noun( 'perspective', 'perspectives', both, _ ). +noun( 'perspex', '-', mass, _ ). +noun( 'perspicacity', '-', mass, _ ). +noun( 'perspicuity', '-', mass, _ ). +noun( 'perspicuousness', '-', mass, _ ). +noun( 'perspiration', '-', mass, _ ). +noun( 'persuasion', 'persuasions', both, _ ). +noun( 'persuasiveness', '-', mass, _ ). +noun( 'pertinacity', '-', mass, _ ). +noun( 'pertinence', '-', mass, _ ). +noun( 'pertness', '-', mass, _ ). +noun( 'perturbation', 'perturbations', both, _ ). +noun( 'peruke', 'perukes', count, _ ). +noun( 'perusal', 'perusals', both, _ ). +noun( 'pervasion', '-', mass, _ ). +noun( 'pervasiveness', '-', mass, _ ). +noun( 'perverseness', '-', mass, _ ). +noun( 'perversion', 'perversions', both, _ ). +noun( 'perversity', 'perversities', both, _ ). +noun( 'pervert', 'perverts', count, _ ). +noun( 'peseta', 'pesetas', count, _ ). +noun( 'peso', 'pesos', count, _ ). +noun( 'pessary', 'pessaries', count, _ ). +noun( 'pessimism', '-', mass, _ ). +noun( 'pessimist', 'pessimists', count, _ ). +noun( 'pest', 'pests', count, _ ). +noun( 'pesticide', 'pesticides', both, _ ). +noun( 'pestilence', 'pestilences', both, _ ). +noun( 'pestle', 'pestles', count, _ ). +noun( 'pet', 'pets', count, _ ). +noun( 'petal', 'petals', count, _ ). +noun( 'petard', 'petards', count, _ ). +noun( 'petit bourgeois', 'petits bourgeois', count, _ ). +noun( 'petition', 'petitions', count, _ ). +noun( 'petitioner', 'petitioners', count, _ ). +noun( 'petrel', 'petrels', count, _ ). +noun( 'petrifaction', 'petrifactions', both, _ ). +noun( 'petro-chemical', 'petro-chemicals', count, _ ). +noun( 'petrol', '-', mass, _ ). +noun( 'petroleum', '-', mass, _ ). +noun( 'petrology', '-', mass, _ ). +noun( 'petticoat', 'petticoats', count, _ ). +noun( 'pettiness', 'pettinesses', both, _ ). +noun( 'pettishness', '-', mass, _ ). +noun( 'petulance', '-', mass, _ ). +noun( 'petunia', 'petunias', count, _ ). +noun( 'pew', 'pews', count, _ ). +noun( 'pew-opener', 'pew-openers', count, _ ). +noun( 'pewit', 'pewits', count, _ ). +noun( 'pewter', '-', mass, _ ). +noun( 'peyote', 'peyotes', count, _ ). +noun( 'pfennig', 'pfennigs', count, _ ). +noun( 'phaeton', 'phaetons', count, _ ). +noun( 'phagocyte', 'phagocytes', count, _ ). +noun( 'phalanx', 'phalanxes', count, _ ). +noun( 'phallus', 'phalluses', count, _ ). +noun( 'phantasm', 'phantasms', count, _ ). +noun( 'phantasmagoria', 'phantasmagorias', count, _ ). +noun( 'phantasy', 'phantasies', count, _ ). +noun( 'phantom', 'phantoms', count, _ ). +noun( 'pharmacist', 'pharmacists', count, _ ). +noun( 'pharmacologist', 'pharmacologists', count, _ ). +noun( 'pharmacology', '-', mass, _ ). +noun( 'pharmacopoeia', 'pharmacopoeias', count, _ ). +noun( 'pharmacy', 'pharmacies', both, _ ). +noun( 'pharos', '-', count, _ ). +noun( 'pharyngitis', '-', mass, _ ). +noun( 'pharynx', 'pharynxes', count, _ ). +noun( 'phase', 'phases', count, _ ). +noun( 'pheasant', 'pheasants', both, _ ). +noun( 'phenobarbitone', '-', mass, _ ). +noun( 'phenol', '-', mass, _ ). +noun( 'phenomenon', 'phenomena', count, _ ). +noun( 'phial', 'phials', count, _ ). +noun( 'philanderer', 'philanderers', count, _ ). +noun( 'philanthropist', 'philanthropists', count, _ ). +noun( 'philanthropy', '-', mass, _ ). +noun( 'philatelist', 'philatelists', count, _ ). +noun( 'philately', '-', mass, _ ). +noun( 'philhellene', 'philhellenes', count, _ ). +noun( 'philologist', 'philologists', count, _ ). +noun( 'philology', '-', mass, _ ). +noun( 'philosopher', 'philosophers', count, _ ). +noun( 'philosophy', 'philosophies', both, _ ). +noun( 'philtre', 'philtres', count, _ ). +noun( 'phlebitis', '-', mass, _ ). +noun( 'phlegm', '-', mass, _ ). +noun( 'phlox', '-', mass, _ ). +noun( 'phobia', 'phobias', count, _ ). +noun( 'phoenix', 'phoenixes', count, _ ). +noun( 'phone', 'phones', count, _ ). +noun( 'phone-in', 'phone-ins', count, _ ). +noun( 'phonebooth', 'phonebooths', count, _ ). +noun( 'phonecall', 'phonecalls', count, _ ). +noun( 'phoneme', 'phonemes', count, _ ). +noun( 'phonemics', 'phonemics', mass, _ ). +noun( 'phonetician', 'phoneticians', count, _ ). +noun( 'phonetics', 'phonetics', mass, _ ). +noun( 'phoney', 'phoneys', count, _ ). +noun( 'phonics', 'phonics', mass, _ ). +noun( 'phonograph', 'phonographs', count, _ ). +noun( 'phonology', '-', mass, _ ). +noun( 'phony', 'phonies', count, _ ). +noun( 'phosgene', '-', mass, _ ). +noun( 'phosphate', 'phosphates', both, _ ). +noun( 'phosphorescence', '-', mass, _ ). +noun( 'phosphorus', '-', mass, _ ). +noun( 'photo', 'photos', count, _ ). +noun( 'photocopier', 'photocopiers', count, _ ). +noun( 'photocopy', 'photocopies', count, _ ). +noun( 'photoflash', 'photoflashes', count, _ ). +noun( 'photograph', 'photographs', count, _ ). +noun( 'photographer', 'photographers', count, _ ). +noun( 'photography', '-', mass, _ ). +noun( 'photogravure', 'photogravures', both, _ ). +noun( 'photolithography', '-', mass, _ ). +noun( 'photometer', 'photometers', count, _ ). +noun( 'photon', 'photons', count, _ ). +noun( 'photostat', 'photostats', count, _ ). +noun( 'photosynthesis', '-', mass, _ ). +noun( 'phrase', 'phrases', count, _ ). +noun( 'phrase-book', 'phrase-books', count, _ ). +noun( 'phraseology', '-', mass, _ ). +noun( 'phrenologist', 'phrenologists', count, _ ). +noun( 'phrenology', '-', mass, _ ). +noun( 'phthisis', '-', mass, _ ). +noun( 'phylum', 'phylums', count, _ ). +noun( 'physic', 'physics', count, _ ). +noun( 'physician', 'physicians', count, _ ). +noun( 'physicist', 'physicists', count, _ ). +noun( 'physics', 'physics', mass, _ ). +noun( 'physiognomy', 'physiognomies', both, _ ). +noun( 'physiologist', 'physiologists', count, _ ). +noun( 'physiology', '-', mass, _ ). +noun( 'physiotherapist', 'physiotherapists', count, _ ). +noun( 'physiotherapy', '-', mass, _ ). +noun( 'physique', 'physiques', both, _ ). +noun( 'pi', 'pis', count, _ ). +noun( 'pianist', 'pianists', count, _ ). +noun( 'piano', 'pianos', count, _ ). +noun( 'pianoforte', 'pianofortes', count, _ ). +noun( 'pianola', 'pianolas', count, _ ). +noun( 'piastre', 'piastres', count, _ ). +noun( 'piazza', 'piazzas', count, _ ). +noun( 'pibroch', 'pibrochs', count, _ ). +noun( 'pica', 'pica', count, _ ). +noun( 'picador', 'picadors', count, _ ). +noun( 'piccalilli', '-', mass, _ ). +noun( 'piccaninny', 'piccaninnies', count, _ ). +noun( 'piccolo', 'piccolos', count, _ ). +noun( 'pick', 'picks', count, _ ). +noun( 'pick-me-up', 'pick-me-ups', count, _ ). +noun( 'pick-up', 'pick-ups', count, _ ). +noun( 'pickaxe', 'pickaxes', count, _ ). +noun( 'picker', 'pickers', count, _ ). +noun( 'pickerel', 'pickerel', count, _ ). +noun( 'picket', 'pickets', count, _ ). +noun( 'picking', 'pickings', both, _ ). +noun( 'pickle', 'pickles', both, _ ). +noun( 'pickpocket', 'pickpockets', count, _ ). +noun( 'picnic', 'picnics', count, _ ). +noun( 'picnicker', 'picnickers', count, _ ). +noun( 'pictorial', 'pictorials', count, _ ). +noun( 'picture', 'pictures', count, _ ). +noun( 'picture-book', 'picture-books', count, _ ). +noun( 'picture-card', 'picture-cards', count, _ ). +noun( 'picture-gallery', 'picture-galleries', count, _ ). +noun( 'picturesqueness', '-', mass, _ ). +noun( 'piddle', 'piddles', count, _ ). +noun( 'pidgin', 'pidgins', count, _ ). +noun( 'pie', 'pies', both, _ ). +noun( 'pie-crust', '-', mass, _ ). +noun( 'piece', 'pieces', count, _ ). +noun( 'piecework', '-', mass, _ ). +noun( 'pied-`a-terre', 'pied-`a-terres', count, _ ). +noun( 'pier', 'piers', count, _ ). +noun( 'pier-glass', 'pier-glasses', count, _ ). +noun( 'pierrot', 'pierrots', count, _ ). +noun( 'piet`a', 'piet`as', count, _ ). +noun( 'piety', 'pieties', both, _ ). +noun( 'piffle', '-', mass, _ ). +noun( 'pig', 'pigs', both, _ ). +noun( 'pig-headedness', '-', mass, _ ). +noun( 'pig-iron', '-', mass, _ ). +noun( 'pig-sticking', '-', mass, _ ). +noun( 'pigboat', 'pigboats', count, _ ). +noun( 'pigeon', 'pigeons', count, _ ). +noun( 'pigeonhole', 'pigeonholes', count, _ ). +noun( 'piggery', 'piggeries', count, _ ). +noun( 'piggishness', '-', mass, _ ). +noun( 'piggy', 'piggies', count, _ ). +noun( 'piggyback', 'piggybacks', count, _ ). +noun( 'piglet', 'piglets', count, _ ). +noun( 'pigment', 'pigments', both, _ ). +noun( 'pigmentation', 'pigmentations', count, _ ). +noun( 'pigmy', 'pigmies', count, _ ). +noun( 'pigskin', '-', mass, _ ). +noun( 'pigsty', 'pigsties', count, _ ). +noun( 'pigswill', '-', mass, _ ). +noun( 'pigtail', 'pigtails', count, _ ). +noun( 'pigwash', '-', mass, _ ). +noun( 'pike', 'pike', count, _ ). +noun( 'pikestaff', 'pikestaffs', count, _ ). +noun( 'pilaf', '-', mass, _ ). +noun( 'pilaff', '-', mass, _ ). +noun( 'pilaster', 'pilasters', count, _ ). +noun( 'pilau', '-', mass, _ ). +noun( 'pilchard', 'pilchards', both, _ ). +noun( 'pile', 'piles', both, _ ). +noun( 'pile-driver', 'pile-drivers', count, _ ). +noun( 'pile-dwelling', 'pile-dwellings', count, _ ). +noun( 'pile-up', 'pile-ups', count, _ ). +noun( 'piles', 'piles', mass, _ ). +noun( 'pilferage', '-', mass, _ ). +noun( 'pilferer', 'pilferers', count, _ ). +noun( 'pilgrim', 'pilgrims', count, _ ). +noun( 'pilgrimage', 'pilgrimages', count, _ ). +noun( 'pill', 'pills', count, _ ). +noun( 'pillage', 'pillages', count, _ ). +noun( 'pillager', 'pillagers', count, _ ). +noun( 'pillar', 'pillars', count, _ ). +noun( 'pillar-box', 'pillar-boxes', count, _ ). +noun( 'pillbox', 'pillboxes', count, _ ). +noun( 'pillion', 'pillions', count, _ ). +noun( 'pillory', 'pillories', count, _ ). +noun( 'pillow', 'pillows', count, _ ). +noun( 'pillow-fight', 'pillow-fights', count, _ ). +noun( 'pillowcase', 'pillowcases', count, _ ). +noun( 'pillowslip', 'pillowslips', count, _ ). +noun( 'pilot', 'pilots', count, _ ). +noun( 'pilot-boat', 'pilot-boats', count, _ ). +noun( 'pilot-burner', 'pilot-burners', count, _ ). +noun( 'pilot-cloth', '-', mass, _ ). +noun( 'pilot-engine', 'pilot-engines', count, _ ). +noun( 'pilot-fish', 'pilot-fish', count, _ ). +noun( 'pilot-light', 'pilot-lights', count, _ ). +noun( 'pimento', 'pimentos', both, _ ). +noun( 'pimp', 'pimps', count, _ ). +noun( 'pimpernel', 'pimpernels', count, _ ). +noun( 'pimple', 'pimples', count, _ ). +noun( 'pin', 'pins', count, _ ). +noun( 'pin-money', '-', mass, _ ). +noun( 'pin-table', 'pin-tables', count, _ ). +noun( 'pin-up', 'pin-ups', count, _ ). +noun( 'pinafore', 'pinafores', count, _ ). +noun( 'pinball', '-', mass, _ ). +noun( 'pince-nez', 'pince-nez', count, _ ). +noun( 'pincer', 'pincers', count, _ ). +noun( 'pinch', 'pinches', count, _ ). +noun( 'pinchbeck', 'pinchbecks', count, _ ). +noun( 'pincushion', 'pincushions', count, _ ). +noun( 'pine', 'pines', both, _ ). +noun( 'pineapple', 'pineapples', both, _ ). +noun( 'ping', 'pings', count, _ ). +noun( 'pingpong', '-', mass, _ ). +noun( 'pinhead', 'pinheads', count, _ ). +noun( 'pinion', 'pinions', count, _ ). +noun( 'pink', 'pinks', both, _ ). +noun( 'pinnace', 'pinnaces', count, _ ). +noun( 'pinnacle', 'pinnacles', count, _ ). +noun( 'pinny', 'pinnies', count, _ ). +noun( 'pinpoint', 'pinpoints', count, _ ). +noun( 'pinprick', 'pinpricks', count, _ ). +noun( 'pint', 'pints', count, _ ). +noun( 'pioneer', 'pioneers', count, _ ). +noun( 'pip', 'pips', count, _ ). +noun( 'pipal', 'pipals', count, _ ). +noun( 'pipe', 'pipes', count, _ ). +noun( 'pipe-organ', 'pipe-organs', count, _ ). +noun( 'pipe-rack', 'pipe-racks', count, _ ). +noun( 'pipeclay', '-', mass, _ ). +noun( 'pipedream', 'pipedreams', count, _ ). +noun( 'pipeful', 'pipefuls', count, _ ). +noun( 'pipeline', 'pipelines', count, _ ). +noun( 'piper', 'pipers', count, _ ). +noun( 'pipette', 'pipettes', count, _ ). +noun( 'pipework', '-', mass, _ ). +noun( 'piping', '-', mass, _ ). +noun( 'pippin', 'pippins', count, _ ). +noun( 'pipsqueak', 'pipsqueaks', count, _ ). +noun( 'piquancy', '-', mass, _ ). +noun( 'pique', 'piques', both, _ ). +noun( 'piquet', '-', mass, _ ). +noun( 'piracy', 'piracies', both, _ ). +noun( 'piranha', 'piranhas', count, _ ). +noun( 'pirate', 'pirates', count, _ ). +noun( 'pirouette', 'pirouettes', count, _ ). +noun( 'pis aller', '-', count, _ ). +noun( 'piss', 'pisses', count, _ ). +noun( 'pistachio', 'pistachios', count, _ ). +noun( 'pistil', 'pistils', count, _ ). +noun( 'pistol', 'pistols', count, _ ). +noun( 'piston', 'pistons', count, _ ). +noun( 'pit', 'pits', count, _ ). +noun( 'pit-prop', 'pit-props', count, _ ). +noun( 'pitch', 'pitches', both, _ ). +noun( 'pitchblende', '-', mass, _ ). +noun( 'pitcher', 'pitchers', count, _ ). +noun( 'pitchfork', 'pitchforks', count, _ ). +noun( 'pitfall', 'pitfalls', count, _ ). +noun( 'pith', '-', mass, _ ). +noun( 'pithead', 'pitheads', count, _ ). +noun( 'pitman', 'pitmen', count, _ ). +noun( 'piton', 'pitons', count, _ ). +noun( 'pitsaw', 'pitsaws', count, _ ). +noun( 'pittance', 'pittances', count, _ ). +noun( 'pitter-patter', '-', mass, _ ). +noun( 'pituitary', 'pituitaries', count, _ ). +noun( 'pity', 'pities', both, _ ). +noun( 'pivot', 'pivots', count, _ ). +noun( 'pixie', 'pixies', count, _ ). +noun( 'pixy', 'pixies', count, _ ). +noun( 'pizza', 'pizzas', count, _ ). +noun( 'placard', 'placards', count, _ ). +noun( 'place', 'places', count, _ ). +noun( 'place-bet', 'place-bets', count, _ ). +noun( 'place-name', 'place-names', count, _ ). +noun( 'placebo', 'placebos', count, _ ). +noun( 'placeman', 'placemen', count, _ ). +noun( 'placement', 'placements', count, _ ). +noun( 'placenta', 'placentas', count, _ ). +noun( 'placeseeker', 'placeseekers', count, _ ). +noun( 'placidity', '-', mass, _ ). +noun( 'placing', 'placings', count, _ ). +noun( 'placket', 'plackets', count, _ ). +noun( 'plage', '-', count, _ ). +noun( 'plagiarism', 'plagiarisms', both, _ ). +noun( 'plagiarist', 'plagiarists', count, _ ). +noun( 'plague', 'plagues', count, _ ). +noun( 'plague-spot', 'plague-spots', count, _ ). +noun( 'plaice', 'plaice', both, _ ). +noun( 'plaid', 'plaids', both, _ ). +noun( 'plain', 'plains', count, _ ). +noun( 'plainness', '-', mass, _ ). +noun( 'plainsman', 'plainsmen', count, _ ). +noun( 'plaint', 'plaints', count, _ ). +noun( 'plaintiff', 'plaintiffs', count, _ ). +noun( 'plaintiveness', '-', mass, _ ). +noun( 'plait', 'plaits', count, _ ). +noun( 'plan', 'plans', count, _ ). +noun( 'planchette', 'planchettes', count, _ ). +noun( 'plane', 'planes', count, _ ). +noun( 'plane-tree', 'plane-trees', count, _ ). +noun( 'planet', 'planets', count, _ ). +noun( 'planetarium', 'planetariums', count, _ ). +noun( 'plank', 'planks', count, _ ). +noun( 'plank-bed', 'plank-beds', count, _ ). +noun( 'planking', '-', mass, _ ). +noun( 'plankton', '-', mass, _ ). +noun( 'planner', 'planners', count, _ ). +noun( 'plant', 'plants', both, _ ). +noun( 'plant-louse', 'plant-lice', count, _ ). +noun( 'plantain', 'plantains', count, _ ). +noun( 'plantation', 'plantations', count, _ ). +noun( 'planter', 'planters', count, _ ). +noun( 'plaque', 'plaques', both, _ ). +noun( 'plash', '-', count, _ ). +noun( 'plasm', '-', mass, _ ). +noun( 'plasma', '-', mass, _ ). +noun( 'plaster', 'plasters', both, _ ). +noun( 'plasterboard', '-', mass, _ ). +noun( 'plasterer', 'plasterers', count, _ ). +noun( 'plastic', 'plastics', count, _ ). +noun( 'plastic-bomb', 'plastic-bombs', count, _ ). +noun( 'plasticine', '-', mass, _ ). +noun( 'plasticity', '-', mass, _ ). +noun( 'plastics', 'plastics', mass, _ ). +noun( 'plate', 'plates', both, _ ). +noun( 'plate-glass', '-', mass, _ ). +noun( 'plate-powder', '-', mass, _ ). +noun( 'plate-rack', 'plate-racks', count, _ ). +noun( 'plateau', 'plateaus', count, _ ). +noun( 'plateful', 'platefuls', count, _ ). +noun( 'platelayer', 'platelayers', count, _ ). +noun( 'platform', 'platforms', count, _ ). +noun( 'plating', '-', mass, _ ). +noun( 'platinum', '-', mass, _ ). +noun( 'platitude', 'platitudes', both, _ ). +noun( 'platoon', 'platoons', count, _ ). +noun( 'platter', 'platters', count, _ ). +noun( 'platypus', 'platypuses', count, _ ). +noun( 'plaudit', 'plaudits', count, _ ). +noun( 'plausibility', 'plausibilities', both, _ ). +noun( 'play', 'plays', both, _ ). +noun( 'play-acting', '-', mass, _ ). +noun( 'play-actor', 'play-actors', count, _ ). +noun( 'play-box', 'play-boxes', count, _ ). +noun( 'play-off', 'play-offs', count, _ ). +noun( 'play-reading', 'play-readings', count, _ ). +noun( 'playback', 'playbacks', count, _ ). +noun( 'playbill', 'playbills', count, _ ). +noun( 'playboy', 'playboys', count, _ ). +noun( 'player', 'players', count, _ ). +noun( 'player-piano', 'player-pianos', count, _ ). +noun( 'playfellow', 'playfellows', count, _ ). +noun( 'playfulness', '-', mass, _ ). +noun( 'playgoer', 'playgoers', count, _ ). +noun( 'playground', 'playgrounds', count, _ ). +noun( 'playgroup', 'playgroups', count, _ ). +noun( 'playhouse', 'playhouses', count, _ ). +noun( 'playing', 'playings', count, _ ). +noun( 'playing-card', 'playing-cards', count, _ ). +noun( 'playing-field', 'playing-fields', count, _ ). +noun( 'playlet', 'playlets', count, _ ). +noun( 'playmate', 'playmates', count, _ ). +noun( 'playpen', 'playpens', count, _ ). +noun( 'playroom', 'playrooms', count, _ ). +noun( 'playschool', 'playschools', count, _ ). +noun( 'playsuit', 'playsuits', count, _ ). +noun( 'plaything', 'playthings', count, _ ). +noun( 'playtime', 'playtimes', count, _ ). +noun( 'playwright', 'playwrights', count, _ ). +noun( 'plaza', 'plazas', count, _ ). +noun( 'plea', 'pleas', count, _ ). +noun( 'pleasance', 'pleasances', count, _ ). +noun( 'pleasantness', '-', mass, _ ). +noun( 'pleasantry', 'pleasantries', both, _ ). +noun( 'pleasure', 'pleasures', both, _ ). +noun( 'pleasure-boat', 'pleasure-boats', count, _ ). +noun( 'pleasure-craft', 'pleasure-crafts', count, _ ). +noun( 'pleasure-ground', 'pleasure-grounds', count, _ ). +noun( 'pleat', 'pleats', count, _ ). +noun( 'pleb', 'plebs', count, _ ). +noun( 'plebeian', 'plebeians', count, _ ). +noun( 'plebiscite', 'plebiscites', count, _ ). +noun( 'plectrum', 'plectrums', count, _ ). +noun( 'pledge', 'pledges', both, _ ). +noun( 'plenipotentiary', 'plenipotentiaries', count, _ ). +noun( 'plenitude', '-', count, _ ). +noun( 'plenty', '-', mass, _ ). +noun( 'pleonasm', 'pleonasms', both, _ ). +noun( 'plethora', 'plethoras', count, _ ). +noun( 'pleurisy', '-', mass, _ ). +noun( 'plexus', 'plexus', count, _ ). +noun( 'pliability', '-', mass, _ ). +noun( 'pliancy', '-', mass, _ ). +noun( 'plight', 'plights', count, _ ). +noun( 'plinth', 'plinths', count, _ ). +noun( 'plodder', 'plodders', count, _ ). +noun( 'plonk', 'plonks', both, _ ). +noun( 'plop', 'plops', count, _ ). +noun( 'plosive', 'plosives', count, _ ). +noun( 'plot', 'plots', count, _ ). +noun( 'plotter', 'plotters', count, _ ). +noun( 'plough', 'ploughs', both, _ ). +noun( 'ploughboy', 'ploughboys', count, _ ). +noun( 'ploughman', 'ploughmen', count, _ ). +noun( 'ploughshare', 'ploughshares', count, _ ). +noun( 'plover', 'plovers', count, _ ). +noun( 'ploy', 'ploys', count, _ ). +noun( 'pluck', 'plucks', both, _ ). +noun( 'plug', 'plugs', count, _ ). +noun( 'plughole', 'plugholes', count, _ ). +noun( 'plum', 'plums', count, _ ). +noun( 'plum-pudding', 'plum-puddings', both, _ ). +noun( 'plumage', '-', mass, _ ). +noun( 'plumb', 'plumbs', count, _ ). +noun( 'plumbago', 'plumbagos', both, _ ). +noun( 'plumber', 'plumbers', count, _ ). +noun( 'plumbing', '-', mass, _ ). +noun( 'plume', 'plumes', count, _ ). +noun( 'plummet', 'plummets', count, _ ). +noun( 'plump', 'plumps', count, _ ). +noun( 'plunder', '-', mass, _ ). +noun( 'plunderer', 'plunderers', count, _ ). +noun( 'plunge', 'plunges', count, _ ). +noun( 'plunger', 'plungers', count, _ ). +noun( 'plunk', 'plunks', count, _ ). +noun( 'pluperfect', 'pluperfects', count, _ ). +noun( 'plural', 'plurals', count, _ ). +noun( 'pluralism', '-', mass, _ ). +noun( 'pluralist', 'pluralists', count, _ ). +noun( 'plurality', 'pluralities', both, _ ). +noun( 'plus', 'pluses', count, _ ). +noun( 'plush', '-', mass, _ ). +noun( 'plutocracy', 'plutocracies', both, _ ). +noun( 'plutocrat', 'plutocrats', count, _ ). +noun( 'plutonium', '-', mass, _ ). +noun( 'ply', 'ply', count, _ ). +noun( 'plywood', '-', mass, _ ). +noun( 'pm', '-', proper, _ ). +noun( 'pneumonia', '-', mass, _ ). +noun( 'poacher', 'poachers', count, _ ). +noun( 'pock', 'pocks', count, _ ). +noun( 'pocket', 'pockets', count, _ ). +noun( 'pocket-book', 'pocket-books', count, _ ). +noun( 'pocket-handkerchief', 'pocket-handkerchiefs', count, _ ). +noun( 'pocket-knife', 'pocket-knives', count, _ ). +noun( 'pocket-money', '-', mass, _ ). +noun( 'pocketful', 'pocketfuls', count, _ ). +noun( 'pod', 'pods', count, _ ). +noun( 'podiatry', '-', mass, _ ). +noun( 'podium', 'podiums', count, _ ). +noun( 'poem', 'poems', count, _ ). +noun( 'poesy', '-', mass, _ ). +noun( 'poet', 'poets', count, _ ). +noun( 'poetess', 'poetesses', count, _ ). +noun( 'poetry', '-', mass, _ ). +noun( 'pogrom', 'pogroms', count, _ ). +noun( 'poignancy', '-', mass, _ ). +noun( 'poinsettia', 'poinsettias', count, _ ). +noun( 'point', 'points', both, _ ). +noun( 'point-duty', '-', mass, _ ). +noun( 'pointer', 'pointers', count, _ ). +noun( 'pointsman', 'pointsmen', count, _ ). +noun( 'poise', '-', mass, _ ). +noun( 'poison', 'poisons', both, _ ). +noun( 'poison-gas', 'poison-gases', both, _ ). +noun( 'poison-ivy', 'poison-ivies', both, _ ). +noun( 'poisoner', 'poisoners', count, _ ). +noun( 'poke', 'pokes', count, _ ). +noun( 'poke-bonnet', 'poke-bonnets', count, _ ). +noun( 'poker', 'pokers', both, _ ). +noun( 'poker-face', 'poker-faces', count, _ ). +noun( 'polarity', 'polarities', both, _ ). +noun( 'polarization', 'polarizations', count, _ ). +noun( 'pole', 'poles', count, _ ). +noun( 'pole-jumping', '-', mass, _ ). +noun( 'pole-star', 'pole-stars', count, _ ). +noun( 'pole-vault', 'pole-vaults', count, _ ). +noun( 'poleax', 'poleaxes', count, _ ). +noun( 'poleaxe', 'poleaxes', count, _ ). +noun( 'polecat', 'polecats', count, _ ). +noun( 'polemic', 'polemics', count, _ ). +noun( 'police-office', 'police-offices', count, _ ). +noun( 'police-officer', 'police-officers', count, _ ). +noun( 'police-station', 'police-stations', count, _ ). +noun( 'policeman', 'policemen', count, _ ). +noun( 'policewoman', 'policewomen', count, _ ). +noun( 'policy', 'policies', both, _ ). +noun( 'polio', '-', mass, _ ). +noun( 'poliomyelitis', '-', mass, _ ). +noun( 'polish', 'polishes', both, _ ). +noun( 'polisher', 'polishers', count, _ ). +noun( 'politburo', 'politburos', count, _ ). +noun( 'politeness', '-', mass, _ ). +noun( 'politician', 'politicians', count, _ ). +noun( 'politics', 'politics', mass, _ ). +noun( 'polity', 'polities', both, _ ). +noun( 'polka', 'polkas', count, _ ). +noun( 'poll', 'polls', count, _ ). +noun( 'poll', 'polls', count, _ ). +noun( 'poll-tax', 'poll-taxes', count, _ ). +noun( 'pollard', 'pollards', count, _ ). +noun( 'pollen', '-', mass, _ ). +noun( 'pollination', '-', mass, _ ). +noun( 'polling-booth', 'polling-booths', count, _ ). +noun( 'polling-day', 'polling-days', count, _ ). +noun( 'polling-station', 'polling-stations', count, _ ). +noun( 'pollster', 'pollsters', count, _ ). +noun( 'pollutant', 'pollutants', count, _ ). +noun( 'pollution', '-', mass, _ ). +noun( 'polo', '-', mass, _ ). +noun( 'polonaise', 'polonaises', count, _ ). +noun( 'polony', '-', mass, _ ). +noun( 'poltergeist', 'poltergeists', count, _ ). +noun( 'poltroon', 'poltroons', count, _ ). +noun( 'poltroonery', '-', mass, _ ). +noun( 'poly', 'polys', count, _ ). +noun( 'polyandry', '-', mass, _ ). +noun( 'polyanthus', 'polyanthuses', count, _ ). +noun( 'polygamist', 'polygamists', count, _ ). +noun( 'polygamy', '-', mass, _ ). +noun( 'polyglot', 'polyglots', count, _ ). +noun( 'polygon', 'polygons', count, _ ). +noun( 'polynomial', 'polynomials', count, _ ). +noun( 'polyp', 'polyps', count, _ ). +noun( 'polyphony', '-', mass, _ ). +noun( 'polypus', 'polypuses', count, _ ). +noun( 'polysyllable', 'polysyllables', count, _ ). +noun( 'polytechnic', 'polytechnics', count, _ ). +noun( 'polytheism', '-', mass, _ ). +noun( 'polythene', '-', mass, _ ). +noun( 'pom', 'poms', count, _ ). +noun( 'pomade', '-', mass, _ ). +noun( 'pomegranate', 'pomegranates', count, _ ). +noun( 'pomelo', 'pomelos', count, _ ). +noun( 'pommel', 'pommels', count, _ ). +noun( 'pommy', 'pommies', count, _ ). +noun( 'pomp', '-', mass, _ ). +noun( 'pompon', 'pompons', count, _ ). +noun( 'pomposity', 'pomposities', both, _ ). +noun( 'ponce', 'ponces', count, _ ). +noun( 'poncho', 'ponchos', count, _ ). +noun( 'pond', 'ponds', count, _ ). +noun( 'pone', 'pones', count, _ ). +noun( 'pongee', '-', mass, _ ). +noun( 'poniard', 'poniards', count, _ ). +noun( 'pontiff', 'pontiffs', count, _ ). +noun( 'pontificate', 'pontificates', count, _ ). +noun( 'pontoon', 'pontoons', both, _ ). +noun( 'pony', 'ponies', count, _ ). +noun( 'pony-trekking', '-', mass, _ ). +noun( 'ponytail', 'ponytails', count, _ ). +noun( 'poodle', 'poodles', count, _ ). +noun( 'poof', 'poofs', count, _ ). +noun( 'pool', 'pools', both, _ ). +noun( 'poolroom', 'poolrooms', count, _ ). +noun( 'poop', 'poops', count, _ ). +noun( 'poor-box', 'poor-boxes', count, _ ). +noun( 'poor-rate', 'poor-rates', count, _ ). +noun( 'poorhouse', 'poorhouses', count, _ ). +noun( 'poorness', '-', mass, _ ). +noun( 'pop', 'pops', both, _ ). +noun( 'pop', '-', count, _ ). +noun( 'popcorn', 'popcorns', count, _ ). +noun( 'popery', '-', mass, _ ). +noun( 'popgun', 'popguns', count, _ ). +noun( 'popinjay', 'popinjays', count, _ ). +noun( 'poplar', 'poplars', both, _ ). +noun( 'poplin', '-', mass, _ ). +noun( 'poppa', 'poppas', count, _ ). +noun( 'poppet', 'poppets', count, _ ). +noun( 'poppy', 'poppies', count, _ ). +noun( 'poppycock', '-', mass, _ ). +noun( 'populace', 'populaces', count, _ ). +noun( 'popularity', '-', mass, _ ). +noun( 'popularization', 'popularizations', both, _ ). +noun( 'population', 'populations', count, _ ). +noun( 'populism', '-', mass, _ ). +noun( 'populist', 'populists', count, _ ). +noun( 'porcelain', '-', mass, _ ). +noun( 'porch', 'porches', count, _ ). +noun( 'porcupine', 'porcupines', count, _ ). +noun( 'pore', 'pores', count, _ ). +noun( 'pork', '-', mass, _ ). +noun( 'pork-barrel', 'pork-barrels', count, _ ). +noun( 'pork-butcher', 'pork-butchers', count, _ ). +noun( 'porker', 'porkers', count, _ ). +noun( 'porn', '-', mass, _ ). +noun( 'pornographer', 'pornographers', count, _ ). +noun( 'pornography', '-', mass, _ ). +noun( 'porosity', 'porosities', both, _ ). +noun( 'porousness', '-', mass, _ ). +noun( 'porphyry', '-', mass, _ ). +noun( 'porpoise', 'porpoises', count, _ ). +noun( 'porridge', '-', mass, _ ). +noun( 'porringer', 'porringers', count, _ ). +noun( 'port', 'ports', both, _ ). +noun( 'portability', '-', mass, _ ). +noun( 'portage', 'portages', both, _ ). +noun( 'portal', 'portals', count, _ ). +noun( 'portcullis', 'portcullises', count, _ ). +noun( 'porte-coch`ere', 'porte-coch`eres', count, _ ). +noun( 'portent', 'portents', count, _ ). +noun( 'porter', 'porters', both, _ ). +noun( 'porterage', '-', mass, _ ). +noun( 'porterhouse', 'porterhouses', count, _ ). +noun( 'portfolio', 'portfolios', count, _ ). +noun( 'porthole', 'portholes', count, _ ). +noun( 'porti`ere', 'porti`eres', count, _ ). +noun( 'portico', 'porticos', count, _ ). +noun( 'portion', 'portions', count, _ ). +noun( 'portmanteau', 'portmanteaus', count, _ ). +noun( 'portrait', 'portraits', count, _ ). +noun( 'portraitist', 'portraitists', count, _ ). +noun( 'portraiture', '-', mass, _ ). +noun( 'portrayal', 'portrayals', both, _ ). +noun( 'pose', 'poses', count, _ ). +noun( 'poser', 'posers', count, _ ). +noun( 'poseur', 'poseurs', count, _ ). +noun( 'poseuse', 'poseuses', count, _ ). +noun( 'position', 'positions', both, _ ). +noun( 'positive', 'positives', count, _ ). +noun( 'positiveness', '-', mass, _ ). +noun( 'positivism', '-', mass, _ ). +noun( 'positivist', 'positivists', count, _ ). +noun( 'posse', 'posses', count, _ ). +noun( 'possession', 'possessions', both, _ ). +noun( 'possessiveness', '-', mass, _ ). +noun( 'possessor', 'possessors', count, _ ). +noun( 'posset', 'possets', count, _ ). +noun( 'possibility', 'possibilities', both, _ ). +noun( 'possible', 'possibles', count, _ ). +noun( 'possum', 'possums', count, _ ). +noun( 'post', 'posts', both, _ ). +noun( 'post-chaise', 'post-chaises', count, _ ). +noun( 'post-horse', 'post-horses', count, _ ). +noun( 'post-mortem', 'post-mortems', count, _ ). +noun( 'postage', '-', mass, _ ). +noun( 'postage-stamp', 'postage-stamps', count, _ ). +noun( 'postbag', 'postbags', count, _ ). +noun( 'postbox', 'postboxes', count, _ ). +noun( 'postcard', 'postcards', count, _ ). +noun( 'postcode', 'postcodes', count, _ ). +noun( 'poste restante', '-', mass, _ ). +noun( 'poster', 'posters', count, _ ). +noun( 'posterior', 'posteriors', count, _ ). +noun( 'posterity', '-', mass, _ ). +noun( 'postern', 'posterns', count, _ ). +noun( 'postgraduate', 'postgraduates', count, _ ). +noun( 'postilion', 'postilions', count, _ ). +noun( 'postillion', 'postillions', count, _ ). +noun( 'postman', 'postmen', count, _ ). +noun( 'postmark', 'postmarks', count, _ ). +noun( 'postmaster', 'postmasters', count, _ ). +noun( 'postmistress', 'postmistresses', count, _ ). +noun( 'postponement', 'postponements', both, _ ). +noun( 'postscript', 'postscripts', count, _ ). +noun( 'postulant', 'postulants', count, _ ). +noun( 'postulate', 'postulates', count, _ ). +noun( 'posture', 'postures', both, _ ). +noun( 'posturing', 'posturings', both, _ ). +noun( 'posy', 'posies', count, _ ). +noun( 'pot', 'pots', count, _ ). +noun( 'pot-shot', 'pot-shots', count, _ ). +noun( 'potash', '-', mass, _ ). +noun( 'potassium', '-', mass, _ ). +noun( 'potation', 'potations', count, _ ). +noun( 'potato', 'potatoes', count, _ ). +noun( 'potbelly', 'potbellies', count, _ ). +noun( 'potboiler', 'potboilers', count, _ ). +noun( 'potboy', 'potboys', count, _ ). +noun( 'poteen', '-', mass, _ ). +noun( 'potency', 'potencies', both, _ ). +noun( 'potentate', 'potentates', count, _ ). +noun( 'potential', 'potentials', both, _ ). +noun( 'potentiality', 'potentialities', both, _ ). +noun( 'pothead', 'potheads', count, _ ). +noun( 'pother', 'pothers', count, _ ). +noun( 'potherb', 'potherbs', count, _ ). +noun( 'pothole', 'potholes', count, _ ). +noun( 'potholer', 'potholers', count, _ ). +noun( 'pothook', 'pothooks', count, _ ). +noun( 'pothouse', 'pothouses', count, _ ). +noun( 'pothunter', 'pothunters', count, _ ). +noun( 'potion', 'potions', count, _ ). +noun( 'potman', 'potmen', count, _ ). +noun( 'potpourri', 'potpourris', count, _ ). +noun( 'potsherd', 'potsherds', count, _ ). +noun( 'pottage', 'pottages', both, _ ). +noun( 'potter', 'potters', count, _ ). +noun( 'potterer', 'potterers', count, _ ). +noun( 'pottery', 'potteries', both, _ ). +noun( 'potty', 'potties', count, _ ). +noun( 'pouch', 'pouches', count, _ ). +noun( 'pouf', 'poufs', count, _ ). +noun( 'pouffe', 'pouffes', count, _ ). +noun( 'poulterer', 'poulterers', count, _ ). +noun( 'poultice', 'poultices', count, _ ). +noun( 'pounce', 'pounces', count, _ ). +noun( 'pound', 'pounds', count, _ ). +noun( 'poundage', '-', mass, _ ). +noun( 'pounder', 'pounders', count, _ ). +noun( 'pout', 'pouts', count, _ ). +noun( 'poverty', '-', mass, _ ). +noun( 'powder', 'powders', both, _ ). +noun( 'powder-flask', 'powder-flasks', count, _ ). +noun( 'powder-horn', 'powder-horns', count, _ ). +noun( 'powder-magazine', 'powder-magazines', count, _ ). +noun( 'powder-puff', 'powder-puffs', count, _ ). +noun( 'powder-room', 'powder-rooms', count, _ ). +noun( 'power', 'powers', both, _ ). +noun( 'power-dive', 'power-dives', count, _ ). +noun( 'power-point', 'power-points', count, _ ). +noun( 'power-station', 'power-stations', count, _ ). +noun( 'powerboat', 'powerboats', count, _ ). +noun( 'powerhouse', 'powerhouses', count, _ ). +noun( 'powwow', 'powwows', count, _ ). +noun( 'pox', '-', count, _ ). +noun( '-', 'pp', count, _ ). +noun( 'pr_ecis', 'pr_ecis', count, _ ). +noun( 'practicability', '-', mass, _ ). +noun( 'practicality', 'practicalities', both, _ ). +noun( 'practice', 'practices', both, _ ). +noun( 'practician', 'practicians', count, _ ). +noun( 'practitioner', 'practitioners', count, _ ). +noun( 'praesidium', 'praesidiums', count, _ ). +noun( 'praetor', 'praetors', count, _ ). +noun( 'pragmatism', '-', mass, _ ). +noun( 'pragmatist', 'pragmatists', count, _ ). +noun( 'prairie', 'prairies', count, _ ). +noun( 'praise', 'praises', both, _ ). +noun( 'praiseworthiness', '-', mass, _ ). +noun( 'pram', 'prams', count, _ ). +noun( 'prance', 'prances', count, _ ). +noun( 'prank', 'pranks', count, _ ). +noun( 'prattle', '-', mass, _ ). +noun( 'prattler', 'prattlers', count, _ ). +noun( 'prawn', 'prawns', count, _ ). +noun( 'prayer', 'prayers', both, _ ). +noun( 'prayer-book', 'prayer-books', count, _ ). +noun( 'prayer-mat', 'prayer-mats', count, _ ). +noun( 'prayer-meeting', 'prayer-meetings', count, _ ). +noun( 'prayer-rug', 'prayer-rugs', count, _ ). +noun( 'prayer-wheel', 'prayer-wheels', count, _ ). +noun( 'pre-eminence', '-', mass, _ ). +noun( 'pre-emption', '-', mass, _ ). +noun( 'pre-existence', 'pre-existences', count, _ ). +noun( 'preacher', 'preachers', count, _ ). +noun( 'preamble', 'preambles', count, _ ). +noun( 'prearrangement', 'prearrangements', count, _ ). +noun( 'prebend', 'prebends', count, _ ). +noun( 'prebendary', 'prebendaries', count, _ ). +noun( 'precariousness', '-', mass, _ ). +noun( 'precaution', 'precautions', both, _ ). +noun( 'precedence', '-', mass, _ ). +noun( 'precedent', 'precedents', count, _ ). +noun( 'precentor', 'precentors', count, _ ). +noun( 'precept', 'precepts', both, _ ). +noun( 'preceptor', 'preceptors', count, _ ). +noun( 'precession', 'precessions', count, _ ). +noun( 'precinct', 'precincts', count, _ ). +noun( 'preciosity', 'preciosities', both, _ ). +noun( 'preciousness', '-', mass, _ ). +noun( 'precipice', 'precipices', count, _ ). +noun( 'precipitate', 'precipitates', count, _ ). +noun( 'precipitation', '-', mass, _ ). +noun( 'preciseness', '-', mass, _ ). +noun( 'precision', '-', mass, _ ). +noun( 'preclusion', 'preclusions', count, _ ). +noun( 'precociousness', '-', mass, _ ). +noun( 'precocity', '-', mass, _ ). +noun( 'precognition', '-', mass, _ ). +noun( 'preconception', 'preconceptions', both, _ ). +noun( 'precondition', 'preconditions', count, _ ). +noun( 'precursor', 'precursors', count, _ ). +noun( 'predator', 'predators', count, _ ). +noun( 'predecessor', 'predecessors', count, _ ). +noun( 'predestination', 'predestinations', count, _ ). +noun( 'predetermination', 'predeterminations', count, _ ). +noun( 'predicament', 'predicaments', count, _ ). +noun( 'predicate', 'predicates', count, _ ). +noun( 'predictability', '-', mass, _ ). +noun( 'prediction', 'predictions', both, _ ). +noun( 'predictor', 'predictors', count, _ ). +noun( 'predilection', 'predilections', count, _ ). +noun( 'predisposition', 'predispositions', count, _ ). +noun( 'predominance', '-', mass, _ ). +noun( 'prefab', 'prefabs', count, _ ). +noun( 'prefabrication', 'prefabrications', count, _ ). +noun( 'preface', 'prefaces', count, _ ). +noun( 'prefect', 'prefects', count, _ ). +noun( 'prefecture', 'prefectures', count, _ ). +noun( 'preference', 'preferences', both, _ ). +noun( 'preferment', '-', mass, _ ). +noun( 'prefix', 'prefixes', count, _ ). +noun( 'pregnancy', 'pregnancies', both, _ ). +noun( 'prehistory', 'prehistories', both, _ ). +noun( 'prejudgement', 'prejudgements', count, _ ). +noun( 'prejudice', 'prejudices', both, _ ). +noun( 'prelacy', 'prelacies', count, _ ). +noun( 'prelate', 'prelates', count, _ ). +noun( 'prelim', 'prelims', count, _ ). +noun( 'preliminary', 'preliminaries', count, _ ). +noun( 'prelude', 'preludes', count, _ ). +noun( 'premeditation', '-', mass, _ ). +noun( 'premi`ere', 'premi`eres', count, _ ). +noun( 'premier', 'premiers', count, _ ). +noun( 'premiership', 'premierships', count, _ ). +noun( 'premise', 'premises', count, _ ). +noun( 'premiss', 'premisses', count, _ ). +noun( 'premium', 'premiums', count, _ ). +noun( 'premonition', 'premonitions', count, _ ). +noun( 'prentice', 'prentices', count, _ ). +noun( 'preoccupation', 'preoccupations', both, _ ). +noun( 'prep', 'preps', both, _ ). +noun( 'preparation', 'preparations', both, _ ). +noun( 'preparedness', '-', mass, _ ). +noun( 'preponderance', 'preponderances', count, _ ). +noun( 'preposition', 'prepositions', count, _ ). +noun( 'prepossession', 'prepossessions', count, _ ). +noun( 'prepuce', 'prepuces', count, _ ). +noun( 'prerequisite', 'prerequisites', count, _ ). +noun( 'prerogative', 'prerogatives', count, _ ). +noun( 'presage', 'presages', count, _ ). +noun( 'presbyter', 'presbyters', count, _ ). +noun( 'presbytery', 'presbyteries', count, _ ). +noun( 'prescience', '-', mass, _ ). +noun( 'prescript', 'prescripts', count, _ ). +noun( 'prescription', 'prescriptions', both, _ ). +noun( 'presence', '-', mass, _ ). +noun( 'present', 'presents', count, _ ). +noun( 'present', '-', count, _ ). +noun( 'presentation', 'presentations', both, _ ). +noun( 'presentiment', 'presentiments', count, _ ). +noun( 'preservation', '-', mass, _ ). +noun( 'preservative', 'preservatives', count, _ ). +noun( 'preserve', 'preserves', count, _ ). +noun( 'preserver', 'preservers', count, _ ). +noun( 'presidency', 'presidencies', count, _ ). +noun( 'president', 'presidents', count, _ ). +noun( 'presidium', 'presidiums', count, _ ). +noun( 'press', 'presses', count, _ ). +noun( 'press-agency', 'press-agencies', count, _ ). +noun( 'press-agent', 'press-agents', count, _ ). +noun( 'press-box', 'press-boxes', count, _ ). +noun( 'press-clipping', 'press-clippings', count, _ ). +noun( 'press-cutting', 'press-cuttings', count, _ ). +noun( 'press-gallery', 'press-galleries', count, _ ). +noun( 'press-gang', 'press-gangs', count, _ ). +noun( 'press-lord', 'press-lords', count, _ ). +noun( 'press-photographer', 'press-photographers', count, _ ). +noun( 'press-stud', 'press-studs', count, _ ). +noun( 'press-up', 'press-ups', count, _ ). +noun( 'pressing', 'pressings', count, _ ). +noun( 'pressman', 'pressmen', count, _ ). +noun( 'pressmark', 'pressmarks', count, _ ). +noun( 'pressure', 'pressures', both, _ ). +noun( 'pressure-cooker', 'pressure-cookers', count, _ ). +noun( 'pressure-gauge', 'pressure-gauges', count, _ ). +noun( 'prestidigitation', 'prestidigitations', both, _ ). +noun( 'prestidigitator', 'prestidigitators', count, _ ). +noun( 'prestige', '-', mass, _ ). +noun( 'presumption', 'presumptions', both, _ ). +noun( 'presupposition', 'presuppositions', both, _ ). +noun( 'pretence', 'pretences', both, _ ). +noun( 'pretender', 'pretenders', count, _ ). +noun( 'pretension', 'pretensions', both, _ ). +noun( 'pretentiousness', '-', mass, _ ). +noun( 'preterit', 'preterits', count, _ ). +noun( 'preterite', 'preterites', count, _ ). +noun( 'pretext', 'pretexts', count, _ ). +noun( 'pretor', 'pretors', count, _ ). +noun( 'prettiness', '-', mass, _ ). +noun( 'pretty', 'pretties', count, _ ). +noun( 'pretzel', 'pretzels', count, _ ). +noun( 'prevalence', '-', mass, _ ). +noun( 'prevarication', 'prevarications', both, _ ). +noun( 'preventative', 'preventatives', count, _ ). +noun( 'prevention', '-', mass, _ ). +noun( 'preview', 'previews', count, _ ). +noun( 'prevision', 'previsions', both, _ ). +noun( 'prey', '-', count, _ ). +noun( 'price', 'prices', both, _ ). +noun( 'price-control', 'price-controls', count, _ ). +noun( 'pricelist', 'pricelists', count, _ ). +noun( 'prick', 'pricks', count, _ ). +noun( 'pricker', 'prickers', count, _ ). +noun( 'pricking', 'prickings', count, _ ). +noun( 'prickle', 'prickles', count, _ ). +noun( 'pride', 'prides', both, _ ). +noun( 'prie-dieu', 'prie-dieus', count, _ ). +noun( 'priest', 'priests', count, _ ). +noun( 'priestcraft', '-', mass, _ ). +noun( 'priestess', 'priestesses', count, _ ). +noun( 'priesthood', 'priesthoods', count, _ ). +noun( 'prig', 'prigs', count, _ ). +noun( 'priggishness', '-', mass, _ ). +noun( 'prima ballerina', 'prima ballerinas', count, _ ). +noun( 'prima donna', 'prima donnas', count, _ ). +noun( 'primacy', 'primacies', count, _ ). +noun( 'primary', 'primaries', count, _ ). +noun( 'primate', 'primates', count, _ ). +noun( 'prime', '-', mass, _ ). +noun( 'primer', 'primers', count, _ ). +noun( 'priming', 'primings', count, _ ). +noun( 'primitive', 'primitives', count, _ ). +noun( 'primitiveness', '-', mass, _ ). +noun( 'primness', '-', mass, _ ). +noun( 'primogeniture', '-', mass, _ ). +noun( 'primrose', 'primroses', count, _ ). +noun( 'primula', 'primulas', count, _ ). +noun( 'primus', 'primuses', count, _ ). +noun( 'prince', 'princes', count, _ ). +noun( 'princedom', 'princedoms', count, _ ). +noun( 'princess', 'princesses', count, _ ). +noun( 'principal', 'principals', count, _ ). +noun( 'principality', 'principalities', count, _ ). +noun( 'principle', 'principles', count, _ ). +noun( 'print', 'prints', both, _ ). +noun( 'print-seller', 'print-sellers', count, _ ). +noun( 'print-shop', 'print-shops', count, _ ). +noun( 'printer', 'printers', count, _ ). +noun( 'printing', 'printings', both, _ ). +noun( 'printing-ink', 'printing-inks', count, _ ). +noun( 'printing-press', 'printing-presses', count, _ ). +noun( 'printout', 'printouts', count, _ ). +noun( 'prior', 'priors', count, _ ). +noun( 'prioress', 'prioresses', count, _ ). +noun( 'priority', 'priorities', both, _ ). +noun( 'priory', 'priories', count, _ ). +noun( 'prism', 'prisms', count, _ ). +noun( 'prison', 'prisons', both, _ ). +noun( 'prison-breaking', 'prison-breakings', both, _ ). +noun( 'prisoner', 'prisoners', count, _ ). +noun( 'privacy', '-', mass, _ ). +noun( 'private', 'privates', count, _ ). +noun( 'privateer', 'privateers', count, _ ). +noun( 'privation', 'privations', both, _ ). +noun( 'privet', '-', mass, _ ). +noun( 'privilege', 'privileges', both, _ ). +noun( 'privy', 'privies', count, _ ). +noun( 'prize', 'prizes', count, _ ). +noun( 'prize-fight', 'prize-fights', count, _ ). +noun( 'prize-money', '-', mass, _ ). +noun( 'prize-ring', 'prize-rings', count, _ ). +noun( 'pro', 'pros', count, _ ). +noun( 'probability', 'probabilities', both, _ ). +noun( 'probable', 'probables', count, _ ). +noun( 'probate', 'probates', both, _ ). +noun( 'probation', '-', mass, _ ). +noun( 'probationer', 'probationers', count, _ ). +noun( 'probe', 'probes', count, _ ). +noun( 'probity', '-', mass, _ ). +noun( 'problem', 'problems', count, _ ). +noun( 'proboscis', 'proboscises', count, _ ). +noun( 'procedure', 'procedures', both, _ ). +noun( 'proceeding', 'proceedings', both, _ ). +noun( 'process', 'processes', both, _ ). +noun( 'process-server', 'process-servers', count, _ ). +noun( 'procession', 'processions', both, _ ). +noun( 'processor', 'processors', count, _ ). +noun( 'proclamation', 'proclamations', both, _ ). +noun( 'proclivity', 'proclivities', count, _ ). +noun( 'proconsul', 'proconsuls', count, _ ). +noun( 'proconsulate', 'proconsulates', count, _ ). +noun( 'procrastination', '-', mass, _ ). +noun( 'procreation', 'procreations', count, _ ). +noun( 'proctor', 'proctors', count, _ ). +noun( 'procurator', 'procurators', count, _ ). +noun( 'procurement', 'procurements', count, _ ). +noun( 'procurer', 'procurers', count, _ ). +noun( 'procuress', 'procuresses', count, _ ). +noun( 'prod', 'prods', count, _ ). +noun( 'prodigal', 'prodigals', count, _ ). +noun( 'prodigality', '-', mass, _ ). +noun( 'prodigy', 'prodigies', count, _ ). +noun( 'produce', '-', mass, _ ). +noun( 'producer', 'producers', count, _ ). +noun( 'product', 'products', count, _ ). +noun( 'production', 'productions', both, _ ). +noun( 'productivity', '-', mass, _ ). +noun( 'profanation', 'profanations', both, _ ). +noun( 'profaneness', '-', mass, _ ). +noun( 'profanity', 'profanities', both, _ ). +noun( 'profession', 'professions', count, _ ). +noun( 'professional', 'professionals', count, _ ). +noun( 'professionalism', '-', mass, _ ). +noun( 'professor', 'professors', count, _ ). +noun( 'professorship', 'professorships', count, _ ). +noun( 'proffer', 'proffers', count, _ ). +noun( 'proficiency', '-', mass, _ ). +noun( 'profile', 'profiles', both, _ ). +noun( 'profit', 'profits', both, _ ). +noun( 'profit-margin', 'profit-margins', count, _ ). +noun( 'profit-sharing', '-', mass, _ ). +noun( 'profiteer', 'profiteers', count, _ ). +noun( 'profligacy', '-', mass, _ ). +noun( 'profligate', 'profligates', count, _ ). +noun( 'profundity', 'profundities', both, _ ). +noun( 'profuseness', '-', mass, _ ). +noun( 'profusion', '-', mass, _ ). +noun( 'progenitor', 'progenitors', count, _ ). +noun( 'prognosis', 'prognoses', count, _ ). +noun( 'prognostic', 'prognostics', count, _ ). +noun( 'prognostication', 'prognostications', both, _ ). +noun( 'program', 'programs', count, _ ). +noun( 'programme', 'programmes', count, _ ). +noun( 'programmer', 'programmers', count, _ ). +noun( 'progress', 'progresses', both, _ ). +noun( 'progression', '-', mass, _ ). +noun( 'progressive', 'progressives', count, _ ). +noun( 'progressiveness', '-', mass, _ ). +noun( 'prohibition', 'prohibitions', both, _ ). +noun( 'prohibitionist', 'prohibitionists', count, _ ). +noun( 'project', 'projects', count, _ ). +noun( 'projectile', 'projectiles', count, _ ). +noun( 'projection', 'projections', both, _ ). +noun( 'projectionist', 'projectionists', count, _ ). +noun( 'projector', 'projectors', count, _ ). +noun( 'prolapse', 'prolapses', count, _ ). +noun( 'prole', 'proles', count, _ ). +noun( 'proletarian', 'proletarians', count, _ ). +noun( 'proletariat', 'proletariats', count, _ ). +noun( 'proliferation', 'proliferations', count, _ ). +noun( 'prolixity', '-', mass, _ ). +noun( 'prologue', 'prologues', count, _ ). +noun( 'prolongation', 'prolongations', both, _ ). +noun( 'prom', 'proms', count, _ ). +noun( 'promenade', 'promenades', count, _ ). +noun( 'prominence', 'prominences', both, _ ). +noun( 'promiscuity', '-', mass, _ ). +noun( 'promise', 'promises', both, _ ). +noun( 'promontory', 'promontories', count, _ ). +noun( 'promoter', 'promoters', count, _ ). +noun( 'promotion', 'promotions', both, _ ). +noun( 'prompt', 'prompts', count, _ ). +noun( 'prompt-box', 'prompt-boxes', count, _ ). +noun( 'prompt-copy', 'prompt-copies', count, _ ). +noun( 'prompter', 'prompters', count, _ ). +noun( 'prompting', 'promptings', count, _ ). +noun( 'promptitude', '-', mass, _ ). +noun( 'promptness', '-', mass, _ ). +noun( 'promulgation', '-', mass, _ ). +noun( 'proneness', '-', mass, _ ). +noun( 'prong', 'prongs', count, _ ). +noun( 'pronoun', 'pronouns', count, _ ). +noun( 'pronouncement', 'pronouncements', count, _ ). +noun( 'pronunciamento', 'pronunciamentos', count, _ ). +noun( 'pronunciation', 'pronunciations', both, _ ). +noun( 'proof', 'proofs', both, _ ). +noun( 'proofreader', 'proofreaders', count, _ ). +noun( 'prop', 'props', count, _ ). +noun( 'propaganda', '-', mass, _ ). +noun( 'propagandist', 'propagandists', count, _ ). +noun( 'propagation', '-', mass, _ ). +noun( 'propagator', 'propagators', count, _ ). +noun( 'propane', '-', mass, _ ). +noun( 'propellant', 'propellants', both, _ ). +noun( 'propellent', 'propellents', both, _ ). +noun( 'propeller', 'propellers', count, _ ). +noun( 'propensity', 'propensities', both, _ ). +noun( 'property', 'properties', both, _ ). +noun( 'property-man', 'property-men', count, _ ). +noun( 'property-master', 'property-masters', count, _ ). +noun( 'prophecy', 'prophecies', both, _ ). +noun( 'prophet', 'prophets', count, _ ). +noun( 'prophetess', 'prophetesses', count, _ ). +noun( 'prophylactic', 'prophylactics', count, _ ). +noun( 'prophylaxis', '-', mass, _ ). +noun( 'propinquity', '-', mass, _ ). +noun( 'propitiation', '-', mass, _ ). +noun( 'proponent', 'proponents', count, _ ). +noun( 'proportion', 'proportions', both, _ ). +noun( 'proportionality', '-', mass, _ ). +noun( 'proposal', 'proposals', both, _ ). +noun( 'proposer', 'proposers', count, _ ). +noun( 'proposition', 'propositions', count, _ ). +noun( 'proprietor', 'proprietors', count, _ ). +noun( 'proprietress', 'proprietresses', count, _ ). +noun( 'propriety', 'proprieties', both, _ ). +noun( 'propulsion', '-', mass, _ ). +noun( 'prorogation', 'prorogations', count, _ ). +noun( 'proscenium', 'prosceniums', count, _ ). +noun( 'proscription', 'proscriptions', both, _ ). +noun( 'prose', '-', mass, _ ). +noun( 'prosecution', 'prosecutions', both, _ ). +noun( 'prosecutor', 'prosecutors', count, _ ). +noun( 'proselyte', 'proselytes', count, _ ). +noun( 'prosiness', '-', mass, _ ). +noun( 'prosody', '-', mass, _ ). +noun( 'prospect', 'prospects', both, _ ). +noun( 'prospector', 'prospectors', count, _ ). +noun( 'prospectus', 'prospectuses', count, _ ). +noun( 'prosperity', '-', mass, _ ). +noun( 'prostate', 'prostates', count, _ ). +noun( 'prostitute', 'prostitutes', count, _ ). +noun( 'prostitution', '-', mass, _ ). +noun( 'prostration', 'prostrations', both, _ ). +noun( 'prot_eg_e', 'prot_eg_es', count, _ ). +noun( 'prot_eg_ee', 'prot_eg_ees', count, _ ). +noun( 'protagonist', 'protagonists', count, _ ). +noun( 'protection', 'protections', both, _ ). +noun( 'protectionism', '-', mass, _ ). +noun( 'protectionist', 'protectionists', count, _ ). +noun( 'protector', 'protectors', count, _ ). +noun( 'protectorate', 'protectorates', count, _ ). +noun( 'protein', 'proteins', both, _ ). +noun( 'protest', 'protests', both, _ ). +noun( 'protestation', 'protestations', count, _ ). +noun( 'protester', 'protesters', count, _ ). +noun( 'protocol', 'protocols', both, _ ). +noun( 'proton', 'protons', count, _ ). +noun( 'protoplasm', '-', mass, _ ). +noun( 'prototype', 'prototypes', count, _ ). +noun( 'protraction', 'protractions', both, _ ). +noun( 'protractor', 'protractors', count, _ ). +noun( 'protrusion', 'protrusions', both, _ ). +noun( 'protuberance', 'protuberances', both, _ ). +noun( 'provenance', '-', mass, _ ). +noun( 'provender', '-', mass, _ ). +noun( 'proverb', 'proverbs', count, _ ). +noun( 'providence', '-', mass, _ ). +noun( 'provider', 'providers', count, _ ). +noun( 'province', 'provinces', count, _ ). +noun( 'provincial', 'provincials', count, _ ). +noun( 'provincialism', 'provincialisms', both, _ ). +noun( 'provision', 'provisions', both, _ ). +noun( 'proviso', 'provisos', count, _ ). +noun( 'provocation', 'provocations', both, _ ). +noun( 'provost', 'provosts', count, _ ). +noun( 'prow', 'prows', count, _ ). +noun( 'prowess', '-', mass, _ ). +noun( 'prowl', 'prowls', count, _ ). +noun( 'prowler', 'prowlers', count, _ ). +noun( 'proximity', '-', mass, _ ). +noun( 'proxy', 'proxies', both, _ ). +noun( 'prude', 'prudes', count, _ ). +noun( 'prudence', '-', mass, _ ). +noun( 'prudery', 'pruderies', both, _ ). +noun( 'prune', 'prunes', count, _ ). +noun( 'pruning', '-', mass, _ ). +noun( 'pruning-hook', 'pruning-hooks', count, _ ). +noun( 'pruning-knife', 'pruning-knives', count, _ ). +noun( 'pruning-saw', 'pruning-saws', count, _ ). +noun( 'prurience', '-', mass, _ ). +noun( 'pruriency', '-', mass, _ ). +noun( 'psalm', 'psalms', count, _ ). +noun( 'psalmist', 'psalmists', count, _ ). +noun( 'psalmody', 'psalmodies', both, _ ). +noun( 'psalter', 'psalters', count, _ ). +noun( 'psaltery', 'psalteries', count, _ ). +noun( 'psephologist', 'psephologists', count, _ ). +noun( 'psephology', '-', mass, _ ). +noun( 'pseud', 'pseuds', count, _ ). +noun( 'pseudo', 'pseudos', count, _ ). +noun( 'pseudonym', 'pseudonyms', count, _ ). +noun( 'psittacosis', '-', mass, _ ). +noun( 'psyche', 'psyches', count, _ ). +noun( 'psychiatrist', 'psychiatrists', count, _ ). +noun( 'psychiatry', '-', mass, _ ). +noun( 'psychic', 'psychics', count, _ ). +noun( 'psychoanalysis', '-', mass, _ ). +noun( 'psychoanalyst', 'psychoanalysts', count, _ ). +noun( 'psychologist', 'psychologists', count, _ ). +noun( 'psychology', 'psychologies', both, _ ). +noun( 'psychopath', 'psychopaths', count, _ ). +noun( 'psychosis', 'psychoses', count, _ ). +noun( 'psychotherapy', '-', mass, _ ). +noun( 'psychotic', 'psychotics', count, _ ). +noun( 'pt', 'pt', count, _ ). +noun( 'ptarmigan', 'ptarmigans', count, _ ). +noun( 'pterodactyl', 'pterodactyls', count, _ ). +noun( 'ptomaine', 'ptomaines', count, _ ). +noun( 'pub', 'pubs', count, _ ). +noun( 'pub-crawl', 'pub-crawls', count, _ ). +noun( 'puberty', '-', mass, _ ). +noun( 'public', 'publics', count, _ ). +noun( 'publican', 'publicans', count, _ ). +noun( 'publication', 'publications', both, _ ). +noun( 'publicist', 'publicists', count, _ ). +noun( 'publicity', '-', mass, _ ). +noun( 'publisher', 'publishers', count, _ ). +noun( 'puce', '-', mass, _ ). +noun( 'puck', 'pucks', count, _ ). +noun( 'pucker', 'puckers', count, _ ). +noun( 'pud', '-', mass, _ ). +noun( 'pudden', 'puddens', count, _ ). +noun( 'pudden-head', 'pudden-heads', count, _ ). +noun( 'pudding', 'puddings', both, _ ). +noun( 'pudding-face', 'pudding-faces', count, _ ). +noun( 'puddle', 'puddles', both, _ ). +noun( 'puddler', 'puddlers', count, _ ). +noun( 'pueblo', 'pueblos', count, _ ). +noun( 'puerility', 'puerilities', both, _ ). +noun( 'puff', 'puffs', count, _ ). +noun( 'puffball', 'puffballs', count, _ ). +noun( 'puffin', 'puffins', count, _ ). +noun( 'puffiness', '-', mass, _ ). +noun( 'pug', 'pugs', count, _ ). +noun( 'pug-dog', 'pug-dogs', count, _ ). +noun( 'pug-nose', 'pug-noses', count, _ ). +noun( 'pugilism', '-', mass, _ ). +noun( 'pugilist', 'pugilists', count, _ ). +noun( 'pugnacity', '-', mass, _ ). +noun( 'puissance', '-', mass, _ ). +noun( 'puke', '-', mass, _ ). +noun( 'pulchritude', '-', mass, _ ). +noun( 'pull', 'pulls', both, _ ). +noun( 'pull-in', 'pull-ins', count, _ ). +noun( 'pull-off', 'pull-offs', count, _ ). +noun( 'pull-out', 'pull-outs', count, _ ). +noun( 'pull-through', 'pull-throughs', count, _ ). +noun( 'pull-up', 'pull-ups', count, _ ). +noun( 'pullet', 'pullets', count, _ ). +noun( 'pulley', 'pulleys', count, _ ). +noun( 'pulley-block', 'pulley-blocks', count, _ ). +noun( 'pullover', 'pullovers', count, _ ). +noun( 'pulp', 'pulps', both, _ ). +noun( 'pulpit', 'pulpits', count, _ ). +noun( 'pulque', '-', mass, _ ). +noun( 'pulsar', 'pulsars', count, _ ). +noun( 'pulsation', 'pulsations', both, _ ). +noun( 'pulse', 'pulses', both, _ ). +noun( 'puma', 'pumas', count, _ ). +noun( 'pumice', '-', mass, _ ). +noun( 'pumice-stone', 'pumice-stones', count, _ ). +noun( 'pump', 'pumps', count, _ ). +noun( 'pump-room', 'pump-rooms', count, _ ). +noun( 'pumpernickel', '-', mass, _ ). +noun( 'pumpkin', 'pumpkins', count, _ ). +noun( 'pun', 'puns', count, _ ). +noun( 'punch', 'punches', both, _ ). +noun( 'punch-up', 'punch-ups', count, _ ). +noun( 'punchball', 'punchballs', count, _ ). +noun( 'punchbowl', 'punchbowls', count, _ ). +noun( 'punching-ball', 'punching-balls', count, _ ). +noun( 'punctilio', 'punctilios', both, _ ). +noun( 'punctiliousness', '-', mass, _ ). +noun( 'punctuality', '-', mass, _ ). +noun( 'punctuation', '-', mass, _ ). +noun( 'puncture', 'punctures', count, _ ). +noun( 'pundit', 'pundits', count, _ ). +noun( 'pungency', '-', mass, _ ). +noun( 'punishment', 'punishments', both, _ ). +noun( 'punk', 'punks', both, _ ). +noun( 'punkah', 'punkahs', count, _ ). +noun( 'punnet', 'punnets', count, _ ). +noun( 'punster', 'punsters', count, _ ). +noun( 'punt', 'punts', count, _ ). +noun( 'punter', 'punters', count, _ ). +noun( 'pup', 'pups', count, _ ). +noun( 'pupa', 'pupas', count, _ ). +noun( 'pupil', 'pupils', count, _ ). +noun( 'puppet', 'puppets', count, _ ). +noun( 'puppeteer', 'puppeteers', count, _ ). +noun( 'puppy', 'puppies', count, _ ). +noun( 'pur_ee', 'pur_ees', count, _ ). +noun( 'purchase', 'purchases', both, _ ). +noun( 'purchaser', 'purchasers', count, _ ). +noun( 'purdah', '-', mass, _ ). +noun( 'pureness', '-', mass, _ ). +noun( 'purgation', '-', mass, _ ). +noun( 'purgative', 'purgatives', count, _ ). +noun( 'purgatory', 'purgatories', count, _ ). +noun( 'purge', 'purges', count, _ ). +noun( 'purification', 'purifications', both, _ ). +noun( 'purifier', 'purifiers', count, _ ). +noun( 'purist', 'purists', count, _ ). +noun( 'puritan', 'puritans', count, _ ). +noun( 'puritanism', '-', mass, _ ). +noun( 'purity', '-', mass, _ ). +noun( 'purl', 'purls', count, _ ). +noun( 'purple', 'purples', both, _ ). +noun( 'purport', '-', mass, _ ). +noun( 'purpose', 'purposes', both, _ ). +noun( 'purr', 'purrs', count, _ ). +noun( 'purse', 'purses', count, _ ). +noun( 'purser', 'pursers', count, _ ). +noun( 'pursuance', 'pursuances', count, _ ). +noun( 'pursuer', 'pursuers', count, _ ). +noun( 'pursuit', 'pursuits', both, _ ). +noun( 'purulence', '-', mass, _ ). +noun( 'purveyance', 'purveyances', both, _ ). +noun( 'purveyor', 'purveyors', count, _ ). +noun( 'purview', 'purviews', count, _ ). +noun( 'pus', '-', mass, _ ). +noun( 'push', 'pushes', both, _ ). +noun( 'push-bike', 'push-bikes', count, _ ). +noun( 'pushcart', 'pushcarts', count, _ ). +noun( 'pushchair', 'pushchairs', count, _ ). +noun( 'pusher', 'pushers', count, _ ). +noun( 'pushover', 'pushovers', count, _ ). +noun( 'pusillanimity', '-', mass, _ ). +noun( 'puss', '-', count, _ ). +noun( 'pussy', 'pussies', count, _ ). +noun( 'pussycat', 'pussycats', count, _ ). +noun( 'pustule', 'pustules', count, _ ). +noun( 'put', 'puts', count, _ ). +noun( 'put-down', 'put-downs', count, _ ). +noun( 'put-on', 'put-ons', count, _ ). +noun( 'putrefaction', 'putrefactions', count, _ ). +noun( 'putrescence', 'putrescences', count, _ ). +noun( 'putridity', '-', mass, _ ). +noun( 'putsch', 'putsches', count, _ ). +noun( 'putt', 'putts', count, _ ). +noun( 'puttee', 'puttees', count, _ ). +noun( 'putting-green', 'putting-greens', count, _ ). +noun( 'putting-iron', 'putting-irons', count, _ ). +noun( 'putty', '-', mass, _ ). +noun( 'puzzle', 'puzzles', count, _ ). +noun( 'puzzlement', 'puzzlements', count, _ ). +noun( 'puzzler', 'puzzlers', count, _ ). +noun( 'pygmy', 'pygmies', count, _ ). +noun( 'pylon', 'pylons', count, _ ). +noun( 'pyorrhoea', '-', mass, _ ). +noun( 'pyramid', 'pyramids', count, _ ). +noun( 'pyre', 'pyres', count, _ ). +noun( 'pyrites', '-', mass, _ ). +noun( 'python', 'pythons', count, _ ). +noun( 'pyx', 'pyxes', count, _ ). +noun( 'q', '-', count, _ ). +noun( 'qt', 'qt', count, _ ). +noun( 'quack', 'quacks', count, _ ). +noun( 'quack-quack', 'quack-quacks', count, _ ). +noun( 'quackery', '-', mass, _ ). +noun( 'quad', 'quads', count, _ ). +noun( 'quadrangle', 'quadrangles', count, _ ). +noun( 'quadrant', 'quadrants', count, _ ). +noun( 'quadrilateral', 'quadrilaterals', count, _ ). +noun( 'quadrille', 'quadrilles', count, _ ). +noun( 'quadrillion', 'quadrillions', count, _ ). +noun( 'quadrophony', '-', mass, _ ). +noun( 'quadruped', 'quadrupeds', count, _ ). +noun( 'quadruple', 'quadruples', count, _ ). +noun( 'quadruplet', 'quadruplets', count, _ ). +noun( 'quadruplicate', 'quadruplicates', count, _ ). +noun( 'quagga', 'quaggas', count, _ ). +noun( 'quagmire', 'quagmires', count, _ ). +noun( 'quail', 'quails', count, _ ). +noun( 'quaintness', '-', mass, _ ). +noun( 'quake', 'quakes', count, _ ). +noun( 'qualification', 'qualifications', both, _ ). +noun( 'qualifier', 'qualifiers', count, _ ). +noun( 'quality', 'qualities', both, _ ). +noun( 'qualm', 'qualms', count, _ ). +noun( 'quandary', 'quandaries', count, _ ). +noun( 'quango', 'quangos', count, _ ). +noun( 'quantity', 'quantities', both, _ ). +noun( 'quantum', 'quanta', count, _ ). +noun( 'quarantine', '-', mass, _ ). +noun( 'quark', 'quarks', count, _ ). +noun( 'quarrel', 'quarrels', count, _ ). +noun( 'quarry', 'quarries', count, _ ). +noun( 'quarryman', 'quarrymen', count, _ ). +noun( 'quart', 'quarts', count, _ ). +noun( 'quarter', 'quarters', both, _ ). +noun( 'quarter-day', 'quarter-days', count, _ ). +noun( 'quarter-deck', 'quarter-decks', count, _ ). +noun( 'quarter-plate', 'quarter-plates', count, _ ). +noun( 'quarterfinal', 'quarterfinals', count, _ ). +noun( 'quartering', 'quarterings', count, _ ). +noun( 'quarterlight', 'quarterlights', count, _ ). +noun( 'quarterly', 'quarterlies', count, _ ). +noun( 'quartermaster', 'quartermasters', count, _ ). +noun( 'quartermaster-general', 'quartermaster-generals', count, _ ). +noun( 'quarterstaff', 'quarterstaffs', count, _ ). +noun( 'quartet', 'quartets', count, _ ). +noun( 'quarto', 'quartos', count, _ ). +noun( 'quartz', '-', mass, _ ). +noun( 'quasar', 'quasars', count, _ ). +noun( 'quassia', '-', mass, _ ). +noun( 'quatercentenary', 'quatercentenaries', count, _ ). +noun( 'quatrain', 'quatrains', count, _ ). +noun( 'quattrocento', 'quattrocentos', count, _ ). +noun( 'quaver', 'quavers', count, _ ). +noun( 'quay', 'quays', count, _ ). +noun( 'queasiness', '-', mass, _ ). +noun( 'queen', 'queens', count, _ ). +noun( 'queer', 'queers', count, _ ). +noun( 'queerness', '-', mass, _ ). +noun( 'quern', 'querns', count, _ ). +noun( 'querulousness', '-', mass, _ ). +noun( 'query', 'queries', count, _ ). +noun( 'quest', 'quests', count, _ ). +noun( 'question', 'questions', both, _ ). +noun( 'question-mark', 'question-marks', count, _ ). +noun( 'question-master', 'question-masters', count, _ ). +noun( 'questioner', 'questioners', count, _ ). +noun( 'questionnaire', 'questionnaires', count, _ ). +noun( 'quetzal', 'quetzals', count, _ ). +noun( 'queue', 'queues', count, _ ). +noun( 'qui vive', '-', mass, _ ). +noun( 'quibble', 'quibbles', count, _ ). +noun( 'quibbler', 'quibblers', count, _ ). +noun( 'quiche', 'quiches', count, _ ). +noun( 'quick', '-', mass, _ ). +noun( 'quickie', 'quickies', count, _ ). +noun( 'quicklime', '-', mass, _ ). +noun( 'quickness', '-', mass, _ ). +noun( 'quicksand', 'quicksands', both, _ ). +noun( 'quicksilver', '-', mass, _ ). +noun( 'quickstep', 'quicksteps', count, _ ). +noun( 'quid', 'quid', count, _ ). +noun( 'quid pro quo', '-', count, _ ). +noun( 'quiescence', '-', count, _ ). +noun( 'quiet', '-', mass, _ ). +noun( 'quietism', '-', mass, _ ). +noun( 'quietist', 'quietists', count, _ ). +noun( 'quietness', '-', mass, _ ). +noun( 'quietude', '-', count, _ ). +noun( 'quietus', 'quietuses', count, _ ). +noun( 'quiff', 'quiffs', count, _ ). +noun( 'quill', 'quills', count, _ ). +noun( 'quill-feather', 'quill-feathers', count, _ ). +noun( 'quilt', 'quilts', count, _ ). +noun( 'quin', 'quins', count, _ ). +noun( 'quince', 'quinces', count, _ ). +noun( 'quincentenary', 'quincentenaries', count, _ ). +noun( 'quinine', '-', mass, _ ). +noun( 'quinsy', '-', mass, _ ). +noun( 'quintal', 'quintals', count, _ ). +noun( 'quintessence', 'quintessences', count, _ ). +noun( 'quintet', 'quintets', count, _ ). +noun( 'quintuplet', 'quintuplets', count, _ ). +noun( 'quip', 'quips', count, _ ). +noun( 'quire', 'quires', count, _ ). +noun( 'quirk', 'quirks', count, _ ). +noun( 'quisling', 'quislings', count, _ ). +noun( 'quittance', 'quittances', count, _ ). +noun( 'quitter', 'quitters', count, _ ). +noun( 'quiver', 'quivers', count, _ ). +noun( 'quiz', 'quizes', count, _ ). +noun( 'quizmaster', 'quizmasters', count, _ ). +noun( 'quoin', 'quoins', count, _ ). +noun( 'quoit', 'quoits', count, _ ). +noun( 'quorum', 'quorums', count, _ ). +noun( 'quota', 'quotas', count, _ ). +noun( 'quotability', '-', mass, _ ). +noun( 'quotation', 'quotations', both, _ ). +noun( 'quote', 'quotes', count, _ ). +noun( 'quotient', 'quotients', count, _ ). +noun( 'qv', '-', proper, _ ). +noun( 'r', '-', count, _ ). +noun( 'r^ole', 'r^oles', count, _ ). +noun( 'r_echauff_e', 'r_echauff_es', count, _ ). +noun( 'r_egime', 'r_egimes', count, _ ). +noun( 'r_esum_e', 'r_esum_es', count, _ ). +noun( 'rabbi', 'rabbis', count, _ ). +noun( 'rabbit', 'rabbits', count, _ ). +noun( 'rabbit-burrow', 'rabbit-burrows', count, _ ). +noun( 'rabbit-hole', 'rabbit-holes', count, _ ). +noun( 'rabbit-hutch', 'rabbit-hutches', count, _ ). +noun( 'rabbit-punch', 'rabbit-punches', count, _ ). +noun( 'rabbit-warren', 'rabbit-warrens', count, _ ). +noun( 'rabble', 'rabbles', count, _ ). +noun( 'rabies', '-', mass, _ ). +noun( 'raccoon', 'raccoons', count, _ ). +noun( 'race', 'races', both, _ ). +noun( 'race-meeting', 'race-meetings', count, _ ). +noun( 'racecard', 'racecards', count, _ ). +noun( 'racecourse', 'racecourses', count, _ ). +noun( 'racehorse', 'racehorses', count, _ ). +noun( 'raceme', 'racemes', count, _ ). +noun( 'racer', 'racers', count, _ ). +noun( 'racialism', '-', mass, _ ). +noun( 'racialist', 'racialists', count, _ ). +noun( 'raciness', '-', mass, _ ). +noun( 'racing', '-', mass, _ ). +noun( 'racism', '-', mass, _ ). +noun( 'racist', 'racists', count, _ ). +noun( 'rack', 'racks', both, _ ). +noun( 'rack-railway', 'rack-railways', count, _ ). +noun( 'rack-rent', 'rack-rents', count, _ ). +noun( 'racket', 'rackets', both, _ ). +noun( 'racketeer', 'racketeers', count, _ ). +noun( 'racketeering', '-', mass, _ ). +noun( 'raconteur', 'raconteurs', count, _ ). +noun( 'racoon', 'racoons', count, _ ). +noun( 'racquet', 'racquets', count, _ ). +noun( 'radar', '-', mass, _ ). +noun( 'radial', 'radials', count, _ ). +noun( 'radiance', '-', mass, _ ). +noun( 'radiation', 'radiations', both, _ ). +noun( 'radiator', 'radiators', count, _ ). +noun( 'radical', 'radicals', count, _ ). +noun( 'radicalism', '-', mass, _ ). +noun( 'radicle', 'radicles', count, _ ). +noun( 'radio', 'radios', both, _ ). +noun( 'radio-gramophone', 'radio-gramophones', count, _ ). +noun( 'radio-location', 'radio-locations', count, _ ). +noun( 'radio-set', 'radio-sets', count, _ ). +noun( 'radio-telescope', 'radio-telescopes', count, _ ). +noun( 'radioactivity', '-', mass, _ ). +noun( 'radiogram', 'radiograms', count, _ ). +noun( 'radiograph', 'radiographs', count, _ ). +noun( 'radiographer', 'radiographers', count, _ ). +noun( 'radiography', '-', mass, _ ). +noun( 'radioisotope', 'radioisotopes', count, _ ). +noun( 'radiologist', 'radiologists', count, _ ). +noun( 'radiology', '-', mass, _ ). +noun( 'radiotherapist', 'radiotherapists', count, _ ). +noun( 'radiotherapy', '-', mass, _ ). +noun( 'radish', 'radishes', count, _ ). +noun( 'radium', '-', mass, _ ). +noun( 'radius', 'radii', count, _ ). +noun( 'raffia', '-', mass, _ ). +noun( 'raffle', 'raffles', count, _ ). +noun( 'raft', 'rafts', count, _ ). +noun( 'rafter', 'rafters', count, _ ). +noun( 'raftsman', 'raftsmen', count, _ ). +noun( 'rag', 'rags', count, _ ). +noun( 'rag-day', 'rag-days', count, _ ). +noun( 'ragamuffin', 'ragamuffins', count, _ ). +noun( 'ragbag', 'ragbags', count, _ ). +noun( 'rage', 'rages', both, _ ). +noun( 'raggedness', '-', mass, _ ). +noun( 'raglan', 'raglans', count, _ ). +noun( 'ragout', 'ragouts', both, _ ). +noun( 'ragtag', 'ragtags', count, _ ). +noun( 'ragtime', '-', mass, _ ). +noun( 'raid', 'raids', count, _ ). +noun( 'raider', 'raiders', count, _ ). +noun( 'rail', 'rails', count, _ ). +noun( 'railcar', 'railcars', count, _ ). +noun( 'railhead', 'railheads', count, _ ). +noun( 'railing', 'railings', both, _ ). +noun( 'raillery', 'railleries', both, _ ). +noun( 'railroad', 'railroads', count, _ ). +noun( 'railway', 'railways', count, _ ). +noun( 'railwayman', 'railwaymen', count, _ ). +noun( 'raiment', '-', mass, _ ). +noun( 'rain', 'rains', both, _ ). +noun( 'rain-gauge', 'rain-gauges', count, _ ). +noun( 'rainbow', 'rainbows', count, _ ). +noun( 'raincoat', 'raincoats', count, _ ). +noun( 'raindrop', 'raindrops', count, _ ). +noun( 'rainfall', 'rainfalls', both, _ ). +noun( 'rainwater', '-', mass, _ ). +noun( 'raise', 'raises', count, _ ). +noun( 'raiser', 'raisers', count, _ ). +noun( 'raisin', 'raisins', count, _ ). +noun( 'raison d\'^etre', 'raisons d\'^etre', count, _ ). +noun( 'raj', '-', count, _ ). +noun( 'rajah', 'rajahs', count, _ ). +noun( 'rake', 'rakes', count, _ ). +noun( 'rake-off', 'rake-offs', count, _ ). +noun( 'rakishness', '-', mass, _ ). +noun( 'rally', 'rallies', count, _ ). +noun( 'ram', 'rams', count, _ ). +noun( 'ramble', 'rambles', count, _ ). +noun( 'rambler', 'ramblers', count, _ ). +noun( 'ramification', 'ramifications', count, _ ). +noun( 'ramjet', 'ramjets', count, _ ). +noun( 'ramp', 'ramps', count, _ ). +noun( 'rampage', 'rampages', count, _ ). +noun( 'rampart', 'ramparts', count, _ ). +noun( 'ramrod', 'ramrods', count, _ ). +noun( 'ranch', 'ranches', count, _ ). +noun( 'rancher', 'ranchers', count, _ ). +noun( 'rancour', '-', mass, _ ). +noun( 'rand', 'rands', count, _ ). +noun( 'random', '-', count, _ ). +noun( 'randomness', '-', mass, _ ). +noun( 'ranee', 'ranees', count, _ ). +noun( 'range', 'ranges', count, _ ). +noun( 'rangefinder', 'rangefinders', count, _ ). +noun( 'ranger', 'rangers', count, _ ). +noun( 'rani', 'ranis', count, _ ). +noun( 'rank', 'ranks', both, _ ). +noun( 'ranker', 'rankers', count, _ ). +noun( 'ranking', 'rankings', count, _ ). +noun( 'rankness', '-', mass, _ ). +noun( 'ransom', 'ransoms', both, _ ). +noun( 'rant', 'rants', count, _ ). +noun( 'ranter', 'ranters', count, _ ). +noun( 'rap', 'raps', count, _ ). +noun( 'rapacity', '-', mass, _ ). +noun( 'rape', 'rapes', both, _ ). +noun( 'rapid', 'rapids', count, _ ). +noun( 'rapidity', '-', mass, _ ). +noun( 'rapier', 'rapiers', count, _ ). +noun( 'rapier-thrust', 'rapier-thrusts', count, _ ). +noun( 'rapine', '-', mass, _ ). +noun( 'rapist', 'rapists', count, _ ). +noun( 'rapport', 'rapports', both, _ ). +noun( 'rapprochement', 'rapprochements', count, _ ). +noun( 'rapscallion', 'rapscallions', count, _ ). +noun( 'rapture', 'raptures', both, _ ). +noun( 'rarebit', 'rarebits', both, _ ). +noun( 'rarefaction', '-', mass, _ ). +noun( 'rareness', '-', mass, _ ). +noun( 'rarity', 'rarities', both, _ ). +noun( 'rascal', 'rascals', count, _ ). +noun( 'rash', 'rashes', count, _ ). +noun( 'rasher', 'rashers', count, _ ). +noun( 'rashness', '-', mass, _ ). +noun( 'rasp', 'rasps', count, _ ). +noun( 'raspberry', 'raspberries', count, _ ). +noun( 'rat', 'rats', count, _ ). +noun( 'rat-a-tat-tat', 'rat-a-tat-tats', count, _ ). +noun( 'rat-tat', 'rat-tats', count, _ ). +noun( 'ratability', '-', mass, _ ). +noun( 'ratan', 'ratans', both, _ ). +noun( 'ratch', 'ratches', count, _ ). +noun( 'ratchet', 'ratchets', count, _ ). +noun( 'rate', 'rates', count, _ ). +noun( 'rateability', '-', mass, _ ). +noun( 'ratepayer', 'ratepayers', count, _ ). +noun( 'ratification', 'ratifications', count, _ ). +noun( 'rating', 'ratings', count, _ ). +noun( 'ratio', 'ratios', count, _ ). +noun( 'ratiocination', '-', mass, _ ). +noun( 'ration', 'rations', count, _ ). +noun( 'rationale', 'rationales', count, _ ). +noun( 'rationalism', '-', mass, _ ). +noun( 'rationalist', 'rationalists', count, _ ). +noun( 'rationality', 'rationalities', both, _ ). +noun( 'rationalization', 'rationalizations', both, _ ). +noun( 'ratlin', 'ratlins', count, _ ). +noun( 'ratline', 'ratlines', count, _ ). +noun( 'rattan', 'rattans', both, _ ). +noun( 'ratter', 'ratters', count, _ ). +noun( 'rattle', 'rattles', both, _ ). +noun( 'rattler', 'rattlers', count, _ ). +noun( 'rattlesnake', 'rattlesnakes', count, _ ). +noun( 'ravage', 'ravages', both, _ ). +noun( 'rave', 'raves', count, _ ). +noun( 'rave-up', 'rave-ups', count, _ ). +noun( 'raven', 'ravens', count, _ ). +noun( 'raver', 'ravers', count, _ ). +noun( 'ravine', 'ravines', count, _ ). +noun( 'ravioli', 'raviolis', both, _ ). +noun( 'ravishment', 'ravishments', both, _ ). +noun( 'raw', '-', count, _ ). +noun( 'ray', 'rays', count, _ ). +noun( 'rayon', '-', mass, _ ). +noun( 'razor', 'razors', count, _ ). +noun( 'razor-edge', 'razor-edges', count, _ ). +noun( 'razorback', 'razorbacks', count, _ ). +noun( 'razorblade', 'razorblades', count, _ ). +noun( 'razzle', '-', count, _ ). +noun( 'razzle-dazzle', '-', count, _ ). +noun( 're', '-', count, _ ). +noun( 're-afforestation', 're-afforestations', both, _ ). +noun( 're-count', 're-counts', count, _ ). +noun( 're-echo', 're-echoes', count, _ ). +noun( 're-entry', 're-entries', count, _ ). +noun( 're-formation', 're-formations', both, _ ). +noun( 'reach', 'reaches', both, _ ). +noun( 'reaction', 'reactions', both, _ ). +noun( 'reactionary', 'reactionaries', count, _ ). +noun( 'reactor', 'reactors', count, _ ). +noun( 'read', '-', count, _ ). +noun( 'readability', '-', mass, _ ). +noun( 'reader', 'readers', count, _ ). +noun( 'readership', 'readerships', count, _ ). +noun( 'readiness', '-', mass, _ ). +noun( 'reading', 'readings', both, _ ). +noun( 'reading-lamp', 'reading-lamps', count, _ ). +noun( 'reading-room', 'reading-rooms', count, _ ). +noun( 'readjustment', 'readjustments', count, _ ). +noun( 'readmission', 'readmissions', both, _ ). +noun( 'ready', 'readies', count, _ ). +noun( 'reaffiliation', 'reaffiliations', both, _ ). +noun( 'reagent', 'reagents', count, _ ). +noun( 'real', 'reals', count, _ ). +noun( 'realism', '-', mass, _ ). +noun( 'realist', 'realists', count, _ ). +noun( 'reality', 'realities', both, _ ). +noun( 'realization', '-', mass, _ ). +noun( 'reallocation', 'reallocations', both, _ ). +noun( 'realm', 'realms', count, _ ). +noun( 'realty', 'realties', count, _ ). +noun( 'ream', 'reams', count, _ ). +noun( 'reaper', 'reapers', count, _ ). +noun( 'reaping-hook', 'reaping-hooks', count, _ ). +noun( 'reappearance', 'reappearances', count, _ ). +noun( 'reappraisal', 'reappraisals', count, _ ). +noun( 'rear', 'rears', count, _ ). +noun( 'rear-admiral', 'rear-admirals', count, _ ). +noun( 'rearguard', 'rearguards', count, _ ). +noun( 'rearmament', 'rearmaments', both, _ ). +noun( 'rearrangement', 'rearrangements', both, _ ). +noun( 'rearward', 'rearwards', count, _ ). +noun( 'reason', 'reasons', both, _ ). +noun( 'reasonableness', '-', mass, _ ). +noun( 'reasoning', '-', mass, _ ). +noun( 'reassessment', 'reassessments', both, _ ). +noun( 'reassurance', 'reassurances', both, _ ). +noun( 'rebate', 'rebates', both, _ ). +noun( 'rebel', 'rebels', count, _ ). +noun( 'rebellion', 'rebellions', both, _ ). +noun( 'rebelliousness', '-', mass, _ ). +noun( 'rebirth', 'rebirths', count, _ ). +noun( 'rebound', 'rebounds', count, _ ). +noun( 'rebuff', 'rebuffs', count, _ ). +noun( 'rebuke', 'rebukes', count, _ ). +noun( 'rebus', 'rebuses', count, _ ). +noun( 'rebuttal', 'rebuttals', count, _ ). +noun( 'rec', '-', proper, _ ). +noun( 'recalcitrance', '-', mass, _ ). +noun( 'recalcitrancy', '-', mass, _ ). +noun( 'recall', 'recalls', both, _ ). +noun( 'recantation', 'recantations', both, _ ). +noun( 'recap', 'recaps', count, _ ). +noun( 'recapitulation', 'recapitulations', both, _ ). +noun( 'recce', 'recces', count, _ ). +noun( 'recd', '-', proper, _ ). +noun( 'receipt', 'receipts', both, _ ). +noun( 'receiver', 'receivers', count, _ ). +noun( 'receivership', 'receiverships', count, _ ). +noun( 'receiving-set', 'receiving-sets', count, _ ). +noun( 'receptacle', 'receptacles', count, _ ). +noun( 'reception', 'receptions', both, _ ). +noun( 'reception-desk', 'reception-desks', count, _ ). +noun( 'receptionist', 'receptionists', count, _ ). +noun( 'receptiveness', '-', mass, _ ). +noun( 'receptivity', '-', mass, _ ). +noun( 'recess', 'recesses', count, _ ). +noun( 'recession', 'recessions', both, _ ). +noun( 'recessional', 'recessionals', count, _ ). +noun( 'recidivism', '-', mass, _ ). +noun( 'recidivist', 'recidivists', count, _ ). +noun( 'recipe', 'recipes', count, _ ). +noun( 'recipient', 'recipients', count, _ ). +noun( 'reciprocal', 'reciprocals', count, _ ). +noun( 'reciprocation', '-', mass, _ ). +noun( 'reciprocity', '-', mass, _ ). +noun( 'recital', 'recitals', count, _ ). +noun( 'recitalist', 'recitalists', count, _ ). +noun( 'recitation', 'recitations', both, _ ). +noun( 'recitative', 'recitatives', both, _ ). +noun( 'recklessness', '-', mass, _ ). +noun( 'reckoner', 'reckoners', count, _ ). +noun( 'reckoning', 'reckonings', both, _ ). +noun( 'reclamation', '-', mass, _ ). +noun( 'recluse', 'recluses', count, _ ). +noun( 'recognition', '-', mass, _ ). +noun( 'recognizance', 'recognizances', count, _ ). +noun( 'recoil', 'recoils', count, _ ). +noun( 'recollection', 'recollections', both, _ ). +noun( 'recommendation', 'recommendations', both, _ ). +noun( 'recompense', 'recompenses', both, _ ). +noun( 'reconciliation', 'reconciliations', both, _ ). +noun( 'reconnaissance', 'reconnaissances', both, _ ). +noun( 'reconstruction', 'reconstructions', both, _ ). +noun( 'record', 'records', both, _ ). +noun( 'record-player', 'record-players', count, _ ). +noun( 'recorder', 'recorders', count, _ ). +noun( 'recording', 'recordings', count, _ ). +noun( 'recourse', '-', mass, _ ). +noun( 'recovery', 'recoveries', both, _ ). +noun( 'recreant', 'recreants', count, _ ). +noun( 'recreation', 'recreations', both, _ ). +noun( 'recrimination', 'recriminations', both, _ ). +noun( 'recrudescence', 'recrudescences', both, _ ). +noun( 'recruit', 'recruits', count, _ ). +noun( 'recruitment', 'recruitments', count, _ ). +noun( 'rectangle', 'rectangles', count, _ ). +noun( 'rectification', 'rectifications', both, _ ). +noun( 'rectifier', 'rectifiers', count, _ ). +noun( 'rectitude', '-', mass, _ ). +noun( 'recto', 'rectos', count, _ ). +noun( 'rector', 'rectors', count, _ ). +noun( 'rectory', 'rectories', count, _ ). +noun( 'rectum', 'rectums', count, _ ). +noun( 'recuperation', 'recuperations', both, _ ). +noun( 'recurrence', 'recurrences', both, _ ). +noun( 'recusancy', '-', mass, _ ). +noun( 'recusant', 'recusants', count, _ ). +noun( 'red', 'reds', both, _ ). +noun( 'redaction', 'redactions', both, _ ). +noun( 'redbreast', 'redbreasts', count, _ ). +noun( 'redcap', 'redcaps', count, _ ). +noun( 'redcoat', 'redcoats', count, _ ). +noun( 'redeemer', 'redeemers', count, _ ). +noun( 'redemption', '-', mass, _ ). +noun( 'redeployment', 'redeployments', both, _ ). +noun( 'redevelopment', 'redevelopments', both, _ ). +noun( 'redhead', 'redheads', count, _ ). +noun( 'rediffusion', '-', mass, _ ). +noun( 'rediscovery', 'rediscoveries', both, _ ). +noun( 'redisposition', 'redispositions', count, _ ). +noun( 'redistribution', 'redistributions', both, _ ). +noun( 'redness', '-', mass, _ ). +noun( 'redolence', '-', mass, _ ). +noun( 'redoubt', 'redoubts', count, _ ). +noun( 'redress', '-', mass, _ ). +noun( 'redskin', 'redskins', count, _ ). +noun( 'reductio ad absurdum', '-', both, _ ). +noun( 'reduction', 'reductions', both, _ ). +noun( 'redundance', 'redundances', count, _ ). +noun( 'redundancy', 'redundancies', both, _ ). +noun( 'reduplication', 'reduplications', both, _ ). +noun( 'redwing', 'redwings', count, _ ). +noun( 'redwood', 'redwoods', count, _ ). +noun( 'reed', 'reeds', both, _ ). +noun( 'reef', 'reefs', count, _ ). +noun( 'reef-knot', 'reef-knots', count, _ ). +noun( 'reefer', 'reefers', count, _ ). +noun( 'reek', '-', mass, _ ). +noun( 'reel', 'reels', count, _ ). +noun( 'reeve', 'reeves', count, _ ). +noun( 'ref', '-', count, _ ). +noun( 'refashion', 'refashions', both, _ ). +noun( 'refection', 'refections', both, _ ). +noun( 'refectory', 'refectories', count, _ ). +noun( 'referee', 'referees', count, _ ). +noun( 'reference', 'references', both, _ ). +noun( 'referendum', 'referendums', count, _ ). +noun( 'refill', 'refills', count, _ ). +noun( 'refinement', 'refinements', both, _ ). +noun( 'refiner', 'refiners', count, _ ). +noun( 'refinery', 'refineries', count, _ ). +noun( 'refit', 'refits', count, _ ). +noun( 'reflation', '-', mass, _ ). +noun( 'reflection', 'reflections', both, _ ). +noun( 'reflector', 'reflectors', count, _ ). +noun( 'reflex', 'reflexes', count, _ ). +noun( 'reflexion', 'reflexions', both, _ ). +noun( 'reflexive', 'reflexives', count, _ ). +noun( 'reflux', 'refluxes', count, _ ). +noun( 'reforestation', 'reforestations', both, _ ). +noun( 'reform', 'reforms', both, _ ). +noun( 'reformation', 'reformations', both, _ ). +noun( 'reformatory', 'reformatories', count, _ ). +noun( 'reformer', 'reformers', count, _ ). +noun( 'refraction', 'refractions', both, _ ). +noun( 'refrain', 'refrains', count, _ ). +noun( 'refresher', 'refreshers', count, _ ). +noun( 'refreshment', 'refreshments', both, _ ). +noun( 'refrigerant', 'refrigerants', count, _ ). +noun( 'refrigeration', 'refrigerations', both, _ ). +noun( 'refrigerator', 'refrigerators', count, _ ). +noun( 'refuge', 'refuges', both, _ ). +noun( 'refugee', 'refugees', count, _ ). +noun( 'refulgence', '-', mass, _ ). +noun( 'refund', 'refunds', both, _ ). +noun( 'refusal', 'refusals', both, _ ). +noun( 'refuse', '-', mass, _ ). +noun( 'refuse-collector', 'refuse-collectors', count, _ ). +noun( 'refutation', 'refutations', both, _ ). +noun( 'regard', 'regards', both, _ ). +noun( 'regatta', 'regattas', count, _ ). +noun( 'regency', 'regencies', count, _ ). +noun( 'regeneration', '-', mass, _ ). +noun( 'regent', 'regents', count, _ ). +noun( 'reggae', '-', mass, _ ). +noun( 'regicide', 'regicides', both, _ ). +noun( 'regime', 'regimes', count, _ ). +noun( 'regimen', 'regimens', count, _ ). +noun( 'regiment', 'regiments', count, _ ). +noun( 'regimentation', '-', mass, _ ). +noun( 'region', 'regions', count, _ ). +noun( 'register', 'registers', count, _ ). +noun( 'registrar', 'registrars', count, _ ). +noun( 'registration', 'registrations', both, _ ). +noun( 'registry', 'registries', both, _ ). +noun( 'regression', 'regressions', both, _ ). +noun( 'regret', 'regrets', both, _ ). +noun( 'regular', 'regulars', count, _ ). +noun( 'regularity', 'regularities', both, _ ). +noun( 'regularization', 'regularizations', both, _ ). +noun( 'regulation', 'regulations', both, _ ). +noun( 'regulator', 'regulators', count, _ ). +noun( 'rehabilitation', 'rehabilitations', both, _ ). +noun( 'rehash', 'rehashes', count, _ ). +noun( 'rehearing', 'rehearings', count, _ ). +noun( 'rehearsal', 'rehearsals', both, _ ). +noun( 'reign', 'reigns', count, _ ). +noun( 'reimbursement', 'reimbursements', both, _ ). +noun( 'reimposition', 'reimpositions', both, _ ). +noun( 'rein', 'reins', count, _ ). +noun( 'reincarnation', 'reincarnations', both, _ ). +noun( 'reindeer', 'reindeer', count, _ ). +noun( 'reinforcement', 'reinforcements', both, _ ). +noun( 'reinstatement', 'reinstatements', count, _ ). +noun( 'reinsurance', 'reinsurances', both, _ ). +noun( 'reinterpretation', 'reinterpretations', both, _ ). +noun( 'reissue', 'reissues', count, _ ). +noun( 'reiteration', 'reiterations', both, _ ). +noun( 'reject', 'rejects', count, _ ). +noun( 'rejection', 'rejections', both, _ ). +noun( 'rejoicing', '-', mass, _ ). +noun( 'rejoinder', 'rejoinders', count, _ ). +noun( 'rejuvenation', 'rejuvenations', count, _ ). +noun( 'relapse', 'relapses', count, _ ). +noun( 'relation', 'relations', both, _ ). +noun( 'relationship', 'relationships', both, _ ). +noun( 'relative', 'relatives', count, _ ). +noun( 'relativity', '-', mass, _ ). +noun( 'relaxation', 'relaxations', both, _ ). +noun( 'relay', 'relays', count, _ ). +noun( 'release', 'releases', both, _ ). +noun( 'relegation', '-', mass, _ ). +noun( 'relevance', 'relevances', count, _ ). +noun( 'relevancy', '-', mass, _ ). +noun( 'reliability', '-', mass, _ ). +noun( 'reliance', '-', mass, _ ). +noun( 'relic', 'relics', count, _ ). +noun( 'relict', 'relicts', count, _ ). +noun( 'relief', 'reliefs', both, _ ). +noun( 'religion', 'religions', both, _ ). +noun( 'religious', 'religious', count, _ ). +noun( 'reliquary', 'reliquaries', count, _ ). +noun( 'relish', 'relishes', both, _ ). +noun( 'relocation', '-', mass, _ ). +noun( 'reluctance', '-', mass, _ ). +noun( 'remainder', 'remainders', count, _ ). +noun( 'remake', 'remakes', count, _ ). +noun( 'remand', '-', mass, _ ). +noun( 'remark', 'remarks', both, _ ). +noun( 'remarriage', 'remarriages', count, _ ). +noun( 'remedy', 'remedies', both, _ ). +noun( 'remembrance', 'remembrances', both, _ ). +noun( 'remilitarization', 'remilitarizations', both, _ ). +noun( 'reminder', 'reminders', count, _ ). +noun( 'reminiscence', 'reminiscences', both, _ ). +noun( 'remission', 'remissions', both, _ ). +noun( 'remissness', '-', mass, _ ). +noun( 'remittance', 'remittances', both, _ ). +noun( 'remnant', 'remnants', count, _ ). +noun( 'remonstrance', 'remonstrances', both, _ ). +noun( 'remorse', '-', mass, _ ). +noun( 'remoteness', '-', mass, _ ). +noun( 'remount', 'remounts', count, _ ). +noun( 'removal', 'removals', both, _ ). +noun( 'remove', 'removes', count, _ ). +noun( 'remover', 'removers', count, _ ). +noun( 'remuneration', '-', mass, _ ). +noun( 'renaissance', 'renaissances', count, _ ). +noun( 'renascence', 'renascences', count, _ ). +noun( 'rendering', 'renderings', both, _ ). +noun( 'rendezvous', 'rendezvous', count, _ ). +noun( 'rendition', 'renditions', count, _ ). +noun( 'renegade', 'renegades', count, _ ). +noun( 'renewal', 'renewals', both, _ ). +noun( 'rennet', '-', mass, _ ). +noun( 'renovation', 'renovations', both, _ ). +noun( 'renovator', 'renovators', count, _ ). +noun( 'renown', '-', mass, _ ). +noun( 'rent', 'rents', both, _ ). +noun( 'rent-collector', 'rent-collectors', count, _ ). +noun( 'rent-rebate', 'rent-rebates', both, _ ). +noun( 'rent-roll', 'rent-rolls', count, _ ). +noun( 'rental', 'rentals', count, _ ). +noun( 'rentier', 'rentiers', count, _ ). +noun( 'renunciation', '-', mass, _ ). +noun( 'reorganization', 'reorganizations', both, _ ). +noun( 'reorientation', '-', mass, _ ). +noun( 'rep', 'reps', both, _ ). +noun( 'repair', 'repairs', both, _ ). +noun( 'repairer', 'repairers', count, _ ). +noun( 'reparation', 'reparations', both, _ ). +noun( 'repartee', 'repartees', both, _ ). +noun( 'repast', 'repasts', count, _ ). +noun( 'repatriate', 'repatriates', count, _ ). +noun( 'repatriation', 'repatriations', both, _ ). +noun( 'repayment', 'repayments', both, _ ). +noun( 'repeal', 'repeals', count, _ ). +noun( 'repeat', 'repeats', count, _ ). +noun( 'repeater', 'repeaters', count, _ ). +noun( 'repellent', '-', mass, _ ). +noun( 'repentance', '-', mass, _ ). +noun( 'repercussion', 'repercussions', both, _ ). +noun( 'repertoire', 'repertoires', count, _ ). +noun( 'repertory', 'repertories', count, _ ). +noun( 'repetition', 'repetitions', both, _ ). +noun( 'replacement', 'replacements', both, _ ). +noun( 'replay', 'replays', count, _ ). +noun( 'replenishment', 'replenishments', both, _ ). +noun( 'repletion', '-', mass, _ ). +noun( 'replica', 'replicas', count, _ ). +noun( 'reply', 'replies', count, _ ). +noun( 'report', 'reports', both, _ ). +noun( 'reportage', '-', mass, _ ). +noun( 'reporter', 'reporters', count, _ ). +noun( 'repose', '-', mass, _ ). +noun( 'repository', 'repositories', count, _ ). +noun( 'repp', '-', mass, _ ). +noun( 'representation', 'representations', both, _ ). +noun( 'representative', 'representatives', count, _ ). +noun( 'repression', 'repressions', both, _ ). +noun( 'reprieve', 'reprieves', count, _ ). +noun( 'reprimand', 'reprimands', count, _ ). +noun( 'reprint', 'reprints', count, _ ). +noun( 'reprisal', 'reprisals', both, _ ). +noun( 'reproach', 'reproaches', both, _ ). +noun( 'reprobate', 'reprobates', count, _ ). +noun( 'reprobation', '-', mass, _ ). +noun( 'reproducer', 'reproducers', count, _ ). +noun( 'reproduction', 'reproductions', both, _ ). +noun( 'reproof', 'reproofs', both, _ ). +noun( 'reps', '-', mass, _ ). +noun( 'reptile', 'reptiles', count, _ ). +noun( 'reptilian', 'reptilians', count, _ ). +noun( 'republic', 'republics', count, _ ). +noun( 'republican', 'republicans', count, _ ). +noun( 'republicanism', '-', mass, _ ). +noun( 'repudiation', 'repudiations', count, _ ). +noun( 'repugnance', '-', mass, _ ). +noun( 'repulse', 'repulses', count, _ ). +noun( 'repulsion', '-', mass, _ ). +noun( 'reputation', 'reputations', both, _ ). +noun( 'repute', '-', mass, _ ). +noun( 'request', 'requests', both, _ ). +noun( 'requiem', 'requiems', count, _ ). +noun( 'requirement', 'requirements', count, _ ). +noun( 'requisite', 'requisites', count, _ ). +noun( 'requisition', 'requisitions', both, _ ). +noun( 'requital', '-', mass, _ ). +noun( 'reredos', 'reredoses', count, _ ). +noun( 'rerun', 'reruns', count, _ ). +noun( 'res', '-', count, _ ). +noun( 'rescript', 'rescripts', count, _ ). +noun( 'rescue', 'rescues', both, _ ). +noun( 'rescuer', 'rescuers', count, _ ). +noun( 'research', 'researches', both, _ ). +noun( 'researcher', 'researchers', count, _ ). +noun( 'resemblance', 'resemblances', both, _ ). +noun( 'resentment', '-', mass, _ ). +noun( 'reservation', 'reservations', both, _ ). +noun( 'reserve', 'reserves', both, _ ). +noun( 'reservist', 'reservists', count, _ ). +noun( 'reservoir', 'reservoirs', count, _ ). +noun( 'resettlement', 'resettlements', count, _ ). +noun( 'reshuffle', 'reshuffles', count, _ ). +noun( 'residence', 'residences', both, _ ). +noun( 'residency', 'residencies', count, _ ). +noun( 'resident', 'residents', count, _ ). +noun( 'residue', 'residues', count, _ ). +noun( 'resignation', 'resignations', both, _ ). +noun( 'resilience', '-', mass, _ ). +noun( 'resiliency', '-', mass, _ ). +noun( 'resin', 'resins', both, _ ). +noun( 'resistance', 'resistances', both, _ ). +noun( 'resister', 'resisters', count, _ ). +noun( 'resistivity', '-', mass, _ ). +noun( 'resistor', 'resistors', count, _ ). +noun( 'resoluteness', '-', mass, _ ). +noun( 'resolution', 'resolutions', both, _ ). +noun( 'resolve', 'resolves', count, _ ). +noun( 'resonance', '-', mass, _ ). +noun( 'resonator', 'resonators', count, _ ). +noun( 'resort', 'resorts', both, _ ). +noun( 'resource', 'resources', both, _ ). +noun( 'respect', 'respects', both, _ ). +noun( 'respectability', 'respectabilities', both, _ ). +noun( 'respecter', 'respecters', count, _ ). +noun( 'respiration', 'respirations', both, _ ). +noun( 'respirator', 'respirators', count, _ ). +noun( 'respite', 'respites', both, _ ). +noun( 'resplendence', '-', mass, _ ). +noun( 'resplendency', '-', mass, _ ). +noun( 'respondent', 'respondents', count, _ ). +noun( 'response', 'responses', both, _ ). +noun( 'responsibility', 'responsibilities', both, _ ). +noun( 'responsiveness', '-', mass, _ ). +noun( 'rest', 'rests', both, _ ). +noun( 'rest-cure', 'rest-cures', count, _ ). +noun( 'rest-day', 'rest-days', count, _ ). +noun( 'rest-home', 'rest-homes', count, _ ). +noun( 'rest-house', 'rest-houses', count, _ ). +noun( 'restatement', 'restatements', count, _ ). +noun( 'restaurant', 'restaurants', count, _ ). +noun( 'restauranteur', 'restauranteurs', count, _ ). +noun( 'restaurateur', 'restaurateurs', count, _ ). +noun( 'restfulness', '-', mass, _ ). +noun( 'restitution', '-', mass, _ ). +noun( 'restiveness', '-', mass, _ ). +noun( 'restlessness', '-', mass, _ ). +noun( 'restoration', 'restorations', both, _ ). +noun( 'restorative', 'restoratives', both, _ ). +noun( 'restorer', 'restorers', count, _ ). +noun( 'restraint', 'restraints', both, _ ). +noun( 'restriction', 'restrictions', both, _ ). +noun( 'restrictiveness', '-', mass, _ ). +noun( 'result', 'results', both, _ ). +noun( 'resumption', 'resumptions', both, _ ). +noun( 'resurgence', 'resurgences', count, _ ). +noun( 'resurrection', '-', mass, _ ). +noun( 'resuscitation', 'resuscitations', both, _ ). +noun( 'ret', '-', proper, _ ). +noun( 'retail', 'retails', count, _ ). +noun( 'retailer', 'retailers', count, _ ). +noun( 'retainer', 'retainers', count, _ ). +noun( 'retake', 'retakes', count, _ ). +noun( 'retaliation', '-', mass, _ ). +noun( 'retardation', 'retardations', both, _ ). +noun( 'retd', '-', proper, _ ). +noun( 'retention', '-', mass, _ ). +noun( 'retentiveness', '-', mass, _ ). +noun( 'rethink', 'rethinks', count, _ ). +noun( 'reticence', 'reticences', both, _ ). +noun( 'reticulation', 'reticulations', count, _ ). +noun( 'reticule', 'reticules', count, _ ). +noun( 'retina', 'retinas', count, _ ). +noun( 'retinue', 'retinues', count, _ ). +noun( 'retire', '-', count, _ ). +noun( 'retirement', 'retirements', both, _ ). +noun( 'retort', 'retorts', both, _ ). +noun( 'retraction', 'retractions', both, _ ). +noun( 'retread', 'retreads', count, _ ). +noun( 'retreat', 'retreats', both, _ ). +noun( 'retrenchment', 'retrenchments', both, _ ). +noun( 'retrial', 'retrials', count, _ ). +noun( 'retribution', '-', mass, _ ). +noun( 'retrieval', '-', mass, _ ). +noun( 'retriever', 'retrievers', count, _ ). +noun( 'retrogression', 'retrogressions', both, _ ). +noun( 'retrorocket', 'retrorockets', count, _ ). +noun( 'retrospect', '-', mass, _ ). +noun( 'retrospection', 'retrospections', both, _ ). +noun( 'retroversion', 'retroversions', both, _ ). +noun( 'retsina', '-', mass, _ ). +noun( 'return', 'returns', both, _ ). +noun( 'reunification', '-', mass, _ ). +noun( 'reunion', 'reunions', both, _ ). +noun( 'rev', 'revs', count, _ ). +noun( 'revaluation', 'revaluations', both, _ ). +noun( 'reveille', 'reveilles', count, _ ). +noun( 'revel', 'revels', both, _ ). +noun( 'revelation', 'revelations', both, _ ). +noun( 'reveller', 'revellers', count, _ ). +noun( 'revelry', 'revelries', both, _ ). +noun( 'revenge', '-', mass, _ ). +noun( 'revenue', 'revenues', both, _ ). +noun( 'reverberation', 'reverberations', both, _ ). +noun( 'reverence', '-', mass, _ ). +noun( 'reverend', 'reverends', count, _ ). +noun( 'reverie', 'reveries', both, _ ). +noun( 'revers', '-', count, _ ). +noun( 'reversal', 'reversals', both, _ ). +noun( 'reverse', 'reverses', both, _ ). +noun( 'reversibility', '-', mass, _ ). +noun( 'reversion', 'reversions', both, _ ). +noun( 'revetment', 'revetments', count, _ ). +noun( 'review', 'reviews', both, _ ). +noun( 'reviewer', 'reviewers', count, _ ). +noun( 'revise', 'revises', count, _ ). +noun( 'reviser', 'revisers', count, _ ). +noun( 'revision', 'revisions', both, _ ). +noun( 'revisionism', '-', mass, _ ). +noun( 'revisionist', 'revisionists', count, _ ). +noun( 'revitalization', 'revitalizations', both, _ ). +noun( 'revival', 'revivals', both, _ ). +noun( 'revivalist', 'revivalists', count, _ ). +noun( 'revocation', 'revocations', both, _ ). +noun( 'revoke', 'revokes', count, _ ). +noun( 'revolt', 'revolts', both, _ ). +noun( 'revolution', 'revolutions', both, _ ). +noun( 'revolutionary', 'revolutionarys', count, _ ). +noun( 'revolver', 'revolvers', count, _ ). +noun( 'revue', 'revues', both, _ ). +noun( 'revulsion', '-', mass, _ ). +noun( 'reward', 'rewards', both, _ ). +noun( 'rewrite', 'rewrites', count, _ ). +noun( 'rhapsody', 'rhapsodies', count, _ ). +noun( 'rhea', 'rheas', count, _ ). +noun( 'rheostat', 'rheostats', count, _ ). +noun( 'rhesus', 'rhesuses', count, _ ). +noun( 'rhetoric', '-', mass, _ ). +noun( 'rhetorician', 'rhetoricians', count, _ ). +noun( 'rheum', '-', mass, _ ). +noun( 'rheumatic', 'rheumatics', count, _ ). +noun( 'rheumatism', '-', mass, _ ). +noun( 'rhino', 'rhinos', count, _ ). +noun( 'rhinoceros', 'rhinoceros', count, _ ). +noun( 'rhizome', 'rhizomes', count, _ ). +noun( 'rhododendron', 'rhododendrons', count, _ ). +noun( 'rhomb', 'rhombs', count, _ ). +noun( 'rhomboid', 'rhomboids', count, _ ). +noun( 'rhombus', 'rhombuses', count, _ ). +noun( 'rhubarb', '-', mass, _ ). +noun( 'rhyme', 'rhymes', both, _ ). +noun( 'rhymester', 'rhymesters', count, _ ). +noun( 'rhythm', 'rhythms', both, _ ). +noun( 'rib', 'ribs', count, _ ). +noun( 'ribald', 'ribalds', count, _ ). +noun( 'ribaldry', '-', mass, _ ). +noun( 'riband', 'ribands', count, _ ). +noun( 'ribbon', 'ribbons', both, _ ). +noun( 'riboflavin', '-', mass, _ ). +noun( 'rice', '-', mass, _ ). +noun( 'rice-paper', '-', mass, _ ). +noun( 'richness', '-', mass, _ ). +noun( 'rick', 'ricks', count, _ ). +noun( 'rickets', 'rickets', mass, _ ). +noun( 'rickshaw', 'rickshaws', count, _ ). +noun( 'ricochet', 'ricochets', both, _ ). +noun( 'riddance', '-', mass, _ ). +noun( 'riddle', 'riddles', count, _ ). +noun( 'ride', 'rides', count, _ ). +noun( 'rider', 'riders', count, _ ). +noun( 'ridge', 'ridges', count, _ ). +noun( 'ridge-tile', 'ridge-tiles', count, _ ). +noun( 'ridgepole', 'ridgepoles', count, _ ). +noun( 'ridicule', 'ridicules', count, _ ). +noun( 'riding', 'ridings', both, _ ). +noun( 'riding-habit', 'riding-habits', count, _ ). +noun( 'riding-lamp', 'riding-lamps', count, _ ). +noun( 'riding-light', 'riding-lights', count, _ ). +noun( 'riding-master', 'riding-masters', count, _ ). +noun( 'riding-school', 'riding-schools', count, _ ). +noun( 'riff', 'riffs', count, _ ). +noun( 'riff-raff', '-', both, _ ). +noun( 'rifle', 'rifles', count, _ ). +noun( 'rifle-range', 'rifle-ranges', count, _ ). +noun( 'rifle-shot', 'rifle-shots', count, _ ). +noun( 'rifleman', 'riflemen', count, _ ). +noun( 'rift', 'rifts', count, _ ). +noun( 'rift-valley', 'rift-valleys', count, _ ). +noun( 'rig', 'rigs', count, _ ). +noun( 'rigger', 'riggers', count, _ ). +noun( 'rigging', '-', mass, _ ). +noun( 'right', 'rights', both, _ ). +noun( 'right-hander', 'right-handers', count, _ ). +noun( 'right-turn', 'right-turns', count, _ ). +noun( 'right-wing', 'right-wings', count, _ ). +noun( 'right-winger', 'right-wingers', count, _ ). +noun( 'righteousness', '-', mass, _ ). +noun( 'rightfulness', '-', mass, _ ). +noun( 'rightist', 'rightists', count, _ ). +noun( 'rightness', '-', mass, _ ). +noun( 'rigidity', 'rigidities', both, _ ). +noun( 'rigmarole', 'rigmaroles', both, _ ). +noun( 'rigor mortis', '-', mass, _ ). +noun( 'rigour', 'rigours', both, _ ). +noun( 'rigout', 'rigouts', count, _ ). +noun( 'rill', 'rills', count, _ ). +noun( 'rim', 'rims', count, _ ). +noun( 'rime', '-', mass, _ ). +noun( 'rind', 'rinds', both, _ ). +noun( 'rinderpest', '-', mass, _ ). +noun( 'ring', 'rings', count, _ ). +noun( 'ring-armour', '-', mass, _ ). +noun( 'ring-finger', 'ring-fingers', count, _ ). +noun( 'ring-mail', '-', mass, _ ). +noun( 'ring-road', 'ring-roads', count, _ ). +noun( 'ringer', 'ringers', count, _ ). +noun( 'ringleader', 'ringleaders', count, _ ). +noun( 'ringlet', 'ringlets', count, _ ). +noun( 'ringmaster', 'ringmasters', count, _ ). +noun( 'ringside', 'ringsides', count, _ ). +noun( 'ringworm', '-', mass, _ ). +noun( 'rink', 'rinks', count, _ ). +noun( 'rinse', 'rinses', count, _ ). +noun( 'riot', 'riots', both, _ ). +noun( 'rioter', 'rioters', count, _ ). +noun( 'rip', 'rips', count, _ ). +noun( 'rip-off', 'rip-offs', count, _ ). +noun( 'ripcord', 'ripcords', count, _ ). +noun( 'ripeness', '-', mass, _ ). +noun( 'riposte', 'ripostes', count, _ ). +noun( 'ripple', 'ripples', count, _ ). +noun( 'ripsaw', 'ripsaws', count, _ ). +noun( 'riptide', 'riptides', count, _ ). +noun( 'rise', 'rises', count, _ ). +noun( 'riser', 'risers', count, _ ). +noun( 'risibility', '-', mass, _ ). +noun( 'rising', 'risings', count, _ ). +noun( 'risk', 'risks', both, _ ). +noun( 'riskiness', '-', mass, _ ). +noun( 'risotto', 'risottos', both, _ ). +noun( 'rissole', 'rissoles', count, _ ). +noun( 'rite', 'rites', count, _ ). +noun( 'ritual', 'rituals', both, _ ). +noun( 'ritualism', '-', mass, _ ). +noun( 'ritualist', 'ritualists', count, _ ). +noun( 'rival', 'rivals', count, _ ). +noun( 'rivalry', 'rivalries', both, _ ). +noun( 'river', 'rivers', count, _ ). +noun( 'river-basin', 'river-basins', count, _ ). +noun( 'river-bed', 'river-beds', count, _ ). +noun( 'riverside', 'riversides', count, _ ). +noun( 'rivet', 'rivets', count, _ ). +noun( 'riveter', 'riveters', count, _ ). +noun( 'rivulet', 'rivulets', count, _ ). +noun( 'rly', '-', count, _ ). +noun( 'roach', 'roach', count, _ ). +noun( 'road', 'roads', count, _ ). +noun( 'road-book', 'road-books', count, _ ). +noun( 'road-hog', 'road-hogs', count, _ ). +noun( 'road-metal', '-', mass, _ ). +noun( 'road-sense', '-', mass, _ ). +noun( 'roadbed', 'roadbeds', count, _ ). +noun( 'roadblock', 'roadblocks', count, _ ). +noun( 'roadhouse', 'roadhouses', count, _ ). +noun( 'roadman', 'roadmen', count, _ ). +noun( 'roadmender', 'roadmenders', count, _ ). +noun( 'roadside', 'roadsides', count, _ ). +noun( 'roadstead', 'roadsteads', count, _ ). +noun( 'roadster', 'roadsters', count, _ ). +noun( 'roadway', 'roadways', count, _ ). +noun( 'roan', 'roans', both, _ ). +noun( 'roar', 'roars', count, _ ). +noun( 'roast', 'roasts', both, _ ). +noun( 'roaster', 'roasters', count, _ ). +noun( 'roasting', 'roastings', both, _ ). +noun( 'robber', 'robbers', count, _ ). +noun( 'robbery', 'robberies', both, _ ). +noun( 'robe', 'robes', count, _ ). +noun( 'robin', 'robins', count, _ ). +noun( 'robot', 'robots', count, _ ). +noun( 'robustness', '-', mass, _ ). +noun( 'roc', 'rocs', count, _ ). +noun( 'rock', 'rocks', both, _ ). +noun( 'rock-\'n-roll', '-', mass, _ ). +noun( 'rock-bottom', '-', mass, _ ). +noun( 'rock-cake', 'rock-cakes', count, _ ). +noun( 'rock-climbing', '-', mass, _ ). +noun( 'rock-crystal', 'rock-crystals', count, _ ). +noun( 'rock-garden', 'rock-gardens', count, _ ). +noun( 'rock-plant', 'rock-plants', count, _ ). +noun( 'rock-salmon', 'rock-salmon', count, _ ). +noun( 'rock-salt', '-', mass, _ ). +noun( 'rocker', 'rockers', count, _ ). +noun( 'rockery', 'rockeries', count, _ ). +noun( 'rocket', 'rockets', count, _ ). +noun( 'rocket-base', 'rocket-bases', count, _ ). +noun( 'rocket-range', 'rocket-ranges', count, _ ). +noun( 'rocketry', '-', mass, _ ). +noun( 'rocking-chair', 'rocking-chairs', count, _ ). +noun( 'rocking-horse', 'rocking-horses', count, _ ). +noun( 'rod', 'rods', count, _ ). +noun( 'rodent', 'rodents', count, _ ). +noun( 'rodeo', 'rodeos', count, _ ). +noun( 'rodomontade', '-', mass, _ ). +noun( 'roe', 'roe', both, _ ). +noun( 'roebuck', 'roebucks', count, _ ). +noun( 'rogation', 'rogations', count, _ ). +noun( 'rogue', 'rogues', count, _ ). +noun( 'rogue-elephant', 'rogue-elephants', count, _ ). +noun( 'roguery', 'rogueries', both, _ ). +noun( 'roguishness', '-', mass, _ ). +noun( 'roisterer', 'roisterers', count, _ ). +noun( 'role', 'roles', count, _ ). +noun( 'roll', 'rolls', count, _ ). +noun( 'roll-call', 'roll-calls', count, _ ). +noun( 'roll-on', 'roll-ons', count, _ ). +noun( 'roller', 'rollers', count, _ ). +noun( 'roller-skate', 'roller-skates', count, _ ). +noun( 'rolling', '-', mass, _ ). +noun( 'rolling-mill', 'rolling-mills', count, _ ). +noun( 'rolling-pin', 'rolling-pins', count, _ ). +noun( 'rolling-stock', '-', mass, _ ). +noun( 'roly-poly', 'roly-polies', count, _ ). +noun( 'romance', 'romances', both, _ ). +noun( 'romantic', 'romantics', count, _ ). +noun( 'romanticism', '-', mass, _ ). +noun( 'romanticist', 'romanticists', count, _ ). +noun( 'romp', 'romps', count, _ ). +noun( 'romper', 'rompers', count, _ ). +noun( 'rondeau', 'rondeaus', count, _ ). +noun( 'rondel', 'rondels', count, _ ). +noun( 'rondo', 'rondos', count, _ ). +noun( 'rood', 'roods', count, _ ). +noun( 'rood-tree', 'rood-trees', count, _ ). +noun( 'roof', 'roofs', count, _ ). +noun( 'roof-garden', 'roof-gardens', count, _ ). +noun( 'roof-tree', 'roof-trees', count, _ ). +noun( 'roofing', '-', mass, _ ). +noun( 'rook', 'rooks', count, _ ). +noun( 'rookery', 'rookeries', count, _ ). +noun( 'rookie', 'rookies', count, _ ). +noun( 'room', 'rooms', both, _ ). +noun( 'room-mate', 'room-mates', count, _ ). +noun( 'roomer', 'roomers', count, _ ). +noun( 'roomful', 'roomfuls', count, _ ). +noun( 'roost', 'roosts', count, _ ). +noun( 'rooster', 'roosters', count, _ ). +noun( 'root', 'roots', count, _ ). +noun( 'rope', 'ropes', both, _ ). +noun( 'rope-dancer', 'rope-dancers', count, _ ). +noun( 'rope-ladder', 'rope-ladders', count, _ ). +noun( 'rope-yard', 'rope-yards', count, _ ). +noun( 'rope-yarn', '-', mass, _ ). +noun( 'ropewalk', 'ropewalks', count, _ ). +noun( 'ropewalker', 'ropewalkers', count, _ ). +noun( 'ropeway', 'ropeways', count, _ ). +noun( 'rosary', 'rosaries', count, _ ). +noun( 'rose', 'roses', both, _ ). +noun( 'rose-bed', 'rose-beds', count, _ ). +noun( 'rose-leaf', 'rose-leaves', count, _ ). +noun( 'rose-water', '-', mass, _ ). +noun( 'rosebud', 'rosebuds', count, _ ). +noun( 'rosemary', '-', mass, _ ). +noun( 'rosette', 'rosettes', count, _ ). +noun( 'rosewood', '-', mass, _ ). +noun( 'rosin', '-', mass, _ ). +noun( 'roster', 'rosters', count, _ ). +noun( 'rostrum', 'rostrums', count, _ ). +noun( 'rot', '-', mass, _ ). +noun( 'rota', 'rotas', count, _ ). +noun( 'rotary', 'rotaries', count, _ ). +noun( 'rotation', 'rotations', both, _ ). +noun( 'rote', '-', count, _ ). +noun( 'rotgut', '-', mass, _ ). +noun( 'rotisserie', 'rotisseries', count, _ ). +noun( 'rotogravure', 'rotogravures', both, _ ). +noun( 'rotor', 'rotors', count, _ ). +noun( 'rottenness', '-', mass, _ ). +noun( 'rotter', 'rotters', count, _ ). +noun( 'rotunda', 'rotundas', count, _ ). +noun( 'rotundity', '-', mass, _ ). +noun( 'rou_e', 'rou_es', count, _ ). +noun( 'rouble', 'roubles', count, _ ). +noun( 'rouge', '-', mass, _ ). +noun( 'rough', 'roughs', both, _ ). +noun( 'rough-and-tumble', 'rough-and-tumbles', count, _ ). +noun( 'roughage', '-', mass, _ ). +noun( 'roughcast', '-', mass, _ ). +noun( 'roughneck', 'roughnecks', count, _ ). +noun( 'roughness', '-', mass, _ ). +noun( 'roughrider', 'roughriders', count, _ ). +noun( 'roulette', '-', mass, _ ). +noun( 'round', 'rounds', both, _ ). +noun( 'round-hand', '-', mass, _ ). +noun( 'round-shot', 'round-shots', count, _ ). +noun( 'roundabout', 'roundabouts', count, _ ). +noun( 'roundel', 'roundels', count, _ ). +noun( 'roundelay', 'roundelays', count, _ ). +noun( 'roundhouse', 'roundhouses', count, _ ). +noun( 'roundness', '-', mass, _ ). +noun( 'roundsman', 'roundsmen', count, _ ). +noun( 'roundup', 'roundups', count, _ ). +noun( 'rout', 'routs', count, _ ). +noun( 'route', 'routes', both, _ ). +noun( 'routemarch', 'routemarches', count, _ ). +noun( 'routine', 'routines', both, _ ). +noun( 'rover', 'rovers', count, _ ). +noun( 'row', 'rows', count, _ ). +noun( 'row', 'rows', both, _ ). +noun( 'rowan', 'rowans', count, _ ). +noun( 'rowan-berry', 'rowan-berries', count, _ ). +noun( 'rowan-tree', 'rowan-trees', count, _ ). +noun( 'rowboat', 'rowboats', count, _ ). +noun( 'rowdiness', '-', mass, _ ). +noun( 'rowdy', 'rowdies', count, _ ). +noun( 'rowdyism', '-', mass, _ ). +noun( 'rowel', 'rowels', count, _ ). +noun( 'rower', 'rowers', count, _ ). +noun( 'rowing', '-', mass, _ ). +noun( 'rowing-boat', 'rowing-boats', count, _ ). +noun( 'rowing-club', 'rowing-clubs', count, _ ). +noun( 'rowlock', 'rowlocks', count, _ ). +noun( 'royalist', 'royalists', count, _ ). +noun( 'royalty', 'royalties', both, _ ). +noun( 'rpm', 'rpm', count, _ ). +noun( 'rub', 'rubs', count, _ ). +noun( 'rub-a-dub', '-', mass, _ ). +noun( 'rub-down', 'rub-downs', count, _ ). +noun( 'rub-up', 'rub-ups', count, _ ). +noun( 'rubber', 'rubbers', both, _ ). +noun( 'rubberneck', 'rubbernecks', count, _ ). +noun( 'rubbing', 'rubbings', both, _ ). +noun( 'rubbish', '-', mass, _ ). +noun( 'rubbishing', 'rubbishings', count, _ ). +noun( 'rubble', '-', mass, _ ). +noun( 'rubric', 'rubrics', count, _ ). +noun( 'ruby', 'rubies', count, _ ). +noun( 'ruck', 'rucks', count, _ ). +noun( 'rucksack', 'rucksacks', count, _ ). +noun( 'ruckus', 'ruckuss', count, _ ). +noun( 'rudder', 'rudders', count, _ ). +noun( 'ruddiness', '-', mass, _ ). +noun( 'ruddle', '-', mass, _ ). +noun( 'rudeness', 'rudenesses', both, _ ). +noun( 'rudiment', 'rudiments', count, _ ). +noun( 'rue', '-', mass, _ ). +noun( 'ruff', 'ruffs', count, _ ). +noun( 'ruffian', 'ruffians', count, _ ). +noun( 'ruffianism', '-', mass, _ ). +noun( 'ruffle', 'ruffles', count, _ ). +noun( 'rug', 'rugs', count, _ ). +noun( 'rugby', '-', mass, _ ). +noun( 'ruggedness', '-', mass, _ ). +noun( 'rugger', '-', mass, _ ). +noun( 'ruin', 'ruins', both, _ ). +noun( 'ruination', '-', mass, _ ). +noun( 'rule', 'rules', both, _ ). +noun( 'ruler', 'rulers', count, _ ). +noun( 'ruling', 'rulings', count, _ ). +noun( 'rum', '-', mass, _ ). +noun( 'rum-runner', 'rum-runners', count, _ ). +noun( 'rumba', 'rumbas', count, _ ). +noun( 'rumble', 'rumbles', both, _ ). +noun( 'rumbling', 'rumblings', count, _ ). +noun( 'ruminant', 'ruminants', count, _ ). +noun( 'rumination', '-', mass, _ ). +noun( 'rummage', '-', mass, _ ). +noun( 'rummy', '-', mass, _ ). +noun( 'rumour', 'rumours', both, _ ). +noun( 'rumour-monger', 'rumour-mongers', count, _ ). +noun( 'rump', 'rumps', count, _ ). +noun( 'rump-steak', 'rump-steaks', both, _ ). +noun( 'rumpus', '-', count, _ ). +noun( 'run', 'runs', count, _ ). +noun( 'run-off', 'run-offs', count, _ ). +noun( 'run-through', 'run-throughs', count, _ ). +noun( 'run-up', 'run-ups', count, _ ). +noun( 'runaway', 'runaways', count, _ ). +noun( 'rundown', 'rundowns', count, _ ). +noun( 'rune', 'runes', count, _ ). +noun( 'rung', 'rungs', count, _ ). +noun( 'runnel', 'runnels', count, _ ). +noun( 'runner', 'runners', count, _ ). +noun( 'runner-up', 'runners-up', count, _ ). +noun( 'running', '-', mass, _ ). +noun( 'running-board', 'running-boards', count, _ ). +noun( 'runt', 'runts', count, _ ). +noun( 'runway', 'runways', count, _ ). +noun( 'rupee', 'rupees', count, _ ). +noun( 'rupiah', 'rupiahs', count, _ ). +noun( 'rupture', 'ruptures', both, _ ). +noun( 'ruse', 'ruses', count, _ ). +noun( 'rush', 'rushes', both, _ ). +noun( 'rushlight', 'rushlights', count, _ ). +noun( 'rusk', 'rusks', count, _ ). +noun( 'russet', 'russets', both, _ ). +noun( 'rust', '-', mass, _ ). +noun( 'rustic', 'rustics', count, _ ). +noun( 'rusticity', '-', mass, _ ). +noun( 'rustiness', '-', mass, _ ). +noun( 'rustle', '-', mass, _ ). +noun( 'rustler', 'rustlers', count, _ ). +noun( 'rustling', 'rustlings', both, _ ). +noun( 'rut', 'ruts', both, _ ). +noun( 'ruthlessness', '-', mass, _ ). +noun( 'rye', '-', mass, _ ). +noun( 'rye-bread', '-', mass, _ ). +noun( 's', '-', count, _ ). +noun( 's_eance', 's_eances', count, _ ). +noun( 'sabbatarian', 'sabbatarians', count, _ ). +noun( 'sabbatical', 'sabbaticals', count, _ ). +noun( 'sable', 'sables', both, _ ). +noun( 'sabot', 'sabots', count, _ ). +noun( 'sabotage', '-', mass, _ ). +noun( 'saboteur', 'saboteurs', count, _ ). +noun( 'sabre', 'sabres', count, _ ). +noun( 'sabre-rattling', '-', mass, _ ). +noun( 'sac', 'sacs', count, _ ). +noun( 'saccharin', '-', mass, _ ). +noun( 'sacerdotalism', '-', mass, _ ). +noun( 'sachet', 'sachets', count, _ ). +noun( 'sack', 'sacks', both, _ ). +noun( 'sack-race', 'sack-races', count, _ ). +noun( 'sackbut', 'sackbuts', count, _ ). +noun( 'sackcloth', '-', mass, _ ). +noun( 'sacking', '-', mass, _ ). +noun( 'sacrament', 'sacraments', count, _ ). +noun( 'sacredness', '-', mass, _ ). +noun( 'sacrifice', 'sacrifices', both, _ ). +noun( 'sacrilege', '-', mass, _ ). +noun( 'sacristan', 'sacristans', count, _ ). +noun( 'sacristy', 'sacristies', count, _ ). +noun( 'saddle', 'saddles', count, _ ). +noun( 'saddlebag', 'saddlebags', count, _ ). +noun( 'saddler', 'saddlers', count, _ ). +noun( 'saddlery', 'saddleries', both, _ ). +noun( 'sadhu', 'sadhus', count, _ ). +noun( 'sadism', '-', mass, _ ). +noun( 'sadist', 'sadists', count, _ ). +noun( 'sadness', '-', mass, _ ). +noun( 'sado-masochist', 'sado-masochists', count, _ ). +noun( 'sadomasochism', '-', mass, _ ). +noun( 'sae', '-', count, _ ). +noun( 'safari', 'safaris', both, _ ). +noun( 'safe', 'safes', count, _ ). +noun( 'safe-conduct', '-', mass, _ ). +noun( 'safe-deposit', 'safe-deposits', count, _ ). +noun( 'safecracker', 'safecrackers', count, _ ). +noun( 'safeguard', 'safeguards', count, _ ). +noun( 'safekeeping', '-', mass, _ ). +noun( 'safeness', '-', mass, _ ). +noun( 'safety', '-', mass, _ ). +noun( 'safety-belt', 'safety-belts', count, _ ). +noun( 'safety-bolt', 'safety-bolts', count, _ ). +noun( 'safety-catch', 'safety-catches', count, _ ). +noun( 'safety-curtain', 'safety-curtains', count, _ ). +noun( 'safety-factor', 'safety-factors', count, _ ). +noun( 'safety-lamp', 'safety-lamps', count, _ ). +noun( 'safety-lock', 'safety-locks', count, _ ). +noun( 'safety-match', 'safety-matches', count, _ ). +noun( 'safety-pin', 'safety-pins', count, _ ). +noun( 'safety-razor', 'safety-razors', count, _ ). +noun( 'safety-valve', 'safety-valves', count, _ ). +noun( 'saffron', 'saffrons', both, _ ). +noun( 'sag', 'sags', count, _ ). +noun( 'saga', 'sagas', count, _ ). +noun( 'sagacity', '-', mass, _ ). +noun( 'sage', 'sages', both, _ ). +noun( 'sage-green', '-', mass, _ ). +noun( 'sago', '-', mass, _ ). +noun( 'sahib', 'sahibs', count, _ ). +noun( 'sail', 'sails', both, _ ). +noun( 'sailcloth', '-', mass, _ ). +noun( 'sailing', 'sailings', count, _ ). +noun( 'sailing-boat', 'sailing-boats', count, _ ). +noun( 'sailing-master', 'sailing-masters', count, _ ). +noun( 'sailing-ship', 'sailing-ships', count, _ ). +noun( 'sailing-vessel', 'sailing-vessels', count, _ ). +noun( 'sailor', 'sailors', count, _ ). +noun( 'saint', 'saints', count, _ ). +noun( 'saint\'s-day', 'saint\'s-days', count, _ ). +noun( 'sainthood', '-', mass, _ ). +noun( 'saintliness', '-', mass, _ ). +noun( 'sak_e', '-', mass, _ ). +noun( 'sake', 'sakes', count, _ ). +noun( 'sal volatile', '-', mass, _ ). +noun( 'salaam', 'salaams', count, _ ). +noun( 'salaciousness', '-', mass, _ ). +noun( 'salacity', '-', mass, _ ). +noun( 'salad', 'salads', both, _ ). +noun( 'salad-dressing', 'salad-dressings', both, _ ). +noun( 'salad-oil', 'salad-oils', both, _ ). +noun( 'salamander', 'salamanders', count, _ ). +noun( 'salami', '-', mass, _ ). +noun( 'salary', 'salaries', count, _ ). +noun( 'sale', 'sales', both, _ ). +noun( 'saleroom', 'salerooms', count, _ ). +noun( 'salesman', 'salesmen', count, _ ). +noun( 'salesmanship', '-', mass, _ ). +noun( 'saleswoman', 'saleswomen', count, _ ). +noun( 'salience', '-', mass, _ ). +noun( 'salient', 'salients', count, _ ). +noun( 'saline', 'salines', both, _ ). +noun( 'salinity', '-', mass, _ ). +noun( 'saliva', '-', mass, _ ). +noun( 'sally', 'sallies', count, _ ). +noun( 'salmon', 'salmon', both, _ ). +noun( 'salon', 'salons', count, _ ). +noun( 'saloon', 'saloons', count, _ ). +noun( 'salsify', '-', mass, _ ). +noun( 'salt', 'salts', both, _ ). +noun( 'salt-cellar', 'salt-cellars', count, _ ). +noun( 'salt-lick', 'salt-licks', count, _ ). +noun( 'saltiness', '-', mass, _ ). +noun( 'saltpan', 'saltpans', count, _ ). +noun( 'saltpetre', '-', mass, _ ). +noun( 'saltwater', '-', mass, _ ). +noun( 'saltworks', 'saltworks', count, _ ). +noun( 'salubrity', '-', mass, _ ). +noun( 'salutation', 'salutations', both, _ ). +noun( 'salute', 'salutes', count, _ ). +noun( 'salvage', '-', mass, _ ). +noun( 'salvation', '-', mass, _ ). +noun( 'salve', 'salves', both, _ ). +noun( 'salver', 'salvers', count, _ ). +noun( 'salvia', 'salvias', count, _ ). +noun( 'salvo', 'salvos', count, _ ). +noun( 'samba', 'sambas', count, _ ). +noun( 'sameness', '-', mass, _ ). +noun( 'samovar', 'samovars', count, _ ). +noun( 'sampan', 'sampans', count, _ ). +noun( 'sample', 'samples', count, _ ). +noun( 'sampler', 'samplers', count, _ ). +noun( 'samurai', 'samurai', count, _ ). +noun( 'sanatorium', 'sanatoriums', count, _ ). +noun( 'sanctification', 'sanctifications', both, _ ). +noun( 'sanction', 'sanctions', both, _ ). +noun( 'sanctity', 'sanctities', both, _ ). +noun( 'sanctuary', 'sanctuaries', both, _ ). +noun( 'sanctum', 'sanctums', count, _ ). +noun( 'sand', 'sands', both, _ ). +noun( 'sand-bar', 'sand-bars', count, _ ). +noun( 'sandal', 'sandals', count, _ ). +noun( 'sandalwood', '-', mass, _ ). +noun( 'sandbag', 'sandbags', count, _ ). +noun( 'sandbank', 'sandbanks', count, _ ). +noun( 'sandboy', 'sandboys', count, _ ). +noun( 'sandfly', 'sandflies', count, _ ). +noun( 'sandglass', 'sandglasses', count, _ ). +noun( 'sandiness', '-', mass, _ ). +noun( 'sandpaper', 'sandpapers', both, _ ). +noun( 'sandpiper', 'sandpipers', count, _ ). +noun( 'sandpit', 'sandpits', count, _ ). +noun( 'sandstone', '-', mass, _ ). +noun( 'sandstorm', 'sandstorms', count, _ ). +noun( 'sandwich', 'sandwiches', count, _ ). +noun( 'sandwich-board', 'sandwich-boards', count, _ ). +noun( 'sandwichman', 'sandwichmen', count, _ ). +noun( 'sang froid', '-', mass, _ ). +noun( 'sanitation', '-', mass, _ ). +noun( 'sanity', '-', mass, _ ). +noun( 'sap', 'saps', both, _ ). +noun( 'saphead', 'sapheads', count, _ ). +noun( 'sapience', '-', mass, _ ). +noun( 'sapling', 'saplings', count, _ ). +noun( 'sapper', 'sappers', count, _ ). +noun( 'sapphire', 'sapphires', both, _ ). +noun( 'sapwood', '-', mass, _ ). +noun( 'saraband', 'sarabands', count, _ ). +noun( 'sarcasm', 'sarcasms', both, _ ). +noun( 'sarcophagus', 'sarcophagi', count, _ ). +noun( 'sardine', 'sardines', both, _ ). +noun( 'sari', 'saris', count, _ ). +noun( 'sarong', 'sarongs', count, _ ). +noun( 'sarsaparilla', '-', mass, _ ). +noun( 'sash', 'sashes', count, _ ). +noun( 'sash-cord', 'sash-cords', count, _ ). +noun( 'sash-line', 'sash-lines', count, _ ). +noun( 'satchel', 'satchels', count, _ ). +noun( 'sateen', '-', mass, _ ). +noun( 'satellite', 'satellites', count, _ ). +noun( 'satiety', '-', mass, _ ). +noun( 'satin', '-', mass, _ ). +noun( 'satinwood', '-', mass, _ ). +noun( 'satire', 'satires', both, _ ). +noun( 'satirist', 'satirists', count, _ ). +noun( 'satisfaction', 'satisfactions', both, _ ). +noun( 'satrap', 'satraps', count, _ ). +noun( 'satsuma', 'satsumas', count, _ ). +noun( 'saturation', '-', mass, _ ). +noun( 'saturnalia', 'saturnalias', count, _ ). +noun( 'satyr', 'satyrs', count, _ ). +noun( 'sauce', 'sauces', both, _ ). +noun( 'sauce-boat', 'sauce-boats', count, _ ). +noun( 'saucepan', 'saucepans', count, _ ). +noun( 'saucer', 'saucers', count, _ ). +noun( 'sauciness', '-', mass, _ ). +noun( 'sauerkraut', '-', mass, _ ). +noun( 'sauna', 'saunas', count, _ ). +noun( 'saunter', 'saunters', count, _ ). +noun( 'saunterer', 'saunterers', count, _ ). +noun( 'saurian', 'saurians', count, _ ). +noun( 'sausage', 'sausages', both, _ ). +noun( 'sausage-dog', 'sausage-dogs', count, _ ). +noun( 'sausage-meat', '-', mass, _ ). +noun( 'sausage-roll', 'sausage-rolls', count, _ ). +noun( 'savage', 'savages', count, _ ). +noun( 'savageness', '-', mass, _ ). +noun( 'savagery', '-', mass, _ ). +noun( 'savanna', 'savannas', count, _ ). +noun( 'savannah', 'savannahs', count, _ ). +noun( 'savant', 'savants', count, _ ). +noun( 'save', 'saves', count, _ ). +noun( 'saveloy', 'saveloys', both, _ ). +noun( 'saver', 'savers', count, _ ). +noun( 'saving', 'savings', count, _ ). +noun( 'savings-bank', 'savings-banks', count, _ ). +noun( 'saviour', 'saviours', count, _ ). +noun( 'savoir-faire', '-', mass, _ ). +noun( 'savory', '-', mass, _ ). +noun( 'savour', 'savours', both, _ ). +noun( 'savoury', 'savouries', count, _ ). +noun( 'savoy', 'savoys', both, _ ). +noun( 'savvy', '-', mass, _ ). +noun( 'saw', 'saws', count, _ ). +noun( 'saw-pit', 'saw-pits', count, _ ). +noun( 'sawdust', '-', mass, _ ). +noun( 'sawhorse', 'sawhorses', count, _ ). +noun( 'sawmill', 'sawmills', count, _ ). +noun( 'sawyer', 'sawyers', count, _ ). +noun( 'sax', 'saxes', count, _ ). +noun( 'saxhorn', 'saxhorns', count, _ ). +noun( 'saxifrage', '-', mass, _ ). +noun( 'saxophone', 'saxophones', count, _ ). +noun( 'saxophonist', 'saxophonists', count, _ ). +noun( 'say', '-', count, _ ). +noun( 'saying', 'sayings', count, _ ). +noun( 'scab', 'scabs', both, _ ). +noun( 'scabbard', 'scabbards', count, _ ). +noun( 'scabies', '-', mass, _ ). +noun( 'scabious', '-', mass, _ ). +noun( 'scaffold', 'scaffolds', count, _ ). +noun( 'scaffolding', '-', mass, _ ). +noun( 'scalawag', 'scalawags', count, _ ). +noun( 'scald', 'scalds', count, _ ). +noun( 'scale', 'scales', both, _ ). +noun( 'scaling-ladder', 'scaling-ladders', count, _ ). +noun( 'scallop', 'scallops', count, _ ). +noun( 'scallop-shell', 'scallop-shells', count, _ ). +noun( 'scallywag', 'scallywags', count, _ ). +noun( 'scalp', 'scalps', count, _ ). +noun( 'scalpel', 'scalpels', count, _ ). +noun( 'scamp', 'scamps', count, _ ). +noun( 'scamper', 'scampers', count, _ ). +noun( 'scandal', 'scandals', both, _ ). +noun( 'scandalmonger', 'scandalmongers', count, _ ). +noun( 'scandalmongering', '-', mass, _ ). +noun( 'scanner', 'scanners', count, _ ). +noun( 'scansion', '-', mass, _ ). +noun( 'scantiness', '-', mass, _ ). +noun( 'scantling', 'scantlings', count, _ ). +noun( 'scapegoat', 'scapegoats', count, _ ). +noun( 'scapegrace', 'scapegraces', count, _ ). +noun( 'scapula', 'scapulas', count, _ ). +noun( 'scar', 'scars', count, _ ). +noun( 'scarab', 'scarabs', count, _ ). +noun( 'scarcity', 'scarcities', both, _ ). +noun( 'scare', 'scares', count, _ ). +noun( 'scarecrow', 'scarecrows', count, _ ). +noun( 'scaremonger', 'scaremongers', count, _ ). +noun( 'scarf', 'scarfs', count, _ ). +noun( 'scarf-pin', 'scarf-pins', count, _ ). +noun( 'scarlet', 'scarlets', both, _ ). +noun( 'scarp', 'scarps', count, _ ). +noun( 'scatter', 'scatters', count, _ ). +noun( 'scatterbrain', 'scatterbrains', count, _ ). +noun( 'scavenger', 'scavengers', count, _ ). +noun( 'scenario', 'scenarios', count, _ ). +noun( 'scenarist', 'scenarists', count, _ ). +noun( 'scene', 'scenes', count, _ ). +noun( 'scene-painter', 'scene-painters', count, _ ). +noun( 'scene-shifter', 'scene-shifters', count, _ ). +noun( 'scenery', '-', mass, _ ). +noun( 'scent', 'scents', both, _ ). +noun( 'sceptic', 'sceptics', count, _ ). +noun( 'scepticism', '-', mass, _ ). +noun( 'sceptre', 'sceptres', count, _ ). +noun( 'schedule', 'schedules', count, _ ). +noun( 'schema', 'schemas', count, _ ). +noun( 'scheme', 'schemes', count, _ ). +noun( 'schemer', 'schemers', count, _ ). +noun( 'scherzo', 'scherzos', count, _ ). +noun( 'schism', 'schisms', both, _ ). +noun( 'schist', 'schists', count, _ ). +noun( 'schizophrenia', '-', mass, _ ). +noun( 'schizophrenic', 'schizophrenics', count, _ ). +noun( 'schmaltz', '-', mass, _ ). +noun( 'schmalz', '-', mass, _ ). +noun( 'schnapps', '-', mass, _ ). +noun( 'schnitzel', 'schnitzels', both, _ ). +noun( 'schnorkel', 'schnorkels', count, _ ). +noun( 'scholar', 'scholars', count, _ ). +noun( 'scholarship', 'scholarships', both, _ ). +noun( 'scholasticism', '-', mass, _ ). +noun( 'school', 'schools', both, _ ). +noun( 'school-board', 'school-boards', count, _ ). +noun( 'schoolbook', 'schoolbooks', count, _ ). +noun( 'schoolboy', 'schoolboys', count, _ ). +noun( 'schoolchild', 'schoolchildren', count, _ ). +noun( 'schoolfellow', 'schoolfellows', count, _ ). +noun( 'schoolfriend', 'schoolfriends', count, _ ). +noun( 'schoolgirl', 'schoolgirls', count, _ ). +noun( 'schoolhouse', 'schoolhouses', count, _ ). +noun( 'schooling', '-', mass, _ ). +noun( 'schoolman', 'schoolmen', count, _ ). +noun( 'schoolmaster', 'schoolmasters', count, _ ). +noun( 'schoolmate', 'schoolmates', count, _ ). +noun( 'schoolmistress', 'schoolmistresses', count, _ ). +noun( 'schoolroom', 'schoolrooms', count, _ ). +noun( 'schoolteacher', 'schoolteachers', count, _ ). +noun( 'schooltime', 'schooltimes', both, _ ). +noun( 'schooner', 'schooners', count, _ ). +noun( 'schottische', 'schottisches', count, _ ). +noun( 'schwa', 'schwas', count, _ ). +noun( 'sciatica', '-', mass, _ ). +noun( 'science', 'sciences', both, _ ). +noun( 'scientist', 'scientists', count, _ ). +noun( 'scimitar', 'scimitars', count, _ ). +noun( 'scintilla', 'scintillas', count, _ ). +noun( 'scintillation', 'scintillations', count, _ ). +noun( 'scion', 'scions', count, _ ). +noun( 'sclerosis', '-', mass, _ ). +noun( 'scoff', 'scoffs', count, _ ). +noun( 'scoffer', 'scoffers', count, _ ). +noun( 'scold', 'scolds', count, _ ). +noun( 'scolding', 'scoldings', count, _ ). +noun( 'scollop', 'scollops', count, _ ). +noun( 'sconce', 'sconces', count, _ ). +noun( 'scone', 'scones', count, _ ). +noun( 'scoop', 'scoops', count, _ ). +noun( 'scoopful', 'scoopfuls', count, _ ). +noun( 'scooter', 'scooters', count, _ ). +noun( 'scope', '-', mass, _ ). +noun( 'scorch', 'scorches', count, _ ). +noun( 'scorcher', 'scorchers', count, _ ). +noun( 'score', 'scores', count, _ ). +noun( 'scoreboard', 'scoreboards', count, _ ). +noun( 'scorebook', 'scorebooks', count, _ ). +noun( 'scorecard', 'scorecards', count, _ ). +noun( 'scorer', 'scorers', count, _ ). +noun( 'scorn', '-', mass, _ ). +noun( 'scorpion', 'scorpions', count, _ ). +noun( 'scot', 'scots', count, _ ). +noun( 'scotch', 'scotches', both, _ ). +noun( 'scoundrel', 'scoundrels', count, _ ). +noun( 'scour', 'scours', count, _ ). +noun( 'scourer', 'scourers', count, _ ). +noun( 'scourge', 'scourges', count, _ ). +noun( 'scout', 'scouts', count, _ ). +noun( 'scoutmaster', 'scoutmasters', count, _ ). +noun( 'scow', 'scows', count, _ ). +noun( 'scowl', 'scowls', count, _ ). +noun( 'scrabble', 'scrabbles', both, _ ). +noun( 'scrag', 'scrags', count, _ ). +noun( 'scrag-end', 'scrag-ends', count, _ ). +noun( 'scramble', 'scrambles', count, _ ). +noun( 'scrambler', 'scramblers', count, _ ). +noun( 'scrap', 'scraps', both, _ ). +noun( 'scrap-iron', '-', mass, _ ). +noun( 'scrapbook', 'scrapbooks', count, _ ). +noun( 'scrape', 'scrapes', count, _ ). +noun( 'scraper', 'scrapers', count, _ ). +noun( 'scrapheap', 'scrapheaps', count, _ ). +noun( 'scraping', 'scrapings', count, _ ). +noun( 'scrappiness', '-', mass, _ ). +noun( 'scratch', 'scratches', count, _ ). +noun( 'scratch-pad', 'scratch-pads', count, _ ). +noun( 'scratch-race', 'scratch-races', count, _ ). +noun( 'scrawl', 'scrawls', count, _ ). +noun( 'scream', 'screams', count, _ ). +noun( 'scree', 'screes', both, _ ). +noun( 'screech', 'screeches', count, _ ). +noun( 'screech-owl', 'screech-owls', count, _ ). +noun( 'screed', 'screeds', count, _ ). +noun( 'screen', 'screens', count, _ ). +noun( 'screw', 'screws', both, _ ). +noun( 'screwball', 'screwballs', count, _ ). +noun( 'screwdriver', 'screwdrivers', count, _ ). +noun( 'scribble', 'scribbles', both, _ ). +noun( 'scribbler', 'scribblers', count, _ ). +noun( 'scribbling-block', 'scribbling-blocks', count, _ ). +noun( 'scribe', 'scribes', count, _ ). +noun( 'scrimmage', 'scrimmages', count, _ ). +noun( 'scrimshanker', 'scrimshankers', count, _ ). +noun( 'scrip', 'scrips', both, _ ). +noun( 'script', 'scripts', both, _ ). +noun( 'scripture', 'scriptures', count, _ ). +noun( 'scriptwriter', 'scriptwriters', count, _ ). +noun( 'scrivener', 'scriveners', count, _ ). +noun( 'scrofula', '-', mass, _ ). +noun( 'scroll', 'scrolls', count, _ ). +noun( 'scrotum', 'scrotums', count, _ ). +noun( 'scrounger', 'scroungers', count, _ ). +noun( 'scrub', 'scrubs', both, _ ). +noun( 'scrubbing-brush', 'scrubbing-brushes', count, _ ). +noun( 'scruff', 'scruffs', count, _ ). +noun( 'scrum', 'scrums', count, _ ). +noun( 'scrummage', 'scrummages', count, _ ). +noun( 'scrunch', 'scrunches', count, _ ). +noun( 'scruple', 'scruples', both, _ ). +noun( 'scrutineer', 'scrutineers', count, _ ). +noun( 'scrutiny', 'scrutinies', both, _ ). +noun( 'scud', 'scuds', both, _ ). +noun( 'scull', 'sculls', count, _ ). +noun( 'sculler', 'scullers', count, _ ). +noun( 'scullery', 'sculleries', count, _ ). +noun( 'scullion', 'scullions', count, _ ). +noun( 'sculptor', 'sculptors', count, _ ). +noun( 'sculptress', 'sculptresses', count, _ ). +noun( 'sculpture', 'sculptures', both, _ ). +noun( 'scum', '-', mass, _ ). +noun( 'scupper', 'scuppers', count, _ ). +noun( 'scurf', '-', mass, _ ). +noun( 'scurrility', '-', mass, _ ). +noun( 'scurry', 'scurries', both, _ ). +noun( 'scurvy', '-', mass, _ ). +noun( 'scut', 'scuts', count, _ ). +noun( 'scutcheon', 'scutcheons', count, _ ). +noun( 'scuttle', 'scuttles', count, _ ). +noun( 'scythe', 'scythes', count, _ ). +noun( 'sea', 'seas', both, _ ). +noun( 'sea-anemone', 'sea-anemones', count, _ ). +noun( 'sea-animal', 'sea-animals', count, _ ). +noun( 'sea-bathing', '-', mass, _ ). +noun( 'sea-boat', 'sea-boats', count, _ ). +noun( 'sea-bream', 'sea-bream', count, _ ). +noun( 'sea-breeze', 'sea-breezes', count, _ ). +noun( 'sea-coal', '-', mass, _ ). +noun( 'sea-cow', 'sea-cows', count, _ ). +noun( 'sea-dog', 'sea-dogs', count, _ ). +noun( 'sea-fish', 'sea-fish', count, _ ). +noun( 'sea-god', 'sea-gods', count, _ ). +noun( 'sea-green', '-', mass, _ ). +noun( 'sea-horse', 'sea-horses', count, _ ). +noun( 'sea-level', '-', count, _ ). +noun( 'sea-lion', 'sea-lions', count, _ ). +noun( 'sea-power', '-', mass, _ ). +noun( 'sea-rover', 'sea-rovers', count, _ ). +noun( 'sea-snake', 'sea-snakes', count, _ ). +noun( 'sea-urchin', 'sea-urchins', count, _ ). +noun( 'sea-wall', 'sea-walls', count, _ ). +noun( 'sea-water', '-', mass, _ ). +noun( 'seabed', 'seabeds', count, _ ). +noun( 'seabird', 'seabirds', count, _ ). +noun( 'seaboard', 'seaboards', count, _ ). +noun( 'seafarer', 'seafarers', count, _ ). +noun( 'seafood', 'seafoods', both, _ ). +noun( 'seafront', 'seafronts', count, _ ). +noun( 'seagull', 'seagulls', count, _ ). +noun( 'seakale', '-', mass, _ ). +noun( 'seal', 'seals', count, _ ). +noun( 'seal-ring', 'seal-rings', count, _ ). +noun( 'sealer', 'sealers', count, _ ). +noun( 'sealing-wax', '-', mass, _ ). +noun( 'sealskin', 'sealskins', both, _ ). +noun( 'seam', 'seams', count, _ ). +noun( 'seaman', 'seamen', count, _ ). +noun( 'seamanship', '-', mass, _ ). +noun( 'seamstress', 'seamstresses', count, _ ). +noun( 'seaplane', 'seaplanes', count, _ ). +noun( 'seaport', 'seaports', count, _ ). +noun( 'search', 'searches', both, _ ). +noun( 'search-party', 'search-parties', count, _ ). +noun( 'search-warrant', 'search-warrants', count, _ ). +noun( 'searcher', 'searchers', count, _ ). +noun( 'searchlight', 'searchlights', count, _ ). +noun( 'searing-iron', 'searing-irons', count, _ ). +noun( 'seascape', 'seascapes', count, _ ). +noun( 'seashell', 'seashells', count, _ ). +noun( 'seashore', 'seashores', count, _ ). +noun( 'seasickness', '-', mass, _ ). +noun( 'seaside', 'seasides', count, _ ). +noun( 'season', 'seasons', count, _ ). +noun( 'season-ticket', 'season-tickets', count, _ ). +noun( 'seasoning', 'seasonings', both, _ ). +noun( 'seat', 'seats', count, _ ). +noun( 'seat-belt', 'seat-belts', count, _ ). +noun( 'seating-room', '-', mass, _ ). +noun( 'seaway', 'seaways', count, _ ). +noun( 'seaweed', 'seaweeds', both, _ ). +noun( 'seaworthiness', '-', mass, _ ). +noun( 'sec', 'secs', count, _ ). +noun( 'secession', 'secessions', both, _ ). +noun( 'secessionist', 'secessionists', count, _ ). +noun( 'seclusion', '-', mass, _ ). +noun( 'second', 'seconds', count, _ ). +noun( 'second-best', '-', count, _ ). +noun( 'second-class', '-', mass, _ ). +noun( 'second-hand', 'second-hands', count, _ ). +noun( 'second-rater', 'second-raters', count, _ ). +noun( 'seconder', 'seconders', count, _ ). +noun( 'secondment', 'secondments', count, _ ). +noun( 'secrecy', '-', mass, _ ). +noun( 'secret', 'secrets', both, _ ). +noun( 'secretariat', 'secretariats', count, _ ). +noun( 'secretary', 'secretaries', count, _ ). +noun( 'secretion', 'secretions', both, _ ). +noun( 'secretiveness', '-', mass, _ ). +noun( 'sect', 'sects', count, _ ). +noun( 'sectarian', 'sectarians', count, _ ). +noun( 'sectarianism', '-', mass, _ ). +noun( 'section', 'sections', count, _ ). +noun( 'sectionalism', '-', mass, _ ). +noun( 'sector', 'sectors', count, _ ). +noun( 'secularism', '-', mass, _ ). +noun( 'secularist', 'secularists', count, _ ). +noun( 'security', 'securities', both, _ ). +noun( 'sedan', 'sedans', count, _ ). +noun( 'sedan-chair', 'sedan-chairs', count, _ ). +noun( 'sedateness', '-', mass, _ ). +noun( 'sedation', '-', mass, _ ). +noun( 'sedative', 'sedatives', both, _ ). +noun( 'sedge', 'sedges', both, _ ). +noun( 'sediment', '-', mass, _ ). +noun( 'sedition', '-', mass, _ ). +noun( 'seducer', 'seducers', count, _ ). +noun( 'seduction', 'seductions', both, _ ). +noun( 'see', 'sees', count, _ ). +noun( 'seed', 'seed', both, _ ). +noun( 'seed-corn', '-', mass, _ ). +noun( 'seedbed', 'seedbeds', count, _ ). +noun( 'seedcake', 'seedcakes', count, _ ). +noun( 'seediness', '-', mass, _ ). +noun( 'seedling', 'seedlings', count, _ ). +noun( 'seedsman', 'seedsmen', count, _ ). +noun( 'seedtime', 'seedtimes', count, _ ). +noun( 'seeker', 'seekers', count, _ ). +noun( 'seemliness', '-', mass, _ ). +noun( 'seepage', '-', mass, _ ). +noun( 'seer', 'seers', count, _ ). +noun( 'seersucker', '-', mass, _ ). +noun( 'seesaw', 'seesaws', both, _ ). +noun( 'segment', 'segments', count, _ ). +noun( 'segmentation', 'segmentations', both, _ ). +noun( 'segregation', 'segregations', count, _ ). +noun( 'seignior', 'seigniors', count, _ ). +noun( 'seine', 'seines', count, _ ). +noun( 'seismograph', 'seismographs', count, _ ). +noun( 'seismologist', 'seismologists', count, _ ). +noun( 'seismology', '-', mass, _ ). +noun( 'seizure', 'seizures', both, _ ). +noun( 'selection', 'selections', both, _ ). +noun( 'selectivity', '-', mass, _ ). +noun( 'selector', 'selectors', count, _ ). +noun( 'selenium', '-', mass, _ ). +noun( 'self', 'selves', both, _ ). +noun( 'self-abasement', '-', mass, _ ). +noun( 'self-abnegation', '-', mass, _ ). +noun( 'self-assertion', '-', mass, _ ). +noun( 'self-assurance', '-', mass, _ ). +noun( 'self-command', '-', mass, _ ). +noun( 'self-communion', '-', mass, _ ). +noun( 'self-complacency', '-', mass, _ ). +noun( 'self-confidence', '-', mass, _ ). +noun( 'self-consciousness', '-', mass, _ ). +noun( 'self-control', '-', mass, _ ). +noun( 'self-defence', '-', mass, _ ). +noun( 'self-denial', '-', mass, _ ). +noun( 'self-determination', '-', mass, _ ). +noun( 'self-esteem', '-', mass, _ ). +noun( 'self-examination', 'self-examinations', both, _ ). +noun( 'self-help', '-', mass, _ ). +noun( 'self-importance', '-', mass, _ ). +noun( 'self-indulgence', '-', mass, _ ). +noun( 'self-interest', '-', mass, _ ). +noun( 'self-pity', '-', mass, _ ). +noun( 'self-possession', '-', mass, _ ). +noun( 'self-preservation', '-', mass, _ ). +noun( 'self-reliance', '-', mass, _ ). +noun( 'self-respect', '-', mass, _ ). +noun( 'self-rule', '-', mass, _ ). +noun( 'self-sacrifice', 'self-sacrifices', both, _ ). +noun( 'self-seeker', 'self-seekers', count, _ ). +noun( 'self-seeking', '-', mass, _ ). +noun( 'self-service', '-', mass, _ ). +noun( 'self-starter', 'self-starters', count, _ ). +noun( 'self-sufficiency', '-', mass, _ ). +noun( 'self-will', '-', mass, _ ). +noun( 'selfishness', '-', mass, _ ). +noun( 'sell', '-', count, _ ). +noun( 'seller', 'sellers', count, _ ). +noun( 'selling', '-', mass, _ ). +noun( 'sellout', 'sellouts', count, _ ). +noun( 'selvage', 'selvages', count, _ ). +noun( 'selvedge', 'selvedges', count, _ ). +noun( 'semantics', 'semantics', mass, _ ). +noun( 'semaphore', '-', mass, _ ). +noun( 'semblance', 'semblances', both, _ ). +noun( 'semen', '-', mass, _ ). +noun( 'semester', 'semesters', count, _ ). +noun( 'semibreve', 'semibreves', count, _ ). +noun( 'semicircle', 'semicircles', count, _ ). +noun( 'semicolon', 'semicolons', count, _ ). +noun( 'semiconductor', 'semiconductors', count, _ ). +noun( 'semifinal', 'semifinals', count, _ ). +noun( 'semifinalist', 'semifinalists', count, _ ). +noun( 'seminar', 'seminars', count, _ ). +noun( 'seminarist', 'seminarists', count, _ ). +noun( 'seminary', 'seminaries', count, _ ). +noun( 'semiquaver', 'semiquavers', count, _ ). +noun( 'semitone', 'semitones', count, _ ). +noun( 'semivowel', 'semivowels', count, _ ). +noun( 'semolina', '-', mass, _ ). +noun( 'sempstress', 'sempstresses', count, _ ). +noun( 'senate', 'senates', count, _ ). +noun( 'senator', 'senators', count, _ ). +noun( 'send-up', 'send-ups', count, _ ). +noun( 'sender', 'senders', count, _ ). +noun( 'sendoff', 'sendoffs', count, _ ). +noun( 'senescence', '-', mass, _ ). +noun( 'seneschal', 'seneschals', count, _ ). +noun( 'senility', '-', mass, _ ). +noun( 'senior', 'seniors', count, _ ). +noun( 'seniority', '-', mass, _ ). +noun( 'senna', '-', mass, _ ). +noun( 'senora', 'senoras', count, _ ). +noun( 'senorita', 'senoritas', count, _ ). +noun( 'sensation', 'sensations', both, _ ). +noun( 'sensationalism', '-', mass, _ ). +noun( 'sensationalist', 'sensationalists', count, _ ). +noun( 'sense', 'senses', both, _ ). +noun( 'sense-organ', 'sense-organs', count, _ ). +noun( 'senselessness', '-', mass, _ ). +noun( 'sensibility', 'sensibilities', both, _ ). +noun( 'sensitivity', 'sensitivities', both, _ ). +noun( 'sensitization', '-', mass, _ ). +noun( 'sensualism', '-', mass, _ ). +noun( 'sensualist', 'sensualists', count, _ ). +noun( 'sensuality', '-', mass, _ ). +noun( 'sensuousness', '-', mass, _ ). +noun( 'sentence', 'sentences', count, _ ). +noun( 'sentiment', 'sentiments', both, _ ). +noun( 'sentimentalist', 'sentimentalists', count, _ ). +noun( 'sentimentality', '-', mass, _ ). +noun( 'sentinel', 'sentinels', count, _ ). +noun( 'sentry', 'sentries', count, _ ). +noun( 'sentry-box', 'sentry-boxes', count, _ ). +noun( 'sentry-go', '-', count, _ ). +noun( 'sepal', 'sepals', count, _ ). +noun( 'separability', '-', mass, _ ). +noun( 'separate', 'separates', count, _ ). +noun( 'separation', 'separations', both, _ ). +noun( 'separatist', 'separatists', count, _ ). +noun( 'separator', 'separators', count, _ ). +noun( 'sepia', '-', mass, _ ). +noun( 'sepsis', '-', mass, _ ). +noun( 'septet', 'septets', count, _ ). +noun( 'septicaemia', '-', mass, _ ). +noun( 'septicemia', '-', mass, _ ). +noun( 'septuagenarian', 'septuagenarians', count, _ ). +noun( 'sepulchre', 'sepulchres', count, _ ). +noun( 'sepulture', '-', mass, _ ). +noun( 'sequel', 'sequels', count, _ ). +noun( 'sequence', 'sequences', both, _ ). +noun( 'sequestration', 'sequestrations', both, _ ). +noun( 'sequin', 'sequins', count, _ ). +noun( 'sequoia', 'sequoias', count, _ ). +noun( 'seraglio', 'seraglios', count, _ ). +noun( 'seraph', 'seraphs', count, _ ). +noun( 'serenade', 'serenades', count, _ ). +noun( 'serendipity', '-', mass, _ ). +noun( 'serenity', '-', mass, _ ). +noun( 'serf', 'serfs', count, _ ). +noun( 'serfdom', '-', mass, _ ). +noun( 'serge', '-', mass, _ ). +noun( 'sergeant', 'sergeants', count, _ ). +noun( 'sergeant-major', 'sergeant-majors', count, _ ). +noun( 'serial', 'serials', count, _ ). +noun( 'sericulture', 'sericultures', count, _ ). +noun( 'sericulturist', 'sericulturists', count, _ ). +noun( 'series', 'series', count, _ ). +noun( 'seriousness', '-', mass, _ ). +noun( 'serjeant', 'serjeants', count, _ ). +noun( 'sermon', 'sermons', count, _ ). +noun( 'serpent', 'serpents', count, _ ). +noun( 'serum', '-', mass, _ ). +noun( 'servant', 'servants', count, _ ). +noun( 'serve', 'serves', count, _ ). +noun( 'server', 'servers', count, _ ). +noun( 'service', 'services', both, _ ). +noun( 'serviceman', 'servicemen', count, _ ). +noun( 'serviette', 'serviettes', count, _ ). +noun( 'servility', '-', mass, _ ). +noun( 'serving', 'servings', count, _ ). +noun( 'servitor', 'servitors', count, _ ). +noun( 'servitude', '-', mass, _ ). +noun( 'sesame', '-', mass, _ ). +noun( 'session', 'sessions', count, _ ). +noun( 'set', 'sets', both, _ ). +noun( 'set-square', 'set-squares', count, _ ). +noun( 'set-to', 'set-tos', count, _ ). +noun( 'set-up', 'set-ups', count, _ ). +noun( 'setback', 'setbacks', count, _ ). +noun( 'sett', 'setts', count, _ ). +noun( 'settee', 'settees', count, _ ). +noun( 'setter', 'setters', count, _ ). +noun( 'setting', 'settings', count, _ ). +noun( 'settle', 'settles', count, _ ). +noun( 'settlement', 'settlements', both, _ ). +noun( 'settler', 'settlers', count, _ ). +noun( 'seven', 'sevens', count, _ ). +noun( 'seventeen', 'seventeens', count, _ ). +noun( 'seventeenth', 'seventeenths', count, _ ). +noun( 'seventh', 'sevenths', count, _ ). +noun( 'seventieth', 'seventieths', count, _ ). +noun( 'seventy', 'seventies', count, _ ). +noun( 'severance', '-', mass, _ ). +noun( 'severity', 'severities', both, _ ). +noun( 'sewage', '-', mass, _ ). +noun( 'sewage-farm', 'sewage-farms', count, _ ). +noun( 'sewage-works', 'sewage-works', count, _ ). +noun( 'sewer', 'sewers', count, _ ). +noun( 'sewer', 'sewers', count, _ ). +noun( 'sewer-gas', '-', mass, _ ). +noun( 'sewer-rat', 'sewer-rats', count, _ ). +noun( 'sewerage', 'sewerages', both, _ ). +noun( 'sewing', '-', mass, _ ). +noun( 'sewing-machine', 'sewing-machines', count, _ ). +noun( 'sex', 'sexes', both, _ ). +noun( 'sexagenarian', 'sexagenarians', count, _ ). +noun( 'sexism', '-', mass, _ ). +noun( 'sexist', 'sexists', count, _ ). +noun( 'sextant', 'sextants', count, _ ). +noun( 'sextet', 'sextets', count, _ ). +noun( 'sextette', 'sextettes', count, _ ). +noun( 'sexton', 'sextons', count, _ ). +noun( 'sexuality', '-', mass, _ ). +noun( 'se~nor', 'se~nores', count, _ ). +noun( 'sgd', '-', proper, _ ). +noun( 'shabbiness', '-', mass, _ ). +noun( 'shack', 'shacks', count, _ ). +noun( 'shackle', 'shackles', count, _ ). +noun( 'shad', 'shad', count, _ ). +noun( 'shaddock', 'shaddocks', count, _ ). +noun( 'shade', 'shades', both, _ ). +noun( 'shade-tree', 'shade-trees', count, _ ). +noun( 'shading', 'shadings', both, _ ). +noun( 'shadow', 'shadows', both, _ ). +noun( 'shadow-boxing', '-', mass, _ ). +noun( 'shaft', 'shafts', count, _ ). +noun( 'shag', '-', mass, _ ). +noun( 'shagginess', '-', mass, _ ). +noun( 'shagging', '-', mass, _ ). +noun( 'shah', 'shahs', count, _ ). +noun( 'shake', 'shakes', count, _ ). +noun( 'shake-up', 'shake-ups', count, _ ). +noun( 'shakedown', 'shakedowns', count, _ ). +noun( 'shakeout', 'shakeouts', count, _ ). +noun( 'shaker', 'shakers', count, _ ). +noun( 'shakiness', '-', mass, _ ). +noun( 'shaking', 'shakings', count, _ ). +noun( 'shale', '-', mass, _ ). +noun( 'shale-oil', '-', mass, _ ). +noun( 'shallot', 'shallots', count, _ ). +noun( 'shallow', 'shallows', count, _ ). +noun( 'sham', '-', both, _ ). +noun( 'shamble', 'shambles', count, _ ). +noun( 'shambles', '-', count, _ ). +noun( 'shame', '-', mass, _ ). +noun( 'shamelessness', '-', mass, _ ). +noun( 'shammy', 'shammies', count, _ ). +noun( 'shampoo', 'shampoos', both, _ ). +noun( 'shamrock', 'shamrocks', count, _ ). +noun( 'shandy', 'shandies', both, _ ). +noun( 'shank', 'shanks', count, _ ). +noun( 'shantung', '-', mass, _ ). +noun( 'shanty', 'shanties', count, _ ). +noun( 'shantytown', 'shantytowns', count, _ ). +noun( 'shape', 'shapes', both, _ ). +noun( 'shapelessness', '-', mass, _ ). +noun( 'shard', 'shards', count, _ ). +noun( 'share', 'shares', both, _ ). +noun( 'share-out', 'share-outs', count, _ ). +noun( 'sharecropper', 'sharecroppers', count, _ ). +noun( 'shareholder', 'shareholders', count, _ ). +noun( 'shareholding', 'shareholdings', count, _ ). +noun( 'shark', 'sharks', count, _ ). +noun( 'sharkskin', 'sharkskins', both, _ ). +noun( 'sharp', 'sharps', count, _ ). +noun( 'sharpener', 'sharpeners', count, _ ). +noun( 'sharper', 'sharpers', count, _ ). +noun( 'sharpness', '-', mass, _ ). +noun( 'sharpshooter', 'sharpshooters', count, _ ). +noun( 'shave', 'shaves', count, _ ). +noun( 'shaver', 'shavers', count, _ ). +noun( 'shaving-brush', 'shaving-brushes', count, _ ). +noun( 'shawl', 'shawls', count, _ ). +noun( 'she-goat', 'she-goats', count, _ ). +noun( 'sheaf', 'sheaves', count, _ ). +noun( 'sheath', 'sheaths', count, _ ). +noun( 'sheath-knife', 'sheath-knives', count, _ ). +noun( 'sheathing', 'sheathings', count, _ ). +noun( 'shebang', '-', count, _ ). +noun( 'shebeen', 'shebeens', count, _ ). +noun( 'shed', 'sheds', count, _ ). +noun( 'sheen', '-', mass, _ ). +noun( 'sheep', 'sheep', count, _ ). +noun( 'sheepdog', 'sheepdogs', count, _ ). +noun( 'sheepfold', 'sheepfolds', count, _ ). +noun( 'sheepishness', '-', mass, _ ). +noun( 'sheeprun', 'sheepruns', count, _ ). +noun( 'sheepskin', 'sheepskins', count, _ ). +noun( 'sheet', 'sheets', count, _ ). +noun( 'sheet-anchor', 'sheet-anchors', count, _ ). +noun( 'sheet-lightning', '-', mass, _ ). +noun( 'sheeting', '-', mass, _ ). +noun( 'sheik', 'sheiks', count, _ ). +noun( 'sheikdom', 'sheikdoms', count, _ ). +noun( 'sheikh', 'sheikhs', count, _ ). +noun( 'sheikhdom', 'sheikhdoms', count, _ ). +noun( 'shekel', 'shekels', count, _ ). +noun( 'sheldrake', 'sheldrakes', count, _ ). +noun( 'shelf', 'shelves', count, _ ). +noun( 'shell', 'shells', count, _ ). +noun( 'shell-shock', '-', mass, _ ). +noun( 'shellac', '-', mass, _ ). +noun( 'shellfire', '-', mass, _ ). +noun( 'shellfish', 'shellfish', count, _ ). +noun( 'shelter', 'shelters', both, _ ). +noun( 'shepherd', 'shepherds', count, _ ). +noun( 'shepherdess', 'shepherdesses', count, _ ). +noun( 'sherbet', 'sherbets', both, _ ). +noun( 'sheriff', 'sheriffs', count, _ ). +noun( 'sherry', 'sherries', both, _ ). +noun( 'shibboleth', 'shibboleths', count, _ ). +noun( 'shield', 'shields', count, _ ). +noun( 'shift', 'shifts', count, _ ). +noun( 'shiftiness', '-', mass, _ ). +noun( 'shillelagh', 'shillelaghs', count, _ ). +noun( 'shilling', 'shillings', count, _ ). +noun( 'shillyshally', '-', mass, _ ). +noun( 'shimmer', '-', mass, _ ). +noun( 'shin', 'shins', count, _ ). +noun( 'shinbone', 'shinbones', count, _ ). +noun( 'shindig', 'shindigs', count, _ ). +noun( 'shindy', 'shindies', count, _ ). +noun( 'shine', '-', mass, _ ). +noun( 'shingle', 'shingles', both, _ ). +noun( 'shingles', 'shingles', mass, _ ). +noun( 'shinguard', 'shinguards', count, _ ). +noun( 'ship', 'ships', count, _ ). +noun( 'ship\'s-chandler', 'ship\'s-chandlers', count, _ ). +noun( 'ship-breaker', 'ship-breakers', count, _ ). +noun( 'ship-canal', 'ship-canals', count, _ ). +noun( 'shipbroker', 'shipbrokers', count, _ ). +noun( 'shipbuilder', 'shipbuilders', count, _ ). +noun( 'shipbuilding', '-', mass, _ ). +noun( 'shipload', 'shiploads', count, _ ). +noun( 'shipmate', 'shipmates', count, _ ). +noun( 'shipment', 'shipments', both, _ ). +noun( 'shipowner', 'shipowners', count, _ ). +noun( 'shipper', 'shippers', count, _ ). +noun( 'shipping', '-', mass, _ ). +noun( 'shipping-agent', 'shipping-agents', count, _ ). +noun( 'shipping-office', 'shipping-offices', count, _ ). +noun( 'shipway', 'shipways', count, _ ). +noun( 'shipwreck', 'shipwrecks', both, _ ). +noun( 'shipwright', 'shipwrights', count, _ ). +noun( 'shipyard', 'shipyards', count, _ ). +noun( 'shire', 'shires', count, _ ). +noun( 'shirker', 'shirkers', count, _ ). +noun( 'shirt', 'shirts', count, _ ). +noun( 'shirt-front', 'shirt-fronts', count, _ ). +noun( 'shirting', '-', mass, _ ). +noun( 'shirtwaist', 'shirtwaists', count, _ ). +noun( 'shirtwaister', 'shirtwaisters', count, _ ). +noun( 'shish kebab', 'shish kebabs', count, _ ). +noun( 'shit', '-', mass, _ ). +noun( 'shiver', 'shivers', count, _ ). +noun( 'shoal', 'shoals', count, _ ). +noun( 'shock', 'shocks', both, _ ). +noun( 'shock-brigade', 'shock-brigades', count, _ ). +noun( 'shock-worker', 'shock-workers', count, _ ). +noun( 'shocker', 'shockers', count, _ ). +noun( 'shoddiness', '-', mass, _ ). +noun( 'shoddy', '-', mass, _ ). +noun( 'shoe', 'shoes', count, _ ). +noun( 'shoe-leather', 'shoe-leathers', both, _ ). +noun( 'shoeblack', '-', mass, _ ). +noun( 'shoehorn', 'shoehorns', count, _ ). +noun( 'shoelace', 'shoelaces', count, _ ). +noun( 'shoemaker', 'shoemakers', count, _ ). +noun( 'shoemaking', '-', mass, _ ). +noun( 'shoestring', 'shoestrings', count, _ ). +noun( 'shoetree', 'shoetrees', count, _ ). +noun( 'shogun', 'shoguns', count, _ ). +noun( 'shoot', 'shoots', count, _ ). +noun( 'shooter', 'shooters', count, _ ). +noun( 'shooting', '-', mass, _ ). +noun( 'shooting-box', 'shooting-boxes', count, _ ). +noun( 'shooting-brake', 'shooting-brakes', count, _ ). +noun( 'shooting-gallery', 'shooting-galleries', count, _ ). +noun( 'shooting-range', 'shooting-ranges', count, _ ). +noun( 'shooting-stick', 'shooting-sticks', count, _ ). +noun( 'shop', 'shops', both, _ ). +noun( 'shop-assistant', 'shop-assistants', count, _ ). +noun( 'shop-bell', 'shop-bells', count, _ ). +noun( 'shop-boy', 'shop-boys', count, _ ). +noun( 'shop-front', 'shop-fronts', count, _ ). +noun( 'shop-girl', 'shop-girls', count, _ ). +noun( 'shop-steward', 'shop-stewards', count, _ ). +noun( 'shopkeeper', 'shopkeepers', count, _ ). +noun( 'shoplifter', 'shoplifters', count, _ ). +noun( 'shoplifting', '-', mass, _ ). +noun( 'shopper', 'shoppers', count, _ ). +noun( 'shopping', '-', mass, _ ). +noun( 'shopwalker', 'shopwalkers', count, _ ). +noun( 'shopwindow', 'shopwindows', count, _ ). +noun( 'shore', 'shores', both, _ ). +noun( 'short', 'shorts', count, _ ). +noun( 'short-circuit', 'short-circuits', count, _ ). +noun( 'shortage', 'shortages', both, _ ). +noun( 'shortbread', '-', mass, _ ). +noun( 'shortcake', '-', mass, _ ). +noun( 'shortcoming', 'shortcomings', count, _ ). +noun( 'shortening', '-', mass, _ ). +noun( 'shortfall', 'shortfalls', count, _ ). +noun( 'shorthand', '-', mass, _ ). +noun( 'shorthorn', 'shorthorns', count, _ ). +noun( 'shortlist', 'shortlists', count, _ ). +noun( 'shortness', '-', mass, _ ). +noun( 'shot', 'shots', both, _ ). +noun( 'shot-put', 'shot-puts', both, _ ). +noun( 'shot-tower', 'shot-towers', count, _ ). +noun( 'shotgun', 'shotguns', count, _ ). +noun( 'shoulder', 'shoulders', count, _ ). +noun( 'shoulder-blade', 'shoulder-blades', count, _ ). +noun( 'shoulder-flash', 'shoulder-flashes', count, _ ). +noun( 'shoulder-strap', 'shoulder-straps', count, _ ). +noun( 'shout', 'shouts', count, _ ). +noun( 'shouting', '-', mass, _ ). +noun( 'shove', 'shoves', count, _ ). +noun( 'shove-ha\'penny', '-', mass, _ ). +noun( 'shovel', 'shovels', count, _ ). +noun( 'shovel-board', '-', mass, _ ). +noun( 'shovelful', 'shovelfuls', count, _ ). +noun( 'show', 'shows', both, _ ). +noun( 'show-business', '-', mass, _ ). +noun( 'show-off', 'show-offs', count, _ ). +noun( 'show-window', 'show-windows', count, _ ). +noun( 'showbiz', '-', mass, _ ). +noun( 'showboat', 'showboats', count, _ ). +noun( 'showcase', 'showcases', count, _ ). +noun( 'showdown', 'showdowns', count, _ ). +noun( 'shower', 'showers', count, _ ). +noun( 'shower-bath', 'shower-baths', count, _ ). +noun( 'showgirl', 'showgirls', count, _ ). +noun( 'showiness', '-', mass, _ ). +noun( 'showing', 'showings', count, _ ). +noun( 'showjumping', '-', mass, _ ). +noun( 'showman', 'showmen', count, _ ). +noun( 'showmanship', '-', mass, _ ). +noun( 'showplace', 'showplaces', count, _ ). +noun( 'showroom', 'showrooms', count, _ ). +noun( 'shrapnel', '-', mass, _ ). +noun( 'shred', 'shreds', count, _ ). +noun( 'shrew', 'shrews', count, _ ). +noun( 'shrew-mouse', 'shrew-mice', count, _ ). +noun( 'shrewdness', '-', mass, _ ). +noun( 'shrewishness', '-', mass, _ ). +noun( 'shriek', 'shrieks', count, _ ). +noun( 'shrift', '-', mass, _ ). +noun( 'shrike', 'shrikes', count, _ ). +noun( 'shrillness', '-', mass, _ ). +noun( 'shrimp', 'shrimps', count, _ ). +noun( 'shrine', 'shrines', count, _ ). +noun( 'shrink', 'shrinks', count, _ ). +noun( 'shrinkage', '-', mass, _ ). +noun( 'shroud', 'shrouds', count, _ ). +noun( 'shrub', 'shrubs', count, _ ). +noun( 'shrubbery', 'shrubberies', count, _ ). +noun( 'shrug', 'shrugs', count, _ ). +noun( 'shuck', 'shucks', count, _ ). +noun( 'shudder', 'shudders', count, _ ). +noun( 'shuffle', 'shuffles', count, _ ). +noun( 'shuffler', 'shufflers', count, _ ). +noun( 'shunter', 'shunters', count, _ ). +noun( 'shutdown', 'shutdowns', count, _ ). +noun( 'shuteye', '-', mass, _ ). +noun( 'shutter', 'shutters', count, _ ). +noun( 'shuttle', 'shuttles', count, _ ). +noun( 'shuttlecock', 'shuttlecocks', count, _ ). +noun( 'shy', 'shies', count, _ ). +noun( 'shyness', '-', mass, _ ). +noun( 'shyster', 'shysters', count, _ ). +noun( 'sibilant', 'sibilants', count, _ ). +noun( 'sibling', 'siblings', count, _ ). +noun( 'sibyl', 'sibyls', count, _ ). +noun( 'sick-benefit', 'sick-benefits', both, _ ). +noun( 'sick-berth', 'sick-berths', count, _ ). +noun( 'sick-headache', 'sick-headaches', count, _ ). +noun( 'sick-leave', '-', mass, _ ). +noun( 'sick-list', 'sick-lists', count, _ ). +noun( 'sick-parade', 'sick-parades', count, _ ). +noun( 'sick-pay', '-', mass, _ ). +noun( 'sick-room', 'sick-rooms', count, _ ). +noun( 'sickbay', 'sickbays', count, _ ). +noun( 'sickbed', 'sickbeds', count, _ ). +noun( 'sickle', 'sickles', count, _ ). +noun( 'sickness', 'sicknesses', both, _ ). +noun( 'side', 'sides', both, _ ). +noun( 'side-chapel', 'side-chapels', count, _ ). +noun( 'side-dish', 'side-dishes', count, _ ). +noun( 'side-drum', 'side-drums', count, _ ). +noun( 'side-glance', 'side-glances', count, _ ). +noun( 'side-road', 'side-roads', count, _ ). +noun( 'side-saddle', 'side-saddles', count, _ ). +noun( 'side-slip', 'side-slips', count, _ ). +noun( 'side-stroke', '-', mass, _ ). +noun( 'side-view', 'side-views', count, _ ). +noun( 'sideboard', 'sideboards', count, _ ). +noun( 'sidecar', 'sidecars', count, _ ). +noun( 'sidelight', 'sidelights', count, _ ). +noun( 'sideline', 'sidelines', count, _ ). +noun( 'sideshow', 'sideshows', count, _ ). +noun( 'sidesman', 'sidesmen', count, _ ). +noun( 'sidestep', 'sidesteps', count, _ ). +noun( 'sidetrack', 'sidetracks', count, _ ). +noun( 'sidewalk', 'sidewalks', count, _ ). +noun( 'siding', 'sidings', count, _ ). +noun( 'siege', 'sieges', both, _ ). +noun( 'sienna', '-', mass, _ ). +noun( 'sierra', 'sierras', count, _ ). +noun( 'siesta', 'siestas', count, _ ). +noun( 'sieve', 'sieves', count, _ ). +noun( 'sifter', 'sifters', count, _ ). +noun( 'sigh', 'sighs', count, _ ). +noun( 'sight', 'sights', both, _ ). +noun( 'sighting', 'sightings', count, _ ). +noun( 'sightseeing', '-', mass, _ ). +noun( 'sightseer', 'sightseers', count, _ ). +noun( 'sign', 'signs', count, _ ). +noun( 'sign-painter', 'sign-painters', count, _ ). +noun( 'signal', 'signals', count, _ ). +noun( 'signal-box', 'signal-boxes', count, _ ). +noun( 'signaller', 'signallers', count, _ ). +noun( 'signalman', 'signalmen', count, _ ). +noun( 'signatory', 'signatories', count, _ ). +noun( 'signature', 'signatures', count, _ ). +noun( 'signet', 'signets', count, _ ). +noun( 'signet-ring', 'signet-rings', count, _ ). +noun( 'significance', '-', mass, _ ). +noun( 'signification', 'significations', count, _ ). +noun( 'signor', 'signors', count, _ ). +noun( 'signora', 'signoras', count, _ ). +noun( 'signorina', 'signorinas', count, _ ). +noun( 'signpost', 'signposts', count, _ ). +noun( 'silage', '-', mass, _ ). +noun( 'silence', 'silences', both, _ ). +noun( 'silencer', 'silencers', count, _ ). +noun( 'silhouette', 'silhouettes', count, _ ). +noun( 'silica', '-', mass, _ ). +noun( 'silicate', '-', mass, _ ). +noun( 'silicon', '-', mass, _ ). +noun( 'silicone', '-', mass, _ ). +noun( 'silicosis', '-', mass, _ ). +noun( 'silk', 'silks', both, _ ). +noun( 'silkiness', '-', mass, _ ). +noun( 'silkworm', 'silkworms', count, _ ). +noun( 'sill', 'sills', count, _ ). +noun( 'sillabub', 'sillabubs', both, _ ). +noun( 'silliness', '-', mass, _ ). +noun( 'silly', 'sillies', count, _ ). +noun( 'silo', 'silos', count, _ ). +noun( 'silt', '-', mass, _ ). +noun( 'silver', '-', mass, _ ). +noun( 'silver-fish', 'silver-fish', count, _ ). +noun( 'silverside', '-', mass, _ ). +noun( 'silversmith', 'silversmiths', count, _ ). +noun( 'simian', 'simians', count, _ ). +noun( 'similarity', 'similarities', both, _ ). +noun( 'simile', 'similes', both, _ ). +noun( 'similitude', 'similitudes', both, _ ). +noun( 'simmer', '-', count, _ ). +noun( 'simony', '-', mass, _ ). +noun( 'simoom', 'simooms', count, _ ). +noun( 'simoon', 'simoons', count, _ ). +noun( 'simple', 'simples', count, _ ). +noun( 'simpleton', 'simpletons', count, _ ). +noun( 'simplicity', '-', mass, _ ). +noun( 'simplification', 'simplifications', both, _ ). +noun( 'simulacrum', 'simulacra', count, _ ). +noun( 'simulation', '-', mass, _ ). +noun( 'simulator', 'simulators', count, _ ). +noun( 'simultaneity', '-', mass, _ ). +noun( 'simultaneousness', '-', mass, _ ). +noun( 'sin', 'sins', both, _ ). +noun( 'sincerity', '-', mass, _ ). +noun( 'sine', 'sines', count, _ ). +noun( 'sine qua non', '-', count, _ ). +noun( 'sinecure', 'sinecures', count, _ ). +noun( 'sinew', 'sinews', count, _ ). +noun( 'sinfulness', '-', mass, _ ). +noun( 'singe', 'singes', count, _ ). +noun( 'singer', 'singers', count, _ ). +noun( 'singing', '-', mass, _ ). +noun( 'single', 'singles', count, _ ). +noun( 'single-spacing', '-', mass, _ ). +noun( 'singleness', '-', mass, _ ). +noun( 'singlestick', 'singlesticks', both, _ ). +noun( 'singlet', 'singlets', count, _ ). +noun( 'singleton', 'singletons', count, _ ). +noun( 'singsong', 'singsongs', count, _ ). +noun( 'singular', 'singulars', count, _ ). +noun( 'singularity', 'singularities', both, _ ). +noun( 'sink', 'sinks', count, _ ). +noun( 'sinker', 'sinkers', count, _ ). +noun( 'sinking', 'sinkings', count, _ ). +noun( 'sinking-fund', 'sinking-funds', count, _ ). +noun( 'sinlessness', '-', mass, _ ). +noun( 'sinner', 'sinners', count, _ ). +noun( 'sinuosity', 'sinuosities', both, _ ). +noun( 'sinus', 'sinuses', count, _ ). +noun( 'sinusitis', '-', mass, _ ). +noun( 'sip', 'sips', count, _ ). +noun( 'siphon', 'siphons', count, _ ). +noun( 'sir', 'sirs', count, _ ). +noun( 'sirdar', 'sirdars', count, _ ). +noun( 'sire', 'sires', count, _ ). +noun( 'siren', 'sirens', count, _ ). +noun( 'sirloin', 'sirloins', both, _ ). +noun( 'sirocco', 'siroccos', count, _ ). +noun( 'sirrah', 'sirrahs', count, _ ). +noun( 'sirup', 'sirups', both, _ ). +noun( 'sisal', '-', mass, _ ). +noun( 'sissy', 'sissies', count, _ ). +noun( 'sister', 'sisters', count, _ ). +noun( 'sister-in-law', 'sisters-in-law', count, _ ). +noun( 'sisterhood', '-', mass, _ ). +noun( 'sit-in', 'sit-ins', count, _ ). +noun( 'sitar', 'sitars', count, _ ). +noun( 'site', 'sites', count, _ ). +noun( 'sitter', 'sitters', count, _ ). +noun( 'sitting', 'sittings', count, _ ). +noun( 'sitting-room', 'sitting-rooms', count, _ ). +noun( 'situation', 'situations', count, _ ). +noun( 'six', 'sixes', count, _ ). +noun( 'six-footer', 'six-footers', count, _ ). +noun( 'six-shooter', 'six-shooters', count, _ ). +noun( 'sixpence', 'sixpences', count, _ ). +noun( 'sixteen', 'sixteens', count, _ ). +noun( 'sixteenth', 'sixteenths', count, _ ). +noun( 'sixth', 'sixths', count, _ ). +noun( 'sixth-former', 'sixth-formers', count, _ ). +noun( 'sixtieth', 'sixtieths', count, _ ). +noun( 'sixty', 'sixties', count, _ ). +noun( 'size', 'sizes', both, _ ). +noun( 'skate', 'skates', count, _ ). +noun( 'skateboard', 'skateboards', count, _ ). +noun( 'skateboarder', 'skateboarders', count, _ ). +noun( 'skateboarding', '-', mass, _ ). +noun( 'skater', 'skaters', count, _ ). +noun( 'skating', '-', mass, _ ). +noun( 'skating-rink', 'skating-rinks', count, _ ). +noun( 'skeet', 'skeets', count, _ ). +noun( 'skein', 'skeins', count, _ ). +noun( 'skeleton', 'skeletons', count, _ ). +noun( 'skep', 'skeps', count, _ ). +noun( 'skepticism', '-', mass, _ ). +noun( 'sketch', 'sketches', count, _ ). +noun( 'sketch-block', 'sketch-blocks', count, _ ). +noun( 'sketch-book', 'sketch-books', count, _ ). +noun( 'sketch-map', 'sketch-maps', count, _ ). +noun( 'sketcher', 'sketchers', count, _ ). +noun( 'sketchiness', '-', mass, _ ). +noun( 'skewer', 'skewers', count, _ ). +noun( 'ski', 'skis', count, _ ). +noun( 'ski-bob', 'ski-bobs', count, _ ). +noun( 'ski-jump', 'ski-jumps', count, _ ). +noun( 'ski-lift', 'ski-lifts', count, _ ). +noun( 'ski-plane', 'ski-planes', count, _ ). +noun( 'skid', 'skids', count, _ ). +noun( 'skidpan', 'skidpans', count, _ ). +noun( 'skier', 'skiers', count, _ ). +noun( 'skiff', 'skiffs', count, _ ). +noun( 'skiffle', '-', mass, _ ). +noun( 'skiffle-group', 'skiffle-groups', count, _ ). +noun( 'skill', 'skills', both, _ ). +noun( 'skillet', 'skillets', count, _ ). +noun( 'skilly', '-', mass, _ ). +noun( 'skimmed-milk', '-', mass, _ ). +noun( 'skimmer', 'skimmers', count, _ ). +noun( 'skin', 'skins', both, _ ). +noun( 'skin-diving', '-', mass, _ ). +noun( 'skin-graft', 'skin-grafts', count, _ ). +noun( 'skinflint', 'skinflints', count, _ ). +noun( 'skinhead', 'skinheads', count, _ ). +noun( 'skip', 'skips', count, _ ). +noun( 'skipper', 'skippers', count, _ ). +noun( 'skipping-rope', 'skipping-ropes', count, _ ). +noun( 'skirl', 'skirls', count, _ ). +noun( 'skirmish', 'skirmishes', count, _ ). +noun( 'skirmisher', 'skirmishers', count, _ ). +noun( 'skirt', 'skirts', count, _ ). +noun( 'skirting-board', 'skirting-boards', count, _ ). +noun( 'skit', 'skits', count, _ ). +noun( 'skittishness', '-', mass, _ ). +noun( 'skittle', 'skittles', count, _ ). +noun( 'skittle-pin', 'skittle-pins', count, _ ). +noun( 'skittles', 'skittles', mass, _ ). +noun( 'skivvy', 'skivvies', count, _ ). +noun( 'skua', 'skuas', count, _ ). +noun( 'skulker', 'skulkers', count, _ ). +noun( 'skull', 'skulls', count, _ ). +noun( 'skullcap', 'skullcaps', count, _ ). +noun( 'skullduggery', '-', count, _ ). +noun( 'skunk', 'skunks', both, _ ). +noun( 'sky', 'skies', count, _ ). +noun( 'sky-blue', '-', mass, _ ). +noun( 'skylark', 'skylarks', count, _ ). +noun( 'skylight', 'skylights', count, _ ). +noun( 'skyline', 'skylines', count, _ ). +noun( 'skyscraper', 'skyscrapers', count, _ ). +noun( 'skywriting', '-', mass, _ ). +noun( 'slab', 'slabs', count, _ ). +noun( 'slack', 'slacks', both, _ ). +noun( 'slacker', 'slackers', count, _ ). +noun( 'slackness', '-', mass, _ ). +noun( 'slag', '-', mass, _ ). +noun( 'slag-heap', 'slag-heaps', count, _ ). +noun( 'slalom', 'slaloms', count, _ ). +noun( 'slam', 'slams', count, _ ). +noun( 'slander', 'slanders', both, _ ). +noun( 'slanderer', 'slanderers', count, _ ). +noun( 'slang', '-', mass, _ ). +noun( 'slanginess', '-', mass, _ ). +noun( 'slant', 'slants', count, _ ). +noun( 'slap', 'slaps', count, _ ). +noun( 'slapstick', '-', mass, _ ). +noun( 'slash', 'slashes', count, _ ). +noun( 'slat', 'slats', count, _ ). +noun( 'slate', 'slates', both, _ ). +noun( 'slate-club', 'slate-clubs', count, _ ). +noun( 'slate-pencil', 'slate-pencils', count, _ ). +noun( 'slating', 'slatings', count, _ ). +noun( 'slattern', 'slatterns', count, _ ). +noun( 'slatternliness', '-', mass, _ ). +noun( 'slaughter', '-', mass, _ ). +noun( 'slaughterer', 'slaughterers', count, _ ). +noun( 'slaughterhouse', 'slaughterhouses', count, _ ). +noun( 'slave', 'slaves', count, _ ). +noun( 'slave-driver', 'slave-drivers', count, _ ). +noun( 'slave-trade', '-', mass, _ ). +noun( 'slave-traffic', '-', mass, _ ). +noun( 'slaver', '-', mass, _ ). +noun( 'slavery', '-', mass, _ ). +noun( 'slavey', 'slaveys', count, _ ). +noun( 'slaw', '-', mass, _ ). +noun( 'slayer', 'slayers', count, _ ). +noun( 'sled', 'sleds', count, _ ). +noun( 'sledge', 'sledges', count, _ ). +noun( 'sledgehammer', 'sledgehammers', count, _ ). +noun( 'sleekness', '-', mass, _ ). +noun( 'sleep', '-', mass, _ ). +noun( 'sleeper', 'sleepers', count, _ ). +noun( 'sleepiness', '-', mass, _ ). +noun( 'sleeping', '-', mass, _ ). +noun( 'sleeping-bag', 'sleeping-bags', count, _ ). +noun( 'sleeping-car', 'sleeping-cars', count, _ ). +noun( 'sleeping-draught', 'sleeping-draughts', count, _ ). +noun( 'sleeping-pill', 'sleeping-pills', count, _ ). +noun( 'sleeping-sickness', '-', mass, _ ). +noun( 'sleeplessness', '-', mass, _ ). +noun( 'sleepwalker', 'sleepwalkers', count, _ ). +noun( 'sleepy-head', 'sleepy-heads', count, _ ). +noun( 'sleet', '-', mass, _ ). +noun( 'sleeve', 'sleeves', count, _ ). +noun( 'sleigh', 'sleighs', count, _ ). +noun( 'sleigh-bell', 'sleigh-bells', count, _ ). +noun( 'sleight', 'sleights', count, _ ). +noun( 'slenderness', '-', mass, _ ). +noun( 'sleuth', 'sleuths', count, _ ). +noun( 'sleuth-hound', 'sleuth-hounds', count, _ ). +noun( 'slice', 'slices', count, _ ). +noun( 'slick', 'slicks', count, _ ). +noun( 'slicker', 'slickers', count, _ ). +noun( 'slide', 'slides', count, _ ). +noun( 'slide-rule', 'slide-rules', count, _ ). +noun( 'slight', 'slights', count, _ ). +noun( 'slightness', '-', mass, _ ). +noun( 'slime', '-', mass, _ ). +noun( 'sliminess', '-', mass, _ ). +noun( 'slimness', '-', mass, _ ). +noun( 'sling', 'slings', count, _ ). +noun( 'slinger', 'slingers', count, _ ). +noun( 'slip', 'slips', both, _ ). +noun( 'slip-carriage', 'slip-carriages', count, _ ). +noun( 'slip-coach', 'slip-coaches', count, _ ). +noun( 'slip-road', 'slip-roads', count, _ ). +noun( 'slip-up', 'slip-ups', count, _ ). +noun( 'slipcover', 'slipcovers', count, _ ). +noun( 'slipknot', 'slipknots', count, _ ). +noun( 'slipon', 'slipons', count, _ ). +noun( 'slipover', 'slipovers', count, _ ). +noun( 'slipper', 'slippers', count, _ ). +noun( 'slipperiness', '-', mass, _ ). +noun( 'slipstream', 'slipstreams', count, _ ). +noun( 'slipway', 'slipways', count, _ ). +noun( 'slit', 'slits', count, _ ). +noun( 'sliver', 'slivers', count, _ ). +noun( 'slob', 'slobs', count, _ ). +noun( 'slobber', '-', mass, _ ). +noun( 'sloe', 'sloes', count, _ ). +noun( 'sloe-gin', '-', mass, _ ). +noun( 'slogan', 'slogans', count, _ ). +noun( 'slogger', 'sloggers', count, _ ). +noun( 'sloop', 'sloops', count, _ ). +noun( 'slop', 'slops', count, _ ). +noun( 'slop-basin', 'slop-basins', count, _ ). +noun( 'slop-pail', 'slop-pails', count, _ ). +noun( 'slop-shop', 'slop-shops', count, _ ). +noun( 'slope', 'slopes', both, _ ). +noun( 'sloppiness', '-', mass, _ ). +noun( 'slot', 'slots', count, _ ). +noun( 'slot-machine', 'slot-machines', count, _ ). +noun( 'sloth', 'sloths', both, _ ). +noun( 'slouch', 'slouches', count, _ ). +noun( 'slouch-hat', 'slouch-hats', count, _ ). +noun( 'slough', 'sloughs', count, _ ). +noun( 'slough', 'sloughs', count, _ ). +noun( 'sloven', 'slovens', count, _ ). +noun( 'slovenliness', '-', mass, _ ). +noun( 'slow-worm', 'slow-worms', count, _ ). +noun( 'slowcoach', 'slowcoaches', count, _ ). +noun( 'slowdown', 'slowdowns', count, _ ). +noun( 'slowness', '-', mass, _ ). +noun( 'sludge', '-', mass, _ ). +noun( 'slug', 'slugs', count, _ ). +noun( 'sluggard', 'sluggards', count, _ ). +noun( 'sluggishness', '-', mass, _ ). +noun( 'sluice', 'sluices', count, _ ). +noun( 'sluice-valve', 'sluice-valves', count, _ ). +noun( 'sluicegate', 'sluicegates', count, _ ). +noun( 'slum', 'slums', count, _ ). +noun( 'slumber', 'slumbers', count, _ ). +noun( 'slumberer', 'slumberers', count, _ ). +noun( 'slump', 'slumps', count, _ ). +noun( 'slur', 'slurs', both, _ ). +noun( 'slurry', '-', mass, _ ). +noun( 'slush', '-', mass, _ ). +noun( 'slut', 'sluts', count, _ ). +noun( 'slyness', '-', mass, _ ). +noun( 'smack', 'smacks', count, _ ). +noun( 'smacker', 'smackers', count, _ ). +noun( 'smacking', 'smackings', both, _ ). +noun( 'small', 'smalls', count, _ ). +noun( 'smallholder', 'smallholders', count, _ ). +noun( 'smallholding', 'smallholdings', count, _ ). +noun( 'smallness', '-', mass, _ ). +noun( 'smallpox', '-', mass, _ ). +noun( 'smart', '-', mass, _ ). +noun( 'smartness', '-', mass, _ ). +noun( 'smash', 'smashes', count, _ ). +noun( 'smash-up', 'smash-ups', count, _ ). +noun( 'smasher', 'smashers', count, _ ). +noun( 'smattering', 'smatterings', count, _ ). +noun( 'smear', 'smears', count, _ ). +noun( 'smear-word', 'smear-words', count, _ ). +noun( 'smell', 'smells', both, _ ). +noun( 'smelling-bottle', 'smelling-bottles', count, _ ). +noun( 'smelt', 'smelts', count, _ ). +noun( 'smilax', '-', mass, _ ). +noun( 'smile', 'smiles', count, _ ). +noun( 'smirch', 'smirches', count, _ ). +noun( 'smirk', 'smirks', count, _ ). +noun( 'smith', 'smiths', count, _ ). +noun( 'smithy', 'smithies', count, _ ). +noun( 'smock', 'smocks', count, _ ). +noun( 'smocking', '-', mass, _ ). +noun( 'smog', 'smogs', both, _ ). +noun( 'smoke', 'smokes', both, _ ). +noun( 'smoke-bomb', 'smoke-bombs', count, _ ). +noun( 'smoke-screen', 'smoke-screens', count, _ ). +noun( 'smoker', 'smokers', count, _ ). +noun( 'smokestack', 'smokestacks', count, _ ). +noun( 'smoking', '-', mass, _ ). +noun( 'smoking-car', 'smoking-cars', count, _ ). +noun( 'smoking-carriage', 'smoking-carriages', count, _ ). +noun( 'smoking-compartment', 'smoking-compartments', count, _ ). +noun( 'smoking-mixture', '-', mass, _ ). +noun( 'smoking-room', 'smoking-rooms', count, _ ). +noun( 'smooth', '-', count, _ ). +noun( 'smoothing-iron', 'smoothing-irons', count, _ ). +noun( 'smoothing-plane', 'smoothing-planes', count, _ ). +noun( 'smoothness', '-', mass, _ ). +noun( 'smorgasbord', '-', mass, _ ). +noun( 'smother', '-', count, _ ). +noun( 'smoulder', '-', mass, _ ). +noun( 'smudge', 'smudges', count, _ ). +noun( 'smuggler', 'smugglers', count, _ ). +noun( 'smugness', '-', mass, _ ). +noun( 'smut', 'smuts', both, _ ). +noun( 'smuttiness', '-', mass, _ ). +noun( 'snack', 'snacks', count, _ ). +noun( 'snack-bar', 'snack-bars', count, _ ). +noun( 'snack-counter', 'snack-counters', count, _ ). +noun( 'snaffle', 'snaffles', count, _ ). +noun( 'snaffle-bit', 'snaffle-bits', count, _ ). +noun( 'snag', 'snags', count, _ ). +noun( 'snail', 'snails', count, _ ). +noun( 'snake', 'snakes', count, _ ). +noun( 'snake-charmer', 'snake-charmers', count, _ ). +noun( 'snap', 'snaps', both, _ ). +noun( 'snap-fastener', 'snap-fasteners', count, _ ). +noun( 'snapdragon', 'snapdragons', count, _ ). +noun( 'snappishness', '-', mass, _ ). +noun( 'snapshot', 'snapshots', count, _ ). +noun( 'snare', 'snares', count, _ ). +noun( 'snare-drum', 'snare-drums', count, _ ). +noun( 'snarl', 'snarls', count, _ ). +noun( 'snarl-up', 'snarl-ups', count, _ ). +noun( 'snatch', 'snatches', count, _ ). +noun( 'snatcher', 'snatchers', count, _ ). +noun( 'sneak', 'sneaks', count, _ ). +noun( 'sneak-thief', 'sneak-thieves', count, _ ). +noun( 'sneer', 'sneers', count, _ ). +noun( 'sneeze', 'sneezes', count, _ ). +noun( 'snick', 'snicks', count, _ ). +noun( 'snicker', 'snickers', count, _ ). +noun( 'sniff', 'sniffs', count, _ ). +noun( 'snifter', 'snifters', count, _ ). +noun( 'snigger', 'sniggers', count, _ ). +noun( 'snip', 'snips', count, _ ). +noun( 'snipe', 'snipe', count, _ ). +noun( 'sniper', 'snipers', count, _ ). +noun( 'snippet', 'snippets', count, _ ). +noun( 'snipping', 'snippings', count, _ ). +noun( 'sniveller', 'snivellers', count, _ ). +noun( 'snob', 'snobs', count, _ ). +noun( 'snobbery', '-', mass, _ ). +noun( 'snobbishness', '-', mass, _ ). +noun( 'snogging', '-', mass, _ ). +noun( 'snood', 'snoods', count, _ ). +noun( 'snook', 'snooks', count, _ ). +noun( 'snooker', 'snookers', both, _ ). +noun( 'snooper', 'snoopers', count, _ ). +noun( 'snooze', 'snoozes', count, _ ). +noun( 'snore', 'snores', count, _ ). +noun( 'snorer', 'snorers', count, _ ). +noun( 'snorkel', 'snorkels', count, _ ). +noun( 'snort', 'snorts', count, _ ). +noun( 'snorter', 'snorters', count, _ ). +noun( 'snot', '-', mass, _ ). +noun( 'snout', 'snouts', count, _ ). +noun( 'snow', 'snows', both, _ ). +noun( 'snow-line', 'snow-lines', count, _ ). +noun( 'snowball', 'snowballs', count, _ ). +noun( 'snowberry', 'snowberries', count, _ ). +noun( 'snowblindness', '-', mass, _ ). +noun( 'snowdrift', 'snowdrifts', count, _ ). +noun( 'snowdrop', 'snowdrops', count, _ ). +noun( 'snowfall', 'snowfalls', count, _ ). +noun( 'snowfield', 'snowfields', count, _ ). +noun( 'snowflake', 'snowflakes', count, _ ). +noun( 'snowman', 'snowmen', count, _ ). +noun( 'snowplough', 'snowploughs', count, _ ). +noun( 'snowstorm', 'snowstorms', count, _ ). +noun( 'snub', 'snubs', count, _ ). +noun( 'snuff', 'snuffs', both, _ ). +noun( 'snuff-colour', '-', mass, _ ). +noun( 'snuffbox', 'snuffboxes', count, _ ). +noun( 'snuffle', 'snuffles', count, _ ). +noun( 'snug', 'snugs', count, _ ). +noun( 'snuggery', 'snuggeries', count, _ ). +noun( 'snugness', '-', mass, _ ). +noun( 'so', '-', count, _ ). +noun( 'so-and-so', 'so-and-sos', count, _ ). +noun( 'soak', 'soaks', count, _ ). +noun( 'soaker', 'soakers', count, _ ). +noun( 'soap', 'soaps', both, _ ). +noun( 'soap-bubble', 'soap-bubbles', count, _ ). +noun( 'soap-opera', 'soap-operas', both, _ ). +noun( 'soapbox', 'soapboxes', count, _ ). +noun( 'sob', 'sobs', count, _ ). +noun( 'sob-stuff', '-', mass, _ ). +noun( 'sober-sides', '-', count, _ ). +noun( 'sobriety', '-', mass, _ ). +noun( 'sobriquet', 'sobriquets', count, _ ). +noun( 'soccer', '-', mass, _ ). +noun( 'sociability', '-', mass, _ ). +noun( 'social', 'socials', count, _ ). +noun( 'social-work', '-', mass, _ ). +noun( 'socialism', '-', mass, _ ). +noun( 'socialist', 'socialists', count, _ ). +noun( 'socialite', 'socialites', count, _ ). +noun( 'socialization', 'socializations', both, _ ). +noun( 'society', 'societies', both, _ ). +noun( 'sociologist', 'sociologists', count, _ ). +noun( 'sociology', '-', mass, _ ). +noun( 'sock', 'socks', count, _ ). +noun( 'socket', 'sockets', count, _ ). +noun( 'sod', 'sods', both, _ ). +noun( 'soda', '-', mass, _ ). +noun( 'soda-biscuit', 'soda-biscuits', count, _ ). +noun( 'soda-cracker', 'soda-crackers', count, _ ). +noun( 'soda-fountain', 'soda-fountains', count, _ ). +noun( 'soda-water', 'soda-waters', both, _ ). +noun( 'sodium', '-', mass, _ ). +noun( 'sodomite', 'sodomites', count, _ ). +noun( 'sodomy', '-', mass, _ ). +noun( 'sofa', 'sofas', count, _ ). +noun( 'soft-solder', '-', mass, _ ). +noun( 'softener', 'softeners', count, _ ). +noun( 'softie', 'softies', count, _ ). +noun( 'softness', '-', mass, _ ). +noun( 'software', '-', mass, _ ). +noun( 'softwood', 'softwoods', both, _ ). +noun( 'softy', 'softies', count, _ ). +noun( 'sogginess', '-', mass, _ ). +noun( 'soh', '-', count, _ ). +noun( 'soil', 'soils', both, _ ). +noun( 'soil-pipe', 'soil-pipes', count, _ ). +noun( 'soir_ee', 'soir_ees', count, _ ). +noun( 'sojourn', 'sojourns', count, _ ). +noun( 'sojourner', 'sojourners', count, _ ). +noun( 'sol-fa', '-', count, _ ). +noun( 'solace', 'solaces', both, _ ). +noun( 'solar plexus', '-', count, _ ). +noun( 'solarium', 'solaria', count, _ ). +noun( 'solder', '-', mass, _ ). +noun( 'soldering-iron', 'soldering-irons', count, _ ). +noun( 'soldier', 'soldiers', count, _ ). +noun( 'soldiery', '-', count, _ ). +noun( 'sole', 'soles', count, _ ). +noun( 'solecism', 'solecisms', count, _ ). +noun( 'solemnity', 'solemnities', both, _ ). +noun( 'solemnization', '-', mass, _ ). +noun( 'solemnness', '-', mass, _ ). +noun( 'solicitation', 'solicitations', both, _ ). +noun( 'solicitor', 'solicitors', count, _ ). +noun( 'solicitude', '-', mass, _ ). +noun( 'solid', 'solids', count, _ ). +noun( 'solidarity', '-', mass, _ ). +noun( 'solidification', 'solidifications', both, _ ). +noun( 'solidity', '-', mass, _ ). +noun( 'solidness', '-', mass, _ ). +noun( 'soliloquy', 'soliloquies', both, _ ). +noun( 'solipsism', '-', mass, _ ). +noun( 'solitaire', 'solitaires', both, _ ). +noun( 'solitude', 'solitudes', both, _ ). +noun( 'solo', 'solos', both, _ ). +noun( 'soloist', 'soloists', count, _ ). +noun( 'solstice', 'solstices', count, _ ). +noun( 'solubility', '-', mass, _ ). +noun( 'solution', 'solutions', both, _ ). +noun( 'solvency', '-', mass, _ ). +noun( 'solvent', 'solvents', count, _ ). +noun( 'sombreness', '-', mass, _ ). +noun( 'sombrero', 'sombreros', count, _ ). +noun( 'someone', '-', count, _ ). +noun( 'somersault', 'somersaults', count, _ ). +noun( 'somnambulism', '-', mass, _ ). +noun( 'somnambulist', 'somnambulists', count, _ ). +noun( 'somnolence', '-', mass, _ ). +noun( 'son', 'sons', count, _ ). +noun( 'son-in-law', 'sons-in-law', count, _ ). +noun( 'sonar', 'sonars', count, _ ). +noun( 'sonata', 'sonatas', count, _ ). +noun( 'song', 'songs', both, _ ). +noun( 'songbird', 'songbirds', count, _ ). +noun( 'songbook', 'songbooks', count, _ ). +noun( 'songster', 'songsters', count, _ ). +noun( 'songstress', 'songstresses', count, _ ). +noun( 'sonnet', 'sonnets', count, _ ). +noun( 'sonneteer', 'sonneteers', count, _ ). +noun( 'sonny', 'sonnies', count, _ ). +noun( 'sonority', 'sonorities', both, _ ). +noun( 'soot', '-', mass, _ ). +noun( 'sooth', 'sooths', count, _ ). +noun( 'soothsayer', 'soothsayers', count, _ ). +noun( 'sop', 'sops', count, _ ). +noun( 'sophism', 'sophisms', both, _ ). +noun( 'sophist', 'sophists', count, _ ). +noun( 'sophistication', '-', mass, _ ). +noun( 'sophistry', 'sophistries', both, _ ). +noun( 'sophomore', 'sophomores', count, _ ). +noun( 'soporific', 'soporifics', count, _ ). +noun( 'soprano', 'sopranos', count, _ ). +noun( 'sorbet', 'sorbets', count, _ ). +noun( 'sorcerer', 'sorcerers', count, _ ). +noun( 'sorceress', 'sorceresses', count, _ ). +noun( 'sorcery', 'sorceries', both, _ ). +noun( 'sordidness', '-', mass, _ ). +noun( 'sore', 'sores', count, _ ). +noun( 'soreness', '-', mass, _ ). +noun( 'sorghum', '-', mass, _ ). +noun( 'sorority', 'sororities', count, _ ). +noun( 'sorrel', 'sorrels', both, _ ). +noun( 'sorrow', 'sorrows', both, _ ). +noun( 'sort', 'sorts', count, _ ). +noun( 'sorter', 'sorters', count, _ ). +noun( 'sortie', 'sorties', count, _ ). +noun( 'sot', 'sots', count, _ ). +noun( 'sottishness', '-', mass, _ ). +noun( 'sou', 'sous', count, _ ). +noun( 'sou\'-east', '-', mass, _ ). +noun( 'sou\'-sou\'-east', '-', mass, _ ). +noun( 'sou\'-sou\'-west', '-', mass, _ ). +noun( 'sou\'-west', '-', mass, _ ). +noun( 'sou\'-wester', 'sou\'-westers', count, _ ). +noun( 'soubrette', 'soubrettes', count, _ ). +noun( 'soubriquet', 'soubriquets', count, _ ). +noun( 'souffl_e', 'souffl_es', count, _ ). +noun( 'soul', 'souls', count, _ ). +noun( 'sound', 'sounds', both, _ ). +noun( 'sound-film', 'sound-films', count, _ ). +noun( 'sound-recording', 'sound-recordings', both, _ ). +noun( 'sound-wave', 'sound-waves', count, _ ). +noun( 'soundbox', 'soundboxes', count, _ ). +noun( 'sounding-board', 'sounding-boards', count, _ ). +noun( 'soundness', '-', mass, _ ). +noun( 'soundtrack', 'soundtracks', count, _ ). +noun( 'soup', 'soups', both, _ ). +noun( 'soup-kitchen', 'soup-kitchens', count, _ ). +noun( 'soup<con', 'soup<cons', count, _ ). +noun( 'source', 'sources', count, _ ). +noun( 'sourness', '-', mass, _ ). +noun( 'soutane', 'soutanes', count, _ ). +noun( 'south', '-', mass, _ ). +noun( 'south-southeast', '-', mass, _ ). +noun( 'south-southwest', '-', mass, _ ). +noun( 'southeast', '-', mass, _ ). +noun( 'southeaster', 'southeasters', count, _ ). +noun( 'southerner', 'southerners', count, _ ). +noun( 'southpaw', 'southpaws', count, _ ). +noun( 'southwest', '-', mass, _ ). +noun( 'southwester', 'southwesters', count, _ ). +noun( 'souvenir', 'souvenirs', count, _ ). +noun( 'sovereign', 'sovereigns', count, _ ). +noun( 'sovereignty', '-', mass, _ ). +noun( 'soviet', 'soviets', count, _ ). +noun( 'sow', 'sows', count, _ ). +noun( 'sower', 'sowers', count, _ ). +noun( 'soy', '-', mass, _ ). +noun( 'soya', '-', mass, _ ). +noun( 'spa', 'spas', count, _ ). +noun( 'space', 'spaces', both, _ ). +noun( 'space-bar', 'space-bars', count, _ ). +noun( 'space-capsule', 'space-capsules', count, _ ). +noun( 'space-heater', 'space-heaters', count, _ ). +noun( 'space-helmet', 'space-helmets', count, _ ). +noun( 'space-rocket', 'space-rockets', count, _ ). +noun( 'space-time', '-', mass, _ ). +noun( 'space-vehicle', 'space-vehicles', count, _ ). +noun( 'spacecraft', 'spacecraft', count, _ ). +noun( 'spaceship', 'spaceships', count, _ ). +noun( 'spacesuit', 'spacesuits', count, _ ). +noun( 'spacing', 'spacings', both, _ ). +noun( 'spaciousness', '-', mass, _ ). +noun( 'spade', 'spades', count, _ ). +noun( 'spadeful', 'spadefuls', count, _ ). +noun( 'spadework', '-', mass, _ ). +noun( 'spaghetti', '-', mass, _ ). +noun( 'spam', '-', mass, _ ). +noun( 'span', 'spans', count, _ ). +noun( 'spangle', 'spangles', count, _ ). +noun( 'spaniel', 'spaniels', count, _ ). +noun( 'spanking', 'spankings', count, _ ). +noun( 'spanner', 'spanners', count, _ ). +noun( 'spar', 'spars', count, _ ). +noun( 'spare', 'spares', count, _ ). +noun( 'spare-rib', 'spare-ribs', count, _ ). +noun( 'spareness', '-', mass, _ ). +noun( 'spark', 'sparks', count, _ ). +noun( 'spark-plug', 'spark-plugs', count, _ ). +noun( 'sparking-plug', 'sparking-plugs', count, _ ). +noun( 'sparkle', 'sparkles', count, _ ). +noun( 'sparkler', 'sparklers', count, _ ). +noun( 'sparring-match', 'sparring-matches', count, _ ). +noun( 'sparring-partner', 'sparring-partners', count, _ ). +noun( 'sparrow', 'sparrows', count, _ ). +noun( 'sparseness', '-', mass, _ ). +noun( 'sparsity', '-', mass, _ ). +noun( 'spasm', 'spasms', count, _ ). +noun( 'spastic', 'spastics', count, _ ). +noun( 'spat', 'spats', count, _ ). +noun( 'spatchcock', 'spatchcocks', count, _ ). +noun( 'spate', 'spates', count, _ ). +noun( 'spatter', 'spatters', count, _ ). +noun( 'spatula', 'spatulas', count, _ ). +noun( 'spavin', '-', mass, _ ). +noun( 'spawn', '-', mass, _ ). +noun( 'speaker', 'speakers', count, _ ). +noun( 'speakership', 'speakerships', count, _ ). +noun( 'speaking-trumpet', 'speaking-trumpets', count, _ ). +noun( 'speaking-tube', 'speaking-tubes', count, _ ). +noun( 'spear', 'spears', count, _ ). +noun( 'spearhead', 'spearheads', count, _ ). +noun( 'spearmint', '-', mass, _ ). +noun( 'spec', 'specs', count, _ ). +noun( 'special', 'specials', count, _ ). +noun( 'specialism', 'specialisms', count, _ ). +noun( 'specialist', 'specialists', count, _ ). +noun( 'speciality', 'specialities', count, _ ). +noun( 'specialization', 'specializations', both, _ ). +noun( 'specialty', 'specialties', count, _ ). +noun( 'specie', '-', mass, _ ). +noun( 'species', 'species', count, _ ). +noun( 'specific', 'specifics', count, _ ). +noun( 'specification', 'specifications', both, _ ). +noun( 'specificity', '-', mass, _ ). +noun( 'specimen', 'specimens', count, _ ). +noun( 'speciousness', '-', mass, _ ). +noun( 'speck', 'specks', count, _ ). +noun( 'speckle', 'speckles', count, _ ). +noun( 'spectacle', 'spectacles', count, _ ). +noun( 'spectacular', 'spectaculars', count, _ ). +noun( 'spectator', 'spectators', count, _ ). +noun( 'spectre', 'spectres', count, _ ). +noun( 'spectroscope', 'spectroscopes', count, _ ). +noun( 'spectrum', 'spectra', count, _ ). +noun( 'speculation', 'speculations', both, _ ). +noun( 'speculator', 'speculators', count, _ ). +noun( 'speech', 'speeches', both, _ ). +noun( 'speech-day', 'speech-days', count, _ ). +noun( 'speed', 'speeds', both, _ ). +noun( 'speed-cop', 'speed-cops', count, _ ). +noun( 'speed-indicator', 'speed-indicators', count, _ ). +noun( 'speed-limit', 'speed-limits', count, _ ). +noun( 'speed-up', 'speed-ups', count, _ ). +noun( 'speedboat', 'speedboats', count, _ ). +noun( 'speeding', '-', mass, _ ). +noun( 'speedometer', 'speedometers', count, _ ). +noun( 'speedway', 'speedways', both, _ ). +noun( 'speedwell', 'speedwells', both, _ ). +noun( 'spelaeologist', 'spelaeologists', count, _ ). +noun( 'spelaeology', '-', mass, _ ). +noun( 'speleologist', 'speleologists', count, _ ). +noun( 'speleology', '-', mass, _ ). +noun( 'spell', 'spells', count, _ ). +noun( 'spellbinder', 'spellbinders', count, _ ). +noun( 'speller', 'spellers', count, _ ). +noun( 'spelling', 'spellings', both, _ ). +noun( 'spelt', '-', mass, _ ). +noun( 'spender', 'spenders', count, _ ). +noun( 'spendthrift', 'spendthrifts', count, _ ). +noun( 'sperm', 'sperms', both, _ ). +noun( 'sperm-whale', 'sperm-whales', count, _ ). +noun( 'spermaceti', '-', mass, _ ). +noun( 'spermatozoon', 'spermatozoa', count, _ ). +noun( 'spermicide', 'spermicides', both, _ ). +noun( 'sphagnum', 'sphagnums', both, _ ). +noun( 'sphere', 'spheres', count, _ ). +noun( 'spheroid', 'spheroids', count, _ ). +noun( 'sphinx', 'sphinxes', count, _ ). +noun( 'spice', 'spices', both, _ ). +noun( 'spiciness', '-', mass, _ ). +noun( 'spider', 'spiders', count, _ ). +noun( 'spiel', 'spiels', count, _ ). +noun( 'spigot', 'spigots', count, _ ). +noun( 'spike', 'spikes', count, _ ). +noun( 'spikenard', '-', mass, _ ). +noun( 'spill', 'spills', count, _ ). +noun( 'spillage', 'spillages', count, _ ). +noun( 'spillover', 'spillovers', count, _ ). +noun( 'spillway', 'spillways', count, _ ). +noun( 'spin', 'spins', both, _ ). +noun( 'spin-drier', 'spin-driers', count, _ ). +noun( 'spin-off', 'spin-offs', count, _ ). +noun( 'spinach', '-', mass, _ ). +noun( 'spindle', 'spindles', count, _ ). +noun( 'spindle-berry', 'spindle-berries', count, _ ). +noun( 'spindle-shanks', '-', count, _ ). +noun( 'spindle-tree', 'spindle-trees', count, _ ). +noun( 'spindrift', '-', mass, _ ). +noun( 'spine', 'spines', count, _ ). +noun( 'spinet', 'spinets', count, _ ). +noun( 'spinnaker', 'spinnakers', count, _ ). +noun( 'spinney', 'spinneys', count, _ ). +noun( 'spinning-wheel', 'spinning-wheels', count, _ ). +noun( 'spinster', 'spinsters', count, _ ). +noun( 'spinsterhood', '-', mass, _ ). +noun( 'spiral', 'spirals', count, _ ). +noun( 'spire', 'spires', count, _ ). +noun( 'spirit', 'spirits', both, _ ). +noun( 'spirit-lamp', 'spirit-lamps', count, _ ). +noun( 'spirit-level', 'spirit-levels', count, _ ). +noun( 'spirit-rapper', 'spirit-rappers', count, _ ). +noun( 'spirit-stove', 'spirit-stoves', count, _ ). +noun( 'spiritual', 'spirituals', count, _ ). +noun( 'spiritualism', '-', mass, _ ). +noun( 'spiritualist', 'spiritualists', count, _ ). +noun( 'spirituality', '-', mass, _ ). +noun( 'spiritualization', '-', mass, _ ). +noun( 'spirt', 'spirts', count, _ ). +noun( 'spit', 'spits', both, _ ). +noun( 'spite', '-', mass, _ ). +noun( 'spitefulness', '-', mass, _ ). +noun( 'spitfire', 'spitfires', count, _ ). +noun( 'spitting', '-', mass, _ ). +noun( 'spittle', '-', mass, _ ). +noun( 'spittoon', 'spittoons', count, _ ). +noun( 'spiv', 'spivs', count, _ ). +noun( 'splash', 'splashes', count, _ ). +noun( 'splashdown', 'splashdowns', count, _ ). +noun( 'splay', 'splays', count, _ ). +noun( 'splayfoot', 'splayfeet', count, _ ). +noun( 'spleen', 'spleens', both, _ ). +noun( 'splendour', 'splendours', both, _ ). +noun( 'splice', 'splices', count, _ ). +noun( 'splicer', 'splicers', count, _ ). +noun( 'splint', 'splints', count, _ ). +noun( 'splinter', 'splinters', count, _ ). +noun( 'split', 'splits', count, _ ). +noun( 'splodge', 'splodges', count, _ ). +noun( 'splotch', 'splotches', count, _ ). +noun( 'splurge', 'splurges', count, _ ). +noun( 'splutter', '-', mass, _ ). +noun( 'spoil', 'spoils', both, _ ). +noun( 'spoilsport', 'spoilsports', count, _ ). +noun( 'spoke', 'spokes', count, _ ). +noun( 'spokesman', 'spokesmen', count, _ ). +noun( 'spoliation', '-', mass, _ ). +noun( 'spondee', 'spondees', count, _ ). +noun( 'sponge', 'sponges', count, _ ). +noun( 'sponge-cake', 'sponge-cakes', both, _ ). +noun( 'sponger', 'spongers', count, _ ). +noun( 'sponginess', '-', mass, _ ). +noun( 'sponsor', 'sponsors', count, _ ). +noun( 'sponsorship', 'sponsorships', both, _ ). +noun( 'spontaneity', '-', mass, _ ). +noun( 'spontaneousness', '-', mass, _ ). +noun( 'spoof', 'spoofs', count, _ ). +noun( 'spook', 'spooks', count, _ ). +noun( 'spool', 'spools', count, _ ). +noun( 'spoon', 'spoons', count, _ ). +noun( 'spoonerism', 'spoonerisms', count, _ ). +noun( 'spoonfeeding', '-', mass, _ ). +noun( 'spoonful', 'spoonfuls', count, _ ). +noun( 'spoor', 'spoors', count, _ ). +noun( 'spore', 'spores', count, _ ). +noun( 'sporran', 'sporrans', count, _ ). +noun( 'sport', 'sports', both, _ ). +noun( 'sportiveness', '-', mass, _ ). +noun( 'sports-car', 'sports-cars', count, _ ). +noun( 'sports-coat', 'sports-coats', count, _ ). +noun( 'sports-editor', 'sports-editors', count, _ ). +noun( 'sports-jacket', 'sports-jackets', count, _ ). +noun( 'sportsman', 'sportsmen', count, _ ). +noun( 'sportsmanship', '-', mass, _ ). +noun( 'spot', 'spots', count, _ ). +noun( 'spotlight', 'spotlights', count, _ ). +noun( 'spotter', 'spotters', count, _ ). +noun( 'spouse', 'spouses', count, _ ). +noun( 'spout', 'spouts', count, _ ). +noun( 'sprain', 'sprains', count, _ ). +noun( 'sprat', 'sprats', count, _ ). +noun( 'sprawl', 'sprawls', both, _ ). +noun( 'spray', 'sprays', both, _ ). +noun( 'spray-gun', 'spray-guns', count, _ ). +noun( 'sprayer', 'sprayers', count, _ ). +noun( 'spread', 'spreads', count, _ ). +noun( 'spread-over', '-', mass, _ ). +noun( 'spreadeagle', 'spreadeagles', count, _ ). +noun( 'spreader', 'spreaders', count, _ ). +noun( 'spree', 'sprees', count, _ ). +noun( 'sprig', 'sprigs', count, _ ). +noun( 'sprightliness', '-', mass, _ ). +noun( 'spring', 'springs', both, _ ). +noun( 'spring-balance', 'spring-balances', count, _ ). +noun( 'spring-clean', 'spring-cleans', count, _ ). +noun( 'spring-cleaning', '-', mass, _ ). +noun( 'spring-gun', 'spring-guns', count, _ ). +noun( 'spring-mattress', 'spring-mattresses', count, _ ). +noun( 'springboard', 'springboards', count, _ ). +noun( 'springbok', 'springboks', count, _ ). +noun( 'springtide', 'springtides', count, _ ). +noun( 'springtime', 'springtimes', both, _ ). +noun( 'sprinkler', 'sprinklers', count, _ ). +noun( 'sprinkling', 'sprinklings', count, _ ). +noun( 'sprint', 'sprints', count, _ ). +noun( 'sprinter', 'sprinters', count, _ ). +noun( 'sprit', 'sprits', count, _ ). +noun( 'sprite', 'sprites', count, _ ). +noun( 'spritsail', 'spritsails', count, _ ). +noun( 'sprocket', 'sprockets', count, _ ). +noun( 'sprocket-wheel', 'sprocket-wheels', count, _ ). +noun( 'sprout', 'sprouts', count, _ ). +noun( 'spruce', 'spruces', both, _ ). +noun( 'spruceness', '-', mass, _ ). +noun( 'spud', 'spuds', count, _ ). +noun( 'spume', '-', mass, _ ). +noun( 'spunk', '-', mass, _ ). +noun( 'spur', 'spurs', count, _ ). +noun( 'spuriousness', '-', mass, _ ). +noun( 'spurt', 'spurts', count, _ ). +noun( 'sputnik', 'sputniks', count, _ ). +noun( 'sputum', '-', mass, _ ). +noun( 'spy', 'spies', count, _ ). +noun( 'spy-hole', 'spy-holes', count, _ ). +noun( 'spyglass', 'spyglasses', count, _ ). +noun( 'squab', 'squabs', count, _ ). +noun( 'squabble', 'squabbles', count, _ ). +noun( 'squad', 'squads', count, _ ). +noun( 'squadron', 'squadrons', count, _ ). +noun( 'squall', 'squalls', count, _ ). +noun( 'squalor', '-', mass, _ ). +noun( 'squandermania', '-', mass, _ ). +noun( 'square', 'squares', count, _ ). +noun( 'square-bashing', '-', mass, _ ). +noun( 'square-toes', '-', count, _ ). +noun( 'squareness', '-', mass, _ ). +noun( 'squash', 'squash', both, _ ). +noun( 'squatter', 'squatters', count, _ ). +noun( 'squaw', 'squaws', count, _ ). +noun( 'squawk', 'squawks', count, _ ). +noun( 'squawker', 'squawkers', count, _ ). +noun( 'squeak', 'squeaks', count, _ ). +noun( 'squeaker', 'squeakers', count, _ ). +noun( 'squeal', 'squeals', count, _ ). +noun( 'squealer', 'squealers', count, _ ). +noun( 'squeamishness', '-', mass, _ ). +noun( 'squeegee', 'squeegees', count, _ ). +noun( 'squeeze', 'squeezes', both, _ ). +noun( 'squeezer', 'squeezers', count, _ ). +noun( 'squelch', 'squelches', count, _ ). +noun( 'squib', 'squibs', count, _ ). +noun( 'squid', 'squids', count, _ ). +noun( 'squiggle', 'squiggles', count, _ ). +noun( 'squint', 'squints', count, _ ). +noun( 'squire', 'squires', count, _ ). +noun( 'squirearchy', 'squirearchies', count, _ ). +noun( 'squirm', 'squirms', count, _ ). +noun( 'squirrel', 'squirrels', count, _ ). +noun( 'squirt', 'squirts', count, _ ). +noun( 'stab', 'stabs', count, _ ). +noun( 'stabber', 'stabbers', count, _ ). +noun( 'stability', '-', mass, _ ). +noun( 'stabilization', 'stabilizations', both, _ ). +noun( 'stabilizer', 'stabilizers', count, _ ). +noun( 'stable', 'stables', count, _ ). +noun( 'stable-companion', 'stable-companions', count, _ ). +noun( 'stableboy', 'stableboys', count, _ ). +noun( 'stableman', 'stablemen', count, _ ). +noun( 'stablemate', 'stablemates', count, _ ). +noun( 'stabling', '-', mass, _ ). +noun( 'stack', 'stacks', count, _ ). +noun( 'stadium', 'stadiums', count, _ ). +noun( 'staff', 'staffs', count, _ ). +noun( 'staff-office', 'staff-offices', count, _ ). +noun( 'stag', 'stags', count, _ ). +noun( 'stag-party', 'stag-parties', count, _ ). +noun( 'stage', 'stages', count, _ ). +noun( 'stage-whisper', 'stage-whispers', count, _ ). +noun( 'stagecoach', 'stagecoaches', count, _ ). +noun( 'stagecraft', 'stagecrafts', both, _ ). +noun( 'stager', 'stagers', count, _ ). +noun( 'stagflation', '-', mass, _ ). +noun( 'stagger', 'staggers', count, _ ). +noun( 'staggerer', 'staggerers', count, _ ). +noun( 'staginess', '-', mass, _ ). +noun( 'staging', 'stagings', both, _ ). +noun( 'stagnancy', '-', mass, _ ). +noun( 'stagnation', '-', mass, _ ). +noun( 'staidness', '-', mass, _ ). +noun( 'stain', 'stains', both, _ ). +noun( 'stair', 'stairs', count, _ ). +noun( 'stair-carpet', 'stair-carpets', count, _ ). +noun( 'stair-rod', 'stair-rods', count, _ ). +noun( 'staircase', 'staircases', count, _ ). +noun( 'stairway', 'stairways', count, _ ). +noun( 'stake', 'stakes', count, _ ). +noun( 'stake-holder', 'stake-holders', count, _ ). +noun( 'stalactite', 'stalactites', count, _ ). +noun( 'stalagmite', 'stalagmites', count, _ ). +noun( 'stalemate', 'stalemates', both, _ ). +noun( 'staleness', '-', mass, _ ). +noun( 'stalk', 'stalks', count, _ ). +noun( 'stalker', 'stalkers', count, _ ). +noun( 'stalking-horse', 'stalking-horses', count, _ ). +noun( 'stall', 'stalls', count, _ ). +noun( 'stallion', 'stallions', count, _ ). +noun( 'stalwart', 'stalwarts', count, _ ). +noun( 'stamen', 'stamens', count, _ ). +noun( 'stamina', '-', mass, _ ). +noun( 'stammer', 'stammers', count, _ ). +noun( 'stammerer', 'stammerers', count, _ ). +noun( 'stamp', 'stamps', count, _ ). +noun( 'stamp-album', 'stamp-albums', count, _ ). +noun( 'stamp-collector', 'stamp-collectors', count, _ ). +noun( 'stamp-dealer', 'stamp-dealers', count, _ ). +noun( 'stamp-duty', 'stamp-duties', both, _ ). +noun( 'stampede', 'stampedes', count, _ ). +noun( 'stamping-ground', 'stamping-grounds', count, _ ). +noun( 'stance', 'stances', count, _ ). +noun( 'stanchion', 'stanchions', count, _ ). +noun( 'stand', 'stands', count, _ ). +noun( 'stand-in', 'stand-ins', count, _ ). +noun( 'stand-to', '-', count, _ ). +noun( 'standard', 'standards', count, _ ). +noun( 'standard-bearer', 'standard-bearers', count, _ ). +noun( 'standardization', 'standardizations', both, _ ). +noun( 'standby', 'standbys', both, _ ). +noun( 'standing', '-', mass, _ ). +noun( 'standoffishness', '-', mass, _ ). +noun( 'standpipe', 'standpipes', count, _ ). +noun( 'standpoint', 'standpoints', count, _ ). +noun( 'standstill', '-', count, _ ). +noun( 'stanza', 'stanzas', count, _ ). +noun( 'staple', 'staples', both, _ ). +noun( 'stapler', 'staplers', count, _ ). +noun( 'stapling-machine', 'stapling-machines', count, _ ). +noun( 'star', 'stars', count, _ ). +noun( 'starboard', 'starboards', count, _ ). +noun( 'starch', '-', mass, _ ). +noun( 'stardom', '-', mass, _ ). +noun( 'stardust', '-', mass, _ ). +noun( 'stare', 'stares', count, _ ). +noun( 'starfish', 'starfish', count, _ ). +noun( 'stargazer', 'stargazers', count, _ ). +noun( 'starlet', 'starlets', count, _ ). +noun( 'starlight', '-', mass, _ ). +noun( 'starling', 'starlings', count, _ ). +noun( 'start', 'starts', both, _ ). +noun( 'starter', 'starters', count, _ ). +noun( 'starting-gate', 'starting-gates', count, _ ). +noun( 'starting-point', 'starting-points', count, _ ). +noun( 'starting-post', 'starting-posts', count, _ ). +noun( 'starvation', '-', mass, _ ). +noun( 'starveling', 'starvelings', count, _ ). +noun( 'state', 'states', both, _ ). +noun( 'statecraft', '-', mass, _ ). +noun( 'stateliness', '-', mass, _ ). +noun( 'statement', 'statements', both, _ ). +noun( 'statesman', 'statesmen', count, _ ). +noun( 'statesmanship', '-', mass, _ ). +noun( 'statics', 'statics', mass, _ ). +noun( 'station', 'stations', both, _ ). +noun( 'station-waggon', 'station-waggons', count, _ ). +noun( 'stationer', 'stationers', count, _ ). +noun( 'stationery', '-', mass, _ ). +noun( 'stationmaster', 'stationmasters', count, _ ). +noun( 'statistic', 'statistics', count, _ ). +noun( 'statistician', 'statisticians', count, _ ). +noun( 'statistics', 'statistics', mass, _ ). +noun( 'statuary', '-', mass, _ ). +noun( 'statue', 'statues', count, _ ). +noun( 'statuette', 'statuettes', count, _ ). +noun( 'stature', '-', mass, _ ). +noun( 'status', '-', mass, _ ). +noun( 'status quo', '-', count, _ ). +noun( 'statute', 'statutes', count, _ ). +noun( 'statute-book', 'statute-books', count, _ ). +noun( 'staunchness', '-', mass, _ ). +noun( 'stave', 'staves', count, _ ). +noun( 'stay', 'stays', count, _ ). +noun( 'stay-at-home', 'stay-at-homes', count, _ ). +noun( 'stayer', 'stayers', count, _ ). +noun( 'stead', '-', mass, _ ). +noun( 'steadfastness', '-', mass, _ ). +noun( 'steadiness', '-', mass, _ ). +noun( 'steady', 'steadies', count, _ ). +noun( 'steak', 'steaks', both, _ ). +noun( 'stealth', '-', mass, _ ). +noun( 'steam', '-', mass, _ ). +noun( 'steam-boiler', 'steam-boilers', count, _ ). +noun( 'steam-coal', '-', mass, _ ). +noun( 'steam-engine', 'steam-engines', count, _ ). +noun( 'steam-heat', '-', mass, _ ). +noun( 'steamboat', 'steamboats', count, _ ). +noun( 'steamer', 'steamers', count, _ ). +noun( 'steamroller', 'steamrollers', count, _ ). +noun( 'steamship', 'steamships', count, _ ). +noun( 'steed', 'steeds', count, _ ). +noun( 'steel', '-', mass, _ ). +noun( 'steelworks', 'steelworks', count, _ ). +noun( 'steelyard', 'steelyards', count, _ ). +noun( 'steenbok', 'steenboks', count, _ ). +noun( 'steeple', 'steeples', count, _ ). +noun( 'steeplechase', 'steeplechases', count, _ ). +noun( 'steeplechaser', 'steeplechasers', count, _ ). +noun( 'steeplejack', 'steeplejacks', count, _ ). +noun( 'steepness', '-', mass, _ ). +noun( 'steer', 'steers', count, _ ). +noun( 'steerage', 'steerages', both, _ ). +noun( 'steerageway', '-', mass, _ ). +noun( 'steering-gear', '-', mass, _ ). +noun( 'steering-wheel', 'steering-wheels', count, _ ). +noun( 'steersman', 'steersmen', count, _ ). +noun( 'stele', 'stelae', count, _ ). +noun( 'stem', 'stems', count, _ ). +noun( 'stench', 'stenches', count, _ ). +noun( 'stencil', 'stencils', count, _ ). +noun( 'stenographer', 'stenographers', count, _ ). +noun( 'stenography', '-', mass, _ ). +noun( 'step', 'steps', count, _ ). +noun( 'stepbrother', 'stepbrothers', count, _ ). +noun( 'stepchild', 'stepchildren', count, _ ). +noun( 'stepdaughter', 'stepdaughters', count, _ ). +noun( 'stepfather', 'stepfathers', count, _ ). +noun( 'stepladder', 'stepladders', count, _ ). +noun( 'stepmother', 'stepmothers', count, _ ). +noun( 'stepparent', 'stepparents', count, _ ). +noun( 'steppe', 'steppes', count, _ ). +noun( 'stepping-stone', 'stepping-stones', count, _ ). +noun( 'stepsister', 'stepsisters', count, _ ). +noun( 'stepson', 'stepsons', count, _ ). +noun( 'stereo', 'stereos', count, _ ). +noun( 'stereoscope', 'stereoscopes', count, _ ). +noun( 'stereotype', 'stereotypes', both, _ ). +noun( 'sterility', '-', mass, _ ). +noun( 'sterilization', '-', mass, _ ). +noun( 'sterling', '-', mass, _ ). +noun( 'stern', 'sterns', count, _ ). +noun( 'sternness', '-', mass, _ ). +noun( 'sternum', 'sternums', count, _ ). +noun( 'sternwheeler', 'sternwheelers', count, _ ). +noun( 'stethoscope', 'stethoscopes', count, _ ). +noun( 'stetson', 'stetsons', count, _ ). +noun( 'stevedore', 'stevedores', count, _ ). +noun( 'stew', 'stews', both, _ ). +noun( 'steward', 'stewards', count, _ ). +noun( 'stewardess', 'stewardesses', count, _ ). +noun( 'stewardship', '-', mass, _ ). +noun( 'stick', 'sticks', count, _ ). +noun( 'stick-in-the-mud', '-', count, _ ). +noun( 'stick-up', 'stick-ups', count, _ ). +noun( 'sticker', 'stickers', count, _ ). +noun( 'stickiness', '-', mass, _ ). +noun( 'sticking-plaster', 'sticking-plasters', both, _ ). +noun( 'stickler', 'sticklers', count, _ ). +noun( 'stiff', 'stiffs', count, _ ). +noun( 'stiffener', 'stiffeners', count, _ ). +noun( 'stiffening', 'stiffenings', both, _ ). +noun( 'stiffness', '-', mass, _ ). +noun( 'stigma', 'stigmas', count, _ ). +noun( 'stile', 'stiles', count, _ ). +noun( 'stiletto', 'stilettos', count, _ ). +noun( 'still', 'stills', count, _ ). +noun( 'still-life', 'still-lifes', both, _ ). +noun( 'still-room', 'still-rooms', count, _ ). +noun( 'stillbirth', 'stillbirths', count, _ ). +noun( 'stillness', '-', mass, _ ). +noun( 'stilt', 'stilts', count, _ ). +noun( 'stimulant', 'stimulants', count, _ ). +noun( 'stimulation', 'stimulations', both, _ ). +noun( 'stimulus', 'stimuli', count, _ ). +noun( 'sting', 'stings', both, _ ). +noun( 'stinger', 'stingers', count, _ ). +noun( 'stinginess', '-', mass, _ ). +noun( 'stingray', 'stingrays', count, _ ). +noun( 'stink', 'stinks', count, _ ). +noun( 'stinker', 'stinkers', count, _ ). +noun( 'stint', 'stints', count, _ ). +noun( 'stipend', 'stipends', count, _ ). +noun( 'stipendiary', 'stipendiaries', count, _ ). +noun( 'stipulation', 'stipulations', count, _ ). +noun( 'stir', 'stirs', count, _ ). +noun( 'stirrup', 'stirrups', count, _ ). +noun( 'stirrup-cup', 'stirrup-cups', count, _ ). +noun( 'stitch', 'stitches', count, _ ). +noun( 'stoat', 'stoats', count, _ ). +noun( 'stock', 'stocks', both, _ ). +noun( 'stock-cube', 'stock-cubes', count, _ ). +noun( 'stock-farmer', 'stock-farmers', count, _ ). +noun( 'stock-in-trade', 'stock-in-trades', both, _ ). +noun( 'stock-list', 'stock-lists', count, _ ). +noun( 'stockade', 'stockades', count, _ ). +noun( 'stockbreeder', 'stockbreeders', count, _ ). +noun( 'stockbroker', 'stockbrokers', count, _ ). +noun( 'stockcar', 'stockcars', count, _ ). +noun( 'stockfish', 'stockfish', count, _ ). +noun( 'stockholder', 'stockholders', count, _ ). +noun( 'stockholding', 'stockholdings', count, _ ). +noun( 'stockinette', '-', mass, _ ). +noun( 'stocking', 'stockings', count, _ ). +noun( 'stockist', 'stockists', count, _ ). +noun( 'stockjobber', 'stockjobbers', count, _ ). +noun( 'stockpile', 'stockpiles', count, _ ). +noun( 'stockpiling', '-', mass, _ ). +noun( 'stockpot', 'stockpots', count, _ ). +noun( 'stockroom', 'stockrooms', count, _ ). +noun( 'stocktaking', 'stocktakings', both, _ ). +noun( 'stockyard', 'stockyards', count, _ ). +noun( 'stodge', '-', mass, _ ). +noun( 'stodginess', '-', mass, _ ). +noun( 'stoep', 'stoeps', count, _ ). +noun( 'stoic', 'stoics', count, _ ). +noun( 'stoicism', '-', mass, _ ). +noun( 'stokehold', 'stokeholds', count, _ ). +noun( 'stokehole', 'stokeholes', count, _ ). +noun( 'stoker', 'stokers', count, _ ). +noun( 'stole', 'stoles', count, _ ). +noun( 'stolidity', '-', mass, _ ). +noun( 'stolidness', '-', mass, _ ). +noun( 'stomach', 'stomachs', both, _ ). +noun( 'stomach-ache', 'stomach-aches', count, _ ). +noun( 'stomach-pump', 'stomach-pumps', count, _ ). +noun( 'stomp', 'stomps', count, _ ). +noun( 'stone', 'stones', both, _ ). +noun( 'stone-fruit', 'stone-fruits', both, _ ). +noun( 'stone-pit', 'stone-pits', count, _ ). +noun( 'stonebreaker', 'stonebreakers', count, _ ). +noun( 'stonemason', 'stonemasons', count, _ ). +noun( 'stonewaller', 'stonewallers', count, _ ). +noun( 'stonewalling', '-', mass, _ ). +noun( 'stoneware', '-', mass, _ ). +noun( 'stonework', '-', mass, _ ). +noun( 'stooge', 'stooges', count, _ ). +noun( 'stool', 'stools', count, _ ). +noun( 'stoop', 'stoops', count, _ ). +noun( 'stop', 'stops', count, _ ). +noun( 'stopcock', 'stopcocks', count, _ ). +noun( 'stopgap', 'stopgaps', count, _ ). +noun( 'stopover', 'stopovers', count, _ ). +noun( 'stoppage', 'stoppages', count, _ ). +noun( 'stopper', 'stoppers', count, _ ). +noun( 'stopping', 'stoppings', both, _ ). +noun( 'stopwatch', 'stopwatches', count, _ ). +noun( 'storage', '-', mass, _ ). +noun( 'store', 'stores', both, _ ). +noun( 'storehouse', 'storehouses', count, _ ). +noun( 'storeroom', 'storerooms', count, _ ). +noun( 'storey', 'storeys', count, _ ). +noun( 'stork', 'storks', count, _ ). +noun( 'storm', 'storms', count, _ ). +noun( 'storm-centre', 'storm-centres', count, _ ). +noun( 'storm-cloud', 'storm-clouds', count, _ ). +noun( 'storm-cone', 'storm-cones', count, _ ). +noun( 'storm-lantern', 'storm-lanterns', count, _ ). +noun( 'storm-signal', 'storm-signals', count, _ ). +noun( 'storm-trooper', 'storm-troopers', count, _ ). +noun( 'story', 'stories', count, _ ). +noun( 'storyteller', 'storytellers', count, _ ). +noun( 'stoup', 'stoups', count, _ ). +noun( 'stout', '-', mass, _ ). +noun( 'stoutness', '-', mass, _ ). +noun( 'stove', 'stoves', count, _ ). +noun( 'stovepipe', 'stovepipes', count, _ ). +noun( 'stowaway', 'stowaways', count, _ ). +noun( 'straggler', 'stragglers', count, _ ). +noun( 'straight', 'straights', count, _ ). +noun( 'straightness', '-', mass, _ ). +noun( 'strain', 'strains', both, _ ). +noun( 'strainer', 'strainers', count, _ ). +noun( 'strait', 'straits', count, _ ). +noun( 'straitjacket', 'straitjackets', count, _ ). +noun( 'strand', 'strands', count, _ ). +noun( 'strangeness', '-', mass, _ ). +noun( 'stranger', 'strangers', count, _ ). +noun( 'stranglehold', 'strangleholds', count, _ ). +noun( 'strangulation', '-', mass, _ ). +noun( 'strap', 'straps', both, _ ). +noun( 'straphanger', 'straphangers', count, _ ). +noun( 'strapping', '-', count, _ ). +noun( 'stratagem', 'stratagems', both, _ ). +noun( 'strategics', 'strategics', mass, _ ). +noun( 'strategist', 'strategists', count, _ ). +noun( 'strategy', 'strategies', both, _ ). +noun( 'stratification', 'stratifications', both, _ ). +noun( 'stratosphere', 'stratospheres', count, _ ). +noun( 'stratum', 'strata', count, _ ). +noun( 'straw', 'straws', both, _ ). +noun( 'strawberry', 'strawberries', count, _ ). +noun( 'strawboard', '-', mass, _ ). +noun( 'stray', 'strays', count, _ ). +noun( 'streak', 'streaks', count, _ ). +noun( 'stream', 'streams', count, _ ). +noun( 'streamer', 'streamers', count, _ ). +noun( 'streamlet', 'streamlets', count, _ ). +noun( 'street', 'streets', count, _ ). +noun( 'street-girl', 'street-girls', count, _ ). +noun( 'street-urchin', 'street-urchins', count, _ ). +noun( 'streetcar', 'streetcars', count, _ ). +noun( 'streetwalker', 'streetwalkers', count, _ ). +noun( 'strength', 'strengths', both, _ ). +noun( 'strenuousness', '-', mass, _ ). +noun( 'streptococcus', 'streptococci', count, _ ). +noun( 'streptomycin', '-', mass, _ ). +noun( 'stress', 'stresses', both, _ ). +noun( 'stress-mark', 'stress-marks', count, _ ). +noun( 'stretch', 'stretches', both, _ ). +noun( 'stretcher', 'stretchers', count, _ ). +noun( 'stretcher-bearer', 'stretcher-bearers', count, _ ). +noun( 'stretcher-party', 'stretcher-parties', count, _ ). +noun( 'strictness', '-', mass, _ ). +noun( 'stricture', 'strictures', count, _ ). +noun( 'stride', 'strides', count, _ ). +noun( 'stridulation', 'stridulations', both, _ ). +noun( 'strife', '-', mass, _ ). +noun( 'strike', 'strikes', count, _ ). +noun( 'strike-leader', 'strike-leaders', count, _ ). +noun( 'strike-pay', '-', mass, _ ). +noun( 'strikebreaker', 'strikebreakers', count, _ ). +noun( 'striker', 'strikers', count, _ ). +noun( 'string', 'strings', both, _ ). +noun( 'stringency', 'stringencies', both, _ ). +noun( 'strip', 'strips', count, _ ). +noun( 'strip-lighting', '-', mass, _ ). +noun( 'strip-poker', '-', mass, _ ). +noun( 'strip-show', 'strip-shows', count, _ ). +noun( 'stripe', 'stripes', count, _ ). +noun( 'stripling', 'striplings', count, _ ). +noun( 'stripper', 'strippers', count, _ ). +noun( 'striptease', '-', mass, _ ). +noun( 'striver', 'strivers', count, _ ). +noun( 'stroboscope', 'stroboscopes', count, _ ). +noun( 'stroke', 'strokes', count, _ ). +noun( 'stroll', 'strolls', count, _ ). +noun( 'stroller', 'strollers', count, _ ). +noun( 'strongbox', 'strongboxes', count, _ ). +noun( 'stronghold', 'strongholds', count, _ ). +noun( 'strongroom', 'strongrooms', count, _ ). +noun( 'strontium', '-', mass, _ ). +noun( 'strop', 'strops', count, _ ). +noun( 'strophe', 'strophes', count, _ ). +noun( 'structure', 'structures', both, _ ). +noun( 'strudel', 'strudels', both, _ ). +noun( 'struggle', 'struggles', count, _ ). +noun( 'strum', 'strums', count, _ ). +noun( 'strumpet', 'strumpets', count, _ ). +noun( 'strut', 'struts', count, _ ). +noun( 'strychnine', '-', mass, _ ). +noun( 'stub', 'stubs', count, _ ). +noun( 'stubble', '-', mass, _ ). +noun( 'stubbornness', '-', mass, _ ). +noun( 'stucco', 'stuccos', both, _ ). +noun( 'stud', 'studs', count, _ ). +noun( 'stud-farm', 'stud-farms', count, _ ). +noun( 'stud-mare', 'stud-mares', count, _ ). +noun( 'studbook', 'studbooks', count, _ ). +noun( 'student', 'students', count, _ ). +noun( 'studio', 'studios', count, _ ). +noun( 'studiousness', '-', mass, _ ). +noun( 'study', 'studies', both, _ ). +noun( 'stuff', 'stuffs', both, _ ). +noun( 'stuffiness', '-', mass, _ ). +noun( 'stuffing', '-', mass, _ ). +noun( 'stultification', 'stultifications', both, _ ). +noun( 'stumble', 'stumbles', count, _ ). +noun( 'stumbling-block', 'stumbling-blocks', count, _ ). +noun( 'stump', 'stumps', count, _ ). +noun( 'stumper', 'stumpers', count, _ ). +noun( 'stunner', 'stunners', count, _ ). +noun( 'stunt', 'stunts', count, _ ). +noun( 'stupefaction', '-', mass, _ ). +noun( 'stupid', '-', count, _ ). +noun( 'stupidity', 'stupidities', both, _ ). +noun( 'stupor', 'stupors', both, _ ). +noun( 'sturdiness', '-', mass, _ ). +noun( 'sturgeon', 'sturgeons', both, _ ). +noun( 'stutter', 'stutters', count, _ ). +noun( 'stutterer', 'stutterers', count, _ ). +noun( 'sty', 'sties', count, _ ). +noun( 'stye', 'styes', count, _ ). +noun( 'style', 'styles', both, _ ). +noun( 'stylishness', '-', mass, _ ). +noun( 'stylist', 'stylists', count, _ ). +noun( 'stylization', 'stylizations', both, _ ). +noun( 'stylus', 'styluses', count, _ ). +noun( 'stymie', 'stymies', count, _ ). +noun( 'styptic', 'styptics', count, _ ). +noun( 'suasion', '-', mass, _ ). +noun( 'suavity', '-', mass, _ ). +noun( 'sub', 'subs', count, _ ). +noun( 'subaltern', 'subalterns', count, _ ). +noun( 'subcommittee', 'subcommittees', count, _ ). +noun( 'subconscious', '-', count, _ ). +noun( 'subconsciousness', '-', mass, _ ). +noun( 'subcontinent', 'subcontinents', count, _ ). +noun( 'subcontract', 'subcontracts', count, _ ). +noun( 'subcontractor', 'subcontractors', count, _ ). +noun( 'subdivision', 'subdivisions', both, _ ). +noun( 'subeditor', 'subeditors', count, _ ). +noun( 'subgroup', 'subgroups', count, _ ). +noun( 'subheading', 'subheadings', count, _ ). +noun( 'subject', 'subjects', count, _ ). +noun( 'subjection', '-', mass, _ ). +noun( 'subjectivity', '-', mass, _ ). +noun( 'subjugation', 'subjugations', both, _ ). +noun( 'subjunctive', 'subjunctives', both, _ ). +noun( 'sublease', 'subleases', count, _ ). +noun( 'sublieutenant', 'sublieutenants', count, _ ). +noun( 'sublimate', 'sublimates', count, _ ). +noun( 'sublimation', 'sublimations', both, _ ). +noun( 'sublime', '-', count, _ ). +noun( 'sublimity', '-', mass, _ ). +noun( 'submarine', 'submarines', count, _ ). +noun( 'submariner', 'submariners', count, _ ). +noun( 'submergence', '-', mass, _ ). +noun( 'submersion', '-', mass, _ ). +noun( 'submission', 'submissions', both, _ ). +noun( 'submissiveness', '-', mass, _ ). +noun( 'subnormal', 'subnormals', count, _ ). +noun( 'subordinate', 'subordinates', count, _ ). +noun( 'subordination', 'subordinations', both, _ ). +noun( 'subornation', '-', mass, _ ). +noun( 'subpoena', 'subpoenas', count, _ ). +noun( 'subscriber', 'subscribers', count, _ ). +noun( 'subscript', 'subscripts', count, _ ). +noun( 'subscription', 'subscriptions', both, _ ). +noun( 'subsection', 'subsections', count, _ ). +noun( 'subservience', '-', mass, _ ). +noun( 'subsidence', 'subsidences', both, _ ). +noun( 'subsidiary', 'subsidiaries', count, _ ). +noun( 'subsidization', '-', mass, _ ). +noun( 'subsidy', 'subsidies', count, _ ). +noun( 'subsistence', '-', mass, _ ). +noun( 'subsoil', '-', mass, _ ). +noun( 'substance', 'substances', both, _ ). +noun( 'substantiation', 'substantiations', both, _ ). +noun( 'substantive', 'substantives', count, _ ). +noun( 'substation', 'substations', count, _ ). +noun( 'substitute', 'substitutes', count, _ ). +noun( 'substitution', 'substitutions', both, _ ). +noun( 'substrate', 'substrates', count, _ ). +noun( 'substratum', 'substrata', count, _ ). +noun( 'substructure', 'substructures', count, _ ). +noun( 'subterfuge', 'subterfuges', both, _ ). +noun( 'subtitle', 'subtitles', count, _ ). +noun( 'subtlety', 'subtleties', both, _ ). +noun( 'subtopia', '-', mass, _ ). +noun( 'subtraction', 'subtractions', both, _ ). +noun( 'suburb', 'suburbs', count, _ ). +noun( 'suburbia', '-', mass, _ ). +noun( 'subvention', 'subventions', count, _ ). +noun( 'subversion', '-', mass, _ ). +noun( 'subversive', 'subversives', count, _ ). +noun( 'subway', 'subways', count, _ ). +noun( 'success', 'successes', both, _ ). +noun( 'succession', 'successions', both, _ ). +noun( 'successor', 'successors', count, _ ). +noun( 'succinctness', '-', mass, _ ). +noun( 'succour', '-', mass, _ ). +noun( 'succubus', 'succubuses', count, _ ). +noun( 'succulence', '-', mass, _ ). +noun( 'succulent', 'succulents', count, _ ). +noun( 'suck', 'sucks', count, _ ). +noun( 'sucker', 'suckers', count, _ ). +noun( 'sucking-pig', 'sucking-pigs', both, _ ). +noun( 'suckling', 'sucklings', count, _ ). +noun( 'suction', '-', mass, _ ). +noun( 'sudden', '-', count, _ ). +noun( 'suddenness', '-', mass, _ ). +noun( 'suede', '-', mass, _ ). +noun( 'suet', '-', mass, _ ). +noun( 'sufferance', '-', mass, _ ). +noun( 'sufferer', 'sufferers', count, _ ). +noun( 'suffering', 'sufferings', both, _ ). +noun( 'sufficiency', '-', mass, _ ). +noun( 'suffix', 'suffixes', count, _ ). +noun( 'suffocation', '-', mass, _ ). +noun( 'suffragan', 'suffragans', count, _ ). +noun( 'suffrage', 'suffrages', both, _ ). +noun( 'suffragette', 'suffragettes', count, _ ). +noun( 'suffusion', '-', mass, _ ). +noun( 'sugar', 'sugars', both, _ ). +noun( 'sugar-beet', 'sugar-beet', both, _ ). +noun( 'sugar-candy', 'sugar-candies', both, _ ). +noun( 'sugar-cane', '-', mass, _ ). +noun( 'sugar-daddy', 'sugar-daddies', count, _ ). +noun( 'sugar-loaf', '-', mass, _ ). +noun( 'sugar-refinery', 'sugar-refineries', count, _ ). +noun( 'sugarlump', 'sugarlumps', count, _ ). +noun( 'suggestibility', '-', mass, _ ). +noun( 'suggestion', 'suggestions', both, _ ). +noun( 'suicide', 'suicides', both, _ ). +noun( 'suit', 'suits', count, _ ). +noun( 'suitability', '-', mass, _ ). +noun( 'suitableness', '-', mass, _ ). +noun( 'suitcase', 'suitcases', count, _ ). +noun( 'suite', 'suites', count, _ ). +noun( 'suiting', '-', mass, _ ). +noun( 'suitor', 'suitors', count, _ ). +noun( 'sulk', 'sulks', count, _ ). +noun( 'sulkiness', '-', mass, _ ). +noun( 'sulky', 'sulkies', count, _ ). +noun( 'sullenness', '-', mass, _ ). +noun( 'sulpha', '-', mass, _ ). +noun( 'sulphate', 'sulphates', both, _ ). +noun( 'sulphide', 'sulphides', both, _ ). +noun( 'sulphur', '-', mass, _ ). +noun( 'sultan', 'sultans', count, _ ). +noun( 'sultana', 'sultanas', count, _ ). +noun( 'sultanate', 'sultanates', count, _ ). +noun( 'sultriness', '-', mass, _ ). +noun( 'sum', 'sums', count, _ ). +noun( 'sumac', '-', mass, _ ). +noun( 'sumach', '-', mass, _ ). +noun( 'summary', 'summaries', count, _ ). +noun( 'summation', 'summations', count, _ ). +noun( 'summer', 'summers', both, _ ). +noun( 'summerhouse', 'summerhouses', count, _ ). +noun( 'summertime', 'summertimes', both, _ ). +noun( 'summing-up', 'summing-ups', count, _ ). +noun( 'summit', 'summits', count, _ ). +noun( 'summons', 'summonses', count, _ ). +noun( 'sump', 'sumps', count, _ ). +noun( 'sumpter', 'sumpters', count, _ ). +noun( 'sumptuousness', '-', mass, _ ). +noun( 'sun', 'suns', both, _ ). +noun( 'sun-god', 'sun-gods', count, _ ). +noun( 'sun-helmet', 'sun-helmets', count, _ ). +noun( 'sun-lounge', 'sun-lounges', count, _ ). +noun( 'sun-parlour', 'sun-parlours', count, _ ). +noun( 'sun-porch', 'sun-porches', count, _ ). +noun( 'sun-up', '-', mass, _ ). +noun( 'sun-visor', 'sun-visors', count, _ ). +noun( 'sun-worship', '-', mass, _ ). +noun( 'sunbathe', '-', count, _ ). +noun( 'sunbeam', 'sunbeams', count, _ ). +noun( 'sunblind', 'sunblinds', count, _ ). +noun( 'sunbonnet', 'sunbonnets', count, _ ). +noun( 'sunburn', 'sunburns', both, _ ). +noun( 'sunburst', 'sunbursts', count, _ ). +noun( 'sundae', 'sundaes', count, _ ). +noun( 'sunder', '-', mass, _ ). +noun( 'sundial', 'sundials', count, _ ). +noun( 'sundown', '-', mass, _ ). +noun( 'sundowner', 'sundowners', count, _ ). +noun( 'sunfish', 'sunfish', count, _ ). +noun( 'sunflower', 'sunflowers', count, _ ). +noun( 'sunhat', 'sunhats', count, _ ). +noun( 'sunlamp', 'sunlamps', count, _ ). +noun( 'sunlight', '-', mass, _ ). +noun( 'sunrise', 'sunrises', both, _ ). +noun( 'sunroof', 'sunroofs', count, _ ). +noun( 'sunset', 'sunsets', both, _ ). +noun( 'sunshade', 'sunshades', count, _ ). +noun( 'sunshine', '-', mass, _ ). +noun( 'sunshine-roof', 'sunshine-roofs', count, _ ). +noun( 'sunspot', 'sunspots', count, _ ). +noun( 'sunstroke', '-', mass, _ ). +noun( 'suntan', 'suntans', both, _ ). +noun( 'suntrap', 'suntraps', count, _ ). +noun( 'sup', 'sups', count, _ ). +noun( 'super', 'supers', count, _ ). +noun( 'superabundance', '-', count, _ ). +noun( 'superannuation', 'superannuations', both, _ ). +noun( 'supercargo', 'supercargoes', count, _ ). +noun( 'supercharger', 'superchargers', count, _ ). +noun( 'superciliousness', '-', mass, _ ). +noun( 'superego', '-', mass, _ ). +noun( 'supererogation', '-', mass, _ ). +noun( 'superficiality', 'superficialities', both, _ ). +noun( 'superficies', 'superficies', count, _ ). +noun( 'superfluity', 'superfluities', both, _ ). +noun( 'superintendence', '-', mass, _ ). +noun( 'superintendent', 'superintendents', count, _ ). +noun( 'superior', 'superiors', count, _ ). +noun( 'superiority', '-', mass, _ ). +noun( 'superlative', 'superlatives', count, _ ). +noun( 'superman', 'supermen', count, _ ). +noun( 'supermarket', 'supermarkets', count, _ ). +noun( 'supernumerary', 'supernumeraries', count, _ ). +noun( 'superscription', 'superscriptions', count, _ ). +noun( 'supersession', '-', mass, _ ). +noun( 'superstition', 'superstitions', both, _ ). +noun( 'superstructure', 'superstructures', count, _ ). +noun( 'supertax', 'supertaxes', both, _ ). +noun( 'supervision', 'supervisions', both, _ ). +noun( 'supervisor', 'supervisors', count, _ ). +noun( 'supper', 'suppers', both, _ ). +noun( 'supplanter', 'supplanters', count, _ ). +noun( 'supplement', 'supplements', count, _ ). +noun( 'suppleness', '-', mass, _ ). +noun( 'suppliant', 'suppliants', count, _ ). +noun( 'supplicant', 'supplicants', count, _ ). +noun( 'supplication', 'supplications', both, _ ). +noun( 'supplier', 'suppliers', count, _ ). +noun( 'supply', 'supplies', both, _ ). +noun( 'support', 'supports', both, _ ). +noun( 'supporter', 'supporters', count, _ ). +noun( 'supposition', 'suppositions', both, _ ). +noun( 'suppository', 'suppositories', count, _ ). +noun( 'suppression', 'suppressions', count, _ ). +noun( 'suppressor', 'suppressors', count, _ ). +noun( 'suppuration', 'suppurations', both, _ ). +noun( 'supremacy', '-', mass, _ ). +noun( 'surcharge', 'surcharges', count, _ ). +noun( 'surd', 'surds', count, _ ). +noun( 'sureness', '-', mass, _ ). +noun( 'surety', 'sureties', both, _ ). +noun( 'surf', '-', mass, _ ). +noun( 'surface', 'surfaces', count, _ ). +noun( 'surfboard', 'surfboards', count, _ ). +noun( 'surfboat', 'surfboats', count, _ ). +noun( 'surfeit', 'surfeits', count, _ ). +noun( 'surfing', '-', mass, _ ). +noun( 'surfriding', '-', mass, _ ). +noun( 'surge', 'surges', count, _ ). +noun( 'surgeon', 'surgeons', count, _ ). +noun( 'surgery', 'surgeries', both, _ ). +noun( 'surliness', '-', mass, _ ). +noun( 'surmise', 'surmises', count, _ ). +noun( 'surname', 'surnames', count, _ ). +noun( 'surplice', 'surplices', count, _ ). +noun( 'surplus', 'surpluses', count, _ ). +noun( 'surprise', 'surprises', both, _ ). +noun( 'surrealism', '-', mass, _ ). +noun( 'surrealist', 'surrealists', count, _ ). +noun( 'surrender', 'surrenders', count, _ ). +noun( 'surrogate', 'surrogates', count, _ ). +noun( 'surround', 'surrounds', count, _ ). +noun( 'surtax', 'surtaxes', both, _ ). +noun( 'surveillance', '-', mass, _ ). +noun( 'survey', 'surveys', count, _ ). +noun( 'surveying', '-', mass, _ ). +noun( 'surveyor', 'surveyors', count, _ ). +noun( 'survival', 'survivals', both, _ ). +noun( 'survivor', 'survivors', count, _ ). +noun( 'susceptibility', 'susceptibilities', both, _ ). +noun( 'suspect', 'suspects', count, _ ). +noun( 'suspender', 'suspenders', count, _ ). +noun( 'suspense', '-', mass, _ ). +noun( 'suspension', '-', mass, _ ). +noun( 'suspicion', 'suspicions', both, _ ). +noun( 'sustenance', '-', mass, _ ). +noun( 'suttee', 'suttees', both, _ ). +noun( 'suture', 'sutures', count, _ ). +noun( 'suzerain', 'suzerains', count, _ ). +noun( 'suzerainty', 'suzerainties', count, _ ). +noun( 'swab', 'swabs', count, _ ). +noun( 'swag', '-', mass, _ ). +noun( 'swagger', 'swaggers', count, _ ). +noun( 'swaggerer', 'swaggerers', count, _ ). +noun( 'swain', 'swains', count, _ ). +noun( 'swallow', 'swallows', count, _ ). +noun( 'swami', 'swamis', count, _ ). +noun( 'swamp', 'swamps', both, _ ). +noun( 'swan', 'swans', count, _ ). +noun( 'swan\'s-down', '-', mass, _ ). +noun( 'swan-song', 'swan-songs', count, _ ). +noun( 'swank', 'swanks', both, _ ). +noun( 'swap', 'swaps', count, _ ). +noun( 'sward', '-', mass, _ ). +noun( 'swarm', 'swarms', count, _ ). +noun( 'swashbuckler', 'swashbucklers', count, _ ). +noun( 'swashbuckling', '-', mass, _ ). +noun( 'swastika', 'swastikas', count, _ ). +noun( 'swat', 'swats', count, _ ). +noun( 'swath', 'swaths', count, _ ). +noun( 'swathe', 'swathes', count, _ ). +noun( 'sway', '-', mass, _ ). +noun( 'swearer', 'swearers', count, _ ). +noun( 'swearing', '-', mass, _ ). +noun( 'swearword', 'swearwords', count, _ ). +noun( 'sweat', 'sweats', both, _ ). +noun( 'sweatband', 'sweatbands', count, _ ). +noun( 'sweater', 'sweaters', count, _ ). +noun( 'sweatshop', 'sweatshops', count, _ ). +noun( 'swede', 'swedes', count, _ ). +noun( 'sweep', 'sweeps', count, _ ). +noun( 'sweeper', 'sweepers', count, _ ). +noun( 'sweeping', 'sweepings', both, _ ). +noun( 'sweet', 'sweets', both, _ ). +noun( 'sweetbread', 'sweetbreads', count, _ ). +noun( 'sweetbriar', '-', mass, _ ). +noun( 'sweetbrier', '-', mass, _ ). +noun( 'sweetening', 'sweetenings', both, _ ). +noun( 'sweetheart', 'sweethearts', count, _ ). +noun( 'sweetie', 'sweeties', count, _ ). +noun( 'sweetmeat', 'sweetmeats', count, _ ). +noun( 'sweetness', '-', mass, _ ). +noun( 'swell', 'swells', count, _ ). +noun( 'swelling', 'swellings', both, _ ). +noun( 'swerve', 'swerves', count, _ ). +noun( 'swift', 'swifts', count, _ ). +noun( 'swiftness', '-', mass, _ ). +noun( 'swig', 'swigs', count, _ ). +noun( 'swill', 'swills', both, _ ). +noun( 'swim', 'swims', count, _ ). +noun( 'swimmer', 'swimmers', count, _ ). +noun( 'swimming', '-', mass, _ ). +noun( 'swimming-bath', 'swimming-baths', count, _ ). +noun( 'swimming-costume', 'swimming-costumes', count, _ ). +noun( 'swimming-pool', 'swimming-pools', count, _ ). +noun( 'swimsuit', 'swimsuits', count, _ ). +noun( 'swindle', 'swindles', count, _ ). +noun( 'swindler', 'swindlers', count, _ ). +noun( 'swine', 'swine', count, _ ). +noun( 'swineherd', 'swineherds', count, _ ). +noun( 'swing', 'swings', count, _ ). +noun( 'swipe', 'swipes', count, _ ). +noun( 'swirl', 'swirls', count, _ ). +noun( 'swish', 'swishes', count, _ ). +noun( 'switch', 'switches', count, _ ). +noun( 'switchboard', 'switchboards', count, _ ). +noun( 'switchman', 'switchmen', count, _ ). +noun( 'swivel', 'swivels', count, _ ). +noun( 'swiz', '-', count, _ ). +noun( 'swizzle', 'swizzles', count, _ ). +noun( 'swizzle-stick', 'swizzle-sticks', count, _ ). +noun( 'swob', 'swobs', count, _ ). +noun( 'swoon', 'swoons', count, _ ). +noun( 'swoop', 'swoops', count, _ ). +noun( 'swop', 'swops', count, _ ). +noun( 'sword', 'swords', count, _ ). +noun( 'sword-cane', 'sword-canes', count, _ ). +noun( 'sword-cut', 'sword-cuts', count, _ ). +noun( 'sword-dance', 'sword-dances', count, _ ). +noun( 'swordfish', 'swordfish', count, _ ). +noun( 'swordplay', '-', mass, _ ). +noun( 'swordsman', 'swordsmen', count, _ ). +noun( 'swordsmanship', '-', mass, _ ). +noun( 'swordstick', 'swordsticks', count, _ ). +noun( 'swot', 'swots', count, _ ). +noun( 'sybarite', 'sybarites', count, _ ). +noun( 'sycamore', 'sycamores', both, _ ). +noun( 'sycophancy', '-', mass, _ ). +noun( 'sycophant', 'sycophants', count, _ ). +noun( 'syllabary', 'syllabaries', count, _ ). +noun( 'syllabication', '-', mass, _ ). +noun( 'syllabification', '-', mass, _ ). +noun( 'syllable', 'syllables', count, _ ). +noun( 'syllabus', 'syllabuses', count, _ ). +noun( 'syllogism', 'syllogisms', count, _ ). +noun( 'sylph', 'sylphs', count, _ ). +noun( 'symbiosis', '-', mass, _ ). +noun( 'symbol', 'symbols', count, _ ). +noun( 'symbolism', 'symbolisms', both, _ ). +noun( 'symbolization', 'symbolizations', both, _ ). +noun( 'symmetry', '-', mass, _ ). +noun( 'sympathizer', 'sympathizers', count, _ ). +noun( 'sympathy', 'sympathies', both, _ ). +noun( 'symphony', 'symphonies', count, _ ). +noun( 'symposium', 'symposiums', count, _ ). +noun( 'symptom', 'symptoms', count, _ ). +noun( 'synagogue', 'synagogues', count, _ ). +noun( 'synchroflash', '-', count, _ ). +noun( 'synchromesh', '-', mass, _ ). +noun( 'synchronization', 'synchronizations', both, _ ). +noun( 'synchrony', '-', mass, _ ). +noun( 'synchrotron', 'synchrotrons', count, _ ). +noun( 'syncopation', 'syncopations', both, _ ). +noun( 'syncope', '-', mass, _ ). +noun( 'syndic', 'syndics', count, _ ). +noun( 'syndicalism', '-', mass, _ ). +noun( 'syndicalist', 'syndicalists', count, _ ). +noun( 'syndicate', 'syndicates', count, _ ). +noun( 'syndication', 'syndications', count, _ ). +noun( 'syndrome', 'syndromes', count, _ ). +noun( 'synod', 'synods', count, _ ). +noun( 'synonym', 'synonyms', count, _ ). +noun( 'synopsis', 'synopses', count, _ ). +noun( 'syntax', '-', mass, _ ). +noun( 'synthesis', 'syntheses', both, _ ). +noun( 'synthetic', 'synthetics', count, _ ). +noun( 'syphilis', '-', mass, _ ). +noun( 'syphilitic', 'syphilitics', count, _ ). +noun( 'syphon', 'syphons', count, _ ). +noun( 'syringa', 'syringas', both, _ ). +noun( 'syringe', 'syringes', count, _ ). +noun( 'syrup', 'syrups', both, _ ). +noun( 'system', 'systems', both, _ ). +noun( 'systematization', '-', mass, _ ). +noun( 't', '-', count, _ ). +noun( 't^ete-`a-t^ete', 't^ete-`a-t^etes', count, _ ). +noun( 'tab', 'tabs', count, _ ). +noun( 'tabard', 'tabards', count, _ ). +noun( 'tabby', 'tabbies', count, _ ). +noun( 'tabby-cat', 'tabby-cats', count, _ ). +noun( 'tabernacle', 'tabernacles', count, _ ). +noun( 'table', 'tables', count, _ ). +noun( 'table-knife', 'table-knives', count, _ ). +noun( 'table-lifting', '-', mass, _ ). +noun( 'table-linen', '-', mass, _ ). +noun( 'table-rapping', '-', mass, _ ). +noun( 'table-talk', '-', mass, _ ). +noun( 'table-turning', '-', mass, _ ). +noun( 'tableau', 'tableaux', count, _ ). +noun( 'tableau vivant', 'tableaux vivants', count, _ ). +noun( 'tablecloth', 'tablecloths', count, _ ). +noun( 'tablemat', 'tablemats', count, _ ). +noun( 'tablespoon', 'tablespoons', count, _ ). +noun( 'tablespoonful', 'tablespoonfuls', count, _ ). +noun( 'tablet', 'tablets', count, _ ). +noun( 'tableware', '-', mass, _ ). +noun( 'tabloid', 'tabloids', count, _ ). +noun( 'taboo', 'taboos', both, _ ). +noun( 'tabor', 'tabors', count, _ ). +noun( 'tabulation', 'tabulations', both, _ ). +noun( 'tabulator', 'tabulators', count, _ ). +noun( 'tachograph', 'tachographs', count, _ ). +noun( 'taciturnity', '-', mass, _ ). +noun( 'tack', 'tacks', both, _ ). +noun( 'tackle', 'tackles', both, _ ). +noun( 'tact', '-', mass, _ ). +noun( 'tactic', 'tactics', count, _ ). +noun( 'tactician', 'tacticians', count, _ ). +noun( 'tactlessness', '-', mass, _ ). +noun( 'tadpole', 'tadpoles', count, _ ). +noun( 'taffeta', '-', mass, _ ). +noun( 'taffrail', 'taffrails', count, _ ). +noun( 'taffy', 'taffies', count, _ ). +noun( 'tag', 'tags', both, _ ). +noun( 'tail', 'tails', count, _ ). +noun( 'tail-coat', 'tail-coats', count, _ ). +noun( 'tail-end', 'tail-ends', count, _ ). +noun( 'tail-light', 'tail-lights', count, _ ). +noun( 'tailboard', 'tailboards', count, _ ). +noun( 'tailgate', 'tailgates', count, _ ). +noun( 'tailor', 'tailors', count, _ ). +noun( 'tailpiece', 'tailpieces', count, _ ). +noun( 'tailplane', 'tailplanes', count, _ ). +noun( 'tailspin', 'tailspins', count, _ ). +noun( 'taint', 'taints', both, _ ). +noun( 'take', 'takes', count, _ ). +noun( 'take-off', 'take-offs', count, _ ). +noun( 'take-up', '-', mass, _ ). +noun( 'takeover', 'takeovers', count, _ ). +noun( 'taker', 'takers', count, _ ). +noun( 'talc', '-', mass, _ ). +noun( 'talcum', '-', mass, _ ). +noun( 'tale', 'tales', count, _ ). +noun( 'tale-bearer', 'tale-bearers', count, _ ). +noun( 'tale-teller', 'tale-tellers', count, _ ). +noun( 'talent', 'talents', both, _ ). +noun( 'talisman', 'talismans', count, _ ). +noun( 'talk', 'talks', both, _ ). +noun( 'talker', 'talkers', count, _ ). +noun( 'talkie', 'talkies', count, _ ). +noun( 'talking-point', 'talking-points', count, _ ). +noun( 'talking-to', 'talking-tos', count, _ ). +noun( 'tallboy', 'tallboys', count, _ ). +noun( 'tallow', '-', mass, _ ). +noun( 'tally', 'tallies', count, _ ). +noun( 'tally-clerk', 'tally-clerks', count, _ ). +noun( 'tallyman', 'tallymen', count, _ ). +noun( 'talon', 'talons', count, _ ). +noun( 'talus', 'taluses', count, _ ). +noun( 'tam-o\'-shanter', 'tam-o\'-shanters', count, _ ). +noun( 'tamale', 'tamales', both, _ ). +noun( 'tamarind', 'tamarinds', both, _ ). +noun( 'tamarisk', 'tamarisks', count, _ ). +noun( 'tambour', 'tambours', count, _ ). +noun( 'tambourine', 'tambourines', count, _ ). +noun( 'tameness', '-', mass, _ ). +noun( 'tamer', 'tamers', count, _ ). +noun( 'tammy', 'tammies', count, _ ). +noun( 'tan', 'tans', count, _ ). +noun( 'tandem', 'tandems', count, _ ). +noun( 'tang', 'tangs', count, _ ). +noun( 'tangent', 'tangents', count, _ ). +noun( 'tangerine', 'tangerines', both, _ ). +noun( 'tangibility', '-', mass, _ ). +noun( 'tangle', 'tangles', both, _ ). +noun( 'tango', 'tangos', count, _ ). +noun( 'tank', 'tanks', count, _ ). +noun( 'tank-car', 'tank-cars', count, _ ). +noun( 'tankard', 'tankards', count, _ ). +noun( 'tanker', 'tankers', count, _ ). +noun( 'tanner', 'tanners', count, _ ). +noun( 'tannery', 'tanneries', count, _ ). +noun( 'tannin', '-', mass, _ ). +noun( 'tannoy', 'tannoys', count, _ ). +noun( 'tansy', 'tansies', count, _ ). +noun( 'tantrum', 'tantrums', count, _ ). +noun( 'tap', 'taps', count, _ ). +noun( 'tap-dancing', '-', mass, _ ). +noun( 'tape', 'tapes', both, _ ). +noun( 'tape-measure', 'tape-measures', count, _ ). +noun( 'tape-recorder', 'tape-recorders', count, _ ). +noun( 'taper', 'tapers', count, _ ). +noun( 'tapestry', 'tapestries', both, _ ). +noun( 'tapeworm', 'tapeworms', count, _ ). +noun( 'tapioca', '-', mass, _ ). +noun( 'tapir', 'tapirs', count, _ ). +noun( 'taproom', 'taprooms', count, _ ). +noun( 'taproot', 'taproots', count, _ ). +noun( 'tapster', 'tapsters', count, _ ). +noun( 'tar', 'tars', both, _ ). +noun( 'tar-macadam', '-', mass, _ ). +noun( 'taradiddle', 'taradiddles', count, _ ). +noun( 'tarantella', 'tarantellas', count, _ ). +noun( 'tarantelle', 'tarantelles', count, _ ). +noun( 'tarantula', 'tarantulas', count, _ ). +noun( 'tarboosh', 'tarbooshes', count, _ ). +noun( 'tardiness', '-', mass, _ ). +noun( 'tare', 'tares', count, _ ). +noun( 'target', 'targets', count, _ ). +noun( 'tariff', 'tariffs', count, _ ). +noun( 'tarmac', '-', mass, _ ). +noun( 'tarn', 'tarns', count, _ ). +noun( 'tarnish', '-', mass, _ ). +noun( 'taro', 'taros', both, _ ). +noun( 'tarpaulin', 'tarpaulins', both, _ ). +noun( 'tarpon', 'tarpons', count, _ ). +noun( 'tarradiddle', 'tarradiddles', count, _ ). +noun( 'tarragon', '-', mass, _ ). +noun( 'tarsal', 'tarsals', count, _ ). +noun( 'tarsus', 'tarsi', count, _ ). +noun( 'tart', 'tarts', count, _ ). +noun( 'tartan', 'tartans', both, _ ). +noun( 'tartar', 'tartars', both, _ ). +noun( 'tartness', '-', mass, _ ). +noun( 'task', 'tasks', count, _ ). +noun( 'task-force', 'task-forces', count, _ ). +noun( 'taskmaster', 'taskmasters', count, _ ). +noun( 'tassel', 'tassels', count, _ ). +noun( 'taste', 'tastes', both, _ ). +noun( 'taster', 'tasters', count, _ ). +noun( 'tat', '-', mass, _ ). +noun( 'tatter', 'tatters', count, _ ). +noun( 'tatterdemalion', 'tatterdemalions', count, _ ). +noun( 'tatting', '-', mass, _ ). +noun( 'tattle', '-', mass, _ ). +noun( 'tattler', 'tattlers', count, _ ). +noun( 'tattoo', 'tattoos', count, _ ). +noun( 'taunt', 'taunts', count, _ ). +noun( 'tautness', '-', mass, _ ). +noun( 'tautology', 'tautologies', both, _ ). +noun( 'tavern', 'taverns', count, _ ). +noun( 'tawdriness', '-', mass, _ ). +noun( 'tawse', 'tawses', count, _ ). +noun( 'tax', 'taxes', both, _ ). +noun( 'tax-collector', 'tax-collectors', count, _ ). +noun( 'taxability', '-', mass, _ ). +noun( 'taxation', '-', mass, _ ). +noun( 'taxi', 'taxis', count, _ ). +noun( 'taxicab', 'taxicabs', count, _ ). +noun( 'taxidermist', 'taxidermists', count, _ ). +noun( 'taxidermy', '-', mass, _ ). +noun( 'taximeter', 'taximeters', count, _ ). +noun( 'taxonomy', 'taxonomies', both, _ ). +noun( 'taxpayer', 'taxpayers', count, _ ). +noun( 'tea', 'teas', both, _ ). +noun( 'tea-bag', 'tea-bags', count, _ ). +noun( 'tea-break', 'tea-breaks', count, _ ). +noun( 'tea-caddy', 'tea-caddies', count, _ ). +noun( 'tea-chest', 'tea-chests', count, _ ). +noun( 'tea-cloth', 'tea-cloths', count, _ ). +noun( 'tea-cosy', 'tea-cosies', count, _ ). +noun( 'tea-garden', 'tea-gardens', count, _ ). +noun( 'tea-kettle', 'tea-kettles', count, _ ). +noun( 'tea-leaf', 'tea-leaves', count, _ ). +noun( 'tea-party', 'tea-parties', count, _ ). +noun( 'tea-service', 'tea-services', count, _ ). +noun( 'tea-set', 'tea-sets', count, _ ). +noun( 'tea-strainer', 'tea-strainers', count, _ ). +noun( 'tea-table', 'tea-tables', count, _ ). +noun( 'tea-time', '-', mass, _ ). +noun( 'tea-towel', 'tea-towels', count, _ ). +noun( 'tea-tray', 'tea-trays', count, _ ). +noun( 'tea-trolley', 'tea-trolleys', count, _ ). +noun( 'tea-urn', 'tea-urns', count, _ ). +noun( 'tea-wagon', 'tea-wagons', count, _ ). +noun( 'teacake', 'teacakes', count, _ ). +noun( 'teach-in', 'teach-ins', count, _ ). +noun( 'teacher', 'teachers', count, _ ). +noun( 'teaching', 'teachings', both, _ ). +noun( 'teacup', 'teacups', count, _ ). +noun( 'teahouse', 'teahouses', count, _ ). +noun( 'teak', '-', mass, _ ). +noun( 'teal', 'teal', count, _ ). +noun( 'team', 'teams', count, _ ). +noun( 'teamster', 'teamsters', count, _ ). +noun( 'teamwork', '-', mass, _ ). +noun( 'teapot', 'teapots', count, _ ). +noun( 'tear', 'tears', count, _ ). +noun( 'tear', 'tears', count, _ ). +noun( 'tear-drop', 'tear-drops', count, _ ). +noun( 'tear-gas', '-', mass, _ ). +noun( 'tearaway', 'tearaways', count, _ ). +noun( 'tearing', '-', mass, _ ). +noun( 'tearoom', 'tearooms', count, _ ). +noun( 'tease', 'teases', count, _ ). +noun( 'teasel', 'teasels', count, _ ). +noun( 'teaser', 'teasers', count, _ ). +noun( 'teashop', 'teashops', count, _ ). +noun( 'teaspoon', 'teaspoons', count, _ ). +noun( 'teaspoonful', 'teaspoonfuls', count, _ ). +noun( 'teat', 'teats', count, _ ). +noun( 'teazel', 'teazels', count, _ ). +noun( 'teazle', 'teazles', count, _ ). +noun( 'tec', 'tecs', count, _ ). +noun( 'tech', 'techs', count, _ ). +noun( 'technicality', 'technicalities', both, _ ). +noun( 'technician', 'technicians', count, _ ). +noun( 'technique', 'techniques', both, _ ). +noun( 'technocracy', 'technocracies', both, _ ). +noun( 'technocrat', 'technocrats', count, _ ). +noun( 'technologist', 'technologists', count, _ ). +noun( 'technology', 'technologies', both, _ ). +noun( 'teddy', 'teddies', count, _ ). +noun( 'tediousness', '-', mass, _ ). +noun( 'tedium', '-', mass, _ ). +noun( 'tee', 'tees', count, _ ). +noun( 'tee-shirt', 'tee-shirts', count, _ ). +noun( 'teenager', 'teenagers', count, _ ). +noun( 'teetotaller', 'teetotallers', count, _ ). +noun( 'teetotum', 'teetotums', count, _ ). +noun( 'teg', 'tegs', count, _ ). +noun( 'tegument', 'teguments', count, _ ). +noun( 'tel', '-', proper, _ ). +noun( 'telecast', 'telecasts', count, _ ). +noun( 'telecommunication', 'telecommunications', both, _ ). +noun( 'telegram', 'telegrams', count, _ ). +noun( 'telegraph', 'telegraphs', count, _ ). +noun( 'telegraph-line', 'telegraph-lines', count, _ ). +noun( 'telegraph-pole', 'telegraph-poles', count, _ ). +noun( 'telegraph-post', 'telegraph-posts', count, _ ). +noun( 'telegraph-wire', 'telegraph-wires', count, _ ). +noun( 'telegrapher', 'telegraphers', count, _ ). +noun( 'telegraphese', '-', mass, _ ). +noun( 'telegraphist', 'telegraphists', count, _ ). +noun( 'telegraphy', '-', mass, _ ). +noun( 'telemetry', '-', mass, _ ). +noun( 'teleologist', 'teleologists', count, _ ). +noun( 'teleology', 'teleologies', both, _ ). +noun( 'telepathist', 'telepathists', count, _ ). +noun( 'telepathy', '-', mass, _ ). +noun( 'telephone', 'telephones', both, _ ). +noun( 'telephonist', 'telephonists', count, _ ). +noun( 'telephony', '-', mass, _ ). +noun( 'telephoto', '-', mass, _ ). +noun( 'telephotograph', 'telephotographs', count, _ ). +noun( 'telephotography', '-', mass, _ ). +noun( 'teleprinter', 'teleprinters', count, _ ). +noun( 'teleprompter', 'teleprompters', count, _ ). +noun( 'telescope', 'telescopes', count, _ ). +noun( 'teletypewriter', 'teletypewriters', count, _ ). +noun( 'television', 'televisions', both, _ ). +noun( 'telex', 'telexes', count, _ ). +noun( 'telfer', 'telfers', count, _ ). +noun( 'teller', 'tellers', count, _ ). +noun( 'telltale', 'telltales', count, _ ). +noun( 'telly', 'tellies', count, _ ). +noun( 'telpher', 'telphers', count, _ ). +noun( 'temerity', '-', mass, _ ). +noun( 'temp', 'temps', count, _ ). +noun( 'temper', 'tempers', both, _ ). +noun( 'tempera', '-', mass, _ ). +noun( 'temperament', 'temperaments', both, _ ). +noun( 'temperance', '-', mass, _ ). +noun( 'temperateness', '-', mass, _ ). +noun( 'temperature', 'temperatures', both, _ ). +noun( 'tempest', 'tempests', count, _ ). +noun( 'template', 'templates', count, _ ). +noun( 'temple', 'temples', count, _ ). +noun( 'templet', 'templets', count, _ ). +noun( 'tempo', 'tempos', count, _ ). +noun( 'temporality', '-', mass, _ ). +noun( 'temporalty', '-', mass, _ ). +noun( 'temporariness', '-', mass, _ ). +noun( 'temptation', 'temptations', both, _ ). +noun( 'tempter', 'tempters', count, _ ). +noun( 'temptress', 'temptresses', count, _ ). +noun( 'ten', 'tens', count, _ ). +noun( 'tenability', '-', mass, _ ). +noun( 'tenaciousness', '-', mass, _ ). +noun( 'tenacity', '-', mass, _ ). +noun( 'tenancy', 'tenancies', both, _ ). +noun( 'tenant', 'tenants', count, _ ). +noun( 'tenantry', 'tenantries', count, _ ). +noun( 'tench', 'tench', count, _ ). +noun( 'tendency', 'tendencies', both, _ ). +noun( 'tendentiousness', '-', mass, _ ). +noun( 'tender', 'tenders', count, _ ). +noun( 'tenderfoot', 'tenderfoots', count, _ ). +noun( 'tenderloin', '-', mass, _ ). +noun( 'tenderness', '-', mass, _ ). +noun( 'tendon', 'tendons', count, _ ). +noun( 'tendril', 'tendrils', count, _ ). +noun( 'tenement', 'tenements', count, _ ). +noun( 'tenement-house', 'tenement-houses', count, _ ). +noun( 'tenet', 'tenets', count, _ ). +noun( 'tenner', 'tenners', count, _ ). +noun( 'tennis', '-', mass, _ ). +noun( 'tennis-court', 'tennis-courts', count, _ ). +noun( 'tennis-elbow', '-', mass, _ ). +noun( 'tenon', 'tenons', count, _ ). +noun( 'tenor', 'tenors', count, _ ). +noun( 'tenpence', 'tenpences', count, _ ). +noun( 'tenpin', 'tenpins', count, _ ). +noun( 'tense', 'tenses', count, _ ). +noun( 'tenseness', '-', mass, _ ). +noun( 'tension', 'tensions', both, _ ). +noun( 'tensity', '-', mass, _ ). +noun( 'tent', 'tents', count, _ ). +noun( 'tent-peg', 'tent-pegs', count, _ ). +noun( 'tentacle', 'tentacles', count, _ ). +noun( 'tenth', 'tenths', count, _ ). +noun( 'tenuity', '-', mass, _ ). +noun( 'tenure', 'tenures', both, _ ). +noun( 'tepee', 'tepees', count, _ ). +noun( 'tepidity', '-', mass, _ ). +noun( 'tepidness', '-', mass, _ ). +noun( 'tercentenary', 'tercentenaries', count, _ ). +noun( 'tercentennial', 'tercentennials', count, _ ). +noun( 'tergiversation', '-', mass, _ ). +noun( 'term', 'terms', count, _ ). +noun( 'termagant', 'termagants', count, _ ). +noun( 'terminal', 'terminals', count, _ ). +noun( 'termination', 'terminations', both, _ ). +noun( 'terminology', 'terminologies', both, _ ). +noun( 'terminus', 'terminuses', count, _ ). +noun( 'termite', 'termites', count, _ ). +noun( 'tern', 'terns', count, _ ). +noun( 'terra firma', '-', mass, _ ). +noun( 'terra incognita', '-', mass, _ ). +noun( 'terra-cotta', '-', mass, _ ). +noun( 'terrace', 'terraces', count, _ ). +noun( 'terrain', '-', mass, _ ). +noun( 'terrapin', 'terrapins', count, _ ). +noun( 'terrier', 'terriers', count, _ ). +noun( 'territorial', 'territorials', count, _ ). +noun( 'territory', 'territories', both, _ ). +noun( 'terror', 'terrors', both, _ ). +noun( 'terrorism', '-', mass, _ ). +noun( 'terrorist', 'terrorists', count, _ ). +noun( 'terseness', '-', mass, _ ). +noun( 'terylene', '-', mass, _ ). +noun( 'test', 'tests', count, _ ). +noun( 'test-drive', 'test-drives', count, _ ). +noun( 'test-tube', 'test-tubes', count, _ ). +noun( 'testament', 'testaments', count, _ ). +noun( 'testate', 'testates', count, _ ). +noun( 'testator', 'testators', count, _ ). +noun( 'testatrix', 'testatrixes', count, _ ). +noun( 'testbed', 'testbeds', count, _ ). +noun( 'testicle', 'testicles', count, _ ). +noun( 'testimonial', 'testimonials', count, _ ). +noun( 'testimony', 'testimonies', both, _ ). +noun( 'testiness', '-', mass, _ ). +noun( 'testis', 'testes', count, _ ). +noun( 'tetanus', '-', mass, _ ). +noun( 'tetchiness', '-', mass, _ ). +noun( 'tether', 'tethers', count, _ ). +noun( 'text', 'texts', both, _ ). +noun( 'textbook', 'textbooks', count, _ ). +noun( 'textile', 'textiles', count, _ ). +noun( 'texture', 'textures', both, _ ). +noun( 'thalidomide', '-', mass, _ ). +noun( 'thane', 'thanes', count, _ ). +noun( 'thank-offering', 'thank-offerings', count, _ ). +noun( 'thankfulness', '-', mass, _ ). +noun( 'thanksgiving', 'thanksgivings', both, _ ). +noun( 'thatch', '-', mass, _ ). +noun( 'thatcher', 'thatchers', count, _ ). +noun( 'thaw', 'thaws', count, _ ). +noun( 'theatre', 'theatres', both, _ ). +noun( 'theatregoer', 'theatregoers', count, _ ). +noun( 'theatrical', 'theatricals', count, _ ). +noun( 'theft', 'thefts', both, _ ). +noun( 'theism', '-', mass, _ ). +noun( 'theist', 'theists', count, _ ). +noun( 'theme', 'themes', count, _ ). +noun( 'theocracy', 'theocracies', both, _ ). +noun( 'theodolite', 'theodolites', count, _ ). +noun( 'theologian', 'theologians', count, _ ). +noun( 'theology', 'theologies', both, _ ). +noun( 'theorem', 'theorems', count, _ ). +noun( 'theoretician', 'theoreticians', count, _ ). +noun( 'theorist', 'theorists', count, _ ). +noun( 'theory', 'theories', both, _ ). +noun( 'theosophist', 'theosophists', count, _ ). +noun( 'theosophy', '-', mass, _ ). +noun( 'therapeutics', 'therapeutics', mass, _ ). +noun( 'therapist', 'therapists', count, _ ). +noun( 'therapy', 'therapies', both, _ ). +noun( 'therm', 'therms', count, _ ). +noun( 'thermal', 'thermals', count, _ ). +noun( 'thermodynamics', 'thermodynamics', mass, _ ). +noun( 'thermometer', 'thermometers', count, _ ). +noun( 'thermoplastic', 'thermoplastics', count, _ ). +noun( 'thermos', 'thermoses', count, _ ). +noun( 'thermostat', 'thermostats', count, _ ). +noun( 'thesaurus', 'thesauruses', count, _ ). +noun( 'thesis', 'theses', count, _ ). +noun( 'thick', '-', mass, _ ). +noun( 'thickening', '-', mass, _ ). +noun( 'thicket', 'thickets', count, _ ). +noun( 'thickness', 'thicknesses', both, _ ). +noun( 'thief', 'thieves', count, _ ). +noun( 'thievery', '-', mass, _ ). +noun( 'thigh', 'thighs', count, _ ). +noun( 'thighbone', 'thighbones', count, _ ). +noun( 'thimble', 'thimbles', count, _ ). +noun( 'thimbleful', 'thimblefuls', count, _ ). +noun( 'thing', 'things', count, _ ). +noun( 'thingmabob', 'thingmabobs', count, _ ). +noun( 'thingmajig', 'thingmajigs', count, _ ). +noun( 'thingumabob', 'thingumabobs', count, _ ). +noun( 'thingumajig', 'thingumajigs', count, _ ). +noun( 'thingummy', 'thingummies', count, _ ). +noun( 'think', 'thinks', count, _ ). +noun( 'think-tank', 'think-tanks', count, _ ). +noun( 'thinker', 'thinkers', count, _ ). +noun( 'thinking', '-', mass, _ ). +noun( 'thinness', '-', mass, _ ). +noun( 'third', 'thirds', count, _ ). +noun( 'third-rater', 'third-raters', count, _ ). +noun( 'thirst', '-', mass, _ ). +noun( 'thirteen', 'thirteens', count, _ ). +noun( 'thirteenth', 'thirteenths', count, _ ). +noun( 'thirtieth', 'thirtieths', count, _ ). +noun( 'thirty', 'thirties', count, _ ). +noun( 'thistle', 'thistles', count, _ ). +noun( 'thistledown', '-', mass, _ ). +noun( 'thole', 'tholes', count, _ ). +noun( 'tholepin', 'tholepins', count, _ ). +noun( 'thong', 'thongs', count, _ ). +noun( 'thorax', 'thoraxes', count, _ ). +noun( 'thorn', 'thorns', both, _ ). +noun( 'thoroughbred', 'thoroughbreds', count, _ ). +noun( 'thoroughfare', 'thoroughfares', count, _ ). +noun( 'thoroughness', '-', mass, _ ). +noun( 'thought', 'thoughts', both, _ ). +noun( 'thought-reader', 'thought-readers', count, _ ). +noun( 'thoughtfulness', '-', mass, _ ). +noun( 'thoughtlessness', '-', mass, _ ). +noun( 'thousand', 'thousands', count, _ ). +noun( 'thousandth', 'thousandths', count, _ ). +noun( 'thraldom', '-', mass, _ ). +noun( 'thrall', 'thralls', both, _ ). +noun( 'thrashing', 'thrashings', count, _ ). +noun( 'thread', 'threads', both, _ ). +noun( 'threat', 'threats', count, _ ). +noun( 'three', 'threes', count, _ ). +noun( 'three-d', '-', mass, _ ). +noun( 'three-decker', 'three-deckers', count, _ ). +noun( 'three-quarter', 'three-quarters', count, _ ). +noun( 'three-score', '-', mass, _ ). +noun( 'threepence', 'threepences', count, _ ). +noun( 'threesome', 'threesomes', count, _ ). +noun( 'threnody', 'threnodies', count, _ ). +noun( 'thresher', 'threshers', count, _ ). +noun( 'threshing-floor', 'threshing-floors', count, _ ). +noun( 'threshing-machine', 'threshing-machines', count, _ ). +noun( 'threshold', 'thresholds', count, _ ). +noun( 'thrift', '-', mass, _ ). +noun( 'thriftlessness', '-', mass, _ ). +noun( 'thrill', 'thrills', count, _ ). +noun( 'thriller', 'thrillers', count, _ ). +noun( 'throat', 'throats', count, _ ). +noun( 'throb', 'throbs', count, _ ). +noun( 'throe', 'throes', count, _ ). +noun( 'thrombosis', '-', mass, _ ). +noun( 'throne', 'thrones', count, _ ). +noun( 'throng', 'throngs', count, _ ). +noun( 'throstle', 'throstles', count, _ ). +noun( 'throttle', 'throttles', both, _ ). +noun( 'throttle-valve', 'throttle-valves', count, _ ). +noun( 'throughput', 'throughputs', both, _ ). +noun( 'throughway', 'throughways', count, _ ). +noun( 'throw', 'throws', count, _ ). +noun( 'throw-in', 'throw-ins', count, _ ). +noun( 'throwaway', 'throwaways', count, _ ). +noun( 'throwback', 'throwbacks', count, _ ). +noun( 'thrush', 'thrushes', count, _ ). +noun( 'thrust', 'thrusts', both, _ ). +noun( 'thruster', 'thrusters', count, _ ). +noun( 'thud', 'thuds', count, _ ). +noun( 'thug', 'thugs', count, _ ). +noun( 'thuggery', '-', mass, _ ). +noun( 'thumb', 'thumbs', count, _ ). +noun( 'thumbnut', 'thumbnuts', count, _ ). +noun( 'thumbscrew', 'thumbscrews', count, _ ). +noun( 'thumbstall', 'thumbstalls', count, _ ). +noun( 'thumbtack', 'thumbtacks', count, _ ). +noun( 'thump', 'thumps', count, _ ). +noun( 'thunder', 'thunders', both, _ ). +noun( 'thunderbolt', 'thunderbolts', count, _ ). +noun( 'thunderclap', 'thunderclaps', count, _ ). +noun( 'thunderstorm', 'thunderstorms', count, _ ). +noun( 'thurible', 'thuribles', count, _ ). +noun( 'thwack', 'thwacks', count, _ ). +noun( 'thwart', 'thwarts', count, _ ). +noun( 'thyme', '-', mass, _ ). +noun( 'thyroid', 'thyroids', count, _ ). +noun( 'ti', '-', count, _ ). +noun( 'tiara', 'tiaras', count, _ ). +noun( 'tibia', 'tibiae', count, _ ). +noun( 'tic', 'tics', count, _ ). +noun( 'tick', 'ticks', both, _ ). +noun( 'tick-tock', 'tick-tocks', count, _ ). +noun( 'ticker', 'tickers', count, _ ). +noun( 'ticker-tape', '-', mass, _ ). +noun( 'ticket', 'tickets', count, _ ). +noun( 'ticket-collector', 'ticket-collectors', count, _ ). +noun( 'ticking', '-', mass, _ ). +noun( 'tickler', 'ticklers', count, _ ). +noun( 'tidbit', 'tidbits', count, _ ). +noun( 'tiddler', 'tiddlers', count, _ ). +noun( 'tiddlywinks', 'tiddlywinks', mass, _ ). +noun( 'tide', 'tides', both, _ ). +noun( 'tidemark', 'tidemarks', count, _ ). +noun( 'tideway', 'tideways', count, _ ). +noun( 'tidiness', '-', mass, _ ). +noun( 'tidy', 'tidies', count, _ ). +noun( 'tie', 'ties', count, _ ). +noun( 'tie-up', 'tie-ups', count, _ ). +noun( 'tier', 'tiers', count, _ ). +noun( 'tiff', 'tiffs', count, _ ). +noun( 'tiger', 'tigers', count, _ ). +noun( 'tiger-lily', 'tiger-lilies', count, _ ). +noun( 'tight-wad', 'tight-wads', count, _ ). +noun( 'tightness', '-', mass, _ ). +noun( 'tightrope', 'tightropes', count, _ ). +noun( 'tigress', 'tigresses', count, _ ). +noun( 'tike', 'tikes', count, _ ). +noun( 'tilde', 'tildes', count, _ ). +noun( 'tilde', 'tildes', count, _ ). +noun( 'tile', 'tiles', count, _ ). +noun( 'till', 'tills', count, _ ). +noun( 'tillage', '-', mass, _ ). +noun( 'tiller', 'tillers', count, _ ). +noun( 'tilt', 'tilts', count, _ ). +noun( 'tilth', 'tilths', count, _ ). +noun( 'tiltyard', 'tiltyards', count, _ ). +noun( 'timber', 'timbers', both, _ ). +noun( 'timbre', 'timbres', count, _ ). +noun( 'timbrel', 'timbrels', count, _ ). +noun( 'time', 'times', both, _ ). +noun( 'time-ball', 'time-balls', count, _ ). +noun( 'time-bomb', 'time-bombs', count, _ ). +noun( 'time-exposure', 'time-exposures', count, _ ). +noun( 'time-fuse', 'time-fuses', count, _ ). +noun( 'time-lag', 'time-lags', count, _ ). +noun( 'time-limit', 'time-limits', count, _ ). +noun( 'time-sheet', 'time-sheets', count, _ ). +noun( 'time-signal', 'time-signals', count, _ ). +noun( 'time-switch', 'time-switches', count, _ ). +noun( 'timecard', 'timecards', count, _ ). +noun( 'timekeeper', 'timekeepers', count, _ ). +noun( 'timekeeping', '-', mass, _ ). +noun( 'timeliness', '-', mass, _ ). +noun( 'timepiece', 'timepieces', count, _ ). +noun( 'timeserver', 'timeservers', count, _ ). +noun( 'timetable', 'timetables', count, _ ). +noun( 'timework', '-', mass, _ ). +noun( 'timidity', '-', mass, _ ). +noun( 'timidness', '-', mass, _ ). +noun( 'timing', 'timings', both, _ ). +noun( 'timothy', '-', mass, _ ). +noun( 'timpanist', 'timpanists', count, _ ). +noun( 'tin', 'tins', both, _ ). +noun( 'tin pan alley', 'tin pan alleys', count, _ ). +noun( 'tin-opener', 'tin-openers', count, _ ). +noun( 'tin-plate', '-', mass, _ ). +noun( 'tincture', 'tinctures', count, _ ). +noun( 'tinder', '-', mass, _ ). +noun( 'tinderbox', 'tinderboxes', count, _ ). +noun( 'tine', 'tines', count, _ ). +noun( 'tinfoil', '-', mass, _ ). +noun( 'ting', 'tings', count, _ ). +noun( 'tinge', 'tinges', count, _ ). +noun( 'tingle', 'tingles', count, _ ). +noun( 'tinker', 'tinkers', count, _ ). +noun( 'tinkle', '-', count, _ ). +noun( 'tinsel', '-', mass, _ ). +noun( 'tinsmith', 'tinsmiths', count, _ ). +noun( 'tint', 'tints', count, _ ). +noun( 'tintack', 'tintacks', count, _ ). +noun( 'tintinnabulation', '-', mass, _ ). +noun( 'tip', 'tips', count, _ ). +noun( 'tip-off', 'tip-offs', count, _ ). +noun( 'tippet', 'tippets', count, _ ). +noun( 'tipple', '-', mass, _ ). +noun( 'tippler', 'tipplers', count, _ ). +noun( 'tipstaff', 'tipstaffs', count, _ ). +noun( 'tipster', 'tipsters', count, _ ). +noun( 'tirade', 'tirades', count, _ ). +noun( 'tire', 'tires', count, _ ). +noun( 'tiredness', '-', mass, _ ). +noun( 'tiro', 'tiros', count, _ ). +noun( 'tissue', 'tissues', both, _ ). +noun( 'tit', 'tits', count, _ ). +noun( 'titan', 'titans', count, _ ). +noun( 'titbit', 'titbits', count, _ ). +noun( 'tithe', 'tithes', count, _ ). +noun( 'tithe-barn', 'tithe-barns', count, _ ). +noun( 'titillation', 'titillations', count, _ ). +noun( 'titlark', 'titlarks', count, _ ). +noun( 'title', 'titles', both, _ ). +noun( 'title-deed', 'title-deeds', count, _ ). +noun( 'title-page', 'title-pages', count, _ ). +noun( 'title-role', 'title-roles', count, _ ). +noun( 'titmouse', 'titmice', count, _ ). +noun( 'tittle', '-', count, _ ). +noun( 'tittle-tattle', '-', mass, _ ). +noun( 'tizzy', 'tizzies', count, _ ). +noun( 'to-do', 'to-dos', count, _ ). +noun( 'toad', 'toads', count, _ ). +noun( 'toad-in-the-hole', '-', both, _ ). +noun( 'toadstool', 'toadstools', count, _ ). +noun( 'toady', 'toadies', count, _ ). +noun( 'toast', 'toasts', both, _ ). +noun( 'toaster', 'toasters', count, _ ). +noun( 'toasting-fork', 'toasting-forks', count, _ ). +noun( 'toastmaster', 'toastmasters', count, _ ). +noun( 'toastrack', 'toastracks', count, _ ). +noun( 'tobacco', 'tobaccos', both, _ ). +noun( 'tobacconist', 'tobacconists', count, _ ). +noun( 'toboggan', 'toboggans', count, _ ). +noun( 'toby-jug', 'toby-jugs', count, _ ). +noun( 'toccata', 'toccatas', count, _ ). +noun( 'tocsin', 'tocsins', count, _ ). +noun( 'today', '-', mass, _ ). +noun( 'toddler', 'toddlers', count, _ ). +noun( 'toddy', 'toddies', both, _ ). +noun( 'toe', 'toes', count, _ ). +noun( 'toecap', 'toecaps', count, _ ). +noun( 'toehold', 'toeholds', count, _ ). +noun( 'toenail', 'toenails', count, _ ). +noun( 'toff', 'toffs', count, _ ). +noun( 'toffee', 'toffees', both, _ ). +noun( 'toga', 'togas', count, _ ). +noun( 'togetherness', '-', mass, _ ). +noun( 'toggle', 'toggles', count, _ ). +noun( 'toil', 'toils', both, _ ). +noun( 'toiler', 'toilers', count, _ ). +noun( 'toilet', 'toilets', count, _ ). +noun( 'toilet-paper', 'toilet-papers', count, _ ). +noun( 'toilet-powder', '-', mass, _ ). +noun( 'toilet-roll', 'toilet-rolls', count, _ ). +noun( 'toilet-table', 'toilet-tables', count, _ ). +noun( 'token', 'tokens', count, _ ). +noun( 'tolerance', 'tolerances', both, _ ). +noun( 'toleration', '-', mass, _ ). +noun( 'toll', 'tolls', count, _ ). +noun( 'tollbar', 'tollbars', count, _ ). +noun( 'tollbooth', 'tollbooths', count, _ ). +noun( 'tollgate', 'tollgates', count, _ ). +noun( 'tollhouse', 'tollhouses', count, _ ). +noun( 'tomahawk', 'tomahawks', count, _ ). +noun( 'tomato', 'tomatoes', count, _ ). +noun( 'tomb', 'tombs', count, _ ). +noun( 'tombola', 'tombolas', count, _ ). +noun( 'tomboy', 'tomboys', count, _ ). +noun( 'tombstone', 'tombstones', count, _ ). +noun( 'tomcat', 'tomcats', count, _ ). +noun( 'tome', 'tomes', count, _ ). +noun( 'tomfool', 'tomfools', count, _ ). +noun( 'tomfoolery', 'tomfooleries', both, _ ). +noun( 'tommy-gun', 'tommy-guns', count, _ ). +noun( 'tommy-rot', '-', mass, _ ). +noun( 'tomorrow', 'tomorrows', both, _ ). +noun( 'tomtit', 'tomtits', count, _ ). +noun( 'tomtom', 'tomtoms', count, _ ). +noun( 'ton', 'tons', count, _ ). +noun( 'tonality', 'tonalities', both, _ ). +noun( 'tone', 'tones', both, _ ). +noun( 'tone-poem', 'tone-poems', count, _ ). +noun( 'tongue', 'tongues', both, _ ). +noun( 'tongue-twister', 'tongue-twisters', count, _ ). +noun( 'tonic', 'tonics', count, _ ). +noun( 'tonic sol-fa', '-', mass, _ ). +noun( 'tonight', '-', mass, _ ). +noun( 'tonnage', 'tonnages', count, _ ). +noun( 'tonne', 'tonnes', count, _ ). +noun( 'tonsil', 'tonsils', count, _ ). +noun( 'tonsillitis', '-', mass, _ ). +noun( 'tonsure', 'tonsures', count, _ ). +noun( 'tontine', 'tontines', count, _ ). +noun( 'tool', 'tools', count, _ ). +noun( 'toot', 'toots', count, _ ). +noun( 'tooth', 'teeth', count, _ ). +noun( 'toothache', '-', both, _ ). +noun( 'toothbrush', 'toothbrushes', count, _ ). +noun( 'toothpaste', 'toothpastes', both, _ ). +noun( 'toothpick', 'toothpicks', count, _ ). +noun( 'toothpowder', '-', mass, _ ). +noun( 'tootle', 'tootles', count, _ ). +noun( 'top', 'tops', count, _ ). +noun( 'top-boot', 'top-boots', count, _ ). +noun( 'top-dressing', 'top-dressings', both, _ ). +noun( 'topaz', 'topazes', both, _ ). +noun( 'topcoat', 'topcoats', count, _ ). +noun( 'toper', 'topers', count, _ ). +noun( 'topgallant', 'topgallants', count, _ ). +noun( 'topi', 'topis', count, _ ). +noun( 'topiary', '-', mass, _ ). +noun( 'topic', 'topics', count, _ ). +noun( 'topknot', 'topknots', count, _ ). +noun( 'topmast', 'topmasts', count, _ ). +noun( 'topography', '-', mass, _ ). +noun( 'topper', 'toppers', count, _ ). +noun( 'topsail', 'topsails', count, _ ). +noun( 'topsy-turvydom', 'topsy-turvydoms', count, _ ). +noun( 'toque', 'toques', count, _ ). +noun( 'tor', 'tors', count, _ ). +noun( 'torch', 'torches', count, _ ). +noun( 'torch-race', 'torch-races', count, _ ). +noun( 'torch-singer', 'torch-singers', count, _ ). +noun( 'torchlight', '-', mass, _ ). +noun( 'toreador', 'toreadors', count, _ ). +noun( 'torment', 'torments', both, _ ). +noun( 'tormentor', 'tormentors', count, _ ). +noun( 'tornado', 'tornadoes', count, _ ). +noun( 'torpedo', 'torpedoes', count, _ ). +noun( 'torpedo-boat', 'torpedo-boats', count, _ ). +noun( 'torpedo-tube', 'torpedo-tubes', count, _ ). +noun( 'torpidity', '-', mass, _ ). +noun( 'torpidness', '-', mass, _ ). +noun( 'torpor', 'torpors', both, _ ). +noun( 'torque', 'torques', both, _ ). +noun( 'torrent', 'torrents', count, _ ). +noun( 'torridity', '-', mass, _ ). +noun( 'torsion', '-', mass, _ ). +noun( 'torso', 'torsos', count, _ ). +noun( 'tort', 'torts', count, _ ). +noun( 'tortilla', 'tortillas', count, _ ). +noun( 'tortoise', 'tortoises', count, _ ). +noun( 'tortoiseshell', '-', mass, _ ). +noun( 'torture', 'tortures', both, _ ). +noun( 'torturer', 'torturers', count, _ ). +noun( 'tosh', 'toshes', count, _ ). +noun( 'toss', 'tosses', count, _ ). +noun( 'toss-up', 'toss-ups', count, _ ). +noun( 'tot', 'tots', count, _ ). +noun( 'total', 'totals', count, _ ). +noun( 'totalitarianism', '-', mass, _ ). +noun( 'totality', '-', mass, _ ). +noun( 'totalizator', 'totalizators', count, _ ). +noun( 'tote', 'totes', count, _ ). +noun( 'totem', 'totems', count, _ ). +noun( 'totem-pole', 'totem-poles', count, _ ). +noun( 'toucan', 'toucans', count, _ ). +noun( 'touch', 'touches', both, _ ). +noun( 'touchdown', 'touchdowns', count, _ ). +noun( 'touchiness', '-', mass, _ ). +noun( 'touchline', 'touchlines', count, _ ). +noun( 'touchstone', 'touchstones', count, _ ). +noun( 'tough', 'toughs', count, _ ). +noun( 'toughie', 'toughies', count, _ ). +noun( 'toughness', '-', mass, _ ). +noun( 'toupee', 'toupees', count, _ ). +noun( 'tour', 'tours', count, _ ). +noun( 'tour de force', 'tours de force', count, _ ). +noun( 'touring', '-', mass, _ ). +noun( 'tourism', '-', mass, _ ). +noun( 'tourist', 'tourists', count, _ ). +noun( 'tournament', 'tournaments', count, _ ). +noun( 'tourney', 'tourneys', count, _ ). +noun( 'tourniquet', 'tourniquets', count, _ ). +noun( 'tout', 'touts', count, _ ). +noun( 'tout ensemble', '-', count, _ ). +noun( 'tow', 'tows', both, _ ). +noun( 'towel', 'towels', count, _ ). +noun( 'towel-horse', 'towel-horses', count, _ ). +noun( 'towel-rack', 'towel-racks', count, _ ). +noun( 'towel-rail', 'towel-rails', count, _ ). +noun( 'towelling', '-', mass, _ ). +noun( 'tower', 'towers', count, _ ). +noun( 'tower-block', 'tower-blocks', count, _ ). +noun( 'towing-line', 'towing-lines', count, _ ). +noun( 'towing-path', 'towing-paths', count, _ ). +noun( 'towing-rope', 'towing-ropes', count, _ ). +noun( 'towline', 'towlines', count, _ ). +noun( 'town', 'towns', count, _ ). +noun( 'town-crier', 'town-criers', count, _ ). +noun( 'town-gas', '-', mass, _ ). +noun( 'townee', 'townees', count, _ ). +noun( 'township', 'townships', count, _ ). +noun( 'townsman', 'townsmen', count, _ ). +noun( 'towpath', 'towpaths', count, _ ). +noun( 'towrope', 'towropes', count, _ ). +noun( 'toxaemia', '-', mass, _ ). +noun( 'toxicity', '-', mass, _ ). +noun( 'toxicologist', 'toxicologists', count, _ ). +noun( 'toxicology', '-', mass, _ ). +noun( 'toxin', 'toxins', count, _ ). +noun( 'toy', 'toys', count, _ ). +noun( 'toyshop', 'toyshops', count, _ ). +noun( 'trace', 'traces', both, _ ). +noun( 'tracer', 'tracers', count, _ ). +noun( 'tracery', 'traceries', both, _ ). +noun( 'trachea', 'tracheae', count, _ ). +noun( 'trachoma', '-', mass, _ ). +noun( 'tracing', 'tracings', count, _ ). +noun( 'tracing-paper', '-', mass, _ ). +noun( 'track', 'tracks', count, _ ). +noun( 'tracker', 'trackers', count, _ ). +noun( 'tract', 'tracts', count, _ ). +noun( 'tractability', 'tractabilities', both, _ ). +noun( 'traction', '-', mass, _ ). +noun( 'traction-engine', 'traction-engines', count, _ ). +noun( 'tractor', 'tractors', count, _ ). +noun( 'trad', '-', mass, _ ). +noun( 'trade', 'trades', both, _ ). +noun( 'trade-in', 'trade-ins', count, _ ). +noun( 'trade-union', 'trade-unions', count, _ ). +noun( 'trade-unionism', '-', mass, _ ). +noun( 'trade-unionist', 'trade-unionists', count, _ ). +noun( 'trade-wind', 'trade-winds', count, _ ). +noun( 'trademark', 'trademarks', count, _ ). +noun( 'trader', 'traders', count, _ ). +noun( 'trades-union', 'trades-unions', count, _ ). +noun( 'tradesman', 'tradesmen', count, _ ). +noun( 'tradition', 'traditions', both, _ ). +noun( 'traditionalism', '-', mass, _ ). +noun( 'traditionalist', 'traditionalists', count, _ ). +noun( 'traducer', 'traducers', count, _ ). +noun( 'traffic', '-', mass, _ ). +noun( 'trafficator', 'trafficators', count, _ ). +noun( 'trafficker', 'traffickers', count, _ ). +noun( 'tragedian', 'tragedians', count, _ ). +noun( 'tragedienne', 'tragediennes', count, _ ). +noun( 'tragedy', 'tragedies', both, _ ). +noun( 'tragicomedy', 'tragicomedies', count, _ ). +noun( 'trail', 'trails', count, _ ). +noun( 'trailer', 'trailers', count, _ ). +noun( 'train', 'trains', count, _ ). +noun( 'trainbearer', 'trainbearers', count, _ ). +noun( 'trainee', 'trainees', count, _ ). +noun( 'trainer', 'trainers', count, _ ). +noun( 'training', '-', mass, _ ). +noun( 'training-college', 'training-colleges', count, _ ). +noun( 'training-ship', 'training-ships', count, _ ). +noun( 'trainload', 'trainloads', count, _ ). +noun( 'trainman', 'trainmen', count, _ ). +noun( 'trait', 'traits', count, _ ). +noun( 'traitor', 'traitors', count, _ ). +noun( 'traitress', 'traitresses', count, _ ). +noun( 'trajectory', 'trajectories', count, _ ). +noun( 'tram', 'trams', count, _ ). +noun( 'tram-car', 'tram-cars', count, _ ). +noun( 'tramline', 'tramlines', count, _ ). +noun( 'tramp', 'tramps', count, _ ). +noun( 'tramp-steamer', 'tramp-steamers', count, _ ). +noun( 'trample', 'tramples', count, _ ). +noun( 'trampoline', 'trampolines', count, _ ). +noun( 'tramway', 'tramways', count, _ ). +noun( 'trance', 'trances', count, _ ). +noun( 'tranquility', '-', mass, _ ). +noun( 'tranquillity', '-', mass, _ ). +noun( 'tranquillizer', 'tranquillizers', count, _ ). +noun( 'trans', '-', proper, _ ). +noun( 'transaction', 'transactions', both, _ ). +noun( 'transalpine', 'transalpines', count, _ ). +noun( 'transcendence', '-', mass, _ ). +noun( 'transcendency', '-', mass, _ ). +noun( 'transcendentalism', '-', mass, _ ). +noun( 'transcendentalist', 'transcendentalists', count, _ ). +noun( 'transcript', 'transcripts', count, _ ). +noun( 'transcription', 'transcriptions', both, _ ). +noun( 'transept', 'transepts', count, _ ). +noun( 'transfer', 'transfers', both, _ ). +noun( 'transferability', '-', mass, _ ). +noun( 'transference', 'transferences', both, _ ). +noun( 'transfiguration', 'transfigurations', both, _ ). +noun( 'transformation', 'transformations', both, _ ). +noun( 'transformer', 'transformers', count, _ ). +noun( 'transfusion', 'transfusions', both, _ ). +noun( 'transgression', 'transgressions', both, _ ). +noun( 'transgressor', 'transgressors', count, _ ). +noun( 'transience', '-', mass, _ ). +noun( 'transiency', '-', mass, _ ). +noun( 'transient', 'transients', count, _ ). +noun( 'transistor', 'transistors', count, _ ). +noun( 'transit', '-', mass, _ ). +noun( 'transition', 'transitions', both, _ ). +noun( 'translation', 'translations', both, _ ). +noun( 'translator', 'translators', count, _ ). +noun( 'transliteration', 'transliterations', both, _ ). +noun( 'translucence', '-', mass, _ ). +noun( 'translucency', '-', mass, _ ). +noun( 'transmigration', '-', mass, _ ). +noun( 'transmission', 'transmissions', both, _ ). +noun( 'transmitter', 'transmitters', count, _ ). +noun( 'transmogrification', 'transmogrifications', both, _ ). +noun( 'transmutation', 'transmutations', both, _ ). +noun( 'transom', 'transoms', count, _ ). +noun( 'transom-window', 'transom-windows', count, _ ). +noun( 'transparence', '-', mass, _ ). +noun( 'transparency', 'transparencies', both, _ ). +noun( 'transpiration', '-', mass, _ ). +noun( 'transplant', 'transplants', count, _ ). +noun( 'transplantation', 'transplantations', both, _ ). +noun( 'transport', 'transports', both, _ ). +noun( 'transportation', '-', mass, _ ). +noun( 'transporter', 'transporters', count, _ ). +noun( 'transposition', 'transpositions', both, _ ). +noun( 'transsexual', 'transsexuals', count, _ ). +noun( 'transshipment', 'transshipments', count, _ ). +noun( 'transubstantiation', '-', mass, _ ). +noun( 'transvestism', '-', mass, _ ). +noun( 'transvestite', 'transvestites', count, _ ). +noun( 'trap', 'traps', count, _ ). +noun( 'trap-door', 'trap-doors', count, _ ). +noun( 'trap-shooting', '-', mass, _ ). +noun( 'trapeze', 'trapezes', count, _ ). +noun( 'trapezium', 'trapeziums', count, _ ). +noun( 'trapezoid', 'trapezoids', count, _ ). +noun( 'trapper', 'trappers', count, _ ). +noun( 'trash', '-', mass, _ ). +noun( 'trauma', 'traumas', count, _ ). +noun( 'travail', 'travails', both, _ ). +noun( 'travel', 'travels', both, _ ). +noun( 'traveller', 'travellers', count, _ ). +noun( 'travelling', '-', mass, _ ). +noun( 'travelogue', 'travelogues', count, _ ). +noun( 'traverse', 'traverses', count, _ ). +noun( 'travesty', 'travesties', count, _ ). +noun( 'trawl', 'trawls', count, _ ). +noun( 'trawl-net', 'trawl-nets', count, _ ). +noun( 'trawler', 'trawlers', count, _ ). +noun( 'tray', 'trays', count, _ ). +noun( 'tray-cloth', 'tray-cloths', count, _ ). +noun( 'treachery', 'treacheries', both, _ ). +noun( 'treacle', '-', mass, _ ). +noun( 'tread', 'treads', count, _ ). +noun( 'treadle', 'treadles', count, _ ). +noun( 'treadmill', 'treadmills', count, _ ). +noun( 'treas', '-', count, _ ). +noun( 'treason', '-', mass, _ ). +noun( 'treasure', 'treasures', both, _ ). +noun( 'treasure-house', 'treasure-houses', count, _ ). +noun( 'treasure-trove', '-', mass, _ ). +noun( 'treasurer', 'treasurers', count, _ ). +noun( 'treasury', 'treasuries', count, _ ). +noun( 'treat', 'treats', count, _ ). +noun( 'treatise', 'treatises', count, _ ). +noun( 'treatment', 'treatments', both, _ ). +noun( 'treaty', 'treaties', both, _ ). +noun( 'treble', 'trebles', count, _ ). +noun( 'tree', 'trees', count, _ ). +noun( 'tree-fern', 'tree-ferns', count, _ ). +noun( 'trefoil', 'trefoils', count, _ ). +noun( 'trek', 'treks', count, _ ). +noun( 'trellis', 'trellises', count, _ ). +noun( 'tremble', 'trembles', count, _ ). +noun( 'tremolo', 'tremolos', count, _ ). +noun( 'tremor', 'tremors', count, _ ). +noun( 'trench', 'trenches', count, _ ). +noun( 'trenchancy', '-', mass, _ ). +noun( 'trencher', 'trenchers', count, _ ). +noun( 'trencherman', 'trenchermen', count, _ ). +noun( 'trend', 'trends', count, _ ). +noun( 'trend-setter', 'trend-setters', count, _ ). +noun( 'trend-setting', '-', mass, _ ). +noun( 'trephine', 'trephines', count, _ ). +noun( 'trepidation', '-', mass, _ ). +noun( 'trespass', 'trespasses', both, _ ). +noun( 'trespasser', 'trespassers', count, _ ). +noun( 'tress', 'tresses', count, _ ). +noun( 'trestle', 'trestles', count, _ ). +noun( 'trestle-bridge', 'trestle-bridges', count, _ ). +noun( 'trestle-table', 'trestle-tables', count, _ ). +noun( 'triad', 'triads', count, _ ). +noun( 'trial', 'trials', both, _ ). +noun( 'triangle', 'triangles', count, _ ). +noun( 'tribalism', '-', mass, _ ). +noun( 'tribe', 'tribes', count, _ ). +noun( 'tribesman', 'tribesmen', count, _ ). +noun( 'tribulation', 'tribulations', both, _ ). +noun( 'tribunal', 'tribunals', count, _ ). +noun( 'tribune', 'tribunes', count, _ ). +noun( 'tributary', 'tributaries', count, _ ). +noun( 'tribute', 'tributes', both, _ ). +noun( 'trice', 'trices', count, _ ). +noun( 'trick', 'tricks', count, _ ). +noun( 'trickery', '-', mass, _ ). +noun( 'trickiness', '-', mass, _ ). +noun( 'trickle', 'trickles', count, _ ). +noun( 'trickster', 'tricksters', count, _ ). +noun( 'tricolour', 'tricolours', count, _ ). +noun( 'tricycle', 'tricycles', count, _ ). +noun( 'trident', 'tridents', count, _ ). +noun( 'triennial', 'triennials', count, _ ). +noun( 'trier', 'triers', count, _ ). +noun( 'trifle', 'trifles', both, _ ). +noun( 'trifler', 'triflers', count, _ ). +noun( 'trigger', 'triggers', count, _ ). +noun( 'trigonometry', '-', mass, _ ). +noun( 'trilby', 'trilbies', count, _ ). +noun( 'trill', 'trills', count, _ ). +noun( 'trillion', 'trillions', count, _ ). +noun( 'trillionth', 'trillionths', count, _ ). +noun( 'trilogy', 'trilogies', count, _ ). +noun( 'trim', '-', mass, _ ). +noun( 'trimaran', 'trimarans', count, _ ). +noun( 'trimmer', 'trimmers', count, _ ). +noun( 'trimming', 'trimmings', both, _ ). +noun( 'trinitrotoluene', '-', mass, _ ). +noun( 'trinity', 'trinities', count, _ ). +noun( 'trinket', 'trinkets', count, _ ). +noun( 'trio', 'trios', count, _ ). +noun( 'trip', 'trips', count, _ ). +noun( 'tripe', '-', mass, _ ). +noun( 'triplet', 'triplets', count, _ ). +noun( 'triplicate', 'triplicates', count, _ ). +noun( 'tripod', 'tripods', count, _ ). +noun( 'tripos', 'triposes', count, _ ). +noun( 'tripper', 'trippers', count, _ ). +noun( 'triptych', 'triptychs', count, _ ). +noun( 'trireme', 'triremes', count, _ ). +noun( 'triteness', '-', mass, _ ). +noun( 'triumph', 'triumphs', both, _ ). +noun( 'triumvir', 'triumvirs', count, _ ). +noun( 'triumvirate', 'triumvirates', count, _ ). +noun( 'trivet', 'trivets', count, _ ). +noun( 'triviality', 'trivialities', both, _ ). +noun( 'trochee', 'trochees', count, _ ). +noun( 'troglodyte', 'troglodytes', count, _ ). +noun( 'troika', 'troikas', count, _ ). +noun( 'troll', 'trolls', count, _ ). +noun( 'trolley', 'trolleys', count, _ ). +noun( 'trolley-car', 'trolley-cars', count, _ ). +noun( 'trollop', 'trollops', count, _ ). +noun( 'trombone', 'trombones', count, _ ). +noun( 'trombonist', 'trombonists', count, _ ). +noun( 'troop', 'troops', count, _ ). +noun( 'troop-carrier', 'troop-carriers', count, _ ). +noun( 'trooper', 'troopers', count, _ ). +noun( 'troopship', 'troopships', count, _ ). +noun( 'trope', 'tropes', count, _ ). +noun( 'trophy', 'trophies', count, _ ). +noun( 'tropic', 'tropics', count, _ ). +noun( 'trot', 'trots', count, _ ). +noun( 'troth', '-', mass, _ ). +noun( 'trotter', 'trotters', count, _ ). +noun( 'troubadour', 'troubadours', count, _ ). +noun( 'trouble', 'troubles', both, _ ). +noun( 'troublemaker', 'troublemakers', count, _ ). +noun( 'troubleshooter', 'troubleshooters', count, _ ). +noun( 'trough', 'troughs', count, _ ). +noun( 'trouncing', 'trouncings', count, _ ). +noun( 'troupe', 'troupes', count, _ ). +noun( 'trouper', 'troupers', count, _ ). +noun( 'trouser', 'trousers', count, _ ). +noun( 'trousseau', 'trousseaus', count, _ ). +noun( 'trout', 'trout', both, _ ). +noun( 'trove', 'troves', count, _ ). +noun( 'trowel', 'trowels', count, _ ). +noun( 'troy', '-', mass, _ ). +noun( 'truancy', 'truancies', both, _ ). +noun( 'truant', 'truants', count, _ ). +noun( 'truce', 'truces', count, _ ). +noun( 'truck', 'trucks', both, _ ). +noun( 'truckle', 'truckles', count, _ ). +noun( 'truckle-bed', 'truckle-beds', count, _ ). +noun( 'truculence', '-', mass, _ ). +noun( 'truculency', '-', mass, _ ). +noun( 'trudge', 'trudges', count, _ ). +noun( 'true', 'trues', count, _ ). +noun( 'true-blue', 'true-blues', count, _ ). +noun( 'truelove', 'trueloves', count, _ ). +noun( 'truffle', 'truffles', count, _ ). +noun( 'truism', 'truisms', count, _ ). +noun( 'trump', 'trumps', count, _ ). +noun( 'trumpet', 'trumpets', count, _ ). +noun( 'trumpeter', 'trumpeters', count, _ ). +noun( 'truncheon', 'truncheons', count, _ ). +noun( 'trunk', 'trunks', count, _ ). +noun( 'trunk-call', 'trunk-calls', count, _ ). +noun( 'trunk-line', 'trunk-lines', count, _ ). +noun( 'trunk-road', 'trunk-roads', count, _ ). +noun( 'trunking', '-', mass, _ ). +noun( 'truss', 'trusses', count, _ ). +noun( 'trust', 'trusts', both, _ ). +noun( 'trustee', 'trustees', count, _ ). +noun( 'trusteeship', 'trusteeships', count, _ ). +noun( 'trustworthiness', '-', mass, _ ). +noun( 'truth', 'truths', both, _ ). +noun( 'truthfulness', '-', mass, _ ). +noun( 'try', 'tries', count, _ ). +noun( 'try-on', 'try-ons', count, _ ). +noun( 'try-out', 'try-outs', count, _ ). +noun( 'tryst', 'trysts', count, _ ). +noun( 'tsetse', 'tsetses', count, _ ). +noun( 'tsetse-fly', 'tsetse-flies', count, _ ). +noun( 'tub', 'tubs', count, _ ). +noun( 'tub-thumper', 'tub-thumpers', count, _ ). +noun( 'tuba', 'tubas', count, _ ). +noun( 'tube', 'tubes', both, _ ). +noun( 'tube-well', 'tube-wells', count, _ ). +noun( 'tuber', 'tubers', count, _ ). +noun( 'tuberculosis', '-', mass, _ ). +noun( 'tubful', 'tubfuls', count, _ ). +noun( 'tubing', '-', mass, _ ). +noun( 'tuck', 'tucks', both, _ ). +noun( 'tuck-in', 'tuck-ins', count, _ ). +noun( 'tuck-shop', 'tuck-shops', count, _ ). +noun( 'tucker', 'tuckers', count, _ ). +noun( 'tuft', 'tufts', count, _ ). +noun( 'tug', 'tugs', count, _ ). +noun( 'tugboat', 'tugboats', count, _ ). +noun( 'tuition', '-', mass, _ ). +noun( 'tulip', 'tulips', count, _ ). +noun( 'tulle', '-', mass, _ ). +noun( 'tumble', 'tumbles', count, _ ). +noun( 'tumbler', 'tumblers', count, _ ). +noun( 'tumbleweed', '-', mass, _ ). +noun( 'tumbrel', 'tumbrels', count, _ ). +noun( 'tumbril', 'tumbrils', count, _ ). +noun( 'tumescence', 'tumescences', both, _ ). +noun( 'tumidity', '-', mass, _ ). +noun( 'tummy', 'tummies', count, _ ). +noun( 'tumour', 'tumours', count, _ ). +noun( 'tumult', 'tumults', both, _ ). +noun( 'tumulus', 'tumuli', count, _ ). +noun( 'tun', 'tuns', count, _ ). +noun( 'tuna', 'tuna', both, _ ). +noun( 'tundra', 'tundras', both, _ ). +noun( 'tune', 'tunes', both, _ ). +noun( 'tunefulness', '-', mass, _ ). +noun( 'tuner', 'tuners', count, _ ). +noun( 'tung-oil', '-', mass, _ ). +noun( 'tungsten', '-', mass, _ ). +noun( 'tunic', 'tunics', count, _ ). +noun( 'tuning-fork', 'tuning-forks', count, _ ). +noun( 'tunnel', 'tunnels', count, _ ). +noun( 'tunny', 'tunny', count, _ ). +noun( 'tup', 'tups', count, _ ). +noun( 'tuppence', 'tuppences', count, _ ). +noun( 'turban', 'turbans', count, _ ). +noun( 'turbidity', '-', mass, _ ). +noun( 'turbidness', '-', mass, _ ). +noun( 'turbine', 'turbines', count, _ ). +noun( 'turbojet', 'turbojets', count, _ ). +noun( 'turboprop', 'turboprops', count, _ ). +noun( 'turbot', 'turbot', both, _ ). +noun( 'turbulence', 'turbulences', both, _ ). +noun( 'turd', 'turds', count, _ ). +noun( 'tureen', 'tureens', count, _ ). +noun( 'turf', 'turfs', both, _ ). +noun( 'turgidity', '-', mass, _ ). +noun( 'turkey', 'turkeys', both, _ ). +noun( 'turmeric', '-', mass, _ ). +noun( 'turmoil', 'turmoils', both, _ ). +noun( 'turn', 'turns', count, _ ). +noun( 'turn-off', 'turn-offs', count, _ ). +noun( 'turn-on', 'turn-ons', count, _ ). +noun( 'turn-out', 'turn-outs', count, _ ). +noun( 'turn-round', 'turn-rounds', count, _ ). +noun( 'turn-up', 'turn-ups', count, _ ). +noun( 'turncoat', 'turncoats', count, _ ). +noun( 'turncock', 'turncocks', count, _ ). +noun( 'turner', 'turners', count, _ ). +noun( 'turning', 'turnings', count, _ ). +noun( 'turning-point', 'turning-points', count, _ ). +noun( 'turnip', 'turnips', count, _ ). +noun( 'turnkey', 'turnkeys', count, _ ). +noun( 'turnover', 'turnovers', count, _ ). +noun( 'turnpike', 'turnpikes', count, _ ). +noun( 'turnspit', 'turnspits', count, _ ). +noun( 'turnstile', 'turnstiles', count, _ ). +noun( 'turntable', 'turntables', count, _ ). +noun( 'turpentine', '-', mass, _ ). +noun( 'turpitude', '-', mass, _ ). +noun( 'turps', '-', mass, _ ). +noun( 'turquoise', 'turquoises', both, _ ). +noun( 'turret', 'turrets', count, _ ). +noun( 'turtle', 'turtles', count, _ ). +noun( 'turtledove', 'turtledoves', count, _ ). +noun( 'tusk', 'tusks', count, _ ). +noun( 'tussle', 'tussles', count, _ ). +noun( 'tussock', 'tussocks', count, _ ). +noun( 'tutelage', '-', mass, _ ). +noun( 'tutor', 'tutors', count, _ ). +noun( 'tutorial', 'tutorials', count, _ ). +noun( 'tutorship', 'tutorships', count, _ ). +noun( 'tutti-frutti', 'tutti-fruttis', both, _ ). +noun( 'tutu', 'tutus', count, _ ). +noun( 'tuxedo', 'tuxedos', count, _ ). +noun( 'twaddle', '-', mass, _ ). +noun( 'twain', 'twains', count, _ ). +noun( 'twang', 'twangs', count, _ ). +noun( 'tweak', 'tweaks', count, _ ). +noun( 'tweed', 'tweeds', both, _ ). +noun( 'tweet', 'tweets', count, _ ). +noun( 'tweeter', 'tweeters', count, _ ). +noun( 'twelfth', 'twelfths', count, _ ). +noun( 'twelve', 'twelves', count, _ ). +noun( 'twelvemonth', 'twelvemonths', count, _ ). +noun( 'twentieth', 'twentieths', count, _ ). +noun( 'twenty', 'twenties', count, _ ). +noun( 'twerp', 'twerps', count, _ ). +noun( 'twiddle', 'twiddles', count, _ ). +noun( 'twig', 'twigs', count, _ ). +noun( 'twilight', '-', mass, _ ). +noun( 'twill', '-', mass, _ ). +noun( 'twin', 'twins', count, _ ). +noun( 'twine', '-', mass, _ ). +noun( 'twinge', 'twinges', count, _ ). +noun( 'twinkle', '-', mass, _ ). +noun( 'twinkling', '-', count, _ ). +noun( 'twirl', 'twirls', count, _ ). +noun( 'twist', 'twists', both, _ ). +noun( 'twister', 'twisters', count, _ ). +noun( 'twit', 'twits', count, _ ). +noun( 'twitch', 'twitches', count, _ ). +noun( 'twitter', 'twitters', count, _ ). +noun( 'two', 'twos', count, _ ). +noun( 'two-piece', '-', count, _ ). +noun( 'two-seater', 'two-seaters', count, _ ). +noun( 'two-step', 'two-steps', count, _ ). +noun( 'twopence', 'twopences', count, _ ). +noun( 'tycoon', 'tycoons', count, _ ). +noun( 'tyke', 'tykes', count, _ ). +noun( 'tympanum', 'tympanums', count, _ ). +noun( 'type', 'types', both, _ ). +noun( 'typeface', 'typefaces', count, _ ). +noun( 'typescript', 'typescripts', count, _ ). +noun( 'typesetter', 'typesetters', count, _ ). +noun( 'typewriter', 'typewriters', count, _ ). +noun( 'typhoid', '-', mass, _ ). +noun( 'typhoon', 'typhoons', count, _ ). +noun( 'typhus', '-', mass, _ ). +noun( 'typist', 'typists', count, _ ). +noun( 'typographer', 'typographers', count, _ ). +noun( 'typography', '-', mass, _ ). +noun( 'tyranny', 'tyrannies', both, _ ). +noun( 'tyrant', 'tyrants', count, _ ). +noun( 'tyre', 'tyres', count, _ ). +noun( 'tyro', 'tyros', count, _ ). +noun( 'tzar', 'tzars', count, _ ). +noun( 'tzarina', 'tzarinas', count, _ ). +noun( 'u', '-', count, _ ). +noun( 'ubiquity', '-', mass, _ ). +noun( 'udder', 'udders', count, _ ). +noun( 'ugliness', '-', mass, _ ). +noun( 'ukase', 'ukases', count, _ ). +noun( 'ukulele', 'ukuleles', count, _ ). +noun( 'ulcer', 'ulcers', count, _ ). +noun( 'ulceration', 'ulcerations', count, _ ). +noun( 'ulna', 'ulnae', count, _ ). +noun( 'ulster', 'ulsters', count, _ ). +noun( 'ultimatum', 'ultimatums', count, _ ). +noun( 'ultramarine', 'ultramarines', count, _ ). +noun( 'ululation', 'ululations', count, _ ). +noun( 'umber', 'umbers', count, _ ). +noun( 'umbrage', '-', mass, _ ). +noun( 'umbrella', 'umbrellas', count, _ ). +noun( 'umlaut', 'umlauts', count, _ ). +noun( 'umpire', 'umpires', count, _ ). +noun( 'unanimity', '-', mass, _ ). +noun( 'unbelief', '-', mass, _ ). +noun( 'unbeliever', 'unbelievers', count, _ ). +noun( 'unceremoniousness', '-', mass, _ ). +noun( 'uncertainty', 'uncertainties', both, _ ). +noun( 'uncle', 'uncles', count, _ ). +noun( 'unconcern', '-', mass, _ ). +noun( 'unconscious', 'unconsciouses', count, _ ). +noun( 'unconsciousness', '-', mass, _ ). +noun( 'unconventionality', '-', mass, _ ). +noun( 'uncouthness', '-', mass, _ ). +noun( 'unction', '-', mass, _ ). +noun( 'underbelly', 'underbellies', count, _ ). +noun( 'underbrush', '-', mass, _ ). +noun( 'undercarriage', 'undercarriages', count, _ ). +noun( 'undercharge', 'undercharges', count, _ ). +noun( 'underclothing', '-', mass, _ ). +noun( 'undercoat', 'undercoats', count, _ ). +noun( 'undercurrent', 'undercurrents', count, _ ). +noun( 'undercut', '-', mass, _ ). +noun( 'underdevelopment', '-', mass, _ ). +noun( 'underdog', 'underdogs', count, _ ). +noun( 'underestimate', 'underestimates', count, _ ). +noun( 'underestimation', 'underestimations', both, _ ). +noun( 'underexposure', 'underexposures', count, _ ). +noun( 'underfelt', '-', mass, _ ). +noun( 'undergarment', 'undergarments', count, _ ). +noun( 'undergraduate', 'undergraduates', count, _ ). +noun( 'underground', 'undergrounds', count, _ ). +noun( 'undergrowth', '-', mass, _ ). +noun( 'underlay', '-', mass, _ ). +noun( 'underline', 'underlines', count, _ ). +noun( 'underling', 'underlings', count, _ ). +noun( 'undernourishment', '-', mass, _ ). +noun( 'underpass', 'underpasses', count, _ ). +noun( 'underpayment', 'underpayments', both, _ ). +noun( 'underproduction', '-', mass, _ ). +noun( 'underseal', '-', mass, _ ). +noun( 'undersecretary', 'undersecretaries', count, _ ). +noun( 'underside', 'undersides', count, _ ). +noun( 'underskirt', 'underskirts', count, _ ). +noun( 'understanding', 'understandings', both, _ ). +noun( 'understatement', 'understatements', both, _ ). +noun( 'understudy', 'understudies', count, _ ). +noun( 'undersurface', 'undersurfaces', count, _ ). +noun( 'undertaker', 'undertakers', count, _ ). +noun( 'undertaking', 'undertakings', both, _ ). +noun( 'undertaking', 'undertakings', count, _ ). +noun( 'undertone', 'undertones', count, _ ). +noun( 'undertow', 'undertows', count, _ ). +noun( 'undervaluation', 'undervaluations', both, _ ). +noun( 'underwear', '-', mass, _ ). +noun( 'underworld', 'underworlds', count, _ ). +noun( 'underwriter', 'underwriters', count, _ ). +noun( 'undesirable', 'undesirables', count, _ ). +noun( 'undoing', 'undoings', count, _ ). +noun( 'undress', '-', mass, _ ). +noun( 'undulation', 'undulations', both, _ ). +noun( 'unease', '-', mass, _ ). +noun( 'uneasiness', '-', mass, _ ). +noun( 'unemployment', '-', mass, _ ). +noun( 'unexpectedness', '-', mass, _ ). +noun( 'unfairness', '-', mass, _ ). +noun( 'unfaithfulness', '-', mass, _ ). +noun( 'unfamiliarity', '-', mass, _ ). +noun( 'unfortunate', 'unfortunates', count, _ ). +noun( 'unfriendliness', '-', mass, _ ). +noun( 'ungratefulness', '-', mass, _ ). +noun( 'unguent', 'unguents', both, _ ). +noun( 'unhappiness', '-', mass, _ ). +noun( 'unicorn', 'unicorns', count, _ ). +noun( 'unification', '-', mass, _ ). +noun( 'uniform', 'uniforms', both, _ ). +noun( 'uniformity', '-', mass, _ ). +noun( 'unilateralism', '-', mass, _ ). +noun( 'unilateralist', 'unilateralists', count, _ ). +noun( 'union', 'unions', both, _ ). +noun( 'unionist', 'unionists', count, _ ). +noun( 'uniqueness', '-', mass, _ ). +noun( 'unison', '-', mass, _ ). +noun( 'unit', 'units', count, _ ). +noun( 'unity', 'unities', both, _ ). +noun( 'universality', '-', mass, _ ). +noun( 'universe', 'universes', count, _ ). +noun( 'university', 'universities', count, _ ). +noun( 'unknown', 'unknowns', count, _ ). +noun( 'unpleasantness', 'unpleasantnesses', both, _ ). +noun( 'unpopularity', '-', mass, _ ). +noun( 'unpredictability', '-', mass, _ ). +noun( 'unreality', '-', mass, _ ). +noun( 'unrest', '-', mass, _ ). +noun( 'unseen', 'unseens', count, _ ). +noun( 'unselfishness', '-', mass, _ ). +noun( 'unsightliness', '-', mass, _ ). +noun( 'unsuitability', '-', mass, _ ). +noun( 'untidiness', '-', mass, _ ). +noun( 'untouchable', 'untouchables', count, _ ). +noun( 'untruth', 'untruths', both, _ ). +noun( 'unwieldiness', '-', mass, _ ). +noun( 'unwillingness', '-', mass, _ ). +noun( 'unworthiness', '-', mass, _ ). +noun( 'up-beat', 'up-beats', count, _ ). +noun( 'upbraiding', 'upbraidings', count, _ ). +noun( 'upbringing', '-', mass, _ ). +noun( 'upgrade', 'upgrades', count, _ ). +noun( 'upheaval', 'upheavals', count, _ ). +noun( 'upholsterer', 'upholsterers', count, _ ). +noun( 'upholstery', '-', mass, _ ). +noun( 'upkeep', '-', mass, _ ). +noun( 'upland', 'uplands', count, _ ). +noun( 'uplift', '-', mass, _ ). +noun( 'upper', 'uppers', count, _ ). +noun( 'uppercut', 'uppercuts', count, _ ). +noun( 'uppishness', '-', mass, _ ). +noun( 'upright', 'uprights', count, _ ). +noun( 'uprightness', '-', mass, _ ). +noun( 'uprising', 'uprisings', count, _ ). +noun( 'uproar', 'uproars', both, _ ). +noun( 'upset', 'upsets', count, _ ). +noun( 'upshot', 'upshots', count, _ ). +noun( 'upstart', 'upstarts', count, _ ). +noun( 'upsurge', 'upsurges', count, _ ). +noun( 'uptake', 'uptakes', both, _ ). +noun( 'upturn', 'upturns', count, _ ). +noun( 'uranium', '-', mass, _ ). +noun( 'urbanity', '-', mass, _ ). +noun( 'urbanization', '-', mass, _ ). +noun( 'urchin', 'urchins', count, _ ). +noun( 'urge', 'urges', both, _ ). +noun( 'urgency', '-', mass, _ ). +noun( 'urging', 'urgings', count, _ ). +noun( 'urinal', 'urinals', count, _ ). +noun( 'urine', '-', mass, _ ). +noun( 'urn', 'urns', count, _ ). +noun( 'usage', 'usages', both, _ ). +noun( 'use', 'uses', both, _ ). +noun( 'usefulness', '-', mass, _ ). +noun( 'uselessness', '-', mass, _ ). +noun( 'user', 'users', count, _ ). +noun( 'usher', 'ushers', count, _ ). +noun( 'usherette', 'usherettes', count, _ ). +noun( 'usurer', 'usurers', count, _ ). +noun( 'usurpation', 'usurpations', both, _ ). +noun( 'usurper', 'usurpers', count, _ ). +noun( 'usury', '-', mass, _ ). +noun( 'utensil', 'utensils', count, _ ). +noun( 'uterus', 'uteruses', count, _ ). +noun( 'utilitarian', 'utilitarians', count, _ ). +noun( 'utilitarianism', '-', mass, _ ). +noun( 'utility', 'utilities', both, _ ). +noun( 'utilization', '-', mass, _ ). +noun( 'utmost', 'utmosts', count, _ ). +noun( 'utterance', 'utterances', both, _ ). +noun( 'uttermost', 'uttermosts', count, _ ). +noun( 'uvula', 'uvulas', count, _ ). +noun( 'uxoriousness', '-', mass, _ ). +noun( 'v', '-', count, _ ). +noun( 'vac', 'vacs', count, _ ). +noun( 'vacancy', 'vacancies', both, _ ). +noun( 'vacation', 'vacations', both, _ ). +noun( 'vacationist', 'vacationists', count, _ ). +noun( 'vaccination', 'vaccinations', both, _ ). +noun( 'vaccine', 'vaccines', both, _ ). +noun( 'vacillation', 'vacillations', both, _ ). +noun( 'vacuity', 'vacuities', both, _ ). +noun( 'vacuum', 'vacuums', count, _ ). +noun( 'vade-mecum', 'vade-mecums', count, _ ). +noun( 'vagabond', 'vagabonds', count, _ ). +noun( 'vagary', 'vagaries', count, _ ). +noun( 'vagina', 'vaginas', count, _ ). +noun( 'vagrancy', '-', mass, _ ). +noun( 'vagrant', 'vagrants', count, _ ). +noun( 'vagueness', '-', mass, _ ). +noun( 'vainglory', '-', mass, _ ). +noun( 'valance', 'valances', count, _ ). +noun( 'vale', 'vales', count, _ ). +noun( 'valediction', 'valedictions', count, _ ). +noun( 'valence', 'valences', count, _ ). +noun( 'valence', 'valences', both, _ ). +noun( 'valency', 'valencies', count, _ ). +noun( 'valentine', 'valentines', count, _ ). +noun( 'valerian', '-', mass, _ ). +noun( 'valet', 'valets', count, _ ). +noun( 'valetudinarian', 'valetudinarians', count, _ ). +noun( 'validity', '-', mass, _ ). +noun( 'valise', 'valises', count, _ ). +noun( 'valley', 'valleys', count, _ ). +noun( 'valour', '-', mass, _ ). +noun( 'valuable', 'valuables', count, _ ). +noun( 'valuation', 'valuations', both, _ ). +noun( 'value', 'values', both, _ ). +noun( 'valuer', 'valuers', count, _ ). +noun( 'valve', 'valves', count, _ ). +noun( 'vamp', 'vamps', count, _ ). +noun( 'vampire', 'vampires', count, _ ). +noun( 'van', 'vans', count, _ ). +noun( 'vandal', 'vandals', count, _ ). +noun( 'vandalism', '-', mass, _ ). +noun( 'vane', 'vanes', count, _ ). +noun( 'vanguard', 'vanguards', count, _ ). +noun( 'vanilla', 'vanillas', both, _ ). +noun( 'vanity', 'vanities', both, _ ). +noun( 'vantage', 'vantages', both, _ ). +noun( 'vantage-point', 'vantage-points', count, _ ). +noun( 'vapidity', '-', mass, _ ). +noun( 'vapidness', '-', mass, _ ). +noun( 'vaporization', 'vaporizations', both, _ ). +noun( 'vapour', 'vapours', both, _ ). +noun( 'vapour-bath', 'vapour-baths', count, _ ). +noun( 'variability', '-', mass, _ ). +noun( 'variable', 'variables', count, _ ). +noun( 'variableness', '-', mass, _ ). +noun( 'variance', 'variances', both, _ ). +noun( 'variant', 'variants', count, _ ). +noun( 'variation', 'variations', both, _ ). +noun( 'variegation', 'variegations', both, _ ). +noun( 'variety', 'varieties', both, _ ). +noun( 'varlet', 'varlets', count, _ ). +noun( 'varnish', 'varnishes', both, _ ). +noun( 'varsity', 'varsities', count, _ ). +noun( 'vase', 'vases', count, _ ). +noun( 'vasectomy', 'vasectomies', count, _ ). +noun( 'vaseline', '-', mass, _ ). +noun( 'vassal', 'vassals', count, _ ). +noun( 'vassalage', '-', mass, _ ). +noun( 'vastness', '-', mass, _ ). +noun( 'vat', 'vats', count, _ ). +noun( 'vaudeville', '-', mass, _ ). +noun( 'vault', 'vaults', count, _ ). +noun( 'vaulter', 'vaulters', count, _ ). +noun( 'vaulting-horse', 'vaulting-horses', count, _ ). +noun( 'vaunt', 'vaunts', count, _ ). +noun( 'vaunter', 'vaunters', count, _ ). +noun( 'veal', '-', mass, _ ). +noun( 'vector', 'vectors', count, _ ). +noun( 'vegetable', 'vegetables', count, _ ). +noun( 'vegetarian', 'vegetarians', count, _ ). +noun( 'vegetation', '-', mass, _ ). +noun( 'vehemence', '-', mass, _ ). +noun( 'vehicle', 'vehicles', count, _ ). +noun( 'veil', 'veils', count, _ ). +noun( 'veiling', '-', mass, _ ). +noun( 'vein', 'veins', count, _ ). +noun( 'veld', '-', mass, _ ). +noun( 'vellum', '-', mass, _ ). +noun( 'velocipede', 'velocipedes', count, _ ). +noun( 'velocity', 'velocities', both, _ ). +noun( 'velour', '-', mass, _ ). +noun( 'velvet', '-', mass, _ ). +noun( 'velveteen', '-', mass, _ ). +noun( 'venality', '-', mass, _ ). +noun( 'vendee', 'vendees', count, _ ). +noun( 'vender', 'venders', count, _ ). +noun( 'vendetta', 'vendettas', count, _ ). +noun( 'vendor', 'vendors', count, _ ). +noun( 'veneer', 'veneers', both, _ ). +noun( 'veneration', 'venerations', both, _ ). +noun( 'vengeance', '-', mass, _ ). +noun( 'venison', '-', mass, _ ). +noun( 'venom', '-', mass, _ ). +noun( 'vent', 'vents', count, _ ). +noun( 'vent-hole', 'vent-holes', count, _ ). +noun( 'ventilation', '-', mass, _ ). +noun( 'ventilator', 'ventilators', count, _ ). +noun( 'ventricle', 'ventricles', count, _ ). +noun( 'ventriloquism', '-', mass, _ ). +noun( 'ventriloquist', 'ventriloquists', count, _ ). +noun( 'venture', 'ventures', both, _ ). +noun( 'venue', 'venues', count, _ ). +noun( 'veracity', '-', mass, _ ). +noun( 'veranda', 'verandas', count, _ ). +noun( 'verandah', 'verandahs', count, _ ). +noun( 'verb', 'verbs', count, _ ). +noun( 'verbena', 'verbenas', count, _ ). +noun( 'verbiage', '-', mass, _ ). +noun( 'verboseness', '-', mass, _ ). +noun( 'verbosity', '-', mass, _ ). +noun( 'verdancy', '-', mass, _ ). +noun( 'verdict', 'verdicts', count, _ ). +noun( 'verdigris', '-', mass, _ ). +noun( 'verdure', '-', mass, _ ). +noun( 'verge', 'verges', count, _ ). +noun( 'verger', 'vergers', count, _ ). +noun( 'verification', 'verifications', both, _ ). +noun( 'verisimilitude', 'verisimilitudes', both, _ ). +noun( 'verity', 'verities', both, _ ). +noun( 'vermicelli', '-', mass, _ ). +noun( 'vermilion', 'vermilions', both, _ ). +noun( 'vermin', '-', mass, _ ). +noun( 'vermouth', 'vermouths', both, _ ). +noun( 'vernacular', 'vernaculars', count, _ ). +noun( 'veronica', 'veronicas', count, _ ). +noun( 'verruca', 'verrucas', count, _ ). +noun( 'versatility', '-', mass, _ ). +noun( 'verse', 'verses', both, _ ). +noun( 'versification', '-', mass, _ ). +noun( 'versifier', 'versifiers', count, _ ). +noun( 'version', 'versions', count, _ ). +noun( 'verso', 'versos', count, _ ). +noun( 'vertebra', 'vertebrae', count, _ ). +noun( 'vertebrate', 'vertebrates', count, _ ). +noun( 'vertex', 'vertices', count, _ ). +noun( 'vertical', 'verticals', count, _ ). +noun( 'vertigo', '-', mass, _ ). +noun( 'verve', '-', mass, _ ). +noun( 'vesicle', 'vesicles', count, _ ). +noun( 'vessel', 'vessels', count, _ ). +noun( 'vest', 'vests', count, _ ). +noun( 'vestal', 'vestals', count, _ ). +noun( 'vestibule', 'vestibules', count, _ ). +noun( 'vestige', 'vestiges', both, _ ). +noun( 'vestment', 'vestments', count, _ ). +noun( 'vestry', 'vestries', count, _ ). +noun( 'vestryman', 'vestrymen', count, _ ). +noun( 'vesture', 'vestures', count, _ ). +noun( 'vet', 'vets', count, _ ). +noun( 'vetch', 'vetches', both, _ ). +noun( 'veteran', 'veterans', count, _ ). +noun( 'veto', 'vetoes', count, _ ). +noun( 'vexation', 'vexations', both, _ ). +noun( 'via media', '-', count, _ ). +noun( 'viability', '-', mass, _ ). +noun( 'viaduct', 'viaducts', count, _ ). +noun( 'vial', 'vials', count, _ ). +noun( 'vibraphone', 'vibraphones', count, _ ). +noun( 'vibration', 'vibrations', both, _ ). +noun( 'vibrato', 'vibratos', both, _ ). +noun( 'vibrator', 'vibrators', count, _ ). +noun( 'vicar', 'vicars', count, _ ). +noun( 'vicarage', 'vicarages', count, _ ). +noun( 'vice', 'vices', both, _ ). +noun( 'vicereine', 'vicereines', count, _ ). +noun( 'viceroy', 'viceroys', count, _ ). +noun( 'vicinity', 'vicinities', both, _ ). +noun( 'viciousness', '-', mass, _ ). +noun( 'vicissitude', 'vicissitudes', count, _ ). +noun( 'victim', 'victims', count, _ ). +noun( 'victimization', 'victimizations', both, _ ). +noun( 'victor', 'victors', count, _ ). +noun( 'victoria', 'victorias', count, _ ). +noun( 'victory', 'victories', both, _ ). +noun( 'victual', 'victuals', count, _ ). +noun( 'victualler', 'victuallers', count, _ ). +noun( 'vicu~na', 'vicu~nas', count, _ ). +noun( 'video', 'videos', count, _ ). +noun( 'videotape', '-', mass, _ ). +noun( 'view', 'views', both, _ ). +noun( 'viewer', 'viewers', count, _ ). +noun( 'viewfinder', 'viewfinders', count, _ ). +noun( 'viewpoint', 'viewpoints', count, _ ). +noun( 'vigil', 'vigils', both, _ ). +noun( 'vigilance', '-', mass, _ ). +noun( 'vigilante', 'vigilantes', count, _ ). +noun( 'vignette', 'vignettes', count, _ ). +noun( 'vigour', '-', mass, _ ). +noun( 'vileness', '-', mass, _ ). +noun( 'vilification', 'vilifications', both, _ ). +noun( 'villa', 'villas', count, _ ). +noun( 'village', 'villages', count, _ ). +noun( 'villager', 'villagers', count, _ ). +noun( 'villain', 'villains', count, _ ). +noun( 'villainess', 'villainesss', count, _ ). +noun( 'villainy', 'villainies', both, _ ). +noun( 'villein', 'villeins', count, _ ). +noun( 'villeinage', '-', mass, _ ). +noun( 'vim', '-', mass, _ ). +noun( 'vinaigrette', '-', mass, _ ). +noun( 'vindication', 'vindications', both, _ ). +noun( 'vindictiveness', '-', mass, _ ). +noun( 'vine', 'vines', count, _ ). +noun( 'vinegar', 'vinegars', both, _ ). +noun( 'vinery', 'vineries', count, _ ). +noun( 'vineyard', 'vineyards', count, _ ). +noun( 'vino', 'vinoes', both, _ ). +noun( 'vintage', 'vintages', both, _ ). +noun( 'vintner', 'vintners', count, _ ). +noun( 'vinyl', 'vinyls', both, _ ). +noun( 'viol', 'viols', count, _ ). +noun( 'viola', 'violas', count, _ ). +noun( 'viola', 'violas', count, _ ). +noun( 'violation', 'violations', both, _ ). +noun( 'violence', '-', mass, _ ). +noun( 'violet', 'violets', both, _ ). +noun( 'violin', 'violins', count, _ ). +noun( 'violinist', 'violinists', count, _ ). +noun( 'viper', 'vipers', count, _ ). +noun( 'virago', 'viragos', count, _ ). +noun( 'virgin', 'virgins', count, _ ). +noun( 'virginal', 'virginals', count, _ ). +noun( 'virginity', '-', mass, _ ). +noun( 'virgule', 'virgules', count, _ ). +noun( 'virility', '-', mass, _ ). +noun( 'virology', '-', mass, _ ). +noun( 'virtu', '-', mass, _ ). +noun( 'virtue', 'virtues', both, _ ). +noun( 'virtuosity', '-', mass, _ ). +noun( 'virtuoso', 'virtuosos', count, _ ). +noun( 'virulence', '-', mass, _ ). +noun( 'virus', 'viruses', count, _ ). +noun( 'visa', 'visas', count, _ ). +noun( 'visage', 'visages', count, _ ). +noun( 'viscosity', '-', mass, _ ). +noun( 'viscount', 'viscounts', count, _ ). +noun( 'viscountcy', 'viscountcies', count, _ ). +noun( 'viscountess', 'viscountesses', count, _ ). +noun( 'visibility', '-', mass, _ ). +noun( 'vision', 'visions', both, _ ). +noun( 'visionary', 'visionaries', count, _ ). +noun( 'visit', 'visits', count, _ ). +noun( 'visitant', 'visitants', count, _ ). +noun( 'visitation', 'visitations', count, _ ). +noun( 'visiting', '-', mass, _ ). +noun( 'visitor', 'visitors', count, _ ). +noun( 'visor', 'visors', count, _ ). +noun( 'vista', 'vistas', count, _ ). +noun( 'visualization', 'visualizations', both, _ ). +noun( 'vitalism', '-', mass, _ ). +noun( 'vitalist', 'vitalists', count, _ ). +noun( 'vitality', '-', mass, _ ). +noun( 'vitamin', 'vitamins', count, _ ). +noun( 'vitriol', '-', mass, _ ). +noun( 'vituperation', '-', mass, _ ). +noun( 'viva', 'vivas', count, _ ). +noun( 'viva voce', 'viva voces', count, _ ). +noun( 'vivacity', '-', mass, _ ). +noun( 'vividness', '-', mass, _ ). +noun( 'vivisection', 'vivisections', both, _ ). +noun( 'vivisectionist', 'vivisectionists', count, _ ). +noun( 'vixen', 'vixens', count, _ ). +noun( 'viz', '-', proper, _ ). +noun( 'vizier', 'viziers', count, _ ). +noun( 'vocabulary', 'vocabularies', both, _ ). +noun( 'vocalist', 'vocalists', count, _ ). +noun( 'vocation', 'vocations', both, _ ). +noun( 'vocative', 'vocatives', count, _ ). +noun( 'vociferation', '-', mass, _ ). +noun( 'vodka', 'vodkas', both, _ ). +noun( 'vogue', 'vogues', count, _ ). +noun( 'voice', 'voices', both, _ ). +noun( 'void', 'voids', count, _ ). +noun( 'voile', '-', mass, _ ). +noun( 'vol', '-', count, _ ). +noun( 'volatility', 'volatilities', both, _ ). +noun( 'volcano', 'volcanos', count, _ ). +noun( 'vole', 'voles', count, _ ). +noun( 'volition', '-', mass, _ ). +noun( 'volley', 'volleys', count, _ ). +noun( 'volleyball', 'volleyballs', both, _ ). +noun( '-', 'vols', count, _ ). +noun( 'volt', 'volts', count, _ ). +noun( 'voltage', 'voltages', both, _ ). +noun( 'volte-face', '-', count, _ ). +noun( 'volubility', '-', mass, _ ). +noun( 'volume', 'volumes', both, _ ). +noun( 'voluntary', 'voluntaries', count, _ ). +noun( 'volunteer', 'volunteers', count, _ ). +noun( 'voluptuary', 'voluptuaries', count, _ ). +noun( 'voluptuousness', '-', mass, _ ). +noun( 'volute', 'volutes', count, _ ). +noun( 'vomit', '-', mass, _ ). +noun( 'voodoo', '-', mass, _ ). +noun( 'voodooism', '-', mass, _ ). +noun( 'voracity', '-', mass, _ ). +noun( 'vortex', 'vortexes', count, _ ). +noun( 'votary', 'votaries', count, _ ). +noun( 'vote', 'votes', count, _ ). +noun( 'voter', 'voters', count, _ ). +noun( 'voucher', 'vouchers', count, _ ). +noun( 'vow', 'vows', count, _ ). +noun( 'vowel', 'vowels', count, _ ). +noun( 'vox', '-', count, _ ). +noun( 'vox populi', '-', count, _ ). +noun( 'voyage', 'voyages', count, _ ). +noun( 'voyager', 'voyagers', count, _ ). +noun( 'voyeur', 'voyeurs', count, _ ). +noun( 'voyeurism', '-', mass, _ ). +noun( 'vs', '-', proper, _ ). +noun( 'vulcanite', '-', mass, _ ). +noun( 'vulcanization', 'vulcanizations', both, _ ). +noun( 'vulgarian', 'vulgarians', count, _ ). +noun( 'vulgarism', 'vulgarisms', both, _ ). +noun( 'vulgarity', 'vulgarities', both, _ ). +noun( 'vulgarization', '-', mass, _ ). +noun( 'vulnerability', 'vulnerabilities', both, _ ). +noun( 'vulture', 'vultures', count, _ ). +noun( 'vulva', 'vulvas', count, _ ). +noun( 'w', '-', count, _ ). +noun( 'wad', 'wads', count, _ ). +noun( 'wadding', '-', mass, _ ). +noun( 'waddle', '-', count, _ ). +noun( 'wader', 'waders', count, _ ). +noun( 'wadi', 'wadis', count, _ ). +noun( 'wafer', 'wafers', count, _ ). +noun( 'waffle', 'waffles', both, _ ). +noun( 'waft', 'wafts', count, _ ). +noun( 'wag', 'wags', count, _ ). +noun( 'wage', 'wages', count, _ ). +noun( 'wage-claim', 'wage-claims', count, _ ). +noun( 'wage-earner', 'wage-earners', count, _ ). +noun( 'wage-freeze', 'wage-freezes', count, _ ). +noun( 'wager', 'wagers', count, _ ). +noun( 'waggery', 'waggeries', both, _ ). +noun( 'waggishness', '-', mass, _ ). +noun( 'waggon', 'waggons', count, _ ). +noun( 'waggoner', 'waggoners', count, _ ). +noun( 'wagon-lit', 'wagons-lits', count, _ ). +noun( 'wagtail', 'wagtails', count, _ ). +noun( 'waif', 'waifs', count, _ ). +noun( 'wail', 'wails', count, _ ). +noun( 'wain', 'wains', count, _ ). +noun( 'wainscot', 'wainscots', count, _ ). +noun( 'waist', 'waists', count, _ ). +noun( 'waistband', 'waistbands', count, _ ). +noun( 'waistcoat', 'waistcoats', count, _ ). +noun( 'waistline', 'waistlines', count, _ ). +noun( 'wait', 'waits', both, _ ). +noun( 'waiter', 'waiters', count, _ ). +noun( 'waiting-list', 'waiting-lists', count, _ ). +noun( 'waiting-room', 'waiting-rooms', count, _ ). +noun( 'waitress', 'waitresses', count, _ ). +noun( 'waiver', 'waivers', count, _ ). +noun( 'wake', 'wakes', count, _ ). +noun( 'wakefulness', '-', mass, _ ). +noun( 'wale', 'wales', count, _ ). +noun( 'walk', 'walks', count, _ ). +noun( 'walkabout', 'walkabouts', count, _ ). +noun( 'walkaway', 'walkaways', count, _ ). +noun( 'walker', 'walkers', count, _ ). +noun( 'walkie-talkie', 'walkie-talkies', count, _ ). +noun( 'walking', '-', mass, _ ). +noun( 'walkout', 'walkouts', count, _ ). +noun( 'walkover', 'walkovers', count, _ ). +noun( 'wall', 'walls', count, _ ). +noun( 'wall-painting', 'wall-paintings', count, _ ). +noun( 'wallaby', 'wallabies', count, _ ). +noun( 'wallah', 'wallahs', count, _ ). +noun( 'wallet', 'wallets', count, _ ). +noun( 'wallflower', 'wallflowers', count, _ ). +noun( 'wallop', 'wallops', count, _ ). +noun( 'wallow', 'wallows', count, _ ). +noun( 'wallpaper', '-', mass, _ ). +noun( 'walnut', 'walnuts', both, _ ). +noun( 'walrus', 'walruses', count, _ ). +noun( 'waltz', 'waltzes', count, _ ). +noun( 'wampum', '-', mass, _ ). +noun( 'wand', 'wands', count, _ ). +noun( 'wanderer', 'wanderers', count, _ ). +noun( 'wanderlust', '-', mass, _ ). +noun( 'wane', 'wanes', count, _ ). +noun( 'wangle', 'wangles', count, _ ). +noun( 'wank', 'wanks', count, _ ). +noun( 'wanness', '-', mass, _ ). +noun( 'want', 'wants', both, _ ). +noun( 'want-ad', 'want-ads', count, _ ). +noun( 'wanton', 'wantons', count, _ ). +noun( 'wantonness', '-', mass, _ ). +noun( 'war', 'wars', both, _ ). +noun( 'war-baby', 'war-babies', count, _ ). +noun( 'war-bride', 'war-brides', count, _ ). +noun( 'war-cloud', 'war-clouds', count, _ ). +noun( 'war-cry', 'war-cries', count, _ ). +noun( 'war-dance', 'war-dances', count, _ ). +noun( 'war-god', 'war-gods', count, _ ). +noun( 'war-widow', 'war-widows', count, _ ). +noun( 'warble', 'warbles', count, _ ). +noun( 'warbler', 'warblers', count, _ ). +noun( 'ward', 'wards', both, _ ). +noun( 'warden', 'wardens', count, _ ). +noun( 'warder', 'warders', count, _ ). +noun( 'wardress', 'wardresses', count, _ ). +noun( 'wardrobe', 'wardrobes', count, _ ). +noun( 'wardroom', 'wardrooms', count, _ ). +noun( 'ware', 'wares', count, _ ). +noun( 'warehouse', 'warehouses', count, _ ). +noun( 'warehousing', '-', mass, _ ). +noun( 'warfare', '-', mass, _ ). +noun( 'warhead', 'warheads', count, _ ). +noun( 'warhorse', 'warhorses', count, _ ). +noun( 'wariness', '-', mass, _ ). +noun( 'warlord', 'warlords', count, _ ). +noun( 'warmer', 'warmers', count, _ ). +noun( 'warming-pan', 'warming-pans', count, _ ). +noun( 'warmonger', 'warmongers', count, _ ). +noun( 'warmth', '-', mass, _ ). +noun( 'warning', 'warnings', both, _ ). +noun( 'warp', 'warps', count, _ ). +noun( 'warpaint', '-', mass, _ ). +noun( 'warpath', 'warpaths', count, _ ). +noun( 'warrant', 'warrants', both, _ ). +noun( 'warrantee', 'warrantees', count, _ ). +noun( 'warrantor', 'warrantors', count, _ ). +noun( 'warranty', 'warranties', count, _ ). +noun( 'warren', 'warrens', count, _ ). +noun( 'warrior', 'warriors', count, _ ). +noun( 'warship', 'warships', count, _ ). +noun( 'wart', 'warts', count, _ ). +noun( 'warthog', 'warthogs', count, _ ). +noun( 'wartime', '-', mass, _ ). +noun( 'wash', 'washes', both, _ ). +noun( 'wash-drawing', 'wash-drawings', count, _ ). +noun( 'wash-hand-basin', 'wash-hand-basins', count, _ ). +noun( 'wash-hand-stand', 'wash-hand-stands', count, _ ). +noun( 'wash-house', 'wash-houses', count, _ ). +noun( 'wash-leather', 'wash-leathers', both, _ ). +noun( 'washbasin', 'washbasins', count, _ ). +noun( 'washboard', 'washboards', count, _ ). +noun( 'washbowl', 'washbowls', count, _ ). +noun( 'washcloth', 'washcloths', count, _ ). +noun( 'washday', 'washdays', count, _ ). +noun( 'washer', 'washers', count, _ ). +noun( 'washerwoman', 'washerwomen', count, _ ). +noun( 'washing', '-', mass, _ ). +noun( 'washing-day', 'washing-days', count, _ ). +noun( 'washing-machine', 'washing-machines', count, _ ). +noun( 'washing-up', 'washing-ups', both, _ ). +noun( 'washout', 'washouts', count, _ ). +noun( 'washroom', 'washrooms', count, _ ). +noun( 'washstand', 'washstands', count, _ ). +noun( 'washtub', 'washtubs', count, _ ). +noun( 'wasp', 'wasps', count, _ ). +noun( 'wassail', 'wassails', count, _ ). +noun( 'wastage', '-', mass, _ ). +noun( 'waste', 'wastes', both, _ ). +noun( 'waste-paper-basket', 'waste-paper-baskets', count, _ ). +noun( 'waste-pipe', 'waste-pipes', count, _ ). +noun( 'wastebasket', 'wastebaskets', count, _ ). +noun( 'wastebin', 'wastebins', count, _ ). +noun( 'wasteland', 'wastelands', count, _ ). +noun( 'waster', 'wasters', count, _ ). +noun( 'wastrel', 'wastrels', count, _ ). +noun( 'watch', 'watches', both, _ ). +noun( 'watch-chain', 'watch-chains', count, _ ). +noun( 'watch-glass', 'watch-glasses', count, _ ). +noun( 'watch-guard', 'watch-guards', count, _ ). +noun( 'watch-key', 'watch-keys', count, _ ). +noun( 'watchdog', 'watchdogs', count, _ ). +noun( 'watcher', 'watchers', count, _ ). +noun( 'watchfulness', '-', mass, _ ). +noun( 'watchmaker', 'watchmakers', count, _ ). +noun( 'watchman', 'watchmen', count, _ ). +noun( 'watchtower', 'watchtowers', count, _ ). +noun( 'watchword', 'watchwords', count, _ ). +noun( 'water', 'waters', both, _ ). +noun( 'water-biscuit', 'water-biscuits', count, _ ). +noun( 'water-blister', 'water-blisters', count, _ ). +noun( 'water-bottle', 'water-bottles', count, _ ). +noun( 'water-buffalo', 'water-buffalos', count, _ ). +noun( 'water-butt', 'water-butts', count, _ ). +noun( 'water-cart', 'water-carts', count, _ ). +noun( 'water-closet', 'water-closets', count, _ ). +noun( 'water-finder', 'water-finders', count, _ ). +noun( 'water-glass', '-', mass, _ ). +noun( 'water-hole', 'water-holes', count, _ ). +noun( 'water-ice', 'water-ices', both, _ ). +noun( 'water-jacket', 'water-jackets', count, _ ). +noun( 'water-level', 'water-levels', count, _ ). +noun( 'water-lily', 'water-lilies', count, _ ). +noun( 'water-line', 'water-lines', count, _ ). +noun( 'water-main', 'water-mains', count, _ ). +noun( 'water-nymph', 'water-nymphs', count, _ ). +noun( 'water-polo', '-', mass, _ ). +noun( 'water-power', '-', mass, _ ). +noun( 'water-rat', 'water-rats', count, _ ). +noun( 'water-rate', 'water-rates', count, _ ). +noun( 'water-skiing', '-', mass, _ ). +noun( 'water-skin', 'water-skins', count, _ ). +noun( 'water-softener', 'water-softeners', both, _ ). +noun( 'water-spaniel', 'water-spaniels', count, _ ). +noun( 'water-supply', 'water-supplies', count, _ ). +noun( 'water-tower', 'water-towers', count, _ ). +noun( 'water-vole', 'water-voles', count, _ ). +noun( 'water-waggon', 'water-waggons', count, _ ). +noun( 'water-wagon', 'water-wagons', count, _ ). +noun( 'water-wheel', 'water-wheels', count, _ ). +noun( 'waterbird', 'waterbirds', count, _ ). +noun( 'watercannon', 'watercannons', count, _ ). +noun( 'waterchute', 'waterchutes', count, _ ). +noun( 'watercolour', 'watercolours', both, _ ). +noun( 'watercolourist', 'watercolourists', count, _ ). +noun( 'watercourse', 'watercourses', count, _ ). +noun( 'watercress', '-', mass, _ ). +noun( 'waterfall', 'waterfalls', count, _ ). +noun( 'waterfowl', 'waterfowls', count, _ ). +noun( 'waterfront', 'waterfronts', count, _ ). +noun( 'waterhen', 'waterhens', count, _ ). +noun( 'waterhyacinth', 'waterhyacinths', count, _ ). +noun( 'watering-can', 'watering-cans', count, _ ). +noun( 'watering-cart', 'watering-carts', count, _ ). +noun( 'waterman', 'watermen', count, _ ). +noun( 'watermark', 'watermarks', count, _ ). +noun( 'watermelon', 'watermelons', count, _ ). +noun( 'watermill', 'watermills', count, _ ). +noun( 'waterproof', 'waterproofs', count, _ ). +noun( 'watershed', 'watersheds', count, _ ). +noun( 'waterside', 'watersides', count, _ ). +noun( 'waterspout', 'waterspouts', count, _ ). +noun( 'watertable', 'watertables', count, _ ). +noun( 'waterway', 'waterways', count, _ ). +noun( 'waterworks', 'waterworks', count, _ ). +noun( 'watt', 'watts', count, _ ). +noun( 'wattage', 'wattages', both, _ ). +noun( 'wattle', 'wattles', both, _ ). +noun( 'wave', 'waves', count, _ ). +noun( 'wavelength', 'wavelengths', count, _ ). +noun( 'waverer', 'waverers', count, _ ). +noun( 'wax', 'waxes', both, _ ). +noun( 'wax-chandler', 'wax-chandlers', count, _ ). +noun( 'wax-paper', 'wax-papers', count, _ ). +noun( 'waxwork', 'waxworks', count, _ ). +noun( 'way', 'ways', both, _ ). +noun( 'waybill', 'waybills', count, _ ). +noun( 'wayfarer', 'wayfarers', count, _ ). +noun( 'wayside', 'waysides', count, _ ). +noun( 'weakling', 'weaklings', count, _ ). +noun( 'weakness', 'weaknesses', both, _ ). +noun( 'weal', 'weals', both, _ ). +noun( 'weald', 'wealds', count, _ ). +noun( 'wealth', '-', mass, _ ). +noun( 'weapon', 'weapons', count, _ ). +noun( 'wear', '-', mass, _ ). +noun( 'wearer', 'wearers', count, _ ). +noun( 'weariness', '-', mass, _ ). +noun( 'weasel', 'weasels', count, _ ). +noun( 'weather', 'weathers', both, _ ). +noun( 'weather-bureau', 'weather-bureaus', count, _ ). +noun( 'weather-chart', 'weather-charts', count, _ ). +noun( 'weather-glass', 'weather-glasses', count, _ ). +noun( 'weather-map', 'weather-maps', count, _ ). +noun( 'weather-ship', 'weather-ships', count, _ ). +noun( 'weather-station', 'weather-stations', count, _ ). +noun( 'weather-vane', 'weather-vanes', count, _ ). +noun( 'weatherboarding', '-', mass, _ ). +noun( 'weathercock', 'weathercocks', count, _ ). +noun( 'weatherman', 'weathermen', count, _ ). +noun( 'weave', 'weaves', count, _ ). +noun( 'weaver', 'weavers', count, _ ). +noun( 'weaverbird', 'weaverbirds', count, _ ). +noun( 'web', 'webs', count, _ ). +noun( 'webbing', '-', mass, _ ). +noun( 'wedding', 'weddings', count, _ ). +noun( 'wedding-cake', 'wedding-cakes', both, _ ). +noun( 'wedding-ring', 'wedding-rings', count, _ ). +noun( 'wedge', 'wedges', count, _ ). +noun( 'wedlock', '-', mass, _ ). +noun( 'wee', 'wees', both, _ ). +noun( 'wee-wee', 'wee-wees', both, _ ). +noun( 'weed', 'weeds', count, _ ). +noun( 'weedkiller', 'weedkillers', both, _ ). +noun( 'week', 'weeks', count, _ ). +noun( 'weekday', 'weekdays', count, _ ). +noun( 'weekend', 'weekends', count, _ ). +noun( 'weekender', 'weekenders', count, _ ). +noun( 'weekly', 'weeklies', count, _ ). +noun( 'weevil', 'weevils', count, _ ). +noun( 'weft', 'wefts', count, _ ). +noun( 'weighbridge', 'weighbridges', count, _ ). +noun( 'weighing-machine', 'weighing-machines', count, _ ). +noun( 'weight', 'weights', both, _ ). +noun( 'weightiness', '-', mass, _ ). +noun( 'weightlessness', '-', mass, _ ). +noun( 'weightlifting', '-', mass, _ ). +noun( 'weir', 'weirs', count, _ ). +noun( 'weirdie', 'weirdies', count, _ ). +noun( 'weirdness', '-', mass, _ ). +noun( 'welcome', 'welcomes', count, _ ). +noun( 'weld', 'welds', count, _ ). +noun( 'welder', 'welders', count, _ ). +noun( 'welfare', '-', mass, _ ). +noun( 'welkin', '-', count, _ ). +noun( 'well', 'wells', count, _ ). +noun( 'well-being', '-', mass, _ ). +noun( 'well-doer', 'well-doers', count, _ ). +noun( 'well-doing', '-', mass, _ ). +noun( 'well-water', '-', mass, _ ). +noun( 'well-wisher', 'well-wishers', count, _ ). +noun( 'wellhead', 'wellheads', count, _ ). +noun( 'wellington', 'wellingtons', count, _ ). +noun( 'welsher', 'welshers', count, _ ). +noun( 'welt', 'welts', count, _ ). +noun( 'welter', '-', count, _ ). +noun( 'welterweight', 'welterweights', count, _ ). +noun( 'wen', 'wens', count, _ ). +noun( 'wench', 'wenches', count, _ ). +noun( 'werewolf', 'werewolves', count, _ ). +noun( 'west', '-', mass, _ ). +noun( 'western', 'westerns', count, _ ). +noun( 'westerner', 'westerners', count, _ ). +noun( 'westernization', '-', mass, _ ). +noun( 'wet', '-', mass, _ ). +noun( 'wet-nurse', 'wet-nurses', count, _ ). +noun( 'wether', 'wethers', count, _ ). +noun( 'wetting', 'wettings', count, _ ). +noun( 'whack', 'whacks', count, _ ). +noun( 'whacker', 'whackers', count, _ ). +noun( 'whacking', 'whackings', count, _ ). +noun( 'whale', 'whales', count, _ ). +noun( 'whalebone', '-', mass, _ ). +noun( 'whaler', 'whalers', count, _ ). +noun( 'whaling-gun', 'whaling-guns', count, _ ). +noun( 'whang', 'whangs', count, _ ). +noun( 'wharf', 'wharfs', count, _ ). +noun( 'wharfage', '-', mass, _ ). +noun( 'what-for', '-', mass, _ ). +noun( 'whatnot', '-', mass, _ ). +noun( 'wheat', '-', mass, _ ). +noun( 'wheel', 'wheels', count, _ ). +noun( 'wheelbarrow', 'wheelbarrows', count, _ ). +noun( 'wheelbase', 'wheelbases', count, _ ). +noun( 'wheelchair', 'wheelchairs', count, _ ). +noun( 'wheelhouse', '-', count, _ ). +noun( 'wheelwright', 'wheelwrights', count, _ ). +noun( 'wheeze', 'wheezes', count, _ ). +noun( 'wheeziness', '-', mass, _ ). +noun( 'whelk', 'whelks', count, _ ). +noun( 'whelp', 'whelps', count, _ ). +noun( 'wherewithal', '-', mass, _ ). +noun( 'wherry', 'wherries', count, _ ). +noun( 'whetstone', 'whetstones', count, _ ). +noun( 'whey', '-', mass, _ ). +noun( 'whiff', 'whiffs', count, _ ). +noun( 'while', '-', count, _ ). +noun( 'whim', 'whims', count, _ ). +noun( 'whimper', 'whimpers', count, _ ). +noun( 'whimsey', 'whimseys', both, _ ). +noun( 'whimsicality', 'whimsicalities', both, _ ). +noun( 'whimsy', 'whimsies', both, _ ). +noun( 'whin', '-', mass, _ ). +noun( 'whine', 'whines', count, _ ). +noun( 'whiner', 'whiners', count, _ ). +noun( 'whinny', 'whinnies', count, _ ). +noun( 'whip', 'whips', count, _ ). +noun( 'whip-round', 'whip-rounds', count, _ ). +noun( 'whipcord', '-', mass, _ ). +noun( 'whipper-in', 'whippers-in', count, _ ). +noun( 'whippersnapper', 'whippersnappers', count, _ ). +noun( 'whippet', 'whippets', count, _ ). +noun( 'whipping', 'whippings', both, _ ). +noun( 'whipping-boy', 'whipping-boys', count, _ ). +noun( 'whipping-post', 'whipping-posts', count, _ ). +noun( 'whipping-top', 'whipping-tops', count, _ ). +noun( 'whippoorwill', 'whippoorwills', count, _ ). +noun( 'whir', '-', count, _ ). +noun( 'whirl', '-', count, _ ). +noun( 'whirligig', 'whirligigs', count, _ ). +noun( 'whirlpool', 'whirlpools', count, _ ). +noun( 'whirlwind', 'whirlwinds', count, _ ). +noun( 'whirr', '-', count, _ ). +noun( 'whisk', 'whisks', count, _ ). +noun( 'whisker', 'whiskers', count, _ ). +noun( 'whiskey', 'whiskeys', both, _ ). +noun( 'whisky', 'whiskies', both, _ ). +noun( 'whisper', 'whispers', count, _ ). +noun( 'whisperer', 'whisperers', count, _ ). +noun( 'whispering', 'whisperings', count, _ ). +noun( 'whispering-gallery', 'whispering-galleries', count, _ ). +noun( 'whist', '-', mass, _ ). +noun( 'whist-drive', 'whist-drives', count, _ ). +noun( 'whistle', 'whistles', count, _ ). +noun( 'whistle-stop', 'whistle-stops', count, _ ). +noun( 'whit', '-', count, _ ). +noun( 'white', 'whites', both, _ ). +noun( 'whitebait', '-', mass, _ ). +noun( 'whiteness', '-', mass, _ ). +noun( 'whitening', '-', mass, _ ). +noun( 'whitethorn', 'whitethorns', both, _ ). +noun( 'whitewash', '-', mass, _ ). +noun( 'whiting', 'whiting', both, _ ). +noun( 'whitlow', 'whitlows', count, _ ). +noun( 'whiz', '-', mass, _ ). +noun( 'whizz-kid', 'whizz-kids', count, _ ). +noun( 'whodunit', 'whodunits', count, _ ). +noun( 'whole', 'wholes', count, _ ). +noun( 'whole-wheat', '-', mass, _ ). +noun( 'wholeheartedness', '-', mass, _ ). +noun( 'wholemeal', '-', mass, _ ). +noun( 'wholesale', '-', mass, _ ). +noun( 'wholesaler', 'wholesalers', count, _ ). +noun( 'whoop', 'whoops', count, _ ). +noun( 'whoopee', 'whoopees', count, _ ). +noun( 'whooping-cough', '-', mass, _ ). +noun( 'whopper', 'whoppers', count, _ ). +noun( 'whore', 'whores', count, _ ). +noun( 'whoremonger', 'whoremongers', count, _ ). +noun( 'whorl', 'whorls', count, _ ). +noun( 'why', 'whys', count, _ ). +noun( 'wick', 'wicks', both, _ ). +noun( 'wickedness', '-', mass, _ ). +noun( 'wicker', '-', mass, _ ). +noun( 'wickerwork', '-', mass, _ ). +noun( 'wicket', 'wickets', count, _ ). +noun( 'wicket-door', 'wicket-doors', count, _ ). +noun( 'wicket-gate', 'wicket-gates', count, _ ). +noun( 'wicket-keeper', 'wicket-keepers', count, _ ). +noun( 'widgeon', 'widgeons', count, _ ). +noun( 'widow', 'widows', count, _ ). +noun( 'widower', 'widowers', count, _ ). +noun( 'widowhood', '-', mass, _ ). +noun( 'width', 'widths', both, _ ). +noun( 'wife', 'wives', count, _ ). +noun( 'wig', 'wigs', count, _ ). +noun( 'wigging', 'wiggings', count, _ ). +noun( 'wiggle', 'wiggles', count, _ ). +noun( 'wight', 'wights', count, _ ). +noun( 'wigwam', 'wigwams', count, _ ). +noun( 'wildebeest', 'wildebeests', count, _ ). +noun( 'wilderness', 'wildernesses', count, _ ). +noun( 'wildfire', '-', mass, _ ). +noun( 'wildness', '-', mass, _ ). +noun( 'wile', 'wiles', count, _ ). +noun( 'wilfulness', '-', mass, _ ). +noun( 'will', 'wills', both, _ ). +noun( 'will-o\'-the-wisp', 'will-o\'-the-wisps', count, _ ). +noun( 'willingness', '-', mass, _ ). +noun( 'willow', 'willows', both, _ ). +noun( 'willow-pattern', '-', mass, _ ). +noun( 'willow-tree', 'willow-trees', count, _ ). +noun( 'willpower', '-', mass, _ ). +noun( 'wimple', 'wimples', count, _ ). +noun( 'win', 'wins', count, _ ). +noun( 'wince', 'winces', count, _ ). +noun( 'winceyette', '-', mass, _ ). +noun( 'winch', 'winches', count, _ ). +noun( 'wind', 'winds', both, _ ). +noun( 'wind', 'winds', count, _ ). +noun( 'wind-gauge', 'wind-gauges', count, _ ). +noun( 'wind-tunnel', 'wind-tunnels', count, _ ). +noun( 'windbag', 'windbags', count, _ ). +noun( 'windbreak', 'windbreaks', count, _ ). +noun( 'windbreaker', 'windbreakers', count, _ ). +noun( 'windcheater', 'windcheaters', count, _ ). +noun( 'windfall', 'windfalls', count, _ ). +noun( 'windflower', 'windflowers', count, _ ). +noun( 'windiness', '-', mass, _ ). +noun( 'winding-sheet', 'winding-sheets', count, _ ). +noun( 'windjammer', 'windjammers', count, _ ). +noun( 'windlass', 'windlasses', count, _ ). +noun( 'windmill', 'windmills', count, _ ). +noun( 'window', 'windows', count, _ ). +noun( 'window-box', 'window-boxes', count, _ ). +noun( 'window-dressing', '-', mass, _ ). +noun( 'windowpane', 'windowpanes', count, _ ). +noun( 'windowsill', 'windowsills', count, _ ). +noun( 'windpipe', 'windpipes', count, _ ). +noun( 'windscreen', 'windscreens', count, _ ). +noun( 'windscreen-wiper', 'windscreen-wipers', count, _ ). +noun( 'windshield', 'windshields', count, _ ). +noun( 'windsock', 'windsocks', count, _ ). +noun( 'windward', '-', mass, _ ). +noun( 'wine', 'wines', both, _ ). +noun( 'wineglass', 'wineglasses', count, _ ). +noun( 'winepress', 'winepresses', count, _ ). +noun( 'wineskin', 'wineskins', count, _ ). +noun( 'wing', 'wings', count, _ ). +noun( 'wing-commander', 'wing-commanders', count, _ ). +noun( 'wing-nut', 'wing-nuts', count, _ ). +noun( 'wing-screw', 'wing-screws', count, _ ). +noun( 'winger', 'wingers', count, _ ). +noun( 'wingspan', 'wingspans', count, _ ). +noun( 'wingspread', 'wingspreads', count, _ ). +noun( 'wink', 'winks', count, _ ). +noun( 'winkle', 'winkles', count, _ ). +noun( 'winner', 'winners', count, _ ). +noun( 'winning-post', 'winning-posts', count, _ ). +noun( 'winsomeness', '-', mass, _ ). +noun( 'winter', 'winters', both, _ ). +noun( 'wipe', 'wipes', count, _ ). +noun( 'wiper', 'wipers', count, _ ). +noun( 'wire', 'wires', both, _ ). +noun( 'wireless', 'wirelesses', both, _ ). +noun( 'wirepuller', 'wirepullers', count, _ ). +noun( 'wireworm', 'wireworms', count, _ ). +noun( 'wiring', '-', mass, _ ). +noun( 'wisdom', '-', mass, _ ). +noun( 'wisdom-tooth', 'wisdom-teeth', count, _ ). +noun( 'wise', '-', count, _ ). +noun( 'wiseacre', 'wiseacres', count, _ ). +noun( 'wisecrack', 'wisecracks', count, _ ). +noun( 'wish', 'wishes', both, _ ). +noun( 'wishbone', 'wishbones', count, _ ). +noun( 'wishing-cap', 'wishing-caps', count, _ ). +noun( 'wisp', 'wisps', count, _ ). +noun( 'wisteria', 'wisterias', both, _ ). +noun( 'wit', 'wits', both, _ ). +noun( 'witch', 'witches', count, _ ). +noun( 'witch-doctor', 'witch-doctors', count, _ ). +noun( 'witch-elm', 'witch-elms', count, _ ). +noun( 'witch-hazel', 'witch-hazels', both, _ ). +noun( 'witch-hunt', 'witch-hunts', count, _ ). +noun( 'witchcraft', '-', mass, _ ). +noun( 'witchery', '-', mass, _ ). +noun( 'withdrawal', 'withdrawals', both, _ ). +noun( 'withe', 'withes', count, _ ). +noun( 'withy', 'withies', count, _ ). +noun( 'witness', 'witnesses', both, _ ). +noun( 'witness-box', 'witness-boxes', count, _ ). +noun( 'witness-stand', 'witness-stands', count, _ ). +noun( 'witticism', 'witticisms', count, _ ). +noun( 'wizard', 'wizards', count, _ ). +noun( 'wizardry', '-', mass, _ ). +noun( 'wk', 'wk', count, _ ). +noun( 'woad', '-', mass, _ ). +noun( 'wobbler', 'wobblers', count, _ ). +noun( 'woe', 'woes', both, _ ). +noun( 'wold', 'wolds', both, _ ). +noun( 'wolf', 'wolves', count, _ ). +noun( 'wolf\'s-bane', '-', mass, _ ). +noun( 'wolf-cub', 'wolf-cubs', count, _ ). +noun( 'wolfhound', 'wolfhounds', count, _ ). +noun( 'wolfram', '-', mass, _ ). +noun( 'woman', 'women', count, _ ). +noun( 'womanhood', '-', mass, _ ). +noun( 'womanizer', 'womanizers', count, _ ). +noun( 'womankind', '-', mass, _ ). +noun( 'womb', 'wombs', count, _ ). +noun( 'wombat', 'wombats', count, _ ). +noun( 'wonder', 'wonders', both, _ ). +noun( 'wonderland', 'wonderlands', count, _ ). +noun( 'wonderment', '-', mass, _ ). +noun( 'wont', '-', mass, _ ). +noun( 'wood', 'woods', both, _ ). +noun( 'wood-block', 'wood-blocks', count, _ ). +noun( 'wood-pulp', '-', mass, _ ). +noun( 'woodbine', 'woodbines', both, _ ). +noun( 'woodcock', 'woodcocks', count, _ ). +noun( 'woodcraft', 'woodcrafts', both, _ ). +noun( 'woodcut', 'woodcuts', count, _ ). +noun( 'woodcutter', 'woodcutters', count, _ ). +noun( 'woodland', 'woodlands', both, _ ). +noun( 'woodlouse', 'woodlice', count, _ ). +noun( 'woodman', 'woodmen', count, _ ). +noun( 'woodpecker', 'woodpeckers', count, _ ). +noun( 'woodpile', 'woodpiles', count, _ ). +noun( 'woodshed', 'woodsheds', count, _ ). +noun( 'woodsman', 'woodsmen', count, _ ). +noun( 'woodwind', '-', mass, _ ). +noun( 'woodwork', '-', mass, _ ). +noun( 'woodworm', '-', mass, _ ). +noun( 'wooer', 'wooers', count, _ ). +noun( 'woof', 'woofs', count, _ ). +noun( 'woofer', 'woofers', count, _ ). +noun( 'wool', 'wools', both, _ ). +noun( 'woolgathering', '-', mass, _ ). +noun( 'wooly', 'woolies', count, _ ). +noun( 'word', 'words', count, _ ). +noun( 'word-division', '-', mass, _ ). +noun( 'word-painter', 'word-painters', count, _ ). +noun( 'word-picture', 'word-pictures', count, _ ). +noun( 'word-splitting', '-', mass, _ ). +noun( 'wordbook', 'wordbooks', count, _ ). +noun( 'wordiness', '-', mass, _ ). +noun( 'wording', '-', count, _ ). +noun( 'work', 'works', both, _ ). +noun( 'work-in', 'work-ins', count, _ ). +noun( 'work-out', 'work-outs', count, _ ). +noun( 'work-study', 'work-studies', count, _ ). +noun( 'workbag', 'workbags', count, _ ). +noun( 'workbasket', 'workbaskets', count, _ ). +noun( 'workbench', 'workbenches', count, _ ). +noun( 'workbook', 'workbooks', count, _ ). +noun( 'workbox', 'workboxes', count, _ ). +noun( 'workday', 'workdays', count, _ ). +noun( 'worker', 'workers', count, _ ). +noun( 'workhouse', '-', count, _ ). +noun( 'working', 'workings', count, _ ). +noun( 'working-out', '-', mass, _ ). +noun( 'workman', 'workmen', count, _ ). +noun( 'workmanship', '-', mass, _ ). +noun( 'workmate', 'workmates', count, _ ). +noun( 'workroom', 'workrooms', count, _ ). +noun( 'workshop', 'workshops', count, _ ). +noun( 'worktable', 'worktables', count, _ ). +noun( 'world', 'worlds', count, _ ). +noun( 'worldliness', '-', mass, _ ). +noun( 'worm', 'worms', count, _ ). +noun( 'worm-gear', 'worm-gears', count, _ ). +noun( 'wormcast', 'wormcasts', count, _ ). +noun( 'wormhole', 'wormholes', count, _ ). +noun( 'wormwood', '-', mass, _ ). +noun( 'worry', 'worries', both, _ ). +noun( 'worse', '-', mass, _ ). +noun( 'worship', '-', mass, _ ). +noun( 'worshipper', 'worshippers', count, _ ). +noun( 'worst', '-', mass, _ ). +noun( 'worsted', '-', mass, _ ). +noun( 'worth', '-', mass, _ ). +noun( 'worthiness', '-', mass, _ ). +noun( 'worthlessness', '-', mass, _ ). +noun( 'worthy', 'worthies', count, _ ). +noun( 'wound', 'wounds', count, _ ). +noun( 'wow', 'wows', both, _ ). +noun( 'wpb', '-', count, _ ). +noun( 'wpm', 'wpm', count, _ ). +noun( 'wrack', '-', mass, _ ). +noun( 'wraith', 'wraiths', count, _ ). +noun( 'wrangle', 'wrangles', count, _ ). +noun( 'wrap', 'wraps', count, _ ). +noun( 'wrapper', 'wrappers', count, _ ). +noun( 'wrapping', 'wrappings', both, _ ). +noun( 'wrath', '-', mass, _ ). +noun( 'wreath', 'wreaths', count, _ ). +noun( 'wreck', 'wrecks', both, _ ). +noun( 'wreckage', '-', mass, _ ). +noun( 'wrecker', 'wreckers', count, _ ). +noun( 'wren', 'wrens', count, _ ). +noun( 'wrench', 'wrenches', count, _ ). +noun( 'wrestle', 'wrestles', count, _ ). +noun( 'wrestler', 'wrestlers', count, _ ). +noun( 'wretch', 'wretches', count, _ ). +noun( 'wretchedness', '-', mass, _ ). +noun( 'wrick', 'wricks', count, _ ). +noun( 'wriggle', 'wriggles', count, _ ). +noun( 'wriggler', 'wrigglers', count, _ ). +noun( 'wright', 'wrights', count, _ ). +noun( 'wring', 'wrings', count, _ ). +noun( 'wringer', 'wringers', count, _ ). +noun( 'wrinkle', 'wrinkles', count, _ ). +noun( 'wrist', 'wrists', count, _ ). +noun( 'wristband', 'wristbands', count, _ ). +noun( 'wristlet', 'wristlets', count, _ ). +noun( 'wristwatch', 'wristwatches', count, _ ). +noun( 'writ', 'writs', count, _ ). +noun( 'write-off', 'write-offs', count, _ ). +noun( 'write-up', 'write-ups', count, _ ). +noun( 'writer', 'writers', count, _ ). +noun( 'writing', 'writings', both, _ ). +noun( 'writing-desk', 'writing-desks', count, _ ). +noun( 'writing-ink', 'writing-inks', count, _ ). +noun( 'writing-paper', '-', mass, _ ). +noun( 'wrong', 'wrongs', both, _ ). +noun( 'wrongdoer', 'wrongdoers', count, _ ). +noun( 'wrongdoing', 'wrongdoings', both, _ ). +noun( 'wt', '-', mass, _ ). +noun( 'x', '-', count, _ ). +noun( 'xenophobia', '-', mass, _ ). +noun( 'xylophone', 'xylophones', count, _ ). +noun( 'y', '-', count, _ ). +noun( 'yacht', 'yachts', count, _ ). +noun( 'yacht-club', 'yacht-clubs', count, _ ). +noun( 'yachting', '-', mass, _ ). +noun( 'yachtsman', 'yachtsmen', count, _ ). +noun( 'yahoo', 'yahoos', count, _ ). +noun( 'yak', 'yaks', count, _ ). +noun( 'yam', 'yams', count, _ ). +noun( 'yank', 'yanks', count, _ ). +noun( 'yap', 'yaps', count, _ ). +noun( 'yard', 'yards', count, _ ). +noun( 'yard-measure', 'yard-measures', count, _ ). +noun( 'yardarm', 'yardarms', count, _ ). +noun( 'yardstick', 'yardsticks', count, _ ). +noun( 'yarn', 'yarns', both, _ ). +noun( 'yarrow', '-', mass, _ ). +noun( 'yashmak', 'yashmaks', count, _ ). +noun( 'yaw', 'yaws', count, _ ). +noun( 'yawl', 'yawls', count, _ ). +noun( 'yawn', 'yawns', count, _ ). +noun( 'yea', 'yeas', count, _ ). +noun( 'year', 'years', count, _ ). +noun( 'yearbook', 'yearbooks', count, _ ). +noun( 'yearling', 'yearlings', count, _ ). +noun( 'yearning', 'yearnings', count, _ ). +noun( 'yeast', '-', mass, _ ). +noun( 'yell', 'yells', count, _ ). +noun( 'yellow', 'yellows', both, _ ). +noun( 'yellow-flag', 'yellow-flags', count, _ ). +noun( 'yellowness', '-', mass, _ ). +noun( 'yen', 'yen', count, _ ). +noun( 'yeoman', 'yeomen', count, _ ). +noun( 'yeomanry', 'yeomanries', count, _ ). +noun( 'yes', 'yeses', count, _ ). +noun( 'yesterday', 'yesterdays', count, _ ). +noun( 'yeti', 'yetis', count, _ ). +noun( 'yew', 'yews', both, _ ). +noun( 'yew-tree', 'yew-trees', count, _ ). +noun( 'yield', 'yields', both, _ ). +noun( 'yo-yo', 'yo-yos', count, _ ). +noun( 'yob', 'yobs', count, _ ). +noun( 'yobo', 'yobos', count, _ ). +noun( 'yodel', 'yodels', count, _ ). +noun( 'yodeller', 'yodellers', count, _ ). +noun( 'yoga', '-', mass, _ ). +noun( 'yoghourt', 'yoghourts', both, _ ). +noun( 'yoghurt', 'yoghurts', both, _ ). +noun( 'yogi', 'yogis', count, _ ). +noun( 'yogurt', 'yogurts', both, _ ). +noun( 'yoke', 'yokes', count, _ ). +noun( 'yokel', 'yokels', count, _ ). +noun( 'yolk', 'yolks', both, _ ). +noun( 'yore', '-', mass, _ ). +noun( 'young', '-', mass, _ ). +noun( 'youngster', 'youngsters', count, _ ). +noun( 'youth', 'youths', both, _ ). +noun( 'youthfulness', '-', mass, _ ). +noun( 'yr', '-', count, _ ). +noun( 'yule', '-', mass, _ ). +noun( 'yule-log', 'yule-logs', count, _ ). +noun( 'yuletide', 'yuletides', both, _ ). +noun( 'z', '-', count, _ ). +noun( 'zany', 'zanies', count, _ ). +noun( 'zeal', '-', mass, _ ). +noun( 'zealot', 'zealots', count, _ ). +noun( 'zealotry', '-', mass, _ ). +noun( 'zebra', 'zebras', count, _ ). +noun( 'zebu', 'zebus', count, _ ). +noun( 'zee', 'zees', count, _ ). +noun( 'zenith', 'zeniths', count, _ ). +noun( 'zephyr', 'zephyrs', count, _ ). +noun( 'zeppelin', 'zeppelins', count, _ ). +noun( 'zero', 'zeros', count, _ ). +noun( 'zest', '-', mass, _ ). +noun( 'zigzag', 'zigzags', count, _ ). +noun( 'zinc', '-', mass, _ ). +noun( 'zing', '-', mass, _ ). +noun( 'zinnia', 'zinnias', count, _ ). +noun( 'zip', 'zips', count, _ ). +noun( 'zip code', 'zip codes', count, _ ). +noun( 'zip-fastener', 'zip-fasteners', count, _ ). +noun( 'zipper', 'zippers', count, _ ). +noun( 'zither', 'zithers', count, _ ). +noun( 'zloty', 'zlotys', count, _ ). +noun( 'zodiac', 'zodiacs', count, _ ). +noun( 'zombie', 'zombies', count, _ ). +noun( 'zone', 'zones', count, _ ). +noun( 'zoning', '-', mass, _ ). +noun( 'zoo', 'zoos', count, _ ). +noun( 'zoologist', 'zoologists', count, _ ). +noun( 'zoology', '-', mass, _ ). +noun( 'zoom', '-', mass, _ ). +noun( 'zoophyte', 'zoophytes', count, _ ). +noun( 'zoot suit', 'zoot suits', count, _ ). +noun( 'zucchini', 'zucchini', both, _ ). + +adj( 'afghan', '-', '-', normal ). +adj( 'afghanistani', '-', '-', normal ). +adj( 'african', '-', '-', normal ). +adj( 'afrikaner', '-', '-', normal ). +adj( 'afro-asian', '-', '-', normal ). +adj( 'albanian', '-', '-', normal ). +adj( 'algerian', '-', '-', normal ). +adj( 'american', '-', '-', normal ). +adj( 'andorran', '-', '-', normal ). +adj( 'anglican', '-', '-', normal ). +adj( 'anglo-catholic', '-', '-', normal ). +adj( 'anglo-indian', '-', '-', normal ). +adj( 'anglo-saxon', '-', '-', normal ). +adj( 'angolan', '-', '-', normal ). +adj( 'anguillan', '-', '-', normal ). +adj( 'antiguan', '-', '-', normal ). +adj( 'arabian', '-', '-', normal ). +adj( 'arabic', '-', '-', normal ). +adj( 'arcadian', '-', '-', normal ). +adj( 'argentinian', '-', '-', normal ). +adj( 'argus-eyed', '-', '-', normal ). +adj( 'aryan', '-', '-', normal ). +adj( 'asian', '-', '-', normal ). +adj( 'asiatic', '-', '-', normal ). +adj( 'athenian', '-', '-', normal ). +adj( 'attic', '-', '-', normal ). +adj( 'augustan', '-', '-', normal ). +adj( 'australian', '-', '-', normal ). +adj( 'austrian', '-', '-', normal ). +adj( 'bahamian', '-', '-', normal ). +adj( 'bahraini', '-', '-', normal ). +adj( 'bangladeshi', '-', '-', normal ). +adj( 'bantu', '-', '-', normal ). +adj( 'baptist', '-', '-', normal ). +adj( 'barbadian', '-', '-', normal ). +adj( 'belgian', '-', '-', normal ). +adj( 'benedictine', '-', '-', normal ). +adj( 'bengali', '-', '-', normal ). +adj( 'beninese', '-', '-', normal ). +adj( 'bermudan', '-', '-', normal ). +adj( 'bhutani', '-', '-', normal ). +adj( 'boche', '-', '-', normal ). +adj( 'boer', '-', '-', normal ). +adj( 'bolivian', '-', '-', normal ). +adj( 'brazilian', '-', '-', normal ). +adj( 'britannic', '-', '-', normal ). +adj( 'british', '-', '-', normal ). +adj( 'briton', '-', '-', normal ). +adj( 'bruneian', '-', '-', normal ). +adj( 'bulgarian', '-', '-', normal ). +adj( 'burmese', '-', '-', normal ). +adj( 'burundian', '-', '-', normal ). +adj( 'caesarian', '-', '-', normal ). +adj( 'californian', '-', '-', normal ). +adj( 'cambodian', '-', '-', normal ). +adj( 'cameroonian', '-', '-', normal ). +adj( 'canadian', '-', '-', normal ). +adj( 'carmelite', '-', '-', normal ). +adj( 'catalan', '-', '-', normal ). +adj( 'catholic', '-', '-', normal ). +adj( 'caucasian', '-', '-', normal ). +adj( 'celtic', '-', '-', normal ). +adj( 'cesarean', '-', '-', normal ). +adj( 'chadian', '-', '-', normal ). +adj( 'chilean', '-', '-', normal ). +adj( 'chinese', '-', '-', normal ). +adj( 'christian', '-', '-', normal ). +adj( 'christlike', '-', '-', normal ). +adj( 'colombian', '-', '-', normal ). +adj( 'confucian', '-', '-', normal ). +adj( 'congolese', '-', '-', normal ). +adj( 'congregational', '-', '-', normal ). +adj( 'copernican', '-', '-', normal ). +adj( 'copt', '-', '-', normal ). +adj( 'corinthian', '-', '-', normal ). +adj( 'costa rican', '-', '-', normal ). +adj( 'creole', '-', '-', normal ). +adj( 'cuban', '-', '-', normal ). +adj( 'cyclopean', '-', '-', normal ). +adj( 'cyprian', '-', '-', normal ). +adj( 'cypriot', '-', '-', normal ). +adj( 'cyrillic', '-', '-', normal ). +adj( 'czech', '-', '-', normal ). +adj( 'czechoslovak', '-', '-', normal ). +adj( 'czechoslovakian', '-', '-', normal ). +adj( 'danish', '-', '-', normal ). +adj( 'delphic', '-', '-', normal ). +adj( 'djiboutian', '-', '-', normal ). +adj( 'dominican', '-', '-', normal ). +adj( 'doric', '-', '-', normal ). +adj( 'dutch', '-', '-', normal ). +adj( 'ecuadorian', '-', '-', normal ). +adj( 'edwardian', '-', '-', normal ). +adj( 'egyptian', '-', '-', normal ). +adj( 'elizabethan', '-', '-', normal ). +adj( 'elysian', '-', '-', normal ). +adj( 'english', '-', '-', normal ). +adj( 'eritrean', '-', '-', normal ). +adj( 'ethiopian', '-', '-', normal ). +adj( 'euclidean', '-', '-', normal ). +adj( 'eurasian', '-', '-', normal ). +adj( 'european', '-', '-', normal ). +adj( 'eustachian', '-', '-', attr ). +adj( 'fabian', '-', '-', normal ). +adj( 'fallopian', '-', '-', attr ). +adj( 'fijian', '-', '-', normal ). +adj( 'filipino', '-', '-', normal ). +adj( 'finnish', '-', '-', normal ). +adj( 'flemish', '-', '-', normal ). +adj( 'franciscan', '-', '-', normal ). +adj( 'french', '-', '-', normal ). +adj( 'freudian', '-', '-', normal ). +adj( 'gabonese', '-', '-', normal ). +adj( 'gaelic', '-', '-', normal ). +adj( 'gallic', '-', '-', normal ). +adj( 'gambian', '-', '-', normal ). +adj( 'georgian', '-', '-', normal ). +adj( 'georgian', '-', '-', normal ). +adj( 'german', '-', '-', normal ). +adj( 'germanic', '-', '-', normal ). +adj( 'ghanaian', '-', '-', normal ). +adj( 'gibraltarian', '-', '-', normal ). +adj( 'gilbertian', '-', '-', normal ). +adj( 'glaswegian', '-', '-', normal ). +adj( 'gordian', '-', '-', normal ). +adj( 'gothic', '-', '-', normal ). +adj( 'grecian', '-', '-', normal ). +adj( 'greek', '-', '-', normal ). +adj( 'gregorian', '-', '-', normal ). +adj( 'grenadian', '-', '-', normal ). +adj( 'guatemalan', '-', '-', normal ). +adj( 'guinean', '-', '-', normal ). +adj( 'guyanese', '-', '-', normal ). +adj( 'haitian', '-', '-', normal ). +adj( 'hebraic', '-', '-', normal ). +adj( 'hebrew', '-', '-', normal ). +adj( 'hellenic', '-', '-', normal ). +adj( 'hertzian', '-', '-', normal ). +adj( 'hindi', '-', '-', normal ). +adj( 'hindu', '-', '-', normal ). +adj( 'hindustani', '-', '-', normal ). +adj( 'hippocratic', '-', '-', normal ). +adj( 'hollander', '-', '-', normal ). +adj( 'homeric', '-', '-', normal ). +adj( 'honduran', '-', '-', normal ). +adj( 'hungarian', '-', '-', normal ). +adj( 'icelander', '-', '-', normal ). +adj( 'icelandic', '-', '-', normal ). +adj( 'indian', '-', '-', normal ). +adj( 'indo-european', '-', '-', normal ). +adj( 'indonesian', '-', '-', normal ). +adj( 'ionic', '-', '-', normal ). +adj( 'iranian', '-', '-', normal ). +adj( 'iraqi', '-', '-', normal ). +adj( 'irish', '-', '-', normal ). +adj( 'islamic', '-', '-', normal ). +adj( 'israeli', '-', '-', normal ). +adj( 'italian', '-', '-', normal ). +adj( 'jacobean', '-', '-', normal ). +adj( 'jacobin', '-', '-', normal ). +adj( 'jamaican', '-', '-', normal ). +adj( 'japanese', '-', '-', normal ). +adj( 'javanese', '-', '-', normal ). +adj( 'jesuitical', '-', '-', normal ). +adj( 'jewish', '-', '-', normal ). +adj( 'jordanian', '-', '-', normal ). +adj( 'judaic', '-', '-', normal ). +adj( 'julian', '-', '-', normal ). +adj( 'junoesque', '-', '-', normal ). +adj( 'kampuchean', '-', '-', normal ). +adj( 'kashmiri', '-', '-', normal ). +adj( 'kenyan', '-', '-', normal ). +adj( 'koranic', '-', '-', normal ). +adj( 'korean', '-', '-', normal ). +adj( 'kuwaiti', '-', '-', normal ). +adj( 'lancastrian', '-', '-', normal ). +adj( 'laotian', '-', '-', normal ). +adj( 'latin', '-', '-', normal ). +adj( 'lebanese', '-', '-', normal ). +adj( 'lenten', '-', '-', normal ). +adj( 'levantine', '-', '-', normal ). +adj( 'liberian', '-', '-', normal ). +adj( 'libyan', '-', '-', normal ). +adj( 'liechtensteiner', '-', '-', normal ). +adj( 'lilliputian', '-', '-', normal ). +adj( 'liverpudlian', '-', '-', normal ). +adj( 'lutheran', '-', '-', normal ). +adj( 'luxemburger', '-', '-', normal ). +adj( 'macedonian', '-', '-', normal ). +adj( 'madagascan', '-', '-', normal ). +adj( 'magyar', '-', '-', normal ). +adj( 'malawian', '-', '-', normal ). +adj( 'malay', '-', '-', normal ). +adj( 'malayan', '-', '-', normal ). +adj( 'malaysian', '-', '-', normal ). +adj( 'malian', '-', '-', normal ). +adj( 'maltese', '-', '-', normal ). +adj( 'malthusian', '-', '-', normal ). +adj( 'mancunian', '-', '-', normal ). +adj( 'manx', '-', '-', normal ). +adj( 'martian', '-', '-', normal ). +adj( 'mauritanian', '-', '-', normal ). +adj( 'mauritian', '-', '-', normal ). +adj( 'mediterranean', '-', '-', normal ). +adj( 'mendelian', '-', '-', normal ). +adj( 'mephistophelian', '-', '-', normal ). +adj( 'methodist', '-', '-', normal ). +adj( 'mexican', '-', '-', normal ). +adj( 'midwestern', '-', '-', normal ). +adj( 'monegasque', '-', '-', normal ). +adj( 'mongol', '-', '-', normal ). +adj( 'mongolian', '-', '-', normal ). +adj( 'montserratian', '-', '-', normal ). +adj( 'moorish', '-', '-', normal ). +adj( 'moresque', '-', '-', normal ). +adj( 'mormon', '-', '-', normal ). +adj( 'moroccan', '-', '-', normal ). +adj( 'mosaic', '-', '-', normal ). +adj( 'moslem', '-', '-', normal ). +adj( 'mozambican', '-', '-', normal ). +adj( 'muhammadan', '-', '-', normal ). +adj( 'muscovite', '-', '-', normal ). +adj( 'namibian', '-', '-', normal ). +adj( 'napoleonic', '-', '-', normal ). +adj( 'nauruan', '-', '-', normal ). +adj( 'nazi', '-', '-', normal ). +adj( 'neanderthal', '-', '-', normal ). +adj( 'neapolitan', '-', '-', normal ). +adj( 'negroid', '-', '-', normal ). +adj( 'nepalese', '-', '-', normal ). +adj( 'nepali', '-', '-', normal ). +adj( 'newtonian', '-', '-', normal ). +adj( 'nicaraguan', '-', '-', normal ). +adj( 'nigerian', '-', '-', normal ). +adj( 'nigerien', '-', '-', normal ). +adj( 'nilotic', '-', '-', normal ). +adj( 'nipponese', '-', '-', normal ). +adj( 'nordic', '-', '-', normal ). +adj( 'norman', '-', '-', normal ). +adj( 'norse', '-', '-', normal ). +adj( 'norwegian', '-', '-', normal ). +adj( 'occidental', '-', '-', normal ). +adj( 'olympian', '-', '-', normal ). +adj( 'olympic', '-', '-', normal ). +adj( 'omani', '-', '-', normal ). +adj( 'oxonian', '-', '-', normal ). +adj( 'pakistani', '-', '-', normal ). +adj( 'palestinian', '-', '-', normal ). +adj( 'panamanian', '-', '-', normal ). +adj( 'papuan', '-', '-', normal ). +adj( 'paraguayan', '-', '-', normal ). +adj( 'parisian', '-', '-', normal ). +adj( 'parkinson\'s', '-', '-', normal ). +adj( 'parthian', '-', '-', normal ). +adj( 'pentecostal', '-', '-', normal ). +adj( 'persian', '-', '-', normal ). +adj( 'peruvian', '-', '-', normal ). +adj( 'philippine', '-', '-', normal ). +adj( 'platonic', '-', '-', normal ). +adj( 'polish', '-', '-', normal ). +adj( 'portuguese', '-', '-', normal ). +adj( 'pre-raphaelite', '-', '-', normal ). +adj( 'presbyterian', '-', '-', normal ). +adj( 'protestant', '-', '-', normal ). +adj( 'prussian', '-', '-', normal ). +adj( 'punic', '-', '-', normal ). +adj( 'pyrrhic', '-', '-', normal ). +adj( 'qatari', '-', '-', normal ). +adj( 'rabelaisian', '-', '-', normal ). +adj( 'redbrick', '-', '-', normal ). +adj( 'rhenish', '-', '-', normal ). +adj( 'romaic', '-', '-', normal ). +adj( 'roman', '-', '-', normal ). +adj( 'romance', '-', '-', normal ). +adj( 'romanian', '-', '-', normal ). +adj( 'romany', '-', '-', normal ). +adj( 'romish', '-', '-', normal ). +adj( 'ruritanian', '-', '-', normal ). +adj( 'russian', '-', '-', normal ). +adj( 'rwandan', '-', '-', normal ). +adj( 'sabahan', '-', '-', normal ). +adj( 'salvadorean', '-', '-', normal ). +adj( 'samoan', '-', '-', normal ). +adj( 'san marinese', '-', '-', normal ). +adj( 'sapphic', '-', '-', normal ). +adj( 'sarawakian', '-', '-', normal ). +adj( 'satanic', '-', '-', normal ). +adj( 'saudi arabian', '-', '-', normal ). +adj( 'saxon', '-', '-', normal ). +adj( 'scandinavian', '-', '-', normal ). +adj( 'scotch', '-', '-', normal ). +adj( 'scots', '-', '-', normal ). +adj( 'scottish', '-', '-', normal ). +adj( 'semite', '-', '-', normal ). +adj( 'semitic', '-', '-', normal ). +adj( 'senegalese', '-', '-', normal ). +adj( 'seychellois', '-', '-', normal ). +adj( 'shakespearian', '-', '-', normal ). +adj( 'shavian', '-', '-', normal ). +adj( 'siamese', '-', '-', normal ). +adj( 'siberian', '-', '-', normal ). +adj( 'sicilian', '-', '-', normal ). +adj( 'sierra leonian', '-', '-', normal ). +adj( 'singaporean', '-', '-', normal ). +adj( 'singhalese', '-', '-', normal ). +adj( 'sinhalese', '-', '-', normal ). +adj( 'slav', '-', '-', normal ). +adj( 'slavonic', '-', '-', normal ). +adj( 'slovenian', '-', '-', normal ). +adj( 'socratic', '-', '-', normal ). +adj( 'somali', '-', '-', normal ). +adj( 'somalian', '-', '-', normal ). +adj( 'sotho', '-', '-', normal ). +adj( 'soviet', '-', '-', normal ). +adj( 'spanish', '-', '-', normal ). +adj( 'spartan', '-', '-', normal ). +adj( 'sri lankan', '-', '-', normal ). +adj( 'stygian', '-', '-', normal ). +adj( 'sudanese', '-', '-', normal ). +adj( 'sumatran', '-', '-', normal ). +adj( 'swazi', '-', '-', normal ). +adj( 'swede', '-', '-', normal ). +adj( 'swedish', '-', '-', normal ). +adj( 'swiss', '-', '-', normal ). +adj( 'syrian', '-', '-', normal ). +adj( 'tahitian', '-', '-', normal ). +adj( 'taiwanese', '-', '-', normal ). +adj( 'tamil', '-', '-', normal ). +adj( 'tanzanian', '-', '-', normal ). +adj( 'terpsichorean', '-', '-', normal ). +adj( 'teutonic', '-', '-', normal ). +adj( 'texan', '-', '-', normal ). +adj( 'thai', '-', '-', normal ). +adj( 'thespian', '-', '-', normal ). +adj( 'tibetan', '-', '-', normal ). +adj( 'tobagonian', '-', '-', normal ). +adj( 'togolese', '-', '-', normal ). +adj( 'tongan', '-', '-', normal ). +adj( 'trinidadian', '-', '-', normal ). +adj( 'trojan', '-', '-', normal ). +adj( 'tswana', '-', '-', normal ). +adj( 'tunisian', '-', '-', normal ). +adj( 'turkish', '-', '-', normal ). +adj( 'ugandan', '-', '-', normal ). +adj( 'unitarian', '-', '-', normal ). +adj( 'urdu', '-', '-', normal ). +adj( 'uruguayan', '-', '-', normal ). +adj( 'utopian', '-', '-', normal ). +adj( 'venetian', '-', '-', normal ). +adj( 'venezuelan', '-', '-', normal ). +adj( 'verey', '-', '-', normal ). +adj( 'very', '-', '-', normal ). +adj( 'victorian', '-', '-', normal ). +adj( 'vietnamese', '-', '-', normal ). +adj( 'welsh', '-', '-', normal ). +adj( 'wesleyan', '-', '-', normal ). +adj( 'yemeni', '-', '-', normal ). +adj( 'yugoslav', '-', '-', normal ). +adj( 'yugoslavian', '-', '-', normal ). +adj( 'zairean', '-', '-', normal ). +adj( 'zambian', '-', '-', normal ). +adj( 'zealander', '-', '-', normal ). +adj( 'zimbabwean', '-', '-', normal ). +adj( 'zionist', '-', '-', normal ). +adj( 'a posteriori', '-', '-', normal ). +adj( 'a priori', '-', '-', normal ). +adj( 'abandoned', '-', '-', normal ). +adj( 'abdominal', '-', '-', normal ). +adj( 'aberrant', '-', '-', normal ). +adj( 'abhorrent', '-', '-', normal ). +adj( 'abiding', '-', '-', normal ). +adj( 'abject', '-', '-', normal ). +adj( 'ablative', '-', '-', normal ). +adj( 'ablaze', '-', '-', pred ). +adj( 'able', 'abler', 'ablest', normal ). +adj( 'able-bodied', '-', '-', normal ). +adj( 'abnormal', '-', '-', normal ). +adj( 'abominable', '-', '-', normal ). +adj( 'aboriginal', '-', '-', normal ). +adj( 'abortive', '-', '-', normal ). +adj( 'above board', '-', '-', pred ). +adj( 'above-mentioned', '-', '-', normal ). +adj( 'above-named', '-', '-', normal ). +adj( 'abrasive', '-', '-', normal ). +adj( 'abrupt', '-', '-', normal ). +adj( 'absent', '-', '-', normal ). +adj( 'absent-minded', '-', '-', normal ). +adj( 'absolute', '-', '-', normal ). +adj( 'absorbent', '-', '-', normal ). +adj( 'abstemious', '-', '-', normal ). +adj( 'abstract', '-', '-', normal ). +adj( 'abstracted', '-', '-', normal ). +adj( 'abstruse', '-', '-', normal ). +adj( 'absurd', '-', '-', normal ). +adj( 'abundant', '-', '-', normal ). +adj( 'abusive', '-', '-', normal ). +adj( 'abysmal', '-', '-', normal ). +adj( 'academic', '-', '-', normal ). +adj( 'accelerando', '-', '-', normal ). +adj( 'acceptable', '-', '-', normal ). +adj( 'accessible', '-', '-', normal ). +adj( 'accident-prone', '-', '-', normal ). +adj( 'accidental', '-', '-', normal ). +adj( 'accommodating', '-', '-', normal ). +adj( 'accomplished', '-', '-', normal ). +adj( 'accountable', '-', '-', normal ). +adj( 'accredited', '-', '-', normal ). +adj( 'accumulative', '-', '-', normal ). +adj( 'accurate', '-', '-', normal ). +adj( 'accursed', '-', '-', normal ). +adj( 'accurst', '-', '-', normal ). +adj( 'accusative', '-', '-', normal ). +adj( 'accustomed', '-', '-', normal ). +adj( 'acetic', '-', '-', normal ). +adj( 'achievable', '-', '-', normal ). +adj( 'acid', '-', '-', normal ). +adj( 'acidic', '-', '-', normal ). +adj( 'acidulated', '-', '-', normal ). +adj( 'acidulous', '-', '-', normal ). +adj( 'acoustic', '-', '-', normal ). +adj( 'acquiescent', '-', '-', normal ). +adj( 'acquisitive', '-', '-', normal ). +adj( 'acrid', '-', '-', normal ). +adj( 'acrimonious', '-', '-', normal ). +adj( 'acrobatic', '-', '-', normal ). +adj( 'acting', '-', '-', normal ). +adj( 'actinic', '-', '-', normal ). +adj( 'actionable', '-', '-', normal ). +adj( 'active', '-', '-', normal ). +adj( 'actual', '-', '-', normal ). +adj( 'actuarial', '-', '-', normal ). +adj( 'acute', '-', '-', normal ). +adj( 'ad hoc', '-', '-', normal ). +adj( 'ad-lib', '-', '-', normal ). +adj( 'adagio', '-', '-', normal ). +adj( 'adamant', '-', '-', pred ). +adj( 'adamantine', '-', '-', normal ). +adj( 'adaptable', '-', '-', normal ). +adj( 'addictive', '-', '-', normal ). +adj( 'additional', '-', '-', normal ). +adj( 'addle', '-', '-', normal ). +adj( 'addle-brained', '-', '-', normal ). +adj( 'addle-pated', '-', '-', normal ). +adj( 'adenoidal', '-', '-', normal ). +adj( 'adept', '-', '-', normal ). +adj( 'adequate', '-', '-', normal ). +adj( 'adhesive', '-', '-', normal ). +adj( 'adipose', '-', '-', normal ). +adj( 'adjacent', '-', '-', normal ). +adj( 'adjectival', '-', '-', normal ). +adj( 'adjoining', '-', '-', normal ). +adj( 'adjustable', '-', '-', normal ). +adj( 'administrative', '-', '-', normal ). +adj( 'admirable', '-', '-', normal ). +adj( 'admiring', '-', '-', normal ). +adj( 'admissible', '-', '-', normal ). +adj( 'admonitory', '-', '-', normal ). +adj( 'adolescent', '-', '-', normal ). +adj( 'adoptive', '-', '-', normal ). +adj( 'adorable', '-', '-', normal ). +adj( 'adoring', '-', '-', normal ). +adj( 'adrenal', '-', '-', normal ). +adj( 'adrift', '-', '-', pred ). +adj( 'adroit', '-', '-', normal ). +adj( 'adult', '-', '-', normal ). +adj( 'adulterous', '-', '-', normal ). +adj( 'advanced', '-', '-', normal ). +adj( 'advantageous', '-', '-', normal ). +adj( 'adventitious', '-', '-', normal ). +adj( 'adventuresome', '-', '-', normal ). +adj( 'adventurous', '-', '-', normal ). +adj( 'adverbial', '-', '-', normal ). +adj( 'adverse', '-', '-', normal ). +adj( 'advisable', '-', '-', normal ). +adj( 'advised', '-', '-', normal ). +adj( 'advisory', '-', '-', normal ). +adj( 'aerial', '-', '-', normal ). +adj( 'aerodynamic', '-', '-', normal ). +adj( 'aesthetic', '-', '-', normal ). +adj( 'aesthetical', '-', '-', normal ). +adj( 'affable', '-', '-', normal ). +adj( 'affected', '-', '-', normal ). +adj( 'affecting', '-', '-', normal ). +adj( 'affectionate', '-', '-', normal ). +adj( 'affirmative', '-', '-', normal ). +adj( 'affluent', '-', '-', normal ). +adj( 'afire', '-', '-', pred ). +adj( 'aflame', '-', '-', pred ). +adj( 'afloat', '-', '-', pred ). +adj( 'afoot', '-', '-', pred ). +adj( 'aforesaid', '-', '-', normal ). +adj( 'afraid', '-', '-', pred ). +adj( 'after', '-', '-', normal ). +adj( 'agape', '-', '-', pred ). +adj( 'age-long', '-', '-', normal ). +adj( 'age-old', '-', '-', normal ). +adj( 'aged', '-', '-', attr ). +adj( 'aged', '-', '-', pred ). +adj( 'ageless', '-', '-', normal ). +adj( 'agglomerate', '-', '-', normal ). +adj( 'agglutinative', '-', '-', normal ). +adj( 'aggressive', '-', '-', normal ). +adj( 'aghast', '-', '-', pred ). +adj( 'agile', '-', '-', normal ). +adj( 'agitated', '-', '-', normal ). +adj( 'agitating', '-', '-', normal ). +adj( 'aglow', '-', '-', pred ). +adj( 'agnostic', '-', '-', normal ). +adj( 'agog', '-', '-', pred ). +adj( 'agonized', '-', '-', normal ). +adj( 'agonizing', '-', '-', normal ). +adj( 'agrarian', '-', '-', normal ). +adj( 'agreeable', '-', '-', normal ). +adj( 'agricultural', '-', '-', normal ). +adj( 'aground', '-', '-', pred ). +adj( 'aimless', '-', '-', normal ). +adj( 'air-conditioned', '-', '-', normal ). +adj( 'air-cooled', '-', '-', normal ). +adj( 'air-minded', '-', '-', normal ). +adj( 'air-sick', '-', '-', normal ). +adj( 'air-to-air', '-', '-', normal ). +adj( 'air-to-ground', '-', '-', normal ). +adj( 'airborne', '-', '-', normal ). +adj( 'airless', '-', '-', normal ). +adj( 'airtight', '-', '-', normal ). +adj( 'airworthy', '-', '-', normal ). +adj( 'airy', '-', '-', normal ). +adj( 'ajar', '-', '-', pred ). +adj( 'akin', '-', '-', pred ). +adj( 'alabaster', '-', '-', normal ). +adj( 'alarming', '-', '-', normal ). +adj( 'alcoholic', '-', '-', normal ). +adj( 'aldermanic', '-', '-', normal ). +adj( 'alee', '-', '-', pred ). +adj( 'alert', '-', '-', normal ). +adj( 'alexic', '-', '-', normal ). +adj( 'alfresco', '-', '-', normal ). +adj( 'algebraic', '-', '-', normal ). +adj( 'algebraical', '-', '-', normal ). +adj( 'alien', '-', '-', normal ). +adj( 'alight', '-', '-', pred ). +adj( 'alike', '-', '-', pred ). +adj( 'alimentary', '-', '-', normal ). +adj( 'alive', '-', '-', pred ). +adj( 'alkaline', '-', '-', normal ). +adj( 'all', '-', '-', normal ). +adj( 'all-mains', '-', '-', attr ). +adj( 'all-round', '-', '-', normal ). +adj( 'allegoric', '-', '-', normal ). +adj( 'allegorical', '-', '-', normal ). +adj( 'allegretto', '-', '-', normal ). +adj( 'allegro', '-', '-', normal ). +adj( 'allergic', '-', '-', normal ). +adj( 'alliterative', '-', '-', normal ). +adj( 'allowable', '-', '-', normal ). +adj( 'alluring', '-', '-', normal ). +adj( 'allusive', '-', '-', normal ). +adj( 'alluvial', '-', '-', normal ). +adj( 'almighty', '-', '-', normal ). +adj( 'almond-eyed', '-', '-', normal ). +adj( 'alone', '-', '-', pred ). +adj( 'aloof', '-', '-', normal ). +adj( 'alphabetical', '-', '-', normal ). +adj( 'alpine', '-', '-', normal ). +adj( 'alright', '-', '-', normal ). +adj( 'alterable', '-', '-', normal ). +adj( 'alternate', '-', '-', normal ). +adj( 'alternative', '-', '-', normal ). +adj( 'altruistic', '-', '-', normal ). +adj( 'alveolar', '-', '-', normal ). +adj( 'amateurish', '-', '-', normal ). +adj( 'amatory', '-', '-', normal ). +adj( 'amazing', '-', '-', normal ). +adj( 'ambassadorial', '-', '-', normal ). +adj( 'ambidextrous', '-', '-', normal ). +adj( 'ambient', '-', '-', normal ). +adj( 'ambiguous', '-', '-', normal ). +adj( 'ambitious', '-', '-', normal ). +adj( 'ambivalent', '-', '-', normal ). +adj( 'amenable', '-', '-', normal ). +adj( 'amendable', '-', '-', normal ). +adj( 'amiable', '-', '-', normal ). +adj( 'amicable', '-', '-', normal ). +adj( 'amiss', '-', '-', pred ). +adj( 'ammoniated', '-', '-', normal ). +adj( 'amoebic', '-', '-', normal ). +adj( 'amoral', '-', '-', normal ). +adj( 'amorous', '-', '-', normal ). +adj( 'amorphous', '-', '-', normal ). +adj( 'amphibious', '-', '-', normal ). +adj( 'ample', 'ampler', 'amplest', normal ). +adj( 'amusing', '-', '-', normal ). +adj( 'anachronistic', '-', '-', normal ). +adj( 'anaemic', '-', '-', normal ). +adj( 'anaesthetic', '-', '-', normal ). +adj( 'anal', '-', '-', normal ). +adj( 'analogous', '-', '-', normal ). +adj( 'analytic', '-', '-', normal ). +adj( 'analytical', '-', '-', normal ). +adj( 'anapaestic', '-', '-', normal ). +adj( 'anarchic', '-', '-', normal ). +adj( 'anatomical', '-', '-', normal ). +adj( 'ancestral', '-', '-', normal ). +adj( 'ancient', '-', '-', normal ). +adj( 'ancillary', '-', '-', normal ). +adj( 'andante', '-', '-', normal ). +adj( 'anecdotal', '-', '-', normal ). +adj( 'aneroid', '-', '-', normal ). +adj( 'anesthetic', '-', '-', normal ). +adj( 'angelic', '-', '-', normal ). +adj( 'angry', 'angrier', 'angriest', normal ). +adj( 'anguished', '-', '-', normal ). +adj( 'angular', '-', '-', normal ). +adj( 'animate', '-', '-', normal ). +adj( 'animatedly', '-', '-', normal ). +adj( 'annoying', '-', '-', normal ). +adj( 'annual', '-', '-', normal ). +adj( 'annular', '-', '-', normal ). +adj( 'anodyne', '-', '-', normal ). +adj( 'anomalous', '-', '-', normal ). +adj( 'anonymous', '-', '-', normal ). +adj( 'another', '-', '-', normal ). +adj( 'answerable', '-', '-', normal ). +adj( 'antagonistic', '-', '-', normal ). +adj( 'antarctic', '-', '-', normal ). +adj( 'antecedent', '-', '-', normal ). +adj( 'antediluvian', '-', '-', normal ). +adj( 'antenatal', '-', '-', normal ). +adj( 'antenuptial', '-', '-', normal ). +adj( 'antepenultimate', '-', '-', normal ). +adj( 'anterior', '-', '-', normal ). +adj( 'anthropoid', '-', '-', normal ). +adj( 'anthropological', '-', '-', normal ). +adj( 'anti-semite', '-', '-', normal ). +adj( 'anti-semitic', '-', '-', normal ). +adj( 'anti-aircraft', '-', '-', normal ). +adj( 'anti-personnel', '-', '-', normal ). +adj( 'antibiotic', '-', '-', normal ). +adj( 'anticipatory', '-', '-', normal ). +adj( 'antipathetic', '-', '-', normal ). +adj( 'antiquarian', '-', '-', normal ). +adj( 'antiquated', '-', '-', normal ). +adj( 'antique', '-', '-', normal ). +adj( 'antiseptic', '-', '-', normal ). +adj( 'antisocial', '-', '-', normal ). +adj( 'antitank', '-', '-', attr ). +adj( 'antithetic', '-', '-', normal ). +adj( 'antithetical', '-', '-', normal ). +adj( 'antitrade', '-', '-', normal ). +adj( 'anxious', '-', '-', normal ). +adj( 'any', '-', '-', normal ). +adj( 'apathetic', '-', '-', normal ). +adj( 'aperient', '-', '-', normal ). +adj( 'aphrodisiac', '-', '-', normal ). +adj( 'apish', '-', '-', normal ). +adj( 'apocalyptic', '-', '-', normal ). +adj( 'apocryphal', '-', '-', normal ). +adj( 'apologetic', '-', '-', normal ). +adj( 'apoplectic', '-', '-', normal ). +adj( 'apostate', '-', '-', normal ). +adj( 'apostolic', '-', '-', normal ). +adj( 'appalling', '-', '-', normal ). +adj( 'apparent', '-', '-', normal ). +adj( 'appealing', '-', '-', normal ). +adj( 'appellant', '-', '-', normal ). +adj( 'appetizing', '-', '-', normal ). +adj( 'applicable', '-', '-', normal ). +adj( 'applied', '-', '-', normal ). +adj( 'apposite', '-', '-', normal ). +adj( 'appreciable', '-', '-', normal ). +adj( 'appreciative', '-', '-', normal ). +adj( 'apprehensible', '-', '-', normal ). +adj( 'apprehensive', '-', '-', normal ). +adj( 'approachable', '-', '-', normal ). +adj( 'appropriate', '-', '-', normal ). +adj( 'approximate', '-', '-', normal ). +adj( 'apr`es-ski', '-', '-', attr ). +adj( 'apropos', '-', '-', pred ). +adj( 'apt', 'apter', 'aptest', normal ). +adj( 'aquatic', '-', '-', normal ). +adj( 'aqueous', '-', '-', normal ). +adj( 'aquiline', '-', '-', normal ). +adj( 'arable', '-', '-', normal ). +adj( 'arbitrary', '-', '-', normal ). +adj( 'arboreal', '-', '-', normal ). +adj( 'arcane', '-', '-', normal ). +adj( 'arch', '-', '-', attr ). +adj( 'archaeological', '-', '-', normal ). +adj( 'archaic', '-', '-', normal ). +adj( 'archetypal', '-', '-', normal ). +adj( 'architectural', '-', '-', normal ). +adj( 'arctic', '-', '-', normal ). +adj( 'ardent', '-', '-', normal ). +adj( 'arduous', '-', '-', normal ). +adj( 'argent', '-', '-', normal ). +adj( 'arguable', '-', '-', normal ). +adj( 'argumentative', '-', '-', normal ). +adj( 'arid', '-', '-', normal ). +adj( 'aristocratic', '-', '-', normal ). +adj( 'arithmetical', '-', '-', normal ). +adj( 'armorial', '-', '-', normal ). +adj( 'armoured', '-', '-', normal ). +adj( 'aromatic', '-', '-', normal ). +adj( 'arrant', '-', '-', normal ). +adj( 'arresting', '-', '-', normal ). +adj( 'arrogant', '-', '-', normal ). +adj( 'arterial', '-', '-', normal ). +adj( 'artesian', '-', '-', normal ). +adj( 'artful', '-', '-', normal ). +adj( 'arthritic', '-', '-', normal ). +adj( 'articulate', '-', '-', normal ). +adj( 'artificial', '-', '-', normal ). +adj( 'artistic', '-', '-', normal ). +adj( 'artless', '-', '-', normal ). +adj( 'arty', '-', '-', normal ). +adj( 'arty-crafty', '-', '-', normal ). +adj( 'ascertainable', '-', '-', normal ). +adj( 'ascetic', '-', '-', normal ). +adj( 'ascorbic', '-', '-', normal ). +adj( 'ascribable', '-', '-', normal ). +adj( 'aseptic', '-', '-', normal ). +adj( 'asexual', '-', '-', normal ). +adj( 'ashamed', '-', '-', pred ). +adj( 'ashen', '-', '-', normal ). +adj( 'ashy', '-', '-', normal ). +adj( 'asinine', '-', '-', normal ). +adj( 'askew', '-', '-', pred ). +adj( 'asleep', '-', '-', pred ). +adj( 'aspectual', '-', '-', normal ). +adj( 'assailable', '-', '-', normal ). +adj( 'assertive', '-', '-', normal ). +adj( 'assiduous', '-', '-', normal ). +adj( 'assignable', '-', '-', normal ). +adj( 'associate', '-', '-', normal ). +adj( 'assorted', '-', '-', normal ). +adj( 'assured', '-', '-', normal ). +adj( 'asthmatic', '-', '-', normal ). +adj( 'astigmatic', '-', '-', normal ). +adj( 'astir', '-', '-', pred ). +adj( 'astonishing', '-', '-', normal ). +adj( 'astral', '-', '-', normal ). +adj( 'astray', '-', '-', pred ). +adj( 'astride', '-', '-', pred ). +adj( 'astringent', '-', '-', normal ). +adj( 'astrological', '-', '-', normal ). +adj( 'astronomical', '-', '-', normal ). +adj( 'astute', '-', '-', normal ). +adj( 'asymmetric', '-', '-', normal ). +adj( 'asymmetrical', '-', '-', normal ). +adj( 'asymptotic', '-', '-', normal ). +adj( 'atavistic', '-', '-', normal ). +adj( 'atheistic', '-', '-', normal ). +adj( 'athirst', '-', '-', pred ). +adj( 'athletic', '-', '-', normal ). +adj( 'atmospheric', '-', '-', normal ). +adj( 'atomic', '-', '-', normal ). +adj( 'atonal', '-', '-', normal ). +adj( 'atrabilious', '-', '-', normal ). +adj( 'atrocious', '-', '-', normal ). +adj( 'attainable', '-', '-', normal ). +adj( 'attendant', '-', '-', normal ). +adj( 'attentive', '-', '-', normal ). +adj( 'attractive', '-', '-', normal ). +adj( 'attributable', '-', '-', normal ). +adj( 'attributive', '-', '-', normal ). +adj( 'atypical', '-', '-', normal ). +adj( 'au fait', '-', '-', pred ). +adj( 'auburn', '-', '-', normal ). +adj( 'audacious', '-', '-', normal ). +adj( 'audible', '-', '-', normal ). +adj( 'audio-lingual', '-', '-', normal ). +adj( 'auditory', '-', '-', normal ). +adj( 'august', '-', '-', normal ). +adj( 'aural', '-', '-', normal ). +adj( 'auricular', '-', '-', normal ). +adj( 'auriferous', '-', '-', normal ). +adj( 'auspicious', '-', '-', normal ). +adj( 'austere', '-', '-', normal ). +adj( 'authentic', '-', '-', normal ). +adj( 'authoritarian', '-', '-', normal ). +adj( 'authoritative', '-', '-', normal ). +adj( 'autistic', '-', '-', normal ). +adj( 'autobiographic', '-', '-', normal ). +adj( 'autobiographical', '-', '-', normal ). +adj( 'autocratic', '-', '-', normal ). +adj( 'automatic', '-', '-', normal ). +adj( 'autonomous', '-', '-', normal ). +adj( 'autumnal', '-', '-', normal ). +adj( 'auxiliary', '-', '-', normal ). +adj( 'available', '-', '-', normal ). +adj( 'avaricious', '-', '-', normal ). +adj( 'average', '-', '-', normal ). +adj( 'averse', '-', '-', normal ). +adj( 'avid', '-', '-', normal ). +adj( 'avoidable', '-', '-', normal ). +adj( 'avuncular', '-', '-', normal ). +adj( 'awake', '-', '-', pred ). +adj( 'aware', '-', '-', pred ). +adj( 'awash', '-', '-', pred ). +adj( 'away', '-', '-', normal ). +adj( 'awe-inspiring', '-', '-', normal ). +adj( 'awe-stricken', '-', '-', normal ). +adj( 'awe-struck', '-', '-', normal ). +adj( 'awesome', '-', '-', normal ). +adj( 'awful', '-', '-', normal ). +adj( 'awkward', '-', '-', normal ). +adj( 'awry', '-', '-', pred ). +adj( 'axiomatic', '-', '-', normal ). +adj( 'azure', '-', '-', normal ). +adj( 'baby-faced', '-', '-', normal ). +adj( 'babyish', '-', '-', normal ). +adj( 'bacchanal', '-', '-', normal ). +adj( 'bacchanalian', '-', '-', normal ). +adj( 'back-breaking', '-', '-', normal ). +adj( 'backhand', '-', '-', normal ). +adj( 'backhanded', '-', '-', normal ). +adj( 'backless', '-', '-', normal ). +adj( 'backmost', '-', '-', normal ). +adj( 'backstair', '-', '-', normal ). +adj( 'backward', '-', '-', normal ). +adj( 'backwards', '-', '-', normal ). +adj( 'bacterial', '-', '-', normal ). +adj( 'bad', 'worse', 'worst', normal ). +adj( 'badly-behaved', '-', '-', normal ). +adj( 'baggy', '-', '-', normal ). +adj( 'baking-hot', '-', '-', normal ). +adj( 'balconied', '-', '-', normal ). +adj( 'bald', 'balder', 'baldest', normal ). +adj( 'baleful', '-', '-', normal ). +adj( 'ballistic', '-', '-', normal ). +adj( 'bally', '-', '-', normal ). +adj( 'balmy', 'balmier', 'balmiest', normal ). +adj( 'banal', '-', '-', normal ). +adj( 'bandy', 'bandier', 'bandiest', normal ). +adj( 'bandy-legged', '-', '-', normal ). +adj( 'baneful', '-', '-', normal ). +adj( 'bankrupt', '-', '-', normal ). +adj( 'bantering', '-', '-', normal ). +adj( 'baptismal', '-', '-', normal ). +adj( 'barbarian', '-', '-', normal ). +adj( 'barbaric', '-', '-', normal ). +adj( 'barbarous', '-', '-', normal ). +adj( 'barbed', '-', '-', normal ). +adj( 'bardic', '-', '-', normal ). +adj( 'bare', 'barer', 'barest', normal ). +adj( 'barebacked', '-', '-', normal ). +adj( 'barefaced', '-', '-', normal ). +adj( 'barefooted', '-', '-', normal ). +adj( 'bareheaded', '-', '-', normal ). +adj( 'barelegged', '-', '-', normal ). +adj( 'barmy', '-', '-', normal ). +adj( 'barometric', '-', '-', normal ). +adj( 'baronial', '-', '-', normal ). +adj( 'baroque', '-', '-', normal ). +adj( 'barrelled', '-', '-', normal ). +adj( 'barren', '-', '-', normal ). +adj( 'basal', '-', '-', normal ). +adj( 'base', 'baser', 'basest', normal ). +adj( 'baseless', '-', '-', normal ). +adj( 'bashful', '-', '-', normal ). +adj( 'basic', '-', '-', normal ). +adj( 'bass', '-', '-', normal ). +adj( 'bats', '-', '-', pred ). +adj( 'batty', '-', '-', normal ). +adj( 'bawdy', 'bawdier', 'bawdiest', normal ). +adj( 'bay', '-', '-', normal ). +adj( 'beady', '-', '-', normal ). +adj( 'bearable', '-', '-', normal ). +adj( 'bearded', '-', '-', normal ). +adj( 'beardless', '-', '-', normal ). +adj( 'bearish', '-', '-', normal ). +adj( 'beastly', 'beastlier', 'beastliest', normal ). +adj( 'beat', '-', '-', attr ). +adj( 'beaten', '-', '-', normal ). +adj( 'beatific', '-', '-', normal ). +adj( 'beauteous', '-', '-', normal ). +adj( 'beautiful', '-', '-', normal ). +adj( 'becalmed', '-', '-', pred ). +adj( 'becoming', '-', '-', normal ). +adj( 'bedaubed', '-', '-', pred ). +adj( 'bedded', '-', '-', affix ). +adj( 'bedecked', '-', '-', pred ). +adj( 'bedewed', '-', '-', pred ). +adj( 'bedimmed', '-', '-', pred ). +adj( 'bedraggled', '-', '-', pred ). +adj( 'bedridden', '-', '-', normal ). +adj( 'bedroomed', '-', '-', normal ). +adj( 'beefy', 'beefier', 'beefiest', normal ). +adj( 'beery', 'beerier', 'beeriest', normal ). +adj( 'beetle-browed', '-', '-', normal ). +adj( 'befitting', '-', '-', normal ). +adj( 'befogged', '-', '-', pred ). +adj( 'beforehand', '-', '-', pred ). +adj( 'beggarly', '-', '-', normal ). +adj( 'begrimed', '-', '-', pred ). +adj( 'behaved', '-', '-', affix ). +adj( 'behindhand', '-', '-', pred ). +adj( 'beholden', '-', '-', pred ). +adj( 'bejewelled', '-', '-', normal ). +adj( 'belated', '-', '-', normal ). +adj( 'believable', '-', '-', normal ). +adj( 'bell-bottomed', '-', '-', normal ). +adj( 'bellicose', '-', '-', normal ). +adj( 'bellied', '-', '-', affix ). +adj( 'belligerent', '-', '-', normal ). +adj( 'beloved', '-', '-', normal ). +adj( 'bemused', '-', '-', pred ). +adj( 'beneficed', '-', '-', normal ). +adj( 'beneficent', '-', '-', normal ). +adj( 'beneficial', '-', '-', normal ). +adj( 'benevolent', '-', '-', normal ). +adj( 'benighted', '-', '-', normal ). +adj( 'benign', '-', '-', normal ). +adj( 'benignant', '-', '-', normal ). +adj( 'bent', '-', '-', pred ). +adj( 'benumbed', '-', '-', pred ). +adj( 'berserk', '-', '-', pred ). +adj( 'beseeching', '-', '-', normal ). +adj( 'besotted', '-', '-', normal ). +adj( 'bespangled', '-', '-', pred ). +adj( 'bespattered', '-', '-', pred ). +adj( 'bespectacled', '-', '-', normal ). +adj( 'bestial', '-', '-', normal ). +adj( 'bewildering', '-', '-', normal ). +adj( 'bewitching', '-', '-', normal ). +adj( 'biblical', '-', '-', normal ). +adj( 'bibulous', '-', '-', normal ). +adj( 'bicameral', '-', '-', normal ). +adj( 'bicentennial', '-', '-', normal ). +adj( 'biddable', '-', '-', normal ). +adj( 'biennial', '-', '-', normal ). +adj( 'bifocal', '-', '-', normal ). +adj( 'bifurcate', '-', '-', normal ). +adj( 'bifurcated', '-', '-', normal ). +adj( 'big', 'bigger', 'biggest', normal ). +adj( 'big-boned', '-', '-', normal ). +adj( 'bigamous', '-', '-', normal ). +adj( 'bigoted', '-', '-', normal ). +adj( 'bijou', '-', '-', normal ). +adj( 'bilabial', '-', '-', normal ). +adj( 'bilateral', '-', '-', normal ). +adj( 'bilingual', '-', '-', normal ). +adj( 'bilious', '-', '-', normal ). +adj( 'billion', '-', '-', normal ). +adj( 'billionth', '-', '-', normal ). +adj( 'billowy', '-', '-', normal ). +adj( 'bimetallic', '-', '-', normal ). +adj( 'binary', '-', '-', normal ). +adj( 'binding', '-', '-', normal ). +adj( 'binomial', '-', '-', normal ). +adj( 'biodegradable', '-', '-', normal ). +adj( 'biographic', '-', '-', normal ). +adj( 'biographical', '-', '-', normal ). +adj( 'biological', '-', '-', normal ). +adj( 'bipartisan', '-', '-', normal ). +adj( 'bird\'s-eye', '-', '-', attr ). +adj( 'bisexual', '-', '-', normal ). +adj( 'bitchy', 'bitchier', 'bitchiest', normal ). +adj( 'biting', '-', '-', normal ). +adj( 'bitter', '-', '-', normal ). +adj( 'bitter-sweet', '-', '-', normal ). +adj( 'bituminous', '-', '-', normal ). +adj( 'bizarre', '-', '-', normal ). +adj( 'bizonal', '-', '-', normal ). +adj( 'black', 'blacker', 'blackest', normal ). +adj( 'blackguardly', '-', '-', normal ). +adj( 'blackish', '-', '-', normal ). +adj( 'blackwater', '-', '-', attr ). +adj( 'blameless', '-', '-', normal ). +adj( 'blameworthy', '-', '-', normal ). +adj( 'bland', 'blander', 'blandest', normal ). +adj( 'blank', '-', '-', normal ). +adj( 'blas_e', '-', '-', normal ). +adj( 'blasphemous', '-', '-', normal ). +adj( 'blasted', '-', '-', attr ). +adj( 'blatant', '-', '-', normal ). +adj( 'blazing', '-', '-', normal ). +adj( 'bleak', 'bleaker', 'bleakest', normal ). +adj( 'bleary', '-', '-', normal ). +adj( 'bleary-eyed', '-', '-', normal ). +adj( 'blessed', '-', '-', normal ). +adj( 'blind', '-', '-', normal ). +adj( 'blindfold', '-', '-', normal ). +adj( 'blinking', '-', '-', normal ). +adj( 'blissful', '-', '-', normal ). +adj( 'blithe', '-', '-', normal ). +adj( 'blithering', '-', '-', normal ). +adj( 'blithesome', '-', '-', normal ). +adj( 'bloated', '-', '-', normal ). +adj( 'blond', 'blonder', 'blondest', normal ). +adj( 'blonde', '-', '-', normal ). +adj( 'bloodcurdling', '-', '-', normal ). +adj( 'bloodless', '-', '-', normal ). +adj( 'bloodshot', '-', '-', normal ). +adj( 'bloodstained', '-', '-', normal ). +adj( 'bloodthirsty', '-', '-', normal ). +adj( 'bloody', 'bloodier', 'bloodiest', normal ). +adj( 'bloody-minded', '-', '-', normal ). +adj( 'blooming', '-', '-', normal ). +adj( 'blotto', '-', '-', pred ). +adj( 'blowzy', '-', '-', normal ). +adj( 'blue', 'bluer', 'bluest', normal ). +adj( 'blue-collar', '-', '-', normal ). +adj( 'bluff', '-', '-', normal ). +adj( 'bluish', '-', '-', normal ). +adj( 'blunt', 'blunter', 'bluntest', normal ). +adj( 'blushing', '-', '-', normal ). +adj( 'blustery', '-', '-', normal ). +adj( 'boastful', '-', '-', normal ). +adj( 'bodied', '-', '-', affix ). +adj( 'bodily', '-', '-', normal ). +adj( 'boggy', 'boggier', 'boggiest', normal ). +adj( 'bogus', '-', '-', normal ). +adj( 'bohemian', '-', '-', normal ). +adj( 'boisterous', '-', '-', normal ). +adj( 'bold', 'bolder', 'boldest', normal ). +adj( 'bolshy', '-', '-', normal ). +adj( 'bomb-proof', '-', '-', normal ). +adj( 'bombastic', '-', '-', normal ). +adj( 'bona fide', '-', '-', normal ). +adj( 'bone-dry', '-', '-', normal ). +adj( 'bone-idle', '-', '-', normal ). +adj( 'bone-lazy', '-', '-', normal ). +adj( 'boneless', '-', '-', normal ). +adj( 'bonkers', '-', '-', pred ). +adj( 'bonny', 'bonnier', 'bonniest', normal ). +adj( 'bony', 'bonier', 'boniest', normal ). +adj( 'bookable', '-', '-', normal ). +adj( 'bookish', '-', '-', normal ). +adj( 'boon', '-', '-', normal ). +adj( 'boorish', '-', '-', normal ). +adj( 'booted', '-', '-', normal ). +adj( 'bootless', '-', '-', normal ). +adj( 'boozy', 'boozier', 'booziest', normal ). +adj( 'boracic', '-', '-', normal ). +adj( 'boric', '-', '-', normal ). +adj( 'boring', '-', '-', normal ). +adj( 'bosky', '-', '-', normal ). +adj( 'boss-eyed', '-', '-', normal ). +adj( 'bossy', 'bossier', 'bossiest', normal ). +adj( 'botanical', '-', '-', normal ). +adj( 'both', '-', '-', normal ). +adj( 'bothersome', '-', '-', normal ). +adj( 'bottle-fed', '-', '-', normal ). +adj( 'bottle-green', '-', '-', normal ). +adj( 'bottomless', '-', '-', normal ). +adj( 'bouncing', '-', '-', normal ). +adj( 'bouncy', 'bouncier', 'bounciest', normal ). +adj( 'bound', '-', '-', normal ). +adj( 'bounden', '-', '-', normal ). +adj( 'boundless', '-', '-', normal ). +adj( 'bounteous', '-', '-', normal ). +adj( 'bountiful', '-', '-', normal ). +adj( 'bourgeois', '-', '-', normal ). +adj( 'bovine', '-', '-', normal ). +adj( 'boyish', '-', '-', normal ). +adj( 'brackish', '-', '-', normal ). +adj( 'brainless', '-', '-', normal ). +adj( 'brainwashed', '-', '-', normal ). +adj( 'brainy', 'brainier', 'brainiest', normal ). +adj( 'bran-new', '-', '-', normal ). +adj( 'branchy', 'branchier', 'branchiest', normal ). +adj( 'brand-new', '-', '-', normal ). +adj( 'brash', 'brasher', 'brashest', normal ). +adj( 'brassy', 'brassier', 'brassiest', normal ). +adj( 'brave', 'braver', 'bravest', normal ). +adj( 'brawny', 'brawnier', 'brawniest', normal ). +adj( 'brazen', '-', '-', normal ). +adj( 'brazen-faced', '-', '-', normal ). +adj( 'breakable', '-', '-', normal ). +adj( 'breakneck', '-', '-', normal ). +adj( 'breast-fed', '-', '-', normal ). +adj( 'breathless', '-', '-', normal ). +adj( 'breathtaking', '-', '-', normal ). +adj( 'breezy', 'breezier', 'breeziest', normal ). +adj( 'bribable', '-', '-', normal ). +adj( 'bridal', '-', '-', attr ). +adj( 'brief', 'briefer', 'briefest', normal ). +adj( 'bright', 'brighter', 'brightest', normal ). +adj( 'brilliant', '-', '-', normal ). +adj( 'brimful', '-', '-', normal ). +adj( 'brimfull', '-', '-', normal ). +adj( 'brindled', '-', '-', normal ). +adj( 'briny', 'brinier', 'briniest', normal ). +adj( 'brisk', 'brisker', 'briskest', normal ). +adj( 'bristly', 'bristlier', 'bristliest', normal ). +adj( 'brittle', '-', '-', normal ). +adj( 'broad', 'broader', 'broadest', normal ). +adj( 'broad-minded', '-', '-', normal ). +adj( 'broadcasting', '-', '-', normal ). +adj( 'broke', '-', '-', pred ). +adj( 'broken-hearted', '-', '-', normal ). +adj( 'bronchial', '-', '-', normal ). +adj( 'bronchitic', '-', '-', normal ). +adj( 'broody', 'broodier', 'broodiest', normal ). +adj( 'brotherly', '-', '-', normal ). +adj( 'brown', 'browner', 'brownest', normal ). +adj( 'brownish', '-', '-', normal ). +adj( 'brusque', '-', '-', normal ). +adj( 'brutal', '-', '-', normal ). +adj( 'brutish', '-', '-', normal ). +adj( 'bubbly', 'bubblier', 'bubbliest', normal ). +adj( 'bubonic', '-', '-', normal ). +adj( 'bucolic', '-', '-', normal ). +adj( 'budding', '-', '-', normal ). +adj( 'budgetary', '-', '-', normal ). +adj( 'built-in', '-', '-', normal ). +adj( 'built-up', '-', '-', normal ). +adj( 'bulbous', '-', '-', normal ). +adj( 'bulky', 'bulkier', 'bulkiest', normal ). +adj( 'bull-headed', '-', '-', normal ). +adj( 'bullet-headed', '-', '-', normal ). +adj( 'bulletproof', '-', '-', normal ). +adj( 'bully', '-', '-', normal ). +adj( 'bum', '-', '-', normal ). +adj( 'bumptious', '-', '-', normal ). +adj( 'bumpy', 'bumpier', 'bumpiest', normal ). +adj( 'bungaloid', '-', '-', normal ). +adj( 'buoyant', '-', '-', normal ). +adj( 'burdensome', '-', '-', normal ). +adj( 'bureaucratic', '-', '-', normal ). +adj( 'burglar-proof', '-', '-', normal ). +adj( 'burglarious', '-', '-', normal ). +adj( 'burly', 'burlier', 'burliest', normal ). +adj( 'burning', '-', '-', normal ). +adj( 'bushy', '-', '-', normal ). +adj( 'businesslike', '-', '-', normal ). +adj( 'busy', 'busier', 'busiest', normal ). +adj( 'butch', '-', '-', normal ). +adj( 'buttoned-up', '-', '-', normal ). +adj( 'buxom', '-', '-', normal ). +adj( 'bygone', '-', '-', normal ). +adj( 'cacophonous', '-', '-', normal ). +adj( 'cadaverous', '-', '-', normal ). +adj( 'caddish', '-', '-', normal ). +adj( 'cagey', '-', '-', normal ). +adj( 'calamitous', '-', '-', normal ). +adj( 'calculable', '-', '-', normal ). +adj( 'calculating', '-', '-', normal ). +adj( 'callous', '-', '-', normal ). +adj( 'callow', '-', '-', normal ). +adj( 'calm', 'calmer', 'calmest', normal ). +adj( 'calorific', '-', '-', normal ). +adj( 'camp', '-', '-', normal ). +adj( 'camphorated', '-', '-', normal ). +adj( 'cancerous', '-', '-', normal ). +adj( 'candid', '-', '-', normal ). +adj( 'candied', '-', '-', normal ). +adj( 'canine', '-', '-', normal ). +adj( 'cankerous', '-', '-', normal ). +adj( 'canned', '-', '-', normal ). +adj( 'cannibalistic', '-', '-', normal ). +adj( 'canny', 'cannier', 'canniest', normal ). +adj( 'canonical', '-', '-', normal ). +adj( 'canopied', '-', '-', normal ). +adj( 'cantankerous', '-', '-', normal ). +adj( 'capable', '-', '-', normal ). +adj( 'capacious', '-', '-', normal ). +adj( 'capital', '-', '-', normal ). +adj( 'capitalism', '-', '-', normal ). +adj( 'capitalistic', '-', '-', normal ). +adj( 'capricious', '-', '-', normal ). +adj( 'captious', '-', '-', normal ). +adj( 'captive', '-', '-', normal ). +adj( 'carbolic', '-', '-', normal ). +adj( 'carbonated', '-', '-', normal ). +adj( 'carbonic', '-', '-', normal ). +adj( 'carboniferous', '-', '-', normal ). +adj( 'cardiac', '-', '-', normal ). +adj( 'cardinal', '-', '-', normal ). +adj( 'carefree', '-', '-', normal ). +adj( 'careful', '-', '-', normal ). +adj( 'careladen', '-', '-', normal ). +adj( 'careless', '-', '-', normal ). +adj( 'caressing', '-', '-', normal ). +adj( 'careworn', '-', '-', normal ). +adj( 'carious', '-', '-', normal ). +adj( 'carmine', '-', '-', normal ). +adj( 'carnal', '-', '-', normal ). +adj( 'carnivorous', '-', '-', normal ). +adj( 'carpal', '-', '-', normal ). +adj( 'carroty', '-', '-', normal ). +adj( 'carsick', '-', '-', normal ). +adj( 'cartilaginous', '-', '-', normal ). +adj( 'case-hardened', '-', '-', normal ). +adj( 'cashable', '-', '-', normal ). +adj( 'cast-iron', '-', '-', normal ). +adj( 'cast-off', '-', '-', attr ). +adj( 'castellated', '-', '-', normal ). +adj( 'casual', '-', '-', normal ). +adj( 'casuistic', '-', '-', normal ). +adj( 'casuistical', '-', '-', normal ). +adj( 'cataclysmic', '-', '-', normal ). +adj( 'cataleptic', '-', '-', normal ). +adj( 'catalytic', '-', '-', normal ). +adj( 'catastrophic', '-', '-', normal ). +adj( 'catching', '-', '-', normal ). +adj( 'catchpenny', '-', '-', normal ). +adj( 'catchy', 'catchier', 'catchiest', normal ). +adj( 'categorical', '-', '-', normal ). +adj( 'catholic', '-', '-', normal ). +adj( 'cattish', '-', '-', normal ). +adj( 'catty', 'cattier', 'cattiest', normal ). +adj( 'causal', '-', '-', normal ). +adj( 'causative', '-', '-', normal ). +adj( 'causeless', '-', '-', normal ). +adj( 'caustic', '-', '-', normal ). +adj( 'cautionary', '-', '-', normal ). +adj( 'cautious', '-', '-', normal ). +adj( 'cavalier', '-', '-', normal ). +adj( 'cavernous', '-', '-', normal ). +adj( 'ceaseless', '-', '-', normal ). +adj( 'celebrated', '-', '-', normal ). +adj( 'celestial', '-', '-', normal ). +adj( 'cellular', '-', '-', normal ). +adj( 'censorious', '-', '-', normal ). +adj( 'centenarian', '-', '-', normal ). +adj( 'centenary', '-', '-', normal ). +adj( 'centennial', '-', '-', normal ). +adj( 'centigrade', '-', '-', normal ). +adj( 'central', '-', '-', normal ). +adj( 'centrifugal', '-', '-', normal ). +adj( 'centripetal', '-', '-', normal ). +adj( 'ceramic', '-', '-', normal ). +adj( 'cerebral', '-', '-', normal ). +adj( 'ceremonial', '-', '-', normal ). +adj( 'ceremonious', '-', '-', normal ). +adj( 'cerise', '-', '-', normal ). +adj( 'certain', '-', '-', normal ). +adj( 'certifiable', '-', '-', normal ). +adj( 'certificated', '-', '-', normal ). +adj( 'cerulean', '-', '-', normal ). +adj( 'cervical', '-', '-', normal ). +adj( 'chalky', 'chalkier', 'chalkiest', normal ). +adj( 'champion', '-', '-', normal ). +adj( 'chancy', '-', '-', normal ). +adj( 'changeable', '-', '-', normal ). +adj( 'changeful', '-', '-', normal ). +adj( 'changeless', '-', '-', normal ). +adj( 'chaotic', '-', '-', normal ). +adj( 'chapfallen', '-', '-', normal ). +adj( 'characteristic', '-', '-', normal ). +adj( 'characterless', '-', '-', normal ). +adj( 'chargeable', '-', '-', normal ). +adj( 'charismatic', '-', '-', normal ). +adj( 'charitable', '-', '-', normal ). +adj( 'charming', '-', '-', normal ). +adj( 'chary', '-', '-', normal ). +adj( 'chaste', '-', '-', normal ). +adj( 'chatty', 'chattier', 'chattiest', normal ). +adj( 'chauvinistic', '-', '-', normal ). +adj( 'cheap', 'cheaper', 'cheapest', normal ). +adj( 'cheapjack', '-', '-', normal ). +adj( 'checked', '-', '-', normal ). +adj( 'cheeked', '-', '-', affix ). +adj( 'cheeky', 'cheekier', 'cheekiest', normal ). +adj( 'cheerful', '-', '-', normal ). +adj( 'cheering', '-', '-', normal ). +adj( 'cheerless', '-', '-', normal ). +adj( 'cheery', '-', '-', normal ). +adj( 'cheeseparing', '-', '-', normal ). +adj( 'chemical', '-', '-', normal ). +adj( 'cherry', '-', '-', normal ). +adj( 'cherubic', '-', '-', normal ). +adj( 'chic', '-', '-', normal ). +adj( 'chichi', '-', '-', normal ). +adj( 'chicken-hearted', '-', '-', normal ). +adj( 'chief', '-', '-', normal ). +adj( 'chilblained', '-', '-', normal ). +adj( 'childish', '-', '-', normal ). +adj( 'childless', '-', '-', normal ). +adj( 'childlike', '-', '-', normal ). +adj( 'chill', '-', '-', normal ). +adj( 'chilly', 'chillier', 'chilliest', normal ). +adj( 'chimerical', '-', '-', normal ). +adj( 'chirpy', '-', '-', normal ). +adj( 'chivalrous', '-', '-', normal ). +adj( 'chock-a-block', '-', '-', normal ). +adj( 'chock-full', '-', '-', normal ). +adj( 'choice', '-', '-', normal ). +adj( 'choleric', '-', '-', normal ). +adj( 'choosey', '-', '-', normal ). +adj( 'choosy', 'choosier', 'choosiest', normal ). +adj( 'choppy', 'choppier', 'choppiest', normal ). +adj( 'choral', '-', '-', normal ). +adj( 'chromatic', '-', '-', normal ). +adj( 'chronic', '-', '-', normal ). +adj( 'chronological', '-', '-', normal ). +adj( 'chubby', 'chubbier', 'chubbiest', normal ). +adj( 'chummy', 'chummier', 'chummiest', normal ). +adj( 'chunky', 'chunkier', 'chunkiest', normal ). +adj( 'churlish', '-', '-', normal ). +adj( 'cigar-shaped', '-', '-', normal ). +adj( 'cinematic', '-', '-', normal ). +adj( 'circuitous', '-', '-', normal ). +adj( 'circular', '-', '-', normal ). +adj( 'circumspect', '-', '-', normal ). +adj( 'circumstantial', '-', '-', normal ). +adj( 'cissy', '-', '-', normal ). +adj( 'citric', '-', '-', normal ). +adj( 'citrous', '-', '-', normal ). +adj( 'civic', '-', '-', normal ). +adj( 'civil', '-', '-', normal ). +adj( 'civilian', '-', '-', normal ). +adj( 'clammy', 'clammier', 'clammiest', normal ). +adj( 'clamorous', '-', '-', normal ). +adj( 'clandestine', '-', '-', normal ). +adj( 'clangorous', '-', '-', normal ). +adj( 'clannish', '-', '-', normal ). +adj( 'class-conscious', '-', '-', normal ). +adj( 'classic', '-', '-', normal ). +adj( 'classical', '-', '-', normal ). +adj( 'classifiable', '-', '-', normal ). +adj( 'classified', '-', '-', normal ). +adj( 'classless', '-', '-', normal ). +adj( 'classy', 'classier', 'classiest', normal ). +adj( 'claustrophobic', '-', '-', normal ). +adj( 'clayey', '-', '-', normal ). +adj( 'clean', 'cleaner', 'cleanest', normal ). +adj( 'clean-bowled', '-', '-', normal ). +adj( 'clean-cut', '-', '-', normal ). +adj( 'clean-limbed', '-', '-', normal ). +adj( 'clean-living', '-', '-', normal ). +adj( 'clean-shaven', '-', '-', normal ). +adj( 'cleanly', 'cleanlier', 'cleanliest', normal ). +adj( 'clear', 'clearer', 'clearest', normal ). +adj( 'clear-headed', '-', '-', normal ). +adj( 'clear-sighted', '-', '-', normal ). +adj( 'clement', '-', '-', normal ). +adj( 'clerical', '-', '-', normal ). +adj( 'clever', 'cleverer', 'cleverest', normal ). +adj( 'climactic', '-', '-', normal ). +adj( 'climatic', '-', '-', normal ). +adj( 'clinical', '-', '-', normal ). +adj( 'clinker-built', '-', '-', normal ). +adj( 'clip-on', '-', '-', normal ). +adj( 'cliquish', '-', '-', normal ). +adj( 'cloggy', 'cloggier', 'cloggiest', normal ). +adj( 'close', 'closer', 'closest', normal ). +adj( 'close-cropped', '-', '-', normal ). +adj( 'close-cut', '-', '-', normal ). +adj( 'close-fisted', '-', '-', normal ). +adj( 'close-fitting', '-', '-', normal ). +adj( 'close-grained', '-', '-', normal ). +adj( 'close-hauled', '-', '-', normal ). +adj( 'close-set', '-', '-', normal ). +adj( 'closet', '-', '-', attr ). +adj( 'cloud-capped', '-', '-', normal ). +adj( 'cloudless', '-', '-', normal ). +adj( 'cloudy', 'cloudier', 'cloudiest', normal ). +adj( 'clownish', '-', '-', normal ). +adj( 'club-footed', '-', '-', normal ). +adj( 'clubbable', '-', '-', normal ). +adj( 'clumsy', 'clumsier', 'clumsiest', normal ). +adj( 'coarse', 'coarser', 'coarsest', normal ). +adj( 'coastal', '-', '-', normal ). +adj( 'coastwise', '-', '-', normal ). +adj( 'cock-a-hoop', '-', '-', normal ). +adj( 'cockeyed', '-', '-', normal ). +adj( 'cockney', '-', '-', normal ). +adj( 'cocksure', '-', '-', normal ). +adj( 'cocky', 'cockier', 'cockiest', normal ). +adj( 'coeducational', '-', '-', normal ). +adj( 'coercive', '-', '-', normal ). +adj( 'coeval', '-', '-', normal ). +adj( 'cogent', '-', '-', normal ). +adj( 'cognate', '-', '-', normal ). +adj( 'cognizant', '-', '-', normal ). +adj( 'coherent', '-', '-', normal ). +adj( 'cohesive', '-', '-', normal ). +adj( 'coincident', '-', '-', normal ). +adj( 'coincidental', '-', '-', normal ). +adj( 'cold', 'colder', 'coldest', normal ). +adj( 'cold-blooded', '-', '-', normal ). +adj( 'cold-hearted', '-', '-', normal ). +adj( 'collapsable', '-', '-', normal ). +adj( 'collapsible', '-', '-', normal ). +adj( 'collateral', '-', '-', normal ). +adj( 'collect', '-', '-', normal ). +adj( 'collected', '-', '-', normal ). +adj( 'collective', '-', '-', normal ). +adj( 'collegiate', '-', '-', normal ). +adj( 'colloquial', '-', '-', normal ). +adj( 'collusive', '-', '-', normal ). +adj( 'colonial', '-', '-', normal ). +adj( 'colonnaded', '-', '-', normal ). +adj( 'colossal', '-', '-', normal ). +adj( 'colour-blind', '-', '-', normal ). +adj( 'coloured', '-', '-', normal ). +adj( 'colourful', '-', '-', normal ). +adj( 'colourless', '-', '-', normal ). +adj( 'coltish', '-', '-', normal ). +adj( 'comatose', '-', '-', normal ). +adj( 'combatant', '-', '-', normal ). +adj( 'combative', '-', '-', normal ). +adj( 'combustible', '-', '-', normal ). +adj( 'come-at-able', '-', '-', normal ). +adj( 'comely', 'comelier', 'comeliest', normal ). +adj( 'comfortable', '-', '-', normal ). +adj( 'comfortless', '-', '-', normal ). +adj( 'comfy', 'comfier', 'comfiest', normal ). +adj( 'comic', '-', '-', normal ). +adj( 'comical', '-', '-', normal ). +adj( 'coming', '-', '-', normal ). +adj( 'commanding', '-', '-', normal ). +adj( 'commemorative', '-', '-', normal ). +adj( 'commendable', '-', '-', normal ). +adj( 'commensurable', '-', '-', normal ). +adj( 'commensurate', '-', '-', normal ). +adj( 'commercial', '-', '-', normal ). +adj( 'comminatory', '-', '-', normal ). +adj( 'commissioned', '-', '-', normal ). +adj( 'commodious', '-', '-', normal ). +adj( 'common', 'commoner', 'commonest', normal ). +adj( 'commonplace', '-', '-', normal ). +adj( 'communal', '-', '-', normal ). +adj( 'communicable', '-', '-', normal ). +adj( 'communicative', '-', '-', normal ). +adj( 'communist', '-', '-', normal ). +adj( 'commutable', '-', '-', normal ). +adj( 'compact', '-', '-', normal ). +adj( 'companionable', '-', '-', normal ). +adj( 'comparable', '-', '-', normal ). +adj( 'comparative', '-', '-', normal ). +adj( 'compassionate', '-', '-', normal ). +adj( 'compatible', '-', '-', normal ). +adj( 'compendious', '-', '-', normal ). +adj( 'compensatory', '-', '-', normal ). +adj( 'competent', '-', '-', normal ). +adj( 'competitive', '-', '-', normal ). +adj( 'complacent', '-', '-', normal ). +adj( 'complaisant', '-', '-', normal ). +adj( 'complementary', '-', '-', normal ). +adj( 'complete', '-', '-', normal ). +adj( 'complex', '-', '-', normal ). +adj( 'compliant', '-', '-', normal ). +adj( 'complicated', '-', '-', normal ). +adj( 'complimentary', '-', '-', normal ). +adj( 'component', '-', '-', normal ). +adj( 'compos mentis', '-', '-', normal ). +adj( 'composed', '-', '-', normal ). +adj( 'composite', '-', '-', normal ). +adj( 'compound', '-', '-', normal ). +adj( 'comprehensible', '-', '-', normal ). +adj( 'comprehensive', '-', '-', normal ). +adj( 'compulsive', '-', '-', normal ). +adj( 'compulsory', '-', '-', normal ). +adj( 'computational', '-', '-', normal ). +adj( 'concave', '-', '-', normal ). +adj( 'conceited', '-', '-', normal ). +adj( 'conceivable', '-', '-', normal ). +adj( 'concentrated', '-', '-', normal ). +adj( 'concentric', '-', '-', normal ). +adj( 'conceptual', '-', '-', normal ). +adj( 'concerned', '-', '-', normal ). +adj( 'concerted', '-', '-', normal ). +adj( 'concessive', '-', '-', normal ). +adj( 'conciliatory', '-', '-', normal ). +adj( 'concise', '-', '-', normal ). +adj( 'conclusive', '-', '-', normal ). +adj( 'concomitant', '-', '-', normal ). +adj( 'concordant', '-', '-', normal ). +adj( 'concrete', '-', '-', normal ). +adj( 'concurrent', '-', '-', normal ). +adj( 'condescending', '-', '-', normal ). +adj( 'condign', '-', '-', normal ). +adj( 'conditional', '-', '-', normal ). +adj( 'conditioned', '-', '-', normal ). +adj( 'conducive', '-', '-', normal ). +adj( 'conductive', '-', '-', normal ). +adj( 'confederate', '-', '-', normal ). +adj( 'confident', '-', '-', normal ). +adj( 'confidential', '-', '-', normal ). +adj( 'confiding', '-', '-', normal ). +adj( 'configured', '-', '-', normal ). +adj( 'confined', '-', '-', normal ). +adj( 'confirmed', '-', '-', normal ). +adj( 'conflicting', '-', '-', normal ). +adj( 'confluent', '-', '-', normal ). +adj( 'conformable', '-', '-', normal ). +adj( 'confounded', '-', '-', normal ). +adj( 'congenial', '-', '-', normal ). +adj( 'congenital', '-', '-', normal ). +adj( 'congested', '-', '-', normal ). +adj( 'conglomerate', '-', '-', normal ). +adj( 'congratulatory', '-', '-', normal ). +adj( 'congregational', '-', '-', normal ). +adj( 'congressional', '-', '-', normal ). +adj( 'congruent', '-', '-', normal ). +adj( 'congruous', '-', '-', normal ). +adj( 'conic', '-', '-', normal ). +adj( 'conical', '-', '-', normal ). +adj( 'coniferous', '-', '-', normal ). +adj( 'conjectural', '-', '-', normal ). +adj( 'conjoint', '-', '-', normal ). +adj( 'conjugal', '-', '-', normal ). +adj( 'conjunctive', '-', '-', normal ). +adj( 'connective', '-', '-', normal ). +adj( 'conning', '-', '-', attr ). +adj( 'connubial', '-', '-', normal ). +adj( 'conscience-smitten', '-', '-', normal ). +adj( 'conscientious', '-', '-', normal ). +adj( 'conscious', '-', '-', normal ). +adj( 'consecutive', '-', '-', normal ). +adj( 'consequent', '-', '-', normal ). +adj( 'consequential', '-', '-', normal ). +adj( 'conservative', '-', '-', normal ). +adj( 'considerable', '-', '-', normal ). +adj( 'considerate', '-', '-', normal ). +adj( 'consistent', '-', '-', normal ). +adj( 'consolable', '-', '-', normal ). +adj( 'consolatory', '-', '-', normal ). +adj( 'consonant', '-', '-', normal ). +adj( 'conspicuous', '-', '-', normal ). +adj( 'conspiratorial', '-', '-', normal ). +adj( 'constant', '-', '-', normal ). +adj( 'constipated', '-', '-', normal ). +adj( 'constituent', '-', '-', normal ). +adj( 'constitutional', '-', '-', normal ). +adj( 'constitutive', '-', '-', normal ). +adj( 'constrained', '-', '-', normal ). +adj( 'constructional', '-', '-', normal ). +adj( 'constructive', '-', '-', normal ). +adj( 'consular', '-', '-', normal ). +adj( 'consultative', '-', '-', normal ). +adj( 'consuming', '-', '-', normal ). +adj( 'consummate', '-', '-', normal ). +adj( 'consumptive', '-', '-', normal ). +adj( 'contagious', '-', '-', normal ). +adj( 'contemplative', '-', '-', normal ). +adj( 'contemporaneous', '-', '-', normal ). +adj( 'contemporary', '-', '-', normal ). +adj( 'contemptible', '-', '-', normal ). +adj( 'contemptuous', '-', '-', normal ). +adj( 'content', '-', '-', normal ). +adj( 'contented', '-', '-', normal ). +adj( 'contentious', '-', '-', normal ). +adj( 'conterminous', '-', '-', normal ). +adj( 'contextual', '-', '-', normal ). +adj( 'contiguous', '-', '-', normal ). +adj( 'continent', '-', '-', normal ). +adj( 'continental', '-', '-', normal ). +adj( 'contingent', '-', '-', normal ). +adj( 'continual', '-', '-', normal ). +adj( 'continuous', '-', '-', normal ). +adj( 'contraceptive', '-', '-', normal ). +adj( 'contractible', '-', '-', normal ). +adj( 'contractile', '-', '-', normal ). +adj( 'contractual', '-', '-', normal ). +adj( 'contradictory', '-', '-', normal ). +adj( 'contrapuntal', '-', '-', normal ). +adj( 'contrary', '-', '-', normal ). +adj( 'contrary', '-', '-', normal ). +adj( 'contributory', '-', '-', normal ). +adj( 'contrite', '-', '-', normal ). +adj( 'controllable', '-', '-', normal ). +adj( 'controversial', '-', '-', normal ). +adj( 'contumacious', '-', '-', normal ). +adj( 'contumelious', '-', '-', normal ). +adj( 'convalescent', '-', '-', normal ). +adj( 'convenient', '-', '-', normal ). +adj( 'conventional', '-', '-', normal ). +adj( 'convergent', '-', '-', normal ). +adj( 'conversant', '-', '-', normal ). +adj( 'conversational', '-', '-', normal ). +adj( 'converse', '-', '-', normal ). +adj( 'converted', '-', '-', normal ). +adj( 'convertible', '-', '-', normal ). +adj( 'convex', '-', '-', normal ). +adj( 'convincible', '-', '-', normal ). +adj( 'convincing', '-', '-', normal ). +adj( 'convivial', '-', '-', normal ). +adj( 'convoluted', '-', '-', normal ). +adj( 'convulsive', '-', '-', normal ). +adj( 'cool', 'cooler', 'coolest', normal ). +adj( 'cool-headed', '-', '-', normal ). +adj( 'cooperative', '-', '-', normal ). +adj( 'coordinate', '-', '-', normal ). +adj( 'copious', '-', '-', normal ). +adj( 'copper-bottomed', '-', '-', normal ). +adj( 'copulative', '-', '-', normal ). +adj( 'coquettish', '-', '-', normal ). +adj( 'coral', '-', '-', normal ). +adj( 'cordial', '-', '-', normal ). +adj( 'cordon bleu', '-', '-', normal ). +adj( 'corked', '-', '-', normal ). +adj( 'cornered', '-', '-', normal ). +adj( 'corny', 'cornier', 'corniest', normal ). +adj( 'coronary', '-', '-', normal ). +adj( 'corporal', '-', '-', normal ). +adj( 'corporate', '-', '-', normal ). +adj( 'corporeal', '-', '-', normal ). +adj( 'corpulent', '-', '-', normal ). +adj( 'correct', '-', '-', normal ). +adj( 'corrective', '-', '-', normal ). +adj( 'correlative', '-', '-', normal ). +adj( 'corresponding', '-', '-', normal ). +adj( 'corrigible', '-', '-', normal ). +adj( 'corroborative', '-', '-', normal ). +adj( 'corrosive', '-', '-', normal ). +adj( 'corrupt', '-', '-', normal ). +adj( 'corruptible', '-', '-', normal ). +adj( 'cortical', '-', '-', normal ). +adj( 'cosher', '-', '-', normal ). +adj( 'cosignatory', '-', '-', normal ). +adj( 'cosmetic', '-', '-', normal ). +adj( 'cosmic', '-', '-', normal ). +adj( 'cosmopolitan', '-', '-', normal ). +adj( 'costive', '-', '-', normal ). +adj( 'costly', 'costlier', 'costliest', normal ). +adj( 'cosy', 'cosier', 'cosiest', normal ). +adj( 'coterminous', '-', '-', normal ). +adj( 'couchant', '-', '-', normal ). +adj( 'countable', '-', '-', normal ). +adj( 'counter-revolutionary', '-', '-', normal ). +adj( 'counterfeit', '-', '-', normal ). +adj( 'countless', '-', '-', normal ). +adj( 'countrified', '-', '-', normal ). +adj( 'courageous', '-', '-', normal ). +adj( 'courteous', '-', '-', normal ). +adj( 'courtly', 'courtlier', 'courtliest', normal ). +adj( 'cousinly', '-', '-', normal ). +adj( 'covering', '-', '-', normal ). +adj( 'covert', '-', '-', normal ). +adj( 'covetous', '-', '-', normal ). +adj( 'cowardly', '-', '-', normal ). +adj( 'coy', 'coyer', 'coyest', normal ). +adj( 'cozy', 'cozier', 'coziest', normal ). +adj( 'crabbed', '-', '-', normal ). +adj( 'crackers', '-', '-', pred ). +adj( 'crafty', 'craftier', 'craftiest', normal ). +adj( 'cragged', '-', '-', normal ). +adj( 'craggy', 'craggier', 'craggiest', normal ). +adj( 'cram-full', '-', '-', normal ). +adj( 'cramped', '-', '-', normal ). +adj( 'cranial', '-', '-', normal ). +adj( 'cranky', 'crankier', 'crankiest', normal ). +adj( 'crannied', '-', '-', normal ). +adj( 'crass', '-', '-', normal ). +adj( 'craven', '-', '-', normal ). +adj( 'crazed', '-', '-', normal ). +adj( 'crazy', 'crazier', 'craziest', normal ). +adj( 'creaky', 'creakier', 'creakiest', normal ). +adj( 'creamy', 'creamier', 'creamiest', normal ). +adj( 'creative', '-', '-', normal ). +adj( 'credible', '-', '-', normal ). +adj( 'credit-worthy', '-', '-', normal ). +adj( 'creditable', '-', '-', normal ). +adj( 'credulous', '-', '-', normal ). +adj( 'creepy', 'creepier', 'creepiest', normal ). +adj( 'crenellated', '-', '-', normal ). +adj( 'crepuscular', '-', '-', normal ). +adj( 'crested', '-', '-', normal ). +adj( 'crestfallen', '-', '-', normal ). +adj( 'cretaceous', '-', '-', normal ). +adj( 'cretinous', '-', '-', normal ). +adj( 'criminal', '-', '-', normal ). +adj( 'crimson', '-', '-', normal ). +adj( 'crinkly', 'crinklier', 'crinkliest', normal ). +adj( 'crisp', 'crisper', 'crispest', normal ). +adj( 'crisscross', '-', '-', normal ). +adj( 'critical', '-', '-', normal ). +adj( 'crook-back', '-', '-', normal ). +adj( 'crook-backed', '-', '-', normal ). +adj( 'crooked', '-', '-', normal ). +adj( 'cross', '-', '-', normal ). +adj( 'cross-grained', '-', '-', normal ). +adj( 'crossbred', '-', '-', normal ). +adj( 'crosscountry', '-', '-', normal ). +adj( 'crosscut', '-', '-', normal ). +adj( 'crosseyed', '-', '-', normal ). +adj( 'crotchety', '-', '-', normal ). +adj( 'crowded', '-', '-', normal ). +adj( 'crowning', '-', '-', normal ). +adj( 'crucial', '-', '-', normal ). +adj( 'cruciform', '-', '-', normal ). +adj( 'crude', 'cruder', 'crudest', normal ). +adj( 'cruel', 'crueller', 'cruellest', normal ). +adj( 'crumbly', 'crumblier', 'crumbliest', normal ). +adj( 'crushing', '-', '-', normal ). +adj( 'crusted', '-', '-', normal ). +adj( 'crusty', 'crustier', 'crustiest', normal ). +adj( 'crying', '-', '-', attr ). +adj( 'cryptic', '-', '-', normal ). +adj( 'crystalline', '-', '-', normal ). +adj( 'cubic', '-', '-', normal ). +adj( 'cubical', '-', '-', normal ). +adj( 'cuddlesome', '-', '-', normal ). +adj( 'cuddly', 'cuddlier', 'cuddliest', normal ). +adj( 'culinary', '-', '-', normal ). +adj( 'culpable', '-', '-', normal ). +adj( 'cultivable', '-', '-', normal ). +adj( 'cultivated', '-', '-', normal ). +adj( 'cultural', '-', '-', normal ). +adj( 'cultured', '-', '-', normal ). +adj( 'cumbersome', '-', '-', normal ). +adj( 'cumbrous', '-', '-', normal ). +adj( 'cumulative', '-', '-', normal ). +adj( 'cuneiform', '-', '-', normal ). +adj( 'cunning', '-', '-', normal ). +adj( 'cupric', '-', '-', normal ). +adj( 'curable', '-', '-', normal ). +adj( 'curative', '-', '-', normal ). +adj( 'curious', '-', '-', normal ). +adj( 'curly', 'curlier', 'curliest', normal ). +adj( 'current', '-', '-', normal ). +adj( 'currish', '-', '-', normal ). +adj( 'cursed', '-', '-', normal ). +adj( 'cursive', '-', '-', normal ). +adj( 'cursory', '-', '-', normal ). +adj( 'curst', '-', '-', normal ). +adj( 'curt', '-', '-', normal ). +adj( 'cushy', 'cushier', 'cushiest', normal ). +adj( 'cussed', '-', '-', normal ). +adj( 'custodial', '-', '-', normal ). +adj( 'custom-built', '-', '-', normal ). +adj( 'custom-made', '-', '-', normal ). +adj( 'customary', '-', '-', normal ). +adj( 'cut-price', '-', '-', attr ). +adj( 'cut-rate', '-', '-', attr ). +adj( 'cut-throat', '-', '-', attr ). +adj( 'cute', 'cuter', 'cutest', normal ). +adj( 'cutting', '-', '-', normal ). +adj( 'cybernetic', '-', '-', normal ). +adj( 'cyclic', '-', '-', normal ). +adj( 'cyclical', '-', '-', normal ). +adj( 'cyclonic', '-', '-', normal ). +adj( 'cylindrical', '-', '-', normal ). +adj( 'cynical', '-', '-', normal ). +adj( 'd_ecollet_e', '-', '-', normal ). +adj( 'd_emod_e', '-', '-', normal ). +adj( 'dactylic', '-', '-', normal ). +adj( 'daft', 'dafter', 'daftest', normal ). +adj( 'daily', '-', '-', normal ). +adj( 'dainty', 'daintier', 'daintiest', normal ). +adj( 'damascene', '-', '-', normal ). +adj( 'damn', '-', '-', normal ). +adj( 'damnable', '-', '-', normal ). +adj( 'damned', '-', '-', normal ). +adj( 'damp', 'damper', 'dampest', normal ). +adj( 'dampish', '-', '-', normal ). +adj( 'dancing', '-', '-', normal ). +adj( 'dandified', '-', '-', normal ). +adj( 'dandy', '-', '-', normal ). +adj( 'dangerous', '-', '-', normal ). +adj( 'dank', 'danker', 'dankest', normal ). +adj( 'dapper', '-', '-', normal ). +adj( 'dapple-grey', '-', '-', normal ). +adj( 'daring', '-', '-', normal ). +adj( 'dark', 'darker', 'darkest', normal ). +adj( 'dashing', '-', '-', normal ). +adj( 'dastardly', '-', '-', normal ). +adj( 'datable', '-', '-', normal ). +adj( 'dated', '-', '-', normal ). +adj( 'dateless', '-', '-', normal ). +adj( 'dative', '-', '-', normal ). +adj( 'daughterly', '-', '-', normal ). +adj( 'dauntless', '-', '-', normal ). +adj( 'daylight-saving', '-', '-', normal ). +adj( 'daylong', '-', '-', normal ). +adj( 'de facto', '-', '-', normal ). +adj( 'de jure', '-', '-', normal ). +adj( 'de luxe', '-', '-', normal ). +adj( 'de rigeur', '-', '-', pred ). +adj( 'de trop', '-', '-', pred ). +adj( 'dead', '-', '-', normal ). +adj( 'deadlocked', '-', '-', normal ). +adj( 'deadly', 'deadlier', 'deadliest', normal ). +adj( 'deadpan', '-', '-', normal ). +adj( 'deaf', 'deafer', 'deafest', normal ). +adj( 'dear', 'dearer', 'dearest', normal ). +adj( 'deathless', '-', '-', normal ). +adj( 'deathlike', '-', '-', normal ). +adj( 'deathly', '-', '-', normal ). +adj( 'debatable', '-', '-', normal ). +adj( 'debonair', '-', '-', normal ). +adj( 'decadent', '-', '-', normal ). +adj( 'decasyllabic', '-', '-', normal ). +adj( 'deceitful', '-', '-', normal ). +adj( 'decent', '-', '-', normal ). +adj( 'deceptive', '-', '-', normal ). +adj( 'decided', '-', '-', normal ). +adj( 'deciduous', '-', '-', normal ). +adj( 'decimal', '-', '-', normal ). +adj( 'decipherable', '-', '-', normal ). +adj( 'decisive', '-', '-', normal ). +adj( 'deckle-edged', '-', '-', normal ). +adj( 'declamatory', '-', '-', normal ). +adj( 'declarable', '-', '-', normal ). +adj( 'decorative', '-', '-', normal ). +adj( 'decorous', '-', '-', normal ). +adj( 'decrepit', '-', '-', normal ). +adj( 'deductible', '-', '-', normal ). +adj( 'deductive', '-', '-', normal ). +adj( 'deep', 'deeper', 'deepest', normal ). +adj( 'deep-laid', '-', '-', normal ). +adj( 'deep-mined', '-', '-', normal ). +adj( 'deep-rooted', '-', '-', normal ). +adj( 'deep-sea', '-', '-', attr ). +adj( 'deep-seated', '-', '-', normal ). +adj( 'deep-water', '-', '-', attr ). +adj( 'defamatory', '-', '-', normal ). +adj( 'defective', '-', '-', normal ). +adj( 'defenceless', '-', '-', normal ). +adj( 'defensible', '-', '-', normal ). +adj( 'defensive', '-', '-', normal ). +adj( 'deferential', '-', '-', normal ). +adj( 'defiant', '-', '-', normal ). +adj( 'deficient', '-', '-', normal ). +adj( 'definable', '-', '-', normal ). +adj( 'definite', '-', '-', normal ). +adj( 'definitive', '-', '-', normal ). +adj( 'deflationary', '-', '-', normal ). +adj( 'deformed', '-', '-', normal ). +adj( 'deft', '-', '-', normal ). +adj( 'defunct', '-', '-', normal ). +adj( 'degenerate', '-', '-', normal ). +adj( 'delayed-action', '-', '-', normal ). +adj( 'delectable', '-', '-', normal ). +adj( 'deleterious', '-', '-', normal ). +adj( 'deliberate', '-', '-', normal ). +adj( 'deliberative', '-', '-', normal ). +adj( 'delicate', '-', '-', normal ). +adj( 'delicious', '-', '-', normal ). +adj( 'delightful', '-', '-', normal ). +adj( 'delinquent', '-', '-', normal ). +adj( 'deliquescent', '-', '-', normal ). +adj( 'delirious', '-', '-', normal ). +adj( 'delusive', '-', '-', normal ). +adj( 'demagogic', '-', '-', normal ). +adj( 'demented', '-', '-', normal ). +adj( 'democratic', '-', '-', normal ). +adj( 'demographic', '-', '-', normal ). +adj( 'demoniac', '-', '-', normal ). +adj( 'demoniacal', '-', '-', normal ). +adj( 'demonic', '-', '-', normal ). +adj( 'demonstrable', '-', '-', normal ). +adj( 'demonstrative', '-', '-', normal ). +adj( 'demotic', '-', '-', normal ). +adj( 'demure', '-', '-', normal ). +adj( 'denary', '-', '-', normal ). +adj( 'denatured', '-', '-', normal ). +adj( 'deniable', '-', '-', normal ). +adj( 'denominational', '-', '-', normal ). +adj( 'dense', 'denser', 'densest', normal ). +adj( 'dental', '-', '-', normal ). +adj( 'departed', '-', '-', normal ). +adj( 'departmental', '-', '-', normal ). +adj( 'dependable', '-', '-', normal ). +adj( 'dependent', '-', '-', normal ). +adj( 'depilatory', '-', '-', normal ). +adj( 'deplorable', '-', '-', normal ). +adj( 'depreciatory', '-', '-', normal ). +adj( 'depressive', '-', '-', normal ). +adj( 'deprived', '-', '-', normal ). +adj( 'derelict', '-', '-', normal ). +adj( 'derisive', '-', '-', normal ). +adj( 'derisory', '-', '-', normal ). +adj( 'derivative', '-', '-', normal ). +adj( 'derogatory', '-', '-', normal ). +adj( 'descriptive', '-', '-', normal ). +adj( 'desert', '-', '-', normal ). +adj( 'deserved', '-', '-', normal ). +adj( 'deserving', '-', '-', normal ). +adj( 'designate', '-', '-', normal ). +adj( 'designing', '-', '-', normal ). +adj( 'desirable', '-', '-', normal ). +adj( 'desirous', '-', '-', normal ). +adj( 'desolate', '-', '-', normal ). +adj( 'desperate', '-', '-', normal ). +adj( 'despicable', '-', '-', normal ). +adj( 'despiteful', '-', '-', normal ). +adj( 'despondent', '-', '-', normal ). +adj( 'despotic', '-', '-', normal ). +adj( 'destitute', '-', '-', normal ). +adj( 'destructible', '-', '-', normal ). +adj( 'destructive', '-', '-', normal ). +adj( 'desultory', '-', '-', normal ). +adj( 'detachable', '-', '-', normal ). +adj( 'detached', '-', '-', normal ). +adj( 'detectable', '-', '-', normal ). +adj( 'detergent', '-', '-', normal ). +adj( 'determinable', '-', '-', normal ). +adj( 'determinant', '-', '-', normal ). +adj( 'determinate', '-', '-', normal ). +adj( 'determinative', '-', '-', normal ). +adj( 'deterrent', '-', '-', normal ). +adj( 'detestable', '-', '-', normal ). +adj( 'detrimental', '-', '-', normal ). +adj( 'deuced', '-', '-', normal ). +adj( 'deviant', '-', '-', normal ). +adj( 'devil-may-care', '-', '-', normal ). +adj( 'devilish', '-', '-', normal ). +adj( 'devious', '-', '-', normal ). +adj( 'devoid', '-', '-', normal ). +adj( 'devoted', '-', '-', normal ). +adj( 'devotional', '-', '-', normal ). +adj( 'devout', '-', '-', normal ). +adj( 'dewy', 'dewier', 'dewiest', normal ). +adj( 'dexterous', '-', '-', normal ). +adj( 'dextrous', '-', '-', normal ). +adj( 'diabetic', '-', '-', normal ). +adj( 'diabolic', '-', '-', normal ). +adj( 'diabolical', '-', '-', normal ). +adj( 'diacritic', '-', '-', normal ). +adj( 'diacritical', '-', '-', normal ). +adj( 'diagnostic', '-', '-', normal ). +adj( 'diagonal', '-', '-', normal ). +adj( 'diagrammatic', '-', '-', normal ). +adj( 'diagrammatical', '-', '-', normal ). +adj( 'dialectal', '-', '-', normal ). +adj( 'dialectical', '-', '-', normal ). +adj( 'diaphanous', '-', '-', normal ). +adj( 'diatonic', '-', '-', normal ). +adj( 'dicey', '-', '-', normal ). +adj( 'dicky', '-', '-', normal ). +adj( 'dictatorial', '-', '-', normal ). +adj( 'didactic', '-', '-', normal ). +adj( 'die-cast', '-', '-', normal ). +adj( 'dietary', '-', '-', normal ). +adj( 'different', '-', '-', normal ). +adj( 'differential', '-', '-', normal ). +adj( 'difficult', '-', '-', normal ). +adj( 'diffident', '-', '-', normal ). +adj( 'diffuse', '-', '-', normal ). +adj( 'digestible', '-', '-', normal ). +adj( 'digestive', '-', '-', normal ). +adj( 'digital', '-', '-', normal ). +adj( 'dignified', '-', '-', normal ). +adj( 'dilapidated', '-', '-', normal ). +adj( 'dilatory', '-', '-', normal ). +adj( 'diligent', '-', '-', normal ). +adj( 'dilute', '-', '-', normal ). +adj( 'dim', 'dimmer', 'dimmest', normal ). +adj( 'dimensional', '-', '-', normal ). +adj( 'diminutive', '-', '-', normal ). +adj( 'dingy', 'dingier', 'dingiest', normal ). +adj( 'dinky', 'dinkier', 'dinkiest', normal ). +adj( 'diocesan', '-', '-', normal ). +adj( 'diplomatic', '-', '-', normal ). +adj( 'dire', 'direr', 'direst', normal ). +adj( 'direct', '-', '-', normal ). +adj( 'directional', '-', '-', normal ). +adj( 'direful', '-', '-', normal ). +adj( 'dirt-cheap', '-', '-', normal ). +adj( 'dirty', 'dirtier', 'dirtiest', normal ). +adj( 'disadvantageous', '-', '-', normal ). +adj( 'disaffected', '-', '-', normal ). +adj( 'disagreeable', '-', '-', normal ). +adj( 'disappointed', '-', '-', normal ). +adj( 'disappointing', '-', '-', normal ). +adj( 'disastrous', '-', '-', normal ). +adj( 'discernible', '-', '-', normal ). +adj( 'discerning', '-', '-', normal ). +adj( 'disciplinary', '-', '-', normal ). +adj( 'disconnected', '-', '-', normal ). +adj( 'disconsolate', '-', '-', normal ). +adj( 'discontinuous', '-', '-', normal ). +adj( 'discordant', '-', '-', normal ). +adj( 'discourteous', '-', '-', normal ). +adj( 'discreditable', '-', '-', normal ). +adj( 'discreet', '-', '-', normal ). +adj( 'discrete', '-', '-', normal ). +adj( 'discretionary', '-', '-', normal ). +adj( 'discriminating', '-', '-', normal ). +adj( 'discriminatory', '-', '-', normal ). +adj( 'discursive', '-', '-', normal ). +adj( 'disdainful', '-', '-', normal ). +adj( 'diseased', '-', '-', normal ). +adj( 'disgraceful', '-', '-', normal ). +adj( 'disgruntled', '-', '-', normal ). +adj( 'disgusting', '-', '-', normal ). +adj( 'disharmonious', '-', '-', normal ). +adj( 'dishevelled', '-', '-', normal ). +adj( 'dishonest', '-', '-', normal ). +adj( 'dishonourable', '-', '-', normal ). +adj( 'dishy', 'dishier', 'dishiest', normal ). +adj( 'disinfectant', '-', '-', normal ). +adj( 'disingenuous', '-', '-', normal ). +adj( 'disinterested', '-', '-', normal ). +adj( 'disjointed', '-', '-', normal ). +adj( 'disjunctive', '-', '-', normal ). +adj( 'disloyal', '-', '-', normal ). +adj( 'dismal', '-', '-', normal ). +adj( 'dismounted', '-', '-', normal ). +adj( 'disobedient', '-', '-', normal ). +adj( 'disorderly', '-', '-', normal ). +adj( 'disparate', '-', '-', normal ). +adj( 'dispassionate', '-', '-', normal ). +adj( 'dispensable', '-', '-', normal ). +adj( 'displeasing', '-', '-', normal ). +adj( 'disposable', '-', '-', normal ). +adj( 'disproportionate', '-', '-', normal ). +adj( 'disputable', '-', '-', normal ). +adj( 'disputatious', '-', '-', normal ). +adj( 'disquieting', '-', '-', normal ). +adj( 'disreputable', '-', '-', normal ). +adj( 'disrespectful', '-', '-', normal ). +adj( 'disruptive', '-', '-', normal ). +adj( 'dissident', '-', '-', normal ). +adj( 'dissimilar', '-', '-', normal ). +adj( 'dissipated', '-', '-', normal ). +adj( 'dissoluble', '-', '-', normal ). +adj( 'dissolute', '-', '-', normal ). +adj( 'dissonant', '-', '-', normal ). +adj( 'distant', '-', '-', normal ). +adj( 'distasteful', '-', '-', normal ). +adj( 'distinct', '-', '-', normal ). +adj( 'distinctive', '-', '-', normal ). +adj( 'distinguishable', '-', '-', normal ). +adj( 'distinguished', '-', '-', normal ). +adj( 'distracted', '-', '-', normal ). +adj( 'distrait', '-', '-', normal ). +adj( 'distraught', '-', '-', normal ). +adj( 'distressful', '-', '-', normal ). +adj( 'distressing', '-', '-', normal ). +adj( 'distributive', '-', '-', normal ). +adj( 'distrustful', '-', '-', normal ). +adj( 'disused', '-', '-', normal ). +adj( 'disyllabic', '-', '-', normal ). +adj( 'diurnal', '-', '-', normal ). +adj( 'divergent', '-', '-', normal ). +adj( 'divers', '-', '-', normal ). +adj( 'diverse', '-', '-', normal ). +adj( 'diversionary', '-', '-', normal ). +adj( 'diverting', '-', '-', normal ). +adj( 'divine', '-', '-', normal ). +adj( 'divisible', '-', '-', normal ). +adj( 'divisional', '-', '-', normal ). +adj( 'dizzy', 'dizzier', 'dizziest', normal ). +adj( 'docile', '-', '-', normal ). +adj( 'doctrinaire', '-', '-', normal ). +adj( 'doctrinal', '-', '-', normal ). +adj( 'documentary', '-', '-', normal ). +adj( 'doddering', '-', '-', normal ). +adj( 'doddery', '-', '-', normal ). +adj( 'dodgy', '-', '-', normal ). +adj( 'dog-eared', '-', '-', normal ). +adj( 'dog-like', '-', '-', normal ). +adj( 'dogged', '-', '-', normal ). +adj( 'dogmatic', '-', '-', normal ). +adj( 'doleful', '-', '-', normal ). +adj( 'dolourous', '-', '-', normal ). +adj( 'doltish', '-', '-', normal ). +adj( 'domed', '-', '-', normal ). +adj( 'domestic', '-', '-', normal ). +adj( 'domiciliary', '-', '-', normal ). +adj( 'dominant', '-', '-', normal ). +adj( 'domineering', '-', '-', normal ). +adj( 'donnish', '-', '-', normal ). +adj( 'door-to-door', '-', '-', normal ). +adj( 'dopey', '-', '-', normal ). +adj( 'dormant', '-', '-', normal ). +adj( 'dorsal', '-', '-', normal ). +adj( 'dotty', 'dottier', 'dottiest', normal ). +adj( 'double', '-', '-', normal ). +adj( 'double-barrelled', '-', '-', normal ). +adj( 'double-bedded', '-', '-', normal ). +adj( 'double-breasted', '-', '-', normal ). +adj( 'double-dealing', '-', '-', normal ). +adj( 'double-dyed', '-', '-', normal ). +adj( 'double-edged', '-', '-', normal ). +adj( 'double-faced', '-', '-', normal ). +adj( 'double-jointed', '-', '-', normal ). +adj( 'double-quick', '-', '-', normal ). +adj( 'doubtful', '-', '-', normal ). +adj( 'doughty', '-', '-', normal ). +adj( 'doughy', 'doughier', 'doughiest', normal ). +adj( 'dour', '-', '-', normal ). +adj( 'dowdy', 'dowdier', 'dowdiest', normal ). +adj( 'down-market', '-', '-', normal ). +adj( 'down-to-earth', '-', '-', normal ). +adj( 'downcast', '-', '-', normal ). +adj( 'downhearted', '-', '-', normal ). +adj( 'downright', '-', '-', normal ). +adj( 'downstair', '-', '-', normal ). +adj( 'downstairs', '-', '-', normal ). +adj( 'downstream', '-', '-', normal ). +adj( 'downtrodden', '-', '-', normal ). +adj( 'downward', '-', '-', normal ). +adj( 'downy', '-', '-', normal ). +adj( 'drab', 'drabber', 'drabbest', normal ). +adj( 'draconian', '-', '-', normal ). +adj( 'draggled', '-', '-', normal ). +adj( 'dramatic', '-', '-', normal ). +adj( 'drastic', '-', '-', normal ). +adj( 'draughty', 'draughtier', 'draughtiest', normal ). +adj( 'dreaded', '-', '-', normal ). +adj( 'dreadful', '-', '-', normal ). +adj( 'dreamless', '-', '-', normal ). +adj( 'dreamlike', '-', '-', normal ). +adj( 'dreamy', 'dreamier', 'dreamiest', normal ). +adj( 'drear', '-', '-', normal ). +adj( 'dreary', 'drearier', 'dreariest', normal ). +adj( 'dressy', 'dressier', 'dressiest', normal ). +adj( 'drinkable', '-', '-', normal ). +adj( 'drip-dry', '-', '-', normal ). +adj( 'drizzly', '-', '-', normal ). +adj( 'droll', '-', '-', normal ). +adj( 'dropsical', '-', '-', normal ). +adj( 'drowsy', 'drowsier', 'drowsiest', normal ). +adj( 'drumhead', '-', '-', normal ). +adj( 'drunk', 'drunker', 'drunkest', normal ). +adj( 'drunken', '-', '-', normal ). +adj( 'dry', 'drier', 'driest', normal ). +adj( 'dry-shod', '-', '-', normal ). +adj( 'dual', '-', '-', normal ). +adj( 'dubious', '-', '-', normal ). +adj( 'ducal', '-', '-', normal ). +adj( 'duckbilled', '-', '-', normal ). +adj( 'ductile', '-', '-', normal ). +adj( 'dud', '-', '-', normal ). +adj( 'due', '-', '-', normal ). +adj( 'dulcet', '-', '-', normal ). +adj( 'dull', 'duller', 'dullest', normal ). +adj( 'dumb', 'dumber', 'dumbest', normal ). +adj( 'dumpy', 'dumpier', 'dumpiest', normal ). +adj( 'dun', '-', '-', normal ). +adj( 'duodecimal', '-', '-', normal ). +adj( 'duodenal', '-', '-', normal ). +adj( 'duplex', '-', '-', normal ). +adj( 'duplicate', '-', '-', normal ). +adj( 'durable', '-', '-', normal ). +adj( 'dusky', 'duskier', 'duskiest', normal ). +adj( 'dusty', 'dustier', 'dustiest', normal ). +adj( 'duteous', '-', '-', normal ). +adj( 'dutiable', '-', '-', normal ). +adj( 'dutiful', '-', '-', normal ). +adj( 'duty-free', '-', '-', normal ). +adj( 'dwarfish', '-', '-', normal ). +adj( 'dyed-in-the-wool', '-', '-', normal ). +adj( 'dynamic', '-', '-', normal ). +adj( 'dynastic', '-', '-', normal ). +adj( 'dyslexic', '-', '-', normal ). +adj( 'dyspeptic', '-', '-', normal ). +adj( 'each', '-', '-', normal ). +adj( 'eager', '-', '-', normal ). +adj( 'eagle-eyed', '-', '-', normal ). +adj( 'early', 'earlier', 'earliest', normal ). +adj( 'early-warning', '-', '-', normal ). +adj( 'earnest', '-', '-', normal ). +adj( 'earthen', '-', '-', normal ). +adj( 'earthly', '-', '-', normal ). +adj( 'earthy', 'earthier', 'earthiest', normal ). +adj( 'easterly', '-', '-', normal ). +adj( 'eastern', '-', '-', normal ). +adj( 'easternmost', '-', '-', normal ). +adj( 'eastward', '-', '-', normal ). +adj( 'easy', 'easier', 'easiest', normal ). +adj( 'easygoing', '-', '-', normal ). +adj( 'eatable', '-', '-', normal ). +adj( 'ebony', '-', '-', normal ). +adj( 'ebullient', '-', '-', normal ). +adj( 'eccentric', '-', '-', normal ). +adj( 'ecclesiastical', '-', '-', normal ). +adj( 'eclectic', '-', '-', normal ). +adj( 'ecological', '-', '-', normal ). +adj( 'economic', '-', '-', normal ). +adj( 'economical', '-', '-', normal ). +adj( 'ecstatic', '-', '-', normal ). +adj( 'ecumenical', '-', '-', normal ). +adj( 'edgy', 'edgier', 'edgiest', normal ). +adj( 'edible', '-', '-', normal ). +adj( 'editorial', '-', '-', normal ). +adj( 'educational', '-', '-', normal ). +adj( 'eerie', 'eerier', 'eeriest', normal ). +adj( 'eery', 'eerier', 'eeriest', normal ). +adj( 'effective', '-', '-', normal ). +adj( 'effectual', '-', '-', normal ). +adj( 'effeminate', '-', '-', normal ). +adj( 'effervescent', '-', '-', normal ). +adj( 'effete', '-', '-', normal ). +adj( 'efficacious', '-', '-', normal ). +adj( 'efficient', '-', '-', normal ). +adj( 'efflorescent', '-', '-', normal ). +adj( 'effortless', '-', '-', normal ). +adj( 'effulgent', '-', '-', normal ). +adj( 'effusive', '-', '-', normal ). +adj( 'egalitarian', '-', '-', normal ). +adj( 'egocentric', '-', '-', normal ). +adj( 'egoistic', '-', '-', normal ). +adj( 'egoistical', '-', '-', normal ). +adj( 'egotistic', '-', '-', normal ). +adj( 'egregious', '-', '-', normal ). +adj( 'eight', '-', '-', normal ). +adj( 'eighteen', '-', '-', normal ). +adj( 'eighteenth', '-', '-', normal ). +adj( 'eighth', '-', '-', normal ). +adj( 'eightieth', '-', '-', normal ). +adj( 'eightpenny', '-', '-', normal ). +adj( 'eighty', '-', '-', normal ). +adj( 'either', '-', '-', normal ). +adj( 'elaborate', '-', '-', normal ). +adj( 'elastic', '-', '-', normal ). +adj( 'elasticized', '-', '-', normal ). +adj( 'elderly', '-', '-', normal ). +adj( 'elect', '-', '-', normal ). +adj( 'elective', '-', '-', normal ). +adj( 'electoral', '-', '-', normal ). +adj( 'electric', '-', '-', normal ). +adj( 'electrical', '-', '-', normal ). +adj( 'electromagnetic', '-', '-', normal ). +adj( 'electronic', '-', '-', normal ). +adj( 'electrostatic', '-', '-', normal ). +adj( 'eleemosynary', '-', '-', normal ). +adj( 'elegant', '-', '-', normal ). +adj( 'elegiac', '-', '-', normal ). +adj( 'elemental', '-', '-', normal ). +adj( 'elementary', '-', '-', normal ). +adj( 'elephantine', '-', '-', normal ). +adj( 'eleven', '-', '-', normal ). +adj( 'eleventh', '-', '-', normal ). +adj( 'elfin', '-', '-', normal ). +adj( 'elfish', '-', '-', normal ). +adj( 'eligible', '-', '-', normal ). +adj( 'elliptic', '-', '-', normal ). +adj( 'elliptical', '-', '-', normal ). +adj( 'elocutionary', '-', '-', normal ). +adj( 'eloquent', '-', '-', normal ). +adj( 'elusive', '-', '-', normal ). +adj( 'elvish', '-', '-', normal ). +adj( 'embarrassing', '-', '-', normal ). +adj( 'embattled', '-', '-', normal ). +adj( 'emblematic', '-', '-', normal ). +adj( 'embonpoint', '-', '-', pred ). +adj( 'embryonic', '-', '-', normal ). +adj( 'emergent', '-', '-', normal ). +adj( 'emeritus', '-', '-', normal ). +adj( 'eminent', '-', '-', normal ). +adj( 'emotional', '-', '-', normal ). +adj( 'emotionless', '-', '-', normal ). +adj( 'emotive', '-', '-', normal ). +adj( 'emphatic', '-', '-', normal ). +adj( 'empiric', '-', '-', normal ). +adj( 'empirical', '-', '-', normal ). +adj( 'employable', '-', '-', normal ). +adj( 'empty', 'emptier', 'emptiest', normal ). +adj( 'empty-handed', '-', '-', normal ). +adj( 'empty-headed', '-', '-', normal ). +adj( 'empurpled', '-', '-', normal ). +adj( 'empyrean', '-', '-', normal ). +adj( 'emulous', '-', '-', normal ). +adj( 'enabling', '-', '-', normal ). +adj( 'encaustic', '-', '-', normal ). +adj( 'encyclical', '-', '-', normal ). +adj( 'encyclopaedic', '-', '-', normal ). +adj( 'encyclopedic', '-', '-', normal ). +adj( 'endemic', '-', '-', normal ). +adj( 'endless', '-', '-', normal ). +adj( 'endurable', '-', '-', normal ). +adj( 'enduring', '-', '-', normal ). +adj( 'energetic', '-', '-', normal ). +adj( 'enforceable', '-', '-', normal ). +adj( 'engaging', '-', '-', normal ). +adj( 'enigmatic', '-', '-', normal ). +adj( 'enjoyable', '-', '-', normal ). +adj( 'enlightened', '-', '-', normal ). +adj( 'enormous', '-', '-', normal ). +adj( 'enough', '-', '-', normal ). +adj( 'enteric', '-', '-', normal ). +adj( 'enterprising', '-', '-', normal ). +adj( 'entertaining', '-', '-', normal ). +adj( 'enthusiastic', '-', '-', normal ). +adj( 'entire', '-', '-', normal ). +adj( 'entomological', '-', '-', normal ). +adj( 'entrepreneurial', '-', '-', normal ). +adj( 'enviable', '-', '-', normal ). +adj( 'envious', '-', '-', normal ). +adj( 'environmental', '-', '-', normal ). +adj( 'ephemeral', '-', '-', normal ). +adj( 'epic', '-', '-', normal ). +adj( 'epicurean', '-', '-', normal ). +adj( 'epidemic', '-', '-', normal ). +adj( 'epigrammatic', '-', '-', normal ). +adj( 'epileptic', '-', '-', normal ). +adj( 'episcopal', '-', '-', normal ). +adj( 'episcopalian', '-', '-', normal ). +adj( 'episodic', '-', '-', normal ). +adj( 'epistolary', '-', '-', normal ). +adj( 'epoch-making', '-', '-', normal ). +adj( 'equable', '-', '-', normal ). +adj( 'equal', '-', '-', normal ). +adj( 'equatorial', '-', '-', normal ). +adj( 'equestrian', '-', '-', normal ). +adj( 'equidistant', '-', '-', normal ). +adj( 'equilateral', '-', '-', normal ). +adj( 'equine', '-', '-', normal ). +adj( 'equinoctial', '-', '-', normal ). +adj( 'equitable', '-', '-', normal ). +adj( 'equivalent', '-', '-', normal ). +adj( 'equivocal', '-', '-', normal ). +adj( 'erect', '-', '-', normal ). +adj( 'erectile', '-', '-', normal ). +adj( 'erogenous', '-', '-', normal ). +adj( 'erosive', '-', '-', normal ). +adj( 'erotic', '-', '-', normal ). +adj( 'errant', '-', '-', normal ). +adj( 'erratic', '-', '-', normal ). +adj( 'erroneous', '-', '-', normal ). +adj( 'erudite', '-', '-', normal ). +adj( 'esoteric', '-', '-', normal ). +adj( 'especial', '-', '-', normal ). +adj( 'essential', '-', '-', normal ). +adj( 'esthetic', '-', '-', normal ). +adj( 'esthetical', '-', '-', normal ). +adj( 'estimable', '-', '-', normal ). +adj( 'eternal', '-', '-', normal ). +adj( 'ethereal', '-', '-', normal ). +adj( 'ethical', '-', '-', normal ). +adj( 'ethnic', '-', '-', normal ). +adj( 'ethnographic', '-', '-', normal ). +adj( 'ethnological', '-', '-', normal ). +adj( 'etymological', '-', '-', normal ). +adj( 'eulogistic', '-', '-', normal ). +adj( 'euphemistic', '-', '-', normal ). +adj( 'euphoric', '-', '-', normal ). +adj( 'evaluative', '-', '-', normal ). +adj( 'evanescent', '-', '-', normal ). +adj( 'evangelical', '-', '-', normal ). +adj( 'evangelistic', '-', '-', normal ). +adj( 'evasive', '-', '-', normal ). +adj( 'even', '-', '-', normal ). +adj( 'even-handed', '-', '-', normal ). +adj( 'eventful', '-', '-', normal ). +adj( 'eventual', '-', '-', normal ). +adj( 'evergreen', '-', '-', normal ). +adj( 'everlasting', '-', '-', normal ). +adj( 'every', '-', '-', normal ). +adj( 'everyday', '-', '-', normal ). +adj( 'evident', '-', '-', normal ). +adj( 'evil', '-', '-', normal ). +adj( 'evil-minded', '-', '-', normal ). +adj( 'evocative', '-', '-', normal ). +adj( 'evolutionary', '-', '-', normal ). +adj( 'ex gratia', '-', '-', normal ). +adj( 'ex officio', '-', '-', normal ). +adj( 'ex-directory', '-', '-', normal ). +adj( 'ex-service', '-', '-', normal ). +adj( 'exact', '-', '-', normal ). +adj( 'exacting', '-', '-', normal ). +adj( 'exalted', '-', '-', normal ). +adj( 'excellent', '-', '-', normal ). +adj( 'exceptionable', '-', '-', normal ). +adj( 'exceptional', '-', '-', normal ). +adj( 'excess', '-', '-', normal ). +adj( 'excessive', '-', '-', normal ). +adj( 'exchangeable', '-', '-', normal ). +adj( 'excitable', '-', '-', normal ). +adj( 'exclamatory', '-', '-', normal ). +adj( 'exclusive', '-', '-', normal ). +adj( 'excruciating', '-', '-', normal ). +adj( 'excusable', '-', '-', normal ). +adj( 'execrable', '-', '-', normal ). +adj( 'executive', '-', '-', normal ). +adj( 'exemplary', '-', '-', normal ). +adj( 'exempt', '-', '-', normal ). +adj( 'exhaustive', '-', '-', normal ). +adj( 'exigent', '-', '-', normal ). +adj( 'exiguous', '-', '-', normal ). +adj( 'existent', '-', '-', normal ). +adj( 'exorbitant', '-', '-', normal ). +adj( 'exotic', '-', '-', normal ). +adj( 'expansive', '-', '-', normal ). +adj( 'expectant', '-', '-', normal ). +adj( 'expected', '-', '-', normal ). +adj( 'expedient', '-', '-', normal ). +adj( 'expeditionary', '-', '-', normal ). +adj( 'expeditious', '-', '-', normal ). +adj( 'expendable', '-', '-', normal ). +adj( 'expensive', '-', '-', normal ). +adj( 'experienced', '-', '-', normal ). +adj( 'experimental', '-', '-', normal ). +adj( 'expert', '-', '-', normal ). +adj( 'explanatory', '-', '-', normal ). +adj( 'explicable', '-', '-', normal ). +adj( 'explicit', '-', '-', normal ). +adj( 'exploratory', '-', '-', normal ). +adj( 'explosive', '-', '-', normal ). +adj( 'exponential', '-', '-', normal ). +adj( 'exportable', '-', '-', normal ). +adj( 'express', '-', '-', normal ). +adj( 'expressionless', '-', '-', normal ). +adj( 'expressive', '-', '-', normal ). +adj( 'exquisite', '-', '-', normal ). +adj( 'extant', '-', '-', normal ). +adj( 'extemporaneous', '-', '-', normal ). +adj( 'extemporary', '-', '-', normal ). +adj( 'extempore', '-', '-', normal ). +adj( 'extensive', '-', '-', normal ). +adj( 'exterior', '-', '-', normal ). +adj( 'external', '-', '-', normal ). +adj( 'exterritorial', '-', '-', normal ). +adj( 'extinct', '-', '-', normal ). +adj( 'extortionate', '-', '-', normal ). +adj( 'extra', '-', '-', normal ). +adj( 'extracurricular', '-', '-', normal ). +adj( 'extrajudicial', '-', '-', normal ). +adj( 'extramarital', '-', '-', normal ). +adj( 'extramural', '-', '-', normal ). +adj( 'extraneous', '-', '-', normal ). +adj( 'extraordinary', '-', '-', normal ). +adj( 'extrasensory', '-', '-', normal ). +adj( 'extraterritorial', '-', '-', normal ). +adj( 'extravagant', '-', '-', normal ). +adj( 'extreme', '-', '-', normal ). +adj( 'extricable', '-', '-', normal ). +adj( 'extrinsic', '-', '-', normal ). +adj( 'exuberant', '-', '-', normal ). +adj( 'exultant', '-', '-', normal ). +adj( 'eye-catching', '-', '-', normal ). +adj( 'eyecatching', '-', '-', normal ). +adj( 'eyed', '-', '-', affix ). +adj( 'eyeless', '-', '-', normal ). +adj( 'fab', '-', '-', normal ). +adj( 'fabled', '-', '-', normal ). +adj( 'fabulous', '-', '-', normal ). +adj( 'face-saving', '-', '-', normal ). +adj( 'faceless', '-', '-', normal ). +adj( 'facetious', '-', '-', normal ). +adj( 'facial', '-', '-', normal ). +adj( 'facile', '-', '-', normal ). +adj( 'fact-finding', '-', '-', normal ). +adj( 'factious', '-', '-', normal ). +adj( 'factitious', '-', '-', normal ). +adj( 'factual', '-', '-', normal ). +adj( 'faddy', 'faddier', 'faddiest', normal ). +adj( 'fail-safe', '-', '-', normal ). +adj( 'faint', 'fainter', 'faintest', normal ). +adj( 'faint-hearted', '-', '-', normal ). +adj( 'fair', 'fairer', 'fairest', normal ). +adj( 'fair-minded', '-', '-', normal ). +adj( 'fairish', '-', '-', normal ). +adj( 'faithful', '-', '-', normal ). +adj( 'faithless', '-', '-', normal ). +adj( 'fallacious', '-', '-', normal ). +adj( 'fallible', '-', '-', normal ). +adj( 'fallow', '-', '-', normal ). +adj( 'false', '-', '-', normal ). +adj( 'falsetto', '-', '-', normal ). +adj( 'famed', '-', '-', normal ). +adj( 'familiar', '-', '-', normal ). +adj( 'famous', '-', '-', normal ). +adj( 'fanatic', '-', '-', normal ). +adj( 'fanatical', '-', '-', normal ). +adj( 'fanciful', '-', '-', normal ). +adj( 'fancy', 'fancier', 'fanciest', normal ). +adj( 'fancy-free', '-', '-', normal ). +adj( 'fantastic', '-', '-', normal ). +adj( 'far', '-', '-', normal ). +adj( 'far-famed', '-', '-', normal ). +adj( 'far-fetched', '-', '-', normal ). +adj( 'far-flung', '-', '-', normal ). +adj( 'far-off', '-', '-', normal ). +adj( 'far-reaching', '-', '-', normal ). +adj( 'far-seeing', '-', '-', normal ). +adj( 'far-sighted', '-', '-', normal ). +adj( 'faraway', '-', '-', normal ). +adj( 'farcical', '-', '-', normal ). +adj( 'farinaceous', '-', '-', normal ). +adj( 'fascinating', '-', '-', normal ). +adj( 'fascist', '-', '-', normal ). +adj( 'fashionable', '-', '-', normal ). +adj( 'fast', 'faster', 'fastest', normal ). +adj( 'fastidious', '-', '-', normal ). +adj( 'fat', 'fatter', 'fattest', normal ). +adj( 'fatal', '-', '-', normal ). +adj( 'fatalistic', '-', '-', normal ). +adj( 'fateful', '-', '-', normal ). +adj( 'fatherless', '-', '-', normal ). +adj( 'fatherly', '-', '-', normal ). +adj( 'fathomless', '-', '-', normal ). +adj( 'fatless', '-', '-', normal ). +adj( 'fattish', '-', '-', normal ). +adj( 'fatty', 'fattier', 'fattiest', normal ). +adj( 'fatuous', '-', '-', normal ). +adj( 'faultless', '-', '-', normal ). +adj( 'faulty', 'faultier', 'faultiest', normal ). +adj( 'favourable', '-', '-', normal ). +adj( 'favourite', '-', '-', attr ). +adj( 'fearful', '-', '-', normal ). +adj( 'fearless', '-', '-', normal ). +adj( 'fearsome', '-', '-', normal ). +adj( 'feasible', '-', '-', normal ). +adj( 'featherbrained', '-', '-', normal ). +adj( 'feathery', '-', '-', normal ). +adj( 'featureless', '-', '-', normal ). +adj( 'febrile', '-', '-', normal ). +adj( 'feckless', '-', '-', normal ). +adj( 'fecund', '-', '-', normal ). +adj( 'federal', '-', '-', normal ). +adj( 'feeble', 'feebler', 'feeblest', normal ). +adj( 'feeble-minded', '-', '-', normal ). +adj( 'feeling', '-', '-', normal ). +adj( 'felicitous', '-', '-', normal ). +adj( 'feline', '-', '-', normal ). +adj( 'fell', '-', '-', normal ). +adj( 'felonious', '-', '-', normal ). +adj( 'female', '-', '-', normal ). +adj( 'feminine', '-', '-', normal ). +adj( 'feral', '-', '-', normal ). +adj( 'ferny', 'fernier', 'ferniest', normal ). +adj( 'ferocious', '-', '-', normal ). +adj( 'ferrous', '-', '-', normal ). +adj( 'fertile', '-', '-', normal ). +adj( 'fervent', '-', '-', normal ). +adj( 'fervid', '-', '-', normal ). +adj( 'festal', '-', '-', normal ). +adj( 'festive', '-', '-', normal ). +adj( 'fetal', '-', '-', normal ). +adj( 'fetching', '-', '-', normal ). +adj( 'fetid', '-', '-', normal ). +adj( 'feudal', '-', '-', normal ). +adj( 'feudatory', '-', '-', normal ). +adj( 'fevered', '-', '-', normal ). +adj( 'feverish', '-', '-', normal ). +adj( 'few', 'fewer', 'fewest', normal ). +adj( 'fey', '-', '-', normal ). +adj( 'fibrous', '-', '-', normal ). +adj( 'fickle', '-', '-', normal ). +adj( 'fictional', '-', '-', normal ). +adj( 'fictitious', '-', '-', normal ). +adj( 'fiddling', '-', '-', normal ). +adj( 'fidgety', '-', '-', normal ). +adj( 'fiendish', '-', '-', normal ). +adj( 'fierce', 'fiercer', 'fiercest', normal ). +adj( 'fiery', '-', '-', normal ). +adj( 'fifteen', '-', '-', normal ). +adj( 'fifteenth', '-', '-', normal ). +adj( 'fifth', '-', '-', normal ). +adj( 'fiftieth', '-', '-', normal ). +adj( 'fifty', '-', '-', normal ). +adj( 'figurative', '-', '-', normal ). +adj( 'figured', '-', '-', normal ). +adj( 'filial', '-', '-', normal ). +adj( 'filmable', '-', '-', normal ). +adj( 'filmy', 'filmier', 'filmiest', normal ). +adj( 'filtertipped', '-', '-', normal ). +adj( 'filthy', 'filthier', 'filthiest', normal ). +adj( 'finable', '-', '-', normal ). +adj( 'final', '-', '-', normal ). +adj( 'financial', '-', '-', normal ). +adj( 'fine', 'finer', 'finest', normal ). +adj( 'fine-tooth', '-', '-', attr ). +adj( 'fineable', '-', '-', normal ). +adj( 'finical', '-', '-', normal ). +adj( 'finicky', '-', '-', normal ). +adj( 'finite', '-', '-', normal ). +adj( 'fireproof', '-', '-', normal ). +adj( 'firm', 'firmer', 'firmest', normal ). +adj( 'first', '-', '-', normal ). +adj( 'first-class', '-', '-', normal ). +adj( 'first-hand', '-', '-', normal ). +adj( 'first-rate', '-', '-', normal ). +adj( 'firstborn', '-', '-', normal ). +adj( 'fiscal', '-', '-', normal ). +adj( 'fishy', 'fishier', 'fishiest', normal ). +adj( 'fissile', '-', '-', normal ). +adj( 'fissionable', '-', '-', normal ). +adj( 'fissiparous', '-', '-', normal ). +adj( 'fit', 'fitter', 'fittest', normal ). +adj( 'fitful', '-', '-', normal ). +adj( 'fitting', '-', '-', normal ). +adj( 'five', '-', '-', normal ). +adj( 'fivefold', '-', '-', normal ). +adj( 'fivepenny', '-', '-', normal ). +adj( 'fixed', '-', '-', normal ). +adj( 'fizzy', 'fizzier', 'fizziest', normal ). +adj( 'flabby', 'flabbier', 'flabbiest', normal ). +adj( 'flaccid', '-', '-', normal ). +adj( 'flagrant', '-', '-', normal ). +adj( 'flaky', 'flakier', 'flakiest', normal ). +adj( 'flamboyant', '-', '-', normal ). +adj( 'flaming', '-', '-', normal ). +adj( 'flammable', '-', '-', normal ). +adj( 'flashy', 'flashier', 'flashiest', normal ). +adj( 'flat', 'flatter', 'flattest', normal ). +adj( 'flat-bottomed', '-', '-', normal ). +adj( 'flat-footed', '-', '-', normal ). +adj( 'flavourless', '-', '-', normal ). +adj( 'flawed', '-', '-', normal ). +adj( 'flawless', '-', '-', normal ). +adj( 'flaxen', '-', '-', normal ). +adj( 'flea-bitten', '-', '-', normal ). +adj( 'fledged', '-', '-', normal ). +adj( 'fleecy', 'fleecier', 'fleeciest', normal ). +adj( 'fleet', 'fleeter', 'fleetest', normal ). +adj( 'fleeting', '-', '-', normal ). +adj( 'fleshly', '-', '-', normal ). +adj( 'fleshy', 'fleshier', 'fleshiest', normal ). +adj( 'flexible', '-', '-', normal ). +adj( 'flightless', '-', '-', normal ). +adj( 'flighty', '-', '-', normal ). +adj( 'flimsy', 'flimsier', 'flimsiest', normal ). +adj( 'flinty', 'flintier', 'flintiest', normal ). +adj( 'flip', '-', '-', normal ). +adj( 'flippant', '-', '-', normal ). +adj( 'flirtatious', '-', '-', normal ). +adj( 'floating', '-', '-', normal ). +adj( 'floppy', 'floppier', 'floppiest', normal ). +adj( 'floral', '-', '-', normal ). +adj( 'florid', '-', '-', normal ). +adj( 'floury', 'flourier', 'flouriest', normal ). +adj( 'flowered', '-', '-', normal ). +adj( 'flowerless', '-', '-', normal ). +adj( 'flowery', 'flowerier', 'floweriest', normal ). +adj( 'fluent', '-', '-', normal ). +adj( 'fluffy', 'fluffier', 'fluffiest', normal ). +adj( 'fluid', '-', '-', normal ). +adj( 'fluorescent', '-', '-', normal ). +adj( 'flush', '-', '-', normal ). +adj( 'fluvial', '-', '-', normal ). +adj( 'fly', '-', '-', normal ). +adj( 'flyblown', '-', '-', normal ). +adj( 'flying', '-', '-', normal ). +adj( 'foamy', 'foamier', 'foamiest', normal ). +adj( 'focal', '-', '-', normal ). +adj( 'foetal', '-', '-', normal ). +adj( 'fogbound', '-', '-', normal ). +adj( 'foggy', 'foggier', 'foggiest', normal ). +adj( 'folksy', '-', '-', normal ). +adj( 'following', '-', '-', normal ). +adj( 'fond', 'fonder', 'fondest', normal ). +adj( 'foodless', '-', '-', normal ). +adj( 'foolhardy', '-', '-', normal ). +adj( 'foolish', '-', '-', normal ). +adj( 'foolproof', '-', '-', normal ). +adj( 'foot-and-mouth', '-', '-', normal ). +adj( 'footed', '-', '-', affix ). +adj( 'footling', '-', '-', normal ). +adj( 'footloose', '-', '-', normal ). +adj( 'footsore', '-', '-', normal ). +adj( 'footsure', '-', '-', normal ). +adj( 'foppish', '-', '-', normal ). +adj( 'forbidding', '-', '-', normal ). +adj( 'forceful', '-', '-', normal ). +adj( 'forcible', '-', '-', normal ). +adj( 'fordable', '-', '-', normal ). +adj( 'fore', '-', '-', normal ). +adj( 'foregoing', '-', '-', normal ). +adj( 'foregone', '-', '-', normal ). +adj( 'forehand', '-', '-', normal ). +adj( 'foreign', '-', '-', normal ). +adj( 'foremost', '-', '-', normal ). +adj( 'forensic', '-', '-', normal ). +adj( 'foreseeable', '-', '-', normal ). +adj( 'forgetful', '-', '-', normal ). +adj( 'forgivable', '-', '-', normal ). +adj( 'forgiving', '-', '-', normal ). +adj( 'forked', '-', '-', normal ). +adj( 'forlorn', '-', '-', normal ). +adj( 'formal', '-', '-', normal ). +adj( 'formative', '-', '-', normal ). +adj( 'former', '-', '-', normal ). +adj( 'formic', '-', '-', normal ). +adj( 'formidable', '-', '-', normal ). +adj( 'formless', '-', '-', normal ). +adj( 'forte', '-', '-', normal ). +adj( 'forthcoming', '-', '-', normal ). +adj( 'forthright', '-', '-', normal ). +adj( 'fortieth', '-', '-', normal ). +adj( 'fortissimo', '-', '-', normal ). +adj( 'fortnightly', '-', '-', normal ). +adj( 'fortuitous', '-', '-', normal ). +adj( 'fortunate', '-', '-', normal ). +adj( 'forty', '-', '-', normal ). +adj( 'fortyish', '-', '-', normal ). +adj( 'forward', '-', '-', normal ). +adj( 'foul', 'fouler', 'foulest', normal ). +adj( 'foul-mouthed', '-', '-', normal ). +adj( 'foul-spoken', '-', '-', normal ). +adj( 'four', '-', '-', normal ). +adj( 'four-part', '-', '-', normal ). +adj( 'four-ply', '-', '-', normal ). +adj( 'fourfold', '-', '-', normal ). +adj( 'fourpenny', '-', '-', normal ). +adj( 'fourscore', '-', '-', normal ). +adj( 'foursquare', '-', '-', normal ). +adj( 'fourteen', '-', '-', normal ). +adj( 'fourteenth', '-', '-', normal ). +adj( 'fourth', '-', '-', normal ). +adj( 'foxy', 'foxier', 'foxiest', normal ). +adj( 'fractional', '-', '-', normal ). +adj( 'fractious', '-', '-', normal ). +adj( 'fragile', '-', '-', normal ). +adj( 'fragmentary', '-', '-', normal ). +adj( 'fragrant', '-', '-', normal ). +adj( 'frail', 'frailer', 'frailest', normal ). +adj( 'frank', 'franker', 'frankest', normal ). +adj( 'frantic', '-', '-', normal ). +adj( 'fraternal', '-', '-', normal ). +adj( 'fraudulent', '-', '-', normal ). +adj( 'fraught', '-', '-', pred ). +adj( 'freakish', '-', '-', normal ). +adj( 'freaky', 'freakier', 'freakiest', normal ). +adj( 'free', 'freer', 'freest', normal ). +adj( 'free-and-easy', '-', '-', normal ). +adj( 'free-handed', '-', '-', normal ). +adj( 'free-range', '-', '-', normal ). +adj( 'free-spoken', '-', '-', normal ). +adj( 'free-standing', '-', '-', normal ). +adj( 'free-thinking', '-', '-', normal ). +adj( 'freeborn', '-', '-', normal ). +adj( 'freehand', '-', '-', normal ). +adj( 'freewill', '-', '-', normal ). +adj( 'frenetic', '-', '-', normal ). +adj( 'frenzied', '-', '-', normal ). +adj( 'frequent', '-', '-', normal ). +adj( 'fresh', 'fresher', 'freshest', normal ). +adj( 'freshwater', '-', '-', normal ). +adj( 'fretful', '-', '-', normal ). +adj( 'friable', '-', '-', normal ). +adj( 'fricative', '-', '-', normal ). +adj( 'friendless', '-', '-', normal ). +adj( 'friendly', 'friendlier', 'friendliest', normal ). +adj( 'frightened', '-', '-', normal ). +adj( 'frightening', '-', '-', normal ). +adj( 'frightful', '-', '-', normal ). +adj( 'frigid', '-', '-', normal ). +adj( 'frilled', '-', '-', normal ). +adj( 'frilly', 'frillier', 'frilliest', normal ). +adj( 'frisky', 'friskier', 'friskiest', normal ). +adj( 'frivolous', '-', '-', normal ). +adj( 'frizzy', 'frizzier', 'frizziest', normal ). +adj( 'frolicsome', '-', '-', normal ). +adj( 'frontal', '-', '-', normal ). +adj( 'frost-bound', '-', '-', normal ). +adj( 'frostbitten', '-', '-', normal ). +adj( 'frosty', 'frostier', 'frostiest', normal ). +adj( 'frothy', 'frothier', 'frothiest', normal ). +adj( 'froward', '-', '-', normal ). +adj( 'frowsty', '-', '-', normal ). +adj( 'frowzy', '-', '-', normal ). +adj( 'frugal', '-', '-', normal ). +adj( 'fruitful', '-', '-', normal ). +adj( 'fruitless', '-', '-', normal ). +adj( 'fruity', 'fruitier', 'fruitiest', normal ). +adj( 'frumpish', '-', '-', normal ). +adj( 'frumpy', 'frumpier', 'frumpiest', normal ). +adj( 'fucking', '-', '-', normal ). +adj( 'fuggy', 'fuggier', 'fuggiest', normal ). +adj( 'fugitive', '-', '-', normal ). +adj( 'full', 'fuller', 'fullest', normal ). +adj( 'full-blooded', '-', '-', normal ). +adj( 'full-blown', '-', '-', normal ). +adj( 'full-dress', '-', '-', normal ). +adj( 'full-fashioned', '-', '-', normal ). +adj( 'full-fledged', '-', '-', normal ). +adj( 'full-grown', '-', '-', normal ). +adj( 'full-length', '-', '-', normal ). +adj( 'full-page', '-', '-', normal ). +adj( 'full-scale', '-', '-', normal ). +adj( 'full-time', '-', '-', normal ). +adj( 'fully-fashioned', '-', '-', normal ). +adj( 'fully-fledged', '-', '-', normal ). +adj( 'fully-grown', '-', '-', normal ). +adj( 'fulsome', '-', '-', normal ). +adj( 'functional', '-', '-', normal ). +adj( 'fundamental', '-', '-', normal ). +adj( 'funereal', '-', '-', normal ). +adj( 'fungoid', '-', '-', normal ). +adj( 'fungous', '-', '-', normal ). +adj( 'funky', 'funkier', 'funkiest', normal ). +adj( 'funny', 'funnier', 'funniest', normal ). +adj( 'furious', '-', '-', normal ). +adj( 'furry', 'furrier', 'furriest', normal ). +adj( 'furthermost', '-', '-', normal ). +adj( 'furthest', '-', '-', normal ). +adj( 'furtive', '-', '-', normal ). +adj( 'fussy', 'fussier', 'fussiest', normal ). +adj( 'fusty', '-', '-', normal ). +adj( 'futile', '-', '-', normal ). +adj( 'future', '-', '-', normal ). +adj( 'futureless', '-', '-', normal ). +adj( 'fuzzy', 'fuzzier', 'fuzziest', normal ). +adj( 'gabled', '-', '-', normal ). +adj( 'gaga', '-', '-', normal ). +adj( 'gainful', '-', '-', normal ). +adj( 'galactic', '-', '-', normal ). +adj( 'gallant', '-', '-', normal ). +adj( 'galvanic', '-', '-', normal ). +adj( 'game', '-', '-', normal ). +adj( 'gammy', '-', '-', normal ). +adj( 'gamy', 'gamier', 'gamiest', normal ). +adj( 'gangling', '-', '-', normal ). +adj( 'gangrenous', '-', '-', normal ). +adj( 'gap-toothed', '-', '-', normal ). +adj( 'gargantuan', '-', '-', normal ). +adj( 'garish', '-', '-', normal ). +adj( 'garrulous', '-', '-', normal ). +adj( 'gaseous', '-', '-', normal ). +adj( 'gassy', 'gassier', 'gassiest', normal ). +adj( 'gastric', '-', '-', normal ). +adj( 'gastronomic', '-', '-', normal ). +adj( 'gauche', '-', '-', normal ). +adj( 'gaudy', 'gaudier', 'gaudiest', normal ). +adj( 'gaunt', '-', '-', normal ). +adj( 'gauzy', 'gauzier', 'gauziest', normal ). +adj( 'gawky', 'gawkier', 'gawkiest', normal ). +adj( 'gay', 'gayer', 'gayest', normal ). +adj( 'gelatinous', '-', '-', normal ). +adj( 'gemmed', '-', '-', normal ). +adj( 'genealogical', '-', '-', normal ). +adj( 'general', '-', '-', normal ). +adj( 'generative', '-', '-', normal ). +adj( 'generic', '-', '-', normal ). +adj( 'generous', '-', '-', normal ). +adj( 'genetic', '-', '-', normal ). +adj( 'genial', '-', '-', normal ). +adj( 'genital', '-', '-', normal ). +adj( 'genitive', '-', '-', normal ). +adj( 'genteel', '-', '-', normal ). +adj( 'gentile', '-', '-', normal ). +adj( 'gentle', 'gentler', 'gentlest', normal ). +adj( 'gentlemanly', '-', '-', normal ). +adj( 'genuine', '-', '-', normal ). +adj( 'geocentric', '-', '-', normal ). +adj( 'geographical', '-', '-', normal ). +adj( 'geological', '-', '-', normal ). +adj( 'geometric', '-', '-', normal ). +adj( 'geometrical', '-', '-', normal ). +adj( 'geophysical', '-', '-', normal ). +adj( 'geriatric', '-', '-', normal ). +adj( 'germane', '-', '-', normal ). +adj( 'get-at-able', '-', '-', normal ). +adj( 'ghastly', 'ghastlier', 'ghastliest', normal ). +adj( 'ghostly', '-', '-', normal ). +adj( 'ghoulish', '-', '-', normal ). +adj( 'gibbous', '-', '-', normal ). +adj( 'giddy', 'giddier', 'giddiest', normal ). +adj( 'gifted', '-', '-', normal ). +adj( 'gigantic', '-', '-', normal ). +adj( 'gilt-edged', '-', '-', normal ). +adj( 'gimcrack', '-', '-', normal ). +adj( 'gingerly', '-', '-', normal ). +adj( 'girlish', '-', '-', normal ). +adj( 'glac_e', '-', '-', normal ). +adj( 'glacial', '-', '-', normal ). +adj( 'glad', 'gladder', 'gladdest', normal ). +adj( 'gladiatorial', '-', '-', normal ). +adj( 'gladsome', '-', '-', normal ). +adj( 'glamorous', '-', '-', normal ). +adj( 'glandular', '-', '-', normal ). +adj( 'glaring', '-', '-', normal ). +adj( 'glassy', 'glassier', 'glassiest', normal ). +adj( 'glaucous', '-', '-', normal ). +adj( 'gleeful', '-', '-', normal ). +adj( 'glib', 'glibber', 'glibbest', normal ). +adj( 'glissando', '-', '-', normal ). +adj( 'glittering', '-', '-', normal ). +adj( 'global', '-', '-', normal ). +adj( 'globular', '-', '-', normal ). +adj( 'gloomy', 'gloomier', 'gloomiest', normal ). +adj( 'glorious', '-', '-', normal ). +adj( 'glossy', 'glossier', 'glossiest', normal ). +adj( 'glottal', '-', '-', normal ). +adj( 'gloved', '-', '-', normal ). +adj( 'glowing', '-', '-', normal ). +adj( 'gluey', '-', '-', normal ). +adj( 'glum', 'glummer', 'glummest', normal ). +adj( 'glutinous', '-', '-', normal ). +adj( 'gluttonous', '-', '-', normal ). +adj( 'gnarled', '-', '-', normal ). +adj( 'go-as-you-please', '-', '-', attr ). +adj( 'go-to-meeting', '-', '-', attr ). +adj( 'goalless', '-', '-', normal ). +adj( 'god-damn', '-', '-', normal ). +adj( 'god-damned', '-', '-', normal ). +adj( 'goddam', '-', '-', normal ). +adj( 'godfearing', '-', '-', normal ). +adj( 'godforsaken', '-', '-', normal ). +adj( 'godless', '-', '-', normal ). +adj( 'godlike', '-', '-', normal ). +adj( 'godly', 'godlier', 'godliest', normal ). +adj( 'goggle-eyed', '-', '-', normal ). +adj( 'going', '-', '-', normal ). +adj( 'golden', '-', '-', normal ). +adj( 'good', 'better', 'best', normal ). +adj( 'good-for-naught', '-', '-', normal ). +adj( 'good-for-nothing', '-', '-', normal ). +adj( 'good-humoured', '-', '-', normal ). +adj( 'good-looking', '-', '-', normal ). +adj( 'good-natured', '-', '-', normal ). +adj( 'good-tempered', '-', '-', normal ). +adj( 'good-time', '-', '-', normal ). +adj( 'goodish', '-', '-', attr ). +adj( 'goodly', 'goodlier', 'goodliest', normal ). +adj( 'goody-goody', '-', '-', normal ). +adj( 'gooey', 'gooier', 'gooiest', normal ). +adj( 'goofy', 'goofier', 'goofiest', normal ). +adj( 'gorgeous', '-', '-', normal ). +adj( 'gormless', '-', '-', normal ). +adj( 'gory', 'gorier', 'goriest', normal ). +adj( 'gouty', 'goutier', 'goutiest', normal ). +adj( 'governing', '-', '-', normal ). +adj( 'governmental', '-', '-', normal ). +adj( 'graceful', '-', '-', normal ). +adj( 'graceless', '-', '-', normal ). +adj( 'gracious', '-', '-', normal ). +adj( 'gradual', '-', '-', normal ). +adj( 'grained', '-', '-', affix ). +adj( 'grammatical', '-', '-', normal ). +adj( 'grand', 'grander', 'grandest', normal ). +adj( 'grandiloquent', '-', '-', normal ). +adj( 'grandiose', '-', '-', normal ). +adj( 'granular', '-', '-', normal ). +adj( 'graphic', '-', '-', normal ). +adj( 'graphical', '-', '-', normal ). +adj( 'grasping', '-', '-', normal ). +adj( 'grassy', 'grassier', 'grassiest', normal ). +adj( 'grateful', '-', '-', normal ). +adj( 'gratifying', '-', '-', normal ). +adj( 'gratis', '-', '-', normal ). +adj( 'gratuitous', '-', '-', normal ). +adj( 'grave', 'graver', 'gravest', normal ). +adj( 'gravelly', '-', '-', normal ). +adj( 'graven', '-', '-', normal ). +adj( 'gray', 'grayer', 'grayest', normal ). +adj( 'greaseproof', '-', '-', normal ). +adj( 'greasy', 'greasier', 'greasiest', normal ). +adj( 'great', 'greater', 'greatest', normal ). +adj( 'greedy', 'greedier', 'greediest', normal ). +adj( 'green', 'greener', 'greenest', normal ). +adj( 'greeneyed', '-', '-', normal ). +adj( 'greenish', '-', '-', normal ). +adj( 'gregarious', '-', '-', normal ). +adj( 'grey', 'greyer', 'greyest', normal ). +adj( 'grey-headed', '-', '-', normal ). +adj( 'greyish', '-', '-', normal ). +adj( 'grievous', '-', '-', normal ). +adj( 'grim', 'grimmer', 'grimmest', normal ). +adj( 'grimy', 'grimier', 'grimiest', normal ). +adj( 'grisly', '-', '-', normal ). +adj( 'gritty', 'grittier', 'grittiest', normal ). +adj( 'grizzled', '-', '-', normal ). +adj( 'groggy', 'groggier', 'groggiest', normal ). +adj( 'groovy', 'groovier', 'grooviest', normal ). +adj( 'gross', '-', '-', normal ). +adj( 'grotesque', '-', '-', normal ). +adj( 'grotty', 'grottier', 'grottiest', normal ). +adj( 'grouchy', 'grouchier', 'grouchiest', normal ). +adj( 'groundless', '-', '-', normal ). +adj( 'grown-up', '-', '-', normal ). +adj( 'grubby', 'grubbier', 'grubbiest', normal ). +adj( 'gruelling', '-', '-', normal ). +adj( 'gruesome', '-', '-', normal ). +adj( 'gruff', 'gruffer', 'gruffest', normal ). +adj( 'grumpy', 'grumpier', 'grumpiest', normal ). +adj( 'guarded', '-', '-', normal ). +adj( 'guileful', '-', '-', normal ). +adj( 'guileless', '-', '-', normal ). +adj( 'guiltless', '-', '-', normal ). +adj( 'guilty', 'guiltier', 'guiltiest', normal ). +adj( 'gullible', '-', '-', normal ). +adj( 'gummy', 'gummier', 'gummiest', normal ). +adj( 'gushing', '-', '-', normal ). +adj( 'gusseted', '-', '-', normal ). +adj( 'gusty', 'gustier', 'gustiest', normal ). +adj( 'gutless', '-', '-', normal ). +adj( 'guttural', '-', '-', normal ). +adj( 'gymnastic', '-', '-', normal ). +adj( 'gynaecological', '-', '-', normal ). +adj( 'gynecological', '-', '-', normal ). +adj( 'gyroscopic', '-', '-', normal ). +adj( 'habitable', '-', '-', normal ). +adj( 'habitual', '-', '-', normal ). +adj( 'hackneyed', '-', '-', normal ). +adj( 'hag-ridden', '-', '-', normal ). +adj( 'haggard', '-', '-', normal ). +adj( 'hair-raising', '-', '-', normal ). +adj( 'hairless', '-', '-', normal ). +adj( 'hairlike', '-', '-', normal ). +adj( 'hairsplitting', '-', '-', normal ). +adj( 'hairy', 'hairier', 'hairiest', normal ). +adj( 'halcyon', '-', '-', normal ). +adj( 'hale', '-', '-', normal ). +adj( 'half-baked', '-', '-', normal ). +adj( 'half-crazed', '-', '-', normal ). +adj( 'half-hardy', '-', '-', normal ). +adj( 'half-hearted', '-', '-', normal ). +adj( 'half-hourly', '-', '-', normal ). +adj( 'half-length', '-', '-', normal ). +adj( 'half-seas-over', '-', '-', pred ). +adj( 'half-size', '-', '-', normal ). +adj( 'half-timbered', '-', '-', normal ). +adj( 'half-tracked', '-', '-', normal ). +adj( 'half-yearly', '-', '-', normal ). +adj( 'halfway', '-', '-', normal ). +adj( 'halfwitted', '-', '-', normal ). +adj( 'hallucinatory', '-', '-', normal ). +adj( 'hallucinogenic', '-', '-', normal ). +adj( 'halt', '-', '-', normal ). +adj( 'ham-fisted', '-', '-', normal ). +adj( 'ham-handed', '-', '-', normal ). +adj( 'hand-picked', '-', '-', normal ). +adj( 'handmade', '-', '-', normal ). +adj( 'handsome', '-', '-', normal ). +adj( 'handy', 'handier', 'handiest', normal ). +adj( 'hangdog', '-', '-', attr ). +adj( 'haphazard', '-', '-', normal ). +adj( 'hapless', '-', '-', normal ). +adj( 'happy', 'happier', 'happiest', normal ). +adj( 'happy-go-lucky', '-', '-', normal ). +adj( 'hard', 'harder', 'hardest', normal ). +adj( 'hard-baked', '-', '-', normal ). +adj( 'hard-bitten', '-', '-', normal ). +adj( 'hard-boiled', '-', '-', normal ). +adj( 'hard-headed', '-', '-', normal ). +adj( 'hardbacked', '-', '-', normal ). +adj( 'hardbound', '-', '-', normal ). +adj( 'hardcovered', '-', '-', normal ). +adj( 'hardhearted', '-', '-', normal ). +adj( 'hardhitting', '-', '-', normal ). +adj( 'hardworking', '-', '-', normal ). +adj( 'hardy', 'hardier', 'hardiest', normal ). +adj( 'harebrained', '-', '-', normal ). +adj( 'harmful', '-', '-', normal ). +adj( 'harmless', '-', '-', normal ). +adj( 'harmonious', '-', '-', normal ). +adj( 'harsh', 'harsher', 'harshest', normal ). +adj( 'harum-scarum', '-', '-', normal ). +adj( 'hasty', 'hastier', 'hastiest', normal ). +adj( 'hateful', '-', '-', normal ). +adj( 'hatless', '-', '-', normal ). +adj( 'haughty', 'haughtier', 'haughtiest', normal ). +adj( 'hawk-eyed', '-', '-', normal ). +adj( 'haywire', '-', '-', pred ). +adj( 'hazardous', '-', '-', normal ). +adj( 'hazy', 'hazier', 'haziest', normal ). +adj( 'head-on', '-', '-', normal ). +adj( 'headed', '-', '-', normal ). +adj( 'headless', '-', '-', normal ). +adj( 'headlong', '-', '-', normal ). +adj( 'headstrong', '-', '-', normal ). +adj( 'heady', 'headier', 'headiest', normal ). +adj( 'healing', '-', '-', normal ). +adj( 'healthful', '-', '-', normal ). +adj( 'healthy', 'healthier', 'healthiest', normal ). +adj( 'heart-rending', '-', '-', normal ). +adj( 'heartbreaking', '-', '-', normal ). +adj( 'heartbroken', '-', '-', normal ). +adj( 'hearted', '-', '-', affix ). +adj( 'heartfelt', '-', '-', normal ). +adj( 'heartless', '-', '-', normal ). +adj( 'heartsick', '-', '-', normal ). +adj( 'hearty', 'heartier', 'heartiest', normal ). +adj( 'heated', '-', '-', normal ). +adj( 'heathenish', '-', '-', normal ). +adj( 'heavenly', '-', '-', normal ). +adj( 'heavensent', '-', '-', normal ). +adj( 'heavenward', '-', '-', normal ). +adj( 'heavenwards', '-', '-', normal ). +adj( 'heavy', 'heavier', 'heaviest', normal ). +adj( 'heavy-handed', '-', '-', normal ). +adj( 'heavy-hearted', '-', '-', normal ). +adj( 'heavy-laden', '-', '-', normal ). +adj( 'hebdomadal', '-', '-', normal ). +adj( 'hectic', '-', '-', normal ). +adj( 'hedonistic', '-', '-', normal ). +adj( 'heedful', '-', '-', normal ). +adj( 'heedless', '-', '-', normal ). +adj( 'hefty', 'heftier', 'heftiest', normal ). +adj( 'heinous', '-', '-', normal ). +adj( 'hellish', '-', '-', normal ). +adj( 'helmeted', '-', '-', normal ). +adj( 'helpful', '-', '-', normal ). +adj( 'helpless', '-', '-', normal ). +adj( 'hempen', '-', '-', normal ). +adj( 'hennaed', '-', '-', normal ). +adj( 'henpecked', '-', '-', normal ). +adj( 'hep', '-', '-', normal ). +adj( 'her', '-', '-', attr ). +adj( 'heraldic', '-', '-', normal ). +adj( 'herbaceous', '-', '-', normal ). +adj( 'herbal', '-', '-', normal ). +adj( 'herbivorous', '-', '-', normal ). +adj( 'herculean', '-', '-', normal ). +adj( 'hereditary', '-', '-', normal ). +adj( 'heretical', '-', '-', normal ). +adj( 'heritable', '-', '-', normal ). +adj( 'hermetic', '-', '-', normal ). +adj( 'heroic', '-', '-', normal ). +adj( 'hesitant', '-', '-', normal ). +adj( 'het-up', '-', '-', normal ). +adj( 'heterodox', '-', '-', normal ). +adj( 'heterogeneous', '-', '-', normal ). +adj( 'heterosexual', '-', '-', normal ). +adj( 'heuristic', '-', '-', normal ). +adj( 'hexagonal', '-', '-', normal ). +adj( 'hi-fi', '-', '-', normal ). +adj( 'hick', '-', '-', normal ). +adj( 'hidebound', '-', '-', normal ). +adj( 'hideous', '-', '-', normal ). +adj( 'hierarchic', '-', '-', normal ). +adj( 'hierarchical', '-', '-', normal ). +adj( 'hieroglyphic', '-', '-', normal ). +adj( 'higgledy-piggledy', '-', '-', normal ). +adj( 'high', 'higher', 'highest', normal ). +adj( 'high-class', '-', '-', normal ). +adj( 'high-falutin', '-', '-', normal ). +adj( 'high-fidelity', '-', '-', normal ). +adj( 'high-grade', '-', '-', normal ). +adj( 'high-handed', '-', '-', normal ). +adj( 'high-keyed', '-', '-', normal ). +adj( 'high-level', '-', '-', normal ). +adj( 'high-minded', '-', '-', normal ). +adj( 'high-necked', '-', '-', normal ). +adj( 'high-octane', '-', '-', normal ). +adj( 'high-pitched', '-', '-', normal ). +adj( 'high-powered', '-', '-', normal ). +adj( 'high-priced', '-', '-', normal ). +adj( 'high-principled', '-', '-', normal ). +adj( 'high-ranking', '-', '-', normal ). +adj( 'high-rise', '-', '-', attr ). +adj( 'high-sounding', '-', '-', normal ). +adj( 'high-speed', '-', '-', normal ). +adj( 'high-spirited', '-', '-', normal ). +adj( 'high-tension', '-', '-', normal ). +adj( 'high-toned', '-', '-', normal ). +adj( 'highborn', '-', '-', normal ). +adj( 'highbrow', '-', '-', normal ). +adj( 'highflown', '-', '-', normal ). +adj( 'highflying', '-', '-', normal ). +adj( 'hilarious', '-', '-', normal ). +adj( 'hilly', 'hillier', 'hilliest', normal ). +adj( 'hind', '-', '-', normal ). +adj( 'hindmost', '-', '-', normal ). +adj( 'hip', '-', '-', normal ). +adj( 'hirsute', '-', '-', normal ). +adj( 'his', '-', '-', normal ). +adj( 'historic', '-', '-', normal ). +adj( 'historical', '-', '-', normal ). +adj( 'histrionic', '-', '-', normal ). +adj( 'hit-and-run', '-', '-', attr ). +adj( 'hoar', '-', '-', normal ). +adj( 'hoarse', 'hoarser', 'hoarsest', normal ). +adj( 'hoary', 'hoarier', 'hoariest', normal ). +adj( 'hobnailed', '-', '-', normal ). +adj( 'hoggish', '-', '-', normal ). +adj( 'hoity-toity', '-', '-', normal ). +adj( 'hole-and-corner', '-', '-', normal ). +adj( 'hollow', '-', '-', normal ). +adj( 'holy', 'holier', 'holiest', normal ). +adj( 'home-baked', '-', '-', normal ). +adj( 'home-brewed', '-', '-', normal ). +adj( 'home-cured', '-', '-', normal ). +adj( 'home-grown', '-', '-', normal ). +adj( 'home-made', '-', '-', normal ). +adj( 'homeless', '-', '-', normal ). +adj( 'homelike', '-', '-', normal ). +adj( 'homely', 'homelier', 'homeliest', normal ). +adj( 'homeopathic', '-', '-', normal ). +adj( 'homesick', '-', '-', normal ). +adj( 'homespun', '-', '-', normal ). +adj( 'homeward', '-', '-', normal ). +adj( 'homey', '-', '-', normal ). +adj( 'homicidal', '-', '-', normal ). +adj( 'homiletic', '-', '-', normal ). +adj( 'homing', '-', '-', normal ). +adj( 'homogeneous', '-', '-', normal ). +adj( 'homosexual', '-', '-', normal ). +adj( 'honest', '-', '-', normal ). +adj( 'honeyed', '-', '-', normal ). +adj( 'honorary', '-', '-', normal ). +adj( 'honorific', '-', '-', normal ). +adj( 'honourable', '-', '-', normal ). +adj( 'hook-nosed', '-', '-', normal ). +adj( 'hooked', '-', '-', normal ). +adj( 'hopeful', '-', '-', normal ). +adj( 'hopeless', '-', '-', normal ). +adj( 'hopped-up', '-', '-', normal ). +adj( 'horizontal', '-', '-', normal ). +adj( 'horn-rimmed', '-', '-', normal ). +adj( 'horned', '-', '-', normal ). +adj( 'hornless', '-', '-', normal ). +adj( 'hornlike', '-', '-', normal ). +adj( 'horny', 'hornier', 'horniest', normal ). +adj( 'horrible', '-', '-', normal ). +adj( 'horrid', '-', '-', normal ). +adj( 'horrific', '-', '-', normal ). +adj( 'horror-stricken', '-', '-', normal ). +adj( 'horror-struck', '-', '-', normal ). +adj( 'hors de combat', '-', '-', pred ). +adj( 'horsy', '-', '-', normal ). +adj( 'hortative', '-', '-', normal ). +adj( 'horticultural', '-', '-', normal ). +adj( 'hospitable', '-', '-', normal ). +adj( 'hostile', '-', '-', normal ). +adj( 'hot', 'hotter', 'hottest', normal ). +adj( 'hot-blooded', '-', '-', normal ). +adj( 'hot-headed', '-', '-', normal ). +adj( 'hot-tempered', '-', '-', normal ). +adj( 'hourly', '-', '-', normal ). +adj( 'housebound', '-', '-', normal ). +adj( 'houseproud', '-', '-', normal ). +adj( 'housetrained', '-', '-', normal ). +adj( 'housewifely', '-', '-', normal ). +adj( 'howling', '-', '-', normal ). +adj( 'hoydenish', '-', '-', normal ). +adj( 'hued', '-', '-', affix ). +adj( 'huffish', '-', '-', normal ). +adj( 'huffy', 'huffier', 'huffiest', normal ). +adj( 'huge', '-', '-', normal ). +adj( 'hugger-mugger', '-', '-', normal ). +adj( 'hulking', '-', '-', normal ). +adj( 'human', '-', '-', normal ). +adj( 'humane', '-', '-', normal ). +adj( 'humanitarian', '-', '-', normal ). +adj( 'humble', 'humbler', 'humblest', normal ). +adj( 'humdrum', '-', '-', normal ). +adj( 'humid', '-', '-', normal ). +adj( 'humorous', '-', '-', normal ). +adj( 'humourless', '-', '-', normal ). +adj( 'humpbacked', '-', '-', normal ). +adj( 'hunchback', '-', '-', normal ). +adj( 'hunchbacked', '-', '-', normal ). +adj( 'hundred', '-', '-', normal ). +adj( 'hundredth', '-', '-', normal ). +adj( 'hungry', 'hungrier', 'hungriest', normal ). +adj( 'hurried', '-', '-', normal ). +adj( 'hurtful', '-', '-', normal ). +adj( 'hush-hush', '-', '-', normal ). +adj( 'husky', 'huskier', 'huskiest', normal ). +adj( 'hutted', '-', '-', normal ). +adj( 'hybrid', '-', '-', normal ). +adj( 'hydraulic', '-', '-', normal ). +adj( 'hydrochloric', '-', '-', normal ). +adj( 'hydroelectric', '-', '-', normal ). +adj( 'hydropathic', '-', '-', normal ). +adj( 'hygienic', '-', '-', normal ). +adj( 'hyperbolic', '-', '-', normal ). +adj( 'hypercritical', '-', '-', normal ). +adj( 'hypersensitive', '-', '-', normal ). +adj( 'hypnotic', '-', '-', normal ). +adj( 'hypochondriac', '-', '-', normal ). +adj( 'hypochondriacal', '-', '-', normal ). +adj( 'hypocritical', '-', '-', normal ). +adj( 'hypodermic', '-', '-', normal ). +adj( 'hypothetical', '-', '-', normal ). +adj( 'hysterical', '-', '-', normal ). +adj( 'iambic', '-', '-', normal ). +adj( 'icebound', '-', '-', normal ). +adj( 'icefree', '-', '-', normal ). +adj( 'icy', 'icier', 'iciest', normal ). +adj( 'ideal', '-', '-', normal ). +adj( 'idealistic', '-', '-', normal ). +adj( 'identical', '-', '-', normal ). +adj( 'identifiable', '-', '-', normal ). +adj( 'ideographic', '-', '-', normal ). +adj( 'ideological', '-', '-', normal ). +adj( 'idiomatic', '-', '-', normal ). +adj( 'idiosyncratic', '-', '-', normal ). +adj( 'idiotic', '-', '-', normal ). +adj( 'idle', 'idler', 'idlest', normal ). +adj( 'idolatrous', '-', '-', normal ). +adj( 'idyllic', '-', '-', normal ). +adj( 'igneous', '-', '-', normal ). +adj( 'ignoble', '-', '-', normal ). +adj( 'ignominious', '-', '-', normal ). +adj( 'ignorant', '-', '-', normal ). +adj( 'ill', '-', '-', normal ). +adj( 'ill-advised', '-', '-', normal ). +adj( 'ill-affected', '-', '-', normal ). +adj( 'ill-bred', '-', '-', normal ). +adj( 'ill-disposed', '-', '-', normal ). +adj( 'ill-fated', '-', '-', normal ). +adj( 'ill-favoured', '-', '-', normal ). +adj( 'ill-gotten', '-', '-', normal ). +adj( 'ill-judged', '-', '-', normal ). +adj( 'ill-mannered', '-', '-', normal ). +adj( 'ill-natured', '-', '-', normal ). +adj( 'ill-omened', '-', '-', normal ). +adj( 'ill-starred', '-', '-', normal ). +adj( 'ill-timed', '-', '-', normal ). +adj( 'illegal', '-', '-', normal ). +adj( 'illegible', '-', '-', normal ). +adj( 'illegitimate', '-', '-', normal ). +adj( 'illiberal', '-', '-', normal ). +adj( 'illicit', '-', '-', normal ). +adj( 'illimitable', '-', '-', normal ). +adj( 'illiterate', '-', '-', normal ). +adj( 'illogical', '-', '-', normal ). +adj( 'illusive', '-', '-', normal ). +adj( 'illusory', '-', '-', normal ). +adj( 'illustrative', '-', '-', normal ). +adj( 'illustrious', '-', '-', normal ). +adj( 'imaginable', '-', '-', normal ). +adj( 'imaginary', '-', '-', normal ). +adj( 'imaginative', '-', '-', normal ). +adj( 'imbecile', '-', '-', normal ). +adj( 'imitative', '-', '-', normal ). +adj( 'immaculate', '-', '-', normal ). +adj( 'immanent', '-', '-', normal ). +adj( 'immaterial', '-', '-', normal ). +adj( 'immature', '-', '-', normal ). +adj( 'immeasurable', '-', '-', normal ). +adj( 'immediate', '-', '-', normal ). +adj( 'immemorial', '-', '-', normal ). +adj( 'immense', '-', '-', normal ). +adj( 'imminent', '-', '-', normal ). +adj( 'immobile', '-', '-', normal ). +adj( 'immoderate', '-', '-', normal ). +adj( 'immodest', '-', '-', normal ). +adj( 'immoral', '-', '-', normal ). +adj( 'immortal', '-', '-', normal ). +adj( 'immovable', '-', '-', normal ). +adj( 'immune', '-', '-', normal ). +adj( 'immutable', '-', '-', normal ). +adj( 'impalpable', '-', '-', normal ). +adj( 'impartial', '-', '-', normal ). +adj( 'impassable', '-', '-', normal ). +adj( 'impassioned', '-', '-', normal ). +adj( 'impassive', '-', '-', normal ). +adj( 'impatient', '-', '-', normal ). +adj( 'impeccable', '-', '-', normal ). +adj( 'impecunious', '-', '-', normal ). +adj( 'impenetrable', '-', '-', normal ). +adj( 'impenitent', '-', '-', normal ). +adj( 'imperative', '-', '-', normal ). +adj( 'imperceptible', '-', '-', normal ). +adj( 'imperfect', '-', '-', normal ). +adj( 'imperial', '-', '-', normal ). +adj( 'imperialistic', '-', '-', normal ). +adj( 'imperious', '-', '-', normal ). +adj( 'imperishable', '-', '-', normal ). +adj( 'impermanent', '-', '-', normal ). +adj( 'impermeable', '-', '-', normal ). +adj( 'impersonal', '-', '-', normal ). +adj( 'impertinent', '-', '-', normal ). +adj( 'imperturbable', '-', '-', normal ). +adj( 'impervious', '-', '-', normal ). +adj( 'impetuous', '-', '-', normal ). +adj( 'impious', '-', '-', normal ). +adj( 'impish', '-', '-', normal ). +adj( 'implacable', '-', '-', normal ). +adj( 'implausible', '-', '-', normal ). +adj( 'implicit', '-', '-', normal ). +adj( 'impolite', '-', '-', normal ). +adj( 'impolitic', '-', '-', normal ). +adj( 'imponderable', '-', '-', normal ). +adj( 'important', '-', '-', normal ). +adj( 'importunate', '-', '-', normal ). +adj( 'imposing', '-', '-', normal ). +adj( 'impossible', '-', '-', normal ). +adj( 'impotent', '-', '-', normal ). +adj( 'impracticable', '-', '-', normal ). +adj( 'impractical', '-', '-', normal ). +adj( 'imprecise', '-', '-', normal ). +adj( 'impregnable', '-', '-', normal ). +adj( 'impressionable', '-', '-', normal ). +adj( 'impressionistic', '-', '-', normal ). +adj( 'impressive', '-', '-', normal ). +adj( 'improbable', '-', '-', normal ). +adj( 'impromptu', '-', '-', normal ). +adj( 'improper', '-', '-', normal ). +adj( 'improvident', '-', '-', normal ). +adj( 'imprudent', '-', '-', normal ). +adj( 'impudent', '-', '-', normal ). +adj( 'impulsive', '-', '-', normal ). +adj( 'impure', '-', '-', normal ). +adj( 'in-chief', '-', '-', affix ). +adj( 'in-service', '-', '-', attr ). +adj( 'inaccessible', '-', '-', normal ). +adj( 'inaccurate', '-', '-', normal ). +adj( 'inactive', '-', '-', normal ). +adj( 'inadequate', '-', '-', normal ). +adj( 'inadmissible', '-', '-', normal ). +adj( 'inadvertent', '-', '-', normal ). +adj( 'inadvisable', '-', '-', normal ). +adj( 'inalienable', '-', '-', normal ). +adj( 'inane', '-', '-', normal ). +adj( 'inanimate', '-', '-', normal ). +adj( 'inapplicable', '-', '-', normal ). +adj( 'inappreciable', '-', '-', normal ). +adj( 'inappropriate', '-', '-', normal ). +adj( 'inapt', '-', '-', normal ). +adj( 'inarticulate', '-', '-', normal ). +adj( 'inattentive', '-', '-', normal ). +adj( 'inaudible', '-', '-', normal ). +adj( 'inaugural', '-', '-', normal ). +adj( 'inauspicious', '-', '-', normal ). +adj( 'inboard', '-', '-', normal ). +adj( 'inborn', '-', '-', normal ). +adj( 'inbound', '-', '-', normal ). +adj( 'inbred', '-', '-', normal ). +adj( 'inbuilt', '-', '-', normal ). +adj( 'incalculable', '-', '-', normal ). +adj( 'incandescent', '-', '-', normal ). +adj( 'incapable', '-', '-', normal ). +adj( 'incarnate', '-', '-', normal ). +adj( 'incautious', '-', '-', normal ). +adj( 'incessant', '-', '-', normal ). +adj( 'incestuous', '-', '-', normal ). +adj( 'inchoate', '-', '-', normal ). +adj( 'inchoative', '-', '-', normal ). +adj( 'incident', '-', '-', normal ). +adj( 'incidental', '-', '-', normal ). +adj( 'incipient', '-', '-', normal ). +adj( 'incisive', '-', '-', normal ). +adj( 'inclement', '-', '-', normal ). +adj( 'inclusive', '-', '-', normal ). +adj( 'incognito', '-', '-', normal ). +adj( 'incoherent', '-', '-', normal ). +adj( 'incombustible', '-', '-', normal ). +adj( 'incoming', '-', '-', normal ). +adj( 'incommensurable', '-', '-', normal ). +adj( 'incommensurate', '-', '-', normal ). +adj( 'incommunicado', '-', '-', normal ). +adj( 'incomparable', '-', '-', normal ). +adj( 'incompatible', '-', '-', normal ). +adj( 'incompetent', '-', '-', normal ). +adj( 'incomplete', '-', '-', normal ). +adj( 'incomprehensible', '-', '-', normal ). +adj( 'incompressible', '-', '-', normal ). +adj( 'inconceivable', '-', '-', normal ). +adj( 'inconclusive', '-', '-', normal ). +adj( 'incongruous', '-', '-', normal ). +adj( 'inconsequent', '-', '-', normal ). +adj( 'inconsequential', '-', '-', normal ). +adj( 'inconsiderable', '-', '-', normal ). +adj( 'inconsiderate', '-', '-', normal ). +adj( 'inconsistent', '-', '-', normal ). +adj( 'inconsolable', '-', '-', normal ). +adj( 'inconspicuous', '-', '-', normal ). +adj( 'inconstant', '-', '-', normal ). +adj( 'incontestable', '-', '-', normal ). +adj( 'incontinent', '-', '-', normal ). +adj( 'incontrovertible', '-', '-', normal ). +adj( 'inconvenient', '-', '-', normal ). +adj( 'inconvertible', '-', '-', normal ). +adj( 'incorporate', '-', '-', normal ). +adj( 'incorporeal', '-', '-', normal ). +adj( 'incorrect', '-', '-', normal ). +adj( 'incorrigible', '-', '-', normal ). +adj( 'incorruptible', '-', '-', normal ). +adj( 'incredible', '-', '-', normal ). +adj( 'incredulous', '-', '-', normal ). +adj( 'incremental', '-', '-', normal ). +adj( 'incumbent', '-', '-', normal ). +adj( 'incurable', '-', '-', normal ). +adj( 'incurious', '-', '-', normal ). +adj( 'incurved', '-', '-', normal ). +adj( 'indebted', '-', '-', normal ). +adj( 'indecent', '-', '-', normal ). +adj( 'indecipherable', '-', '-', normal ). +adj( 'indecisive', '-', '-', normal ). +adj( 'indecorous', '-', '-', normal ). +adj( 'indefatigable', '-', '-', normal ). +adj( 'indefeasible', '-', '-', normal ). +adj( 'indefensible', '-', '-', normal ). +adj( 'indefinable', '-', '-', normal ). +adj( 'indefinite', '-', '-', normal ). +adj( 'indelible', '-', '-', normal ). +adj( 'indelicate', '-', '-', normal ). +adj( 'independent', '-', '-', normal ). +adj( 'indescribable', '-', '-', normal ). +adj( 'indestructible', '-', '-', normal ). +adj( 'indeterminable', '-', '-', normal ). +adj( 'indeterminate', '-', '-', normal ). +adj( 'indicative', '-', '-', normal ). +adj( 'indictable', '-', '-', normal ). +adj( 'indifferent', '-', '-', normal ). +adj( 'indigenous', '-', '-', normal ). +adj( 'indigent', '-', '-', normal ). +adj( 'indigestible', '-', '-', normal ). +adj( 'indignant', '-', '-', normal ). +adj( 'indirect', '-', '-', normal ). +adj( 'indiscernible', '-', '-', normal ). +adj( 'indiscreet', '-', '-', normal ). +adj( 'indiscrete', '-', '-', normal ). +adj( 'indiscriminate', '-', '-', normal ). +adj( 'indispensable', '-', '-', normal ). +adj( 'indisposed', '-', '-', normal ). +adj( 'indisputable', '-', '-', normal ). +adj( 'indissoluble', '-', '-', normal ). +adj( 'indistinct', '-', '-', normal ). +adj( 'indistinguishable', '-', '-', normal ). +adj( 'individual', '-', '-', normal ). +adj( 'individualistic', '-', '-', normal ). +adj( 'indivisible', '-', '-', normal ). +adj( 'indolent', '-', '-', normal ). +adj( 'indomitable', '-', '-', normal ). +adj( 'indoor', '-', '-', normal ). +adj( 'indrawn', '-', '-', normal ). +adj( 'indubitable', '-', '-', normal ). +adj( 'inductive', '-', '-', normal ). +adj( 'indulgent', '-', '-', normal ). +adj( 'industrial', '-', '-', normal ). +adj( 'industrialized', '-', '-', normal ). +adj( 'industrious', '-', '-', normal ). +adj( 'indwelling', '-', '-', normal ). +adj( 'inebriate', '-', '-', normal ). +adj( 'inedible', '-', '-', normal ). +adj( 'ineffable', '-', '-', normal ). +adj( 'ineffective', '-', '-', normal ). +adj( 'ineffectual', '-', '-', normal ). +adj( 'inefficient', '-', '-', normal ). +adj( 'inelastic', '-', '-', normal ). +adj( 'inelegant', '-', '-', normal ). +adj( 'ineligible', '-', '-', normal ). +adj( 'ineluctable', '-', '-', normal ). +adj( 'inept', '-', '-', normal ). +adj( 'inequitable', '-', '-', normal ). +adj( 'ineradicable', '-', '-', normal ). +adj( 'inert', '-', '-', normal ). +adj( 'inescapable', '-', '-', normal ). +adj( 'inessential', '-', '-', normal ). +adj( 'inestimable', '-', '-', normal ). +adj( 'inevitable', '-', '-', normal ). +adj( 'inexact', '-', '-', normal ). +adj( 'inexcusable', '-', '-', normal ). +adj( 'inexhaustible', '-', '-', normal ). +adj( 'inexorable', '-', '-', normal ). +adj( 'inexpedient', '-', '-', normal ). +adj( 'inexpensive', '-', '-', normal ). +adj( 'inexperienced', '-', '-', normal ). +adj( 'inexpert', '-', '-', normal ). +adj( 'inexpiable', '-', '-', normal ). +adj( 'inexplicable', '-', '-', normal ). +adj( 'inexpressible', '-', '-', normal ). +adj( 'inextinguishable', '-', '-', normal ). +adj( 'inextricable', '-', '-', normal ). +adj( 'infallible', '-', '-', normal ). +adj( 'infamous', '-', '-', normal ). +adj( 'infantile', '-', '-', normal ). +adj( 'infectious', '-', '-', normal ). +adj( 'inferential', '-', '-', normal ). +adj( 'inferior', '-', '-', normal ). +adj( 'infernal', '-', '-', normal ). +adj( 'infertile', '-', '-', normal ). +adj( 'infinite', '-', '-', normal ). +adj( 'infinitesimal', '-', '-', normal ). +adj( 'infinitive', '-', '-', normal ). +adj( 'infirm', '-', '-', normal ). +adj( 'inflammable', '-', '-', normal ). +adj( 'inflammatory', '-', '-', normal ). +adj( 'inflatable', '-', '-', normal ). +adj( 'inflationary', '-', '-', normal ). +adj( 'inflectional', '-', '-', normal ). +adj( 'inflexible', '-', '-', normal ). +adj( 'influential', '-', '-', normal ). +adj( 'informal', '-', '-', normal ). +adj( 'informative', '-', '-', normal ). +adj( 'infra dig', '-', '-', pred ). +adj( 'infra-red', '-', '-', normal ). +adj( 'infrequent', '-', '-', normal ). +adj( 'ingenious', '-', '-', normal ). +adj( 'ingenuous', '-', '-', normal ). +adj( 'inglorious', '-', '-', normal ). +adj( 'ingoing', '-', '-', normal ). +adj( 'ingrained', '-', '-', normal ). +adj( 'ingrowing', '-', '-', normal ). +adj( 'inhabitable', '-', '-', normal ). +adj( 'inharmonious', '-', '-', normal ). +adj( 'inherent', '-', '-', normal ). +adj( 'inhibitory', '-', '-', normal ). +adj( 'inhospitable', '-', '-', normal ). +adj( 'inhuman', '-', '-', normal ). +adj( 'inhumane', '-', '-', normal ). +adj( 'inimical', '-', '-', normal ). +adj( 'inimitable', '-', '-', normal ). +adj( 'iniquitous', '-', '-', normal ). +adj( 'initial', '-', '-', normal ). +adj( 'initiate', '-', '-', normal ). +adj( 'injudicious', '-', '-', normal ). +adj( 'injured', '-', '-', normal ). +adj( 'injurious', '-', '-', normal ). +adj( 'inky', 'inkier', 'inkiest', normal ). +adj( 'inland', '-', '-', normal ). +adj( 'inmost', '-', '-', normal ). +adj( 'innate', '-', '-', normal ). +adj( 'inner', '-', '-', normal ). +adj( 'innermost', '-', '-', normal ). +adj( 'innocent', '-', '-', normal ). +adj( 'innocuous', '-', '-', normal ). +adj( 'innumerable', '-', '-', normal ). +adj( 'inoffensive', '-', '-', normal ). +adj( 'inoperable', '-', '-', normal ). +adj( 'inoperative', '-', '-', normal ). +adj( 'inopportune', '-', '-', normal ). +adj( 'inordinate', '-', '-', normal ). +adj( 'inorganic', '-', '-', normal ). +adj( 'inpouring', '-', '-', normal ). +adj( 'inquiring', '-', '-', normal ). +adj( 'inquisitive', '-', '-', normal ). +adj( 'inquisitorial', '-', '-', normal ). +adj( 'insane', '-', '-', normal ). +adj( 'insanitary', '-', '-', normal ). +adj( 'insatiable', '-', '-', normal ). +adj( 'insatiate', '-', '-', normal ). +adj( 'inscrutable', '-', '-', normal ). +adj( 'insectivorous', '-', '-', normal ). +adj( 'insecure', '-', '-', normal ). +adj( 'insensate', '-', '-', normal ). +adj( 'insensible', '-', '-', normal ). +adj( 'insensitive', '-', '-', normal ). +adj( 'insentient', '-', '-', normal ). +adj( 'inseparable', '-', '-', normal ). +adj( 'inshore', '-', '-', normal ). +adj( 'inside', '-', '-', normal ). +adj( 'insidious', '-', '-', normal ). +adj( 'insignificant', '-', '-', normal ). +adj( 'insincere', '-', '-', normal ). +adj( 'insipid', '-', '-', normal ). +adj( 'insistent', '-', '-', normal ). +adj( 'insolent', '-', '-', normal ). +adj( 'insoluble', '-', '-', normal ). +adj( 'insolvent', '-', '-', normal ). +adj( 'insouciant', '-', '-', normal ). +adj( 'inspirational', '-', '-', normal ). +adj( 'inspired', '-', '-', normal ). +adj( 'instant', '-', '-', normal ). +adj( 'instantaneous', '-', '-', normal ). +adj( 'instinct', '-', '-', pred ). +adj( 'instinctive', '-', '-', normal ). +adj( 'institutional', '-', '-', normal ). +adj( 'instructional', '-', '-', normal ). +adj( 'instructive', '-', '-', normal ). +adj( 'instrumental', '-', '-', normal ). +adj( 'insubordinate', '-', '-', normal ). +adj( 'insubstantial', '-', '-', normal ). +adj( 'insufferable', '-', '-', normal ). +adj( 'insufficient', '-', '-', normal ). +adj( 'insular', '-', '-', normal ). +adj( 'insulting', '-', '-', normal ). +adj( 'insuperable', '-', '-', normal ). +adj( 'insupportable', '-', '-', normal ). +adj( 'insurgent', '-', '-', normal ). +adj( 'insurmountable', '-', '-', normal ). +adj( 'intact', '-', '-', normal ). +adj( 'intangible', '-', '-', normal ). +adj( 'integral', '-', '-', normal ). +adj( 'intellectual', '-', '-', normal ). +adj( 'intelligent', '-', '-', normal ). +adj( 'intelligible', '-', '-', normal ). +adj( 'intemperate', '-', '-', normal ). +adj( 'intense', '-', '-', normal ). +adj( 'intensive', '-', '-', normal ). +adj( 'intent', '-', '-', normal ). +adj( 'intentional', '-', '-', normal ). +adj( 'interactive', '-', '-', normal ). +adj( 'intercalary', '-', '-', normal ). +adj( 'interchangeable', '-', '-', normal ). +adj( 'intercollegiate', '-', '-', normal ). +adj( 'intercontinental', '-', '-', normal ). +adj( 'interdenominational', '-', '-', normal ). +adj( 'interdepartmental', '-', '-', normal ). +adj( 'interdependent', '-', '-', normal ). +adj( 'interdisciplinary', '-', '-', normal ). +adj( 'interested', '-', '-', normal ). +adj( 'interesting', '-', '-', normal ). +adj( 'interior', '-', '-', normal ). +adj( 'intermediate', '-', '-', normal ). +adj( 'interminable', '-', '-', normal ). +adj( 'intermittent', '-', '-', normal ). +adj( 'internal', '-', '-', normal ). +adj( 'international', '-', '-', normal ). +adj( 'internecine', '-', '-', normal ). +adj( 'interplanetary', '-', '-', normal ). +adj( 'interpretative', '-', '-', normal ). +adj( 'interracial', '-', '-', normal ). +adj( 'interrogative', '-', '-', normal ). +adj( 'interrogatory', '-', '-', normal ). +adj( 'interstate', '-', '-', normal ). +adj( 'interstellar', '-', '-', normal ). +adj( 'intertribal', '-', '-', normal ). +adj( 'intestate', '-', '-', normal ). +adj( 'intestinal', '-', '-', normal ). +adj( 'intimate', '-', '-', normal ). +adj( 'intolerable', '-', '-', normal ). +adj( 'intolerant', '-', '-', normal ). +adj( 'intoxicant', '-', '-', normal ). +adj( 'intra-uterine', '-', '-', normal ). +adj( 'intractable', '-', '-', normal ). +adj( 'intramural', '-', '-', normal ). +adj( 'intransigent', '-', '-', normal ). +adj( 'intransitive', '-', '-', normal ). +adj( 'intravenous', '-', '-', normal ). +adj( 'intrepid', '-', '-', normal ). +adj( 'intricate', '-', '-', normal ). +adj( 'intrinsic', '-', '-', normal ). +adj( 'introductory', '-', '-', normal ). +adj( 'introspective', '-', '-', normal ). +adj( 'intrusive', '-', '-', normal ). +adj( 'intuitive', '-', '-', normal ). +adj( 'invalid', '-', '-', normal ). +adj( 'invalid', '-', '-', normal ). +adj( 'invaluable', '-', '-', normal ). +adj( 'invariable', '-', '-', normal ). +adj( 'invasive', '-', '-', normal ). +adj( 'inventive', '-', '-', normal ). +adj( 'inverse', '-', '-', normal ). +adj( 'invertebrate', '-', '-', normal ). +adj( 'inveterate', '-', '-', normal ). +adj( 'invidious', '-', '-', normal ). +adj( 'invincible', '-', '-', normal ). +adj( 'inviolable', '-', '-', normal ). +adj( 'inviolate', '-', '-', normal ). +adj( 'invisible', '-', '-', normal ). +adj( 'inviting', '-', '-', normal ). +adj( 'involuntary', '-', '-', normal ). +adj( 'involute', '-', '-', normal ). +adj( 'involved', '-', '-', normal ). +adj( 'invulnerable', '-', '-', normal ). +adj( 'inward', '-', '-', normal ). +adj( 'inwrought', '-', '-', normal ). +adj( 'irascible', '-', '-', normal ). +adj( 'irate', '-', '-', normal ). +adj( 'ireful', '-', '-', normal ). +adj( 'iridescent', '-', '-', normal ). +adj( 'irksome', '-', '-', normal ). +adj( 'iron-grey', '-', '-', normal ). +adj( 'ironclad', '-', '-', normal ). +adj( 'ironic', '-', '-', normal ). +adj( 'ironical', '-', '-', normal ). +adj( 'irrational', '-', '-', normal ). +adj( 'irreconcilable', '-', '-', normal ). +adj( 'irrecoverable', '-', '-', normal ). +adj( 'irredeemable', '-', '-', normal ). +adj( 'irreducible', '-', '-', normal ). +adj( 'irrefutable', '-', '-', normal ). +adj( 'irregular', '-', '-', normal ). +adj( 'irrelevant', '-', '-', normal ). +adj( 'irreligious', '-', '-', normal ). +adj( 'irremediable', '-', '-', normal ). +adj( 'irremovable', '-', '-', normal ). +adj( 'irreparable', '-', '-', normal ). +adj( 'irreplaceable', '-', '-', normal ). +adj( 'irrepressible', '-', '-', normal ). +adj( 'irreproachable', '-', '-', normal ). +adj( 'irresistible', '-', '-', normal ). +adj( 'irresolute', '-', '-', normal ). +adj( 'irrespective', '-', '-', normal ). +adj( 'irresponsible', '-', '-', normal ). +adj( 'irretrievable', '-', '-', normal ). +adj( 'irreverent', '-', '-', normal ). +adj( 'irreversible', '-', '-', normal ). +adj( 'irrevocable', '-', '-', normal ). +adj( 'irritable', '-', '-', normal ). +adj( 'irritant', '-', '-', normal ). +adj( 'isosceles', '-', '-', normal ). +adj( 'italic', '-', '-', normal ). +adj( 'itchy', 'itchier', 'itchiest', normal ). +adj( 'itinerant', '-', '-', normal ). +adj( 'its', '-', '-', normal ). +adj( 'ivied', '-', '-', normal ). +adj( 'jaded', '-', '-', normal ). +adj( 'jagged', '-', '-', normal ). +adj( 'jaggy', 'jaggier', 'jaggiest', normal ). +adj( 'jarring', '-', '-', normal ). +adj( 'jaunty', 'jauntier', 'jauntiest', normal ). +adj( 'jazzy', 'jazzier', 'jazziest', normal ). +adj( 'jealous', '-', '-', normal ). +adj( 'jejune', '-', '-', normal ). +adj( 'jellied', '-', '-', normal ). +adj( 'jerky', 'jerkier', 'jerkiest', normal ). +adj( 'jerry-built', '-', '-', normal ). +adj( 'jesting', '-', '-', normal ). +adj( 'jet-black', '-', '-', normal ). +adj( 'jet-propelled', '-', '-', normal ). +adj( 'jiggered', '-', '-', pred ). +adj( 'jingoistic', '-', '-', normal ). +adj( 'jittery', '-', '-', normal ). +adj( 'jocose', '-', '-', normal ). +adj( 'jocular', '-', '-', normal ). +adj( 'jocund', '-', '-', normal ). +adj( 'joint', '-', '-', normal ). +adj( 'jolly', 'jollier', 'jolliest', normal ). +adj( 'jolty', 'joltier', 'joltiest', normal ). +adj( 'journalistic', '-', '-', normal ). +adj( 'jovial', '-', '-', normal ). +adj( 'jowly', 'jowlier', 'jowliest', normal ). +adj( 'joyful', '-', '-', normal ). +adj( 'joyless', '-', '-', normal ). +adj( 'joyous', '-', '-', normal ). +adj( 'jubilant', '-', '-', normal ). +adj( 'judicial', '-', '-', normal ). +adj( 'judicious', '-', '-', normal ). +adj( 'jugular', '-', '-', normal ). +adj( 'juicy', 'juicier', 'juiciest', normal ). +adj( 'jumbo', '-', '-', normal ). +adj( 'jumped-up', '-', '-', normal ). +adj( 'jumpy', 'jumpier', 'jumpiest', normal ). +adj( 'jungly', 'junglier', 'jungliest', normal ). +adj( 'junior', '-', '-', normal ). +adj( 'juridical', '-', '-', normal ). +adj( 'just', '-', '-', normal ). +adj( 'justifiable', '-', '-', normal ). +adj( 'juvenile', '-', '-', normal ). +adj( 'kaleidoscopic', '-', '-', normal ). +adj( 'kaput', '-', '-', normal ). +adj( 'keen', 'keener', 'keenest', normal ). +adj( 'keyless', '-', '-', normal ). +adj( 'khaki', '-', '-', normal ). +adj( 'killing', '-', '-', normal ). +adj( 'kind', 'kinder', 'kindest', normal ). +adj( 'kind-hearted', '-', '-', normal ). +adj( 'kindly', 'kindlier', 'kindliest', normal ). +adj( 'kindred', '-', '-', normal ). +adj( 'kinetic', '-', '-', normal ). +adj( 'king-size', '-', '-', normal ). +adj( 'king-sized', '-', '-', normal ). +adj( 'kinglike', '-', '-', normal ). +adj( 'kingly', '-', '-', normal ). +adj( 'kinky', 'kinkier', 'kinkiest', normal ). +adj( 'kitsch', '-', '-', normal ). +adj( 'kittenish', '-', '-', normal ). +adj( 'knavish', '-', '-', normal ). +adj( 'knee-deep', '-', '-', normal ). +adj( 'knee-high', '-', '-', normal ). +adj( 'knightly', '-', '-', normal ). +adj( 'knobbly', 'knobblier', 'knobbliest', normal ). +adj( 'knock-kneed', '-', '-', normal ). +adj( 'knockabout', '-', '-', normal ). +adj( 'knockdown', '-', '-', normal ). +adj( 'knockout', '-', '-', normal ). +adj( 'knotty', 'knottier', 'knottiest', normal ). +adj( 'knowing', '-', '-', normal ). +adj( 'knowledgeable', '-', '-', normal ). +adj( 'kosher', '-', '-', normal ). +adj( 'la-di-da', '-', '-', normal ). +adj( 'labial', '-', '-', normal ). +adj( 'laborious', '-', '-', normal ). +adj( 'labour-saving', '-', '-', normal ). +adj( 'laboured', '-', '-', normal ). +adj( 'labyrinthine', '-', '-', normal ). +adj( 'lachrymal', '-', '-', normal ). +adj( 'lachrymose', '-', '-', normal ). +adj( 'lack-lustre', '-', '-', normal ). +adj( 'lackadaisical', '-', '-', normal ). +adj( 'laconic', '-', '-', normal ). +adj( 'lactic', '-', '-', normal ). +adj( 'lacy', 'lacier', 'laciest', normal ). +adj( 'ladder-proof', '-', '-', normal ). +adj( 'laden', '-', '-', normal ). +adj( 'ladylike', '-', '-', normal ). +adj( 'laic', '-', '-', normal ). +adj( 'lambent', '-', '-', normal ). +adj( 'lame', 'lamer', 'lamest', normal ). +adj( 'lamentable', '-', '-', normal ). +adj( 'lamplit', '-', '-', normal ). +adj( 'landed', '-', '-', normal ). +adj( 'landless', '-', '-', normal ). +adj( 'landlocked', '-', '-', normal ). +adj( 'languid', '-', '-', normal ). +adj( 'languorous', '-', '-', normal ). +adj( 'lank', '-', '-', normal ). +adj( 'lanky', 'lankier', 'lankiest', normal ). +adj( 'lantern-jawed', '-', '-', normal ). +adj( 'lapidary', '-', '-', normal ). +adj( 'larboard', '-', '-', normal ). +adj( 'large', 'larger', 'largest', normal ). +adj( 'large-scale', '-', '-', normal ). +adj( 'largish', '-', '-', normal ). +adj( 'larval', '-', '-', normal ). +adj( 'lascivious', '-', '-', normal ). +adj( 'last', '-', '-', normal ). +adj( 'lasting', '-', '-', normal ). +adj( 'late', 'later', 'latest', normal ). +adj( 'lateen', '-', '-', normal ). +adj( 'latent', '-', '-', normal ). +adj( 'lateral', '-', '-', normal ). +adj( 'latish', '-', '-', normal ). +adj( 'latitudinal', '-', '-', normal ). +adj( 'latitudinarian', '-', '-', normal ). +adj( 'latter', '-', '-', normal ). +adj( 'latter-day', '-', '-', normal ). +adj( 'latticed', '-', '-', normal ). +adj( 'laudable', '-', '-', normal ). +adj( 'laudatory', '-', '-', normal ). +adj( 'laughable', '-', '-', normal ). +adj( 'laughing', '-', '-', normal ). +adj( 'laureate', '-', '-', normal ). +adj( 'laurelled', '-', '-', normal ). +adj( 'lavish', '-', '-', normal ). +adj( 'law-abiding', '-', '-', normal ). +adj( 'lawful', '-', '-', normal ). +adj( 'lawless', '-', '-', normal ). +adj( 'lax', '-', '-', normal ). +adj( 'laxative', '-', '-', normal ). +adj( 'lay', '-', '-', normal ). +adj( 'lazy', 'lazier', 'laziest', normal ). +adj( 'leaded', '-', '-', normal ). +adj( 'leaden', '-', '-', normal ). +adj( 'leaderless', '-', '-', normal ). +adj( 'leading', '-', '-', normal ). +adj( 'leafless', '-', '-', normal ). +adj( 'leafy', 'leafier', 'leafiest', normal ). +adj( 'leaky', 'leakier', 'leakiest', normal ). +adj( 'leal', '-', '-', normal ). +adj( 'lean', 'leaner', 'leanest', normal ). +adj( 'learned', '-', '-', normal ). +adj( 'leasehold', '-', '-', normal ). +adj( 'least', '-', '-', normal ). +adj( 'leathery', '-', '-', normal ). +adj( 'lecherous', '-', '-', normal ). +adj( 'leeward', '-', '-', normal ). +adj( 'left', '-', '-', normal ). +adj( 'left-hand', '-', '-', normal ). +adj( 'left-handed', '-', '-', normal ). +adj( 'legal', '-', '-', normal ). +adj( 'legalistic', '-', '-', normal ). +adj( 'legato', '-', '-', normal ). +adj( 'legendary', '-', '-', normal ). +adj( 'legged', '-', '-', affix ). +adj( 'leggy', '-', '-', normal ). +adj( 'legible', '-', '-', normal ). +adj( 'legislative', '-', '-', normal ). +adj( 'legitimate', '-', '-', normal ). +adj( 'legless', '-', '-', normal ). +adj( 'leguminous', '-', '-', normal ). +adj( 'leisured', '-', '-', normal ). +adj( 'leisurely', '-', '-', normal ). +adj( 'lengthways', '-', '-', normal ). +adj( 'lengthy', 'lengthier', 'lengthiest', normal ). +adj( 'lenient', '-', '-', normal ). +adj( 'lento', '-', '-', normal ). +adj( 'leonine', '-', '-', normal ). +adj( 'leprous', '-', '-', normal ). +adj( 'less', '-', '-', normal ). +adj( 'lesser', '-', '-', normal ). +adj( 'lethal', '-', '-', normal ). +adj( 'lethargic', '-', '-', normal ). +adj( 'lettered', '-', '-', normal ). +adj( 'level', '-', '-', normal ). +adj( 'level-headed', '-', '-', normal ). +adj( 'lewd', 'lewder', 'lewdest', normal ). +adj( 'lexical', '-', '-', normal ). +adj( 'liable', '-', '-', normal ). +adj( 'libellous', '-', '-', normal ). +adj( 'liberal', '-', '-', normal ). +adj( 'libidinous', '-', '-', normal ). +adj( 'licentious', '-', '-', normal ). +adj( 'licit', '-', '-', normal ). +adj( 'lidless', '-', '-', normal ). +adj( 'liege', '-', '-', normal ). +adj( 'life-giving', '-', '-', normal ). +adj( 'life-size', '-', '-', normal ). +adj( 'life-sized', '-', '-', normal ). +adj( 'lifeless', '-', '-', normal ). +adj( 'lifelike', '-', '-', normal ). +adj( 'lifelong', '-', '-', normal ). +adj( 'light', 'lighter', 'lightest', normal ). +adj( 'light-armed', '-', '-', normal ). +adj( 'light-coloured', '-', '-', normal ). +adj( 'light-fingered', '-', '-', normal ). +adj( 'light-handed', '-', '-', normal ). +adj( 'light-headed', '-', '-', normal ). +adj( 'light-hearted', '-', '-', normal ). +adj( 'light-minded', '-', '-', normal ). +adj( 'lighting-up', '-', '-', attr ). +adj( 'lightsome', '-', '-', normal ). +adj( 'lightweight', '-', '-', normal ). +adj( 'ligneous', '-', '-', normal ). +adj( 'likable', '-', '-', normal ). +adj( 'like', '-', '-', normal ). +adj( 'like-minded', '-', '-', normal ). +adj( 'likeable', '-', '-', normal ). +adj( 'likely', 'likelier', 'likeliest', normal ). +adj( 'lily-livered', '-', '-', normal ). +adj( 'lily-white', '-', '-', normal ). +adj( 'limbed', '-', '-', affix ). +adj( 'limber', '-', '-', normal ). +adj( 'limbless', '-', '-', normal ). +adj( 'limitless', '-', '-', normal ). +adj( 'limp', '-', '-', normal ). +adj( 'limpid', '-', '-', normal ). +adj( 'lineal', '-', '-', normal ). +adj( 'linear', '-', '-', normal ). +adj( 'lingering', '-', '-', normal ). +adj( 'lingual', '-', '-', normal ). +adj( 'linguistic', '-', '-', normal ). +adj( 'lion-hearted', '-', '-', normal ). +adj( 'lipped', '-', '-', affix ). +adj( 'liquescent', '-', '-', normal ). +adj( 'liquid', '-', '-', normal ). +adj( 'lissom', '-', '-', normal ). +adj( 'lissome', '-', '-', normal ). +adj( 'listless', '-', '-', normal ). +adj( 'literal', '-', '-', normal ). +adj( 'literary', '-', '-', normal ). +adj( 'literate', '-', '-', normal ). +adj( 'lithe', '-', '-', normal ). +adj( 'lithographic', '-', '-', normal ). +adj( 'litigious', '-', '-', normal ). +adj( 'little', 'littler', 'littlest', normal ). +adj( 'littoral', '-', '-', normal ). +adj( 'liturgical', '-', '-', normal ). +adj( 'livable', '-', '-', normal ). +adj( 'live', '-', '-', normal ). +adj( 'liveable', '-', '-', normal ). +adj( 'livelong', '-', '-', normal ). +adj( 'lively', 'livelier', 'liveliest', normal ). +adj( 'liveried', '-', '-', normal ). +adj( 'liverish', '-', '-', normal ). +adj( 'livery', '-', '-', normal ). +adj( 'livid', '-', '-', normal ). +adj( 'living', '-', '-', normal ). +adj( 'loaded', '-', '-', normal ). +adj( 'loamy', 'loamier', 'loamiest', normal ). +adj( 'loath', '-', '-', normal ). +adj( 'loathly', 'loathlier', 'loathliest', normal ). +adj( 'loathsome', '-', '-', normal ). +adj( 'lobed', '-', '-', normal ). +adj( 'local', '-', '-', normal ). +adj( 'lockup', '-', '-', normal ). +adj( 'loco', '-', '-', normal ). +adj( 'locomotive', '-', '-', normal ). +adj( 'lofty', 'loftier', 'loftiest', normal ). +adj( 'logarithmic', '-', '-', normal ). +adj( 'logical', '-', '-', normal ). +adj( 'lone', '-', '-', normal ). +adj( 'lonely', 'lonelier', 'loneliest', normal ). +adj( 'lonesome', '-', '-', normal ). +adj( 'long', 'longer', 'longest', normal ). +adj( 'long-distance', '-', '-', attr ). +adj( 'long-drawn-out', '-', '-', normal ). +adj( 'long-haired', '-', '-', normal ). +adj( 'long-headed', '-', '-', normal ). +adj( 'long-lived', '-', '-', normal ). +adj( 'long-play', '-', '-', normal ). +adj( 'long-playing', '-', '-', normal ). +adj( 'long-range', '-', '-', attr ). +adj( 'long-sighted', '-', '-', normal ). +adj( 'long-standing', '-', '-', normal ). +adj( 'long-suffering', '-', '-', normal ). +adj( 'long-term', '-', '-', attr ). +adj( 'long-time', '-', '-', attr ). +adj( 'long-winded', '-', '-', normal ). +adj( 'longing', '-', '-', normal ). +adj( 'longish', '-', '-', normal ). +adj( 'longitudinal', '-', '-', normal ). +adj( 'loony', 'loonier', 'looniest', normal ). +adj( 'loopy', '-', '-', normal ). +adj( 'loose', 'looser', 'loosest', normal ). +adj( 'loose-leaf', '-', '-', attr ). +adj( 'lop-eared', '-', '-', normal ). +adj( 'lopsided', '-', '-', normal ). +adj( 'loquacious', '-', '-', normal ). +adj( 'lordless', '-', '-', normal ). +adj( 'lordly', 'lordlier', 'lordliest', normal ). +adj( 'lorn', '-', '-', normal ). +adj( 'loth', '-', '-', normal ). +adj( 'loud', 'louder', 'loudest', normal ). +adj( 'lousy', 'lousier', 'lousiest', normal ). +adj( 'loutish', '-', '-', normal ). +adj( 'louvered', '-', '-', normal ). +adj( 'lovable', '-', '-', normal ). +adj( 'loveless', '-', '-', normal ). +adj( 'lovelorn', '-', '-', normal ). +adj( 'lovely', 'lovelier', 'loveliest', normal ). +adj( 'loverlike', '-', '-', normal ). +adj( 'lovesick', '-', '-', normal ). +adj( 'loving', '-', '-', normal ). +adj( 'low', 'lower', 'lowest', normal ). +adj( 'low-down', '-', '-', normal ). +adj( 'low-keyed', '-', '-', normal ). +adj( 'low-pitched', '-', '-', normal ). +adj( 'low-spirited', '-', '-', normal ). +adj( 'lowborn', '-', '-', normal ). +adj( 'lowbred', '-', '-', normal ). +adj( 'lowbrow', '-', '-', normal ). +adj( 'lowermost', '-', '-', normal ). +adj( 'lowly', 'lowlier', 'lowliest', normal ). +adj( 'loyal', 'loyaller', 'loyallest', normal ). +adj( 'lubberly', '-', '-', normal ). +adj( 'lucent', '-', '-', normal ). +adj( 'lucid', '-', '-', normal ). +adj( 'luckless', '-', '-', normal ). +adj( 'lucky', 'luckier', 'luckiest', normal ). +adj( 'lucrative', '-', '-', normal ). +adj( 'ludicrous', '-', '-', normal ). +adj( 'lugubrious', '-', '-', normal ). +adj( 'lukewarm', '-', '-', normal ). +adj( 'lumbar', '-', '-', normal ). +adj( 'luminous', '-', '-', normal ). +adj( 'lumpish', '-', '-', normal ). +adj( 'lumpy', 'lumpier', 'lumpiest', normal ). +adj( 'lunar', '-', '-', normal ). +adj( 'lurid', '-', '-', normal ). +adj( 'luscious', '-', '-', normal ). +adj( 'lush', 'lusher', 'lushest', normal ). +adj( 'lustful', '-', '-', normal ). +adj( 'lustrous', '-', '-', normal ). +adj( 'lusty', 'lustier', 'lustiest', normal ). +adj( 'luxe', '-', '-', normal ). +adj( 'luxuriant', '-', '-', normal ). +adj( 'luxurious', '-', '-', normal ). +adj( 'lying-in', '-', '-', normal ). +adj( 'lymphatic', '-', '-', normal ). +adj( 'lynx-eyed', '-', '-', normal ). +adj( 'lyric', '-', '-', normal ). +adj( 'lyrical', '-', '-', normal ). +adj( 'macabre', '-', '-', normal ). +adj( 'machiavellian', '-', '-', normal ). +adj( 'machine-made', '-', '-', normal ). +adj( 'macrobiotic', '-', '-', normal ). +adj( 'mad', 'madder', 'maddest', normal ). +adj( 'magenta', '-', '-', normal ). +adj( 'maggoty', '-', '-', normal ). +adj( 'magic', '-', '-', normal ). +adj( 'magical', '-', '-', normal ). +adj( 'magisterial', '-', '-', normal ). +adj( 'magnanimous', '-', '-', normal ). +adj( 'magnetic', '-', '-', normal ). +adj( 'magnificent', '-', '-', normal ). +adj( 'magniloquent', '-', '-', normal ). +adj( 'maiden', '-', '-', normal ). +adj( 'maidenlike', '-', '-', normal ). +adj( 'maidenly', '-', '-', normal ). +adj( 'mailed', '-', '-', normal ). +adj( 'main', '-', '-', normal ). +adj( 'maintainable', '-', '-', normal ). +adj( 'majestic', '-', '-', normal ). +adj( 'major', '-', '-', normal ). +adj( 'maladjusted', '-', '-', normal ). +adj( 'maladroit', '-', '-', normal ). +adj( 'malapropos', '-', '-', normal ). +adj( 'malarial', '-', '-', normal ). +adj( 'malcontent', '-', '-', normal ). +adj( 'male', '-', '-', normal ). +adj( 'maleficent', '-', '-', normal ). +adj( 'malevolent', '-', '-', normal ). +adj( 'malformed', '-', '-', normal ). +adj( 'malicious', '-', '-', normal ). +adj( 'malign', '-', '-', normal ). +adj( 'malignant', '-', '-', normal ). +adj( 'malleable', '-', '-', normal ). +adj( 'malodorous', '-', '-', normal ). +adj( 'man-sized', '-', '-', normal ). +adj( 'manageable', '-', '-', normal ). +adj( 'managerial', '-', '-', normal ). +adj( 'mandatory', '-', '-', normal ). +adj( 'manful', '-', '-', normal ). +adj( 'mangy', 'mangier', 'mangiest', normal ). +adj( 'maniacal', '-', '-', normal ). +adj( 'manic-depressive', '-', '-', normal ). +adj( 'manifest', '-', '-', normal ). +adj( 'manifold', '-', '-', normal ). +adj( 'manipulative', '-', '-', normal ). +adj( 'manlike', '-', '-', normal ). +adj( 'manly', 'manlier', 'manliest', normal ). +adj( 'mannered', '-', '-', normal ). +adj( 'mannerly', '-', '-', normal ). +adj( 'mannish', '-', '-', normal ). +adj( 'manoeuvrable', '-', '-', normal ). +adj( 'manorial', '-', '-', normal ). +adj( 'manual', '-', '-', normal ). +adj( 'many', '-', '-', normal ). +adj( 'many-sided', '-', '-', normal ). +adj( 'marbled', '-', '-', normal ). +adj( 'marginal', '-', '-', normal ). +adj( 'marine', '-', '-', normal ). +adj( 'marital', '-', '-', normal ). +adj( 'maritime', '-', '-', normal ). +adj( 'marked', '-', '-', normal ). +adj( 'marketable', '-', '-', normal ). +adj( 'marmoreal', '-', '-', normal ). +adj( 'maroon', '-', '-', normal ). +adj( 'marriageable', '-', '-', normal ). +adj( 'married', '-', '-', normal ). +adj( 'marshy', 'marshier', 'marshiest', normal ). +adj( 'marsupial', '-', '-', normal ). +adj( 'martial', '-', '-', normal ). +adj( 'marvellous', '-', '-', normal ). +adj( 'marvelous', '-', '-', normal ). +adj( 'masculine', '-', '-', normal ). +adj( 'masochistic', '-', '-', normal ). +adj( 'masonic', '-', '-', normal ). +adj( 'massive', '-', '-', normal ). +adj( 'massy', 'massier', 'massiest', normal ). +adj( 'masterful', '-', '-', normal ). +adj( 'masterless', '-', '-', normal ). +adj( 'masterly', '-', '-', normal ). +adj( 'mat', '-', '-', normal ). +adj( 'matchless', '-', '-', normal ). +adj( 'material', '-', '-', normal ). +adj( 'materialistic', '-', '-', normal ). +adj( 'maternal', '-', '-', normal ). +adj( 'matey', '-', '-', normal ). +adj( 'mathematical', '-', '-', normal ). +adj( 'matriarchal', '-', '-', normal ). +adj( 'matrimonial', '-', '-', normal ). +adj( 'matronly', '-', '-', normal ). +adj( 'matt', '-', '-', normal ). +adj( 'matted', '-', '-', normal ). +adj( 'matter-of-course', '-', '-', normal ). +adj( 'matter-of-fact', '-', '-', normal ). +adj( 'mature', '-', '-', normal ). +adj( 'matutinal', '-', '-', normal ). +adj( 'maudlin', '-', '-', normal ). +adj( 'mauve', '-', '-', normal ). +adj( 'mawkish', '-', '-', normal ). +adj( 'maximal', '-', '-', normal ). +adj( 'maximum', '-', '-', normal ). +adj( 'mayoral', '-', '-', normal ). +adj( 'mazed', '-', '-', normal ). +adj( 'meagre', '-', '-', normal ). +adj( 'mealy', 'mealier', 'mealiest', normal ). +adj( 'mealy-mouthed', '-', '-', normal ). +adj( 'mean', 'meaner', 'meanest', normal ). +adj( 'meaning', '-', '-', normal ). +adj( 'meaningful', '-', '-', normal ). +adj( 'meaningless', '-', '-', normal ). +adj( 'measly', '-', '-', normal ). +adj( 'measurable', '-', '-', normal ). +adj( 'measured', '-', '-', normal ). +adj( 'measureless', '-', '-', normal ). +adj( 'meatless', '-', '-', normal ). +adj( 'meaty', 'meatier', 'meatiest', normal ). +adj( 'mechanical', '-', '-', normal ). +adj( 'mechanistic', '-', '-', normal ). +adj( 'meddlesome', '-', '-', normal ). +adj( 'mediaeval', '-', '-', normal ). +adj( 'medial', '-', '-', normal ). +adj( 'median', '-', '-', normal ). +adj( 'medical', '-', '-', normal ). +adj( 'medicinal', '-', '-', normal ). +adj( 'medieval', '-', '-', normal ). +adj( 'mediocre', '-', '-', normal ). +adj( 'meditative', '-', '-', normal ). +adj( 'medium', '-', '-', normal ). +adj( 'meek', 'meeker', 'meekest', normal ). +adj( 'meet', '-', '-', normal ). +adj( 'megalithic', '-', '-', normal ). +adj( 'melancholic', '-', '-', normal ). +adj( 'melancholy', '-', '-', normal ). +adj( 'mellifluous', '-', '-', normal ). +adj( 'mellow', 'mellower', 'mellowest', normal ). +adj( 'melodic', '-', '-', normal ). +adj( 'melodious', '-', '-', normal ). +adj( 'melodramatic', '-', '-', normal ). +adj( 'melting', '-', '-', normal ). +adj( 'membranous', '-', '-', normal ). +adj( 'memorable', '-', '-', normal ). +adj( 'mendacious', '-', '-', normal ). +adj( 'mendicant', '-', '-', normal ). +adj( 'menial', '-', '-', normal ). +adj( 'menstrual', '-', '-', normal ). +adj( 'mensurable', '-', '-', normal ). +adj( 'mental', '-', '-', normal ). +adj( 'mentholated', '-', '-', normal ). +adj( 'mentioned', '-', '-', affix ). +adj( 'mercantile', '-', '-', normal ). +adj( 'mercenary', '-', '-', normal ). +adj( 'merciful', '-', '-', normal ). +adj( 'merciless', '-', '-', normal ). +adj( 'mercurial', '-', '-', normal ). +adj( 'mere', '-', '-', normal ). +adj( 'meretricious', '-', '-', normal ). +adj( 'meridional', '-', '-', normal ). +adj( 'meritocratic', '-', '-', normal ). +adj( 'meritorious', '-', '-', normal ). +adj( 'merry', 'merrier', 'merriest', normal ). +adj( 'mesmeric', '-', '-', normal ). +adj( 'messianic', '-', '-', normal ). +adj( 'messy', 'messier', 'messiest', normal ). +adj( 'metabolic', '-', '-', normal ). +adj( 'metacarpal', '-', '-', normal ). +adj( 'metallic', '-', '-', normal ). +adj( 'metallurgical', '-', '-', normal ). +adj( 'metaphorical', '-', '-', normal ). +adj( 'metaphysical', '-', '-', normal ). +adj( 'metatarsal', '-', '-', normal ). +adj( 'meteoric', '-', '-', normal ). +adj( 'meteorological', '-', '-', normal ). +adj( 'methodical', '-', '-', normal ). +adj( 'methodological', '-', '-', normal ). +adj( 'methylated', '-', '-', normal ). +adj( 'meticulous', '-', '-', normal ). +adj( 'metric', '-', '-', normal ). +adj( 'metrical', '-', '-', normal ). +adj( 'metropolitan', '-', '-', normal ). +adj( 'mettlesome', '-', '-', normal ). +adj( 'mezzanine', '-', '-', normal ). +adj( 'microscopic', '-', '-', normal ). +adj( 'microscopical', '-', '-', normal ). +adj( 'mid', '-', '-', normal ). +adj( 'middle-aged', '-', '-', normal ). +adj( 'middle-class', '-', '-', normal ). +adj( 'middle-distance', '-', '-', normal ). +adj( 'middle-of-the-road', '-', '-', normal ). +adj( 'middleweight', '-', '-', normal ). +adj( 'middling', '-', '-', normal ). +adj( 'midmost', '-', '-', normal ). +adj( 'midway', '-', '-', normal ). +adj( 'midweek', '-', '-', attr ). +adj( 'mighty', 'mightier', 'mightiest', normal ). +adj( 'migratory', '-', '-', normal ). +adj( 'milch', '-', '-', normal ). +adj( 'mild', 'milder', 'mildest', normal ). +adj( 'militant', '-', '-', normal ). +adj( 'militaristic', '-', '-', normal ). +adj( 'military', '-', '-', normal ). +adj( 'milk-white', '-', '-', normal ). +adj( 'milky', 'milkier', 'milkiest', normal ). +adj( 'millennial', '-', '-', normal ). +adj( 'million', '-', '-', normal ). +adj( 'millionth', '-', '-', normal ). +adj( 'mimetic', '-', '-', normal ). +adj( 'mimic', '-', '-', attr ). +adj( 'minatory', '-', '-', normal ). +adj( 'mincing', '-', '-', normal ). +adj( 'mind-bending', '-', '-', normal ). +adj( 'mind-blowing', '-', '-', normal ). +adj( 'mind-boggling', '-', '-', normal ). +adj( 'minded', '-', '-', pred ). +adj( 'minded', '-', '-', affix ). +adj( 'mindful', '-', '-', normal ). +adj( 'mindless', '-', '-', normal ). +adj( 'mine', '-', '-', normal ). +adj( 'mineral', '-', '-', normal ). +adj( 'mingy', 'mingier', 'mingiest', normal ). +adj( 'minimal', '-', '-', normal ). +adj( 'minimum', '-', '-', normal ). +adj( 'ministerial', '-', '-', normal ). +adj( 'ministrant', '-', '-', attr ). +adj( 'minor', '-', '-', normal ). +adj( 'minus', '-', '-', normal ). +adj( 'minuscule', '-', '-', normal ). +adj( 'minute', 'minuter', 'minutest', normal ). +adj( 'miraculous', '-', '-', normal ). +adj( 'mirthful', '-', '-', normal ). +adj( 'mirthless', '-', '-', normal ). +adj( 'miry', 'mirier', 'miriest', normal ). +adj( 'misanthropic', '-', '-', normal ). +adj( 'misbegotten', '-', '-', normal ). +adj( 'miscellaneous', '-', '-', normal ). +adj( 'mischievous', '-', '-', normal ). +adj( 'miserable', '-', '-', normal ). +adj( 'miserly', '-', '-', normal ). +adj( 'misguided', '-', '-', normal ). +adj( 'misshapen', '-', '-', normal ). +adj( 'missing', '-', '-', normal ). +adj( 'mistaken', '-', '-', normal ). +adj( 'mistrustful', '-', '-', normal ). +adj( 'misty', 'mistier', 'mistiest', normal ). +adj( 'mixed', '-', '-', normal ). +adj( 'mixed-up', '-', '-', normal ). +adj( 'mnemonic', '-', '-', normal ). +adj( 'moated', '-', '-', normal ). +adj( 'mobile', '-', '-', normal ). +adj( 'mock', '-', '-', attr ). +adj( 'mod', '-', '-', normal ). +adj( 'modal', '-', '-', normal ). +adj( 'moderate', '-', '-', normal ). +adj( 'modern', '-', '-', normal ). +adj( 'modernistic', '-', '-', normal ). +adj( 'modest', '-', '-', normal ). +adj( 'modish', '-', '-', normal ). +adj( 'modular', '-', '-', normal ). +adj( 'moist', '-', '-', normal ). +adj( 'molar', '-', '-', normal ). +adj( 'moldy', 'moldier', 'moldiest', normal ). +adj( 'molecular', '-', '-', normal ). +adj( 'momentary', '-', '-', normal ). +adj( 'momentous', '-', '-', normal ). +adj( 'monarchic', '-', '-', normal ). +adj( 'monastic', '-', '-', normal ). +adj( 'monaural', '-', '-', normal ). +adj( 'monetary', '-', '-', normal ). +adj( 'moneyed', '-', '-', normal ). +adj( 'moneyless', '-', '-', normal ). +adj( 'mongol', '-', '-', attr ). +adj( 'mongrel', '-', '-', attr ). +adj( 'monkish', '-', '-', normal ). +adj( 'mono', '-', '-', normal ). +adj( 'monochrome', '-', '-', normal ). +adj( 'monocled', '-', '-', normal ). +adj( 'monogamous', '-', '-', normal ). +adj( 'monolithic', '-', '-', normal ). +adj( 'monopolistic', '-', '-', normal ). +adj( 'monosyllabic', '-', '-', normal ). +adj( 'monotheistic', '-', '-', normal ). +adj( 'monotonous', '-', '-', normal ). +adj( 'monstrous', '-', '-', normal ). +adj( 'monthly', '-', '-', normal ). +adj( 'monumental', '-', '-', normal ). +adj( 'moody', 'moodier', 'moodiest', normal ). +adj( 'moonless', '-', '-', normal ). +adj( 'moonlit', '-', '-', normal ). +adj( 'moonstruck', '-', '-', normal ). +adj( 'moony', 'moonier', 'mooniest', normal ). +adj( 'moot', '-', '-', normal ). +adj( 'moral', '-', '-', normal ). +adj( 'moralistic', '-', '-', normal ). +adj( 'morbid', '-', '-', normal ). +adj( 'mordant', '-', '-', normal ). +adj( 'morganatic', '-', '-', normal ). +adj( 'moribund', '-', '-', normal ). +adj( 'moronic', '-', '-', normal ). +adj( 'morose', '-', '-', normal ). +adj( 'morphemic', '-', '-', normal ). +adj( 'morphological', '-', '-', normal ). +adj( 'mortal', '-', '-', normal ). +adj( 'mosaic', '-', '-', normal ). +adj( 'moss-grown', '-', '-', normal ). +adj( 'mossy', 'mossier', 'mossiest', normal ). +adj( 'moth-eaten', '-', '-', normal ). +adj( 'motherless', '-', '-', normal ). +adj( 'motherlike', '-', '-', normal ). +adj( 'motherly', '-', '-', normal ). +adj( 'mothproof', '-', '-', normal ). +adj( 'motionless', '-', '-', normal ). +adj( 'motive', '-', '-', normal ). +adj( 'motiveless', '-', '-', normal ). +adj( 'motley', '-', '-', normal ). +adj( 'motor-assisted', '-', '-', normal ). +adj( 'mouldy', 'mouldier', 'mouldiest', normal ). +adj( 'mountainous', '-', '-', normal ). +adj( 'mournful', '-', '-', normal ). +adj( 'mousy', 'mousier', 'mousiest', normal ). +adj( 'mouth-watering', '-', '-', normal ). +adj( 'movable', '-', '-', normal ). +adj( 'much', '-', '-', normal ). +adj( 'mucky', 'muckier', 'muckiest', normal ). +adj( 'mucous', '-', '-', normal ). +adj( 'muddle-headed', '-', '-', normal ). +adj( 'muddy', 'muddier', 'muddiest', normal ). +adj( 'muggy', 'muggier', 'muggiest', normal ). +adj( 'mulish', '-', '-', normal ). +adj( 'mullioned', '-', '-', normal ). +adj( 'multi-lingual', '-', '-', normal ). +adj( 'multifarious', '-', '-', normal ). +adj( 'multiform', '-', '-', normal ). +adj( 'multilateral', '-', '-', normal ). +adj( 'multiple', '-', '-', normal ). +adj( 'multiplex', '-', '-', normal ). +adj( 'multitudinous', '-', '-', normal ). +adj( 'mum', '-', '-', normal ). +adj( 'mundane', '-', '-', normal ). +adj( 'municipal', '-', '-', normal ). +adj( 'munificent', '-', '-', normal ). +adj( 'mural', '-', '-', normal ). +adj( 'murderous', '-', '-', normal ). +adj( 'murky', 'murkier', 'murkiest', normal ). +adj( 'muscle-bound', '-', '-', normal ). +adj( 'muscular', '-', '-', normal ). +adj( 'mushy', 'mushier', 'mushiest', normal ). +adj( 'musical', '-', '-', normal ). +adj( 'musky', 'muskier', 'muskiest', normal ). +adj( 'musty', 'mustier', 'mustiest', normal ). +adj( 'mutable', '-', '-', normal ). +adj( 'mute', '-', '-', normal ). +adj( 'mutinous', '-', '-', normal ). +adj( 'mutual', '-', '-', normal ). +adj( 'muzzy', 'muzzier', 'muzziest', normal ). +adj( 'my', '-', '-', normal ). +adj( 'myopic', '-', '-', normal ). +adj( 'myriad', '-', '-', attr ). +adj( 'mysterious', '-', '-', normal ). +adj( 'mystic', '-', '-', normal ). +adj( 'mystical', '-', '-', normal ). +adj( 'mythical', '-', '-', normal ). +adj( 'mythological', '-', '-', normal ). +adj( 'n_ee', '-', '-', normal ). +adj( 'na\"ive', '-', '-', normal ). +adj( 'naive', '-', '-', normal ). +adj( 'naked', '-', '-', normal ). +adj( 'namby-pamby', '-', '-', normal ). +adj( 'nameless', '-', '-', normal ). +adj( 'narcotic', '-', '-', normal ). +adj( 'narrow', 'narrower', 'narrowest', normal ). +adj( 'narrow-minded', '-', '-', normal ). +adj( 'nasal', '-', '-', normal ). +adj( 'nascent', '-', '-', normal ). +adj( 'nasty', 'nastier', 'nastiest', normal ). +adj( 'natal', '-', '-', normal ). +adj( 'national', '-', '-', normal ). +adj( 'nationalist', '-', '-', normal ). +adj( 'nationalistic', '-', '-', normal ). +adj( 'nationwide', '-', '-', normal ). +adj( 'native', '-', '-', normal ). +adj( 'natty', 'nattier', 'nattiest', normal ). +adj( 'natural', '-', '-', normal ). +adj( 'naturalistic', '-', '-', normal ). +adj( 'naughty', 'naughtier', 'naughtiest', normal ). +adj( 'nauseous', '-', '-', normal ). +adj( 'nautical', '-', '-', normal ). +adj( 'naval', '-', '-', normal ). +adj( 'navigable', '-', '-', normal ). +adj( 'near', 'nearer', 'nearest', normal ). +adj( 'near-sighted', '-', '-', normal ). +adj( 'nearby', '-', '-', normal ). +adj( 'neat', 'neater', 'neatest', normal ). +adj( 'nebular', '-', '-', normal ). +adj( 'nebulous', '-', '-', normal ). +adj( 'necessary', '-', '-', normal ). +adj( 'necessitous', '-', '-', normal ). +adj( 'needful', '-', '-', normal ). +adj( 'needless', '-', '-', normal ). +adj( 'needy', 'needier', 'neediest', normal ). +adj( 'nefarious', '-', '-', normal ). +adj( 'negative', '-', '-', normal ). +adj( 'neglectful', '-', '-', normal ). +adj( 'negligent', '-', '-', normal ). +adj( 'negligible', '-', '-', normal ). +adj( 'negotiable', '-', '-', normal ). +adj( 'neighbourly', '-', '-', normal ). +adj( 'neither', '-', '-', normal ). +adj( 'neolithic', '-', '-', normal ). +adj( 'nerve-racking', '-', '-', normal ). +adj( 'nerveless', '-', '-', normal ). +adj( 'nervous', '-', '-', normal ). +adj( 'nervy', '-', '-', normal ). +adj( 'nescient', '-', '-', normal ). +adj( 'net', '-', '-', normal ). +adj( 'nether', '-', '-', normal ). +adj( 'nethermost', '-', '-', normal ). +adj( 'nett', '-', '-', normal ). +adj( 'neural', '-', '-', normal ). +adj( 'neuralgic', '-', '-', normal ). +adj( 'neurasthenic', '-', '-', normal ). +adj( 'neurotic', '-', '-', normal ). +adj( 'neuter', '-', '-', normal ). +adj( 'neutral', '-', '-', normal ). +adj( 'new', 'newer', 'newest', normal ). +adj( 'newfangled', '-', '-', normal ). +adj( 'newsless', '-', '-', normal ). +adj( 'newsworthy', '-', '-', normal ). +adj( 'newsy', 'newsier', 'newsiest', normal ). +adj( 'next', '-', '-', normal ). +adj( 'nice', 'nicer', 'nicest', normal ). +adj( 'niffy', 'niffier', 'niffiest', normal ). +adj( 'nifty', 'niftier', 'niftiest', normal ). +adj( 'niggardly', '-', '-', normal ). +adj( 'niggling', '-', '-', normal ). +adj( 'nightlong', '-', '-', normal ). +adj( 'nightly', '-', '-', normal ). +adj( 'nightmarish', '-', '-', normal ). +adj( 'nihilistic', '-', '-', normal ). +adj( 'nimble', 'nimbler', 'nimblest', normal ). +adj( 'niminy-piminy', '-', '-', normal ). +adj( 'nine', '-', '-', normal ). +adj( 'ninefold', '-', '-', normal ). +adj( 'ninepenny', '-', '-', normal ). +adj( 'nineteen', '-', '-', normal ). +adj( 'nineteenth', '-', '-', normal ). +adj( 'ninetieth', '-', '-', normal ). +adj( 'ninety', '-', '-', normal ). +adj( 'ninth', '-', '-', normal ). +adj( 'nipping', '-', '-', normal ). +adj( 'nippy', 'nippier', 'nippiest', normal ). +adj( 'nisi', '-', '-', normal ). +adj( 'nitric', '-', '-', normal ). +adj( 'nitrous', '-', '-', normal ). +adj( 'nitwitted', '-', '-', normal ). +adj( 'no', '-', '-', normal ). +adj( 'no-go', '-', '-', attr ). +adj( 'noble', 'nobler', 'noblest', normal ). +adj( 'nocturnal', '-', '-', normal ). +adj( 'nodular', '-', '-', normal ). +adj( 'nodulated', '-', '-', normal ). +adj( 'noiseless', '-', '-', normal ). +adj( 'noisome', '-', '-', normal ). +adj( 'noisy', 'noisier', 'noisiest', normal ). +adj( 'nomadic', '-', '-', normal ). +adj( 'nominal', '-', '-', normal ). +adj( 'nominative', '-', '-', normal ). +adj( 'non compos mentis', '-', '-', normal ). +adj( 'non-u', '-', '-', normal ). +adj( 'non-contentious', '-', '-', normal ). +adj( 'non-skid', '-', '-', normal ). +adj( 'nonagenarian', '-', '-', normal ). +adj( 'nonchalant', '-', '-', normal ). +adj( 'noncommissioned', '-', '-', normal ). +adj( 'noncommittal', '-', '-', normal ). +adj( 'nondescript', '-', '-', normal ). +adj( 'nonflammable', '-', '-', normal ). +adj( 'nonmoral', '-', '-', normal ). +adj( 'nonpareil', '-', '-', normal ). +adj( 'nonresident', '-', '-', normal ). +adj( 'nonsensical', '-', '-', normal ). +adj( 'nonstick', '-', '-', normal ). +adj( 'nonstop', '-', '-', normal ). +adj( 'nonunion', '-', '-', normal ). +adj( 'noonday', '-', '-', normal ). +adj( 'normal', '-', '-', normal ). +adj( 'normative', '-', '-', normal ). +adj( 'northeasterly', '-', '-', normal ). +adj( 'northeastern', '-', '-', normal ). +adj( 'northerly', '-', '-', normal ). +adj( 'northern', '-', '-', normal ). +adj( 'northernmost', '-', '-', normal ). +adj( 'northwesterly', '-', '-', normal ). +adj( 'northwestern', '-', '-', normal ). +adj( 'nosed', '-', '-', affix ). +adj( 'nosey', '-', '-', normal ). +adj( 'nostalgic', '-', '-', normal ). +adj( 'nosy', 'nosier', 'nosiest', normal ). +adj( 'notable', '-', '-', normal ). +adj( 'noted', '-', '-', normal ). +adj( 'noteworthy', '-', '-', normal ). +adj( 'noticeable', '-', '-', normal ). +adj( 'notifiable', '-', '-', normal ). +adj( 'notional', '-', '-', normal ). +adj( 'notorious', '-', '-', normal ). +adj( 'novel', '-', '-', normal ). +adj( 'noxious', '-', '-', normal ). +adj( 'nubile', '-', '-', normal ). +adj( 'nuclear', '-', '-', normal ). +adj( 'nucleic', '-', '-', normal ). +adj( 'nude', '-', '-', normal ). +adj( 'nugatory', '-', '-', normal ). +adj( 'null', '-', '-', normal ). +adj( 'numb', '-', '-', normal ). +adj( 'numberless', '-', '-', normal ). +adj( 'numerable', '-', '-', normal ). +adj( 'numeral', '-', '-', normal ). +adj( 'numerate', '-', '-', normal ). +adj( 'numeric', '-', '-', normal ). +adj( 'numerical', '-', '-', normal ). +adj( 'numerous', '-', '-', normal ). +adj( 'numinous', '-', '-', normal ). +adj( 'nuptial', '-', '-', normal ). +adj( 'nut-brown', '-', '-', normal ). +adj( 'nutrient', '-', '-', normal ). +adj( 'nutritional', '-', '-', normal ). +adj( 'nutritious', '-', '-', normal ). +adj( 'nutritive', '-', '-', normal ). +adj( 'nuts', '-', '-', normal ). +adj( 'nutty', 'nuttier', 'nuttiest', normal ). +adj( 'nymphomaniac', '-', '-', normal ). +adj( 'oafish', '-', '-', normal ). +adj( 'oaken', '-', '-', normal ). +adj( 'obdurate', '-', '-', normal ). +adj( 'obedient', '-', '-', normal ). +adj( 'obese', '-', '-', normal ). +adj( 'objectionable', '-', '-', normal ). +adj( 'objective', '-', '-', normal ). +adj( 'oblate', '-', '-', normal ). +adj( 'obligatory', '-', '-', normal ). +adj( 'obliging', '-', '-', normal ). +adj( 'oblique', '-', '-', normal ). +adj( 'oblivious', '-', '-', normal ). +adj( 'oblong', '-', '-', normal ). +adj( 'obnoxious', '-', '-', normal ). +adj( 'obscene', '-', '-', normal ). +adj( 'obscure', '-', '-', normal ). +adj( 'obsequious', '-', '-', normal ). +adj( 'observable', '-', '-', normal ). +adj( 'observant', '-', '-', normal ). +adj( 'observing', '-', '-', normal ). +adj( 'obsessional', '-', '-', normal ). +adj( 'obsessive', '-', '-', normal ). +adj( 'obsolescent', '-', '-', normal ). +adj( 'obsolete', '-', '-', normal ). +adj( 'obstetric', '-', '-', normal ). +adj( 'obstetrical', '-', '-', normal ). +adj( 'obstinate', '-', '-', normal ). +adj( 'obstreperous', '-', '-', normal ). +adj( 'obstructive', '-', '-', normal ). +adj( 'obtainable', '-', '-', normal ). +adj( 'obtrusive', '-', '-', normal ). +adj( 'obtuse', '-', '-', normal ). +adj( 'obvious', '-', '-', normal ). +adj( 'occasional', '-', '-', normal ). +adj( 'occult', '-', '-', normal ). +adj( 'occupational', '-', '-', normal ). +adj( 'oceanic', '-', '-', normal ). +adj( 'octagonal', '-', '-', normal ). +adj( 'octogenarian', '-', '-', normal ). +adj( 'ocular', '-', '-', normal ). +adj( 'odd', 'odder', 'oddest', normal ). +adj( 'odd-job', '-', '-', attr ). +adj( 'odds-on', '-', '-', normal ). +adj( 'odious', '-', '-', normal ). +adj( 'odoriferous', '-', '-', normal ). +adj( 'odorous', '-', '-', normal ). +adj( 'odourless', '-', '-', normal ). +adj( 'oecumenical', '-', '-', normal ). +adj( 'off', '-', '-', normal ). +adj( 'off-peak', '-', '-', attr ). +adj( 'off-putting', '-', '-', normal ). +adj( 'off-street', '-', '-', attr ). +adj( 'off-white', '-', '-', normal ). +adj( 'offbeat', '-', '-', normal ). +adj( 'offenceless', '-', '-', normal ). +adj( 'offensive', '-', '-', normal ). +adj( 'offhand', '-', '-', normal ). +adj( 'offhanded', '-', '-', normal ). +adj( 'offhandedly', '-', '-', normal ). +adj( 'official', '-', '-', normal ). +adj( 'officious', '-', '-', normal ). +adj( 'offish', '-', '-', normal ). +adj( 'offshore', '-', '-', normal ). +adj( 'offside', '-', '-', attr ). +adj( 'offstage', '-', '-', normal ). +adj( 'ogreish', '-', '-', normal ). +adj( 'oil-bearing', '-', '-', normal ). +adj( 'oiled', '-', '-', normal ). +adj( 'oilfired', '-', '-', normal ). +adj( 'oily', 'oilier', 'oiliest', normal ). +adj( 'okay', '-', '-', normal ). +adj( 'old', 'older', 'oldest', normal ). +adj( 'old-fashioned', '-', '-', normal ). +adj( 'old-maidish', '-', '-', normal ). +adj( 'old-time', '-', '-', normal ). +adj( 'old-womanish', '-', '-', normal ). +adj( 'old-world', '-', '-', normal ). +adj( 'olden', '-', '-', normal ). +adj( 'oldish', '-', '-', normal ). +adj( 'oleaginous', '-', '-', normal ). +adj( 'olfactory', '-', '-', normal ). +adj( 'olive', '-', '-', normal ). +adj( 'ominous', '-', '-', normal ). +adj( 'omnipotent', '-', '-', normal ). +adj( 'omniscient', '-', '-', normal ). +adj( 'omnivorous', '-', '-', normal ). +adj( 'oncoming', '-', '-', normal ). +adj( 'one', '-', '-', normal ). +adj( 'one-armed', '-', '-', normal ). +adj( 'one-eyed', '-', '-', normal ). +adj( 'one-horse', '-', '-', normal ). +adj( 'one-idea\'d', '-', '-', normal ). +adj( 'one-sided', '-', '-', normal ). +adj( 'one-time', '-', '-', normal ). +adj( 'onerous', '-', '-', normal ). +adj( 'ongoing', '-', '-', normal ). +adj( 'only', '-', '-', normal ). +adj( 'onshore', '-', '-', normal ). +adj( 'onward', '-', '-', normal ). +adj( 'oozy', 'oozier', 'ooziest', normal ). +adj( 'opalescent', '-', '-', normal ). +adj( 'opaque', '-', '-', normal ). +adj( 'open', '-', '-', normal ). +adj( 'open-air', '-', '-', attr ). +adj( 'open-ended', '-', '-', normal ). +adj( 'open-eyed', '-', '-', normal ). +adj( 'open-handed', '-', '-', normal ). +adj( 'open-hearted', '-', '-', normal ). +adj( 'open-minded', '-', '-', normal ). +adj( 'open-mouthed', '-', '-', normal ). +adj( 'opencast', '-', '-', normal ). +adj( 'opening', '-', '-', normal ). +adj( 'operable', '-', '-', normal ). +adj( 'operatic', '-', '-', normal ). +adj( 'operational', '-', '-', normal ). +adj( 'operative', '-', '-', normal ). +adj( 'ophthalmic', '-', '-', normal ). +adj( 'opinionated', '-', '-', normal ). +adj( 'opinionative', '-', '-', normal ). +adj( 'opportune', '-', '-', normal ). +adj( 'opposite', '-', '-', normal ). +adj( 'oppressive', '-', '-', normal ). +adj( 'opprobrious', '-', '-', normal ). +adj( 'optative', '-', '-', normal ). +adj( 'optic', '-', '-', normal ). +adj( 'optical', '-', '-', normal ). +adj( 'optimal', '-', '-', normal ). +adj( 'optimistic', '-', '-', normal ). +adj( 'optional', '-', '-', normal ). +adj( 'opulent', '-', '-', normal ). +adj( 'oracular', '-', '-', normal ). +adj( 'oral', '-', '-', normal ). +adj( 'orange', '-', '-', normal ). +adj( 'oratorical', '-', '-', normal ). +adj( 'orbital', '-', '-', normal ). +adj( 'orchestral', '-', '-', normal ). +adj( 'orderly', '-', '-', normal ). +adj( 'ordinal', '-', '-', normal ). +adj( 'ordinary', '-', '-', normal ). +adj( 'organic', '-', '-', normal ). +adj( 'organizational', '-', '-', normal ). +adj( 'organized', '-', '-', normal ). +adj( 'orgiastic', '-', '-', normal ). +adj( 'orient', '-', '-', normal ). +adj( 'oriental', '-', '-', normal ). +adj( 'original', '-', '-', normal ). +adj( 'ornamental', '-', '-', normal ). +adj( 'ornate', '-', '-', normal ). +adj( 'ornery', '-', '-', normal ). +adj( 'ornithological', '-', '-', normal ). +adj( 'orotund', '-', '-', normal ). +adj( 'orthodontic', '-', '-', normal ). +adj( 'orthodox', '-', '-', normal ). +adj( 'orthogonal', '-', '-', normal ). +adj( 'orthographic', '-', '-', normal ). +adj( 'orthopaedic', '-', '-', normal ). +adj( 'orthopedic', '-', '-', normal ). +adj( 'osseous', '-', '-', normal ). +adj( 'ostensible', '-', '-', normal ). +adj( 'ostentatious', '-', '-', normal ). +adj( 'other', '-', '-', normal ). +adj( 'otherworldly', '-', '-', normal ). +adj( 'otiose', '-', '-', normal ). +adj( 'our', '-', '-', normal ). +adj( 'ours', '-', '-', pred ). +adj( 'out-of-date', '-', '-', normal ). +adj( 'out-of-door', '-', '-', attr ). +adj( 'out-of-the-way', '-', '-', normal ). +adj( 'out-of-work', '-', '-', normal ). +adj( 'outback', '-', '-', normal ). +adj( 'outboard', '-', '-', attr ). +adj( 'outbound', '-', '-', normal ). +adj( 'outcast', '-', '-', normal ). +adj( 'outcaste', '-', '-', normal ). +adj( 'outdated', '-', '-', normal ). +adj( 'outdoor', '-', '-', attr ). +adj( 'outer', '-', '-', normal ). +adj( 'outermost', '-', '-', normal ). +adj( 'outgoing', '-', '-', normal ). +adj( 'outlandish', '-', '-', normal ). +adj( 'outlying', '-', '-', normal ). +adj( 'outmoded', '-', '-', normal ). +adj( 'outmost', '-', '-', normal ). +adj( 'outr_e', '-', '-', normal ). +adj( 'outrageous', '-', '-', normal ). +adj( 'outrigged', '-', '-', normal ). +adj( 'outright', '-', '-', normal ). +adj( 'outside', '-', '-', normal ). +adj( 'outsize', '-', '-', normal ). +adj( 'outspoken', '-', '-', normal ). +adj( 'outspread', '-', '-', normal ). +adj( 'outstanding', '-', '-', normal ). +adj( 'outstretched', '-', '-', normal ). +adj( 'outward', '-', '-', normal ). +adj( 'oval', '-', '-', normal ). +adj( 'over-ripe', '-', '-', normal ). +adj( 'overabundant', '-', '-', normal ). +adj( 'overactive', '-', '-', normal ). +adj( 'overall', '-', '-', normal ). +adj( 'overambitious', '-', '-', normal ). +adj( 'overanxious', '-', '-', normal ). +adj( 'overarm', '-', '-', normal ). +adj( 'overbearing', '-', '-', normal ). +adj( 'overblown', '-', '-', normal ). +adj( 'overbold', '-', '-', normal ). +adj( 'overbusy', '-', '-', normal ). +adj( 'overcareful', '-', '-', normal ). +adj( 'overcast', '-', '-', normal ). +adj( 'overcautious', '-', '-', normal ). +adj( 'overconfident', '-', '-', normal ). +adj( 'overcredulous', '-', '-', normal ). +adj( 'overcritical', '-', '-', normal ). +adj( 'overcurious', '-', '-', normal ). +adj( 'overdelicate', '-', '-', normal ). +adj( 'overdue', '-', '-', normal ). +adj( 'overeager', '-', '-', normal ). +adj( 'overemotional', '-', '-', normal ). +adj( 'overenthusiastic', '-', '-', normal ). +adj( 'overexcited', '-', '-', normal ). +adj( 'overfamiliar', '-', '-', normal ). +adj( 'overfond', '-', '-', normal ). +adj( 'overfull', '-', '-', normal ). +adj( 'overgenerous', '-', '-', normal ). +adj( 'overgreedy', '-', '-', normal ). +adj( 'overgrown', '-', '-', normal ). +adj( 'overhand', '-', '-', normal ). +adj( 'overhasty', '-', '-', normal ). +adj( 'overhead', '-', '-', normal ). +adj( 'overjealous', '-', '-', normal ). +adj( 'overjoyed', '-', '-', normal ). +adj( 'overladen', '-', '-', normal ). +adj( 'overland', '-', '-', normal ). +adj( 'overlarge', '-', '-', normal ). +adj( 'overmodest', '-', '-', normal ). +adj( 'overmuch', '-', '-', normal ). +adj( 'overnervous', '-', '-', normal ). +adj( 'overnight', '-', '-', normal ). +adj( 'overpowering', '-', '-', normal ). +adj( 'overproud', '-', '-', normal ). +adj( 'overripe', '-', '-', normal ). +adj( 'oversea', '-', '-', normal ). +adj( 'overseas', '-', '-', normal ). +adj( 'oversensitive', '-', '-', normal ). +adj( 'overserious', '-', '-', normal ). +adj( 'oversewn', '-', '-', normal ). +adj( 'oversexed', '-', '-', normal ). +adj( 'overshot', '-', '-', normal ). +adj( 'oversize', '-', '-', normal ). +adj( 'overstrung', '-', '-', normal ). +adj( 'overstuffed', '-', '-', normal ). +adj( 'oversubscribed', '-', '-', normal ). +adj( 'oversuspicious', '-', '-', normal ). +adj( 'overt', '-', '-', normal ). +adj( 'overweening', '-', '-', normal ). +adj( 'overweight', '-', '-', normal ). +adj( 'overweighted', '-', '-', normal ). +adj( 'overwrought', '-', '-', normal ). +adj( 'overzealous', '-', '-', normal ). +adj( 'oviparous', '-', '-', normal ). +adj( 'ovoid', '-', '-', normal ). +adj( 'owing', '-', '-', normal ). +adj( 'owlish', '-', '-', normal ). +adj( 'own', '-', '-', normal ). +adj( 'owner-driven', '-', '-', normal ). +adj( 'owner-occupied', '-', '-', normal ). +adj( 'ownerless', '-', '-', normal ). +adj( 'oxeyed', '-', '-', normal ). +adj( 'oxyacetylene', '-', '-', normal ). +adj( 'pacific', '-', '-', normal ). +adj( 'pagan', '-', '-', normal ). +adj( 'pained', '-', '-', normal ). +adj( 'painful', '-', '-', normal ). +adj( 'painless', '-', '-', normal ). +adj( 'painstaking', '-', '-', normal ). +adj( 'palaeolithic', '-', '-', normal ). +adj( 'palatable', '-', '-', normal ). +adj( 'palatal', '-', '-', normal ). +adj( 'palatial', '-', '-', normal ). +adj( 'pale', 'paler', 'palest', normal ). +adj( 'paleolithic', '-', '-', normal ). +adj( 'palish', '-', '-', normal ). +adj( 'palliative', '-', '-', normal ). +adj( 'pallid', '-', '-', normal ). +adj( 'pally', 'pallier', 'palliest', normal ). +adj( 'palmy', 'palmier', 'palmiest', normal ). +adj( 'palpable', '-', '-', normal ). +adj( 'paltry', 'paltrier', 'paltriest', normal ). +adj( 'panchromatic', '-', '-', normal ). +adj( 'pancreatic', '-', '-', normal ). +adj( 'pandemic', '-', '-', normal ). +adj( 'panic-stricken', '-', '-', normal ). +adj( 'panicky', '-', '-', normal ). +adj( 'panoplied', '-', '-', normal ). +adj( 'panoptic', '-', '-', normal ). +adj( 'panoramic', '-', '-', normal ). +adj( 'pantheistic', '-', '-', normal ). +adj( 'panzer', '-', '-', attr ). +adj( 'papal', '-', '-', normal ). +adj( 'paperbacked', '-', '-', normal ). +adj( 'paperless', '-', '-', normal ). +adj( 'papist', '-', '-', normal ). +adj( 'parabolic', '-', '-', normal ). +adj( 'parabolical', '-', '-', normal ). +adj( 'paradisiac', '-', '-', normal ). +adj( 'paradisiacal', '-', '-', normal ). +adj( 'paradoxical', '-', '-', normal ). +adj( 'parallel', '-', '-', normal ). +adj( 'paralytic', '-', '-', normal ). +adj( 'paramilitary', '-', '-', normal ). +adj( 'paramount', '-', '-', normal ). +adj( 'paranoid', '-', '-', normal ). +adj( 'paraplegic', '-', '-', normal ). +adj( 'parasitic', '-', '-', normal ). +adj( 'parasitical', '-', '-', normal ). +adj( 'pardonable', '-', '-', normal ). +adj( 'parental', '-', '-', normal ). +adj( 'parenthetic', '-', '-', normal ). +adj( 'parenthetical', '-', '-', normal ). +adj( 'parky', '-', '-', normal ). +adj( 'parliamentary', '-', '-', normal ). +adj( 'parlous', '-', '-', normal ). +adj( 'parochial', '-', '-', normal ). +adj( 'parsimonious', '-', '-', normal ). +adj( 'part-time', '-', '-', normal ). +adj( 'parti-coloured', '-', '-', normal ). +adj( 'partial', '-', '-', normal ). +adj( 'participial', '-', '-', normal ). +adj( 'particular', '-', '-', normal ). +adj( 'partisan', '-', '-', normal ). +adj( 'partitive', '-', '-', normal ). +adj( 'party-spirited', '-', '-', normal ). +adj( 'paschal', '-', '-', normal ). +adj( 'pass_e', '-', '-', normal ). +adj( 'pass_ee', '-', '-', normal ). +adj( 'passable', '-', '-', normal ). +adj( 'passing', '-', '-', normal ). +adj( 'passing-out', '-', '-', normal ). +adj( 'passionate', '-', '-', normal ). +adj( 'passionless', '-', '-', normal ). +adj( 'passive', '-', '-', normal ). +adj( 'past', '-', '-', normal ). +adj( 'pastoral', '-', '-', normal ). +adj( 'pasty', 'pastier', 'pastiest', normal ). +adj( 'patchy', 'patchier', 'patchiest', normal ). +adj( 'patent', '-', '-', normal ). +adj( 'paternal', '-', '-', normal ). +adj( 'pathetic', '-', '-', normal ). +adj( 'pathless', '-', '-', normal ). +adj( 'pathological', '-', '-', normal ). +adj( 'patient', '-', '-', normal ). +adj( 'patriarchal', '-', '-', normal ). +adj( 'patrician', '-', '-', normal ). +adj( 'patrimonial', '-', '-', normal ). +adj( 'patriotic', '-', '-', normal ). +adj( 'patronizing', '-', '-', normal ). +adj( 'patronymic', '-', '-', normal ). +adj( 'paunchy', 'paunchier', 'paunchiest', normal ). +adj( 'pawky', '-', '-', normal ). +adj( 'payable', '-', '-', normal ). +adj( 'pea-green', '-', '-', normal ). +adj( 'peaceable', '-', '-', normal ). +adj( 'peaceful', '-', '-', normal ). +adj( 'peacock-blue', '-', '-', normal ). +adj( 'peaked', '-', '-', normal ). +adj( 'peaky', 'peakier', 'peakiest', normal ). +adj( 'pearly', 'pearlier', 'pearliest', normal ). +adj( 'peaty', 'peatier', 'peatiest', normal ). +adj( 'pebbly', 'pebblier', 'pebbliest', normal ). +adj( 'peccable', '-', '-', normal ). +adj( 'peckish', '-', '-', normal ). +adj( 'pectic', '-', '-', normal ). +adj( 'pectoral', '-', '-', normal ). +adj( 'peculiar', '-', '-', normal ). +adj( 'pecuniary', '-', '-', normal ). +adj( 'pedagogic', '-', '-', normal ). +adj( 'pedagogical', '-', '-', normal ). +adj( 'pedal', '-', '-', normal ). +adj( 'pedantic', '-', '-', normal ). +adj( 'peddling', '-', '-', normal ). +adj( 'pedestrian', '-', '-', normal ). +adj( 'peerless', '-', '-', normal ). +adj( 'peeved', '-', '-', normal ). +adj( 'peevish', '-', '-', normal ). +adj( 'pejorative', '-', '-', normal ). +adj( 'pellucid', '-', '-', normal ). +adj( 'pelvic', '-', '-', normal ). +adj( 'penal', '-', '-', normal ). +adj( 'pendent', '-', '-', normal ). +adj( 'pending', '-', '-', normal ). +adj( 'pendulous', '-', '-', normal ). +adj( 'penetrable', '-', '-', normal ). +adj( 'penetrating', '-', '-', normal ). +adj( 'penetrative', '-', '-', normal ). +adj( 'peninsular', '-', '-', normal ). +adj( 'penitent', '-', '-', normal ). +adj( 'penitential', '-', '-', normal ). +adj( 'penitentiary', '-', '-', normal ). +adj( 'penniless', '-', '-', normal ). +adj( 'pensionable', '-', '-', normal ). +adj( 'pensive', '-', '-', normal ). +adj( 'pent-up', '-', '-', normal ). +adj( 'pentagonal', '-', '-', normal ). +adj( 'penultimate', '-', '-', normal ). +adj( 'penurious', '-', '-', normal ). +adj( 'peppery', '-', '-', normal ). +adj( 'peptic', '-', '-', normal ). +adj( 'perceivable', '-', '-', normal ). +adj( 'perceptible', '-', '-', normal ). +adj( 'perceptive', '-', '-', normal ). +adj( 'perceptual', '-', '-', normal ). +adj( 'percipient', '-', '-', normal ). +adj( 'peremptory', '-', '-', normal ). +adj( 'perennial', '-', '-', normal ). +adj( 'perfect', '-', '-', normal ). +adj( 'perfectible', '-', '-', normal ). +adj( 'perfervid', '-', '-', normal ). +adj( 'perfidious', '-', '-', normal ). +adj( 'perfunctory', '-', '-', normal ). +adj( 'perilous', '-', '-', normal ). +adj( 'periodic', '-', '-', normal ). +adj( 'periodical', '-', '-', normal ). +adj( 'peripatetic', '-', '-', normal ). +adj( 'peripheral', '-', '-', normal ). +adj( 'periphrastic', '-', '-', normal ). +adj( 'perishable', '-', '-', normal ). +adj( 'perky', 'perkier', 'perkiest', normal ). +adj( 'permanent', '-', '-', normal ). +adj( 'permeable', '-', '-', normal ). +adj( 'permissible', '-', '-', normal ). +adj( 'permissive', '-', '-', normal ). +adj( 'pernicious', '-', '-', normal ). +adj( 'pernickety', '-', '-', normal ). +adj( 'perpendicular', '-', '-', normal ). +adj( 'perpetual', '-', '-', normal ). +adj( 'perplexed', '-', '-', normal ). +adj( 'persevering', '-', '-', normal ). +adj( 'persistent', '-', '-', normal ). +adj( 'personable', '-', '-', normal ). +adj( 'personal', '-', '-', normal ). +adj( 'perspicacious', '-', '-', normal ). +adj( 'perspicuous', '-', '-', normal ). +adj( 'persuadable', '-', '-', normal ). +adj( 'persuasive', '-', '-', normal ). +adj( 'pert', '-', '-', normal ). +adj( 'pertinacious', '-', '-', normal ). +adj( 'pertinent', '-', '-', normal ). +adj( 'pervasive', '-', '-', normal ). +adj( 'perverse', '-', '-', normal ). +adj( 'pesky', 'peskier', 'peskiest', normal ). +adj( 'pessimistic', '-', '-', normal ). +adj( 'pestiferous', '-', '-', normal ). +adj( 'pestilent', '-', '-', normal ). +adj( 'pestilential', '-', '-', normal ). +adj( 'petaled', '-', '-', normal ). +adj( 'petalled', '-', '-', normal ). +adj( 'petite', '-', '-', normal ). +adj( 'pettifogging', '-', '-', normal ). +adj( 'pettish', '-', '-', normal ). +adj( 'petty', 'pettier', 'pettiest', normal ). +adj( 'petulant', '-', '-', normal ). +adj( 'phallic', '-', '-', normal ). +adj( 'phantasmal', '-', '-', normal ). +adj( 'pharisaic', '-', '-', normal ). +adj( 'pharisaical', '-', '-', normal ). +adj( 'pharmaceutical', '-', '-', normal ). +adj( 'pharmacological', '-', '-', normal ). +adj( 'phenomenal', '-', '-', normal ). +adj( 'philanthropic', '-', '-', normal ). +adj( 'philatelic', '-', '-', normal ). +adj( 'philharmonic', '-', '-', normal ). +adj( 'philhellene', '-', '-', normal ). +adj( 'philhellenic', '-', '-', normal ). +adj( 'philological', '-', '-', normal ). +adj( 'philosophic', '-', '-', normal ). +adj( 'philosophical', '-', '-', normal ). +adj( 'phlegmatic', '-', '-', normal ). +adj( 'phonemic', '-', '-', normal ). +adj( 'phonetic', '-', '-', normal ). +adj( 'phoney', '-', '-', normal ). +adj( 'phonic', '-', '-', normal ). +adj( 'phonological', '-', '-', normal ). +adj( 'phony', '-', '-', normal ). +adj( 'phosphorescent', '-', '-', normal ). +adj( 'phosphoric', '-', '-', normal ). +adj( 'phosphorous', '-', '-', normal ). +adj( 'photoelectric', '-', '-', normal ). +adj( 'photogenic', '-', '-', normal ). +adj( 'photographic', '-', '-', normal ). +adj( 'phrasal', '-', '-', normal ). +adj( 'phrenetic', '-', '-', normal ). +adj( 'physical', '-', '-', normal ). +adj( 'physiological', '-', '-', normal ). +adj( 'pianissimo', '-', '-', normal ). +adj( 'piano', '-', '-', normal ). +adj( 'picaresque', '-', '-', normal ). +adj( 'picric', '-', '-', normal ). +adj( 'pictorial', '-', '-', normal ). +adj( 'picturesque', '-', '-', normal ). +adj( 'piddling', '-', '-', normal ). +adj( 'piebald', '-', '-', normal ). +adj( 'piecemeal', '-', '-', normal ). +adj( 'pied', '-', '-', normal ). +adj( 'piercing', '-', '-', normal ). +adj( 'piffling', '-', '-', normal ). +adj( 'pig-headed', '-', '-', normal ). +adj( 'pigeon-breasted', '-', '-', normal ). +adj( 'pigeon-toed', '-', '-', normal ). +adj( 'piggish', '-', '-', normal ). +adj( 'piggy', 'piggier', 'piggiest', normal ). +adj( 'pillared', '-', '-', normal ). +adj( 'pimpled', '-', '-', normal ). +adj( 'pimply', 'pimplier', 'pimpliest', normal ). +adj( 'pinchbeck', '-', '-', normal ). +adj( 'pineal', '-', '-', normal ). +adj( 'pink', 'pinker', 'pinkest', normal ). +adj( 'pinkish', '-', '-', normal ). +adj( 'pinnate', '-', '-', normal ). +adj( 'pinstripe', '-', '-', normal ). +adj( 'pious', '-', '-', normal ). +adj( 'piping', '-', '-', normal ). +adj( 'piquant', '-', '-', normal ). +adj( 'piratical', '-', '-', normal ). +adj( 'piscatorial', '-', '-', normal ). +adj( 'pissed', '-', '-', normal ). +adj( 'pitch-black', '-', '-', normal ). +adj( 'pitch-dark', '-', '-', normal ). +adj( 'piteous', '-', '-', normal ). +adj( 'pithy', 'pithier', 'pithiest', normal ). +adj( 'pitiable', '-', '-', normal ). +adj( 'pitiful', '-', '-', normal ). +adj( 'pitiless', '-', '-', normal ). +adj( 'pituitary', '-', '-', normal ). +adj( 'pitying', '-', '-', normal ). +adj( 'pivotal', '-', '-', normal ). +adj( 'pixilated', '-', '-', normal ). +adj( 'pizzicato', '-', '-', normal ). +adj( 'placid', '-', '-', normal ). +adj( 'plaguy', '-', '-', normal ). +adj( 'plain', 'plainer', 'plainest', normal ). +adj( 'plain-spoken', '-', '-', normal ). +adj( 'plaintive', '-', '-', normal ). +adj( 'planetary', '-', '-', normal ). +adj( 'plangent', '-', '-', normal ). +adj( 'planless', '-', '-', normal ). +adj( 'plastered', '-', '-', normal ). +adj( 'plastic', '-', '-', normal ). +adj( 'platitudinous', '-', '-', normal ). +adj( 'plausible', '-', '-', normal ). +adj( 'playful', '-', '-', normal ). +adj( 'pleasant', 'pleasanter', 'pleasantest', normal ). +adj( 'pleased', '-', '-', normal ). +adj( 'pleasing', '-', '-', normal ). +adj( 'pleasurable', '-', '-', normal ). +adj( 'plebeian', '-', '-', normal ). +adj( 'plenary', '-', '-', normal ). +adj( 'plenteous', '-', '-', normal ). +adj( 'plentiful', '-', '-', normal ). +adj( 'pliable', '-', '-', normal ). +adj( 'pliant', '-', '-', normal ). +adj( 'plodding', '-', '-', normal ). +adj( 'plosive', '-', '-', normal ). +adj( 'plucky', 'pluckier', 'pluckiest', normal ). +adj( 'plummy', 'plummier', 'plummiest', normal ). +adj( 'plump', 'plumper', 'plumpest', normal ). +adj( 'pluperfect', '-', '-', normal ). +adj( 'plural', '-', '-', normal ). +adj( 'plus', '-', '-', normal ). +adj( 'plush', 'plusher', 'plushest', normal ). +adj( 'plushy', 'plushier', 'plushiest', normal ). +adj( 'plutocratic', '-', '-', normal ). +adj( 'pneumatic', '-', '-', normal ). +adj( 'pocked', '-', '-', normal ). +adj( 'pockmarked', '-', '-', normal ). +adj( 'podgy', 'podgier', 'podgiest', normal ). +adj( 'poetic', '-', '-', normal ). +adj( 'poetical', '-', '-', normal ). +adj( 'poignant', '-', '-', normal ). +adj( 'point-blank', '-', '-', normal ). +adj( 'pointed', '-', '-', normal ). +adj( 'pointless', '-', '-', normal ). +adj( 'poisonous', '-', '-', normal ). +adj( 'poky', 'pokier', 'pokiest', normal ). +adj( 'polar', '-', '-', normal ). +adj( 'polemic', '-', '-', normal ). +adj( 'polite', 'politer', 'politest', normal ). +adj( 'politic', '-', '-', normal ). +adj( 'political', '-', '-', normal ). +adj( 'polo-neck', '-', '-', normal ). +adj( 'polyandrous', '-', '-', normal ). +adj( 'polygamous', '-', '-', normal ). +adj( 'polyglot', '-', '-', normal ). +adj( 'polygonal', '-', '-', normal ). +adj( 'polymorphic', '-', '-', normal ). +adj( 'polymorphous', '-', '-', normal ). +adj( 'polynomial', '-', '-', normal ). +adj( 'polyphonic', '-', '-', normal ). +adj( 'polysyllabic', '-', '-', normal ). +adj( 'polytheistic', '-', '-', normal ). +adj( 'pompous', '-', '-', normal ). +adj( 'ponderable', '-', '-', normal ). +adj( 'ponderous', '-', '-', normal ). +adj( 'pontifical', '-', '-', normal ). +adj( 'poor', 'poorer', 'poorest', normal ). +adj( 'poor-spirited', '-', '-', normal ). +adj( 'poorly', '-', '-', pred ). +adj( 'pop', '-', '-', normal ). +adj( 'popeyed', '-', '-', normal ). +adj( 'popish', '-', '-', normal ). +adj( 'popular', '-', '-', normal ). +adj( 'populous', '-', '-', normal ). +adj( 'porcine', '-', '-', normal ). +adj( 'pornographic', '-', '-', normal ). +adj( 'porous', '-', '-', normal ). +adj( 'portable', '-', '-', normal ). +adj( 'portentous', '-', '-', normal ). +adj( 'portly', '-', '-', normal ). +adj( 'posh', 'posher', 'poshest', normal ). +adj( 'positive', '-', '-', normal ). +adj( 'possessive', '-', '-', normal ). +adj( 'possible', '-', '-', normal ). +adj( 'post-free', '-', '-', normal ). +adj( 'post-mortem', '-', '-', normal ). +adj( 'post-paid', '-', '-', normal ). +adj( 'postal', '-', '-', normal ). +adj( 'posterior', '-', '-', normal ). +adj( 'postgraduate', '-', '-', normal ). +adj( 'posthumous', '-', '-', normal ). +adj( 'postprandial', '-', '-', normal ). +adj( 'postural', '-', '-', normal ). +adj( 'pot-trained', '-', '-', normal ). +adj( 'potable', '-', '-', normal ). +adj( 'potbellied', '-', '-', normal ). +adj( 'potbound', '-', '-', normal ). +adj( 'potent', '-', '-', normal ). +adj( 'potential', '-', '-', normal ). +adj( 'potted', '-', '-', normal ). +adj( 'potty', 'pottier', 'pottiest', normal ). +adj( 'poverty-stricken', '-', '-', normal ). +adj( 'powdered', '-', '-', normal ). +adj( 'powdery', '-', '-', normal ). +adj( 'powered', '-', '-', normal ). +adj( 'powerful', '-', '-', normal ). +adj( 'powerless', '-', '-', normal ). +adj( 'practicable', '-', '-', normal ). +adj( 'practical', '-', '-', normal ). +adj( 'practised', '-', '-', normal ). +adj( 'praetorian', '-', '-', normal ). +adj( 'pragmatic', '-', '-', normal ). +adj( 'praiseworthy', '-', '-', normal ). +adj( 'pre-eminent', '-', '-', normal ). +adj( 'pre-emptive', '-', '-', normal ). +adj( 'pre-existent', '-', '-', normal ). +adj( 'pre-packaged', '-', '-', normal ). +adj( 'precarious', '-', '-', normal ). +adj( 'precast', '-', '-', normal ). +adj( 'precautionary', '-', '-', normal ). +adj( 'precedented', '-', '-', normal ). +adj( 'preceding', '-', '-', normal ). +adj( 'precious', '-', '-', normal ). +adj( 'precipitate', '-', '-', normal ). +adj( 'precipitous', '-', '-', normal ). +adj( 'precise', '-', '-', normal ). +adj( 'precocious', '-', '-', normal ). +adj( 'preconcerted', '-', '-', normal ). +adj( 'preconditioned', '-', '-', normal ). +adj( 'precursory', '-', '-', normal ). +adj( 'predatory', '-', '-', normal ). +adj( 'predestinate', '-', '-', normal ). +adj( 'predicative', '-', '-', normal ). +adj( 'predictable', '-', '-', normal ). +adj( 'predominant', '-', '-', normal ). +adj( 'prefatory', '-', '-', normal ). +adj( 'prefectural', '-', '-', normal ). +adj( 'preferable', '-', '-', normal ). +adj( 'preferential', '-', '-', normal ). +adj( 'pregnant', '-', '-', normal ). +adj( 'prehensile', '-', '-', normal ). +adj( 'prehistoric', '-', '-', normal ). +adj( 'prehistorical', '-', '-', normal ). +adj( 'prejudicial', '-', '-', normal ). +adj( 'preliminary', '-', '-', normal ). +adj( 'premarital', '-', '-', normal ). +adj( 'premature', '-', '-', normal ). +adj( 'premier', '-', '-', normal ). +adj( 'premonitory', '-', '-', normal ). +adj( 'prenatal', '-', '-', normal ). +adj( 'prepacked', '-', '-', normal ). +adj( 'preparatory', '-', '-', normal ). +adj( 'preponderant', '-', '-', normal ). +adj( 'prepositional', '-', '-', normal ). +adj( 'prepossessing', '-', '-', normal ). +adj( 'preposterous', '-', '-', normal ). +adj( 'prerequisite', '-', '-', normal ). +adj( 'prescient', '-', '-', normal ). +adj( 'prescriptive', '-', '-', normal ). +adj( 'present', '-', '-', normal ). +adj( 'present-day', '-', '-', attr ). +adj( 'presentable', '-', '-', normal ). +adj( 'preservable', '-', '-', normal ). +adj( 'preservative', '-', '-', normal ). +adj( 'presidential', '-', '-', normal ). +adj( 'pressing', '-', '-', normal ). +adj( 'pressurized', '-', '-', normal ). +adj( 'prestigious', '-', '-', normal ). +adj( 'prestissimo', '-', '-', normal ). +adj( 'presto', '-', '-', normal ). +adj( 'prestressed', '-', '-', normal ). +adj( 'presumable', '-', '-', normal ). +adj( 'presuming', '-', '-', normal ). +adj( 'presumptive', '-', '-', normal ). +adj( 'presumptuous', '-', '-', normal ). +adj( 'pretentious', '-', '-', normal ). +adj( 'preterit', '-', '-', normal ). +adj( 'preterite', '-', '-', normal ). +adj( 'preternatural', '-', '-', normal ). +adj( 'pretty', 'prettier', 'prettiest', normal ). +adj( 'pretty-pretty', '-', '-', normal ). +adj( 'prevailing', '-', '-', normal ). +adj( 'prevalent', '-', '-', normal ). +adj( 'preventable', '-', '-', normal ). +adj( 'preventive', '-', '-', normal ). +adj( 'previous', '-', '-', normal ). +adj( 'price-controlled', '-', '-', normal ). +adj( 'priceless', '-', '-', normal ). +adj( 'pricey', 'pricier', 'priciest', normal ). +adj( 'prickly', 'pricklier', 'prickliest', normal ). +adj( 'priest-ridden', '-', '-', normal ). +adj( 'priestlike', '-', '-', normal ). +adj( 'priestly', 'priestlier', 'priestliest', normal ). +adj( 'priggish', '-', '-', normal ). +adj( 'prim', 'primmer', 'primmest', normal ). +adj( 'prima', '-', '-', normal ). +adj( 'prima facie', '-', '-', normal ). +adj( 'primaeval', '-', '-', normal ). +adj( 'primal', '-', '-', normal ). +adj( 'primary', '-', '-', normal ). +adj( 'prime', '-', '-', normal ). +adj( 'primeval', '-', '-', normal ). +adj( 'primitive', '-', '-', normal ). +adj( 'primordial', '-', '-', normal ). +adj( 'princely', 'princelier', 'princeliest', normal ). +adj( 'principal', '-', '-', normal ). +adj( 'principled', '-', '-', normal ). +adj( 'printable', '-', '-', normal ). +adj( 'prior', '-', '-', normal ). +adj( 'prismatic', '-', '-', normal ). +adj( 'pristine', '-', '-', normal ). +adj( 'private', '-', '-', normal ). +adj( 'privileged', '-', '-', normal ). +adj( 'privy', '-', '-', normal ). +adj( 'pro forma', '-', '-', normal ). +adj( 'probabilistic', '-', '-', normal ). +adj( 'probable', '-', '-', normal ). +adj( 'probationary', '-', '-', normal ). +adj( 'problematic', '-', '-', normal ). +adj( 'procedural', '-', '-', normal ). +adj( 'processional', '-', '-', normal ). +adj( 'proconsular', '-', '-', normal ). +adj( 'procurable', '-', '-', normal ). +adj( 'prodigal', '-', '-', normal ). +adj( 'prodigious', '-', '-', normal ). +adj( 'productive', '-', '-', normal ). +adj( 'profane', '-', '-', normal ). +adj( 'professed', '-', '-', normal ). +adj( 'professional', '-', '-', normal ). +adj( 'professorial', '-', '-', normal ). +adj( 'proficient', '-', '-', normal ). +adj( 'profitable', '-', '-', normal ). +adj( 'profitless', '-', '-', normal ). +adj( 'profligate', '-', '-', normal ). +adj( 'profound', '-', '-', normal ). +adj( 'profuse', '-', '-', normal ). +adj( 'prognostic', '-', '-', normal ). +adj( 'progressive', '-', '-', normal ). +adj( 'prohibitive', '-', '-', normal ). +adj( 'prohibitory', '-', '-', normal ). +adj( 'projectile', '-', '-', normal ). +adj( 'proletarian', '-', '-', normal ). +adj( 'prolific', '-', '-', normal ). +adj( 'prolix', '-', '-', normal ). +adj( 'prolonged', '-', '-', normal ). +adj( 'prominent', '-', '-', normal ). +adj( 'promiscuous', '-', '-', normal ). +adj( 'promising', '-', '-', normal ). +adj( 'promissory', '-', '-', normal ). +adj( 'promotional', '-', '-', normal ). +adj( 'prompt', '-', '-', normal ). +adj( 'prone', '-', '-', normal ). +adj( 'pronged', '-', '-', normal ). +adj( 'pronominal', '-', '-', normal ). +adj( 'pronounceable', '-', '-', normal ). +adj( 'pronounced', '-', '-', normal ). +adj( 'proof', '-', '-', normal ). +adj( 'propellant', '-', '-', normal ). +adj( 'propellent', '-', '-', normal ). +adj( 'proper', '-', '-', normal ). +adj( 'propertied', '-', '-', normal ). +adj( 'prophetic', '-', '-', normal ). +adj( 'prophetical', '-', '-', normal ). +adj( 'prophylactic', '-', '-', normal ). +adj( 'propitiatory', '-', '-', normal ). +adj( 'propitious', '-', '-', normal ). +adj( 'proportionable', '-', '-', normal ). +adj( 'proportional', '-', '-', normal ). +adj( 'proportionate', '-', '-', normal ). +adj( 'proprietary', '-', '-', normal ). +adj( 'propulsive', '-', '-', normal ). +adj( 'prosaic', '-', '-', normal ). +adj( 'prospective', '-', '-', normal ). +adj( 'prosperous', '-', '-', normal ). +adj( 'prostrate', '-', '-', normal ). +adj( 'prosy', 'prosier', 'prosiest', normal ). +adj( 'protean', '-', '-', normal ). +adj( 'protective', '-', '-', normal ). +adj( 'protrusive', '-', '-', normal ). +adj( 'protuberant', '-', '-', normal ). +adj( 'proud', 'prouder', 'proudest', normal ). +adj( 'provable', '-', '-', normal ). +adj( 'proverbial', '-', '-', normal ). +adj( 'provident', '-', '-', normal ). +adj( 'providential', '-', '-', normal ). +adj( 'provincial', '-', '-', normal ). +adj( 'provisional', '-', '-', normal ). +adj( 'provisory', '-', '-', normal ). +adj( 'provocative', '-', '-', normal ). +adj( 'provoking', '-', '-', normal ). +adj( 'proximate', '-', '-', normal ). +adj( 'proximo', '-', '-', normal ). +adj( 'prudent', '-', '-', normal ). +adj( 'prudential', '-', '-', normal ). +adj( 'prudish', '-', '-', normal ). +adj( 'prurient', '-', '-', normal ). +adj( 'prussic', '-', '-', normal ). +adj( 'pseudo', '-', '-', normal ). +adj( 'pseudonymous', '-', '-', normal ). +adj( 'psychedelic', '-', '-', normal ). +adj( 'psychiatric', '-', '-', normal ). +adj( 'psychic', '-', '-', normal ). +adj( 'psychical', '-', '-', normal ). +adj( 'psychoanalytic', '-', '-', normal ). +adj( 'psychoanalytical', '-', '-', normal ). +adj( 'psychological', '-', '-', normal ). +adj( 'psychopathic', '-', '-', normal ). +adj( 'psychosomatic', '-', '-', normal ). +adj( 'pubic', '-', '-', normal ). +adj( 'public', '-', '-', normal ). +adj( 'public-spirited', '-', '-', normal ). +adj( 'puckish', '-', '-', normal ). +adj( 'pudgy', 'pudgier', 'pudgiest', normal ). +adj( 'puerile', '-', '-', normal ). +adj( 'puerperal', '-', '-', normal ). +adj( 'puffy', 'puffier', 'puffiest', normal ). +adj( 'pug-nose', '-', '-', normal ). +adj( 'pug-nosed', '-', '-', normal ). +adj( 'pugilistic', '-', '-', normal ). +adj( 'pugnacious', '-', '-', normal ). +adj( 'puissant', '-', '-', normal ). +adj( 'pukka', '-', '-', normal ). +adj( 'pulchritudinous', '-', '-', normal ). +adj( 'pulmonary', '-', '-', normal ). +adj( 'pulpy', 'pulpier', 'pulpiest', normal ). +adj( 'punch-drunk', '-', '-', normal ). +adj( 'punctilious', '-', '-', normal ). +adj( 'punctual', '-', '-', normal ). +adj( 'pungent', '-', '-', normal ). +adj( 'punishable', '-', '-', normal ). +adj( 'punitive', '-', '-', normal ). +adj( 'puny', 'punier', 'puniest', normal ). +adj( 'purblind', '-', '-', normal ). +adj( 'purchasable', '-', '-', normal ). +adj( 'pure', 'purer', 'purest', normal ). +adj( 'purgative', '-', '-', normal ). +adj( 'purgatorial', '-', '-', normal ). +adj( 'puritan', '-', '-', normal ). +adj( 'puritanical', '-', '-', normal ). +adj( 'purple', '-', '-', normal ). +adj( 'purplish', '-', '-', normal ). +adj( 'purpose-built', '-', '-', normal ). +adj( 'purposeful', '-', '-', normal ). +adj( 'purposeless', '-', '-', normal ). +adj( 'purposive', '-', '-', normal ). +adj( 'purse-proud', '-', '-', normal ). +adj( 'pursuant', '-', '-', normal ). +adj( 'pursy', '-', '-', normal ). +adj( 'purulent', '-', '-', normal ). +adj( 'pushful', '-', '-', normal ). +adj( 'pushing', '-', '-', normal ). +adj( 'pusillanimous', '-', '-', normal ). +adj( 'putative', '-', '-', normal ). +adj( 'putrescent', '-', '-', normal ). +adj( 'putrid', '-', '-', normal ). +adj( 'pyjama', '-', '-', attr ). +adj( 'pyrotechnic', '-', '-', normal ). +adj( 'quadrangular', '-', '-', normal ). +adj( 'quadratic', '-', '-', normal ). +adj( 'quadrilateral', '-', '-', normal ). +adj( 'quadrophonic', '-', '-', normal ). +adj( 'quadruple', '-', '-', normal ). +adj( 'quadruplicate', '-', '-', normal ). +adj( 'quaint', 'quainter', 'quaintest', normal ). +adj( 'qualified', '-', '-', normal ). +adj( 'qualitative', '-', '-', normal ). +adj( 'quantitative', '-', '-', normal ). +adj( 'quarrelsome', '-', '-', normal ). +adj( 'quarterly', '-', '-', normal ). +adj( 'queasy', 'queasier', 'queasiest', normal ). +adj( 'queenly', 'queenlier', 'queenliest', normal ). +adj( 'queer', 'queerer', 'queerest', normal ). +adj( 'quenchless', '-', '-', normal ). +adj( 'querulous', '-', '-', normal ). +adj( 'questionable', '-', '-', normal ). +adj( 'quibbling', '-', '-', normal ). +adj( 'quick', 'quicker', 'quickest', normal ). +adj( 'quick-change', '-', '-', attr ). +adj( 'quick-eared', '-', '-', normal ). +adj( 'quick-eyed', '-', '-', normal ). +adj( 'quick-sighted', '-', '-', normal ). +adj( 'quick-tempered', '-', '-', normal ). +adj( 'quick-witted', '-', '-', normal ). +adj( 'quickset', '-', '-', normal ). +adj( 'quiescent', '-', '-', normal ). +adj( 'quiet', 'quieter', 'quietest', normal ). +adj( 'quincentenary', '-', '-', normal ). +adj( 'quit', '-', '-', pred ). +adj( 'quits', '-', '-', pred ). +adj( 'quixotic', '-', '-', normal ). +adj( 'quizzical', '-', '-', normal ). +adj( 'quotable', '-', '-', normal ). +adj( 'quotidian', '-', '-', normal ). +adj( 'rabbinical', '-', '-', normal ). +adj( 'rabble-rousing', '-', '-', normal ). +adj( 'rabid', '-', '-', normal ). +adj( 'racial', '-', '-', normal ). +adj( 'racy', 'racier', 'raciest', normal ). +adj( 'raddled', '-', '-', normal ). +adj( 'radial', '-', '-', normal ). +adj( 'radiant', '-', '-', normal ). +adj( 'radical', '-', '-', normal ). +adj( 'radioactive', '-', '-', normal ). +adj( 'raffish', '-', '-', normal ). +adj( 'raftered', '-', '-', normal ). +adj( 'ragged', '-', '-', normal ). +adj( 'rainproof', '-', '-', normal ). +adj( 'rainy', 'rainier', 'rainiest', normal ). +adj( 'rakish', '-', '-', normal ). +adj( 'rallentando', '-', '-', normal ). +adj( 'rambling', '-', '-', normal ). +adj( 'rambunctious', '-', '-', normal ). +adj( 'rampageous', '-', '-', normal ). +adj( 'rampant', '-', '-', normal ). +adj( 'ramshackle', '-', '-', normal ). +adj( 'rancid', '-', '-', normal ). +adj( 'rancorous', '-', '-', normal ). +adj( 'randy', 'randier', 'randiest', normal ). +adj( 'rank', '-', '-', normal ). +adj( 'rapacious', '-', '-', normal ). +adj( 'rapid', '-', '-', normal ). +adj( 'rapt', '-', '-', normal ). +adj( 'rapturous', '-', '-', normal ). +adj( 'rare', 'rarer', 'rarest', normal ). +adj( 'raring', '-', '-', normal ). +adj( 'rascally', '-', '-', normal ). +adj( 'rash', 'rasher', 'rashest', normal ). +adj( 'ratable', '-', '-', normal ). +adj( 'rateable', '-', '-', normal ). +adj( 'rational', '-', '-', normal ). +adj( 'rationalistic', '-', '-', normal ). +adj( 'rattlebrained', '-', '-', normal ). +adj( 'rattlepated', '-', '-', normal ). +adj( 'rattling', '-', '-', normal ). +adj( 'ratty', 'rattier', 'rattiest', normal ). +adj( 'raucous', '-', '-', normal ). +adj( 'ravening', '-', '-', normal ). +adj( 'ravenous', '-', '-', normal ). +adj( 'raving', '-', '-', normal ). +adj( 'raw', '-', '-', normal ). +adj( 'rawboned', '-', '-', normal ). +adj( 'rawhide', '-', '-', normal ). +adj( 'razorbacked', '-', '-', normal ). +adj( 'readable', '-', '-', normal ). +adj( 'ready', 'readier', 'readiest', normal ). +adj( 'ready-made', '-', '-', normal ). +adj( 'real', '-', '-', normal ). +adj( 'realistic', '-', '-', normal ). +adj( 'realizable', '-', '-', normal ). +adj( 'rearmost', '-', '-', normal ). +adj( 'reasonable', '-', '-', normal ). +adj( 'reasonless', '-', '-', normal ). +adj( 'reassuring', '-', '-', normal ). +adj( 'rebarbative', '-', '-', normal ). +adj( 'rebellious', '-', '-', normal ). +adj( 'reborn', '-', '-', normal ). +adj( 'recalcitrant', '-', '-', normal ). +adj( 'receivable', '-', '-', normal ). +adj( 'received', '-', '-', normal ). +adj( 'recent', '-', '-', normal ). +adj( 'receptive', '-', '-', normal ). +adj( 'recessional', '-', '-', normal ). +adj( 'recessive', '-', '-', normal ). +adj( 'recherch_e', '-', '-', normal ). +adj( 'reciprocal', '-', '-', normal ). +adj( 'reckless', '-', '-', normal ). +adj( 'recognizable', '-', '-', normal ). +adj( 'reconcilable', '-', '-', normal ). +adj( 'recondite', '-', '-', normal ). +adj( 'record-breaking', '-', '-', normal ). +adj( 'recoverable', '-', '-', normal ). +adj( 'recreant', '-', '-', normal ). +adj( 'recreational', '-', '-', normal ). +adj( 'recriminatory', '-', '-', normal ). +adj( 'rectal', '-', '-', normal ). +adj( 'rectangular', '-', '-', normal ). +adj( 'rectilinear', '-', '-', normal ). +adj( 'recumbent', '-', '-', normal ). +adj( 'recuperative', '-', '-', normal ). +adj( 'recurrent', '-', '-', normal ). +adj( 'recusant', '-', '-', normal ). +adj( 'red', 'redder', 'reddest', normal ). +adj( 'red-hot', '-', '-', normal ). +adj( 'red-rimmed', '-', '-', normal ). +adj( 'reddish', '-', '-', normal ). +adj( 'redeemable', '-', '-', normal ). +adj( 'redemptive', '-', '-', normal ). +adj( 'redolent', '-', '-', normal ). +adj( 'redoubtable', '-', '-', normal ). +adj( 'reducible', '-', '-', normal ). +adj( 'redundant', '-', '-', normal ). +adj( 'reedy', 'reedier', 'reediest', normal ). +adj( 'referable', '-', '-', normal ). +adj( 'referential', '-', '-', normal ). +adj( 'reflective', '-', '-', normal ). +adj( 'reflex', '-', '-', normal ). +adj( 'reflexive', '-', '-', normal ). +adj( 'reformatory', '-', '-', normal ). +adj( 'refractory', '-', '-', normal ). +adj( 'refreshing', '-', '-', normal ). +adj( 'refrigerant', '-', '-', normal ). +adj( 'refulgent', '-', '-', normal ). +adj( 'refutable', '-', '-', normal ). +adj( 'regal', '-', '-', normal ). +adj( 'regardful', '-', '-', normal ). +adj( 'regardless', '-', '-', normal ). +adj( 'regenerate', '-', '-', normal ). +adj( 'regent', '-', '-', normal ). +adj( 'regimental', '-', '-', normal ). +adj( 'regional', '-', '-', normal ). +adj( 'regnant', '-', '-', normal ). +adj( 'regressive', '-', '-', normal ). +adj( 'regretful', '-', '-', normal ). +adj( 'regrettable', '-', '-', normal ). +adj( 'regular', '-', '-', normal ). +adj( 'reincarnate', '-', '-', normal ). +adj( 'relative', '-', '-', normal ). +adj( 'relentless', '-', '-', normal ). +adj( 'relevant', '-', '-', normal ). +adj( 'reliable', '-', '-', normal ). +adj( 'reliant', '-', '-', normal ). +adj( 'religious', '-', '-', normal ). +adj( 'reluctant', '-', '-', normal ). +adj( 'remarkable', '-', '-', normal ). +adj( 'remediable', '-', '-', normal ). +adj( 'remedial', '-', '-', normal ). +adj( 'reminiscent', '-', '-', normal ). +adj( 'remiss', '-', '-', normal ). +adj( 'remittent', '-', '-', normal ). +adj( 'remorseful', '-', '-', normal ). +adj( 'remorseless', '-', '-', normal ). +adj( 'remote', 'remoter', 'remotest', normal ). +adj( 'removable', '-', '-', normal ). +adj( 'removed', '-', '-', normal ). +adj( 'remunerative', '-', '-', normal ). +adj( 'renal', '-', '-', normal ). +adj( 'renascent', '-', '-', normal ). +adj( 'renewable', '-', '-', normal ). +adj( 'renowned', '-', '-', normal ). +adj( 'rent-free', '-', '-', normal ). +adj( 'rentable', '-', '-', normal ). +adj( 'repairable', '-', '-', normal ). +adj( 'reparable', '-', '-', normal ). +adj( 'repayable', '-', '-', normal ). +adj( 'repeatable', '-', '-', normal ). +adj( 'repeated', '-', '-', normal ). +adj( 'repellent', '-', '-', normal ). +adj( 'repentant', '-', '-', normal ). +adj( 'repetitious', '-', '-', normal ). +adj( 'repetitive', '-', '-', normal ). +adj( 'replaceable', '-', '-', normal ). +adj( 'replete', '-', '-', normal ). +adj( 'reply-paid', '-', '-', normal ). +adj( 'reportable', '-', '-', normal ). +adj( 'reposeful', '-', '-', normal ). +adj( 'reprehensible', '-', '-', normal ). +adj( 'representative', '-', '-', normal ). +adj( 'repressed', '-', '-', normal ). +adj( 'repressive', '-', '-', normal ). +adj( 'reproachful', '-', '-', normal ). +adj( 'reproducible', '-', '-', normal ). +adj( 'reproductive', '-', '-', normal ). +adj( 'reptilian', '-', '-', normal ). +adj( 'republican', '-', '-', normal ). +adj( 'repugnant', '-', '-', normal ). +adj( 'repulsive', '-', '-', normal ). +adj( 'reputable', '-', '-', normal ). +adj( 'reputed', '-', '-', attr ). +adj( 'requisite', '-', '-', normal ). +adj( 'resentful', '-', '-', normal ). +adj( 'reserved', '-', '-', normal ). +adj( 'resident', '-', '-', normal ). +adj( 'residential', '-', '-', normal ). +adj( 'residual', '-', '-', normal ). +adj( 'residuary', '-', '-', normal ). +adj( 'resigned', '-', '-', normal ). +adj( 'resilient', '-', '-', normal ). +adj( 'resinated', '-', '-', normal ). +adj( 'resinous', '-', '-', normal ). +adj( 'resistant', '-', '-', normal ). +adj( 'resistive', '-', '-', normal ). +adj( 'resistless', '-', '-', normal ). +adj( 'resolute', '-', '-', normal ). +adj( 'resolvable', '-', '-', normal ). +adj( 'resonant', '-', '-', normal ). +adj( 'resourceful', '-', '-', normal ). +adj( 'resourceless', '-', '-', normal ). +adj( 'respectable', '-', '-', normal ). +adj( 'respectful', '-', '-', normal ). +adj( 'respective', '-', '-', normal ). +adj( 'respiratory', '-', '-', normal ). +adj( 'resplendent', '-', '-', normal ). +adj( 'responsible', '-', '-', normal ). +adj( 'responsive', '-', '-', normal ). +adj( 'restful', '-', '-', normal ). +adj( 'restive', '-', '-', normal ). +adj( 'restless', '-', '-', normal ). +adj( 'restorative', '-', '-', normal ). +adj( 'restrained', '-', '-', normal ). +adj( 'restrictive', '-', '-', normal ). +adj( 'resultant', '-', '-', normal ). +adj( 'resurgent', '-', '-', normal ). +adj( 'retaliative', '-', '-', normal ). +adj( 'retaliatory', '-', '-', normal ). +adj( 'retentive', '-', '-', normal ). +adj( 'reticent', '-', '-', normal ). +adj( 'reticulate', '-', '-', normal ). +adj( 'retinal', '-', '-', normal ). +adj( 'retired', '-', '-', normal ). +adj( 'retiring', '-', '-', normal ). +adj( 'retractable', '-', '-', normal ). +adj( 'retractile', '-', '-', normal ). +adj( 'retributive', '-', '-', normal ). +adj( 'retrievable', '-', '-', normal ). +adj( 'retroactive', '-', '-', normal ). +adj( 'retrograde', '-', '-', normal ). +adj( 'retrogressive', '-', '-', normal ). +adj( 'retrospective', '-', '-', normal ). +adj( 'retrouss_e', '-', '-', normal ). +adj( 'returnable', '-', '-', normal ). +adj( 'revengeful', '-', '-', normal ). +adj( 'reverberant', '-', '-', normal ). +adj( 'reverend', '-', '-', normal ). +adj( 'reverent', '-', '-', normal ). +adj( 'reverential', '-', '-', normal ). +adj( 'reverse', '-', '-', normal ). +adj( 'reversible', '-', '-', normal ). +adj( 'reversionary', '-', '-', normal ). +adj( 'revertible', '-', '-', normal ). +adj( 'revocable', '-', '-', normal ). +adj( 'revolting', '-', '-', normal ). +adj( 'revolutionary', '-', '-', normal ). +adj( 'rhetorical', '-', '-', normal ). +adj( 'rheumatic', '-', '-', normal ). +adj( 'rheumatoid', '-', '-', normal ). +adj( 'rhinal', '-', '-', normal ). +adj( 'rhomboid', '-', '-', normal ). +adj( 'rhymed', '-', '-', normal ). +adj( 'rhythmic', '-', '-', normal ). +adj( 'rhythmical', '-', '-', normal ). +adj( 'ribald', '-', '-', normal ). +adj( 'rich', 'richer', 'richest', normal ). +adj( 'rickety', '-', '-', normal ). +adj( 'riderless', '-', '-', normal ). +adj( 'ridiculous', '-', '-', normal ). +adj( 'rife', '-', '-', pred ). +adj( 'right', '-', '-', normal ). +adj( 'right-angled', '-', '-', normal ). +adj( 'right-down', '-', '-', normal ). +adj( 'right-hand', '-', '-', normal ). +adj( 'right-handed', '-', '-', normal ). +adj( 'right-minded', '-', '-', normal ). +adj( 'righteous', '-', '-', normal ). +adj( 'rightful', '-', '-', normal ). +adj( 'rightist', '-', '-', normal ). +adj( 'rigid', '-', '-', normal ). +adj( 'rigorous', '-', '-', normal ). +adj( 'riotous', '-', '-', normal ). +adj( 'rip-roaring', '-', '-', normal ). +adj( 'riparian', '-', '-', normal ). +adj( 'ripe', 'riper', 'ripest', normal ). +adj( 'risible', '-', '-', normal ). +adj( 'risky', 'riskier', 'riskiest', normal ). +adj( 'risqu_e', '-', '-', normal ). +adj( 'ritual', '-', '-', normal ). +adj( 'ritualistic', '-', '-', normal ). +adj( 'ritzy', '-', '-', normal ). +adj( 'roadless', '-', '-', normal ). +adj( 'roadworthy', '-', '-', normal ). +adj( 'roan', '-', '-', normal ). +adj( 'roaring', '-', '-', normal ). +adj( 'roast', '-', '-', attr ). +adj( 'robust', '-', '-', normal ). +adj( 'rocky', 'rockier', 'rockiest', normal ). +adj( 'rococo', '-', '-', normal ). +adj( 'roguish', '-', '-', normal ). +adj( 'rollicking', '-', '-', normal ). +adj( 'romantic', '-', '-', normal ). +adj( 'roofless', '-', '-', normal ). +adj( 'roomed', '-', '-', affix ). +adj( 'roomy', 'roomier', 'roomiest', normal ). +adj( 'rootless', '-', '-', normal ). +adj( 'ropey', 'ropier', 'ropiest', normal ). +adj( 'rose-red', '-', '-', normal ). +adj( 'roseate', '-', '-', normal ). +adj( 'rosy', 'rosier', 'rosiest', normal ). +adj( 'rotary', '-', '-', normal ). +adj( 'rotational', '-', '-', normal ). +adj( 'rotatory', '-', '-', normal ). +adj( 'rotten', '-', '-', normal ). +adj( 'rotund', '-', '-', normal ). +adj( 'rough', 'rougher', 'roughest', normal ). +adj( 'rough-and-tumble', '-', '-', normal ). +adj( 'rough-hewn', '-', '-', normal ). +adj( 'rough-spoken', '-', '-', normal ). +adj( 'roughish', '-', '-', normal ). +adj( 'roughshod', '-', '-', normal ). +adj( 'round', 'rounder', 'roundest', normal ). +adj( 'round-arm', '-', '-', normal ). +adj( 'round-backed', '-', '-', normal ). +adj( 'round-eyed', '-', '-', normal ). +adj( 'round-shouldered', '-', '-', normal ). +adj( 'round-the-clock', '-', '-', attr ). +adj( 'roundabout', '-', '-', attr ). +adj( 'roundish', '-', '-', normal ). +adj( 'routine', '-', '-', normal ). +adj( 'rowdy', 'rowdier', 'rowdiest', normal ). +adj( 'royal', '-', '-', normal ). +adj( 'rubbery', '-', '-', normal ). +adj( 'rubbishy', '-', '-', normal ). +adj( 'rubicund', '-', '-', normal ). +adj( 'ruby', '-', '-', normal ). +adj( 'rudderless', '-', '-', normal ). +adj( 'ruddy', 'ruddier', 'ruddiest', normal ). +adj( 'rude', 'ruder', 'rudest', normal ). +adj( 'rudimentary', '-', '-', normal ). +adj( 'rueful', '-', '-', normal ). +adj( 'ruffianly', '-', '-', normal ). +adj( 'rugged', '-', '-', normal ). +adj( 'ruinous', '-', '-', normal ). +adj( 'ruling', '-', '-', normal ). +adj( 'rumbustious', '-', '-', normal ). +adj( 'ruminant', '-', '-', normal ). +adj( 'ruminative', '-', '-', normal ). +adj( 'rummy', 'rummer', 'rummest', normal ). +adj( 'run-of-the-mill', '-', '-', normal ). +adj( 'runaway', '-', '-', normal ). +adj( 'rundown', '-', '-', normal ). +adj( 'runic', '-', '-', normal ). +adj( 'running', '-', '-', normal ). +adj( 'runny', 'runnier', 'runniest', normal ). +adj( 'rural', '-', '-', normal ). +adj( 'rushy', 'rushier', 'rushiest', normal ). +adj( 'russet', '-', '-', normal ). +adj( 'rustic', '-', '-', normal ). +adj( 'rustless', '-', '-', normal ). +adj( 'rusty', 'rustier', 'rustiest', normal ). +adj( 'ruthless', '-', '-', normal ). +adj( 'sabbatarian', '-', '-', normal ). +adj( 'sabbatical', '-', '-', normal ). +adj( 'sable', '-', '-', normal ). +adj( 'sabre-toothed', '-', '-', normal ). +adj( 'saccharine', '-', '-', normal ). +adj( 'sacerdotal', '-', '-', normal ). +adj( 'sacramental', '-', '-', normal ). +adj( 'sacred', '-', '-', normal ). +adj( 'sacrificial', '-', '-', normal ). +adj( 'sacrilegious', '-', '-', normal ). +adj( 'sacrosanct', '-', '-', normal ). +adj( 'sad', 'sadder', 'saddest', normal ). +adj( 'saddle-sore', '-', '-', normal ). +adj( 'sadistic', '-', '-', normal ). +adj( 'safe', 'safer', 'safest', normal ). +adj( 'safe-deposit', '-', '-', normal ). +adj( 'sagacious', '-', '-', normal ). +adj( 'sage', '-', '-', normal ). +adj( 'sage-green', '-', '-', normal ). +adj( 'said', '-', '-', attr ). +adj( 'sainted', '-', '-', normal ). +adj( 'saintlike', '-', '-', normal ). +adj( 'saintly', 'saintlier', 'saintliest', normal ). +adj( 'salable', '-', '-', normal ). +adj( 'salacious', '-', '-', normal ). +adj( 'salaried', '-', '-', normal ). +adj( 'saleable', '-', '-', normal ). +adj( 'salient', '-', '-', normal ). +adj( 'saline', '-', '-', normal ). +adj( 'salivary', '-', '-', normal ). +adj( 'sallow', 'sallower', 'sallowest', normal ). +adj( 'salt', '-', '-', normal ). +adj( 'salty', 'saltier', 'saltiest', normal ). +adj( 'salubrious', '-', '-', normal ). +adj( 'salutary', '-', '-', normal ). +adj( 'same', '-', '-', normal ). +adj( 'sanctimonious', '-', '-', normal ). +adj( 'sandalled', '-', '-', normal ). +adj( 'sandy', 'sandier', 'sandiest', normal ). +adj( 'sane', 'saner', 'sanest', normal ). +adj( 'sanguinary', '-', '-', normal ). +adj( 'sanguine', '-', '-', normal ). +adj( 'sanitary', '-', '-', normal ). +adj( 'sapient', '-', '-', normal ). +adj( 'sapless', '-', '-', normal ). +adj( 'sappy', 'sappier', 'sappiest', normal ). +adj( 'sarcastic', '-', '-', normal ). +adj( 'sardonic', '-', '-', normal ). +adj( 'sartorial', '-', '-', normal ). +adj( 'satiable', '-', '-', normal ). +adj( 'satin', '-', '-', normal ). +adj( 'satirical', '-', '-', normal ). +adj( 'satisfactory', '-', '-', normal ). +adj( 'satisfying', '-', '-', normal ). +adj( 'saturnine', '-', '-', normal ). +adj( 'satyric', '-', '-', normal ). +adj( 'saucer-eyed', '-', '-', normal ). +adj( 'saucy', 'saucier', 'sauciest', normal ). +adj( 'saurian', '-', '-', normal ). +adj( 'saut_e', '-', '-', normal ). +adj( 'savage', '-', '-', normal ). +adj( 'saving', '-', '-', normal ). +adj( 'savoury', '-', '-', normal ). +adj( 'scabby', 'scabbier', 'scabbiest', normal ). +adj( 'scabrous', '-', '-', normal ). +adj( 'scaly', 'scalier', 'scaliest', normal ). +adj( 'scandalous', '-', '-', normal ). +adj( 'scant', '-', '-', normal ). +adj( 'scanty', 'scantier', 'scantiest', normal ). +adj( 'scarce', 'scarcer', 'scarcest', normal ). +adj( 'scarlet', '-', '-', normal ). +adj( 'scary', 'scarier', 'scariest', normal ). +adj( 'scathing', '-', '-', normal ). +adj( 'scatterbrained', '-', '-', normal ). +adj( 'scattered', '-', '-', normal ). +adj( 'scatty', 'scattier', 'scattiest', normal ). +adj( 'scenic', '-', '-', normal ). +adj( 'scentless', '-', '-', normal ). +adj( 'sceptered', '-', '-', normal ). +adj( 'sceptical', '-', '-', normal ). +adj( 'sceptred', '-', '-', normal ). +adj( 'schematic', '-', '-', normal ). +adj( 'schismatic', '-', '-', normal ). +adj( 'schizoid', '-', '-', normal ). +adj( 'schizophrenic', '-', '-', normal ). +adj( 'schmaltzy', 'schmaltzier', 'schmaltziest', normal ). +adj( 'schmalzy', 'schmalzier', 'schmalziest', normal ). +adj( 'scholarly', '-', '-', normal ). +adj( 'scholastic', '-', '-', normal ). +adj( 'sciatic', '-', '-', normal ). +adj( 'scientific', '-', '-', normal ). +adj( 'scorbutic', '-', '-', normal ). +adj( 'scorching', '-', '-', normal ). +adj( 'scornful', '-', '-', normal ). +adj( 'scoundrelly', '-', '-', normal ). +adj( 'scraggy', 'scraggier', 'scraggiest', normal ). +adj( 'scrappy', 'scrappier', 'scrappiest', normal ). +adj( 'scratchy', 'scratchier', 'scratchiest', normal ). +adj( 'scrawny', 'scrawnier', 'scrawniest', normal ). +adj( 'screw-topped', '-', '-', normal ). +adj( 'screwball', '-', '-', normal ). +adj( 'screwy', 'screwier', 'screwiest', normal ). +adj( 'scripted', '-', '-', normal ). +adj( 'scriptural', '-', '-', normal ). +adj( 'scrofulous', '-', '-', normal ). +adj( 'scrubby', 'scrubbier', 'scrubbiest', normal ). +adj( 'scruffy', 'scruffier', 'scruffiest', normal ). +adj( 'scrumptious', '-', '-', normal ). +adj( 'scrupulous', '-', '-', normal ). +adj( 'sculptural', '-', '-', normal ). +adj( 'scummy', 'scummier', 'scummiest', normal ). +adj( 'scurfy', 'scurfier', 'scurfiest', normal ). +adj( 'scurrilous', '-', '-', normal ). +adj( 'scurvy', '-', '-', normal ). +adj( 'sea-girt', '-', '-', normal ). +adj( 'sea-green', '-', '-', normal ). +adj( 'seaborne', '-', '-', normal ). +adj( 'seafaring', '-', '-', normal ). +adj( 'seagoing', '-', '-', normal ). +adj( 'seamanlike', '-', '-', normal ). +adj( 'seamless', '-', '-', normal ). +adj( 'seamy', 'seamier', 'seamiest', normal ). +adj( 'sear', '-', '-', normal ). +adj( 'searching', '-', '-', normal ). +adj( 'seasick', '-', '-', normal ). +adj( 'seasonable', '-', '-', normal ). +adj( 'seasonal', '-', '-', normal ). +adj( 'seaward', '-', '-', normal ). +adj( 'seaworthy', '-', '-', normal ). +adj( 'secluded', '-', '-', normal ). +adj( 'second', '-', '-', normal ). +adj( 'second-best', '-', '-', normal ). +adj( 'second-class', '-', '-', normal ). +adj( 'second-hand', '-', '-', normal ). +adj( 'second-rate', '-', '-', normal ). +adj( 'second-sighted', '-', '-', normal ). +adj( 'secondary', '-', '-', normal ). +adj( 'secret', '-', '-', normal ). +adj( 'secretarial', '-', '-', normal ). +adj( 'secretive', '-', '-', normal ). +adj( 'sectarian', '-', '-', normal ). +adj( 'sectional', '-', '-', normal ). +adj( 'secular', '-', '-', normal ). +adj( 'secure', '-', '-', normal ). +adj( 'sedate', '-', '-', normal ). +adj( 'sedative', '-', '-', normal ). +adj( 'sedentary', '-', '-', normal ). +adj( 'sedgy', 'sedgier', 'sedgiest', normal ). +adj( 'sedimentary', '-', '-', normal ). +adj( 'seditious', '-', '-', normal ). +adj( 'seductive', '-', '-', normal ). +adj( 'sedulous', '-', '-', normal ). +adj( 'see-through', '-', '-', normal ). +adj( 'seedless', '-', '-', normal ). +adj( 'seedy', 'seedier', 'seediest', normal ). +adj( 'seeming', '-', '-', normal ). +adj( 'seemly', 'seemlier', 'seemliest', normal ). +adj( 'seismic', '-', '-', normal ). +adj( 'select', '-', '-', normal ). +adj( 'selective', '-', '-', normal ). +adj( 'self-absorbed', '-', '-', normal ). +adj( 'self-acting', '-', '-', normal ). +adj( 'self-activating', '-', '-', normal ). +adj( 'self-addressed', '-', '-', normal ). +adj( 'self-appointed', '-', '-', normal ). +adj( 'self-assertive', '-', '-', normal ). +adj( 'self-assured', '-', '-', normal ). +adj( 'self-centred', '-', '-', normal ). +adj( 'self-collected', '-', '-', normal ). +adj( 'self-coloured', '-', '-', normal ). +adj( 'self-confessed', '-', '-', normal ). +adj( 'self-confident', '-', '-', normal ). +adj( 'self-conscious', '-', '-', normal ). +adj( 'self-contained', '-', '-', normal ). +adj( 'self-denying', '-', '-', normal ). +adj( 'self-educated', '-', '-', normal ). +adj( 'self-effacing', '-', '-', normal ). +adj( 'self-employed', '-', '-', normal ). +adj( 'self-evident', '-', '-', normal ). +adj( 'self-explanatory', '-', '-', normal ). +adj( 'self-important', '-', '-', normal ). +adj( 'self-imposed', '-', '-', normal ). +adj( 'self-indulgent', '-', '-', normal ). +adj( 'self-locking', '-', '-', normal ). +adj( 'self-made', '-', '-', normal ). +adj( 'self-opinionated', '-', '-', normal ). +adj( 'self-possessed', '-', '-', normal ). +adj( 'self-raising', '-', '-', normal ). +adj( 'self-reliant', '-', '-', normal ). +adj( 'self-respecting', '-', '-', normal ). +adj( 'self-righteous', '-', '-', normal ). +adj( 'self-sacrificing', '-', '-', normal ). +adj( 'self-same', '-', '-', normal ). +adj( 'self-sealing', '-', '-', normal ). +adj( 'self-seeking', '-', '-', normal ). +adj( 'self-sown', '-', '-', normal ). +adj( 'self-styled', '-', '-', normal ). +adj( 'self-sufficient', '-', '-', normal ). +adj( 'self-sufficing', '-', '-', normal ). +adj( 'self-supporting', '-', '-', normal ). +adj( 'self-willed', '-', '-', normal ). +adj( 'self-winding', '-', '-', normal ). +adj( 'selfish', '-', '-', normal ). +adj( 'semantic', '-', '-', normal ). +adj( 'semicircular', '-', '-', normal ). +adj( 'semiconducting', '-', '-', normal ). +adj( 'semiconscious', '-', '-', normal ). +adj( 'semidetached', '-', '-', normal ). +adj( 'seminal', '-', '-', normal ). +adj( 'semiofficial', '-', '-', normal ). +adj( 'semirigid', '-', '-', normal ). +adj( 'semitropical', '-', '-', normal ). +adj( 'senatorial', '-', '-', normal ). +adj( 'senescent', '-', '-', normal ). +adj( 'senile', '-', '-', normal ). +adj( 'senior', '-', '-', normal ). +adj( 'sensational', '-', '-', normal ). +adj( 'senseless', '-', '-', normal ). +adj( 'sensible', '-', '-', normal ). +adj( 'sensitive', '-', '-', normal ). +adj( 'sensory', '-', '-', normal ). +adj( 'sensual', '-', '-', normal ). +adj( 'sensuous', '-', '-', normal ). +adj( 'sententious', '-', '-', normal ). +adj( 'sentient', '-', '-', normal ). +adj( 'sentimental', '-', '-', normal ). +adj( 'separable', '-', '-', normal ). +adj( 'separate', '-', '-', normal ). +adj( 'septic', '-', '-', normal ). +adj( 'sepulchral', '-', '-', normal ). +adj( 'sequent', '-', '-', normal ). +adj( 'sequential', '-', '-', normal ). +adj( 'sequestered', '-', '-', normal ). +adj( 'seraphic', '-', '-', normal ). +adj( 'sere', '-', '-', normal ). +adj( 'serene', '-', '-', normal ). +adj( 'serial', '-', '-', normal ). +adj( 'sericultural', '-', '-', normal ). +adj( 'seriocomic', '-', '-', normal ). +adj( 'serious', '-', '-', normal ). +adj( 'serous', '-', '-', normal ). +adj( 'serpentine', '-', '-', normal ). +adj( 'serrated', '-', '-', normal ). +adj( 'serried', '-', '-', normal ). +adj( 'serviceable', '-', '-', normal ). +adj( 'servile', '-', '-', normal ). +adj( 'sesquipedalian', '-', '-', normal ). +adj( 'settled', '-', '-', normal ). +adj( 'seven', '-', '-', normal ). +adj( 'sevenfold', '-', '-', normal ). +adj( 'seventeen', '-', '-', normal ). +adj( 'seventeenth', '-', '-', normal ). +adj( 'seventh', '-', '-', normal ). +adj( 'seventieth', '-', '-', normal ). +adj( 'seventy', '-', '-', normal ). +adj( 'several', '-', '-', normal ). +adj( 'severe', 'severer', 'severest', normal ). +adj( 'sex-starved', '-', '-', normal ). +adj( 'sexagenarian', '-', '-', normal ). +adj( 'sexed', '-', '-', normal ). +adj( 'sexist', '-', '-', normal ). +adj( 'sexless', '-', '-', normal ). +adj( 'sexual', '-', '-', normal ). +adj( 'sexy', 'sexier', 'sexiest', normal ). +adj( 'shabby', 'shabbier', 'shabbiest', normal ). +adj( 'shabby-genteel', '-', '-', normal ). +adj( 'shadowy', 'shadowier', 'shadowiest', normal ). +adj( 'shady', 'shadier', 'shadiest', normal ). +adj( 'shaggy', 'shaggier', 'shaggiest', normal ). +adj( 'shaky', 'shakier', 'shakiest', normal ). +adj( 'shallow', 'shallower', 'shallowest', normal ). +adj( 'sham', '-', '-', normal ). +adj( 'shame-making', '-', '-', normal ). +adj( 'shamefaced', '-', '-', normal ). +adj( 'shameful', '-', '-', normal ). +adj( 'shameless', '-', '-', normal ). +adj( 'shapeless', '-', '-', normal ). +adj( 'shapely', 'shapelier', 'shapeliest', normal ). +adj( 'sharp', 'sharper', 'sharpest', normal ). +adj( 'sharp-eyed', '-', '-', normal ). +adj( 'sharp-set', '-', '-', normal ). +adj( 'sharp-sighted', '-', '-', normal ). +adj( 'sharp-witted', '-', '-', normal ). +adj( 'shatterproof', '-', '-', normal ). +adj( 'sheepish', '-', '-', normal ). +adj( 'sheer', 'sheerer', 'sheerest', normal ). +adj( 'shellproof', '-', '-', normal ). +adj( 'shiftless', '-', '-', normal ). +adj( 'shifty', 'shiftier', 'shiftiest', normal ). +adj( 'shingly', 'shinglier', 'shingliest', normal ). +adj( 'shiny', 'shinier', 'shiniest', normal ). +adj( 'shipboard', '-', '-', attr ). +adj( 'shipshape', '-', '-', normal ). +adj( 'shirty', 'shirtier', 'shirtiest', normal ). +adj( 'shivery', '-', '-', normal ). +adj( 'shock-headed', '-', '-', normal ). +adj( 'shockable', '-', '-', normal ). +adj( 'shocking', '-', '-', normal ). +adj( 'shoddy', 'shoddier', 'shoddiest', normal ). +adj( 'shopsoiled', '-', '-', normal ). +adj( 'shopworn', '-', '-', normal ). +adj( 'short', 'shorter', 'shortest', normal ). +adj( 'short-dated', '-', '-', normal ). +adj( 'short-handed', '-', '-', normal ). +adj( 'short-lived', '-', '-', normal ). +adj( 'short-range', '-', '-', normal ). +adj( 'short-sighted', '-', '-', normal ). +adj( 'short-tempered', '-', '-', normal ). +adj( 'short-term', '-', '-', attr ). +adj( 'short-winded', '-', '-', normal ). +adj( 'shortish', '-', '-', normal ). +adj( 'showery', 'showerier', 'showeriest', normal ). +adj( 'showy', 'showier', 'showiest', normal ). +adj( 'shrewd', 'shrewder', 'shrewdest', normal ). +adj( 'shrewish', '-', '-', normal ). +adj( 'shrill', 'shriller', 'shrillest', normal ). +adj( 'shrinkable', '-', '-', normal ). +adj( 'shy', 'shyer', 'shyest', normal ). +adj( 'sibilant', '-', '-', normal ). +adj( 'sibylline', '-', '-', normal ). +adj( 'sick', '-', '-', normal ). +adj( 'sickening', '-', '-', normal ). +adj( 'sickish', '-', '-', normal ). +adj( 'sickly', 'sicklier', 'sickliest', normal ). +adj( 'side-splitting', '-', '-', normal ). +adj( 'sided', '-', '-', affix ). +adj( 'sidelong', '-', '-', normal ). +adj( 'sidereal', '-', '-', normal ). +adj( 'sighted', '-', '-', affix ). +adj( 'sightless', '-', '-', normal ). +adj( 'signal', '-', '-', attr ). +adj( 'significant', '-', '-', normal ). +adj( 'significative', '-', '-', normal ). +adj( 'silent', '-', '-', normal ). +adj( 'silken', '-', '-', normal ). +adj( 'silky', 'silkier', 'silkiest', normal ). +adj( 'silly', 'sillier', 'silliest', normal ). +adj( 'silvan', '-', '-', normal ). +adj( 'silvern', '-', '-', normal ). +adj( 'silvery', 'silverier', 'silveriest', normal ). +adj( 'simian', '-', '-', normal ). +adj( 'similar', '-', '-', normal ). +adj( 'simple', 'simpler', 'simplest', normal ). +adj( 'simple-hearted', '-', '-', normal ). +adj( 'simple-minded', '-', '-', normal ). +adj( 'simultaneous', '-', '-', normal ). +adj( 'sincere', '-', '-', normal ). +adj( 'sinewy', '-', '-', normal ). +adj( 'sinful', '-', '-', normal ). +adj( 'singable', '-', '-', normal ). +adj( 'single', '-', '-', normal ). +adj( 'single-breasted', '-', '-', normal ). +adj( 'single-handed', '-', '-', normal ). +adj( 'single-minded', '-', '-', normal ). +adj( 'singular', '-', '-', normal ). +adj( 'sinister', '-', '-', normal ). +adj( 'sinkable', '-', '-', normal ). +adj( 'sinless', '-', '-', normal ). +adj( 'sinuous', '-', '-', normal ). +adj( 'sissified', '-', '-', normal ). +adj( 'sisterly', '-', '-', normal ). +adj( 'situated', '-', '-', pred ). +adj( 'six', '-', '-', normal ). +adj( 'sixfold', '-', '-', normal ). +adj( 'sixpenny', '-', '-', normal ). +adj( 'sixteen', '-', '-', normal ). +adj( 'sixteenth', '-', '-', normal ). +adj( 'sixth', '-', '-', normal ). +adj( 'sixtieth', '-', '-', normal ). +adj( 'sixty', '-', '-', normal ). +adj( 'sizable', '-', '-', normal ). +adj( 'sizeable', '-', '-', normal ). +adj( 'sized', '-', '-', affix ). +adj( 'skeptical', '-', '-', normal ). +adj( 'sketchy', 'sketchier', 'sketchiest', normal ). +adj( 'skew', '-', '-', normal ). +adj( 'skew-eyed', '-', '-', normal ). +adj( 'skilful', '-', '-', normal ). +adj( 'skilled', '-', '-', normal ). +adj( 'skimpy', 'skimpier', 'skimpiest', normal ). +adj( 'skin-deep', '-', '-', normal ). +adj( 'skin-tight', '-', '-', normal ). +adj( 'skinny', 'skinnier', 'skinniest', normal ). +adj( 'skint', '-', '-', normal ). +adj( 'skittish', '-', '-', normal ). +adj( 'skulled', '-', '-', affix ). +adj( 'sky-blue', '-', '-', normal ). +adj( 'skyward', '-', '-', normal ). +adj( 'skywards', '-', '-', normal ). +adj( 'slack', 'slacker', 'slackest', normal ). +adj( 'slanderous', '-', '-', normal ). +adj( 'slangy', 'slangier', 'slangiest', normal ). +adj( 'slap-happy', '-', '-', normal ). +adj( 'slap-up', '-', '-', normal ). +adj( 'slapdash', '-', '-', normal ). +adj( 'slatted', '-', '-', normal ). +adj( 'slatternly', '-', '-', normal ). +adj( 'slaty', 'slatier', 'slatiest', normal ). +adj( 'slavish', '-', '-', normal ). +adj( 'sleazy', 'sleazier', 'sleaziest', normal ). +adj( 'sleek', 'sleeker', 'sleekest', normal ). +adj( 'sleepless', '-', '-', normal ). +adj( 'sleepy', 'sleepier', 'sleepiest', normal ). +adj( 'sleety', 'sleetier', 'sleetiest', normal ). +adj( 'sleeved', '-', '-', affix ). +adj( 'sleeveless', '-', '-', normal ). +adj( 'slender', '-', '-', normal ). +adj( 'slick', 'slicker', 'slickest', normal ). +adj( 'slight', 'slighter', 'slightest', normal ). +adj( 'slim', 'slimmer', 'slimmest', normal ). +adj( 'slimy', 'slimier', 'slimiest', normal ). +adj( 'slippered', '-', '-', normal ). +adj( 'slippery', 'slipperier', 'slipperiest', normal ). +adj( 'slippy', '-', '-', normal ). +adj( 'slipshod', '-', '-', normal ). +adj( 'slithery', '-', '-', normal ). +adj( 'sloppy', 'sloppier', 'sloppiest', normal ). +adj( 'sloshed', '-', '-', normal ). +adj( 'slothful', '-', '-', normal ). +adj( 'slovenly', 'slovenlier', 'slovenliest', normal ). +adj( 'slow', 'slower', 'slowest', normal ). +adj( 'sluggish', '-', '-', normal ). +adj( 'slumberous', '-', '-', normal ). +adj( 'slummy', 'slummier', 'slummiest', normal ). +adj( 'slushy', 'slushier', 'slushiest', normal ). +adj( 'sluttish', '-', '-', normal ). +adj( 'sly', 'slyer', 'slyest', normal ). +adj( 'small', 'smaller', 'smallest', normal ). +adj( 'small-minded', '-', '-', normal ). +adj( 'smalltime', '-', '-', normal ). +adj( 'smarmy', '-', '-', normal ). +adj( 'smart', 'smarter', 'smartest', normal ). +adj( 'smashing', '-', '-', normal ). +adj( 'smelly', 'smellier', 'smelliest', normal ). +adj( 'smoke-cured', '-', '-', normal ). +adj( 'smoke-dried', '-', '-', normal ). +adj( 'smokeless', '-', '-', normal ). +adj( 'smoky', 'smokier', 'smokiest', normal ). +adj( 'smooth', 'smoother', 'smoothest', normal ). +adj( 'smooth-bore', '-', '-', normal ). +adj( 'smooth-faced', '-', '-', normal ). +adj( 'smooth-spoken', '-', '-', normal ). +adj( 'smooth-tongued', '-', '-', normal ). +adj( 'smudgy', '-', '-', normal ). +adj( 'smug', 'smugger', 'smuggest', normal ). +adj( 'smutty', 'smuttier', 'smuttiest', normal ). +adj( 'snaky', 'snakier', 'snakiest', normal ). +adj( 'snappish', '-', '-', normal ). +adj( 'snappy', 'snappier', 'snappiest', normal ). +adj( 'snazzy', '-', '-', normal ). +adj( 'sneaking', '-', '-', normal ). +adj( 'sneaky', 'sneakier', 'sneakiest', normal ). +adj( 'snide', '-', '-', normal ). +adj( 'sniffy', 'sniffier', 'sniffiest', normal ). +adj( 'snobbish', '-', '-', normal ). +adj( 'snooty', 'snootier', 'snootiest', normal ). +adj( 'snorty', 'snortier', 'snortiest', normal ). +adj( 'snot-nosed', '-', '-', normal ). +adj( 'snotty', 'snottier', 'snottiest', normal ). +adj( 'snow-clad', '-', '-', normal ). +adj( 'snow-covered', '-', '-', normal ). +adj( 'snow-white', '-', '-', normal ). +adj( 'snowblind', '-', '-', normal ). +adj( 'snowbound', '-', '-', normal ). +adj( 'snowcapped', '-', '-', normal ). +adj( 'snowy', 'snowier', 'snowiest', normal ). +adj( 'snub', '-', '-', normal ). +adj( 'snub-nosed', '-', '-', normal ). +adj( 'snuff-colour', '-', '-', normal ). +adj( 'snuff-coloured', '-', '-', normal ). +adj( 'snug', 'snugger', 'snuggest', normal ). +adj( 'so-called', '-', '-', normal ). +adj( 'so-so', '-', '-', pred ). +adj( 'soapy', 'soapier', 'soapiest', normal ). +adj( 'sober', '-', '-', normal ). +adj( 'sociable', '-', '-', normal ). +adj( 'social', '-', '-', normal ). +adj( 'socialist', '-', '-', normal ). +adj( 'sociological', '-', '-', normal ). +adj( 'sodden', '-', '-', normal ). +adj( 'sodding', '-', '-', attr ). +adj( 'soft', 'softer', 'softest', normal ). +adj( 'soft-boiled', '-', '-', normal ). +adj( 'soft-footed', '-', '-', normal ). +adj( 'soft-headed', '-', '-', normal ). +adj( 'soft-hearted', '-', '-', normal ). +adj( 'soft-spoken', '-', '-', normal ). +adj( 'soft-witted', '-', '-', normal ). +adj( 'softish', '-', '-', normal ). +adj( 'soggy', 'soggier', 'soggiest', normal ). +adj( 'soign_e', '-', '-', normal ). +adj( 'soignee', '-', '-', normal ). +adj( 'solar', '-', '-', normal ). +adj( 'sole', '-', '-', normal ). +adj( 'soled', '-', '-', affix ). +adj( 'solemn', '-', '-', normal ). +adj( 'solicitous', '-', '-', normal ). +adj( 'solid', '-', '-', normal ). +adj( 'solid-state', '-', '-', normal ). +adj( 'solitary', '-', '-', normal ). +adj( 'soluble', '-', '-', normal ). +adj( 'solvable', '-', '-', normal ). +adj( 'solvent', '-', '-', normal ). +adj( 'somatic', '-', '-', normal ). +adj( 'sombre', '-', '-', normal ). +adj( 'some', '-', '-', normal ). +adj( 'somnolent', '-', '-', normal ). +adj( 'sonic', '-', '-', normal ). +adj( 'sonorous', '-', '-', normal ). +adj( 'sonsy', '-', '-', normal ). +adj( 'sooty', 'sootier', 'sootiest', normal ). +adj( 'sophisticated', '-', '-', normal ). +adj( 'soporific', '-', '-', normal ). +adj( 'sopping', '-', '-', normal ). +adj( 'soppy', 'soppier', 'soppiest', normal ). +adj( 'sordid', '-', '-', normal ). +adj( 'sore', '-', '-', normal ). +adj( 'sorrel', '-', '-', normal ). +adj( 'sorrowful', '-', '-', normal ). +adj( 'sorry', 'sorrier', 'sorriest', normal ). +adj( 'sottish', '-', '-', normal ). +adj( 'soul-destroying', '-', '-', normal ). +adj( 'soul-stirring', '-', '-', normal ). +adj( 'soulful', '-', '-', normal ). +adj( 'soulless', '-', '-', normal ). +adj( 'sound', '-', '-', normal ). +adj( 'soundless', '-', '-', normal ). +adj( 'soundproof', '-', '-', normal ). +adj( 'sour', '-', '-', normal ). +adj( 'soused', '-', '-', normal ). +adj( 'southeasterly', '-', '-', normal ). +adj( 'southeastern', '-', '-', normal ). +adj( 'southerly', '-', '-', normal ). +adj( 'southern', '-', '-', normal ). +adj( 'southernmost', '-', '-', normal ). +adj( 'southwesterly', '-', '-', normal ). +adj( 'southwestern', '-', '-', normal ). +adj( 'sovereign', '-', '-', normal ). +adj( 'sozzled', '-', '-', normal ). +adj( 'spacious', '-', '-', normal ). +adj( 'spanking', '-', '-', normal ). +adj( 'spare', '-', '-', normal ). +adj( 'sparing', '-', '-', normal ). +adj( 'sparkling', '-', '-', normal ). +adj( 'sparse', 'sparser', 'sparsest', normal ). +adj( 'spasmodic', '-', '-', normal ). +adj( 'spastic', '-', '-', normal ). +adj( 'spatial', '-', '-', normal ). +adj( 'spavined', '-', '-', normal ). +adj( 'special', '-', '-', normal ). +adj( 'specifiable', '-', '-', normal ). +adj( 'specific', '-', '-', normal ). +adj( 'specious', '-', '-', normal ). +adj( 'specked', '-', '-', normal ). +adj( 'speckled', '-', '-', normal ). +adj( 'speckless', '-', '-', normal ). +adj( 'spectacled', '-', '-', normal ). +adj( 'spectacular', '-', '-', normal ). +adj( 'spectral', '-', '-', normal ). +adj( 'spectroscopic', '-', '-', normal ). +adj( 'speculative', '-', '-', normal ). +adj( 'speechless', '-', '-', normal ). +adj( 'speedy', 'speedier', 'speediest', normal ). +adj( 'spellbound', '-', '-', normal ). +adj( 'spent', '-', '-', normal ). +adj( 'spherical', '-', '-', normal ). +adj( 'spick', '-', '-', normal ). +adj( 'spicy', 'spicier', 'spiciest', normal ). +adj( 'spidery', '-', '-', normal ). +adj( 'spiky', 'spikier', 'spikiest', normal ). +adj( 'spinal', '-', '-', normal ). +adj( 'spindle-legged', '-', '-', normal ). +adj( 'spindle-shanked', '-', '-', normal ). +adj( 'spindly', 'spindlier', 'spindliest', normal ). +adj( 'spineless', '-', '-', normal ). +adj( 'spiny', 'spinier', 'spiniest', normal ). +adj( 'spiral', '-', '-', normal ). +adj( 'spirited', '-', '-', normal ). +adj( 'spiritless', '-', '-', normal ). +adj( 'spiritual', '-', '-', normal ). +adj( 'spiritualistic', '-', '-', normal ). +adj( 'spirituous', '-', '-', normal ). +adj( 'spiteful', '-', '-', normal ). +adj( 'splay', '-', '-', normal ). +adj( 'splayfooted', '-', '-', normal ). +adj( 'splendid', '-', '-', normal ). +adj( 'splendiferous', '-', '-', normal ). +adj( 'splenetic', '-', '-', normal ). +adj( 'splinter-proof', '-', '-', normal ). +adj( 'splintery', '-', '-', normal ). +adj( 'spondaic', '-', '-', normal ). +adj( 'spongy', 'spongier', 'spongiest', normal ). +adj( 'spontaneous', '-', '-', normal ). +adj( 'spooky', 'spookier', 'spookiest', normal ). +adj( 'sporadic', '-', '-', normal ). +adj( 'sporting', '-', '-', normal ). +adj( 'sportive', '-', '-', normal ). +adj( 'sportsmanlike', '-', '-', normal ). +adj( 'spotless', '-', '-', normal ). +adj( 'spotted', '-', '-', normal ). +adj( 'spotty', 'spottier', 'spottiest', normal ). +adj( 'sprigged', '-', '-', normal ). +adj( 'sprightly', 'sprightlier', 'sprightliest', normal ). +adj( 'springless', '-', '-', normal ). +adj( 'springlike', '-', '-', normal ). +adj( 'springy', 'springier', 'springiest', normal ). +adj( 'spruce', '-', '-', normal ). +adj( 'spry', 'spryer', 'spryest', normal ). +adj( 'spunky', 'spunkier', 'spunkiest', normal ). +adj( 'spurious', '-', '-', normal ). +adj( 'squalid', '-', '-', normal ). +adj( 'squally', '-', '-', normal ). +adj( 'square', '-', '-', normal ). +adj( 'square-built', '-', '-', normal ). +adj( 'square-rigged', '-', '-', normal ). +adj( 'square-shouldered', '-', '-', normal ). +adj( 'square-toed', '-', '-', normal ). +adj( 'squashy', 'squashier', 'squashiest', normal ). +adj( 'squat', '-', '-', normal ). +adj( 'squeaky', 'squeakier', 'squeakiest', normal ). +adj( 'squeamish', '-', '-', normal ). +adj( 'squiffy', '-', '-', normal ). +adj( 'squiggly', 'squigglier', 'squiggliest', normal ). +adj( 'squint-eyed', '-', '-', normal ). +adj( 'stable', '-', '-', normal ). +adj( 'staccato', '-', '-', normal ). +adj( 'stage-struck', '-', '-', normal ). +adj( 'stagnant', '-', '-', normal ). +adj( 'stagy', '-', '-', normal ). +adj( 'staid', '-', '-', normal ). +adj( 'stainless', '-', '-', normal ). +adj( 'stale', 'staler', 'stalest', normal ). +adj( 'stall-fed', '-', '-', normal ). +adj( 'stalwart', '-', '-', normal ). +adj( 'stand-up', '-', '-', normal ). +adj( 'standard', '-', '-', normal ). +adj( 'standing', '-', '-', normal ). +adj( 'standoffish', '-', '-', normal ). +adj( 'starchy', 'starchier', 'starchiest', normal ). +adj( 'staring', '-', '-', normal ). +adj( 'stark', '-', '-', normal ). +adj( 'starkers', '-', '-', pred ). +adj( 'starless', '-', '-', normal ). +adj( 'starlit', '-', '-', normal ). +adj( 'starry', 'starrier', 'starriest', normal ). +adj( 'starry-eyed', '-', '-', normal ). +adj( 'stated', '-', '-', normal ). +adj( 'stateless', '-', '-', normal ). +adj( 'stately', 'statelier', 'stateliest', normal ). +adj( 'statesmanlike', '-', '-', normal ). +adj( 'static', '-', '-', normal ). +adj( 'stationary', '-', '-', normal ). +adj( 'statistical', '-', '-', normal ). +adj( 'statuary', '-', '-', normal ). +adj( 'statuesque', '-', '-', normal ). +adj( 'statutory', '-', '-', normal ). +adj( 'staunch', '-', '-', normal ). +adj( 'steadfast', '-', '-', normal ). +adj( 'steady', 'steadier', 'steadiest', normal ). +adj( 'stealthy', 'stealthier', 'stealthiest', normal ). +adj( 'steamy', 'steamier', 'steamiest', normal ). +adj( 'steel-clad', '-', '-', normal ). +adj( 'steel-plated', '-', '-', normal ). +adj( 'steely', 'steelier', 'steeliest', normal ). +adj( 'steep', 'steeper', 'steepest', normal ). +adj( 'steepish', '-', '-', normal ). +adj( 'stellar', '-', '-', normal ). +adj( 'stemmed', '-', '-', affix ). +adj( 'stentorian', '-', '-', normal ). +adj( 'stereophonic', '-', '-', normal ). +adj( 'stereoscopic', '-', '-', normal ). +adj( 'sterile', '-', '-', normal ). +adj( 'sterling', '-', '-', normal ). +adj( 'stern', 'sterner', 'sternest', normal ). +adj( 'stertorous', '-', '-', normal ). +adj( 'stewed', '-', '-', normal ). +adj( 'stick-in-the-mud', '-', '-', attr ). +adj( 'stick-on', '-', '-', attr ). +adj( 'sticky', 'stickier', 'stickiest', normal ). +adj( 'stiff', 'stiffer', 'stiffest', normal ). +adj( 'stiff-necked', '-', '-', normal ). +adj( 'still', 'stiller', 'stillest', normal ). +adj( 'stillborn', '-', '-', normal ). +adj( 'stilly', '-', '-', normal ). +adj( 'stilted', '-', '-', normal ). +adj( 'stimulating', '-', '-', normal ). +adj( 'stingless', '-', '-', normal ). +adj( 'stingy', 'stingier', 'stingiest', normal ). +adj( 'stipendiary', '-', '-', normal ). +adj( 'stirring', '-', '-', normal ). +adj( 'stochastic', '-', '-', normal ). +adj( 'stockinged', '-', '-', normal ). +adj( 'stocky', 'stockier', 'stockiest', normal ). +adj( 'stodgy', 'stodgier', 'stodgiest', normal ). +adj( 'stoical', '-', '-', normal ). +adj( 'stolen', '-', '-', normal ). +adj( 'stolid', '-', '-', normal ). +adj( 'stone-blind', '-', '-', normal ). +adj( 'stone-cold', '-', '-', normal ). +adj( 'stone-dead', '-', '-', normal ). +adj( 'stone-deaf', '-', '-', normal ). +adj( 'stone-sober', '-', '-', normal ). +adj( 'stoned', '-', '-', normal ). +adj( 'stoneless', '-', '-', normal ). +adj( 'stony', 'stonier', 'stoniest', normal ). +adj( 'stony-broke', '-', '-', normal ). +adj( 'storeyed', '-', '-', affix ). +adj( 'storied', '-', '-', normal ). +adj( 'storm-beaten', '-', '-', normal ). +adj( 'storm-bound', '-', '-', normal ). +adj( 'storm-tossed', '-', '-', normal ). +adj( 'stormproof', '-', '-', normal ). +adj( 'stormy', 'stormier', 'stormiest', normal ). +adj( 'stout', 'stouter', 'stoutest', normal ). +adj( 'stouthearted', '-', '-', normal ). +adj( 'straggly', 'stragglier', 'straggliest', normal ). +adj( 'straight', '-', '-', normal ). +adj( 'straightforward', '-', '-', normal ). +adj( 'strained', '-', '-', normal ). +adj( 'strait', '-', '-', normal ). +adj( 'strait-laced', '-', '-', normal ). +adj( 'strange', 'stranger', 'strangest', normal ). +adj( 'strapping', '-', '-', normal ). +adj( 'strategic', '-', '-', normal ). +adj( 'strategical', '-', '-', normal ). +adj( 'straw-coloured', '-', '-', normal ). +adj( 'streaky', 'streakier', 'streakiest', normal ). +adj( 'streamlined', '-', '-', normal ). +adj( 'strenuous', '-', '-', normal ). +adj( 'striated', '-', '-', normal ). +adj( 'stricken', '-', '-', pred ). +adj( 'strict', 'stricter', 'strictest', normal ). +adj( 'strident', '-', '-', normal ). +adj( 'strikebound', '-', '-', normal ). +adj( 'striking', '-', '-', normal ). +adj( 'stringent', '-', '-', normal ). +adj( 'stringy', 'stringier', 'stringiest', normal ). +adj( 'striped', '-', '-', normal ). +adj( 'stripy', 'stripier', 'stripiest', normal ). +adj( 'strong', 'stronger', 'strongest', normal ). +adj( 'strong-arm', '-', '-', normal ). +adj( 'strong-boned', '-', '-', normal ). +adj( 'strong-minded', '-', '-', normal ). +adj( 'stroppy', '-', '-', normal ). +adj( 'struck', '-', '-', affix ). +adj( 'structural', '-', '-', normal ). +adj( 'structured', '-', '-', normal ). +adj( 'stubbly', 'stubblier', 'stubbliest', normal ). +adj( 'stubborn', '-', '-', normal ). +adj( 'stubby', 'stubbier', 'stubbiest', normal ). +adj( 'stuck-up', '-', '-', normal ). +adj( 'studied', '-', '-', normal ). +adj( 'studious', '-', '-', normal ). +adj( 'stuffy', 'stuffier', 'stuffiest', normal ). +adj( 'stumpy', 'stumpier', 'stumpiest', normal ). +adj( 'stunning', '-', '-', normal ). +adj( 'stupendous', '-', '-', normal ). +adj( 'stupid', '-', '-', normal ). +adj( 'stupifying', '-', '-', normal ). +adj( 'sturdy', 'sturdier', 'sturdiest', normal ). +adj( 'stylish', '-', '-', normal ). +adj( 'stylistic', '-', '-', normal ). +adj( 'styptic', '-', '-', normal ). +adj( 'suave', '-', '-', normal ). +adj( 'sub judice', '-', '-', normal ). +adj( 'subatomic', '-', '-', normal ). +adj( 'subconscious', '-', '-', normal ). +adj( 'subcutaneous', '-', '-', normal ). +adj( 'subfusc', '-', '-', normal ). +adj( 'subhuman', '-', '-', normal ). +adj( 'subject', '-', '-', normal ). +adj( 'subjective', '-', '-', normal ). +adj( 'subjunctive', '-', '-', normal ). +adj( 'sublimate', '-', '-', normal ). +adj( 'sublime', '-', '-', normal ). +adj( 'subliminal', '-', '-', normal ). +adj( 'submarine', '-', '-', normal ). +adj( 'submerged', '-', '-', normal ). +adj( 'submersible', '-', '-', normal ). +adj( 'submissive', '-', '-', normal ). +adj( 'subnormal', '-', '-', normal ). +adj( 'suborbital', '-', '-', normal ). +adj( 'subordinate', '-', '-', normal ). +adj( 'subordinative', '-', '-', normal ). +adj( 'subsequent', '-', '-', normal ). +adj( 'subservient', '-', '-', normal ). +adj( 'subsidiary', '-', '-', normal ). +adj( 'subsonic', '-', '-', normal ). +adj( 'substandard', '-', '-', normal ). +adj( 'substantial', '-', '-', normal ). +adj( 'substantival', '-', '-', normal ). +adj( 'substantive', '-', '-', normal ). +adj( 'subterranean', '-', '-', normal ). +adj( 'subtle', 'subtler', 'subtlest', normal ). +adj( 'subtropical', '-', '-', normal ). +adj( 'suburban', '-', '-', normal ). +adj( 'subversive', '-', '-', normal ). +adj( 'successful', '-', '-', normal ). +adj( 'successive', '-', '-', normal ). +adj( 'succinct', '-', '-', normal ). +adj( 'succulent', '-', '-', normal ). +adj( 'such', '-', '-', normal ). +adj( 'suchlike', '-', '-', normal ). +adj( 'sudden', '-', '-', normal ). +adj( 'suety', '-', '-', normal ). +adj( 'sufferable', '-', '-', normal ). +adj( 'sufficient', '-', '-', normal ). +adj( 'sugar-coated', '-', '-', normal ). +adj( 'sugary', 'sugarier', 'sugariest', normal ). +adj( 'suggestible', '-', '-', normal ). +adj( 'suggestive', '-', '-', normal ). +adj( 'suicidal', '-', '-', normal ). +adj( 'suitable', '-', '-', normal ). +adj( 'sulky', 'sulkier', 'sulkiest', normal ). +adj( 'sullen', '-', '-', normal ). +adj( 'sulphuretted', '-', '-', normal ). +adj( 'sulphuric', '-', '-', normal ). +adj( 'sulphurous', '-', '-', normal ). +adj( 'sultry', 'sultrier', 'sultriest', normal ). +adj( 'summary', '-', '-', normal ). +adj( 'summery', 'summerier', 'summeriest', normal ). +adj( 'sumptuary', '-', '-', normal ). +adj( 'sumptuous', '-', '-', normal ). +adj( 'sun-drenched', '-', '-', normal ). +adj( 'sun-dried', '-', '-', normal ). +adj( 'sunbaked', '-', '-', normal ). +adj( 'sunburned', '-', '-', normal ). +adj( 'sunburnt', '-', '-', normal ). +adj( 'sundry', '-', '-', normal ). +adj( 'sunless', '-', '-', normal ). +adj( 'sunlit', '-', '-', normal ). +adj( 'sunny', 'sunnier', 'sunniest', normal ). +adj( 'sunray', '-', '-', normal ). +adj( 'super', '-', '-', normal ). +adj( 'superabundant', '-', '-', normal ). +adj( 'superannuated', '-', '-', normal ). +adj( 'superb', '-', '-', normal ). +adj( 'supercharged', '-', '-', normal ). +adj( 'supercilious', '-', '-', normal ). +adj( 'superfatted', '-', '-', normal ). +adj( 'superficial', '-', '-', normal ). +adj( 'superfine', '-', '-', normal ). +adj( 'superfluous', '-', '-', normal ). +adj( 'superhuman', '-', '-', normal ). +adj( 'superior', '-', '-', normal ). +adj( 'superlative', '-', '-', normal ). +adj( 'supernal', '-', '-', normal ). +adj( 'supernatural', '-', '-', normal ). +adj( 'supernormal', '-', '-', normal ). +adj( 'supersonic', '-', '-', normal ). +adj( 'superstitious', '-', '-', normal ). +adj( 'supervisory', '-', '-', normal ). +adj( 'supine', '-', '-', normal ). +adj( 'supperless', '-', '-', normal ). +adj( 'supple', 'suppler', 'supplest', normal ). +adj( 'supplementary', '-', '-', normal ). +adj( 'suppliant', '-', '-', normal ). +adj( 'supportable', '-', '-', normal ). +adj( 'supposed', '-', '-', normal ). +adj( 'suppressive', '-', '-', normal ). +adj( 'supranational', '-', '-', normal ). +adj( 'supreme', '-', '-', normal ). +adj( 'sure', 'surer', 'surest', normal ). +adj( 'sure-footed', '-', '-', normal ). +adj( 'surface-to-air', '-', '-', normal ). +adj( 'surgical', '-', '-', normal ). +adj( 'surly', 'surlier', 'surliest', normal ). +adj( 'surmountable', '-', '-', normal ). +adj( 'surpassing', '-', '-', normal ). +adj( 'surpliced', '-', '-', normal ). +adj( 'surprised', '-', '-', normal ). +adj( 'surprising', '-', '-', normal ). +adj( 'surrealistic', '-', '-', normal ). +adj( 'surreptitious', '-', '-', normal ). +adj( 'surrogate', '-', '-', normal ). +adj( 'surrounding', '-', '-', normal ). +adj( 'susceptible', '-', '-', normal ). +adj( 'suspect', '-', '-', pred ). +adj( 'suspicious', '-', '-', normal ). +adj( 'svelte', '-', '-', normal ). +adj( 'swagger', '-', '-', normal ). +adj( 'swallow-tailed', '-', '-', normal ). +adj( 'swampy', 'swampier', 'swampiest', normal ). +adj( 'swanky', 'swankier', 'swankiest', normal ). +adj( 'swarthy', '-', '-', normal ). +adj( 'swashbuckling', '-', '-', normal ). +adj( 'sweaty', 'sweatier', 'sweatiest', normal ). +adj( 'sweeping', '-', '-', normal ). +adj( 'sweet', 'sweeter', 'sweetest', normal ). +adj( 'sweet-scented', '-', '-', normal ). +adj( 'sweetish', '-', '-', normal ). +adj( 'swell', '-', '-', normal ). +adj( 'sweptback', '-', '-', normal ). +adj( 'swift', 'swifter', 'swiftest', normal ). +adj( 'swingeing', '-', '-', normal ). +adj( 'swinging', '-', '-', normal ). +adj( 'swinish', '-', '-', normal ). +adj( 'swish', '-', '-', normal ). +adj( 'swollen-headed', '-', '-', normal ). +adj( 'sworn', '-', '-', normal ). +adj( 'sybaritic', '-', '-', normal ). +adj( 'sycophantic', '-', '-', normal ). +adj( 'syllabic', '-', '-', normal ). +adj( 'syllabled', '-', '-', affix ). +adj( 'syllogistic', '-', '-', normal ). +adj( 'sylph-like', '-', '-', normal ). +adj( 'sylvan', '-', '-', normal ). +adj( 'symbolic', '-', '-', normal ). +adj( 'symbolical', '-', '-', normal ). +adj( 'symmetric', '-', '-', normal ). +adj( 'symmetrical', '-', '-', normal ). +adj( 'sympathetic', '-', '-', normal ). +adj( 'symphonic', '-', '-', normal ). +adj( 'symptomatic', '-', '-', normal ). +adj( 'symptomless', '-', '-', normal ). +adj( 'synchronous', '-', '-', normal ). +adj( 'synonymous', '-', '-', normal ). +adj( 'synoptic', '-', '-', normal ). +adj( 'syntactic', '-', '-', normal ). +adj( 'synthetic', '-', '-', normal ). +adj( 'syphilitic', '-', '-', normal ). +adj( 'syrupy', '-', '-', normal ). +adj( 'systematic', '-', '-', normal ). +adj( 'tabby', '-', '-', attr ). +adj( 'table d\'h^ote', '-', '-', normal ). +adj( 'taboo', '-', '-', normal ). +adj( 'tabular', '-', '-', normal ). +adj( 'tacit', '-', '-', normal ). +adj( 'taciturn', '-', '-', normal ). +adj( 'tacky', 'tackier', 'tackiest', normal ). +adj( 'tactful', '-', '-', normal ). +adj( 'tactical', '-', '-', normal ). +adj( 'tactile', '-', '-', normal ). +adj( 'tactless', '-', '-', normal ). +adj( 'tactual', '-', '-', normal ). +adj( 'tailed', '-', '-', affix ). +adj( 'tailless', '-', '-', normal ). +adj( 'tailor-made', '-', '-', normal ). +adj( 'taintless', '-', '-', normal ). +adj( 'take-home', '-', '-', normal ). +adj( 'takeaway', '-', '-', attr ). +adj( 'taking', '-', '-', normal ). +adj( 'talented', '-', '-', normal ). +adj( 'talkative', '-', '-', normal ). +adj( 'tall', 'taller', 'tallest', normal ). +adj( 'tallish', '-', '-', normal ). +adj( 'tamable', '-', '-', normal ). +adj( 'tame', 'tamer', 'tamest', normal ). +adj( 'tan', '-', '-', normal ). +adj( 'tangerine', '-', '-', normal ). +adj( 'tangible', '-', '-', normal ). +adj( 'tangy', 'tangier', 'tangiest', normal ). +adj( 'tannic', '-', '-', normal ). +adj( 'tantamount', '-', '-', normal ). +adj( 'tapestried', '-', '-', normal ). +adj( 'tardy', 'tardier', 'tardiest', normal ). +adj( 'tarry', '-', '-', normal ). +adj( 'tarsal', '-', '-', normal ). +adj( 'tart', '-', '-', normal ). +adj( 'tartaric', '-', '-', normal ). +adj( 'tasseled', '-', '-', normal ). +adj( 'tasselled', '-', '-', normal ). +adj( 'tasteful', '-', '-', normal ). +adj( 'tasteless', '-', '-', normal ). +adj( 'tasty', 'tastier', 'tastiest', normal ). +adj( 'tattered', '-', '-', normal ). +adj( 'tatty', 'tattier', 'tattiest', normal ). +adj( 'taut', 'tauter', 'tautest', normal ). +adj( 'tautological', '-', '-', normal ). +adj( 'tawdry', 'tawdrier', 'tawdriest', normal ). +adj( 'tawny', '-', '-', normal ). +adj( 'tax-free', '-', '-', normal ). +adj( 'taxable', '-', '-', normal ). +adj( 'teachable', '-', '-', normal ). +adj( 'tearaway', '-', '-', normal ). +adj( 'tearful', '-', '-', normal ). +adj( 'tearing', '-', '-', attr ). +adj( 'tearless', '-', '-', normal ). +adj( 'technical', '-', '-', normal ). +adj( 'technological', '-', '-', normal ). +adj( 'techy', '-', '-', normal ). +adj( 'tedious', '-', '-', normal ). +adj( 'teenage', '-', '-', normal ). +adj( 'teeny', 'teenier', 'teeniest', normal ). +adj( 'teetotal', '-', '-', normal ). +adj( 'telegraphic', '-', '-', normal ). +adj( 'teleological', '-', '-', normal ). +adj( 'telepathic', '-', '-', normal ). +adj( 'telephonic', '-', '-', normal ). +adj( 'telescopic', '-', '-', normal ). +adj( 'telling', '-', '-', normal ). +adj( 'temperamental', '-', '-', normal ). +adj( 'temperate', '-', '-', normal ). +adj( 'tempered', '-', '-', affix ). +adj( 'tempest-swept', '-', '-', normal ). +adj( 'tempest-tossed', '-', '-', normal ). +adj( 'tempestuous', '-', '-', normal ). +adj( 'temporal', '-', '-', normal ). +adj( 'temporary', '-', '-', normal ). +adj( 'ten', '-', '-', normal ). +adj( 'tenable', '-', '-', normal ). +adj( 'tenacious', '-', '-', normal ). +adj( 'tendentious', '-', '-', normal ). +adj( 'tender', 'tenderer', 'tenderest', normal ). +adj( 'tenderhearted', '-', '-', normal ). +adj( 'tense', 'tenser', 'tensest', normal ). +adj( 'tensile', '-', '-', normal ). +adj( 'tentative', '-', '-', normal ). +adj( 'tenth', '-', '-', normal ). +adj( 'tenuous', '-', '-', normal ). +adj( 'tepid', '-', '-', normal ). +adj( 'terminable', '-', '-', normal ). +adj( 'terminal', '-', '-', normal ). +adj( 'terminological', '-', '-', normal ). +adj( 'terrestrial', '-', '-', normal ). +adj( 'terrible', '-', '-', normal ). +adj( 'terrific', '-', '-', normal ). +adj( 'territorial', '-', '-', normal ). +adj( 'terror-stricken', '-', '-', normal ). +adj( 'terror-struck', '-', '-', normal ). +adj( 'terse', 'terser', 'tersest', normal ). +adj( 'tertian', '-', '-', normal ). +adj( 'tertiary', '-', '-', normal ). +adj( 'tessellated', '-', '-', normal ). +adj( 'testamentary', '-', '-', normal ). +adj( 'testate', '-', '-', normal ). +adj( 'testy', 'testier', 'testiest', normal ). +adj( 'tetchy', 'tetchier', 'tetchiest', normal ). +adj( 'textile', '-', '-', attr ). +adj( 'textual', '-', '-', normal ). +adj( 'textured', '-', '-', normal ). +adj( 'thankful', '-', '-', normal ). +adj( 'thankless', '-', '-', normal ). +adj( 'that', '-', '-', normal ). +adj( 'theatrical', '-', '-', normal ). +adj( 'their', '-', '-', normal ). +adj( 'theistic', '-', '-', normal ). +adj( 'theistical', '-', '-', normal ). +adj( 'thematic', '-', '-', normal ). +adj( 'theocratic', '-', '-', normal ). +adj( 'theological', '-', '-', normal ). +adj( 'theoretic', '-', '-', normal ). +adj( 'theoretical', '-', '-', normal ). +adj( 'theosophical', '-', '-', normal ). +adj( 'therapeutic', '-', '-', normal ). +adj( 'therapeutical', '-', '-', normal ). +adj( 'thermal', '-', '-', normal ). +adj( 'thermionic', '-', '-', normal ). +adj( 'thermonuclear', '-', '-', normal ). +adj( 'thermoplastic', '-', '-', normal ). +adj( 'thermosetting', '-', '-', normal ). +adj( 'thermostatic', '-', '-', normal ). +adj( 'these', '-', '-', normal ). +adj( 'thick', 'thicker', 'thickest', normal ). +adj( 'thick-headed', '-', '-', normal ). +adj( 'thick-set', '-', '-', normal ). +adj( 'thick-skinned', '-', '-', normal ). +adj( 'thievish', '-', '-', normal ). +adj( 'thin', 'thinner', 'thinnest', normal ). +adj( 'thin-skinned', '-', '-', normal ). +adj( 'thine', '-', '-', normal ). +adj( 'thinkable', '-', '-', normal ). +adj( 'thinking', '-', '-', normal ). +adj( 'third', '-', '-', normal ). +adj( 'third-rate', '-', '-', normal ). +adj( 'thirsty', 'thirstier', 'thirstiest', normal ). +adj( 'thirteen', '-', '-', normal ). +adj( 'thirteenth', '-', '-', normal ). +adj( 'thirtieth', '-', '-', normal ). +adj( 'thirty', '-', '-', normal ). +adj( 'this', '-', '-', normal ). +adj( 'thorny', 'thornier', 'thorniest', normal ). +adj( 'thorough', '-', '-', normal ). +adj( 'thoroughbred', '-', '-', normal ). +adj( 'thoroughgoing', '-', '-', normal ). +adj( 'those', '-', '-', normal ). +adj( 'thoughtful', '-', '-', normal ). +adj( 'thoughtless', '-', '-', normal ). +adj( 'thousand', '-', '-', normal ). +adj( 'thousandfold', '-', '-', normal ). +adj( 'thousandth', '-', '-', normal ). +adj( 'threadbare', '-', '-', normal ). +adj( 'threadlike', '-', '-', normal ). +adj( 'three', '-', '-', normal ). +adj( 'three-d', '-', '-', normal ). +adj( 'three-cornered', '-', '-', normal ). +adj( 'three-dimensional', '-', '-', normal ). +adj( 'three-figure', '-', '-', normal ). +adj( 'three-funnelled', '-', '-', normal ). +adj( 'three-lane', '-', '-', normal ). +adj( 'three-legged', '-', '-', normal ). +adj( 'three-piece', '-', '-', normal ). +adj( 'three-ply', '-', '-', normal ). +adj( 'three-quarter', '-', '-', normal ). +adj( 'three-score', '-', '-', normal ). +adj( 'three-storey', '-', '-', normal ). +adj( 'three-storeyed', '-', '-', normal ). +adj( 'three-wheeled', '-', '-', normal ). +adj( 'threefold', '-', '-', normal ). +adj( 'threepenny', '-', '-', normal ). +adj( 'thriftless', '-', '-', normal ). +adj( 'thrifty', 'thriftier', 'thriftiest', normal ). +adj( 'throated', '-', '-', affix ). +adj( 'throaty', 'throatier', 'throatiest', normal ). +adj( 'throbbing', '-', '-', normal ). +adj( 'thumping', '-', '-', normal ). +adj( 'thunderous', '-', '-', normal ). +adj( 'thunderstruck', '-', '-', normal ). +adj( 'thundery', '-', '-', normal ). +adj( 'thy', '-', '-', normal ). +adj( 'ticklish', '-', '-', normal ). +adj( 'tidal', '-', '-', normal ). +adj( 'tiddley', '-', '-', normal ). +adj( 'tidy', 'tidier', 'tidiest', normal ). +adj( 'tie-on', '-', '-', attr ). +adj( 'tigerish', '-', '-', normal ). +adj( 'tight', 'tighter', 'tightest', normal ). +adj( 'tight-laced', '-', '-', normal ). +adj( 'tight-lipped', '-', '-', normal ). +adj( 'timbered', '-', '-', normal ). +adj( 'time-expired', '-', '-', normal ). +adj( 'time-honoured', '-', '-', normal ). +adj( 'timeless', '-', '-', normal ). +adj( 'timely', 'timelier', 'timeliest', normal ). +adj( 'timesaving', '-', '-', normal ). +adj( 'timeserving', '-', '-', normal ). +adj( 'timid', '-', '-', normal ). +adj( 'timorous', '-', '-', normal ). +adj( 'tined', '-', '-', affix ). +adj( 'tinny', 'tinnier', 'tinniest', normal ). +adj( 'tinselly', '-', '-', normal ). +adj( 'tiny', 'tinier', 'tiniest', normal ). +adj( 'tip-and-run', '-', '-', normal ). +adj( 'tip-top', '-', '-', normal ). +adj( 'tip-up', '-', '-', normal ). +adj( 'tipsy', '-', '-', normal ). +adj( 'tired', '-', '-', normal ). +adj( 'tireless', '-', '-', normal ). +adj( 'tiresome', '-', '-', normal ). +adj( 'titanic', '-', '-', normal ). +adj( 'titled', '-', '-', normal ). +adj( 'titular', '-', '-', normal ). +adj( 'toilsome', '-', '-', normal ). +adj( 'tolerable', '-', '-', normal ). +adj( 'tolerant', '-', '-', normal ). +adj( 'tonal', '-', '-', normal ). +adj( 'tone-deaf', '-', '-', normal ). +adj( 'toned', '-', '-', affix ). +adj( 'toneless', '-', '-', normal ). +adj( 'tongue-in-cheek', '-', '-', normal ). +adj( 'tongue-tied', '-', '-', normal ). +adj( 'tongued', '-', '-', affix ). +adj( 'tonic', '-', '-', normal ). +adj( 'tonsorial', '-', '-', normal ). +adj( 'toothed', '-', '-', affix ). +adj( 'toothless', '-', '-', normal ). +adj( 'toothsome', '-', '-', normal ). +adj( 'top-flight', '-', '-', attr ). +adj( 'top-heavy', '-', '-', normal ). +adj( 'top-hole', '-', '-', normal ). +adj( 'top-ranking', '-', '-', normal ). +adj( 'topgallant', '-', '-', normal ). +adj( 'topical', '-', '-', normal ). +adj( 'topless', '-', '-', normal ). +adj( 'topmost', '-', '-', normal ). +adj( 'topnotch', '-', '-', attr ). +adj( 'topographical', '-', '-', normal ). +adj( 'topping', '-', '-', normal ). +adj( 'topsy-turvy', '-', '-', normal ). +adj( 'torpid', '-', '-', normal ). +adj( 'torrential', '-', '-', normal ). +adj( 'torrid', '-', '-', normal ). +adj( 'tortuous', '-', '-', normal ). +adj( 'total', '-', '-', normal ). +adj( 'totalitarian', '-', '-', normal ). +adj( 'tottery', '-', '-', normal ). +adj( 'touch-and-go', '-', '-', normal ). +adj( 'touchable', '-', '-', normal ). +adj( 'touched', '-', '-', normal ). +adj( 'touching', '-', '-', normal ). +adj( 'touchy', 'touchier', 'touchiest', normal ). +adj( 'tough', 'tougher', 'toughest', normal ). +adj( 'touring', '-', '-', normal ). +adj( 'towering', '-', '-', normal ). +adj( 'toxic', '-', '-', normal ). +adj( 'traceable', '-', '-', normal ). +adj( 'tracked', '-', '-', normal ). +adj( 'trackless', '-', '-', normal ). +adj( 'tractable', '-', '-', normal ). +adj( 'traditional', '-', '-', normal ). +adj( 'tragic', '-', '-', normal ). +adj( 'tragicomic', '-', '-', normal ). +adj( 'traitorous', '-', '-', normal ). +adj( 'tranquil', '-', '-', normal ). +adj( 'transalpine', '-', '-', normal ). +adj( 'transatlantic', '-', '-', normal ). +adj( 'transcendent', '-', '-', normal ). +adj( 'transcendental', '-', '-', normal ). +adj( 'transcontinental', '-', '-', normal ). +adj( 'transferable', '-', '-', normal ). +adj( 'transformable', '-', '-', normal ). +adj( 'transient', '-', '-', normal ). +adj( 'transistorized', '-', '-', normal ). +adj( 'transitional', '-', '-', normal ). +adj( 'transitive', '-', '-', normal ). +adj( 'transitory', '-', '-', normal ). +adj( 'translatable', '-', '-', normal ). +adj( 'translucent', '-', '-', normal ). +adj( 'transmutable', '-', '-', normal ). +adj( 'transoceanic', '-', '-', normal ). +adj( 'transparent', '-', '-', normal ). +adj( 'transpolar', '-', '-', normal ). +adj( 'transportable', '-', '-', normal ). +adj( 'transverse', '-', '-', normal ). +adj( 'trashy', 'trashier', 'trashiest', normal ). +adj( 'traumatic', '-', '-', normal ). +adj( 'travel-soiled', '-', '-', normal ). +adj( 'travel-stained', '-', '-', normal ). +adj( 'travel-worn', '-', '-', normal ). +adj( 'traveled', '-', '-', normal ). +adj( 'travelled', '-', '-', normal ). +adj( 'treacherous', '-', '-', normal ). +adj( 'treacly', '-', '-', normal ). +adj( 'treasonable', '-', '-', normal ). +adj( 'treasonous', '-', '-', normal ). +adj( 'treble', '-', '-', normal ). +adj( 'treeless', '-', '-', normal ). +adj( 'tremendous', '-', '-', normal ). +adj( 'tremulous', '-', '-', normal ). +adj( 'trenchant', '-', '-', normal ). +adj( 'trendy', 'trendier', 'trendiest', normal ). +adj( 'triangular', '-', '-', normal ). +adj( 'tribal', '-', '-', normal ). +adj( 'tributary', '-', '-', normal ). +adj( 'tricksy', '-', '-', normal ). +adj( 'tricky', 'trickier', 'trickiest', normal ). +adj( 'tried', '-', '-', normal ). +adj( 'triennial', '-', '-', normal ). +adj( 'trifling', '-', '-', normal ). +adj( 'trigger-happy', '-', '-', normal ). +adj( 'trilateral', '-', '-', normal ). +adj( 'trillion', '-', '-', normal ). +adj( 'trillionth', '-', '-', normal ). +adj( 'trim', 'trimmer', 'trimmest', normal ). +adj( 'tripartite', '-', '-', normal ). +adj( 'triple', '-', '-', normal ). +adj( 'triplex', '-', '-', normal ). +adj( 'triplicate', '-', '-', normal ). +adj( 'tripping', '-', '-', normal ). +adj( 'trite', '-', '-', normal ). +adj( 'triumphal', '-', '-', normal ). +adj( 'triumphant', '-', '-', normal ). +adj( 'triune', '-', '-', normal ). +adj( 'trivial', '-', '-', normal ). +adj( 'trochaic', '-', '-', normal ). +adj( 'tropical', '-', '-', normal ). +adj( 'troublesome', '-', '-', normal ). +adj( 'troublous', '-', '-', normal ). +adj( 'truculent', '-', '-', normal ). +adj( 'true', 'truer', 'truest', normal ). +adj( 'true-blue', '-', '-', normal ). +adj( 'true-hearted', '-', '-', normal ). +adj( 'trumpery', '-', '-', normal ). +adj( 'trustful', '-', '-', normal ). +adj( 'trusting', '-', '-', normal ). +adj( 'trustworthy', '-', '-', normal ). +adj( 'trusty', 'trustier', 'trustiest', normal ). +adj( 'truthful', '-', '-', normal ). +adj( 'trying', '-', '-', normal ). +adj( 'tubby', 'tubbier', 'tubbiest', normal ). +adj( 'tubeless', '-', '-', normal ). +adj( 'tubercular', '-', '-', normal ). +adj( 'tuberculous', '-', '-', normal ). +adj( 'tubular', '-', '-', normal ). +adj( 'tufted', '-', '-', normal ). +adj( 'tumble-down', '-', '-', attr ). +adj( 'tumescent', '-', '-', normal ). +adj( 'tumid', '-', '-', normal ). +adj( 'tumultuous', '-', '-', normal ). +adj( 'tuneful', '-', '-', normal ). +adj( 'tuppenny', '-', '-', normal ). +adj( 'turbaned', '-', '-', normal ). +adj( 'turbid', '-', '-', normal ). +adj( 'turbulent', '-', '-', normal ). +adj( 'turgid', '-', '-', normal ). +adj( 'turtleneck', '-', '-', normal ). +adj( 'turtlenecked', '-', '-', normal ). +adj( 'tutelary', '-', '-', normal ). +adj( 'tutorial', '-', '-', normal ). +adj( 'twee', '-', '-', normal ). +adj( 'twelfth', '-', '-', normal ). +adj( 'twelve', '-', '-', normal ). +adj( 'twentieth', '-', '-', normal ). +adj( 'twenty', '-', '-', normal ). +adj( 'twiddly', '-', '-', normal ). +adj( 'twiggy', 'twiggier', 'twiggiest', normal ). +adj( 'twilit', '-', '-', normal ). +adj( 'twilled', '-', '-', normal ). +adj( 'twinned', '-', '-', attr ). +adj( 'twisty', 'twistier', 'twistiest', normal ). +adj( 'two', '-', '-', normal ). +adj( 'two-a-penny', '-', '-', normal ). +adj( 'two-edged', '-', '-', normal ). +adj( 'two-faced', '-', '-', normal ). +adj( 'two-funnelled', '-', '-', normal ). +adj( 'two-handed', '-', '-', normal ). +adj( 'two-ply', '-', '-', normal ). +adj( 'two-timing', '-', '-', normal ). +adj( 'two-way', '-', '-', attr ). +adj( 'twofold', '-', '-', normal ). +adj( 'twopenny', '-', '-', normal ). +adj( 'twopenny-halfpenny', '-', '-', normal ). +adj( 'typewritten', '-', '-', normal ). +adj( 'typical', '-', '-', normal ). +adj( 'typographic', '-', '-', normal ). +adj( 'tyrannical', '-', '-', normal ). +adj( 'tyrannous', '-', '-', normal ). +adj( 'ubiquitous', '-', '-', normal ). +adj( 'ugly', 'uglier', 'ugliest', normal ). +adj( 'ulcerous', '-', '-', normal ). +adj( 'ulterior', '-', '-', normal ). +adj( 'ultimate', '-', '-', normal ). +adj( 'ultimo', '-', '-', normal ). +adj( 'ultra vires', '-', '-', normal ). +adj( 'ultramarine', '-', '-', normal ). +adj( 'ultramontane', '-', '-', normal ). +adj( 'ultrasonic', '-', '-', normal ). +adj( 'ultraviolet', '-', '-', normal ). +adj( 'umber', '-', '-', normal ). +adj( 'umbilical', '-', '-', normal ). +adj( 'umpteen', '-', '-', normal ). +adj( 'umpteenth', '-', '-', normal ). +adj( 'un-come-at-able', '-', '-', normal ). +adj( 'un-get-at-able', '-', '-', normal ). +adj( 'unabashed', '-', '-', normal ). +adj( 'unabated', '-', '-', normal ). +adj( 'unable', '-', '-', pred ). +adj( 'unabridged', '-', '-', normal ). +adj( 'unacceptable', '-', '-', normal ). +adj( 'unaccommodating', '-', '-', normal ). +adj( 'unaccompanied', '-', '-', normal ). +adj( 'unaccountable', '-', '-', normal ). +adj( 'unaccounted', '-', '-', normal ). +adj( 'unaccustomed', '-', '-', normal ). +adj( 'unacknowledged', '-', '-', normal ). +adj( 'unacquainted', '-', '-', normal ). +adj( 'unadorned', '-', '-', normal ). +adj( 'unadulterated', '-', '-', normal ). +adj( 'unadventurous', '-', '-', normal ). +adj( 'unadvised', '-', '-', normal ). +adj( 'unaffected', '-', '-', normal ). +adj( 'unafraid', '-', '-', pred ). +adj( 'unaided', '-', '-', normal ). +adj( 'unalienable', '-', '-', normal ). +adj( 'unaligned', '-', '-', normal ). +adj( 'unalloyed', '-', '-', normal ). +adj( 'unalterable', '-', '-', normal ). +adj( 'unaltered', '-', '-', normal ). +adj( 'unambiguous', '-', '-', normal ). +adj( 'unamended', '-', '-', normal ). +adj( 'unanimous', '-', '-', normal ). +adj( 'unannounced', '-', '-', normal ). +adj( 'unanswerable', '-', '-', normal ). +adj( 'unanswered', '-', '-', normal ). +adj( 'unanticipated', '-', '-', normal ). +adj( 'unappealing', '-', '-', normal ). +adj( 'unappetizing', '-', '-', normal ). +adj( 'unappreciated', '-', '-', normal ). +adj( 'unappreciative', '-', '-', normal ). +adj( 'unapproachable', '-', '-', normal ). +adj( 'unarguable', '-', '-', normal ). +adj( 'unarmed', '-', '-', normal ). +adj( 'unarticulated', '-', '-', normal ). +adj( 'unashamed', '-', '-', pred ). +adj( 'unasked', '-', '-', normal ). +adj( 'unassailable', '-', '-', normal ). +adj( 'unassisted', '-', '-', normal ). +adj( 'unassuming', '-', '-', normal ). +adj( 'unattached', '-', '-', normal ). +adj( 'unattainable', '-', '-', normal ). +adj( 'unattended', '-', '-', normal ). +adj( 'unattractive', '-', '-', normal ). +adj( 'unauthorized', '-', '-', normal ). +adj( 'unavailable', '-', '-', normal ). +adj( 'unavailing', '-', '-', normal ). +adj( 'unavoidable', '-', '-', normal ). +adj( 'unawakened', '-', '-', normal ). +adj( 'unaware', '-', '-', pred ). +adj( 'unbacked', '-', '-', normal ). +adj( 'unbalanced', '-', '-', normal ). +adj( 'unbalanced', '-', '-', normal ). +adj( 'unbearable', '-', '-', normal ). +adj( 'unbeatable', '-', '-', normal ). +adj( 'unbeaten', '-', '-', normal ). +adj( 'unbecoming', '-', '-', normal ). +adj( 'unbeknown', '-', '-', normal ). +adj( 'unbeknownst', '-', '-', normal ). +adj( 'unbelievable', '-', '-', normal ). +adj( 'unbelieving', '-', '-', normal ). +adj( 'unbeloved', '-', '-', normal ). +adj( 'unbending', '-', '-', normal ). +adj( 'unbiased', '-', '-', normal ). +adj( 'unbiassed', '-', '-', normal ). +adj( 'unbidden', '-', '-', normal ). +adj( 'unblushing', '-', '-', normal ). +adj( 'unborn', '-', '-', normal ). +adj( 'unbounded', '-', '-', normal ). +adj( 'unbowed', '-', '-', normal ). +adj( 'unbreakable', '-', '-', normal ). +adj( 'unbridled', '-', '-', normal ). +adj( 'unbroken', '-', '-', normal ). +adj( 'unburied', '-', '-', normal ). +adj( 'unbuttoned', '-', '-', normal ). +adj( 'unbuttoned', '-', '-', normal ). +adj( 'uncalled-for', '-', '-', normal ). +adj( 'uncanny', '-', '-', normal ). +adj( 'uncared-for', '-', '-', normal ). +adj( 'uncarpeted', '-', '-', normal ). +adj( 'unceasing', '-', '-', normal ). +adj( 'uncensored', '-', '-', normal ). +adj( 'unceremonious', '-', '-', normal ). +adj( 'uncertain', '-', '-', normal ). +adj( 'unchallengeable', '-', '-', normal ). +adj( 'unchallenged', '-', '-', normal ). +adj( 'unchanged', '-', '-', normal ). +adj( 'unchanging', '-', '-', normal ). +adj( 'uncharacteristic', '-', '-', normal ). +adj( 'uncharitable', '-', '-', normal ). +adj( 'uncharted', '-', '-', normal ). +adj( 'unchecked', '-', '-', normal ). +adj( 'unchristian', '-', '-', normal ). +adj( 'uncivil', '-', '-', normal ). +adj( 'uncivilized', '-', '-', normal ). +adj( 'unclaimed', '-', '-', normal ). +adj( 'unclassified', '-', '-', normal ). +adj( 'unclean', '-', '-', normal ). +adj( 'unclear', '-', '-', normal ). +adj( 'unclouded', '-', '-', normal ). +adj( 'uncluttered', '-', '-', normal ). +adj( 'unco', '-', '-', normal ). +adj( 'unco-operative', '-', '-', normal ). +adj( 'unco-ordinated', '-', '-', normal ). +adj( 'uncoloured', '-', '-', normal ). +adj( 'uncomfortable', '-', '-', normal ). +adj( 'uncommercialized', '-', '-', normal ). +adj( 'uncommitted', '-', '-', normal ). +adj( 'uncommon', '-', '-', normal ). +adj( 'uncommunicative', '-', '-', normal ). +adj( 'uncompetitive', '-', '-', normal ). +adj( 'uncomplaining', '-', '-', normal ). +adj( 'uncompleted', '-', '-', normal ). +adj( 'uncomplicated', '-', '-', normal ). +adj( 'uncomplimentary', '-', '-', normal ). +adj( 'uncomprehending', '-', '-', normal ). +adj( 'uncompromising', '-', '-', normal ). +adj( 'unconcealed', '-', '-', normal ). +adj( 'unconcerned', '-', '-', normal ). +adj( 'unconditional', '-', '-', normal ). +adj( 'unconditioned', '-', '-', normal ). +adj( 'unconfined', '-', '-', normal ). +adj( 'unconfirmed', '-', '-', normal ). +adj( 'unconformable', '-', '-', normal ). +adj( 'uncongenial', '-', '-', normal ). +adj( 'unconnected', '-', '-', normal ). +adj( 'unconquered', '-', '-', normal ). +adj( 'unconscionable', '-', '-', normal ). +adj( 'unconscious', '-', '-', normal ). +adj( 'unconsidered', '-', '-', normal ). +adj( 'unconstitutional', '-', '-', normal ). +adj( 'unconstrained', '-', '-', normal ). +adj( 'unconstructive', '-', '-', normal ). +adj( 'unconsummated', '-', '-', normal ). +adj( 'uncontaminated', '-', '-', normal ). +adj( 'uncontrollable', '-', '-', normal ). +adj( 'uncontrolled', '-', '-', normal ). +adj( 'uncontroversial', '-', '-', normal ). +adj( 'unconventional', '-', '-', normal ). +adj( 'unconverted', '-', '-', normal ). +adj( 'unconvinced', '-', '-', normal ). +adj( 'unconvincing', '-', '-', normal ). +adj( 'uncooked', '-', '-', normal ). +adj( 'uncorrected', '-', '-', normal ). +adj( 'uncorrelated', '-', '-', normal ). +adj( 'uncorroborated', '-', '-', normal ). +adj( 'uncouth', '-', '-', normal ). +adj( 'uncritical', '-', '-', normal ). +adj( 'uncrossed', '-', '-', normal ). +adj( 'uncrossed', '-', '-', normal ). +adj( 'uncrowned', '-', '-', normal ). +adj( 'unctuous', '-', '-', normal ). +adj( 'uncultivated', '-', '-', normal ). +adj( 'uncultured', '-', '-', normal ). +adj( 'uncut', '-', '-', normal ). +adj( 'undamaged', '-', '-', normal ). +adj( 'undated', '-', '-', normal ). +adj( 'undaunted', '-', '-', normal ). +adj( 'undecided', '-', '-', normal ). +adj( 'undeclared', '-', '-', normal ). +adj( 'undefeated', '-', '-', normal ). +adj( 'undefended', '-', '-', normal ). +adj( 'undeferential', '-', '-', normal ). +adj( 'undefinable', '-', '-', normal ). +adj( 'undefined', '-', '-', normal ). +adj( 'undemanding', '-', '-', normal ). +adj( 'undemocratic', '-', '-', normal ). +adj( 'undemonstrative', '-', '-', normal ). +adj( 'undeniable', '-', '-', normal ). +adj( 'undenominational', '-', '-', normal ). +adj( 'under-the-counter', '-', '-', normal ). +adj( 'underarm', '-', '-', normal ). +adj( 'underbred', '-', '-', normal ). +adj( 'undercover', '-', '-', normal ). +adj( 'underdeveloped', '-', '-', normal ). +adj( 'underdone', '-', '-', normal ). +adj( 'underemployed', '-', '-', normal ). +adj( 'underfed', '-', '-', normal ). +adj( 'underfloor', '-', '-', normal ). +adj( 'underground', '-', '-', attr ). +adj( 'underhand', '-', '-', normal ). +adj( 'underhanded', '-', '-', normal ). +adj( 'underhung', '-', '-', normal ). +adj( 'undermanned', '-', '-', normal ). +adj( 'undermentioned', '-', '-', normal ). +adj( 'undernourished', '-', '-', normal ). +adj( 'underpopulated', '-', '-', normal ). +adj( 'underprivileged', '-', '-', normal ). +adj( 'undersea', '-', '-', normal ). +adj( 'undersealed', '-', '-', normal ). +adj( 'undersexed', '-', '-', normal ). +adj( 'undersized', '-', '-', normal ). +adj( 'underslung', '-', '-', normal ). +adj( 'underspent', '-', '-', normal ). +adj( 'understaffed', '-', '-', normal ). +adj( 'understandable', '-', '-', normal ). +adj( 'understanding', '-', '-', normal ). +adj( 'underwater', '-', '-', normal ). +adj( 'underweight', '-', '-', normal ). +adj( 'undeserved', '-', '-', normal ). +adj( 'undeserving', '-', '-', normal ). +adj( 'undesigned', '-', '-', normal ). +adj( 'undesirable', '-', '-', normal ). +adj( 'undetected', '-', '-', normal ). +adj( 'undetermined', '-', '-', normal ). +adj( 'undeterred', '-', '-', normal ). +adj( 'undeveloped', '-', '-', normal ). +adj( 'undiagnosed', '-', '-', normal ). +adj( 'undifferentiated', '-', '-', normal ). +adj( 'undigested', '-', '-', normal ). +adj( 'undignified', '-', '-', normal ). +adj( 'undiluted', '-', '-', normal ). +adj( 'undiminished', '-', '-', normal ). +adj( 'undimmed', '-', '-', normal ). +adj( 'undiplomatic', '-', '-', normal ). +adj( 'undischarged', '-', '-', normal ). +adj( 'undisciplined', '-', '-', normal ). +adj( 'undisclosed', '-', '-', normal ). +adj( 'undiscovered', '-', '-', normal ). +adj( 'undiscriminating', '-', '-', normal ). +adj( 'undisguised', '-', '-', normal ). +adj( 'undismayed', '-', '-', normal ). +adj( 'undisputed', '-', '-', normal ). +adj( 'undissolved', '-', '-', normal ). +adj( 'undistinguishable', '-', '-', normal ). +adj( 'undistinguished', '-', '-', normal ). +adj( 'undistributed', '-', '-', normal ). +adj( 'undisturbed', '-', '-', normal ). +adj( 'undivided', '-', '-', normal ). +adj( 'undocumented', '-', '-', normal ). +adj( 'undogmatic', '-', '-', normal ). +adj( 'undomesticated', '-', '-', normal ). +adj( 'undone', '-', '-', pred ). +adj( 'undoubted', '-', '-', normal ). +adj( 'undramatic', '-', '-', normal ). +adj( 'undreamed', '-', '-', normal ). +adj( 'undreamed-of', '-', '-', normal ). +adj( 'undreamt', '-', '-', normal ). +adj( 'undrinkable', '-', '-', normal ). +adj( 'undue', '-', '-', normal ). +adj( 'undying', '-', '-', normal ). +adj( 'unearned', '-', '-', normal ). +adj( 'unearthly', '-', '-', normal ). +adj( 'uneasy', '-', '-', normal ). +adj( 'uneatable', '-', '-', normal ). +adj( 'uneaten', '-', '-', normal ). +adj( 'uneconomic', '-', '-', normal ). +adj( 'uneconomical', '-', '-', normal ). +adj( 'unedifying', '-', '-', normal ). +adj( 'unedited', '-', '-', normal ). +adj( 'uneducated', '-', '-', normal ). +adj( 'uneffective', '-', '-', normal ). +adj( 'unelaborated', '-', '-', normal ). +adj( 'unemotional', '-', '-', normal ). +adj( 'unemployable', '-', '-', normal ). +adj( 'unemployed', '-', '-', normal ). +adj( 'unending', '-', '-', normal ). +adj( 'unendurable', '-', '-', normal ). +adj( 'unenlightened', '-', '-', normal ). +adj( 'unenterprising', '-', '-', normal ). +adj( 'unenthusiastic', '-', '-', normal ). +adj( 'unenviable', '-', '-', normal ). +adj( 'unequal', '-', '-', normal ). +adj( 'unequalled', '-', '-', normal ). +adj( 'unequipped', '-', '-', normal ). +adj( 'unequivocal', '-', '-', normal ). +adj( 'unerring', '-', '-', normal ). +adj( 'unethical', '-', '-', normal ). +adj( 'uneven', '-', '-', normal ). +adj( 'uneventful', '-', '-', normal ). +adj( 'unexampled', '-', '-', normal ). +adj( 'unexceeded', '-', '-', normal ). +adj( 'unexceptionable', '-', '-', normal ). +adj( 'unexceptional', '-', '-', normal ). +adj( 'unexciting', '-', '-', normal ). +adj( 'unexpected', '-', '-', normal ). +adj( 'unexpired', '-', '-', normal ). +adj( 'unexplained', '-', '-', normal ). +adj( 'unexplored', '-', '-', normal ). +adj( 'unexposed', '-', '-', normal ). +adj( 'unexpressed', '-', '-', normal ). +adj( 'unexpurgated', '-', '-', normal ). +adj( 'unfailing', '-', '-', normal ). +adj( 'unfair', '-', '-', normal ). +adj( 'unfaithful', '-', '-', normal ). +adj( 'unfaltering', '-', '-', normal ). +adj( 'unfamiliar', '-', '-', normal ). +adj( 'unfashionable', '-', '-', normal ). +adj( 'unfathomable', '-', '-', normal ). +adj( 'unfathomed', '-', '-', normal ). +adj( 'unfavourable', '-', '-', normal ). +adj( 'unfed', '-', '-', normal ). +adj( 'unfeeling', '-', '-', normal ). +adj( 'unfeigned', '-', '-', normal ). +adj( 'unfermented', '-', '-', normal ). +adj( 'unfertilized', '-', '-', normal ). +adj( 'unfettered', '-', '-', normal ). +adj( 'unfinished', '-', '-', normal ). +adj( 'unfit', '-', '-', normal ). +adj( 'unflagging', '-', '-', normal ). +adj( 'unflappable', '-', '-', normal ). +adj( 'unfledged', '-', '-', normal ). +adj( 'unflinching', '-', '-', normal ). +adj( 'unflurried', '-', '-', normal ). +adj( 'unforeseeable', '-', '-', normal ). +adj( 'unforeseen', '-', '-', normal ). +adj( 'unforgettable', '-', '-', normal ). +adj( 'unforgivable', '-', '-', normal ). +adj( 'unforgiving', '-', '-', normal ). +adj( 'unformed', '-', '-', normal ). +adj( 'unforthcoming', '-', '-', normal ). +adj( 'unfortunate', '-', '-', normal ). +adj( 'unfounded', '-', '-', normal ). +adj( 'unframed', '-', '-', normal ). +adj( 'unfrequented', '-', '-', normal ). +adj( 'unfriendly', '-', '-', normal ). +adj( 'unfruitful', '-', '-', normal ). +adj( 'unfulfilled', '-', '-', normal ). +adj( 'unfurnished', '-', '-', normal ). +adj( 'ungainly', '-', '-', normal ). +adj( 'ungenerous', '-', '-', normal ). +adj( 'ungentle', '-', '-', normal ). +adj( 'ungentlemanly', '-', '-', normal ). +adj( 'unglazed', '-', '-', normal ). +adj( 'ungodly', '-', '-', normal ). +adj( 'ungovernable', '-', '-', normal ). +adj( 'ungraceful', '-', '-', normal ). +adj( 'ungracious', '-', '-', normal ). +adj( 'ungrammatical', '-', '-', normal ). +adj( 'ungrateful', '-', '-', normal ). +adj( 'ungrudging', '-', '-', normal ). +adj( 'unguarded', '-', '-', normal ). +adj( 'unhallowed', '-', '-', normal ). +adj( 'unhampered', '-', '-', normal ). +adj( 'unhappy', 'unhappier', 'unhappiest', normal ). +adj( 'unharmed', '-', '-', normal ). +adj( 'unhealed', '-', '-', normal ). +adj( 'unhealthy', '-', '-', normal ). +adj( 'unheard', '-', '-', normal ). +adj( 'unheard-of', '-', '-', normal ). +adj( 'unhearing', '-', '-', normal ). +adj( 'unheated', '-', '-', normal ). +adj( 'unheeded', '-', '-', normal ). +adj( 'unhelpful', '-', '-', normal ). +adj( 'unheralded', '-', '-', normal ). +adj( 'unhesitating', '-', '-', normal ). +adj( 'unhindered', '-', '-', normal ). +adj( 'unholy', '-', '-', normal ). +adj( 'unhoped-for', '-', '-', normal ). +adj( 'unhurried', '-', '-', normal ). +adj( 'unhurt', '-', '-', normal ). +adj( 'unhygienic', '-', '-', normal ). +adj( 'unidentifiable', '-', '-', normal ). +adj( 'unidentified', '-', '-', normal ). +adj( 'uniform', '-', '-', normal ). +adj( 'uniformed', '-', '-', normal ). +adj( 'unilateral', '-', '-', normal ). +adj( 'unilateralist', '-', '-', normal ). +adj( 'unimaginable', '-', '-', normal ). +adj( 'unimaginative', '-', '-', normal ). +adj( 'unimpaired', '-', '-', normal ). +adj( 'unimpeachable', '-', '-', normal ). +adj( 'unimpeded', '-', '-', normal ). +adj( 'unimportant', '-', '-', normal ). +adj( 'unimpressed', '-', '-', normal ). +adj( 'unimpressive', '-', '-', normal ). +adj( 'uninfluenced', '-', '-', normal ). +adj( 'uninformative', '-', '-', normal ). +adj( 'uninformed', '-', '-', normal ). +adj( 'uninhabitable', '-', '-', normal ). +adj( 'uninhabited', '-', '-', normal ). +adj( 'uninhibited', '-', '-', normal ). +adj( 'uninitiated', '-', '-', normal ). +adj( 'uninjured', '-', '-', normal ). +adj( 'uninspired', '-', '-', normal ). +adj( 'uninspiring', '-', '-', normal ). +adj( 'uninsured', '-', '-', normal ). +adj( 'unintelligent', '-', '-', normal ). +adj( 'unintelligible', '-', '-', normal ). +adj( 'unintended', '-', '-', normal ). +adj( 'unintentional', '-', '-', normal ). +adj( 'uninterested', '-', '-', normal ). +adj( 'uninteresting', '-', '-', normal ). +adj( 'uninterrupted', '-', '-', normal ). +adj( 'uninvited', '-', '-', normal ). +adj( 'uninviting', '-', '-', normal ). +adj( 'unique', '-', '-', normal ). +adj( 'unisex', '-', '-', normal ). +adj( 'unitary', '-', '-', normal ). +adj( 'united', '-', '-', normal ). +adj( 'universal', '-', '-', normal ). +adj( 'unjust', '-', '-', normal ). +adj( 'unjustifiable', '-', '-', normal ). +adj( 'unjustified', '-', '-', normal ). +adj( 'unkempt', '-', '-', normal ). +adj( 'unkind', '-', '-', normal ). +adj( 'unkissed', '-', '-', normal ). +adj( 'unknowable', '-', '-', normal ). +adj( 'unknowing', '-', '-', normal ). +adj( 'unknown', '-', '-', normal ). +adj( 'unlabelled', '-', '-', normal ). +adj( 'unladylike', '-', '-', normal ). +adj( 'unlamented', '-', '-', normal ). +adj( 'unlatched', '-', '-', normal ). +adj( 'unlawful', '-', '-', normal ). +adj( 'unleavened', '-', '-', normal ). +adj( 'unlettered', '-', '-', normal ). +adj( 'unlicensed', '-', '-', normal ). +adj( 'unlighted', '-', '-', normal ). +adj( 'unlikable', '-', '-', normal ). +adj( 'unlike', '-', '-', pred ). +adj( 'unlikely', '-', '-', normal ). +adj( 'unlimited', '-', '-', normal ). +adj( 'unlined', '-', '-', normal ). +adj( 'unlisted', '-', '-', normal ). +adj( 'unlit', '-', '-', normal ). +adj( 'unliterary', '-', '-', normal ). +adj( 'unlocated', '-', '-', normal ). +adj( 'unlooked-for', '-', '-', normal ). +adj( 'unlovable', '-', '-', normal ). +adj( 'unloved', '-', '-', normal ). +adj( 'unlovely', '-', '-', normal ). +adj( 'unlucky', '-', '-', normal ). +adj( 'unmade', '-', '-', normal ). +adj( 'unmanageable', '-', '-', normal ). +adj( 'unmanly', '-', '-', normal ). +adj( 'unmanned', '-', '-', normal ). +adj( 'unmannered', '-', '-', normal ). +adj( 'unmannerly', '-', '-', normal ). +adj( 'unmarked', '-', '-', normal ). +adj( 'unmarried', '-', '-', normal ). +adj( 'unmatchable', '-', '-', normal ). +adj( 'unmatched', '-', '-', normal ). +adj( 'unmechanized', '-', '-', normal ). +adj( 'unmemorable', '-', '-', normal ). +adj( 'unmentionable', '-', '-', normal ). +adj( 'unmerciful', '-', '-', normal ). +adj( 'unmerited', '-', '-', normal ). +adj( 'unmindful', '-', '-', normal ). +adj( 'unmingled', '-', '-', normal ). +adj( 'unmistakable', '-', '-', normal ). +adj( 'unmitigated', '-', '-', normal ). +adj( 'unmixed', '-', '-', normal ). +adj( 'unmodernized', '-', '-', normal ). +adj( 'unmodified', '-', '-', normal ). +adj( 'unmolested', '-', '-', normal ). +adj( 'unmourned', '-', '-', normal ). +adj( 'unmovable', '-', '-', normal ). +adj( 'unmoved', '-', '-', normal ). +adj( 'unmoving', '-', '-', normal ). +adj( 'unmusical', '-', '-', normal ). +adj( 'unnamed', '-', '-', normal ). +adj( 'unnatural', '-', '-', normal ). +adj( 'unnecessary', '-', '-', normal ). +adj( 'unnoticeable', '-', '-', normal ). +adj( 'unnoticed', '-', '-', normal ). +adj( 'unnumbered', '-', '-', normal ). +adj( 'unobjectionable', '-', '-', normal ). +adj( 'unobservant', '-', '-', normal ). +adj( 'unobserved', '-', '-', normal ). +adj( 'unobtainable', '-', '-', normal ). +adj( 'unobtrusive', '-', '-', normal ). +adj( 'unobvious', '-', '-', normal ). +adj( 'unoccupied', '-', '-', normal ). +adj( 'unofficial', '-', '-', normal ). +adj( 'unopen', '-', '-', normal ). +adj( 'unopened', '-', '-', normal ). +adj( 'unopposed', '-', '-', normal ). +adj( 'unoriginal', '-', '-', normal ). +adj( 'unorthodox', '-', '-', normal ). +adj( 'unpaid', '-', '-', normal ). +adj( 'unpainted', '-', '-', normal ). +adj( 'unpalatable', '-', '-', normal ). +adj( 'unparalleled', '-', '-', normal ). +adj( 'unpardonable', '-', '-', normal ). +adj( 'unparliamentary', '-', '-', normal ). +adj( 'unpatriotic', '-', '-', normal ). +adj( 'unpaved', '-', '-', normal ). +adj( 'unpersuaded', '-', '-', normal ). +adj( 'unperturbed', '-', '-', normal ). +adj( 'unplaced', '-', '-', normal ). +adj( 'unplanned', '-', '-', normal ). +adj( 'unplayable', '-', '-', normal ). +adj( 'unpleasant', '-', '-', normal ). +adj( 'unplumbed', '-', '-', normal ). +adj( 'unpolluted', '-', '-', normal ). +adj( 'unpompous', '-', '-', normal ). +adj( 'unpopular', '-', '-', normal ). +adj( 'unpractised', '-', '-', normal ). +adj( 'unprecedented', '-', '-', normal ). +adj( 'unpredictable', '-', '-', normal ). +adj( 'unpredicted', '-', '-', normal ). +adj( 'unprejudiced', '-', '-', normal ). +adj( 'unpremeditated', '-', '-', normal ). +adj( 'unprepared', '-', '-', normal ). +adj( 'unprepossessing', '-', '-', normal ). +adj( 'unpretentious', '-', '-', normal ). +adj( 'unprincipled', '-', '-', normal ). +adj( 'unprintable', '-', '-', normal ). +adj( 'unproductive', '-', '-', normal ). +adj( 'unprofessional', '-', '-', normal ). +adj( 'unprofitable', '-', '-', normal ). +adj( 'unpromising', '-', '-', normal ). +adj( 'unprompted', '-', '-', normal ). +adj( 'unpronounceable', '-', '-', normal ). +adj( 'unpropitious', '-', '-', normal ). +adj( 'unprotected', '-', '-', normal ). +adj( 'unproved', '-', '-', normal ). +adj( 'unproven', '-', '-', pred ). +adj( 'unprovided', '-', '-', normal ). +adj( 'unprovoked', '-', '-', normal ). +adj( 'unpublished', '-', '-', normal ). +adj( 'unpunished', '-', '-', normal ). +adj( 'unputdownable', '-', '-', normal ). +adj( 'unqualified', '-', '-', normal ). +adj( 'unquestionable', '-', '-', normal ). +adj( 'unquestioned', '-', '-', normal ). +adj( 'unquestioning', '-', '-', normal ). +adj( 'unquiet', '-', '-', normal ). +adj( 'unquotable', '-', '-', normal ). +adj( 'unreached', '-', '-', normal ). +adj( 'unread', '-', '-', normal ). +adj( 'unreadable', '-', '-', normal ). +adj( 'unready', '-', '-', normal ). +adj( 'unreal', '-', '-', normal ). +adj( 'unrealistic', '-', '-', normal ). +adj( 'unrealized', '-', '-', normal ). +adj( 'unreasonable', '-', '-', normal ). +adj( 'unreasoning', '-', '-', normal ). +adj( 'unreceptive', '-', '-', normal ). +adj( 'unreciprocated', '-', '-', normal ). +adj( 'unrecognizable', '-', '-', normal ). +adj( 'unrecognized', '-', '-', normal ). +adj( 'unreconciled', '-', '-', normal ). +adj( 'unrecorded', '-', '-', normal ). +adj( 'unredeemable', '-', '-', normal ). +adj( 'unrefined', '-', '-', normal ). +adj( 'unreflective', '-', '-', normal ). +adj( 'unregenerate', '-', '-', normal ). +adj( 'unregistered', '-', '-', normal ). +adj( 'unrehearsed', '-', '-', normal ). +adj( 'unrelated', '-', '-', normal ). +adj( 'unrelaxed', '-', '-', normal ). +adj( 'unrelenting', '-', '-', normal ). +adj( 'unreliable', '-', '-', normal ). +adj( 'unrelieved', '-', '-', normal ). +adj( 'unremarkable', '-', '-', normal ). +adj( 'unremitting', '-', '-', normal ). +adj( 'unrepeatable', '-', '-', normal ). +adj( 'unrepentant', '-', '-', normal ). +adj( 'unrepresentative', '-', '-', normal ). +adj( 'unrequested', '-', '-', normal ). +adj( 'unrequited', '-', '-', normal ). +adj( 'unreserved', '-', '-', normal ). +adj( 'unresisting', '-', '-', normal ). +adj( 'unresolved', '-', '-', normal ). +adj( 'unrestrained', '-', '-', normal ). +adj( 'unrestricted', '-', '-', normal ). +adj( 'unrevised', '-', '-', normal ). +adj( 'unrewarded', '-', '-', normal ). +adj( 'unrewarding', '-', '-', normal ). +adj( 'unrhythmical', '-', '-', normal ). +adj( 'unrighteous', '-', '-', normal ). +adj( 'unripe', '-', '-', normal ). +adj( 'unripened', '-', '-', normal ). +adj( 'unrivalled', '-', '-', normal ). +adj( 'unromantic', '-', '-', normal ). +adj( 'unruffled', '-', '-', normal ). +adj( 'unruly', 'unrulier', 'unruliest', normal ). +adj( 'unsaddled', '-', '-', normal ). +adj( 'unsafe', '-', '-', normal ). +adj( 'unsaid', '-', '-', normal ). +adj( 'unsaleable', '-', '-', normal ). +adj( 'unsalted', '-', '-', normal ). +adj( 'unsatisfactory', '-', '-', normal ). +adj( 'unsatisfied', '-', '-', normal ). +adj( 'unsatisfying', '-', '-', normal ). +adj( 'unsaturated', '-', '-', normal ). +adj( 'unsavoury', '-', '-', normal ). +adj( 'unscathed', '-', '-', normal ). +adj( 'unscheduled', '-', '-', normal ). +adj( 'unscientific', '-', '-', normal ). +adj( 'unscripted', '-', '-', normal ). +adj( 'unscrupulous', '-', '-', normal ). +adj( 'unsealed', '-', '-', normal ). +adj( 'unseasonable', '-', '-', normal ). +adj( 'unseasoned', '-', '-', normal ). +adj( 'unseaworthy', '-', '-', normal ). +adj( 'unsecured', '-', '-', normal ). +adj( 'unseeded', '-', '-', normal ). +adj( 'unseeing', '-', '-', normal ). +adj( 'unseemly', '-', '-', normal ). +adj( 'unseen', '-', '-', normal ). +adj( 'unselected', '-', '-', normal ). +adj( 'unselective', '-', '-', normal ). +adj( 'unselfconscious', '-', '-', normal ). +adj( 'unselfish', '-', '-', normal ). +adj( 'unsexed', '-', '-', normal ). +adj( 'unshakable', '-', '-', normal ). +adj( 'unshaved', '-', '-', normal ). +adj( 'unshaven', '-', '-', normal ). +adj( 'unshielded', '-', '-', normal ). +adj( 'unshrinkable', '-', '-', normal ). +adj( 'unshrinking', '-', '-', normal ). +adj( 'unshuttered', '-', '-', normal ). +adj( 'unsighted', '-', '-', normal ). +adj( 'unsightly', '-', '-', normal ). +adj( 'unsigned', '-', '-', normal ). +adj( 'unsilenced', '-', '-', normal ). +adj( 'unsinkable', '-', '-', normal ). +adj( 'unskilled', '-', '-', normal ). +adj( 'unsmiling', '-', '-', normal ). +adj( 'unsociable', '-', '-', normal ). +adj( 'unsocial', '-', '-', normal ). +adj( 'unsold', '-', '-', normal ). +adj( 'unsolicited', '-', '-', normal ). +adj( 'unsolved', '-', '-', normal ). +adj( 'unsophisticated', '-', '-', normal ). +adj( 'unsound', '-', '-', normal ). +adj( 'unsparing', '-', '-', normal ). +adj( 'unspeakable', '-', '-', normal ). +adj( 'unspecialized', '-', '-', normal ). +adj( 'unspecific', '-', '-', normal ). +adj( 'unspecified', '-', '-', normal ). +adj( 'unspectacular', '-', '-', normal ). +adj( 'unspoiled', '-', '-', normal ). +adj( 'unspoilt', '-', '-', normal ). +adj( 'unspoken', '-', '-', normal ). +adj( 'unsporting', '-', '-', normal ). +adj( 'unsportsmanlike', '-', '-', normal ). +adj( 'unspotted', '-', '-', normal ). +adj( 'unstable', '-', '-', normal ). +adj( 'unstartling', '-', '-', normal ). +adj( 'unstated', '-', '-', normal ). +adj( 'unstatesmanlike', '-', '-', normal ). +adj( 'unsteady', '-', '-', pred ). +adj( 'unstoppable', '-', '-', normal ). +adj( 'unstrained', '-', '-', normal ). +adj( 'unstressed', '-', '-', normal ). +adj( 'unstructured', '-', '-', normal ). +adj( 'unstrung', '-', '-', normal ). +adj( 'unstuck', '-', '-', normal ). +adj( 'unstudied', '-', '-', normal ). +adj( 'unsubtle', '-', '-', normal ). +adj( 'unsuccessful', '-', '-', normal ). +adj( 'unsuitable', '-', '-', normal ). +adj( 'unsuited', '-', '-', normal ). +adj( 'unsullied', '-', '-', normal ). +adj( 'unsung', '-', '-', normal ). +adj( 'unsupervised', '-', '-', normal ). +adj( 'unsupported', '-', '-', normal ). +adj( 'unsure', '-', '-', normal ). +adj( 'unsurpassed', '-', '-', normal ). +adj( 'unsuspected', '-', '-', normal ). +adj( 'unsuspecting', '-', '-', normal ). +adj( 'unsuspicious', '-', '-', normal ). +adj( 'unswayed', '-', '-', normal ). +adj( 'unsweetened', '-', '-', normal ). +adj( 'unswept', '-', '-', normal ). +adj( 'unswerving', '-', '-', normal ). +adj( 'unsyllabic', '-', '-', normal ). +adj( 'unsympathetic', '-', '-', normal ). +adj( 'unsystematic', '-', '-', normal ). +adj( 'untainted', '-', '-', normal ). +adj( 'untamed', '-', '-', normal ). +adj( 'untapped', '-', '-', normal ). +adj( 'untarnished', '-', '-', normal ). +adj( 'untaxed', '-', '-', normal ). +adj( 'untenable', '-', '-', normal ). +adj( 'untenanted', '-', '-', normal ). +adj( 'untended', '-', '-', normal ). +adj( 'untested', '-', '-', normal ). +adj( 'untethered', '-', '-', normal ). +adj( 'unthinkable', '-', '-', normal ). +adj( 'unthinking', '-', '-', normal ). +adj( 'unthought-of', '-', '-', normal ). +adj( 'untidy', 'untidier', 'untidiest', normal ). +adj( 'untimely', '-', '-', normal ). +adj( 'untiring', '-', '-', normal ). +adj( 'untitled', '-', '-', normal ). +adj( 'untold', '-', '-', normal ). +adj( 'untouchable', '-', '-', normal ). +adj( 'untouched', '-', '-', normal ). +adj( 'untoward', '-', '-', normal ). +adj( 'untrained', '-', '-', normal ). +adj( 'untrammelled', '-', '-', normal ). +adj( 'untranslatable', '-', '-', normal ). +adj( 'untreated', '-', '-', normal ). +adj( 'untried', '-', '-', normal ). +adj( 'untroubled', '-', '-', normal ). +adj( 'untrue', '-', '-', normal ). +adj( 'untrustworthy', '-', '-', normal ). +adj( 'untruthful', '-', '-', normal ). +adj( 'untucked', '-', '-', normal ). +adj( 'unturned', '-', '-', normal ). +adj( 'untutored', '-', '-', normal ). +adj( 'untwisted', '-', '-', normal ). +adj( 'untypical', '-', '-', normal ). +adj( 'unused', '-', '-', normal ). +adj( 'unused', '-', '-', normal ). +adj( 'unusual', '-', '-', normal ). +adj( 'unutterable', '-', '-', normal ). +adj( 'unvaried', '-', '-', normal ). +adj( 'unvarnished', '-', '-', normal ). +adj( 'unvarying', '-', '-', normal ). +adj( 'unverified', '-', '-', normal ). +adj( 'unversed', '-', '-', normal ). +adj( 'unvigilant', '-', '-', normal ). +adj( 'unvoiced', '-', '-', normal ). +adj( 'unwanted', '-', '-', normal ). +adj( 'unwarranted', '-', '-', normal ). +adj( 'unwary', '-', '-', normal ). +adj( 'unwashed', '-', '-', normal ). +adj( 'unwavering', '-', '-', normal ). +adj( 'unweaned', '-', '-', normal ). +adj( 'unwearied', '-', '-', normal ). +adj( 'unwed', '-', '-', normal ). +adj( 'unwelcome', '-', '-', normal ). +adj( 'unwell', '-', '-', pred ). +adj( 'unwholesome', '-', '-', normal ). +adj( 'unwieldy', '-', '-', normal ). +adj( 'unwilling', '-', '-', normal ). +adj( 'unwise', '-', '-', normal ). +adj( 'unwitnessed', '-', '-', normal ). +adj( 'unwitting', '-', '-', normal ). +adj( 'unwonted', '-', '-', attr ). +adj( 'unworkable', '-', '-', normal ). +adj( 'unworkmanlike', '-', '-', normal ). +adj( 'unworldly', '-', '-', normal ). +adj( 'unworn', '-', '-', normal ). +adj( 'unworried', '-', '-', normal ). +adj( 'unworthy', '-', '-', normal ). +adj( 'unwritten', '-', '-', normal ). +adj( 'unyielding', '-', '-', normal ). +adj( 'up-and-coming', '-', '-', normal ). +adj( 'up-market', '-', '-', normal ). +adj( 'up-to-date', '-', '-', normal ). +adj( 'up-to-the-minute', '-', '-', attr ). +adj( 'upcountry', '-', '-', normal ). +adj( 'uphill', '-', '-', normal ). +adj( 'upmost', '-', '-', normal ). +adj( 'upper', '-', '-', normal ). +adj( 'uppermost', '-', '-', normal ). +adj( 'uppish', '-', '-', normal ). +adj( 'uppity', '-', '-', normal ). +adj( 'upright', '-', '-', normal ). +adj( 'uproarious', '-', '-', normal ). +adj( 'upstage', '-', '-', normal ). +adj( 'upstairs', '-', '-', attr ). +adj( 'upstanding', '-', '-', normal ). +adj( 'upstart', '-', '-', normal ). +adj( 'uptight', '-', '-', normal ). +adj( 'uptown', '-', '-', normal ). +adj( 'upturned', '-', '-', normal ). +adj( 'upward', '-', '-', normal ). +adj( 'urban', '-', '-', normal ). +adj( 'urbane', '-', '-', normal ). +adj( 'urgent', '-', '-', normal ). +adj( 'uric', '-', '-', normal ). +adj( 'urinary', '-', '-', normal ). +adj( 'usable', '-', '-', normal ). +adj( 'used', '-', '-', normal ). +adj( 'used', '-', '-', normal ). +adj( 'useful', '-', '-', normal ). +adj( 'useless', '-', '-', normal ). +adj( 'usual', '-', '-', normal ). +adj( 'usurious', '-', '-', normal ). +adj( 'uterine', '-', '-', normal ). +adj( 'utilitarian', '-', '-', normal ). +adj( 'utilizable', '-', '-', normal ). +adj( 'utmost', '-', '-', normal ). +adj( 'utter', '-', '-', normal ). +adj( 'uttermost', '-', '-', normal ). +adj( 'uvular', '-', '-', normal ). +adj( 'uxorious', '-', '-', normal ). +adj( 'vacant', '-', '-', normal ). +adj( 'vacuous', '-', '-', normal ). +adj( 'vagabond', '-', '-', normal ). +adj( 'vaginal', '-', '-', normal ). +adj( 'vagrant', '-', '-', normal ). +adj( 'vague', 'vaguer', 'vaguest', normal ). +adj( 'vain', 'vainer', 'vainest', normal ). +adj( 'vainglorious', '-', '-', normal ). +adj( 'valedictory', '-', '-', normal ). +adj( 'valetudinarian', '-', '-', normal ). +adj( 'valiant', '-', '-', normal ). +adj( 'valid', '-', '-', normal ). +adj( 'valorous', '-', '-', normal ). +adj( 'valuable', '-', '-', normal ). +adj( 'value-added', '-', '-', attr ). +adj( 'valueless', '-', '-', normal ). +adj( 'valvular', '-', '-', normal ). +adj( 'vapid', '-', '-', normal ). +adj( 'vaporous', '-', '-', normal ). +adj( 'variable', '-', '-', normal ). +adj( 'variant', '-', '-', normal ). +adj( 'varicoloured', '-', '-', normal ). +adj( 'varicose', '-', '-', normal ). +adj( 'varied', '-', '-', normal ). +adj( 'variegated', '-', '-', normal ). +adj( 'variform', '-', '-', normal ). +adj( 'variorum', '-', '-', normal ). +adj( 'various', '-', '-', normal ). +adj( 'vascular', '-', '-', normal ). +adj( 'vast', '-', '-', normal ). +adj( 'vaulted', '-', '-', normal ). +adj( 'vegetable', '-', '-', normal ). +adj( 'vehement', '-', '-', normal ). +adj( 'vehicular', '-', '-', normal ). +adj( 'veined', '-', '-', normal ). +adj( 'velvety', '-', '-', normal ). +adj( 'venal', '-', '-', normal ). +adj( 'venerable', '-', '-', normal ). +adj( 'venereal', '-', '-', normal ). +adj( 'vengeful', '-', '-', normal ). +adj( 'venial', '-', '-', normal ). +adj( 'venomed', '-', '-', normal ). +adj( 'venomous', '-', '-', normal ). +adj( 'venous', '-', '-', normal ). +adj( 'ventral', '-', '-', normal ). +adj( 'ventricular', '-', '-', normal ). +adj( 'venturesome', '-', '-', normal ). +adj( 'venturous', '-', '-', normal ). +adj( 'veracious', '-', '-', normal ). +adj( 'verbal', '-', '-', normal ). +adj( 'verbatim', '-', '-', normal ). +adj( 'verbose', '-', '-', normal ). +adj( 'verdant', '-', '-', normal ). +adj( 'verifiable', '-', '-', normal ). +adj( 'veritable', '-', '-', normal ). +adj( 'vermiform', '-', '-', normal ). +adj( 'vermilion', '-', '-', normal ). +adj( 'verminous', '-', '-', normal ). +adj( 'vernacular', '-', '-', normal ). +adj( 'vernal', '-', '-', normal ). +adj( 'versatile', '-', '-', normal ). +adj( 'versed', '-', '-', normal ). +adj( 'vertebrate', '-', '-', normal ). +adj( 'vertical', '-', '-', normal ). +adj( 'vertiginous', '-', '-', normal ). +adj( 'very', '-', '-', attr ). +adj( 'vesicular', '-', '-', normal ). +adj( 'vestal', '-', '-', normal ). +adj( 'vestigial', '-', '-', normal ). +adj( 'veterinary', '-', '-', normal ). +adj( 'vexatious', '-', '-', normal ). +adj( 'viable', '-', '-', normal ). +adj( 'vibrant', '-', '-', normal ). +adj( 'vicarious', '-', '-', normal ). +adj( 'viceregal', '-', '-', normal ). +adj( 'vicious', '-', '-', normal ). +adj( 'victorious', '-', '-', normal ). +adj( 'viewless', '-', '-', normal ). +adj( 'vigilant', '-', '-', normal ). +adj( 'vigorous', '-', '-', normal ). +adj( 'vile', 'viler', 'vilest', normal ). +adj( 'villainous', '-', '-', normal ). +adj( 'vindictive', '-', '-', normal ). +adj( 'vinegary', '-', '-', normal ). +adj( 'vinous', '-', '-', normal ). +adj( 'violent', '-', '-', normal ). +adj( 'virgin', '-', '-', normal ). +adj( 'virginal', '-', '-', normal ). +adj( 'virile', '-', '-', normal ). +adj( 'virtual', '-', '-', normal ). +adj( 'virtuous', '-', '-', normal ). +adj( 'virulent', '-', '-', normal ). +adj( 'visaged', '-', '-', affix ). +adj( 'visceral', '-', '-', normal ). +adj( 'viscid', '-', '-', normal ). +adj( 'viscous', '-', '-', normal ). +adj( 'visible', '-', '-', normal ). +adj( 'visionary', '-', '-', normal ). +adj( 'visual', '-', '-', normal ). +adj( 'vital', '-', '-', normal ). +adj( 'vitreous', '-', '-', normal ). +adj( 'vitriolic', '-', '-', normal ). +adj( 'vituperative', '-', '-', normal ). +adj( 'viva voce', '-', '-', normal ). +adj( 'vivacious', '-', '-', normal ). +adj( 'vivid', '-', '-', normal ). +adj( 'viviparous', '-', '-', normal ). +adj( 'vixenish', '-', '-', normal ). +adj( 'vocal', '-', '-', normal ). +adj( 'vocational', '-', '-', normal ). +adj( 'vocative', '-', '-', normal ). +adj( 'vociferous', '-', '-', normal ). +adj( 'voiced', '-', '-', affix ). +adj( 'voiceless', '-', '-', normal ). +adj( 'void', '-', '-', normal ). +adj( 'volatile', '-', '-', normal ). +adj( 'volcanic', '-', '-', normal ). +adj( 'volitional', '-', '-', normal ). +adj( 'voluble', '-', '-', normal ). +adj( 'voluminous', '-', '-', normal ). +adj( 'voluntary', '-', '-', normal ). +adj( 'voluptuous', '-', '-', normal ). +adj( 'voluted', '-', '-', normal ). +adj( 'voracious', '-', '-', normal ). +adj( 'voteless', '-', '-', normal ). +adj( 'votive', '-', '-', normal ). +adj( 'voyeuristic', '-', '-', normal ). +adj( 'vulgar', '-', '-', normal ). +adj( 'vulnerable', '-', '-', normal ). +adj( 'vulpine', '-', '-', normal ). +adj( 'waggish', '-', '-', normal ). +adj( 'wainscoted', '-', '-', normal ). +adj( 'waist-deep', '-', '-', normal ). +adj( 'waist-high', '-', '-', normal ). +adj( 'wakeful', '-', '-', normal ). +adj( 'waking', '-', '-', normal ). +adj( 'wall-eyed', '-', '-', normal ). +adj( 'walloping', '-', '-', normal ). +adj( 'wan', 'wanner', 'wannest', normal ). +adj( 'wanton', '-', '-', normal ). +adj( 'war-torn', '-', '-', normal ). +adj( 'warlike', '-', '-', normal ). +adj( 'warm', 'warmer', 'warmest', normal ). +adj( 'warm-blooded', '-', '-', normal ). +adj( 'warm-hearted', '-', '-', normal ). +adj( 'warning', '-', '-', normal ). +adj( 'wary', 'warier', 'wariest', normal ). +adj( 'washable', '-', '-', normal ). +adj( 'washy', '-', '-', normal ). +adj( 'wasp-waisted', '-', '-', normal ). +adj( 'waspish', '-', '-', normal ). +adj( 'waste', '-', '-', normal ). +adj( 'wasteful', '-', '-', normal ). +adj( 'watchful', '-', '-', normal ). +adj( 'water-worn', '-', '-', normal ). +adj( 'waterborne', '-', '-', normal ). +adj( 'waterless', '-', '-', normal ). +adj( 'waterlogged', '-', '-', normal ). +adj( 'waterproof', '-', '-', normal ). +adj( 'watertight', '-', '-', normal ). +adj( 'watery', 'waterier', 'wateriest', normal ). +adj( 'wavy', 'wavier', 'waviest', normal ). +adj( 'waxen', '-', '-', normal ). +adj( 'waxy', 'waxier', 'waxiest', normal ). +adj( 'way-out', '-', '-', normal ). +adj( 'wayfaring', '-', '-', normal ). +adj( 'wayward', '-', '-', normal ). +adj( 'weak', 'weaker', 'weakest', normal ). +adj( 'weak-kneed', '-', '-', normal ). +adj( 'weakly', 'weaklier', 'weakliest', normal ). +adj( 'wealthy', 'wealthier', 'wealthiest', normal ). +adj( 'weaponless', '-', '-', normal ). +adj( 'wearable', '-', '-', normal ). +adj( 'wearing', '-', '-', normal ). +adj( 'wearisome', '-', '-', normal ). +adj( 'weary', 'wearier', 'weariest', normal ). +adj( 'weather-beaten', '-', '-', normal ). +adj( 'weather-bound', '-', '-', normal ). +adj( 'weatherproof', '-', '-', normal ). +adj( 'web-footed', '-', '-', normal ). +adj( 'web-toed', '-', '-', normal ). +adj( 'webbed', '-', '-', normal ). +adj( 'wee', '-', '-', normal ). +adj( 'weedy', 'weedier', 'weediest', normal ). +adj( 'weekly', '-', '-', normal ). +adj( 'weeny', 'weenier', 'weeniest', normal ). +adj( 'weeping', '-', '-', normal ). +adj( 'weightless', '-', '-', normal ). +adj( 'weighty', 'weightier', 'weightiest', normal ). +adj( 'weird', 'weirder', 'weirdest', normal ). +adj( 'welcome', '-', '-', normal ). +adj( 'well', '-', '-', pred ). +adj( 'well-adjusted', '-', '-', normal ). +adj( 'well-advised', '-', '-', normal ). +adj( 'well-appointed', '-', '-', normal ). +adj( 'well-balanced', '-', '-', normal ). +adj( 'well-behaved', '-', '-', normal ). +adj( 'well-born', '-', '-', normal ). +adj( 'well-bred', '-', '-', normal ). +adj( 'well-conducted', '-', '-', normal ). +adj( 'well-connected', '-', '-', normal ). +adj( 'well-disposed', '-', '-', normal ). +adj( 'well-favoured', '-', '-', normal ). +adj( 'well-found', '-', '-', normal ). +adj( 'well-founded', '-', '-', normal ). +adj( 'well-groomed', '-', '-', normal ). +adj( 'well-grounded', '-', '-', normal ). +adj( 'well-heeled', '-', '-', normal ). +adj( 'well-informed', '-', '-', normal ). +adj( 'well-intentioned', '-', '-', normal ). +adj( 'well-knit', '-', '-', normal ). +adj( 'well-known', '-', '-', normal ). +adj( 'well-lined', '-', '-', normal ). +adj( 'well-marked', '-', '-', normal ). +adj( 'well-meaning', '-', '-', normal ). +adj( 'well-meant', '-', '-', normal ). +adj( 'well-read', '-', '-', normal ). +adj( 'well-rounded', '-', '-', normal ). +adj( 'well-set', '-', '-', normal ). +adj( 'well-shaven', '-', '-', normal ). +adj( 'well-spoken', '-', '-', normal ). +adj( 'well-timed', '-', '-', normal ). +adj( 'well-to-do', '-', '-', normal ). +adj( 'well-tried', '-', '-', normal ). +adj( 'well-turned', '-', '-', normal ). +adj( 'well-worn', '-', '-', normal ). +adj( 'welter', '-', '-', normal ). +adj( 'west-country', '-', '-', normal ). +adj( 'west-end', '-', '-', normal ). +adj( 'westerly', '-', '-', attr ). +adj( 'western', '-', '-', normal ). +adj( 'westernmost', '-', '-', normal ). +adj( 'westward', '-', '-', normal ). +adj( 'wet', 'wetter', 'wettest', normal ). +adj( 'whacked', '-', '-', normal ). +adj( 'whacking', '-', '-', normal ). +adj( 'what', '-', '-', normal ). +adj( 'whate\'er', '-', '-', normal ). +adj( 'whatever', '-', '-', normal ). +adj( 'whatsoe\'er', '-', '-', normal ). +adj( 'whatsoever', '-', '-', normal ). +adj( 'wheaten', '-', '-', normal ). +adj( 'wheezy', 'wheezier', 'wheeziest', normal ). +adj( 'whencesoever', '-', '-', normal ). +adj( 'which', '-', '-', normal ). +adj( 'whichever', '-', '-', normal ). +adj( 'whichsoever', '-', '-', normal ). +adj( 'whimsical', '-', '-', normal ). +adj( 'whippy', 'whippier', 'whippiest', normal ). +adj( 'whiskered', '-', '-', normal ). +adj( 'white', 'whiter', 'whitest', normal ). +adj( 'white-collar', '-', '-', normal ). +adj( 'white-hot', '-', '-', normal ). +adj( 'white-lipped', '-', '-', normal ). +adj( 'white-livered', '-', '-', normal ). +adj( 'whitish', '-', '-', normal ). +adj( 'whole', '-', '-', normal ). +adj( 'wholehearted', '-', '-', normal ). +adj( 'wholesale', '-', '-', normal ). +adj( 'wholesome', '-', '-', normal ). +adj( 'whopping', '-', '-', normal ). +adj( 'whorled', '-', '-', normal ). +adj( 'wicked', '-', '-', normal ). +adj( 'wide', 'wider', 'widest', normal ). +adj( 'wide-awake', '-', '-', normal ). +adj( 'widespread', '-', '-', normal ). +adj( 'widowed', '-', '-', normal ). +adj( 'wifelike', '-', '-', normal ). +adj( 'wifely', 'wifelier', 'wifeliest', normal ). +adj( 'wigged', '-', '-', normal ). +adj( 'wild', 'wilder', 'wildest', normal ). +adj( 'wildcat', '-', '-', attr ). +adj( 'wilful', '-', '-', normal ). +adj( 'willed', '-', '-', affix ). +adj( 'willful', '-', '-', normal ). +adj( 'willing', '-', '-', normal ). +adj( 'willowy', '-', '-', normal ). +adj( 'wily', 'wilier', 'wiliest', normal ). +adj( 'windblown', '-', '-', normal ). +adj( 'windless', '-', '-', normal ). +adj( 'windswept', '-', '-', normal ). +adj( 'windward', '-', '-', normal ). +adj( 'windy', 'windier', 'windiest', normal ). +adj( 'winged', '-', '-', normal ). +adj( 'wingless', '-', '-', normal ). +adj( 'winsome', '-', '-', normal ). +adj( 'wintery', 'winterier', 'winteriest', normal ). +adj( 'wintry', 'wintrier', 'wintriest', normal ). +adj( 'wire-haired', '-', '-', normal ). +adj( 'wireless', '-', '-', normal ). +adj( 'wiry', 'wirier', 'wiriest', normal ). +adj( 'wise', 'wiser', 'wisest', normal ). +adj( 'wishful', '-', '-', normal ). +adj( 'wishy-washy', '-', '-', normal ). +adj( 'wispy', 'wispier', 'wispiest', normal ). +adj( 'wistful', '-', '-', normal ). +adj( 'witching', '-', '-', normal ). +adj( 'witless', '-', '-', normal ). +adj( 'witty', 'wittier', 'wittiest', normal ). +adj( 'wizard', '-', '-', normal ). +adj( 'wizened', '-', '-', normal ). +adj( 'wobbly', 'wobblier', 'wobbliest', normal ). +adj( 'woebegone', '-', '-', normal ). +adj( 'woeful', '-', '-', normal ). +adj( 'wolfish', '-', '-', normal ). +adj( 'womanish', '-', '-', normal ). +adj( 'womanlike', '-', '-', normal ). +adj( 'womanly', 'womanlier', 'womanliest', normal ). +adj( 'wonder-struck', '-', '-', normal ). +adj( 'wonderful', '-', '-', normal ). +adj( 'wondrous', '-', '-', normal ). +adj( 'wonky', '-', '-', normal ). +adj( 'wont', '-', '-', pred ). +adj( 'wonted', '-', '-', attr ). +adj( 'wooded', '-', '-', normal ). +adj( 'wooden', '-', '-', normal ). +adj( 'woodenheaded', '-', '-', normal ). +adj( 'woody', 'woodier', 'woodiest', normal ). +adj( 'woolen', '-', '-', normal ). +adj( 'woolgathering', '-', '-', normal ). +adj( 'woollen', '-', '-', normal ). +adj( 'woolly', 'woollier', 'woolliest', normal ). +adj( 'wooly', 'woolier', 'wooliest', normal ). +adj( 'word-perfect', '-', '-', normal ). +adj( 'wordless', '-', '-', normal ). +adj( 'wordy', 'wordier', 'wordiest', normal ). +adj( 'workable', '-', '-', normal ). +adj( 'workaday', '-', '-', normal ). +adj( 'working', '-', '-', normal ). +adj( 'working-class', '-', '-', normal ). +adj( 'workmanlike', '-', '-', normal ). +adj( 'workshy', '-', '-', normal ). +adj( 'world-weary', '-', '-', normal ). +adj( 'worldly', 'worldlier', 'worldliest', normal ). +adj( 'worldwide', '-', '-', normal ). +adj( 'worm-eaten', '-', '-', normal ). +adj( 'wormy', 'wormier', 'wormiest', normal ). +adj( 'worried', '-', '-', normal ). +adj( 'worrisome', '-', '-', normal ). +adj( 'worrying', '-', '-', normal ). +adj( 'worshipful', '-', '-', normal ). +adj( 'worth', '-', '-', pred ). +adj( 'worthless', '-', '-', normal ). +adj( 'worthwhile', '-', '-', normal ). +adj( 'worthy', 'worthier', 'worthiest', normal ). +adj( 'would-be', '-', '-', attr ). +adj( 'wrathful', '-', '-', normal ). +adj( 'wretched', '-', '-', normal ). +adj( 'wrinkly', 'wrinklier', 'wrinkliest', normal ). +adj( 'writ large', '-', '-', normal ). +adj( 'wrong', '-', '-', normal ). +adj( 'wrong-headed', '-', '-', normal ). +adj( 'wrongful', '-', '-', normal ). +adj( 'wroth', '-', '-', normal ). +adj( 'wry', 'wrier', 'wriest', normal ). +adj( 'yearlong', '-', '-', normal ). +adj( 'yearly', '-', '-', normal ). +adj( 'yeasty', 'yeastier', 'yeastiest', normal ). +adj( 'yellow', 'yellower', 'yellowest', normal ). +adj( 'yellow-bellied', '-', '-', normal ). +adj( 'yellowish', '-', '-', normal ). +adj( 'yielding', '-', '-', normal ). +adj( 'yon', '-', '-', normal ). +adj( 'yonder', '-', '-', normal ). +adj( 'young', 'younger', 'youngest', normal ). +adj( 'youngish', '-', '-', normal ). +adj( 'your', '-', '-', normal ). +adj( 'yours', '-', '-', pred ). +adj( 'youthful', '-', '-', normal ). +adj( 'zany', 'zanier', 'zaniest', normal ). +adj( 'zealous', '-', '-', normal ). +adj( 'zenithal', '-', '-', normal ). +adj( 'zestful', '-', '-', normal ). +adj( 'zonal', '-', '-', normal ). +adj( 'zoological', '-', '-', normal ). + +adv( '\'tween', normal ). +adv( '\'tween-decks', normal ). +adv( '`a la carte', normal ). +adv( '`a la mode', normal ). +adv( 'a fortiori', normal ). +adv( 'a posteriori', normal ). +adv( 'a priori', normal ). +adv( 'ab initio', normal ). +adv( 'aback', normal ). +adv( 'abaft', normal ). +adv( 'abeam', normal ). +adv( 'abed', normal ). +adv( 'abjectly', normal ). +adv( 'ablaze', normal ). +adv( 'ably', normal ). +adv( 'abnormally', normal ). +adv( 'aboard', normal ). +adv( 'abominably', normal ). +adv( 'abortively', normal ). +adv( 'about', normal ). +adv( 'above', normal ). +adv( 'above board', normal ). +adv( 'abreast', normal ). +adv( 'abroad', normal ). +adv( 'abruptly', normal ). +adv( 'absent-mindedly', normal ). +adv( 'absently', normal ). +adv( 'absolutely', normal ). +adv( 'abstemiously', normal ). +adv( 'abstractedly', normal ). +adv( 'abstrusely', normal ). +adv( 'absurdly', normal ). +adv( 'abundantly', normal ). +adv( 'abusively', normal ). +adv( 'abysmally', normal ). +adv( 'academically', normal ). +adv( 'accelerando', normal ). +adv( 'acceptably', normal ). +adv( 'accidentally', normal ). +adv( 'accordingly', normal ). +adv( 'accurately', normal ). +adv( 'accusingly', normal ). +adv( 'across', normal ). +adv( 'actively', normal ). +adv( 'actually', normal ). +adv( 'acutely', normal ). +adv( 'ad hoc', normal ). +adv( 'ad infinitum', normal ). +adv( 'ad interim', normal ). +adv( 'ad lib', normal ). +adv( 'ad libitum', normal ). +adv( 'ad nauseam', normal ). +adv( 'ad valorem', normal ). +adv( 'adagio', normal ). +adv( 'additionally', normal ). +adv( 'adequately', normal ). +adv( 'administratively', normal ). +adv( 'admirably', normal ). +adv( 'admiringly', normal ). +adv( 'admittedly', normal ). +adv( 'adorably', normal ). +adv( 'adoringly', normal ). +adv( 'adrift', normal ). +adv( 'adroitly', normal ). +adv( 'advantageously', normal ). +adv( 'adverbially', normal ). +adv( 'adversely', normal ). +adv( 'advisedly', normal ). +adv( 'aesthetically', normal ). +adv( 'afar', normal ). +adv( 'affably', normal ). +adv( 'affectingly', normal ). +adv( 'affectionately', normal ). +adv( 'afield', normal ). +adv( 'afore', normal ). +adv( 'aforethought', normal ). +adv( 'afoul', normal ). +adv( 'afresh', normal ). +adv( 'aft', normal ). +adv( 'after', normal ). +adv( 'afterwards', normal ). +adv( 'again', normal ). +adv( 'aggressively', normal ). +adv( 'agilely', normal ). +adv( 'ago', normal ). +adv( 'agonizingly', normal ). +adv( 'agreeably', normal ). +adv( 'aground', normal ). +adv( 'ahead', normal ). +adv( 'aimlessly', normal ). +adv( 'airily', normal ). +adv( 'akimbo', normal ). +adv( 'alarmingly', normal ). +adv( 'alee', normal ). +adv( 'alertly', normal ). +adv( 'alfresco', normal ). +adv( 'algebraically', normal ). +adv( 'alias', normal ). +adv( 'alike', normal ). +adv( 'all', normal ). +adv( 'allegedly', normal ). +adv( 'allegretto', normal ). +adv( 'allegro', normal ). +adv( 'alliteratively', normal ). +adv( 'almost', normal ). +adv( 'aloft', normal ). +adv( 'alone', normal ). +adv( 'along', normal ). +adv( 'alongside', normal ). +adv( 'aloof', normal ). +adv( 'aloud', normal ). +adv( 'alphabetically', normal ). +adv( 'already', normal ). +adv( 'alright', normal ). +adv( 'also', normal ). +adv( 'alternately', normal ). +adv( 'alternatively', normal ). +adv( 'altogether', normal ). +adv( 'altruistically', normal ). +adv( 'always', normal ). +adv( 'amain', normal ). +adv( 'amazingly', normal ). +adv( 'ambiguously', normal ). +adv( 'ambitiously', normal ). +adv( 'amiably', normal ). +adv( 'amicably', normal ). +adv( 'amidships', normal ). +adv( 'amiss', normal ). +adv( 'amok', normal ). +adv( 'amorously', normal ). +adv( 'amply', normal ). +adv( 'amuck', normal ). +adv( 'amusingly', normal ). +adv( 'analogously', normal ). +adv( 'analytically', normal ). +adv( 'anarchically', normal ). +adv( 'anatomically', normal ). +adv( 'andante', normal ). +adv( 'anew', normal ). +adv( 'angelically', normal ). +adv( 'angrily', normal ). +adv( 'annually', normal ). +adv( 'anomalously', normal ). +adv( 'anon', normal ). +adv( 'anonymously', normal ). +adv( 'antagonistically', normal ). +adv( 'ante meridiem', normal ). +adv( 'anticlockwise', normal ). +adv( 'antithetically', normal ). +adv( 'anxiously', normal ). +adv( 'any', normal ). +adv( 'anyhow', normal ). +adv( 'anyplace', normal ). +adv( 'anyway', normal ). +adv( 'anywhere', normal ). +adv( 'apace', normal ). +adv( 'apart', normal ). +adv( 'apathetically', normal ). +adv( 'apiece', normal ). +adv( 'apologetically', normal ). +adv( 'appallingly', normal ). +adv( 'apparently', normal ). +adv( 'appealingly', normal ). +adv( 'appositely', normal ). +adv( 'appreciably', normal ). +adv( 'appreciatively', normal ). +adv( 'appropriately', normal ). +adv( 'approvingly', normal ). +adv( 'approximately', normal ). +adv( 'apropos', normal ). +adv( 'aptly', normal ). +adv( 'arbitrarily', normal ). +adv( 'architecturally', normal ). +adv( 'archly', normal ). +adv( 'ardently', normal ). +adv( 'arduously', normal ). +adv( 'arguably', normal ). +adv( 'aright', normal ). +adv( 'aristocratically', normal ). +adv( 'arithmetically', normal ). +adv( 'around', normal ). +adv( 'arrogantly', normal ). +adv( 'artfully', normal ). +adv( 'articulately', normal ). +adv( 'artificially', normal ). +adv( 'artistically', normal ). +adv( 'artlessly', normal ). +adv( 'ascetically', normal ). +adv( 'ashamedly', normal ). +adv( 'ashore', normal ). +adv( 'aside', normal ). +adv( 'askance', normal ). +adv( 'askew', normal ). +adv( 'aslant', normal ). +adv( 'asleep', normal ). +adv( 'assertively', normal ). +adv( 'assiduously', normal ). +adv( 'assuredly', normal ). +adv( 'astern', normal ). +adv( 'astir', normal ). +adv( 'astonishingly', normal ). +adv( 'astray', normal ). +adv( 'astride', normal ). +adv( 'astronomically', normal ). +adv( 'astutely', normal ). +adv( 'asunder', normal ). +adv( 'asymmetrically', normal ). +adv( 'asymptotically', normal ). +adv( 'athwart', normal ). +adv( 'atop', normal ). +adv( 'atrociously', normal ). +adv( 'attentively', normal ). +adv( 'attractively', normal ). +adv( 'attributively', normal ). +adv( 'atypically', normal ). +adv( 'au fond', normal ). +adv( 'audaciously', normal ). +adv( 'audibly', normal ). +adv( 'auspiciously', normal ). +adv( 'austerely', normal ). +adv( 'authentically', normal ). +adv( 'authoritatively', normal ). +adv( 'autocratically', normal ). +adv( 'automatically', normal ). +adv( 'avariciously', normal ). +adv( 'avidly', normal ). +adv( 'avowedly', normal ). +adv( 'away', normal ). +adv( 'aweigh', normal ). +adv( 'awfully', normal ). +adv( 'awhile', normal ). +adv( 'awkwardly', normal ). +adv( 'awry', normal ). +adv( 'axiomatically', normal ). +adv( 'ay', normal ). +adv( 'aye', normal ). +adv( 'aye', normal ). +adv( 'back', normal ). +adv( 'backstage', normal ). +adv( 'backward', normal ). +adv( 'backwards', normal ). +adv( 'badly', normal ). +adv( 'baldly', normal ). +adv( 'balefully', normal ). +adv( 'bally', normal ). +adv( 'banefully', normal ). +adv( 'bang', normal ). +adv( 'banteringly', normal ). +adv( 'barbarously', normal ). +adv( 'bareback', normal ). +adv( 'barebacked', normal ). +adv( 'barefacedly', normal ). +adv( 'barefoot', normal ). +adv( 'barefooted', normal ). +adv( 'barely', normal ). +adv( 'bashfully', normal ). +adv( 'basically', normal ). +adv( 'bawdily', normal ). +adv( 'beastly', normal ). +adv( 'beautifully', normal ). +adv( 'becomingly', normal ). +adv( 'befittingly', normal ). +adv( 'before', normal ). +adv( 'beforehand', normal ). +adv( 'behind', normal ). +adv( 'belatedly', normal ). +adv( 'belike', normal ). +adv( 'belligerently', normal ). +adv( 'below', normal ). +adv( 'beneath', normal ). +adv( 'beneficially', normal ). +adv( 'benevolently', normal ). +adv( 'benignantly', normal ). +adv( 'benignly', normal ). +adv( 'beseechingly', normal ). +adv( 'besides', normal ). +adv( 'best', normal ). +adv( 'bestially', normal ). +adv( 'betimes', normal ). +adv( 'better', normal ). +adv( 'between', normal ). +adv( 'betwixt', normal ). +adv( 'bewitchingly', normal ). +adv( 'beyond', normal ). +adv( 'biennially', normal ). +adv( 'bilaterally', normal ). +adv( 'biologically', normal ). +adv( 'bitingly', normal ). +adv( 'bitterly', normal ). +adv( 'blamelessly', normal ). +adv( 'blandly', normal ). +adv( 'blankly', normal ). +adv( 'blasphemously', normal ). +adv( 'blatantly', normal ). +adv( 'bleakly', normal ). +adv( 'blindly', normal ). +adv( 'blissfully', normal ). +adv( 'blithely', normal ). +adv( 'bloodlessly', normal ). +adv( 'bloody', normal ). +adv( 'bluffly', normal ). +adv( 'bluntly', normal ). +adv( 'blushingly', normal ). +adv( 'boastfully', normal ). +adv( 'bodily', normal ). +adv( 'boisterously', normal ). +adv( 'boldly', normal ). +adv( 'bolt', normal ). +adv( 'bombastically', normal ). +adv( 'bona fide', normal ). +adv( 'bonnily', normal ). +adv( 'boorishly', normal ). +adv( 'both', normal ). +adv( 'boundlessly', normal ). +adv( 'bounteously', normal ). +adv( 'bountifully', normal ). +adv( 'boyishly', normal ). +adv( 'bravely', normal ). +adv( 'breadthways', normal ). +adv( 'breadthwise', normal ). +adv( 'breast-deep', normal ). +adv( 'breast-high', normal ). +adv( 'breathlessly', normal ). +adv( 'breezily', normal ). +adv( 'briefly', normal ). +adv( 'bright', normal ). +adv( 'brightly', normal ). +adv( 'brilliantly', normal ). +adv( 'briskly', normal ). +adv( 'broadcast', normal ). +adv( 'broadly', normal ). +adv( 'broadways', normal ). +adv( 'broadwise', normal ). +adv( 'brusquely', normal ). +adv( 'brutally', normal ). +adv( 'brutishly', normal ). +adv( 'bump', normal ). +adv( 'bumptiously', normal ). +adv( 'buoyantly', normal ). +adv( 'bureaucratically', normal ). +adv( 'busily', normal ). +adv( 'but', normal ). +adv( 'by', normal ). +adv( 'cagily', normal ). +adv( 'calmly', normal ). +adv( 'candidly', normal ). +adv( 'cannily', normal ). +adv( 'cantankerously', normal ). +adv( 'cap-`a-pie', normal ). +adv( 'capably', normal ). +adv( 'capriciously', normal ). +adv( 'captiously', normal ). +adv( 'carefully', normal ). +adv( 'carelessly', normal ). +adv( 'caressingly', normal ). +adv( 'carnally', normal ). +adv( 'casually', normal ). +adv( 'catastrophically', normal ). +adv( 'categorically', normal ). +adv( 'caustically', normal ). +adv( 'cautiously', normal ). +adv( 'cavalierly', normal ). +adv( 'ceaselessly', normal ). +adv( 'centennially', normal ). +adv( 'centrally', normal ). +adv( 'ceremonially', normal ). +adv( 'ceremoniously', normal ). +adv( 'certainly', normal ). +adv( 'champion', normal ). +adv( 'chaotically', normal ). +adv( 'characteristically', normal ). +adv( 'charily', normal ). +adv( 'charitably', normal ). +adv( 'charmingly', normal ). +adv( 'chastely', normal ). +adv( 'chattily', normal ). +adv( 'cheaply', normal ). +adv( 'cheekily', normal ). +adv( 'cheerfully', normal ). +adv( 'cheerily', normal ). +adv( 'cheerlessly', normal ). +adv( 'chemically', normal ). +adv( 'chiefly', normal ). +adv( 'childishly', normal ). +adv( 'chirpily', normal ). +adv( 'chivalrously', normal ). +adv( 'chock-a-block', normal ). +adv( 'chop-chop', normal ). +adv( 'chronically', normal ). +adv( 'chronologically', normal ). +adv( 'churlishly', normal ). +adv( 'circumspectly', normal ). +adv( 'circumstantially', normal ). +adv( 'civilly', normal ). +adv( 'clammily', normal ). +adv( 'clannishly', normal ). +adv( 'classically', normal ). +adv( 'clean', normal ). +adv( 'cleanly', normal ). +adv( 'clear', normal ). +adv( 'clear-cut', normal ). +adv( 'clearly', normal ). +adv( 'cleverly', normal ). +adv( 'climatically', normal ). +adv( 'clinically', normal ). +adv( 'clockwise', normal ). +adv( 'close', normal ). +adv( 'closely', normal ). +adv( 'clumsily', normal ). +adv( 'coarsely', normal ). +adv( 'coastwise', normal ). +adv( 'coaxingly', normal ). +adv( 'cock-a-hoop', normal ). +adv( 'coherently', normal ). +adv( 'coldly', normal ). +adv( 'collect', normal ). +adv( 'collectedly', normal ). +adv( 'colloquially', normal ). +adv( 'combatively', normal ). +adv( 'comfortably', normal ). +adv( 'comfortingly', normal ). +adv( 'comically', normal ). +adv( 'commercially', normal ). +adv( 'commonly', normal ). +adv( 'communally', normal ). +adv( 'compactly', normal ). +adv( 'comparatively', normal ). +adv( 'compassionately', normal ). +adv( 'compatibly', normal ). +adv( 'competently', normal ). +adv( 'complacently', normal ). +adv( 'complainingly', normal ). +adv( 'completely', normal ). +adv( 'composedly', normal ). +adv( 'comprehensively', normal ). +adv( 'compulsively', normal ). +adv( 'compulsorily', normal ). +adv( 'computationally', normal ). +adv( 'comradely', normal ). +adv( 'con', normal ). +adv( 'conceitedly', normal ). +adv( 'conceivably', normal ). +adv( 'conceptually', normal ). +adv( 'concernedly', normal ). +adv( 'concisely', normal ). +adv( 'conclusively', normal ). +adv( 'concretely', normal ). +adv( 'concurrently', normal ). +adv( 'condescendingly', normal ). +adv( 'conditionally', normal ). +adv( 'confessedly', normal ). +adv( 'confidentially', normal ). +adv( 'confidently', normal ). +adv( 'confidingly', normal ). +adv( 'confoundedly', normal ). +adv( 'confusedly', normal ). +adv( 'congenially', normal ). +adv( 'conjointly', normal ). +adv( 'conjugally', normal ). +adv( 'conscientiously', normal ). +adv( 'consciously', normal ). +adv( 'consecutively', normal ). +adv( 'consequentially', normal ). +adv( 'consequently', normal ). +adv( 'conservatively', normal ). +adv( 'considerably', normal ). +adv( 'considerately', normal ). +adv( 'consistently', normal ). +adv( 'conspicuously', normal ). +adv( 'constantly', normal ). +adv( 'constitutionally', normal ). +adv( 'constrainedly', normal ). +adv( 'constructively', normal ). +adv( 'contagiously', normal ). +adv( 'contemporaneously', normal ). +adv( 'contemptuously', normal ). +adv( 'contentedly', normal ). +adv( 'contiguously', normal ). +adv( 'continually', normal ). +adv( 'continuously', normal ). +adv( 'contrarily', normal ). +adv( 'contrariwise', normal ). +adv( 'contrastingly', normal ). +adv( 'contritely', normal ). +adv( 'controversially', normal ). +adv( 'contumaciously', normal ). +adv( 'contumeliously', normal ). +adv( 'conveniently', normal ). +adv( 'conventionally', normal ). +adv( 'conversationally', normal ). +adv( 'conversely', normal ). +adv( 'convexly', normal ). +adv( 'convincingly', normal ). +adv( 'convivially', normal ). +adv( 'convulsively', normal ). +adv( 'coolly', normal ). +adv( 'coordinately', normal ). +adv( 'copiously', normal ). +adv( 'coquettishly', normal ). +adv( 'cordially', normal ). +adv( 'correctly', normal ). +adv( 'correspondingly', normal ). +adv( 'corruptly', normal ). +adv( 'cosily', normal ). +adv( 'counter', normal ). +adv( 'counterclockwise', normal ). +adv( 'courageously', normal ). +adv( 'courteously', normal ). +adv( 'covertly', normal ). +adv( 'covetously', normal ). +adv( 'coyly', normal ). +adv( 'craftily', normal ). +adv( 'cram-full', normal ). +adv( 'crash', normal ). +adv( 'crazily', normal ). +adv( 'creakily', normal ). +adv( 'creatively', normal ). +adv( 'credibly', normal ). +adv( 'creditably', normal ). +adv( 'credulously', normal ). +adv( 'criminally', normal ). +adv( 'crisply', normal ). +adv( 'crisscross', normal ). +adv( 'critically', normal ). +adv( 'crookedly', normal ). +adv( 'cross-legged', normal ). +adv( 'crosscountry', normal ). +adv( 'crossly', normal ). +adv( 'crosswise', normal ). +adv( 'crucially', normal ). +adv( 'crudely', normal ). +adv( 'cruelly', normal ). +adv( 'crushingly', normal ). +adv( 'cryptically', normal ). +adv( 'culpably', normal ). +adv( 'cumulatively', normal ). +adv( 'cunningly', normal ). +adv( 'curiously', normal ). +adv( 'currently', normal ). +adv( 'currishly', normal ). +adv( 'cursedly', normal ). +adv( 'cursorily', normal ). +adv( 'curtly', normal ). +adv( 'cussedly', normal ). +adv( 'customarily', normal ). +adv( 'cutely', normal ). +adv( 'cynically', normal ). +adv( 'daftly', normal ). +adv( 'daily', normal ). +adv( 'daintily', normal ). +adv( 'damn', normal ). +adv( 'damnably', normal ). +adv( 'damned', normal ). +adv( 'damply', normal ). +adv( 'dangerously', normal ). +adv( 'daringly', normal ). +adv( 'darkly', normal ). +adv( 'dashingly', normal ). +adv( 'dauntlessly', normal ). +adv( 'daylong', normal ). +adv( 'dazedly', normal ). +adv( 'de facto', normal ). +adv( 'de jure', normal ). +adv( 'dead', normal ). +adv( 'deadly', normal ). +adv( 'deal', normal ). +adv( 'dear', normal ). +adv( 'dearly', normal ). +adv( 'deathly', normal ). +adv( 'deceitfully', normal ). +adv( 'deceivingly', normal ). +adv( 'decently', normal ). +adv( 'deceptively', normal ). +adv( 'decidedly', normal ). +adv( 'decisively', normal ). +adv( 'decorously', normal ). +adv( 'deep', normal ). +adv( 'deeply', normal ). +adv( 'defectively', normal ). +adv( 'defencelessly', normal ). +adv( 'defensively', normal ). +adv( 'deferentially', normal ). +adv( 'defiantly', normal ). +adv( 'definitely', normal ). +adv( 'deftly', normal ). +adv( 'dejectedly', normal ). +adv( 'deliberately', normal ). +adv( 'delicately', normal ). +adv( 'deliciously', normal ). +adv( 'delightedly', normal ). +adv( 'delightfully', normal ). +adv( 'deliriously', normal ). +adv( 'delusively', normal ). +adv( 'dementedly', normal ). +adv( 'democratically', normal ). +adv( 'demoniacally', normal ). +adv( 'demonstrably', normal ). +adv( 'demonstratively', normal ). +adv( 'demurely', normal ). +adv( 'densely', normal ). +adv( 'deplorably', normal ). +adv( 'derisively', normal ). +adv( 'descriptively', normal ). +adv( 'deservedly', normal ). +adv( 'designedly', normal ). +adv( 'desolately', normal ). +adv( 'despairingly', normal ). +adv( 'desperately', normal ). +adv( 'despicably', normal ). +adv( 'despitefully', normal ). +adv( 'despondently', normal ). +adv( 'destructively', normal ). +adv( 'determinedly', normal ). +adv( 'detestably', normal ). +adv( 'detrimentally', normal ). +adv( 'deucedly', normal ). +adv( 'devilish', normal ). +adv( 'devilishly', normal ). +adv( 'deviously', normal ). +adv( 'devotedly', normal ). +adv( 'devoutly', normal ). +adv( 'dexterously', normal ). +adv( 'diabolically', normal ). +adv( 'diagonally', normal ). +adv( 'diagrammatically', normal ). +adv( 'diametrically', normal ). +adv( 'dictatorially', normal ). +adv( 'didactically', normal ). +adv( 'differentially', normal ). +adv( 'differently', normal ). +adv( 'diffidently', normal ). +adv( 'diffusely', normal ). +adv( 'digitally', normal ). +adv( 'diligently', normal ). +adv( 'dimly', normal ). +adv( 'ding-dong', normal ). +adv( 'dingily', normal ). +adv( 'diplomatically', normal ). +adv( 'direct', normal ). +adv( 'directly', normal ). +adv( 'direfully', normal ). +adv( 'dirtily', normal ). +adv( 'disadvantageously', normal ). +adv( 'disagreeably', normal ). +adv( 'disappointedly', normal ). +adv( 'disappointingly', normal ). +adv( 'disapprovingly', normal ). +adv( 'disastrously', normal ). +adv( 'disbelievingly', normal ). +adv( 'disconcertingly', normal ). +adv( 'disconsolately', normal ). +adv( 'discontentedly', normal ). +adv( 'discordantly', normal ). +adv( 'discourteously', normal ). +adv( 'discreditably', normal ). +adv( 'discreetly', normal ). +adv( 'discursively', normal ). +adv( 'disdainfully', normal ). +adv( 'disgracefully', normal ). +adv( 'disgustedly', normal ). +adv( 'disgustingly', normal ). +adv( 'dishonestly', normal ). +adv( 'dishonourably', normal ). +adv( 'disingenuously', normal ). +adv( 'disinterestedly', normal ). +adv( 'disjointedly', normal ). +adv( 'disloyally', normal ). +adv( 'dismally', normal ). +adv( 'disobediently', normal ). +adv( 'disparagingly', normal ). +adv( 'dispassionately', normal ). +adv( 'dispiritedly', normal ). +adv( 'displeasingly', normal ). +adv( 'disproportionately', normal ). +adv( 'disputatiously', normal ). +adv( 'disquietingly', normal ). +adv( 'disreputably', normal ). +adv( 'disrespectfully', normal ). +adv( 'dissolutely', normal ). +adv( 'distantly', normal ). +adv( 'distastefully', normal ). +adv( 'distinctively', normal ). +adv( 'distinctly', normal ). +adv( 'distractedly', normal ). +adv( 'distressfully', normal ). +adv( 'distressingly', normal ). +adv( 'distributively', normal ). +adv( 'distrustfully', normal ). +adv( 'disturbingly', normal ). +adv( 'diversely', normal ). +adv( 'divertingly', normal ). +adv( 'divinely', normal ). +adv( 'dizzily', normal ). +adv( 'doggedly', normal ). +adv( 'doggo', normal ). +adv( 'dogmatically', normal ). +adv( 'dolefully', normal ). +adv( 'domestically', normal ). +adv( 'dominantly', normal ). +adv( 'domineeringly', normal ). +adv( 'double', normal ). +adv( 'double-quick', normal ). +adv( 'doubly', normal ). +adv( 'doubtfully', normal ). +adv( 'doubtless', normal ). +adv( 'dourly', normal ). +adv( 'dowdily', normal ). +adv( 'down', normal ). +adv( 'downhill', normal ). +adv( 'downright', normal ). +adv( 'downstairs', normal ). +adv( 'downstream', normal ). +adv( 'downtown', normal ). +adv( 'downward', normal ). +adv( 'downwards', normal ). +adv( 'drably', normal ). +adv( 'dramatically', normal ). +adv( 'drastically', normal ). +adv( 'dreadfully', normal ). +adv( 'dreamily', normal ). +adv( 'drearily', normal ). +adv( 'drily', normal ). +adv( 'droopingly', normal ). +adv( 'drowsily', normal ). +adv( 'drunkenly', normal ). +adv( 'dubiously', normal ). +adv( 'due', normal ). +adv( 'dully', normal ). +adv( 'duly', normal ). +adv( 'dumbly', normal ). +adv( 'dutifully', normal ). +adv( 'dynamically', normal ). +adv( 'e\'en', normal ). +adv( 'e\'er', normal ). +adv( 'eagerly', normal ). +adv( 'early', normal ). +adv( 'earnestly', normal ). +adv( 'easily', normal ). +adv( 'east', normal ). +adv( 'easterly', normal ). +adv( 'eastward', normal ). +adv( 'eastwards', normal ). +adv( 'easy', normal ). +adv( 'ebulliently', normal ). +adv( 'ecclesiastically', normal ). +adv( 'ecologically', normal ). +adv( 'economically', normal ). +adv( 'ecstatically', normal ). +adv( 'edgeways', normal ). +adv( 'edgewise', normal ). +adv( 'educationally', normal ). +adv( 'eerily', normal ). +adv( 'effectively', normal ). +adv( 'effectually', normal ). +adv( 'efficaciously', normal ). +adv( 'efficiently', normal ). +adv( 'effortlessly', normal ). +adv( 'effusively', normal ). +adv( 'egotistically', normal ). +adv( 'either', normal ). +adv( 'elaborately', normal ). +adv( 'electrically', normal ). +adv( 'electronically', normal ). +adv( 'elegantly', normal ). +adv( 'elementarily', normal ). +adv( 'eloquently', normal ). +adv( 'else', normal ). +adv( 'elsewhere', normal ). +adv( 'embarrassingly', normal ). +adv( 'eminently', normal ). +adv( 'emotionally', normal ). +adv( 'emphatically', normal ). +adv( 'empirically', normal ). +adv( 'emulously', normal ). +adv( 'en clair', normal ). +adv( 'en famille', normal ). +adv( 'en masse', normal ). +adv( 'en route', normal ). +adv( 'enchantingly', normal ). +adv( 'encouragingly', normal ). +adv( 'endearingly', normal ). +adv( 'endlessly', normal ). +adv( 'enduringly', normal ). +adv( 'endways', normal ). +adv( 'endwise', normal ). +adv( 'energetically', normal ). +adv( 'engagingly', normal ). +adv( 'enigmatically', normal ). +adv( 'enjoyably', normal ). +adv( 'enormously', normal ). +adv( 'enough', normal ). +adv( 'enquiringly', normal ). +adv( 'enterprisingly', normal ). +adv( 'entertainingly', normal ). +adv( 'enthusiastically', normal ). +adv( 'entirely', normal ). +adv( 'entreatingly', normal ). +adv( 'enviously', normal ). +adv( 'environmentally', normal ). +adv( 'equably', normal ). +adv( 'equally', normal ). +adv( 'equitably', normal ). +adv( 'ere', normal ). +adv( 'erectly', normal ). +adv( 'ergo', normal ). +adv( 'erratically', normal ). +adv( 'erroneously', normal ). +adv( 'eruditely', normal ). +adv( 'especially', normal ). +adv( 'essentially', normal ). +adv( 'eternally', normal ). +adv( 'ethically', normal ). +adv( 'ethnically', normal ). +adv( 'euphemistically', normal ). +adv( 'evasively', normal ). +adv( 'even', normal ). +adv( 'evenly', normal ). +adv( 'eventually', normal ). +adv( 'ever', normal ). +adv( 'evermore', normal ). +adv( 'everyplace', normal ). +adv( 'everywhere', normal ). +adv( 'evidently', normal ). +adv( 'evilly', normal ). +adv( 'ex officio', normal ). +adv( 'exactly', normal ). +adv( 'exceedingly', normal ). +adv( 'excellently', normal ). +adv( 'exceptionally', normal ). +adv( 'excessively', normal ). +adv( 'excitedly', normal ). +adv( 'excitingly', normal ). +adv( 'exclusively', normal ). +adv( 'excruciatingly', normal ). +adv( 'excusably', normal ). +adv( 'exhaustively', normal ). +adv( 'exorbitantly', normal ). +adv( 'expansively', normal ). +adv( 'expectantly', normal ). +adv( 'expediently', normal ). +adv( 'expeditiously', normal ). +adv( 'expensively', normal ). +adv( 'experimentally', normal ). +adv( 'expertly', normal ). +adv( 'explicitly', normal ). +adv( 'explosively', normal ). +adv( 'exponentially', normal ). +adv( 'express', normal ). +adv( 'expressively', normal ). +adv( 'expressly', normal ). +adv( 'exquisitely', normal ). +adv( 'extemporaneously', normal ). +adv( 'extemporarily', normal ). +adv( 'extempore', normal ). +adv( 'extensively', normal ). +adv( 'externally', normal ). +adv( 'extortionately', normal ). +adv( 'extra', normal ). +adv( 'extraordinarily', normal ). +adv( 'extravagantly', normal ). +adv( 'extremely', normal ). +adv( 'exuberantly', normal ). +adv( 'exultantly', normal ). +adv( 'fabulously', normal ). +adv( 'facetiously', normal ). +adv( 'factually', normal ). +adv( 'faddily', normal ). +adv( 'fain', normal ). +adv( 'faintly', normal ). +adv( 'fair', normal ). +adv( 'fairly', normal ). +adv( 'faithfully', normal ). +adv( 'faithlessly', normal ). +adv( 'false', normal ). +adv( 'falsely', normal ). +adv( 'falteringly', normal ). +adv( 'familiarly', normal ). +adv( 'famously', normal ). +adv( 'fanatically', normal ). +adv( 'fancifully', normal ). +adv( 'fantastically', normal ). +adv( 'far', normal ). +adv( 'farcically', normal ). +adv( 'farther', normal ). +adv( 'farthest', normal ). +adv( 'fascinatingly', normal ). +adv( 'fashionably', normal ). +adv( 'fast', normal ). +adv( 'fastidiously', normal ). +adv( 'fatefully', normal ). +adv( 'fatuously', normal ). +adv( 'faultily', normal ). +adv( 'faultlessly', normal ). +adv( 'favourably', normal ). +adv( 'fearfully', normal ). +adv( 'fearlessly', normal ). +adv( 'fearsomely', normal ). +adv( 'fecklessly', normal ). +adv( 'feebly', normal ). +adv( 'feelingly', normal ). +adv( 'felicitously', normal ). +adv( 'ferociously', normal ). +adv( 'fervently', normal ). +adv( 'fervidly', normal ). +adv( 'feverishly', normal ). +adv( 'fiendishly', normal ). +adv( 'fiercely', normal ). +adv( 'fierily', normal ). +adv( 'fifthly', normal ). +adv( 'figuratively', normal ). +adv( 'filthily', normal ). +adv( 'finally', normal ). +adv( 'financially', normal ). +adv( 'fine', normal ). +adv( 'finely', normal ). +adv( 'firm', normal ). +adv( 'firmly', normal ). +adv( 'first', normal ). +adv( 'first-class', normal ). +adv( 'first-hand', normal ). +adv( 'first-rate', normal ). +adv( 'firstly', normal ). +adv( 'fitfully', normal ). +adv( 'fitly', normal ). +adv( 'fixedly', normal ). +adv( 'flabbily', normal ). +adv( 'flagrantly', normal ). +adv( 'flamboyantly', normal ). +adv( 'flashily', normal ). +adv( 'flat', normal ). +adv( 'flatly', normal ). +adv( 'flawlessly', normal ). +adv( 'fleetly', normal ). +adv( 'flexibly', normal ). +adv( 'flimsily', normal ). +adv( 'flippantly', normal ). +adv( 'flop', normal ). +adv( 'floridly', normal ). +adv( 'fluently', normal ). +adv( 'fondly', normal ). +adv( 'foolishly', normal ). +adv( 'forbiddingly', normal ). +adv( 'forcefully', normal ). +adv( 'forcibly', normal ). +adv( 'fore', normal ). +adv( 'foremost', normal ). +adv( 'forever', normal ). +adv( 'forgetfully', normal ). +adv( 'forgivably', normal ). +adv( 'forgivingly', normal ). +adv( 'forlornly', normal ). +adv( 'formally', normal ). +adv( 'formerly', normal ). +adv( 'formidably', normal ). +adv( 'formlessly', normal ). +adv( 'forrader', normal ). +adv( 'forsooth', normal ). +adv( 'forte', normal ). +adv( 'forth', normal ). +adv( 'forthwith', normal ). +adv( 'fortissimo', normal ). +adv( 'fortnightly', normal ). +adv( 'fortuitously', normal ). +adv( 'fortunately', normal ). +adv( 'forward', normal ). +adv( 'forwards', normal ). +adv( 'foully', normal ). +adv( 'fourfold', normal ). +adv( 'fourthly', normal ). +adv( 'fractiously', normal ). +adv( 'frankly', normal ). +adv( 'frantically', normal ). +adv( 'fraternally', normal ). +adv( 'fraudulently', normal ). +adv( 'freakishly', normal ). +adv( 'freely', normal ). +adv( 'frenziedly', normal ). +adv( 'frequently', normal ). +adv( 'fresh', normal ). +adv( 'freshly', normal ). +adv( 'fretfully', normal ). +adv( 'frighteningly', normal ). +adv( 'frightfully', normal ). +adv( 'frigidly', normal ). +adv( 'friskily', normal ). +adv( 'frivolously', normal ). +adv( 'fro', normal ). +adv( 'frostily', normal ). +adv( 'frothily', normal ). +adv( 'frowningly', normal ). +adv( 'frugally', normal ). +adv( 'fruitfully', normal ). +adv( 'fruitlessly', normal ). +adv( 'full-time', normal ). +adv( 'fully', normal ). +adv( 'fulsomely', normal ). +adv( 'functionally', normal ). +adv( 'fundamentally', normal ). +adv( 'funnily', normal ). +adv( 'furiously', normal ). +adv( 'further', normal ). +adv( 'furthermore', normal ). +adv( 'furthest', normal ). +adv( 'furtively', normal ). +adv( 'fussily', normal ). +adv( 'gaily', normal ). +adv( 'gainfully', normal ). +adv( 'gallantly', normal ). +adv( 'galore', normal ). +adv( 'gamely', normal ). +adv( 'garishly', normal ). +adv( 'gaudily', normal ). +adv( 'genealogically', normal ). +adv( 'generally', normal ). +adv( 'generically', normal ). +adv( 'generously', normal ). +adv( 'genetically', normal ). +adv( 'genially', normal ). +adv( 'genteelly', normal ). +adv( 'gently', normal ). +adv( 'genuinely', normal ). +adv( 'geographically', normal ). +adv( 'geologically', normal ). +adv( 'geometrically', normal ). +adv( 'gibingly', normal ). +adv( 'giddily', normal ). +adv( 'gingerly', normal ). +adv( 'girlishly', normal ). +adv( 'gladly', normal ). +adv( 'gleefully', normal ). +adv( 'glibly', normal ). +adv( 'glissando', normal ). +adv( 'gloatingly', normal ). +adv( 'gloomily', normal ). +adv( 'gloriously', normal ). +adv( 'glossily', normal ). +adv( 'gloweringly', normal ). +adv( 'glowingly', normal ). +adv( 'glumly', normal ). +adv( 'gluttonously', normal ). +adv( 'goddam', normal ). +adv( 'gorgeously', normal ). +adv( 'gracefully', normal ). +adv( 'gracelessly', normal ). +adv( 'graciously', normal ). +adv( 'gradually', normal ). +adv( 'grammatically', normal ). +adv( 'grandly', normal ). +adv( 'graphically', normal ). +adv( 'gratefully', normal ). +adv( 'gratingly', normal ). +adv( 'gratis', normal ). +adv( 'gratuitously', normal ). +adv( 'gravely', normal ). +adv( 'greasily', normal ). +adv( 'greatly', normal ). +adv( 'greedily', normal ). +adv( 'gregariously', normal ). +adv( 'greyly', normal ). +adv( 'grievously', normal ). +adv( 'grimly', normal ). +adv( 'gropingly', normal ). +adv( 'grossly', normal ). +adv( 'grotesquely', normal ). +adv( 'growlingly', normal ). +adv( 'grudgingly', normal ). +adv( 'gruesomely', normal ). +adv( 'gruffly', normal ). +adv( 'grumpily', normal ). +adv( 'guardedly', normal ). +adv( 'guiltily', normal ). +adv( 'gushingly', normal ). +adv( 'gutturally', normal ). +adv( 'habitually', normal ). +adv( 'half-heartedly', normal ). +adv( 'half-hourly', normal ). +adv( 'half-price', normal ). +adv( 'half-yearly', normal ). +adv( 'halfway', normal ). +adv( 'haltingly', normal ). +adv( 'handily', normal ). +adv( 'handsomely', normal ). +adv( 'haphazard', normal ). +adv( 'haphazardly', normal ). +adv( 'haply', normal ). +adv( 'happily', normal ). +adv( 'hard', normal ). +adv( 'hardly', normal ). +adv( 'harmfully', normal ). +adv( 'harmlessly', normal ). +adv( 'harmoniously', normal ). +adv( 'harshly', normal ). +adv( 'hastily', normal ). +adv( 'hatefully', normal ). +adv( 'haughtily', normal ). +adv( 'hazily', normal ). +adv( 'head-on', normal ). +adv( 'headlong', normal ). +adv( 'healthily', normal ). +adv( 'heaps', normal ). +adv( 'heartily', normal ). +adv( 'heartlessly', normal ). +adv( 'heatedly', normal ). +adv( 'heavenward', normal ). +adv( 'heavenwards', normal ). +adv( 'heavily', normal ). +adv( 'heavy', normal ). +adv( 'heinously', normal ). +adv( 'helpfully', normal ). +adv( 'helplessly', normal ). +adv( 'helter-skelter', normal ). +adv( 'hence', normal ). +adv( 'henceforth', normal ). +adv( 'henceforward', normal ). +adv( 'here', normal ). +adv( 'hereabouts', normal ). +adv( 'hereafter', normal ). +adv( 'hereby', normal ). +adv( 'herein', normal ). +adv( 'hereinafter', normal ). +adv( 'hereinbefore', normal ). +adv( 'hereof', normal ). +adv( 'hereto', normal ). +adv( 'heretofore', normal ). +adv( 'hereupon', normal ). +adv( 'herewith', normal ). +adv( 'hermetically', normal ). +adv( 'heroically', normal ). +adv( 'hesitantly', normal ). +adv( 'hesitatingly', normal ). +adv( 'hideously', normal ). +adv( 'higgledy-piggledy', normal ). +adv( 'high', normal ). +adv( 'high-handedly', normal ). +adv( 'high-mindedly', normal ). +adv( 'highly', normal ). +adv( 'hilariously', normal ). +adv( 'historically', normal ). +adv( 'hither', normal ). +adv( 'hitherto', normal ). +adv( 'hoarsely', normal ). +adv( 'home', normal ). +adv( 'homeward', normal ). +adv( 'homewards', normal ). +adv( 'honestly', normal ). +adv( 'honourably', normal ). +adv( 'hopefully', normal ). +adv( 'hopelessly', normal ). +adv( 'horizontally', normal ). +adv( 'horribly', normal ). +adv( 'horridly', normal ). +adv( 'horrifyingly', normal ). +adv( 'hospitably', normal ). +adv( 'hostilely', normal ). +adv( 'hotfoot', normal ). +adv( 'hotly', normal ). +adv( 'hourly', normal ). +adv( 'how', normal ). +adv( 'however', normal ). +adv( 'huffily', normal ). +adv( 'hugely', normal ). +adv( 'hugger-mugger', normal ). +adv( 'humanely', normal ). +adv( 'humanly', normal ). +adv( 'humbly', normal ). +adv( 'humorously', normal ). +adv( 'hundredfold', normal ). +adv( 'hungrily', normal ). +adv( 'hurriedly', normal ). +adv( 'huskily', normal ). +adv( 'hydraulicly', normal ). +adv( 'hygienically', normal ). +adv( 'hypocritically', normal ). +adv( 'hysterically', normal ). +adv( 'ibidem', normal ). +adv( 'icily', normal ). +adv( 'ideally', normal ). +adv( 'identically', normal ). +adv( 'identifiably', normal ). +adv( 'ideologically', normal ). +adv( 'idiomatically', normal ). +adv( 'idiotically', normal ). +adv( 'idly', normal ). +adv( 'idolatrously', normal ). +adv( 'ignobly', normal ). +adv( 'ignominiously', normal ). +adv( 'ignorantly', normal ). +adv( 'ill', normal ). +adv( 'illegally', normal ). +adv( 'illegibly', normal ). +adv( 'illegitimately', normal ). +adv( 'illiberally', normal ). +adv( 'illicitly', normal ). +adv( 'illogically', normal ). +adv( 'illustriously', normal ). +adv( 'imaginatively', normal ). +adv( 'immaculately', normal ). +adv( 'immeasurably', normal ). +adv( 'immediately', normal ). +adv( 'immensely', normal ). +adv( 'imminently', normal ). +adv( 'immoderately', normal ). +adv( 'immodestly', normal ). +adv( 'immorally', normal ). +adv( 'immovably', normal ). +adv( 'immutably', normal ). +adv( 'impartially', normal ). +adv( 'impassively', normal ). +adv( 'impatiently', normal ). +adv( 'impeccably', normal ). +adv( 'impenitently', normal ). +adv( 'imperatively', normal ). +adv( 'imperceptibly', normal ). +adv( 'imperfectly', normal ). +adv( 'imperially', normal ). +adv( 'imperiously', normal ). +adv( 'impersonally', normal ). +adv( 'impertinently', normal ). +adv( 'impetuously', normal ). +adv( 'impiously', normal ). +adv( 'impishly', normal ). +adv( 'implausibly', normal ). +adv( 'implicitly', normal ). +adv( 'imploringly', normal ). +adv( 'impolitely', normal ). +adv( 'importantly', normal ). +adv( 'importunately', normal ). +adv( 'imposingly', normal ). +adv( 'impossibly', normal ). +adv( 'impotently', normal ). +adv( 'impracticably', normal ). +adv( 'imprecisely', normal ). +adv( 'impregnably', normal ). +adv( 'impressively', normal ). +adv( 'improbably', normal ). +adv( 'impromptu', normal ). +adv( 'improperly', normal ). +adv( 'improvidently', normal ). +adv( 'imprudently', normal ). +adv( 'impudently', normal ). +adv( 'impulsively', normal ). +adv( 'in', normal ). +adv( 'in loco parentis', normal ). +adv( 'in situ', normal ). +adv( 'in toto', normal ). +adv( 'inaccurately', normal ). +adv( 'inadequately', normal ). +adv( 'inadvertently', normal ). +adv( 'inadvisably', normal ). +adv( 'inanely', normal ). +adv( 'inappropriately', normal ). +adv( 'inasmuch as', normal ). +adv( 'inauspiciously', normal ). +adv( 'incautiously', normal ). +adv( 'incessantly', normal ). +adv( 'incidentally', normal ). +adv( 'incisively', normal ). +adv( 'inclusively', normal ). +adv( 'incognito', normal ). +adv( 'incoherently', normal ). +adv( 'incomparably', normal ). +adv( 'incompetently', normal ). +adv( 'incompletely', normal ). +adv( 'inconclusively', normal ). +adv( 'incongruously', normal ). +adv( 'inconsequentially', normal ). +adv( 'inconsequently', normal ). +adv( 'inconsiderately', normal ). +adv( 'inconsistently', normal ). +adv( 'inconspicuously', normal ). +adv( 'inconveniently', normal ). +adv( 'incorrectly', normal ). +adv( 'increasingly', normal ). +adv( 'incredibly', normal ). +adv( 'incredulously', normal ). +adv( 'incurably', normal ). +adv( 'indecently', normal ). +adv( 'indecisively', normal ). +adv( 'indecorously', normal ). +adv( 'indeed', normal ). +adv( 'indefinitely', normal ). +adv( 'indelibly', normal ). +adv( 'independently', normal ). +adv( 'indescribably', normal ). +adv( 'indeterminably', normal ). +adv( 'indifferently', normal ). +adv( 'indignantly', normal ). +adv( 'indirectly', normal ). +adv( 'indiscreetly', normal ). +adv( 'indiscriminately', normal ). +adv( 'indistinctly', normal ). +adv( 'individually', normal ). +adv( 'indolently', normal ). +adv( 'indoors', normal ). +adv( 'indubitably', normal ). +adv( 'indulgently', normal ). +adv( 'industriously', normal ). +adv( 'ineffably', normal ). +adv( 'ineffectively', normal ). +adv( 'ineffectually', normal ). +adv( 'inefficiently', normal ). +adv( 'inelegantly', normal ). +adv( 'ineptly', normal ). +adv( 'inescapably', normal ). +adv( 'inevitably', normal ). +adv( 'inexorably', normal ). +adv( 'inexpensively', normal ). +adv( 'inexpertly', normal ). +adv( 'inextricably', normal ). +adv( 'infernally', normal ). +adv( 'infinitely', normal ). +adv( 'inflexibly', normal ). +adv( 'influentially', normal ). +adv( 'informally', normal ). +adv( 'informatively', normal ). +adv( 'infra', normal ). +adv( 'infrequently', normal ). +adv( 'ingeniously', normal ). +adv( 'ingenuously', normal ). +adv( 'ingloriously', normal ). +adv( 'ingratiatingly', normal ). +adv( 'inherently', normal ). +adv( 'inhumanely', normal ). +adv( 'inimitably', normal ). +adv( 'iniquitously', normal ). +adv( 'initially', normal ). +adv( 'injudiciously', normal ). +adv( 'inland', normal ). +adv( 'innately', normal ). +adv( 'innocently', normal ). +adv( 'inoffensively', normal ). +adv( 'inopportunely', normal ). +adv( 'inordinately', normal ). +adv( 'inorganically', normal ). +adv( 'inquiringly', normal ). +adv( 'inquisitively', normal ). +adv( 'insanely', normal ). +adv( 'insatiably', normal ). +adv( 'insecurely', normal ). +adv( 'insensibly', normal ). +adv( 'insensitively', normal ). +adv( 'inshore', normal ). +adv( 'inside', normal ). +adv( 'insidiously', normal ). +adv( 'insignificantly', normal ). +adv( 'insincerely', normal ). +adv( 'insinuatingly', normal ). +adv( 'insipidly', normal ). +adv( 'insofar', normal ). +adv( 'insolently', normal ). +adv( 'insomuch', normal ). +adv( 'inspirationally', normal ). +adv( 'instantaneously', normal ). +adv( 'instantly', normal ). +adv( 'instead', normal ). +adv( 'instinctively', normal ). +adv( 'institutionally', normal ). +adv( 'instructively', normal ). +adv( 'insubstantially', normal ). +adv( 'insufficiently', normal ). +adv( 'insultingly', normal ). +adv( 'insuperably', normal ). +adv( 'integrally', normal ). +adv( 'intellectually', normal ). +adv( 'intelligently', normal ). +adv( 'intelligibly', normal ). +adv( 'intemperately', normal ). +adv( 'intensely', normal ). +adv( 'intensively', normal ). +adv( 'intentionally', normal ). +adv( 'intently', normal ). +adv( 'inter alia', normal ). +adv( 'interchangeably', normal ). +adv( 'interdepartmentally', normal ). +adv( 'interestingly', normal ). +adv( 'intermediately', normal ). +adv( 'interminably', normal ). +adv( 'intermittently', normal ). +adv( 'internally', normal ). +adv( 'internationally', normal ). +adv( 'interrogatively', normal ). +adv( 'intimately', normal ). +adv( 'intolerably', normal ). +adv( 'intolerantly', normal ). +adv( 'intransitively', normal ). +adv( 'intravenously', normal ). +adv( 'intrepidly', normal ). +adv( 'intricately', normal ). +adv( 'intrinsically', normal ). +adv( 'intuitively', normal ). +adv( 'invariably', normal ). +adv( 'inventively', normal ). +adv( 'inversely', normal ). +adv( 'invidiously', normal ). +adv( 'invincibly', normal ). +adv( 'invisibly', normal ). +adv( 'invitingly', normal ). +adv( 'involuntarily', normal ). +adv( 'inward', normal ). +adv( 'inwardly', normal ). +adv( 'inwards', normal ). +adv( 'ipso facto', normal ). +adv( 'irately', normal ). +adv( 'ironically', normal ). +adv( 'irrationally', normal ). +adv( 'irregularly', normal ). +adv( 'irrelevantly', normal ). +adv( 'irretrievably', normal ). +adv( 'irreverently', normal ). +adv( 'irreversibly', normal ). +adv( 'irritably', normal ). +adv( 'item', normal ). +adv( 'jarringly', normal ). +adv( 'jauntily', normal ). +adv( 'jealously', normal ). +adv( 'jeeringly', normal ). +adv( 'jejunely', normal ). +adv( 'jerkily', normal ). +adv( 'jestingly', normal ). +adv( 'jocosely', normal ). +adv( 'jocularly', normal ). +adv( 'jointly', normal ). +adv( 'jokingly', normal ). +adv( 'jolly', normal ). +adv( 'journalistically', normal ). +adv( 'jovially', normal ). +adv( 'joyfully', normal ). +adv( 'joylessly', normal ). +adv( 'joyously', normal ). +adv( 'jubilantly', normal ). +adv( 'judiciously', normal ). +adv( 'just', normal ). +adv( 'justifiably', normal ). +adv( 'justly', normal ). +adv( 'keenly', normal ). +adv( 'killingly', normal ). +adv( 'kinda', normal ). +adv( 'kindly', normal ). +adv( 'knavishly', normal ). +adv( 'knee-deep', normal ). +adv( 'knee-high', normal ). +adv( 'knowingly', normal ). +adv( 'laboriously', normal ). +adv( 'lackadaisically', normal ). +adv( 'laconically', normal ). +adv( 'lamely', normal ). +adv( 'lamentably', normal ). +adv( 'landward', normal ). +adv( 'langsyne', normal ). +adv( 'languidly', normal ). +adv( 'languorously', normal ). +adv( 'large', normal ). +adv( 'largely', normal ). +adv( 'lasciviously', normal ). +adv( 'last', normal ). +adv( 'lastly', normal ). +adv( 'late', normal ). +adv( 'lately', normal ). +adv( 'laterally', normal ). +adv( 'latterly', normal ). +adv( 'laudably', normal ). +adv( 'laughably', normal ). +adv( 'laughingly', normal ). +adv( 'lavishly', normal ). +adv( 'lawfully', normal ). +adv( 'lawlessly', normal ). +adv( 'laxly', normal ). +adv( 'lazily', normal ). +adv( 'learnedly', normal ). +adv( 'least', normal ). +adv( 'leastways', normal ). +adv( 'leastwise', normal ). +adv( 'leeward', normal ). +adv( 'left', normal ). +adv( 'legally', normal ). +adv( 'legato', normal ). +adv( 'legibly', normal ). +adv( 'legitimately', normal ). +adv( 'leisurely', normal ). +adv( 'lengthily', normal ). +adv( 'lengthways', normal ). +adv( 'lengthwise', normal ). +adv( 'leniently', normal ). +adv( 'lento', normal ). +adv( 'less', normal ). +adv( 'lethargically', normal ). +adv( 'lewdly', normal ). +adv( 'lexically', normal ). +adv( 'liberally', normal ). +adv( 'licentiously', normal ). +adv( 'lief', normal ). +adv( 'lifelessly', normal ). +adv( 'light', normal ). +adv( 'light-handedly', normal ). +adv( 'light-headedly', normal ). +adv( 'light-heartedly', normal ). +adv( 'lightly', normal ). +adv( 'lightsomely', normal ). +adv( 'like', normal ). +adv( 'likely', normal ). +adv( 'likewise', normal ). +adv( 'limpidly', normal ). +adv( 'limply', normal ). +adv( 'lineally', normal ). +adv( 'linearly', normal ). +adv( 'lingeringly', normal ). +adv( 'linguistically', normal ). +adv( 'lispingly', normal ). +adv( 'listlessly', normal ). +adv( 'literally', normal ). +adv( 'little', normal ). +adv( 'live', normal ). +adv( 'lividly', normal ). +adv( 'locally', normal ). +adv( 'loftily', normal ). +adv( 'logarithmically', normal ). +adv( 'logically', normal ). +adv( 'long', normal ). +adv( 'longer', normal ). +adv( 'longest', normal ). +adv( 'longingly', normal ). +adv( 'longitudinally', normal ). +adv( 'longways', normal ). +adv( 'longwise', normal ). +adv( 'loosely', normal ). +adv( 'loquaciously', normal ). +adv( 'loud', normal ). +adv( 'loudly', normal ). +adv( 'louringly', normal ). +adv( 'lovingly', normal ). +adv( 'low', normal ). +adv( 'lower', normal ). +adv( 'lowest', normal ). +adv( 'loyally', normal ). +adv( 'lucidly', normal ). +adv( 'luckily', normal ). +adv( 'ludicrously', normal ). +adv( 'lugubriously', normal ). +adv( 'lukewarmly', normal ). +adv( 'luridly', normal ). +adv( 'lusciously', normal ). +adv( 'lustfully', normal ). +adv( 'lustily', normal ). +adv( 'luxuriantly', normal ). +adv( 'luxuriously', normal ). +adv( 'lyrically', normal ). +adv( 'madly', normal ). +adv( 'magically', normal ). +adv( 'magisterially', normal ). +adv( 'magnanimously', normal ). +adv( 'magnetically', normal ). +adv( 'magnificently', normal ). +adv( 'magniloquently', normal ). +adv( 'mainly', normal ). +adv( 'majestically', normal ). +adv( 'maladroitly', normal ). +adv( 'malapropos', normal ). +adv( 'malevolently', normal ). +adv( 'maliciously', normal ). +adv( 'malignantly', normal ). +adv( 'manageably', normal ). +adv( 'manfully', normal ). +adv( 'mangily', normal ). +adv( 'maniacally', normal ). +adv( 'manifestly', normal ). +adv( 'manually', normal ). +adv( 'marginally', normal ). +adv( 'markedly', normal ). +adv( 'martially', normal ). +adv( 'marvellously', normal ). +adv( 'marvelously', normal ). +adv( 'masochistically', normal ). +adv( 'massively', normal ). +adv( 'masterfully', normal ). +adv( 'materialistically', normal ). +adv( 'materially', normal ). +adv( 'maternally', normal ). +adv( 'mathematically', normal ). +adv( 'maturely', normal ). +adv( 'mawkishly', normal ). +adv( 'maximally', normal ). +adv( 'maybe', normal ). +adv( 'meagrely', normal ). +adv( 'meanderingly', normal ). +adv( 'meaningfully', normal ). +adv( 'meaningly', normal ). +adv( 'meanly', normal ). +adv( 'meantime', normal ). +adv( 'meanwhile', normal ). +adv( 'measurably', normal ). +adv( 'mechanically', normal ). +adv( 'mechanistically', normal ). +adv( 'medially', normal ). +adv( 'medically', normal ). +adv( 'meditatively', normal ). +adv( 'meekly', normal ). +adv( 'mellowly', normal ). +adv( 'melodiously', normal ). +adv( 'melodramatically', normal ). +adv( 'memorably', normal ). +adv( 'menacingly', normal ). +adv( 'mendaciously', normal ). +adv( 'menially', normal ). +adv( 'mentally', normal ). +adv( 'mercifully', normal ). +adv( 'mercilessly', normal ). +adv( 'merely', normal ). +adv( 'meretriciously', normal ). +adv( 'meritoriously', normal ). +adv( 'merrily', normal ). +adv( 'meseems', normal ). +adv( 'messily', normal ). +adv( 'metaphorically', normal ). +adv( 'metaphysically', normal ). +adv( 'methinks', normal ). +adv( 'methodically', normal ). +adv( 'methodologically', normal ). +adv( 'methought', normal ). +adv( 'meticulously', normal ). +adv( 'metrically', normal ). +adv( 'mezzo', normal ). +adv( 'microscopically', normal ). +adv( 'middling', normal ). +adv( 'midmost', normal ). +adv( 'midships', normal ). +adv( 'midway', normal ). +adv( 'midweek', normal ). +adv( 'mightily', normal ). +adv( 'mighty', normal ). +adv( 'mildly', normal ). +adv( 'militarily', normal ). +adv( 'millionfold', normal ). +adv( 'mincingly', normal ). +adv( 'mindfully', normal ). +adv( 'mindlessly', normal ). +adv( 'minimally', normal ). +adv( 'ministerially', normal ). +adv( 'minutely', normal ). +adv( 'miraculously', normal ). +adv( 'mirthfully', normal ). +adv( 'mischievously', normal ). +adv( 'miserably', normal ). +adv( 'mistakenly', normal ). +adv( 'mistily', normal ). +adv( 'mistrustfully', normal ). +adv( 'mockingly', normal ). +adv( 'moderately', normal ). +adv( 'modestly', normal ). +adv( 'modishly', normal ). +adv( 'moistly', normal ). +adv( 'molto', normal ). +adv( 'momentarily', normal ). +adv( 'momentously', normal ). +adv( 'monotonously', normal ). +adv( 'monstrously', normal ). +adv( 'monthly', normal ). +adv( 'moodily', normal ). +adv( 'morally', normal ). +adv( 'morbidly', normal ). +adv( 'more', normal ). +adv( 'moreover', normal ). +adv( 'morosely', normal ). +adv( 'morphologically', normal ). +adv( 'mortally', normal ). +adv( 'most', normal ). +adv( 'mostly', normal ). +adv( 'motionlessly', normal ). +adv( 'mournfully', normal ). +adv( 'much', normal ). +adv( 'mulishly', normal ). +adv( 'multifariously', normal ). +adv( 'mundanely', normal ). +adv( 'municipally', normal ). +adv( 'munificently', normal ). +adv( 'murderously', normal ). +adv( 'murkily', normal ). +adv( 'musically', normal ). +adv( 'musingly', normal ). +adv( 'mutatis mutandis', normal ). +adv( 'mutely', normal ). +adv( 'mutually', normal ). +adv( 'mysteriously', normal ). +adv( 'naively', normal ). +adv( 'nakedly', normal ). +adv( 'namely', normal ). +adv( 'narrow-mindedly', normal ). +adv( 'narrowly', normal ). +adv( 'nastily', normal ). +adv( 'nationally', normal ). +adv( 'nationwide', normal ). +adv( 'nattily', normal ). +adv( 'naturally', normal ). +adv( 'naughtily', normal ). +adv( 'nay', normal ). +adv( 'ne\'er', normal ). +adv( 'near', normal ). +adv( 'nearer', normal ). +adv( 'nearest', normal ). +adv( 'nearly', normal ). +adv( 'neatly', normal ). +adv( 'necessarily', normal ). +adv( 'needfully', normal ). +adv( 'needlessly', normal ). +adv( 'needs', normal ). +adv( 'nefariously', normal ). +adv( 'negatively', normal ). +adv( 'neglectfully', normal ). +adv( 'negligently', normal ). +adv( 'neither', normal ). +adv( 'nem con', normal ). +adv( 'nervelessly', normal ). +adv( 'nervously', normal ). +adv( 'neurotically', normal ). +adv( 'never', normal ). +adv( 'nevermore', normal ). +adv( 'nevertheless', normal ). +adv( 'new', normal ). +adv( 'newly', normal ). +adv( 'next', normal ). +adv( 'nicely', normal ). +adv( 'nigh', normal ). +adv( 'nigher', normal ). +adv( 'nighest', normal ). +adv( 'nightly', normal ). +adv( 'nimbly', normal ). +adv( 'ninefold', normal ). +adv( 'no', normal ). +adv( 'nobly', normal ). +adv( 'nohow', normal ). +adv( 'noiselessly', normal ). +adv( 'noisily', normal ). +adv( 'nominally', normal ). +adv( 'nonchalantly', normal ). +adv( 'none', normal ). +adv( 'nonstop', normal ). +adv( 'nor\'-east', normal ). +adv( 'nor\'-nor\'-east', normal ). +adv( 'nor\'-nor\'-west', normal ). +adv( 'nor\'-west', normal ). +adv( 'normally', normal ). +adv( 'north', normal ). +adv( 'north-northeast', normal ). +adv( 'north-northwest', normal ). +adv( 'northeast', normal ). +adv( 'northerly', normal ). +adv( 'northwards', normal ). +adv( 'northwest', normal ). +adv( 'nostalgically', normal ). +adv( 'not', normal ). +adv( 'notably', normal ). +adv( 'nothing', normal ). +adv( 'noticeably', normal ). +adv( 'notoriously', normal ). +adv( 'notwithstanding', normal ). +adv( 'now', normal ). +adv( 'nowadays', normal ). +adv( 'nowhere', normal ). +adv( 'nowise', normal ). +adv( 'noxiously', normal ). +adv( 'numbly', normal ). +adv( 'numerically', normal ). +adv( 'nutritionally', normal ). +adv( 'o\'er', normal ). +adv( 'obdurately', normal ). +adv( 'obediently', normal ). +adv( 'objectionably', normal ). +adv( 'objectively', normal ). +adv( 'obligingly', normal ). +adv( 'obliquely', normal ). +adv( 'obnoxiously', normal ). +adv( 'obscenely', normal ). +adv( 'obscurely', normal ). +adv( 'obsequiously', normal ). +adv( 'observably', normal ). +adv( 'observantly', normal ). +adv( 'observingly', normal ). +adv( 'obsessionally', normal ). +adv( 'obsessively', normal ). +adv( 'obstinately', normal ). +adv( 'obstreperously', normal ). +adv( 'obstructively', normal ). +adv( 'obtrusively', normal ). +adv( 'obtusely', normal ). +adv( 'obviously', normal ). +adv( 'occasionally', normal ). +adv( 'oddly', normal ). +adv( 'odds-on', normal ). +adv( 'odiously', normal ). +adv( 'off', normal ). +adv( 'offensively', normal ). +adv( 'offhand', normal ). +adv( 'offhanded', normal ). +adv( 'offhandedly', normal ). +adv( 'officially', normal ). +adv( 'officiously', normal ). +adv( 'offside', normal ). +adv( 'offstage', normal ). +adv( 'oft', normal ). +adv( 'oft-times', normal ). +adv( 'often', normal ). +adv( 'oftener', normal ). +adv( 'okay', normal ). +adv( 'ominously', normal ). +adv( 'on', normal ). +adv( 'once', normal ). +adv( 'onerously', normal ). +adv( 'only', normal ). +adv( 'onshore', normal ). +adv( 'onward', normal ). +adv( 'onwards', normal ). +adv( 'opaquely', normal ). +adv( 'openly', normal ). +adv( 'opportunely', normal ). +adv( 'oppressively', normal ). +adv( 'opprobriously', normal ). +adv( 'optically', normal ). +adv( 'optimally', normal ). +adv( 'optimistically', normal ). +adv( 'optionally', normal ). +adv( 'opulently', normal ). +adv( 'orally', normal ). +adv( 'ordinarily', normal ). +adv( 'organically', normal ). +adv( 'organizationally', normal ). +adv( 'originally', normal ). +adv( 'ornately', normal ). +adv( 'orthogonally', normal ). +adv( 'ostensibly', normal ). +adv( 'ostentatiously', normal ). +adv( 'other', normal ). +adv( 'otherwise', normal ). +adv( 'out', normal ). +adv( 'out-of-doors', normal ). +adv( 'out-of-the-way', normal ). +adv( 'outdoors', normal ). +adv( 'outlandishly', normal ). +adv( 'outrageously', normal ). +adv( 'outright', normal ). +adv( 'outside', normal ). +adv( 'outspokenly', normal ). +adv( 'outstandingly', normal ). +adv( 'outward', normal ). +adv( 'outwardly', normal ). +adv( 'outwards', normal ). +adv( 'over', normal ). +adv( 'overarm', normal ). +adv( 'overbearingly', normal ). +adv( 'overboard', normal ). +adv( 'overhead', normal ). +adv( 'overleaf', normal ). +adv( 'overly', normal ). +adv( 'overmuch', normal ). +adv( 'overnight', normal ). +adv( 'oversea', normal ). +adv( 'overseas', normal ). +adv( 'overside', normal ). +adv( 'overtime', normal ). +adv( 'overtly', normal ). +adv( 'overwhelmingly', normal ). +adv( 'owlishly', normal ). +adv( 'pacifically', normal ). +adv( 'painfully', normal ). +adv( 'painlessly', normal ). +adv( 'painstakingly', normal ). +adv( 'palatably', normal ). +adv( 'palely', normal ). +adv( 'pallidly', normal ). +adv( 'palpably', normal ). +adv( 'pantingly', normal ). +adv( 'par excellence', normal ). +adv( 'paradoxically', normal ). +adv( 'pardonably', normal ). +adv( 'parentally', normal ). +adv( 'parenthetically', normal ). +adv( 'pari passu', normal ). +adv( 'parochially', normal ). +adv( 'part', normal ). +adv( 'part-time', normal ). +adv( 'partially', normal ). +adv( 'particularly', normal ). +adv( 'partly', normal ). +adv( 'passably', normal ). +adv( 'passim', normal ). +adv( 'passing', normal ). +adv( 'passionately', normal ). +adv( 'passively', normal ). +adv( 'past', normal ). +adv( 'pat', normal ). +adv( 'patchily', normal ). +adv( 'patently', normal ). +adv( 'paternally', normal ). +adv( 'pathetically', normal ). +adv( 'pathologically', normal ). +adv( 'patiently', normal ). +adv( 'patriotically', normal ). +adv( 'patronizingly', normal ). +adv( 'pawkily', normal ). +adv( 'peaceably', normal ). +adv( 'peacefully', normal ). +adv( 'peculiarly', normal ). +adv( 'pedantically', normal ). +adv( 'peevishly', normal ). +adv( 'pejoratively', normal ). +adv( 'pell-mell', normal ). +adv( 'pellucidly', normal ). +adv( 'penally', normal ). +adv( 'penetratingly', normal ). +adv( 'penitentially', normal ). +adv( 'penitently', normal ). +adv( 'pensively', normal ). +adv( 'penuriously', normal ). +adv( 'peradventure', normal ). +adv( 'perceptibly', normal ). +adv( 'perceptively', normal ). +adv( 'perceptually', normal ). +adv( 'perchance', normal ). +adv( 'peremptorily', normal ). +adv( 'perennially', normal ). +adv( 'perfectly', normal ). +adv( 'perfidiously', normal ). +adv( 'perforce', normal ). +adv( 'perfunctorily', normal ). +adv( 'perhaps', normal ). +adv( 'perilously', normal ). +adv( 'periodically', normal ). +adv( 'perkily', normal ). +adv( 'permanently', normal ). +adv( 'permissibly', normal ). +adv( 'perniciously', normal ). +adv( 'perpendicularly', normal ). +adv( 'perpetually', normal ). +adv( 'perplexedly', normal ). +adv( 'perseveringly', normal ). +adv( 'persistently', normal ). +adv( 'personally', normal ). +adv( 'perspicuously', normal ). +adv( 'persuasively', normal ). +adv( 'pertinaciously', normal ). +adv( 'pertinently', normal ). +adv( 'pertly', normal ). +adv( 'pervasively', normal ). +adv( 'perversely', normal ). +adv( 'pessimistically', normal ). +adv( 'pettily', normal ). +adv( 'pettishly', normal ). +adv( 'petulantly', normal ). +adv( 'pharmacologically', normal ). +adv( 'phenomenally', normal ). +adv( 'philanthropically', normal ). +adv( 'philosophically', normal ). +adv( 'phlegmatically', normal ). +adv( 'phonetically', normal ). +adv( 'photographically', normal ). +adv( 'phut', normal ). +adv( 'physically', normal ). +adv( 'pianissimo', normal ). +adv( 'piano', normal ). +adv( 'pickaback', normal ). +adv( 'picturesquely', normal ). +adv( 'piecemeal', normal ). +adv( 'piercingly', normal ). +adv( 'pig-headedly', normal ). +adv( 'piggishly', normal ). +adv( 'piously', normal ). +adv( 'piping', normal ). +adv( 'piquantly', normal ). +adv( 'piratically', normal ). +adv( 'pit-a-pat', normal ). +adv( 'piteously', normal ). +adv( 'pithily', normal ). +adv( 'pitiably', normal ). +adv( 'pitifully', normal ). +adv( 'pitilessly', normal ). +adv( 'pityingly', normal ). +adv( 'pizzicato', normal ). +adv( 'placatingly', normal ). +adv( 'placidly', normal ). +adv( 'plaguily', normal ). +adv( 'plain', normal ). +adv( 'plainly', normal ). +adv( 'plaintively', normal ). +adv( 'plausibly', normal ). +adv( 'playfully', normal ). +adv( 'pleadingly', normal ). +adv( 'pleasantly', normal ). +adv( 'pleasingly', normal ). +adv( 'pleasurably', normal ). +adv( 'plenarily', normal ). +adv( 'plenteously', normal ). +adv( 'plentifully', normal ). +adv( 'plenty', normal ). +adv( 'pliantly', normal ). +adv( 'ploddingly', normal ). +adv( 'plonk', normal ). +adv( 'plop', normal ). +adv( 'pluckily', normal ). +adv( 'plumb', normal ). +adv( 'plump', normal ). +adv( 'pneumatically', normal ). +adv( 'poetically', normal ). +adv( 'poignantly', normal ). +adv( 'point-blank', normal ). +adv( 'pointedly', normal ). +adv( 'pointlessly', normal ). +adv( 'poisonously', normal ). +adv( 'polemically', normal ). +adv( 'politely', normal ). +adv( 'politically', normal ). +adv( 'pompously', normal ). +adv( 'ponderously', normal ). +adv( 'poorly', normal ). +adv( 'pop', normal ). +adv( 'popishly', normal ). +adv( 'popularly', normal ). +adv( 'portentously', normal ). +adv( 'positively', normal ). +adv( 'possessively', normal ). +adv( 'possibly', normal ). +adv( 'post meridiem', normal ). +adv( 'post-free', normal ). +adv( 'post-haste', normal ). +adv( 'post-paid', normal ). +adv( 'posthumously', normal ). +adv( 'potentially', normal ). +adv( 'potently', normal ). +adv( 'poutingly', normal ). +adv( 'powerfully', normal ). +adv( 'powerlessly', normal ). +adv( 'practicably', normal ). +adv( 'practically', normal ). +adv( 'pragmatically', normal ). +adv( 'praiseworthily', normal ). +adv( 'pre-eminently', normal ). +adv( 'precariously', normal ). +adv( 'precious', normal ). +adv( 'preciously', normal ). +adv( 'precipitately', normal ). +adv( 'precipitously', normal ). +adv( 'precisely', normal ). +adv( 'precociously', normal ). +adv( 'predictably', normal ). +adv( 'predominantly', normal ). +adv( 'preferably', normal ). +adv( 'prematurely', normal ). +adv( 'preponderantly', normal ). +adv( 'preposterously', normal ). +adv( 'presciently', normal ). +adv( 'presentably', normal ). +adv( 'presently', normal ). +adv( 'pressingly', normal ). +adv( 'prestissimo', normal ). +adv( 'presto', normal ). +adv( 'presumably', normal ). +adv( 'presumptively', normal ). +adv( 'presumptuously', normal ). +adv( 'pretendedly', normal ). +adv( 'pretentiously', normal ). +adv( 'preternaturally', normal ). +adv( 'prettily', normal ). +adv( 'pretty', normal ). +adv( 'previously', normal ). +adv( 'priggishly', normal ). +adv( 'prima facie', normal ). +adv( 'primarily', normal ). +adv( 'primitively', normal ). +adv( 'primly', normal ). +adv( 'principally', normal ). +adv( 'privately', normal ). +adv( 'privily', normal ). +adv( 'pro', normal ). +adv( 'pro forma', normal ). +adv( 'pro rata', normal ). +adv( 'pro tem', normal ). +adv( 'pro tempore', normal ). +adv( 'probabilistically', normal ). +adv( 'probably', normal ). +adv( 'problematically', normal ). +adv( 'prodigally', normal ). +adv( 'prodigiously', normal ). +adv( 'productively', normal ). +adv( 'profanely', normal ). +adv( 'professedly', normal ). +adv( 'professionally', normal ). +adv( 'proficiently', normal ). +adv( 'profitably', normal ). +adv( 'profitlessly', normal ). +adv( 'profoundly', normal ). +adv( 'profusely', normal ). +adv( 'progressively', normal ). +adv( 'prohibitively', normal ). +adv( 'prominently', normal ). +adv( 'promiscuously', normal ). +adv( 'promisingly', normal ). +adv( 'promptly', normal ). +adv( 'pronto', normal ). +adv( 'properly', normal ). +adv( 'prophetically', normal ). +adv( 'propitiously', normal ). +adv( 'proportionally', normal ). +adv( 'proportionately', normal ). +adv( 'prosaically', normal ). +adv( 'prosily', normal ). +adv( 'prosperously', normal ). +adv( 'protectively', normal ). +adv( 'protestingly', normal ). +adv( 'proudly', normal ). +adv( 'proverbially', normal ). +adv( 'providentially', normal ). +adv( 'providently', normal ). +adv( 'provincially', normal ). +adv( 'provisionally', normal ). +adv( 'provocatively', normal ). +adv( 'provokingly', normal ). +adv( 'prox', normal ). +adv( 'prudently', normal ). +adv( 'prudishly', normal ). +adv( 'pruriently', normal ). +adv( 'pryingly', normal ). +adv( 'psychologically', normal ). +adv( 'publicly', normal ). +adv( 'puckishly', normal ). +adv( 'pugnaciously', normal ). +adv( 'punctiliously', normal ). +adv( 'punctually', normal ). +adv( 'pungently', normal ). +adv( 'punily', normal ). +adv( 'purely', normal ). +adv( 'puritanically', normal ). +adv( 'purposefully', normal ). +adv( 'purposelessly', normal ). +adv( 'purposely', normal ). +adv( 'quaintly', normal ). +adv( 'qualitatively', normal ). +adv( 'quantitatively', normal ). +adv( 'quarterly', normal ). +adv( 'queasily', normal ). +adv( 'queerly', normal ). +adv( 'querulously', normal ). +adv( 'questionably', normal ). +adv( 'questioningly', normal ). +adv( 'quick', normal ). +adv( 'quicker', normal ). +adv( 'quickest', normal ). +adv( 'quickly', normal ). +adv( 'quiescently', normal ). +adv( 'quietly', normal ). +adv( 'quite', normal ). +adv( 'quixotically', normal ). +adv( 'quizzically', normal ). +adv( 'racially', normal ). +adv( 'racily', normal ). +adv( 'radially', normal ). +adv( 'radiantly', normal ). +adv( 'radically', normal ). +adv( 'raffishly', normal ). +adv( 'raggedly', normal ). +adv( 'rakishly', normal ). +adv( 'rallentando', normal ). +adv( 'rampantly', normal ). +adv( 'randomly', normal ). +adv( 'rankly', normal ). +adv( 'rapaciously', normal ). +adv( 'rapidly', normal ). +adv( 'rapturously', normal ). +adv( 'rarely', normal ). +adv( 'rashly', normal ). +adv( 'raspingly', normal ). +adv( 'rather', normal ). +adv( 'rationally', normal ). +adv( 'rattling', normal ). +adv( 'raucously', normal ). +adv( 'ravenously', normal ). +adv( 'raving', normal ). +adv( 'ravishingly', normal ). +adv( 'readily', normal ). +adv( 'realistically', normal ). +adv( 'really', normal ). +adv( 'rearwards', normal ). +adv( 'reasonably', normal ). +adv( 'reassuringly', normal ). +adv( 'rebelliously', normal ). +adv( 'rebukingly', normal ). +adv( 'recently', normal ). +adv( 'receptively', normal ). +adv( 'reciprocally', normal ). +adv( 'recklessly', normal ). +adv( 'recognizably', normal ). +adv( 'reflectively', normal ). +adv( 'refreshingly', normal ). +adv( 'regally', normal ). +adv( 'regionally', normal ). +adv( 'regretfully', normal ). +adv( 'regrettably', normal ). +adv( 'regularly', normal ). +adv( 'relatively', normal ). +adv( 'relentlessly', normal ). +adv( 'relevantly', normal ). +adv( 'reliably', normal ). +adv( 'religiously', normal ). +adv( 'reluctantly', normal ). +adv( 'remarkably', normal ). +adv( 'reminiscently', normal ). +adv( 'remorsefully', normal ). +adv( 'remorselessly', normal ). +adv( 'remotely', normal ). +adv( 'rent-free', normal ). +adv( 'repeatedly', normal ). +adv( 'repentantly', normal ). +adv( 'repetitively', normal ). +adv( 'reportedly', normal ). +adv( 'reprehensibly', normal ). +adv( 'reproachfully', normal ). +adv( 'reprovingly', normal ). +adv( 'repulsively', normal ). +adv( 'reputably', normal ). +adv( 'reputedly', normal ). +adv( 'resentfully', normal ). +adv( 'reservedly', normal ). +adv( 'resignedly', normal ). +adv( 'resolutely', normal ). +adv( 'resoundingly', normal ). +adv( 'resourcefully', normal ). +adv( 'respectably', normal ). +adv( 'respectfully', normal ). +adv( 'respectively', normal ). +adv( 'resplendently', normal ). +adv( 'responsibly', normal ). +adv( 'restfully', normal ). +adv( 'restively', normal ). +adv( 'restlessly', normal ). +adv( 'restrictively', normal ). +adv( 'retail', normal ). +adv( 'retentively', normal ). +adv( 'reticently', normal ). +adv( 'retroactively', normal ). +adv( 'retrospectively', normal ). +adv( 'revengefully', normal ). +adv( 'reverentially', normal ). +adv( 'reverently', normal ). +adv( 'reversely', normal ). +adv( 'revoltingly', normal ). +adv( 'rhetorically', normal ). +adv( 'rhythmically', normal ). +adv( 'richly', normal ). +adv( 'ridiculously', normal ). +adv( 'right', normal ). +adv( 'right-down', normal ). +adv( 'righteously', normal ). +adv( 'rightfully', normal ). +adv( 'rightly', normal ). +adv( 'rigidly', normal ). +adv( 'rigorously', normal ). +adv( 'riotously', normal ). +adv( 'ripely', normal ). +adv( 'riskily', normal ). +adv( 'roaring', normal ). +adv( 'robustly', normal ). +adv( 'roguishly', normal ). +adv( 'romantically', normal ). +adv( 'roomily', normal ). +adv( 'rotationally', normal ). +adv( 'rottenly', normal ). +adv( 'rotundly', normal ). +adv( 'rough', normal ). +adv( 'roughly', normal ). +adv( 'round', normal ). +adv( 'round-arm', normal ). +adv( 'round-the-clock', normal ). +adv( 'roundly', normal ). +adv( 'rowdily', normal ). +adv( 'royally', normal ). +adv( 'rudely', normal ). +adv( 'ruefully', normal ). +adv( 'ruggedly', normal ). +adv( 'ruinously', normal ). +adv( 'ruthlessly', normal ). +adv( 'sacredly', normal ). +adv( 'sadly', normal ). +adv( 'safely', normal ). +adv( 'sagaciously', normal ). +adv( 'sagely', normal ). +adv( 'salaciously', normal ). +adv( 'same', normal ). +adv( 'sanctimoniously', normal ). +adv( 'sanely', normal ). +adv( 'sapiently', normal ). +adv( 'sarcastically', normal ). +adv( 'sardonically', normal ). +adv( 'satirically', normal ). +adv( 'satisfactorily', normal ). +adv( 'satisfyingly', normal ). +adv( 'saucily', normal ). +adv( 'savagely', normal ). +adv( 'scandalously', normal ). +adv( 'scantily', normal ). +adv( 'scarcely', normal ). +adv( 'scathingly', normal ). +adv( 'scenically', normal ). +adv( 'sceptically', normal ). +adv( 'schematically', normal ). +adv( 'scientifically', normal ). +adv( 'scoffingly', normal ). +adv( 'scorching', normal ). +adv( 'scornfully', normal ). +adv( 'scot-free', normal ). +adv( 'scrappily', normal ). +adv( 'screamingly', normal ). +adv( 'scrupulously', normal ). +adv( 'scurrilously', normal ). +adv( 'scurvily', normal ). +adv( 'searchingly', normal ). +adv( 'seasonally', normal ). +adv( 'seawards', normal ). +adv( 'second', normal ). +adv( 'second-best', normal ). +adv( 'second-class', normal ). +adv( 'secondarily', normal ). +adv( 'secondly', normal ). +adv( 'secretively', normal ). +adv( 'secretly', normal ). +adv( 'securely', normal ). +adv( 'sedately', normal ). +adv( 'seductively', normal ). +adv( 'sedulously', normal ). +adv( 'seedily', normal ). +adv( 'seemingly', normal ). +adv( 'seldom', normal ). +adv( 'selectively', normal ). +adv( 'selfconsciously', normal ). +adv( 'selfishly', normal ). +adv( 'sensationally', normal ). +adv( 'senselessly', normal ). +adv( 'sensibly', normal ). +adv( 'sensitively', normal ). +adv( 'sensuously', normal ). +adv( 'sententiously', normal ). +adv( 'sentimentally', normal ). +adv( 'separably', normal ). +adv( 'separately', normal ). +adv( 'sequentially', normal ). +adv( 'serenely', normal ). +adv( 'serially', normal ). +adv( 'seriatim', normal ). +adv( 'seriously', normal ). +adv( 'servilely', normal ). +adv( 'sevenfold', normal ). +adv( 'seventhly', normal ). +adv( 'severally', normal ). +adv( 'severely', normal ). +adv( 'sexually', normal ). +adv( 'shabbily', normal ). +adv( 'shaggily', normal ). +adv( 'shakily', normal ). +adv( 'shamefacedly', normal ). +adv( 'shamefully', normal ). +adv( 'shamelessly', normal ). +adv( 'shapelessly', normal ). +adv( 'sharp', normal ). +adv( 'sharply', normal ). +adv( 'sheepishly', normal ). +adv( 'sheer', normal ). +adv( 'shiftily', normal ). +adv( 'shipshape', normal ). +adv( 'shock', normal ). +adv( 'shockingly', normal ). +adv( 'short', normal ). +adv( 'shortly', normal ). +adv( 'showily', normal ). +adv( 'shrewdly', normal ). +adv( 'shrewishly', normal ). +adv( 'shrilly', normal ). +adv( 'shudderingly', normal ). +adv( 'shyly', normal ). +adv( 'sic', normal ). +adv( 'sickeningly', normal ). +adv( 'side-face', normal ). +adv( 'side-saddle', normal ). +adv( 'sidelong', normal ). +adv( 'sidewards', normal ). +adv( 'sideways', normal ). +adv( 'signally', normal ). +adv( 'significantly', normal ). +adv( 'silently', normal ). +adv( 'silkily', normal ). +adv( 'similarly', normal ). +adv( 'simperingly', normal ). +adv( 'simply', normal ). +adv( 'simultaneously', normal ). +adv( 'since', normal ). +adv( 'sincerely', normal ). +adv( 'sine die', normal ). +adv( 'single-handed', normal ). +adv( 'singly', normal ). +adv( 'singularly', normal ). +adv( 'sixfold', normal ). +adv( 'sixthly', normal ). +adv( 'skeptically', normal ). +adv( 'sketchily', normal ). +adv( 'skilfully', normal ). +adv( 'skimpily', normal ). +adv( 'skittishly', normal ). +adv( 'sky-high', normal ). +adv( 'skyward', normal ). +adv( 'skywards', normal ). +adv( 'slackly', normal ). +adv( 'slangily', normal ). +adv( 'slantingly', normal ). +adv( 'slantwise', normal ). +adv( 'slap', normal ). +adv( 'slap-bang', normal ). +adv( 'slapdash', normal ). +adv( 'slavishly', normal ). +adv( 'sleekly', normal ). +adv( 'sleepily', normal ). +adv( 'sleeplessly', normal ). +adv( 'slenderly', normal ). +adv( 'slick', normal ). +adv( 'slightingly', normal ). +adv( 'slightly', normal ). +adv( 'slimly', normal ). +adv( 'slopingly', normal ). +adv( 'sloppily', normal ). +adv( 'slouchingly', normal ). +adv( 'slow', normal ). +adv( 'slower', normal ). +adv( 'slowest', normal ). +adv( 'slowly', normal ). +adv( 'sluggishly', normal ). +adv( 'slyly', normal ). +adv( 'smack', normal ). +adv( 'small', normal ). +adv( 'smartly', normal ). +adv( 'smash', normal ). +adv( 'smilingly', normal ). +adv( 'smoothly', normal ). +adv( 'smugly', normal ). +adv( 'smuttily', normal ). +adv( 'snappishly', normal ). +adv( 'sneakingly', normal ). +adv( 'sneeringly', normal ). +adv( 'snobbishly', normal ). +adv( 'snootily', normal ). +adv( 'snugly', normal ). +adv( 'so', normal ). +adv( 'so-so', normal ). +adv( 'sobbingly', normal ). +adv( 'soberly', normal ). +adv( 'sociably', normal ). +adv( 'socially', normal ). +adv( 'sociologically', normal ). +adv( 'sock', normal ). +adv( 'softly', normal ). +adv( 'solely', normal ). +adv( 'solemnly', normal ). +adv( 'solicitously', normal ). +adv( 'solidly', normal ). +adv( 'solitarily', normal ). +adv( 'sombrely', normal ). +adv( 'some', normal ). +adv( 'someday', normal ). +adv( 'somehow', normal ). +adv( 'someplace', normal ). +adv( 'something', normal ). +adv( 'sometime', normal ). +adv( 'sometimes', normal ). +adv( 'someway', normal ). +adv( 'somewhat', normal ). +adv( 'somewhere', normal ). +adv( 'somnolently', normal ). +adv( 'sonorously', normal ). +adv( 'soon', normal ). +adv( 'sooner', normal ). +adv( 'soonest', normal ). +adv( 'soothingly', normal ). +adv( 'sopping', normal ). +adv( 'sordidly', normal ). +adv( 'sorely', normal ). +adv( 'sorrowfully', normal ). +adv( 'sottishly', normal ). +adv( 'sotto voce', normal ). +adv( 'sou\'-east', normal ). +adv( 'sou\'-sou\'-east', normal ). +adv( 'sou\'-sou\'-west', normal ). +adv( 'sou\'-west', normal ). +adv( 'soulfully', normal ). +adv( 'soullessly', normal ). +adv( 'sound', normal ). +adv( 'soundlessly', normal ). +adv( 'soundly', normal ). +adv( 'sourly', normal ). +adv( 'south', normal ). +adv( 'south-southeast', normal ). +adv( 'south-southwest', normal ). +adv( 'southeast', normal ). +adv( 'southerly', normal ). +adv( 'southward', normal ). +adv( 'southwards', normal ). +adv( 'southwest', normal ). +adv( 'spaciously', normal ). +adv( 'sparely', normal ). +adv( 'sparingly', normal ). +adv( 'sparsely', normal ). +adv( 'spasmodically', normal ). +adv( 'spatially', normal ). +adv( 'specially', normal ). +adv( 'specifically', normal ). +adv( 'speciously', normal ). +adv( 'spectacularly', normal ). +adv( 'speculatively', normal ). +adv( 'speechlessly', normal ). +adv( 'speedily', normal ). +adv( 'spicily', normal ). +adv( 'spirally', normal ). +adv( 'spiritually', normal ). +adv( 'spitefully', normal ). +adv( 'splendidly', normal ). +adv( 'spontaneously', normal ). +adv( 'sporadically', normal ). +adv( 'sportingly', normal ). +adv( 'sportively', normal ). +adv( 'spotlessly', normal ). +adv( 'sprucely', normal ). +adv( 'spuriously', normal ). +adv( 'squalidly', normal ). +adv( 'square', normal ). +adv( 'squarely', normal ). +adv( 'squeamishly', normal ). +adv( 'staccato', normal ). +adv( 'staggeringly', normal ). +adv( 'stagily', normal ). +adv( 'staidly', normal ). +adv( 'stammeringly', normal ). +adv( 'standoffishly', normal ). +adv( 'staring', normal ). +adv( 'stark', normal ). +adv( 'starkly', normal ). +adv( 'startlingly', normal ). +adv( 'statically', normal ). +adv( 'statistically', normal ). +adv( 'statutorily', normal ). +adv( 'staunchly', normal ). +adv( 'steadfastly', normal ). +adv( 'steadily', normal ). +adv( 'steady', normal ). +adv( 'stealthily', normal ). +adv( 'steeply', normal ). +adv( 'sternly', normal ). +adv( 'stertorously', normal ). +adv( 'stickily', normal ). +adv( 'stiff', normal ). +adv( 'stiffly', normal ). +adv( 'still', normal ). +adv( 'stiltedly', normal ). +adv( 'stingily', normal ). +adv( 'stirringly', normal ). +adv( 'stochastically', normal ). +adv( 'stock-still', normal ). +adv( 'stockily', normal ). +adv( 'stoically', normal ). +adv( 'stolidly', normal ). +adv( 'stonily', normal ). +adv( 'stormily', normal ). +adv( 'stoutly', normal ). +adv( 'straight', normal ). +adv( 'straightforwardly', normal ). +adv( 'straightway', normal ). +adv( 'strangely', normal ). +adv( 'strategically', normal ). +adv( 'strenuously', normal ). +adv( 'strictly', normal ). +adv( 'stridently', normal ). +adv( 'strikingly', normal ). +adv( 'stringently', normal ). +adv( 'strongly', normal ). +adv( 'structurally', normal ). +adv( 'stubbornly', normal ). +adv( 'studiously', normal ). +adv( 'stuffily', normal ). +adv( 'stunningly', normal ). +adv( 'stupendously', normal ). +adv( 'stupidly', normal ). +adv( 'sturdily', normal ). +adv( 'stutteringly', normal ). +adv( 'stylishly', normal ). +adv( 'stylistically', normal ). +adv( 'suavely', normal ). +adv( 'sub rosa', normal ). +adv( 'subconsciously', normal ). +adv( 'subjectively', normal ). +adv( 'sublimely', normal ). +adv( 'submissively', normal ). +adv( 'subsequently', normal ). +adv( 'subserviently', normal ). +adv( 'substantially', normal ). +adv( 'subtly', normal ). +adv( 'successfully', normal ). +adv( 'successively', normal ). +adv( 'succinctly', normal ). +adv( 'suddenly', normal ). +adv( 'sufficiently', normal ). +adv( 'suggestively', normal ). +adv( 'suitably', normal ). +adv( 'sulkily', normal ). +adv( 'sullenly', normal ). +adv( 'sultrily', normal ). +adv( 'summarily', normal ). +adv( 'sumptuously', normal ). +adv( 'sunnily', normal ). +adv( 'superbly', normal ). +adv( 'superciliously', normal ). +adv( 'superficially', normal ). +adv( 'superfluously', normal ). +adv( 'supernaturally', normal ). +adv( 'superstitiously', normal ). +adv( 'supinely', normal ). +adv( 'supposedly', normal ). +adv( 'supra', normal ). +adv( 'supremely', normal ). +adv( 'sure', normal ). +adv( 'surely', normal ). +adv( 'surgically', normal ). +adv( 'surlily', normal ). +adv( 'surpassingly', normal ). +adv( 'surprisedly', normal ). +adv( 'surprisingly', normal ). +adv( 'surreptitiously', normal ). +adv( 'suspiciously', normal ). +adv( 'sweepingly', normal ). +adv( 'sweetly', normal ). +adv( 'swiftly', normal ). +adv( 'swimmingly', normal ). +adv( 'symbolically', normal ). +adv( 'symmetrically', normal ). +adv( 'sympathetically', normal ). +adv( 'symptomatically', normal ). +adv( 'synchronously', normal ). +adv( 'synoptically', normal ). +adv( 'syntactically', normal ). +adv( 'synthetically', normal ). +adv( 'systematically', normal ). +adv( 't^ete-`a-t^ete', normal ). +adv( 'table d\'h^ote', normal ). +adv( 'tacitly', normal ). +adv( 'taciturnly', normal ). +adv( 'tactfully', normal ). +adv( 'tactically', normal ). +adv( 'tactlessly', normal ). +adv( 'tamely', normal ). +adv( 'tandem', normal ). +adv( 'tangibly', normal ). +adv( 'tardily', normal ). +adv( 'tartly', normal ). +adv( 'tastefully', normal ). +adv( 'tastelessly', normal ). +adv( 'tastily', normal ). +adv( 'tattily', normal ). +adv( 'tauntingly', normal ). +adv( 'tautly', normal ). +adv( 'tawdrily', normal ). +adv( 'tearfully', normal ). +adv( 'teasingly', normal ). +adv( 'technically', normal ). +adv( 'tediously', normal ). +adv( 'telegraphically', normal ). +adv( 'telescopically', normal ). +adv( 'tellingly', normal ). +adv( 'temperamentally', normal ). +adv( 'temperately', normal ). +adv( 'temporarily', normal ). +adv( 'temptingly', normal ). +adv( 'tenaciously', normal ). +adv( 'tendentiously', normal ). +adv( 'tenderly', normal ). +adv( 'tenfold', normal ). +adv( 'tensely', normal ). +adv( 'tentatively', normal ). +adv( 'tenthly', normal ). +adv( 'tenuously', normal ). +adv( 'tepidly', normal ). +adv( 'terminally', normal ). +adv( 'terribly', normal ). +adv( 'terrifically', normal ). +adv( 'tersely', normal ). +adv( 'testily', normal ). +adv( 'tetchily', normal ). +adv( 'thankfully', normal ). +adv( 'that', normal ). +adv( 'the', normal ). +adv( 'theatrically', normal ). +adv( 'then', normal ). +adv( 'thence', normal ). +adv( 'thenceforth', normal ). +adv( 'thenceforward', normal ). +adv( 'theologically', normal ). +adv( 'theoretically', normal ). +adv( 'there', normal ). +adv( 'thereabout', normal ). +adv( 'thereabouts', normal ). +adv( 'thereafter', normal ). +adv( 'thereby', normal ). +adv( 'therefore', normal ). +adv( 'therefrom', normal ). +adv( 'therein', normal ). +adv( 'thereinafter', normal ). +adv( 'thereof', normal ). +adv( 'thereon', normal ). +adv( 'thereto', normal ). +adv( 'thereunder', normal ). +adv( 'thereupon', normal ). +adv( 'therewith', normal ). +adv( 'therewithal', normal ). +adv( 'thermally', normal ). +adv( 'thermostatically', normal ). +adv( 'thick', normal ). +adv( 'thickly', normal ). +adv( 'thievishly', normal ). +adv( 'thin', normal ). +adv( 'thinly', normal ). +adv( 'thirdly', normal ). +adv( 'thirstily', normal ). +adv( 'this', normal ). +adv( 'thither', normal ). +adv( 'tho\'', normal ). +adv( 'thoroughly', normal ). +adv( 'though', normal ). +adv( 'thoughtfully', normal ). +adv( 'thoughtlessly', normal ). +adv( 'thousandfold', normal ). +adv( 'threateningly', normal ). +adv( 'threefold', normal ). +adv( 'thrice', normal ). +adv( 'thriftily', normal ). +adv( 'thriftlessly', normal ). +adv( 'through', normal ). +adv( 'throughout', normal ). +adv( 'thus', normal ). +adv( 'tidily', normal ). +adv( 'tight', normal ). +adv( 'tightly', normal ). +adv( 'timidly', normal ). +adv( 'timorously', normal ). +adv( 'tip-top', normal ). +adv( 'tiptoe', normal ). +adv( 'tirelessly', normal ). +adv( 'tiresomely', normal ). +adv( 'tiring', normal ). +adv( 'to', normal ). +adv( 'today', normal ). +adv( 'together', normal ). +adv( 'tolerably', normal ). +adv( 'tolerantly', normal ). +adv( 'tomorrow', normal ). +adv( 'tonelessly', normal ). +adv( 'tongue-in-cheek', normal ). +adv( 'tonight', normal ). +adv( 'too', normal ). +adv( 'topically', normal ). +adv( 'topographically', normal ). +adv( 'toppingly', normal ). +adv( 'topsy-turvy', normal ). +adv( 'torpidly', normal ). +adv( 'tortuously', normal ). +adv( 'totally', normal ). +adv( 'touchily', normal ). +adv( 'touchingly', normal ). +adv( 'toughly', normal ). +adv( 'tout ensemble', normal ). +adv( 'traditionally', normal ). +adv( 'tragically', normal ). +adv( 'traitorously', normal ). +adv( 'tranquilly', normal ). +adv( 'transcendentally', normal ). +adv( 'transiently', normal ). +adv( 'transitionally', normal ). +adv( 'transitively', normal ). +adv( 'transparently', normal ). +adv( 'transversely', normal ). +adv( 'treacherously', normal ). +adv( 'treasonably', normal ). +adv( 'tremendously', normal ). +adv( 'tremulously', normal ). +adv( 'trenchantly', normal ). +adv( 'trimly', normal ). +adv( 'trippingly', normal ). +adv( 'tritely', normal ). +adv( 'triumphantly', normal ). +adv( 'trivially', normal ). +adv( 'tropically', normal ). +adv( 'truculently', normal ). +adv( 'true', normal ). +adv( 'truly', normal ). +adv( 'trustfully', normal ). +adv( 'trustingly', normal ). +adv( 'truthfully', normal ). +adv( 'tumultuously', normal ). +adv( 'tunefully', normal ). +adv( 'turbulently', normal ). +adv( 'turgidly', normal ). +adv( 'tutorially', normal ). +adv( 'twice', normal ). +adv( 'twofold', normal ). +adv( 'typically', normal ). +adv( 'typographically', normal ). +adv( 'ultimately', normal ). +adv( 'ultra vires', normal ). +adv( 'unacceptably', normal ). +adv( 'unaccountably', normal ). +adv( 'unadvisedly', normal ). +adv( 'unalterably', normal ). +adv( 'unambiguously', normal ). +adv( 'unanimously', normal ). +adv( 'unarguably', normal ). +adv( 'unashamedly', normal ). +adv( 'unassailably', normal ). +adv( 'unassumingly', normal ). +adv( 'unattainably', normal ). +adv( 'unattractively', normal ). +adv( 'unavoidably', normal ). +adv( 'unawares', normal ). +adv( 'unbearably', normal ). +adv( 'unbecomingly', normal ). +adv( 'unbeknown', normal ). +adv( 'unbeknownst', normal ). +adv( 'unbelievably', normal ). +adv( 'unbelievingly', normal ). +adv( 'unblushingly', normal ). +adv( 'unblushingly', normal ). +adv( 'uncannily', normal ). +adv( 'unceasingly', normal ). +adv( 'unceremoniously', normal ). +adv( 'uncertainly', normal ). +adv( 'uncharacteristically', normal ). +adv( 'unchivalrously', normal ). +adv( 'unco', normal ). +adv( 'uncomfortably', normal ). +adv( 'uncommonly', normal ). +adv( 'uncomplainingly', normal ). +adv( 'unconcernedly', normal ). +adv( 'unconditionally', normal ). +adv( 'unconsciously', normal ). +adv( 'unconstitutionally', normal ). +adv( 'uncontrollably', normal ). +adv( 'uncouthly', normal ). +adv( 'uncritically', normal ). +adv( 'unctuously', normal ). +adv( 'undemocratically', normal ). +adv( 'undeniably', normal ). +adv( 'under', normal ). +adv( 'underarm', normal ). +adv( 'underfoot', normal ). +adv( 'underground', normal ). +adv( 'underhand', normal ). +adv( 'underneath', normal ). +adv( 'understandably', normal ). +adv( 'undiplomatically', normal ). +adv( 'undisputedly', normal ). +adv( 'undoubtedly', normal ). +adv( 'undramatically', normal ). +adv( 'unduly', normal ). +adv( 'uneasily', normal ). +adv( 'unemotionally', normal ). +adv( 'unendingly', normal ). +adv( 'unenthusiastically', normal ). +adv( 'unequally', normal ). +adv( 'unequivocally', normal ). +adv( 'unerringly', normal ). +adv( 'unethically', normal ). +adv( 'unevenly', normal ). +adv( 'uneventfully', normal ). +adv( 'unexpectedly', normal ). +adv( 'unfailingly', normal ). +adv( 'unfairly', normal ). +adv( 'unfaithfully', normal ). +adv( 'unfalteringly', normal ). +adv( 'unfashionably', normal ). +adv( 'unfavourably', normal ). +adv( 'unfeelingly', normal ). +adv( 'unfeignedly', normal ). +adv( 'unforgettably', normal ). +adv( 'unforgivably', normal ). +adv( 'unfortunately', normal ). +adv( 'ungraciously', normal ). +adv( 'ungrammatically', normal ). +adv( 'ungratefully', normal ). +adv( 'ungrudgingly', normal ). +adv( 'unhappily', normal ). +adv( 'unhelpfully', normal ). +adv( 'unhesitatingly', normal ). +adv( 'unhurriedly', normal ). +adv( 'unhygienically', normal ). +adv( 'uniformly', normal ). +adv( 'unilaterally', normal ). +adv( 'unimaginably', normal ). +adv( 'unimaginatively', normal ). +adv( 'unimpressively', normal ). +adv( 'unintelligently', normal ). +adv( 'unintelligibly', normal ). +adv( 'unintentionally', normal ). +adv( 'uninterestingly', normal ). +adv( 'uninterruptedly', normal ). +adv( 'uniquely', normal ). +adv( 'unitedly', normal ). +adv( 'universally', normal ). +adv( 'unjustifiably', normal ). +adv( 'unjustly', normal ). +adv( 'unkindly', normal ). +adv( 'unknowingly', normal ). +adv( 'unlawfully', normal ). +adv( 'unluckily', normal ). +adv( 'unmanageably', normal ). +adv( 'unmemorably', normal ). +adv( 'unmercifully', normal ). +adv( 'unmistakably', normal ). +adv( 'unmusically', normal ). +adv( 'unnaturally', normal ). +adv( 'unnecessarily', normal ). +adv( 'unobtrusively', normal ). +adv( 'unofficially', normal ). +adv( 'unpalatably', normal ). +adv( 'unpardonably', normal ). +adv( 'unpatriotically', normal ). +adv( 'unpleasantly', normal ). +adv( 'unprecedentedly', normal ). +adv( 'unpredictably', normal ). +adv( 'unproductively', normal ). +adv( 'unprofitably', normal ). +adv( 'unquestionably', normal ). +adv( 'unquote', normal ). +adv( 'unrealistically', normal ). +adv( 'unreasonably', normal ). +adv( 'unrecognizably', normal ). +adv( 'unreliably', normal ). +adv( 'unremarkably', normal ). +adv( 'unreservedly', normal ). +adv( 'unrighteously', normal ). +adv( 'unromantically', normal ). +adv( 'unsatisfactorily', normal ). +adv( 'unscientifically', normal ). +adv( 'unscrupulously', normal ). +adv( 'unseasonably', normal ). +adv( 'unselfconsciously', normal ). +adv( 'unselfishly', normal ). +adv( 'unshakably', normal ). +adv( 'unsociably', normal ). +adv( 'unsparingly', normal ). +adv( 'unspeakably', normal ). +adv( 'unspecifically', normal ). +adv( 'unsportingly', normal ). +adv( 'unsteadily', normal ). +adv( 'unsuccessfully', normal ). +adv( 'unsuitably', normal ). +adv( 'unsuspectingly', normal ). +adv( 'unswervingly', normal ). +adv( 'unsympathetically', normal ). +adv( 'unsystematically', normal ). +adv( 'unthinkingly', normal ). +adv( 'untidily', normal ). +adv( 'untruly', normal ). +adv( 'untruthfully', normal ). +adv( 'untypically', normal ). +adv( 'unusually', normal ). +adv( 'unutterably', normal ). +adv( 'unwarily', normal ). +adv( 'unwarrantably', normal ). +adv( 'unwaveringly', normal ). +adv( 'unwillingly', normal ). +adv( 'unwisely', normal ). +adv( 'unwittingly', normal ). +adv( 'unwontedly', normal ). +adv( 'unworthily', normal ). +adv( 'up', normal ). +adv( 'upcountry', normal ). +adv( 'uphill', normal ). +adv( 'uppermost', normal ). +adv( 'uppishly', normal ). +adv( 'uprightly', normal ). +adv( 'uproariously', normal ). +adv( 'upside-down', normal ). +adv( 'upstage', normal ). +adv( 'upstairs', normal ). +adv( 'upstream', normal ). +adv( 'uptown', normal ). +adv( 'upward', normal ). +adv( 'upwards', normal ). +adv( 'urbanely', normal ). +adv( 'urgently', normal ). +adv( 'usefully', normal ). +adv( 'uselessly', normal ). +adv( 'usually', normal ). +adv( 'utterly', normal ). +adv( 'uxoriously', normal ). +adv( 'vacantly', normal ). +adv( 'vacuously', normal ). +adv( 'vaguely', normal ). +adv( 'vainly', normal ). +adv( 'valiantly', normal ). +adv( 'validly', normal ). +adv( 'vapidly', normal ). +adv( 'variably', normal ). +adv( 'variously', normal ). +adv( 'vastly', normal ). +adv( 'vauntingly', normal ). +adv( 'vehemently', normal ). +adv( 'venally', normal ). +adv( 'venomously', normal ). +adv( 'veraciously', normal ). +adv( 'verbally', normal ). +adv( 'verbatim', normal ). +adv( 'verbosely', normal ). +adv( 'verily', normal ). +adv( 'vertically', normal ). +adv( 'very', normal ). +adv( 'vicariously', normal ). +adv( 'vice versa', normal ). +adv( 'viciously', normal ). +adv( 'victoriously', normal ). +adv( 'videlicet', normal ). +adv( 'vigilantly', normal ). +adv( 'vigorously', normal ). +adv( 'vilely', normal ). +adv( 'vindictively', normal ). +adv( 'violently', normal ). +adv( 'virtually', normal ). +adv( 'virtuously', normal ). +adv( 'virulently', normal ). +adv( 'vis-`a-vis', normal ). +adv( 'visibly', normal ). +adv( 'visually', normal ). +adv( 'vitally', normal ). +adv( 'viva voce', normal ). +adv( 'vivace', normal ). +adv( 'vivaciously', normal ). +adv( 'vividly', normal ). +adv( 'vocally', normal ). +adv( 'volubly', normal ). +adv( 'voluntarily', normal ). +adv( 'voluptuously', normal ). +adv( 'voraciously', normal ). +adv( 'voyeuristically', normal ). +adv( 'vulgarly', normal ). +adv( 'waggishly', normal ). +adv( 'waist-deep', normal ). +adv( 'waist-high', normal ). +adv( 'wanly', normal ). +adv( 'wantonly', normal ). +adv( 'warily', normal ). +adv( 'warmly', normal ). +adv( 'wastefully', normal ). +adv( 'watchfully', normal ). +adv( 'way', normal ). +adv( 'weakly', normal ). +adv( 'wealthily', normal ). +adv( 'wearily', normal ). +adv( 'weekly', normal ). +adv( 'weightily', normal ). +adv( 'weirdly', normal ). +adv( 'well', normal ). +adv( 'well-nigh', normal ). +adv( 'west', normal ). +adv( 'westerly', normal ). +adv( 'westward', normal ). +adv( 'westwards', normal ). +adv( 'whacking', normal ). +adv( 'whang', normal ). +adv( 'wheezily', normal ). +adv( 'when', whq ). +adv( 'when', whrel ). +adv( 'whence', normal ). +adv( 'whenever', normal ). +adv( 'where', whq ). +adv( 'where', whrel ). +adv( 'whereabouts', normal ). +adv( 'whereat', normal ). +adv( 'whereby', normal ). +adv( 'wherefore', normal ). +adv( 'wherein', normal ). +adv( 'whereof', normal ). +adv( 'whereon', normal ). +adv( 'wheresoever', normal ). +adv( 'whereto', normal ). +adv( 'whereunto', normal ). +adv( 'whereupon', normal ). +adv( 'wherever', normal ). +adv( 'wherewith', normal ). +adv( 'wherewithal', normal ). +adv( 'whimsically', normal ). +adv( 'whither', normal ). +adv( 'whithersoever', normal ). +adv( 'wholeheartedly', normal ). +adv( 'wholesale', normal ). +adv( 'wholesomely', normal ). +adv( 'wholly', normal ). +adv( 'whopping', normal ). +adv( 'why', whq ). +adv( 'why', whrel ). +adv( 'wickedly', normal ). +adv( 'wide', normal ). +adv( 'widely', normal ). +adv( 'wild', normal ). +adv( 'wildly', normal ). +adv( 'wilfully', normal ). +adv( 'willingly', normal ). +adv( 'willy-nilly', normal ). +adv( 'windily', normal ). +adv( 'winsomely', normal ). +adv( 'wisely', normal ). +adv( 'wishfully', normal ). +adv( 'wistfully', normal ). +adv( 'withal', normal ). +adv( 'witheringly', normal ). +adv( 'within', normal ). +adv( 'without', normal ). +adv( 'wittily', normal ). +adv( 'wittingly', normal ). +adv( 'woefully', normal ). +adv( 'wonderfully', normal ). +adv( 'wonderingly', normal ). +adv( 'wondrous', normal ). +adv( 'wordily', normal ). +adv( 'worryingly', normal ). +adv( 'worse', normal ). +adv( 'worst', normal ). +adv( 'worthily', normal ). +adv( 'worthlessly', normal ). +adv( 'wrathfully', normal ). +adv( 'wretchedly', normal ). +adv( 'wrong', normal ). +adv( 'wrong-headedly', normal ). +adv( 'wrongfully', normal ). +adv( 'wrongly', normal ). +adv( 'wryly', normal ). +adv( 'yea', normal ). +adv( 'yeah', normal ). +adv( 'yearly', normal ). +adv( 'yearningly', normal ). +adv( 'yesterday', normal ). +adv( 'yet', normal ). +adv( 'yieldingly', normal ). +adv( 'yon', normal ). +adv( 'yonder', normal ). +adv( 'youthfully', normal ). +adv( 'zealously', normal ). +adv( 'zestfully', normal ). +adv( 'zigzag', normal ). + +pron( '\'em', acc, normal, _ ). +pron( '\'un', _, normal, _ ). +pron( 'i', nom, normal, per ). +pron( 'aforesaid', _, normal, _ ). +pron( 'all', _, normal, _ ). +pron( 'another', _, normal, _ ). +pron( 'any', _, normal, _ ). +pron( 'anybody', _, normal, per ). +pron( 'anyone', _, normal, per ). +pron( 'anything', _, normal, nper ). +pron( 'best', _, normal, _ ). +pron( 'both', _, normal, _ ). +pron( 'but', _, whrel, _ ). +pron( 'each', _, normal, _ ). +pron( 'either', _, normal, _ ). +pron( 'everybody', _, normal, per ). +pron( 'everyone', _, normal, per ). +pron( 'everything', _, normal, nper ). +pron( 'few', _, normal, _ ). +pron( 'he', nom, normal, per ). +pron( 'her', acc, normal, per ). +pron( 'hers', _, normal, _ ). +pron( 'herself', acc, normal, per ). +pron( 'him', acc, normal, per ). +pron( 'himself', acc, normal, per ). +pron( 'his', _, normal, _ ). +pron( 'it', _, normal, nper ). +pron( 'itself', acc, normal, nper ). +pron( 'me', acc, normal, per ). +pron( 'mine', _, normal, _ ). +pron( 'myself', acc, normal, per ). +pron( 'neither', _, normal, _ ). +pron( 'no one', _, normal, per ). +pron( 'no-one', _, normal, per ). +pron( 'nobody', _, normal, per ). +pron( 'none', _, normal, _ ). +pron( 'one', _, normal, _ ). +pron( 'oneself', acc, normal, per ). +pron( 'ours', _, normal, _ ). +pron( 'ourselves', acc, normal, per ). +pron( 'own', _, normal, _ ). +pron( 'same', _, normal, _ ). +pron( 'several', _, normal, _ ). +pron( 'she', nom, normal, per ). +pron( 'some', _, normal, _ ). +pron( 'somebody', _, normal, per ). +pron( 'someone', _, normal, per ). +pron( 'something', _, normal, nper ). +pron( 'such', _, normal, _ ). +pron( 'summat', _, normal, nper ). +pron( 'that', _, normal, nper ). +pron( 'that', _, whrel, _ ). +pron( 'thee', acc, normal, per ). +pron( 'theirs', _, normal, _ ). +pron( 'them', acc, normal, per ). +pron( 'themselves', acc, normal, per ). +pron( 'these', _, normal, nper ). +pron( 'they', nom, normal, per ). +pron( 'thine', _, normal, _ ). +pron( 'this', _, normal, nper ). +pron( 'those', _, normal, nper ). +pron( 'thou', nom, normal, per ). +pron( 'thyself', acc, normal, per ). +pron( 'us', acc, normal, per ). +pron( 'we', nom, normal, per ). +pron( 'what', _, whq, nper ). +pron( 'what', _, whrel, nper ). +pron( 'whatever', _, normal, nper ). +pron( 'which', _, whq, _ ). +pron( 'which', _, whrel, _ ). +pron( 'whichever', _, normal, _ ). +pron( 'whichsoever', _, normal, _ ). +pron( 'who', _, whq, per ). +pron( 'who', _, whrel, per ). +pron( 'whoever', _, normal, per ). +pron( 'whom', acc, whq, per ). +pron( 'whom', acc, whrel, per ). +pron( 'whose', _, normal, _ ). +pron( 'whoso', _, normal, per ). +pron( 'whosoever', _, normal, per ). +pron( 'ye', _, normal, per ). +pron( 'you', _, normal, per ). +pron( 'yours', _, normal, _ ). +pron( 'yourself', acc, normal, per ). +pron( 'yourselves', acc, normal, per ). + +det( 'a', indef, exists ). +det( 'an', indef, exists ). +det( 'the', def, the ). +det( 'ye', def, the ). +% manual additions +det( 'every', indef, forall ). +det( 'some', indef, exists ). + +prep( '\'neath', prep ). +prep( '\'tween', prep ). +prep( '\'twixt', prep ). +prep( 'abaft', prep ). +prep( 'aboard', prep ). +prep( 'about', prep ). +prep( 'above', prep ). +prep( 'according to', prep ). +prep( 'across', prep ). +prep( 'afore', prep ). +prep( 'after', prep ). +prep( 'against', prep ). +prep( 'agin', prep ). +prep( 'along', prep ). +prep( 'alongside', prep ). +prep( 'amid', prep ). +prep( 'amidst', prep ). +prep( 'among', prep ). +prep( 'amongst', prep ). +prep( 'anent', prep ). +prep( 'around', prep ). +prep( 'aslant', prep ). +prep( 'astride', prep ). +prep( 'at', prep ). +prep( 'athwart', prep ). +prep( 'bar', prep ). +prep( 'barring', prep ). +prep( 'before', prep ). +prep( 'behind', prep ). +prep( 'below', prep ). +prep( 'beneath', prep ). +prep( 'beside', prep ). +prep( 'besides', prep ). +prep( 'between', prep ). +prep( 'betwixt', prep ). +prep( 'beyond', prep ). +prep( 'but', prep ). +prep( 'by', prep ). +prep( 'circa', prep ). +prep( 'concerning', prep ). +prep( 'considering', prep ). +prep( 'despite', prep ). +prep( 'down', prep ). +prep( 'during', prep ). +prep( 'ere', prep ). +prep( 'except', prep ). +prep( 'excepting', prep ). +prep( 'failing', prep ). +prep( 'for', prep ). +prep( 'from', prep ). +prep( 'in', prep ). +prep( 'inside', prep ). +prep( 'into', prep ). +prep( 'less', prep ). +prep( 'like', prep ). +prep( 'mid', prep ). +prep( 'midst', prep ). +prep( 'minus', prep ). +prep( 'near', prep ). +prep( 'next', prep ). +prep( 'nigh', prep ). +prep( 'nigher', prep ). +prep( 'nighest', prep ). +prep( 'notwithstanding', prep ). +prep( 'o\'er', prep ). +prep( 'of', prep ). +prep( 'off', prep ). +prep( 'on', prep ). +prep( 'on to', prep ). +prep( 'onto', prep ). +prep( 'outside', prep ). +prep( 'over', prep ). +prep( 'past', prep ). +prep( 'pending', prep ). +prep( 'per', prep ). +prep( 'plus', prep ). +prep( 'qua', prep ). +prep( 're', prep ). +prep( 'respecting', prep ). +prep( 'round', prep ). +prep( 'sans', prep ). +prep( 'save', prep ). +prep( 'saving', prep ). +prep( 'since', prep ). +prep( 'thro\'', prep ). +prep( 'through', prep ). +prep( 'throughout', prep ). +prep( 'thru', prep ). +prep( 'till', prep ). +prep( 'to', prep ). +prep( 'touching', prep ). +prep( 'toward', prep ). +prep( 'towards', prep ). +prep( 'under', prep ). +prep( 'underneath', prep ). +prep( 'unlike', prep ). +prep( 'until', prep ). +prep( 'unto', prep ). +prep( 'up', prep ). +prep( 'upon', prep ). +prep( 'versus', prep ). +prep( 'via', prep ). +prep( 'vice', prep ). +prep( 'vis-`a-vis', prep ). +prep( 'wanting', prep ). +prep( 'with', prep ). +prep( 'within', prep ). +prep( 'without', prep ). + +conj( 'according as', conj ). +conj( 'after', conj ). +conj( 'albeit', conj ). +conj( 'although', conj ). +conj( 'an', conj ). +conj( 'and', conj ). +conj( 'as', conj ). +conj( 'because', conj ). +conj( 'before', conj ). +conj( 'but', conj ). +conj( 'cos', conj ). +conj( 'directly', conj ). +conj( 'either', conj ). +conj( 'except', conj ). +conj( 'for', conj ). +conj( 'forasmuch as', conj ). +conj( 'howbeit', conj ). +conj( 'if', conj ). +conj( 'immediately', conj ). +conj( 'instantly', conj ). +conj( 'lest', conj ). +conj( 'like', conj ). +conj( 'likewise', conj ). +conj( 'neither', conj ). +conj( 'nevertheless', conj ). +conj( 'nisi', conj ). +conj( 'nor', conj ). +conj( 'notwithstanding', conj ). +conj( 'now', conj ). +conj( 'only', conj ). +conj( 'or', conj ). +conj( 'otherwise', conj ). +conj( 'provided', conj ). +conj( 'providing', conj ). +conj( 'qua', conj ). +conj( 'since', conj ). +conj( 'so', conj ). +conj( 'supposing', conj ). +conj( 'than', conj ). +conj( 'that', conj ). +conj( 'tho\'', conj ). +conj( 'though', conj ). +conj( 'till', conj ). +conj( 'unless', conj ). +conj( 'until', conj ). +conj( 'when', conj ). +conj( 'whencesoever', conj ). +conj( 'whenever', conj ). +conj( 'whereas', conj ). +conj( 'whether', conj ). +conj( 'while', conj ). +conj( 'whilst', conj ). +conj( 'yet', conj ). + +misc( 'afro-', prefix, '-' ). +misc( 'anglo-', prefix, '-' ). +misc( 'franco-', prefix, '-' ). +misc( 'indo-', prefix, '-' ). +misc( 'after-', prefix, '-' ). +misc( 'all', prefix, '-' ). +misc( 'ante', prefix, '-' ). +misc( 'anti-', prefix, '-' ). +misc( 'arch-', prefix, '-' ). +misc( 'audio-', prefix, '-' ). +misc( 'auto-', prefix, '-' ). +misc( 'be-', prefix, '-' ). +misc( 'bi-', prefix, '-' ). +misc( 'bond-', prefix, '-' ). +misc( 'centi-', prefix, '-' ). +misc( 'cine-', prefix, '-' ). +misc( 'co-', prefix, '-' ). +misc( 'contra-', prefix, '-' ). +misc( 'counter-', prefix, '-' ). +misc( 'crypto-', prefix, '-' ). +misc( 'deca-', prefix, '-' ). +misc( 'deci-', prefix, '-' ). +misc( 'electro-', prefix, '-' ). +misc( 'ex-', prefix, '-' ). +misc( 'geo-', prefix, '-' ). +misc( 'grand-', prefix, '-' ). +misc( 'hecto-', prefix, '-' ). +misc( 'infra', prefix, '-' ). +misc( 'kilo-', prefix, '-' ). +misc( 'maxi-', prefix, '-' ). +misc( 'milli-', prefix, '-' ). +misc( 'mini-', prefix, '-' ). +misc( 'multi-', prefix, '-' ). +misc( 'neo-', prefix, '-' ). +misc( 'non-', prefix, '-' ). +misc( 'nor\'-', prefix, '-' ). +misc( 'off', prefix, '-' ). +misc( 'over-', prefix, '-' ). +misc( 'palaeo-', prefix, '-' ). +misc( 'pan-', prefix, '-' ). +misc( 'petro-', prefix, '-' ). +misc( 'photo-', prefix, '-' ). +misc( 'post-', prefix, '-' ). +misc( 'pre-', prefix, '-' ). +misc( 'pro-', prefix, '-' ). +misc( 'pseudo-', prefix, '-' ). +misc( 'quasi-', prefix, '-' ). +misc( 'radio-', prefix, '-' ). +misc( 're-', prefix, '-' ). +misc( 'self-', prefix, '-' ). +misc( 'semi-', prefix, '-' ). +misc( 'servo-', prefix, '-' ). +misc( 'socio-', prefix, '-' ). +misc( 'step-', prefix, '-' ). +misc( 'sub-', prefix, '-' ). +misc( 'thermo-', prefix, '-' ). +misc( 'trans-', prefix, '-' ). +misc( 'tri-', prefix, '-' ). +misc( 'ultra-', prefix, '-' ). +misc( 'un-', prefix, '-' ). +misc( 'under-', prefix, '-' ). +misc( 'up-', prefix, '-' ). +misc( 'vice-', prefix, '-' ). +misc( 'wash-', prefix, '-' ). +misc( 'well-', prefix, '-' ). +misc( 'wich-', prefix, '-' ). +misc( 'witch-', prefix, '-' ). +misc( 'wych-', prefix, '-' ). +misc( 'yester-', prefix, '-' ). + +misc( '\'shun', interj, '-' ). +misc( 'all right', interj, '-' ). +misc( 'alright', interj, '-' ). +misc( 'cheers', interj, '-' ). +misc( 'hey presto', interj, '-' ). +misc( 'o', interj, '-' ). +misc( 'ok', interj, '-' ). +misc( 'shucks', interj, '-' ). +misc( 'abracadabra', interj, '-' ). +misc( 'adieu', interj, close ). +misc( 'ah', interj, '-' ). +misc( 'aha', interj, '-' ). +misc( 'ahem', interj, hail ). +misc( 'ahoy', interj, greet ). +misc( 'alack', interj, '-' ). +misc( 'alas', interj, '-' ). +misc( 'alleluia', interj, '-' ). +misc( 'amen', interj, close ). +misc( 'atishoo', interj, '-' ). +misc( 'attaboy', interj, '-' ). +misc( 'au revoir', interj, close ). +misc( 'avast', interj, greet ). +misc( 'avaunt', interj, greet ). +misc( 'ay', interj, '-' ). +misc( 'aye', interj, '-' ). +misc( 'bah', interj, '-' ). +misc( 'ball', interj, '-' ). +misc( 'balls', interj, '-' ). +misc( 'bang', interj, '-' ). +misc( 'begad', interj, '-' ). +misc( 'begorra', interj, '-' ). +misc( 'blimey', interj, '-' ). +misc( 'bo', interj, '-' ). +misc( 'boh', interj, '-' ). +misc( 'bosh', interj, '-' ). +misc( 'botheration', interj, '-' ). +misc( 'bow-wow', interj, '-' ). +misc( 'bravo', interj, '-' ). +misc( 'bye-bye', interj, close ). +misc( 'cheerio', interj, close ). +misc( 'crikey', interj, '-' ). +misc( 'cripes', interj, '-' ). +misc( 'dear', interj, '-' ). +misc( 'eh', interj, '-' ). +misc( 'encore', interj, '-' ). +misc( 'eureka', interj, '-' ). +misc( 'farewell', interj, close ). +misc( 'faugh', interj, '-' ). +misc( 'fiddlesticks', interj, '-' ). +misc( 'fie', interj, '-' ). +misc( 'fore', interj, '-' ). +misc( 'fudge', interj, '-' ). +misc( 'gad', interj, '-' ). +misc( 'gangway', interj, '-' ). +misc( 'gee', interj, '-' ). +misc( 'gee whiz', interj, '-' ). +misc( 'gee-up', interj, '-' ). +misc( 'golly', interj, '-' ). +misc( 'goodbye', interj, close ). +misc( 'gosh', interj, '-' ). +misc( 'h\'m', interj, '-' ). +misc( 'ha', interj, '-' ). +misc( 'hallelujah', interj, '-' ). +misc( 'hallo', interj, greet ). +misc( 'halloo', interj, greet ). +misc( 'haw-haw', interj, '-' ). +misc( 'heighho', interj, '-' ). +misc( 'hello', interj, greet ). +misc( 'hem', interj, '-' ). +misc( 'hey', interj, hail ). +misc( 'hi', interj, greet ). +misc( 'hip', interj, '-' ). +misc( 'ho', interj, '-' ). +misc( 'hoity-toity', interj, '-' ). +misc( 'holloa', interj, hail ). +misc( 'hooray', interj, '-' ). +misc( 'hosanna', interj, '-' ). +misc( 'hullo', interj, greet ). +misc( 'humbug', interj, '-' ). +misc( 'humph', interj, '-' ). +misc( 'hurrah', interj, '-' ). +misc( 'hurray', interj, '-' ). +misc( 'jiminy', interj, '-' ). +misc( 'lo', interj, '-' ). +misc( 'lor', interj, '-' ). +misc( 'lumme', interj, '-' ). +misc( 'lummy', interj, '-' ). +misc( 'mum', interj, '-' ). +misc( 'no', interj, '-' ). +misc( 'nope', interj, '-' ). +misc( 'oh', interj, '-' ). +misc( 'oho', interj, '-' ). +misc( 'ouch', interj, '-' ). +misc( 'oyes', interj, '-' ). +misc( 'oyez', interj, '-' ). +misc( 'pah', interj, '-' ). +misc( 'phew', interj, '-' ). +misc( 'phooey', interj, '-' ). +misc( 'pooh', interj, '-' ). +misc( 'prithee', interj, '-' ). +misc( 'pshaw', interj, '-' ). +misc( 'rah', interj, '-' ). +misc( 'roger', interj, '-' ). +misc( 'scat', interj, '-' ). +misc( 'shalom', interj, greet ). +misc( 'shit', interj, '-' ). +misc( 'strewth', interj, '-' ). +misc( 'struth', interj, '-' ). +misc( 'ta', interj, '-' ). +misc( 'ta ta', interj, close ). +misc( 'tally-ho', interj, '-' ). +misc( 'there', interj, '-' ). +misc( 'tu quoque', interj, '-' ). +misc( 'tut', interj, '-' ). +misc( 'tut-tut', interj, '-' ). +misc( 'ugh', interj, '-' ). +misc( 'well', interj, '-' ). +misc( 'whew', interj, '-' ). +misc( 'whoa', interj, '-' ). +misc( 'why', interj, '-' ). +misc( 'wo', interj, '-' ). +misc( 'wotcher', interj, greet ). +misc( 'wow', interj, '-' ). +misc( 'yah', interj, '-' ). +misc( 'yea', interj, '-' ). +misc( 'yes', interj, '-' ). +misc( 'yippee', interj, '-' ). +misc( 'yo-heave-ho', interj, '-' ). +% manual additions +misc( 'bye', interj, close ). +misc( 'exit', interj, close ). +misc( 'quit', interj, close ). + +misc( 'to', partcl, '-' ). + +misc( 'anno domini', unknown, '-' ). +misc( 'celsius', unknown, '-' ). +misc( 'fahrenheit', unknown, '-' ). +misc( 'anon', unknown, '-' ). +misc( 'begone', unknown, '-' ). +misc( 'da capo', unknown, '-' ). +misc( 'et cetera', unknown, '-' ). +misc( 'id est', unknown, '-' ). +misc( 'in memoriam', unknown, '-' ). +misc( 'nota bene', unknown, '-' ). +misc( 'o\'clock', unknown, '-' ). +misc( 'stet', unknown, '-' ). +misc( 'vide', unknown, '-' ). |
